From a367e92bcf1d883db6c31c67d7fb47668f4da6b7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 02:28:21 +0300 Subject: [PATCH 001/157] Create api.js --- scripts/core/api.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 scripts/core/api.js diff --git a/scripts/core/api.js b/scripts/core/api.js new file mode 100644 index 000000000..4f82ae518 --- /dev/null +++ b/scripts/core/api.js @@ -0,0 +1,26 @@ +const _ = require('lodash') +const file = require('./file') + +const DATA_DIR = process.env.DATA_DIR || './scripts/data' + +class API { + constructor(filepath) { + this.filepath = file.resolve(filepath) + } + + async load() { + const data = await file.read(this.filepath) + this.collection = JSON.parse(data) + } + + find(query) { + return _.find(this.collection, query) + } +} + +const api = {} + +api.channels = new API(`${DATA_DIR}/channels.json`) +api.countries = new API(`${DATA_DIR}/countries.json`) + +module.exports = api From 32b86ce84259dfe19fb6a3a14af234c5bbdfa539 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 02:47:16 +0300 Subject: [PATCH 002/157] Create cid.js --- scripts/core/cid.js | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 scripts/core/cid.js diff --git a/scripts/core/cid.js b/scripts/core/cid.js new file mode 100644 index 000000000..7be12caf3 --- /dev/null +++ b/scripts/core/cid.js @@ -0,0 +1,41 @@ +const file = require('./file') +const transliteration = require('transliteration') + +const cid = {} + +cid.generate = function (title, filepath) { + const name = parseChannelName(title) + const code = parseCountryCode(filepath) + + if (name && code) { + const slug = transliteration + .transliterate(name) + .replace(/\+/gi, 'Plus') + .replace(/[^a-z\d]+/gi, '') + + return `${slug}.${code.toLowerCase()}` + } + + return null +} + +module.exports = cid + +function parseCountryCode(filepath) { + if (!filepath) return null + const basename = file.basename(filepath) + const [code] = basename.split('_') || [null] + + return code +} + +function parseChannelName(title) { + return title + .trim() + .split(' ') + .map(s => s.trim()) + .filter(s => { + return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) + }) + .join(' ') +} From ce3fa7abe5e6b9518ee06ee5fd215d07a647af21 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 02:47:20 +0300 Subject: [PATCH 003/157] Update index.js --- scripts/core/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/core/index.js b/scripts/core/index.js index 948ff6c6d..0dc882641 100644 --- a/scripts/core/index.js +++ b/scripts/core/index.js @@ -8,3 +8,5 @@ exports.generator = require('./generator') exports.playlist = require('./playlist') exports.store = require('./store') exports.markdown = require('./markdown') +exports.api = require('./api') +exports.cid = require('./cid') From 411171e3f082c17d474c70548e8038c9c2f952de Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 02:48:48 +0300 Subject: [PATCH 004/157] Update create-database.js --- scripts/commands/create-database.js | 45 ++++--------- scripts/store/setters/categories.js | 8 --- scripts/store/setters/countries.js | 25 ------- scripts/store/setters/guides.js | 3 - scripts/store/setters/index.js | 8 --- scripts/store/setters/is_nsfw.js | 3 - scripts/store/setters/languages.js | 12 ---- scripts/store/setters/name.js | 10 --- scripts/store/setters/regions.js | 22 ------- tests/__data__/expected/channels.db | 2 + .../input/channels/{ad_example.m3u => ad.m3u} | 0 tests/__data__/input/channels/us_blocked.m3u | 2 +- tests/commands/create-database.test.js | 65 ++++++++++--------- 13 files changed, 47 insertions(+), 158 deletions(-) delete mode 100644 scripts/store/setters/categories.js delete mode 100644 scripts/store/setters/countries.js delete mode 100644 scripts/store/setters/guides.js delete mode 100644 scripts/store/setters/is_nsfw.js delete mode 100644 scripts/store/setters/languages.js delete mode 100644 scripts/store/setters/name.js delete mode 100644 scripts/store/setters/regions.js create mode 100644 tests/__data__/expected/channels.db rename tests/__data__/input/channels/{ad_example.m3u => ad.m3u} (100%) diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js index ecbbc0597..abb63a8ab 100644 --- a/scripts/commands/create-database.js +++ b/scripts/commands/create-database.js @@ -1,5 +1,4 @@ -const { db, file, parser, store, logger } = require('../core') -const transliteration = require('transliteration') +const { db, file, parser, store, logger, cid } = require('../core') const { program } = require('commander') const _ = require('lodash') @@ -17,19 +16,19 @@ const options = program const links = [] async function main() { - logger.info('Starting...') - logger.info(`Number of clusters: ${options.maxClusters}`) + logger.info('starting...') + logger.info(`number of clusters: ${options.maxClusters}`) await loadChannels() await saveToDatabase() - logger.info('Done') + logger.info('done') } main() async function loadChannels() { - logger.info(`Loading links...`) + logger.info(`loading links...`) const files = await file.list(`${options.inputDir}/**/*.m3u`) for (const filepath of files) { @@ -39,41 +38,33 @@ async function loadChannels() { links.push(item) } } - logger.info(`Found ${links.length} links`) + logger.info(`found ${links.length} links`) } async function saveToDatabase() { - logger.info('Saving to the database...') + logger.info('saving to the database...') await db.reset() const chunks = split(_.shuffle(links), options.maxClusters) for (const [i, chunk] of chunks.entries()) { for (const item of chunk) { const stream = store.create() - stream.set('name', { title: item.name }) stream.set('id', { id: item.tvg.id }) + stream.set('display_name', { display_name: item.name }) stream.set('filepath', { filepath: item.filepath }) - stream.set('src_country', { filepath: item.filepath }) - stream.set('tvg_country', { tvg_country: item.tvg.country }) - stream.set('countries', { tvg_country: item.tvg.country }) - stream.set('regions', { countries: stream.get('countries') }) - stream.set('languages', { tvg_language: item.tvg.language }) - stream.set('categories', { group_title: item.group.title }) - stream.set('tvg_url', { tvg_url: item.tvg.url }) - stream.set('guides', { tvg_url: item.tvg.url }) - stream.set('logo', { logo: item.tvg.logo }) stream.set('resolution', { title: item.name }) stream.set('status', { title: item.name }) stream.set('url', { url: item.url }) stream.set('http', { http: item.http }) - stream.set('is_nsfw', { categories: stream.get('categories') }) stream.set('is_broken', { status: stream.get('status') }) stream.set('updated', { updated: false }) stream.set('cluster_id', { cluster_id: i + 1 }) if (!stream.get('id')) { - const id = generateChannelId(stream.get('name'), stream.get('src_country')) + const id = cid.generate(item.name, item.filepath) + stream.set('id', { id }) + stream.set('updated', { updated: true }) } await db.insert(stream.data()) @@ -88,17 +79,3 @@ function split(arr, n) { } return result } - -function generateChannelId(name, src_country) { - if (name && src_country) { - const slug = transliteration - .transliterate(name) - .replace(/\+/gi, 'Plus') - .replace(/[^a-z\d]+/gi, '') - const code = src_country.code.toLowerCase() - - return `${slug}.${code}` - } - - return null -} diff --git a/scripts/store/setters/categories.js b/scripts/store/setters/categories.js deleted file mode 100644 index 8dc50974b..000000000 --- a/scripts/store/setters/categories.js +++ /dev/null @@ -1,8 +0,0 @@ -const categories = require('../../data/categories') - -module.exports = function ({ group_title }) { - return group_title - .split(';') - .map(i => categories[i.toLowerCase()]) - .filter(i => i) -} diff --git a/scripts/store/setters/countries.js b/scripts/store/setters/countries.js deleted file mode 100644 index b193911b8..000000000 --- a/scripts/store/setters/countries.js +++ /dev/null @@ -1,25 +0,0 @@ -const dataRegions = require('../../data/regions') -const dataCountries = require('../../data/countries') - -module.exports = function ({ tvg_country, countries = [] }) { - if (tvg_country) { - return tvg_country - .split(';') - .reduce((acc, curr) => { - const region = dataRegions[curr] - if (region) { - for (let code of region.country_codes) { - if (!acc.includes(code)) acc.push(code) - } - } else { - acc.push(curr) - } - - return acc - }, []) - .map(item => dataCountries[item]) - .filter(i => i) - } - - return countries -} diff --git a/scripts/store/setters/guides.js b/scripts/store/setters/guides.js deleted file mode 100644 index 0c0ff7296..000000000 --- a/scripts/store/setters/guides.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function ({ tvg_url, guides = [] }) { - return tvg_url ? [tvg_url] : guides -} diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 436bea49a..4a5aaef82 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -1,12 +1,4 @@ -exports.categories = require('./categories') -exports.countries = require('./countries') -exports.guides = require('./guides') exports.is_broken = require('./is_broken') -exports.is_nsfw = require('./is_nsfw') -exports.languages = require('./languages') -exports.name = require('./name') -exports.regions = require('./regions') exports.resolution = require('./resolution') -exports.src_country = require('./src_country') exports.status = require('./status') exports.url = require('./url') diff --git a/scripts/store/setters/is_nsfw.js b/scripts/store/setters/is_nsfw.js deleted file mode 100644 index 886b850a6..000000000 --- a/scripts/store/setters/is_nsfw.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function ({ categories }) { - return Array.isArray(categories) ? categories.filter(c => c.nsfw).length > 0 : false -} diff --git a/scripts/store/setters/languages.js b/scripts/store/setters/languages.js deleted file mode 100644 index a5ee56dcc..000000000 --- a/scripts/store/setters/languages.js +++ /dev/null @@ -1,12 +0,0 @@ -const langs = require('../../data/languages') - -module.exports = function ({ tvg_language, languages = [] }) { - if (tvg_language) { - return tvg_language - .split(';') - .map(name => langs.find(l => l.name === name)) - .filter(i => i) - } - - return languages -} diff --git a/scripts/store/setters/name.js b/scripts/store/setters/name.js deleted file mode 100644 index d56605337..000000000 --- a/scripts/store/setters/name.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = function ({ title }) { - return title - .trim() - .split(' ') - .map(s => s.trim()) - .filter(s => { - return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) - }) - .join(' ') -} diff --git a/scripts/store/setters/regions.js b/scripts/store/setters/regions.js deleted file mode 100644 index 7016eecd1..000000000 --- a/scripts/store/setters/regions.js +++ /dev/null @@ -1,22 +0,0 @@ -const _ = require('lodash') - -let regions = require('../../data/regions') - -module.exports = function ({ countries }) { - if (!countries.length) return [] - - const output = [] - regions = Object.values(regions) - countries.forEach(country => { - regions - .filter(region => region.country_codes.includes(country.code)) - .forEach(found => { - output.push({ - name: found.name, - code: found.code - }) - }) - }) - - return _.uniqBy(output, 'code') -} diff --git a/tests/__data__/expected/channels.db b/tests/__data__/expected/channels.db new file mode 100644 index 000000000..3aa99e683 --- /dev/null +++ b/tests/__data__/expected/channels.db @@ -0,0 +1,2 @@ +{"display_name":"ATV (720p) [Offline]","id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} +{"display_name":"Fox Sports 2 Asia (Thai) (720p)","id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} diff --git a/tests/__data__/input/channels/ad_example.m3u b/tests/__data__/input/channels/ad.m3u similarity index 100% rename from tests/__data__/input/channels/ad_example.m3u rename to tests/__data__/input/channels/ad.m3u diff --git a/tests/__data__/input/channels/us_blocked.m3u b/tests/__data__/input/channels/us_blocked.m3u index f08f25184..0a1d4b761 100644 --- a/tests/__data__/input/channels/us_blocked.m3u +++ b/tests/__data__/input/channels/us_blocked.m3u @@ -1,3 +1,3 @@ #EXTM3U -#EXTINF:-1 tvg-id="FoxSports2Asia.us" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="Sports",Fox Sports 2 Asia (Thai) (720p) +#EXTINF:-1 tvg-id="" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="Sports",Fox Sports 2 Asia (Thai) (720p) https://example.com/playlist.m3u8 diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js index f50a9fdd0..a09781b9e 100644 --- a/tests/commands/create-database.test.js +++ b/tests/commands/create-database.test.js @@ -5,42 +5,43 @@ const { execSync } = require('child_process') beforeEach(() => { fs.rmdirSync('tests/__data__/output', { recursive: true }) fs.mkdirSync('tests/__data__/output') -}) -it('can create database', () => { - execSync( - 'DB_FILEPATH=tests/__data__/output/test.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', + const stdout = execSync( + 'DB_FILEPATH=tests/__data__/output/channels.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', { encoding: 'utf8' } ) +}) - const database = fs.readFileSync(path.resolve('tests/__data__/output/test.db'), { - encoding: 'utf8' +it('can create database', () => { + let output = content('tests/__data__/output/channels.db') + let expected = content('tests/__data__/expected/channels.db') + + output = output.map(i => { + i._id = null + return i }) - const item = database.split('\n').find(i => i.includes('ATV.ad')) - expect(JSON.parse(item)).toMatchObject({ - name: 'ATV', - id: 'ATV.ad', - filepath: 'tests/__data__/input/channels/ad_example.m3u', - src_country: { name: 'Andorra', code: 'AD', lang: 'cat' }, - tvg_country: 'AD', - countries: [{ name: 'Andorra', code: 'AD', lang: 'cat' }], - regions: [ - { name: 'Europe, the Middle East and Africa', code: 'EMEA' }, - { name: 'Europe', code: 'EUR' }, - { name: 'Worldwide', code: 'INT' } - ], - languages: [{ name: 'Catalan', code: 'cat' }], - categories: [{ name: 'General', slug: 'general', nsfw: false }], - tvg_url: '', - guides: [], - logo: 'https://i.imgur.com/kJCjeQ4.png', - resolution: { height: 720, width: null }, - status: { label: 'Offline', code: 'offline', level: 5 }, - url: 'https://iptv-all.lanesh4d0w.repl.co/andorra/atv', - http: { referrer: '', 'user-agent': '' }, - is_nsfw: false, - is_broken: true, - updated: false, - cluster_id: 1 + expected = expected.map(i => { + i._id = null + return i }) + + expect(output).toEqual( + expect.arrayContaining([ + expect.objectContaining(expected[0]), + expect.objectContaining(expected[1]) + ]) + ) }) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From cc834a5ec74986a91fce0539fd2387d9e22e032a Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 02:55:21 +0300 Subject: [PATCH 005/157] Update create-matrix.test.js --- tests/__data__/input/{test.db => channels.db} | 0 tests/commands/create-matrix.test.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/__data__/input/{test.db => channels.db} (100%) diff --git a/tests/__data__/input/test.db b/tests/__data__/input/channels.db similarity index 100% rename from tests/__data__/input/test.db rename to tests/__data__/input/channels.db diff --git a/tests/commands/create-matrix.test.js b/tests/commands/create-matrix.test.js index 5310cd1df..3cf1de580 100644 --- a/tests/commands/create-matrix.test.js +++ b/tests/commands/create-matrix.test.js @@ -3,7 +3,7 @@ const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.copyFileSync('tests/__data__/input/test.db', 'tests/__data__/temp/test.db') + fs.copyFileSync('tests/__data__/input/channels.db', 'tests/__data__/temp/channels.db') }) afterEach(() => { @@ -13,7 +13,7 @@ afterEach(() => { it('can create valid matrix', () => { const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db node scripts/commands/create-matrix.js', + 'DB_FILEPATH=tests/__data__/temp/channels.db node scripts/commands/create-matrix.js', { encoding: 'utf8' } ) expect(result).toBe('::set-output name=matrix::{"cluster_id":[1,3]}\n') From fcba9f55d5b812ddfde82c74bdde5e43b7cfef6d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 03:03:39 +0300 Subject: [PATCH 006/157] Install fs-extra package --- package-lock.json | 74 +++++++++++++++++++++++++++++++++++++++++++++++ package.json | 1 + 2 files changed, 75 insertions(+) diff --git a/package-lock.json b/package-lock.json index 919968e9d..bb28332f5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "commander": "^7.0.0", "crypto": "^1.0.1", "dayjs": "^1.10.7", + "fs-extra": "^10.0.0", "iptv-checker": "^0.22.0", "iptv-playlist-parser": "^0.10.2", "jest": "^27.4.3", @@ -1823,6 +1824,27 @@ "node": ">= 6" } }, + "node_modules/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -2901,6 +2923,25 @@ "node": ">=6" } }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonfile/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", @@ -5571,6 +5612,23 @@ "mime-types": "^2.1.12" } }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "dependencies": { + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + } + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -6386,6 +6444,22 @@ "minimist": "^1.2.5" } }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + }, + "dependencies": { + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + } + }, "kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", diff --git a/package.json b/package.json index 78d8eaf8d..9895079c5 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "commander": "^7.0.0", "crypto": "^1.0.1", "dayjs": "^1.10.7", + "fs-extra": "^10.0.0", "iptv-checker": "^0.22.0", "iptv-playlist-parser": "^0.10.2", "jest": "^27.4.3", From d4ccef37197e9642d581261500ee57b31cb6f225 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 03:03:43 +0300 Subject: [PATCH 007/157] Update create-database.test.js --- tests/commands/create-database.test.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js index a09781b9e..b90fc48b7 100644 --- a/tests/commands/create-database.test.js +++ b/tests/commands/create-database.test.js @@ -1,10 +1,9 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.rmdirSync('tests/__data__/output', { recursive: true }) - fs.mkdirSync('tests/__data__/output') + fs.emptyDirSync('tests/__data__/output') const stdout = execSync( 'DB_FILEPATH=tests/__data__/output/channels.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', From 9a4aea79495f71a2e51f089dededef75079cd7d0 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 03:19:31 +0300 Subject: [PATCH 008/157] Update load-streams.js --- .github/workflows/auto-update.yml | 2 +- .../{check-streams.js => load-streams.js} | 18 ++++---- .../expected/logs/load-streams/cluster_1.log | 2 + tests/commands/check-streams.test.js | 44 ------------------- tests/commands/load-streams.test.js | 34 ++++++++++++++ 5 files changed, 46 insertions(+), 54 deletions(-) rename scripts/commands/{check-streams.js => load-streams.js} (73%) create mode 100644 tests/__data__/expected/logs/load-streams/cluster_1.log delete mode 100644 tests/commands/check-streams.test.js create mode 100644 tests/commands/load-streams.test.js diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 49a504d1b..641686c84 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -42,7 +42,7 @@ jobs: with: node-version: '14' - run: npm install - - run: node scripts/commands/check-streams.js --cluster-id=${{ matrix.cluster_id }} + - run: node scripts/commands/load-streams.js --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 with: name: logs diff --git a/scripts/commands/check-streams.js b/scripts/commands/load-streams.js similarity index 73% rename from scripts/commands/check-streams.js rename to scripts/commands/load-streams.js index 9a74e7776..10a46a091 100644 --- a/scripts/commands/check-streams.js +++ b/scripts/commands/load-streams.js @@ -18,20 +18,20 @@ const config = { const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs' async function main() { - logger.info('Starting...') - logger.info(`Timeout: ${options.timeout}ms`) - logger.info(`Delay: ${options.delay}ms`) + logger.info('starting...') + logger.info(`timeout: ${options.timeout}ms`) + logger.info(`delay: ${options.delay}ms`) timer.start() - const clusterLog = `${LOGS_PATH}/check-streams/cluster_${options.clusterId}.log` - logger.info(`Loading cluster: ${options.clusterId}`) - logger.info(`Creating '${clusterLog}'...`) + const clusterLog = `${LOGS_PATH}/load-streams/cluster_${options.clusterId}.log` + logger.info(`loading cluster: ${options.clusterId}`) + logger.info(`creating '${clusterLog}'...`) await file.create(clusterLog) const items = await db.find({ cluster_id: options.clusterId }) const total = items.length - logger.info(`Found ${total} links`) + logger.info(`found ${total} links`) - logger.info('Checking...') + logger.info('checking...') const results = {} for (const [i, item] of items.entries()) { const message = `[${i + 1}/${total}] ${item.filepath}: ${item.url}` @@ -44,7 +44,7 @@ async function main() { await file.append(clusterLog, JSON.stringify(result) + '\n') } - logger.info(`Done in ${timer.format('HH[h] mm[m] ss[s]')}`) + logger.info(`done in ${timer.format('HH[h] mm[m] ss[s]')}`) } main() diff --git a/tests/__data__/expected/logs/load-streams/cluster_1.log b/tests/__data__/expected/logs/load-streams/cluster_1.log new file mode 100644 index 000000000..68156ac32 --- /dev/null +++ b/tests/__data__/expected/logs/load-streams/cluster_1.log @@ -0,0 +1,2 @@ +{"_id":"2ST8btby3mmsgPF0","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"error":"Operation timed out","streams":[],"requests":[]} +{"_id":"I6cjG2xCBRFFP4sz","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"error":"Operation timed out","streams":[],"requests":[]} diff --git a/tests/commands/check-streams.test.js b/tests/commands/check-streams.test.js deleted file mode 100644 index 250a2dc49..000000000 --- a/tests/commands/check-streams.test.js +++ /dev/null @@ -1,44 +0,0 @@ -const fs = require('fs') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.rmdirSync('tests/__data__/output', { recursive: true }) - fs.mkdirSync('tests/__data__/output') - fs.copyFileSync('tests/__data__/input/test.db', 'tests/__data__/temp/test.db') -}) - -afterEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') -}) - -it('return results if stream with error', () => { - const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db LOGS_PATH=tests/__data__/output/logs node scripts/commands/check-streams.js --cluster-id=1 --timeout=1', - { encoding: 'utf8' } - ) - const logs = fs.readFileSync( - path.resolve('tests/__data__/output/logs/check-streams/cluster_1.log'), - { - encoding: 'utf8' - } - ) - const lines = logs.split('\n') - expect(JSON.parse(lines[0])).toMatchObject({ - _id: '2ST8btby3mmsgPF0', - url: 'http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8', - http: { referrer: '', 'user-agent': '' }, - error: 'Operation timed out', - streams: [], - requests: [] - }) - expect(JSON.parse(lines[1])).toMatchObject({ - _id: 'I6cjG2xCBRFFP4sz', - url: 'https://iptv-all.lanesh4d0w.repl.co/andorra/atv', - http: { referrer: '', 'user-agent': '' }, - error: 'Operation timed out', - streams: [], - requests: [] - }) -}) diff --git a/tests/commands/load-streams.test.js b/tests/commands/load-streams.test.js new file mode 100644 index 000000000..960b70379 --- /dev/null +++ b/tests/commands/load-streams.test.js @@ -0,0 +1,34 @@ +const fs = require('fs-extra') +const path = require('path') +const { execSync } = require('child_process') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + fs.emptyDirSync('tests/__data__/temp') + fs.copyFileSync('tests/__data__/input/channels.db', 'tests/__data__/temp/channels.db') + + const stdout = execSync( + 'DB_FILEPATH=tests/__data__/temp/channels.db LOGS_PATH=tests/__data__/output/logs node scripts/commands/load-streams.js --cluster-id=1 --timeout=1', + { encoding: 'utf8' } + ) +}) + +it('return results', () => { + let output = content('tests/__data__/output/logs/load-streams/cluster_1.log') + let expected = content('tests/__data__/expected/logs/load-streams/cluster_1.log') + + expect(output).toEqual(expected) +}) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From fa4bad3dcad76fe5580e68cbfe9faada4eed3e85 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 06:59:34 +0300 Subject: [PATCH 009/157] Update save-results.js --- .github/workflows/auto-update.yml | 2 +- scripts/commands/save-results.js | 166 ++++++++++++ scripts/commands/update-database.js | 243 ------------------ .../expected/save-results.channels.db | 6 + .../cluster_1.log | 0 tests/__data__/input/save-results.channels.db | 6 + tests/__data__/input/update-database.test.db | 6 - tests/commands/save-results.test.js | 36 +++ tests/commands/update-database.test.js | 109 -------- 9 files changed, 215 insertions(+), 359 deletions(-) create mode 100644 scripts/commands/save-results.js delete mode 100644 scripts/commands/update-database.js create mode 100644 tests/__data__/expected/save-results.channels.db rename tests/__data__/input/logs/{check-streams => load-streams}/cluster_1.log (100%) create mode 100644 tests/__data__/input/save-results.channels.db delete mode 100644 tests/__data__/input/update-database.test.db create mode 100644 tests/commands/save-results.test.js delete mode 100644 tests/commands/update-database.test.js diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 641686c84..dc2fe1274 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -71,7 +71,7 @@ jobs: with: node-version: '14' - run: npm install - - run: node scripts/commands/update-database.js + - run: node scripts/commands/save-results.js - uses: actions/upload-artifact@v2 with: name: database diff --git a/scripts/commands/save-results.js b/scripts/commands/save-results.js new file mode 100644 index 000000000..d3dbb9027 --- /dev/null +++ b/scripts/commands/save-results.js @@ -0,0 +1,166 @@ +const _ = require('lodash') +const statuses = require('../data/statuses') +const { db, store, parser, file, logger } = require('../core') + +let streams = [] +let results = {} +const origins = {} +const items = [] + +const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs/load-streams' + +async function main() { + await loadDatabase() + await loadResults() + await findStreamOrigins() + await updateStreams() + await updateDatabase() +} + +main() + +async function loadDatabase() { + logger.info('loading database...') + + streams = await db.find({}) + + logger.info(`found ${streams.length} streams`) +} + +async function loadResults() { + logger.info('loading results from logs/...') + + const files = await file.list(`${LOGS_PATH}/cluster_*.log`) + for (const filepath of files) { + const parsed = await parser.parseLogs(filepath) + for (const result of parsed) { + results[result._id] = result + } + } + + logger.info(`found ${Object.values(results).length} results`) +} + +async function findStreamOrigins() { + logger.info('searching for stream origins...') + + for (const { error, requests } of Object.values(results)) { + if (error || !Array.isArray(requests) || !requests.length) continue + + let origin = requests.shift() + origin = new URL(origin.url) + for (const request of requests) { + const curr = new URL(request.url) + const key = curr.href.replace(/(^\w+:|^)/, '') + if (!origins[key] && curr.host === origin.host) { + origins[key] = origin.href + } + } + } + + logger.info(`found ${_.uniq(Object.values(origins)).length} origins`) +} + +async function updateStreams() { + logger.info('updating streams...') + + let updated = 0 + for (const item of streams) { + const stream = store.create(item) + const result = results[item._id] + + if (result) { + const { error, streams, requests } = result + const resolution = parseResolution(streams) + const origin = findOrigin(requests) + let status = parseStatus(error) + + if (status) { + const prevStatus = item.status + if (prevStatus.code === 'not_247') + // not_247 -> * = not_247 + status = item.status + else if (prevStatus.code === 'geo_blocked') + // geo_blocked -> * = geo_blocked + status = item.status + else if (status.code === 'geo_blocked') + // * -> geo_blocked = * + status = item.status + else if (prevStatus.code === 'offline' && status.code === 'online') + // offline -> online = not_247 + status = statuses['not_247'] + + stream.set('status', { status }) + stream.set('is_broken', { status: stream.get('status') }) + } + + if (resolution) { + stream.set('resolution', { resolution }) + } + + if (origin) { + stream.set('url', { url: origin }) + } + } + + if (stream.changed) { + stream.set('updated', true) + items.push(stream.data()) + updated++ + } + } + + logger.info(`updated ${updated} items`) +} + +async function updateDatabase() { + logger.info('updating database...') + + for (const item of items) { + await db.update({ _id: item._id }, item) + } + db.compact() + + logger.info('done') +} + +function findOrigin(requests) { + if (origins && Array.isArray(requests)) { + requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) + for (const url of requests) { + if (origins[url]) { + return origins[url] + } + } + } + + return null +} + +function parseResolution(streams) { + const resolution = streams + .filter(s => s.codec_type === 'video') + .reduce( + (acc, curr) => { + if (curr.height > acc.height) return { width: curr.width, height: curr.height } + return acc + }, + { width: 0, height: 0 } + ) + + if (resolution.width > 0 && resolution.height > 0) return resolution + return null +} + +function parseStatus(error) { + if (error) { + if (error.includes('timed out')) { + return statuses['timeout'] + } else if (error.includes('403')) { + return statuses['geo_blocked'] + } + return statuses['offline'] + } + + return statuses['online'] +} diff --git a/scripts/commands/update-database.js b/scripts/commands/update-database.js deleted file mode 100644 index 7afa20bd1..000000000 --- a/scripts/commands/update-database.js +++ /dev/null @@ -1,243 +0,0 @@ -const _ = require('lodash') -const statuses = require('../data/statuses') -const languages = require('../data/languages') -const { db, store, parser, file, logger } = require('../core') - -let epgCodes = [] -let streams = [] -let checkResults = {} -const origins = {} -const items = [] - -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs' -const EPG_CODES_FILEPATH = process.env.EPG_CODES_FILEPATH || 'scripts/data/codes.json' - -async function main() { - await setUp() - await loadDatabase() - await removeDuplicates() - await loadCheckResults() - await findStreamOrigins() - await updateStreams() - await updateDatabase() -} - -main() - -async function loadDatabase() { - logger.info('Loading database...') - - streams = await db.find({}) - - logger.info(`Found ${streams.length} streams`) -} - -async function removeDuplicates() { - logger.info('Removing duplicates...') - - const before = streams.length - streams = _.uniqBy(streams, 'id') - const after = streams.length - - logger.info(`Removed ${before - after} links`) -} - -async function loadCheckResults() { - logger.info('Loading check results from logs/...') - - const files = await file.list(`${LOGS_PATH}/check-streams/cluster_*.log`) - for (const filepath of files) { - const results = await parser.parseLogs(filepath) - for (const result of results) { - checkResults[result._id] = result - } - } - - logger.info(`Found ${Object.values(checkResults).length} results`) -} - -async function findStreamOrigins() { - logger.info('Searching for stream origins...') - - for (const { error, requests } of Object.values(checkResults)) { - if (error || !Array.isArray(requests) || !requests.length) continue - - let origin = requests.shift() - origin = new URL(origin.url) - for (const request of requests) { - const curr = new URL(request.url) - const key = curr.href.replace(/(^\w+:|^)/, '') - if (!origins[key] && curr.host === origin.host) { - origins[key] = origin.href - } - } - } - - logger.info(`Found ${_.uniq(Object.values(origins)).length} origins`) -} - -async function updateStreams() { - logger.info('Updating streams...') - - let updated = 0 - for (const item of streams) { - const stream = store.create(item) - const result = checkResults[item._id] - - if (result) { - const { error, streams, requests } = result - const resolution = parseResolution(streams) - const origin = findOrigin(requests) - let status = parseStatus(error) - - if (status) { - const prevStatus = item.status - if (prevStatus.code === 'not_247') // not_247 -> * = not_247 - status = item.status - else if (prevStatus.code === 'geo_blocked') // geo_blocked -> * = geo_blocked - status = item.status - else if (status.code === 'geo_blocked') // * -> geo_blocked = * - status = item.status - else if (prevStatus.code === 'offline' && status.code === 'online') // offline -> online = not_247 - status = statuses['not_247'] - - - stream.set('status', { status }) - stream.set('is_broken', { status: stream.get('status') }) - } - - if (resolution) { - stream.set('resolution', { resolution }) - } - - if (origin) { - stream.set('url', { url: origin }) - } - } - - if (!stream.has('logo')) { - const logo = findLogo(stream.get('id')) - stream.set('logo', { logo }) - } - - if (!stream.has('guides')) { - const guides = findGuides(stream.get('id')) - stream.set('guides', { guides }) - } - - if (!stream.has('countries') && stream.get('src_country')) { - const countries = [stream.get('src_country')] - stream.set('countries', { countries }) - } - - if (!stream.has('languages')) { - const languages = findLanguages(stream.get('countries'), stream.get('src_country')) - stream.set('languages', { languages }) - } - - if (stream.changed) { - stream.set('updated', true) - items.push(stream.data()) - updated++ - } - } - - logger.info(`Updated ${updated} items`) -} - -async function updateDatabase() { - logger.info('Updating database...') - - for (const item of items) { - await db.update({ _id: item._id }, item) - } - db.compact() - - logger.info('Done') -} - -async function setUp() { - try { - const codes = await file.read(EPG_CODES_FILEPATH) - epgCodes = JSON.parse(codes) - } catch (err) { - logger.error(err.message) - } -} - -function findLanguages(countries, src_country) { - if (countries && Array.isArray(countries)) { - let codes = countries.map(country => country.lang) - codes = _.uniq(codes) - - return codes.map(code => languages.find(l => l.code === code)).filter(l => l) - } - - if (src_country) { - const code = src_country.lang - const lang = languages.find(l => l.code === code) - - return lang ? [lang] : [] - } - - return [] -} - -function findOrigin(requests) { - if (origins && Array.isArray(requests)) { - requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) - for (const url of requests) { - if (origins[url]) { - return origins[url] - } - } - } - - return null -} - -function parseResolution(streams) { - const resolution = streams - .filter(s => s.codec_type === 'video') - .reduce( - (acc, curr) => { - if (curr.height > acc.height) return { width: curr.width, height: curr.height } - return acc - }, - { width: 0, height: 0 } - ) - - if (resolution.width > 0 && resolution.height > 0) return resolution - return null -} - -function parseStatus(error) { - if (error) { - if (error.includes('timed out')) { - return statuses['timeout'] - } else if (error.includes('403')) { - return statuses['geo_blocked'] - } - return statuses['offline'] - } - - return statuses['online'] -} - -function findLogo(id) { - const item = epgCodes.find(i => i.tvg_id === id) - if (item && item.logo) { - return item.logo - } - - return null -} - -function findGuides(id) { - const item = epgCodes.find(i => i.tvg_id === id) - if (item && Array.isArray(item.guides)) { - return item.guides - } - - return [] -} diff --git a/tests/__data__/expected/save-results.channels.db b/tests/__data__/expected/save-results.channels.db new file mode 100644 index 000000000..a7eca5bc1 --- /dev/null +++ b/tests/__data__/expected/save-results.channels.db @@ -0,0 +1,6 @@ +{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"name":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"name":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/logs/check-streams/cluster_1.log b/tests/__data__/input/logs/load-streams/cluster_1.log similarity index 100% rename from tests/__data__/input/logs/check-streams/cluster_1.log rename to tests/__data__/input/logs/load-streams/cluster_1.log diff --git a/tests/__data__/input/save-results.channels.db b/tests/__data__/input/save-results.channels.db new file mode 100644 index 000000000..27154ad3c --- /dev/null +++ b/tests/__data__/input/save-results.channels.db @@ -0,0 +1,6 @@ +{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"name":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"name":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/update-database.test.db b/tests/__data__/input/update-database.test.db deleted file mode 100644 index 33267072e..000000000 --- a/tests/__data__/input/update-database.test.db +++ /dev/null @@ -1,6 +0,0 @@ -{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","src_country":{"name":"Russia","code":"RU","lang":"rus"},"tvg_country":"RU","countries":[{"name":"Russia","code":"RU","lang":"rus"}],"regions":[{"name":"Asia","code":"ASIA"},{"name":"Commonwealth of Independent States","code":"CIS"},{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Russian","code":"rus"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":["https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"],"logo":"https://iptvx.one/icn/ldpr-tv.png","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","src_country":{"name":"Andorra","code":"AD","lang":"cat"},"tvg_country":"AD","countries":[{"name":"Andorra","code":"AD","lang":"cat"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Catalan","code":"cat"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/kJCjeQ4.png","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"name":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","src_country":{"name":"Afghanistan","code":"AF","lang":"pus"},"tvg_country":"AF","countries":[{"name":"Afghanistan","code":"AF","lang":"pus"}],"regions":[{"name":"Asia-Pacific","code":"APAC"},{"name":"Asia","code":"ASIA"},{"name":"South Asia","code":"SAS"}],"languages":[{"name":"Pashto","code":"pus"}],"categories":[],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/XpR1VvZ.png","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"name":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","src_country":{"name":"Afghanistan","code":"AF","lang":"pus"},"tvg_country":"AF","countries":[{"name":"Afghanistan","code":"AF","lang":"pus"}],"regions":[{"name":"Asia-Pacific","code":"APAC"},{"name":"Asia","code":"ASIA"},{"name":"South Asia","code":"SAS"}],"languages":[{"name":"Pashto","code":"pus"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://ws.shoutcast.com/images/contacts/b/b9f8/b9f811c5-d210-4d0b-ae32-f467823a913e/radios/0d677ea5-46b4-4129-9359-9e5783fb6a37/0d677ea5-46b4-4129-9359-9e5783fb6a37.png","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/commands/save-results.test.js b/tests/commands/save-results.test.js new file mode 100644 index 000000000..68943d6a8 --- /dev/null +++ b/tests/commands/save-results.test.js @@ -0,0 +1,36 @@ +const fs = require('fs-extra') +const path = require('path') +const { execSync } = require('child_process') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/temp') + fs.copyFileSync( + 'tests/__data__/input/save-results.channels.db', + 'tests/__data__/temp/channels.db' + ) + + const stdout = execSync( + 'DB_FILEPATH=tests/__data__/temp/channels.db LOGS_PATH=tests/__data__/input/logs/load-streams EPG_CODES_FILEPATH=tests/__data__/input/codes.json node scripts/commands/save-results.js', + { encoding: 'utf8' } + ) +}) + +it('can save results', () => { + const output = content('tests/__data__/temp/channels.db') + const expected = content('tests/__data__/expected/save-results.channels.db') + + expect(output).toEqual(expected) +}) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} diff --git a/tests/commands/update-database.test.js b/tests/commands/update-database.test.js deleted file mode 100644 index 40e7d340f..000000000 --- a/tests/commands/update-database.test.js +++ /dev/null @@ -1,109 +0,0 @@ -const fs = require('fs') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/update-database.test.db', 'tests/__data__/temp/test.db') -}) - -it('can update database', () => { - const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db LOGS_PATH=tests/__data__/input/logs EPG_CODES_FILEPATH=tests/__data__/input/codes.json node scripts/commands/update-database.js', - { encoding: 'utf8' } - ) - const database = fs.readFileSync('tests/__data__/temp/test.db', { encoding: 'utf8' }) - const lines = database.split('\n') - expect(JSON.parse(lines[0])).toMatchObject({ - name: 'ЛДПР ТВ', - id: 'LDPRTV.ru', - filepath: 'tests/__data__/output/channels/ru.m3u', - src_country: { name: 'Russia', code: 'RU', lang: 'rus' }, - tvg_country: 'RU', - countries: [{ name: 'Russia', code: 'RU', lang: 'rus' }], - regions: [ - { name: 'Asia', code: 'ASIA' }, - { name: 'Commonwealth of Independent States', code: 'CIS' }, - { name: 'Europe, the Middle East and Africa', code: 'EMEA' }, - { name: 'Europe', code: 'EUR' } - ], - languages: [{ name: 'Russian', code: 'rus' }], - categories: [{ name: 'General', slug: 'general', nsfw: false }], - tvg_url: '', - guides: ['https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml'], - logo: 'https://iptvx.one/icn/ldpr-tv.png', - resolution: { height: 1080, width: 1920 }, - status: { label: '', code: 'online', level: 1 }, - url: 'http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8', - http: { referrer: '', 'user-agent': '' }, - is_nsfw: false, - is_broken: false, - updated: true, - cluster_id: 1, - _id: '2ST8btby3mmsgPF0' - }) - expect(JSON.parse(lines[1])).toMatchObject({ - name: 'BBC News HD', - id: 'BBCNews.uk', - filepath: 'tests/__data__/output/channels/uk.m3u', - src_country: { name: 'United Kingdom', code: 'UK', lang: 'eng' }, - tvg_country: 'UK', - countries: [{ name: 'United Kingdom', code: 'UK', lang: 'eng' }], - regions: [ - { name: 'Europe, the Middle East and Africa', code: 'EMEA' }, - { name: 'Europe', code: 'EUR' } - ], - languages: [{ name: 'English', code: 'eng' }], - categories: [{ name: 'News', slug: 'news', nsfw: false }], - tvg_url: '', - guides: [], - logo: 'https://i.imgur.com/eNPIQ9f.png', - resolution: { height: 720, width: null }, - status: { label: 'Not 24/7', code: 'not_247', level: 3 }, - url: 'http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8', - http: { referrer: '', 'user-agent': '' }, - is_nsfw: false, - is_broken: false, - updated: false, - cluster_id: 3, - _id: '3TbieV1ptnZVCIdn' - }) - expect(JSON.parse(lines[2])).toMatchObject({ - name: 'ATV', - id: 'AndorraTV.ad', - filepath: 'tests/__data__/output/channels/ad.m3u', - src_country: { name: 'Andorra', code: 'AD', lang: 'cat' }, - tvg_country: 'AD', - countries: [{ name: 'Andorra', code: 'AD', lang: 'cat' }], - regions: [ - { name: 'Europe, the Middle East and Africa', code: 'EMEA' }, - { name: 'Europe', code: 'EUR' } - ], - languages: [{ name: 'Catalan', code: 'cat' }], - categories: [{ name: 'General', slug: 'general', nsfw: false }], - tvg_url: '', - guides: ['https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml'], - logo: 'https://i.imgur.com/kJCjeQ4.png', - resolution: { height: 720, width: null }, - status: { label: 'Offline', code: 'offline', level: 5 }, - url: 'https://iptv-all.lanesh4d0w.repl.co/andorra/atv', - http: { referrer: '', 'user-agent': '' }, - is_nsfw: false, - is_broken: true, - updated: true, - cluster_id: 1 - }) - expect(JSON.parse(lines[4])).toMatchObject({ - id: 'KayhanTV.af', - status: { label: 'Geo-blocked', code: 'geo_blocked', level: 2 }, - is_broken: false, - updated: false - }) - expect(JSON.parse(lines[5])).toMatchObject({ - id: 'Sharq.af', - status: { label: 'Offline', code: 'offline', level: 5 }, - is_broken: true, - updated: true - }) -}) From 46deb7f004dc120f7e24b82e00cbf31ff0b72261 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 07:25:56 +0300 Subject: [PATCH 010/157] Update create-database.js --- scripts/commands/create-database.js | 2 +- scripts/core/cid.js | 24 +++--------------------- scripts/core/parser.js | 19 +++++++++++++++++++ scripts/store/setters/index.js | 1 + scripts/store/setters/title.js | 5 +++++ tests/__data__/expected/channels.db | 2 -- tests/__data__/expected/streams.db | 2 ++ tests/commands/create-database.test.js | 6 +++--- 8 files changed, 34 insertions(+), 27 deletions(-) create mode 100644 scripts/store/setters/title.js delete mode 100644 tests/__data__/expected/channels.db create mode 100644 tests/__data__/expected/streams.db diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js index abb63a8ab..f9927cbb8 100644 --- a/scripts/commands/create-database.js +++ b/scripts/commands/create-database.js @@ -50,7 +50,7 @@ async function saveToDatabase() { for (const item of chunk) { const stream = store.create() stream.set('id', { id: item.tvg.id }) - stream.set('display_name', { display_name: item.name }) + stream.set('title', { title: item.name }) stream.set('filepath', { filepath: item.filepath }) stream.set('resolution', { title: item.name }) stream.set('status', { title: item.name }) diff --git a/scripts/core/cid.js b/scripts/core/cid.js index 7be12caf3..11ab5fae3 100644 --- a/scripts/core/cid.js +++ b/scripts/core/cid.js @@ -1,11 +1,12 @@ const file = require('./file') +const parser = require('./parser') const transliteration = require('transliteration') const cid = {} cid.generate = function (title, filepath) { - const name = parseChannelName(title) - const code = parseCountryCode(filepath) + const name = parser.parseChannelName(title) + const code = parser.parseCountryCode(filepath) if (name && code) { const slug = transliteration @@ -20,22 +21,3 @@ cid.generate = function (title, filepath) { } module.exports = cid - -function parseCountryCode(filepath) { - if (!filepath) return null - const basename = file.basename(filepath) - const [code] = basename.split('_') || [null] - - return code -} - -function parseChannelName(title) { - return title - .trim() - .split(' ') - .map(s => s.trim()) - .filter(s => { - return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) - }) - .join(' ') -} diff --git a/scripts/core/parser.js b/scripts/core/parser.js index b54fd8f5a..5af0eb85b 100644 --- a/scripts/core/parser.js +++ b/scripts/core/parser.js @@ -28,4 +28,23 @@ parser.parseNumber = function (string) { return parsed } +parser.parseChannelName = function (string) { + return string + .trim() + .split(' ') + .map(s => s.trim()) + .filter(s => { + return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) + }) + .join(' ') +} + +parser.parseCountryCode = function (filepath) { + if (!filepath) return null + const basename = file.basename(filepath) + const [code] = basename.split('_') || [null] + + return code +} + module.exports = parser diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 4a5aaef82..273dc0710 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -2,3 +2,4 @@ exports.is_broken = require('./is_broken') exports.resolution = require('./resolution') exports.status = require('./status') exports.url = require('./url') +exports.title = require('./title') diff --git a/scripts/store/setters/title.js b/scripts/store/setters/title.js new file mode 100644 index 000000000..4a6612554 --- /dev/null +++ b/scripts/store/setters/title.js @@ -0,0 +1,5 @@ +const { parser } = require('../../core') + +module.exports = function ({ title }) { + return parser.parseChannelName(title) +} diff --git a/tests/__data__/expected/channels.db b/tests/__data__/expected/channels.db deleted file mode 100644 index 3aa99e683..000000000 --- a/tests/__data__/expected/channels.db +++ /dev/null @@ -1,2 +0,0 @@ -{"display_name":"ATV (720p) [Offline]","id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} -{"display_name":"Fox Sports 2 Asia (Thai) (720p)","id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} diff --git a/tests/__data__/expected/streams.db b/tests/__data__/expected/streams.db new file mode 100644 index 000000000..dc5057f18 --- /dev/null +++ b/tests/__data__/expected/streams.db @@ -0,0 +1,2 @@ +{"title":"ATV","id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} +{"title":"Fox Sports 2 Asia (Thai)","id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js index b90fc48b7..cbc852af4 100644 --- a/tests/commands/create-database.test.js +++ b/tests/commands/create-database.test.js @@ -6,14 +6,14 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') const stdout = execSync( - 'DB_FILEPATH=tests/__data__/output/channels.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', + 'DB_FILEPATH=tests/__data__/output/streams.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', { encoding: 'utf8' } ) }) it('can create database', () => { - let output = content('tests/__data__/output/channels.db') - let expected = content('tests/__data__/expected/channels.db') + let output = content('tests/__data__/output/streams.db') + let expected = content('tests/__data__/expected/streams.db') output = output.map(i => { i._id = null From 7c8f5612bada94b7258c14886a6412f95d6e2268 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 07:27:25 +0300 Subject: [PATCH 011/157] Update create-matrix.test.js --- tests/commands/create-matrix.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/create-matrix.test.js b/tests/commands/create-matrix.test.js index 3cf1de580..b02bf0254 100644 --- a/tests/commands/create-matrix.test.js +++ b/tests/commands/create-matrix.test.js @@ -3,7 +3,7 @@ const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.copyFileSync('tests/__data__/input/channels.db', 'tests/__data__/temp/channels.db') + fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') }) afterEach(() => { @@ -13,7 +13,7 @@ afterEach(() => { it('can create valid matrix', () => { const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/channels.db node scripts/commands/create-matrix.js', + 'DB_FILEPATH=tests/__data__/temp/streams.db node scripts/commands/create-matrix.js', { encoding: 'utf8' } ) expect(result).toBe('::set-output name=matrix::{"cluster_id":[1,3]}\n') From 2aa57665067a599b6a781cf14f3792cf34cd1259 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 07:29:53 +0300 Subject: [PATCH 012/157] Update load-streams.js --- scripts/commands/load-streams.js | 4 ++-- tests/__data__/input/channels.db | 4 ---- tests/__data__/input/streams.db | 4 ++++ tests/commands/load-streams.test.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 tests/__data__/input/channels.db create mode 100644 tests/__data__/input/streams.db diff --git a/scripts/commands/load-streams.js b/scripts/commands/load-streams.js index 10a46a091..5e3e50caa 100644 --- a/scripts/commands/load-streams.js +++ b/scripts/commands/load-streams.js @@ -15,7 +15,7 @@ const config = { debug: options.debug } -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs' +const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs/load-streams' async function main() { logger.info('starting...') @@ -23,7 +23,7 @@ async function main() { logger.info(`delay: ${options.delay}ms`) timer.start() - const clusterLog = `${LOGS_PATH}/load-streams/cluster_${options.clusterId}.log` + const clusterLog = `${LOGS_PATH}/cluster_${options.clusterId}.log` logger.info(`loading cluster: ${options.clusterId}`) logger.info(`creating '${clusterLog}'...`) await file.create(clusterLog) diff --git a/tests/__data__/input/channels.db b/tests/__data__/input/channels.db deleted file mode 100644 index 331b77081..000000000 --- a/tests/__data__/input/channels.db +++ /dev/null @@ -1,4 +0,0 @@ -{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","src_country":{"name":"Russia","code":"RU","lang":"rus"},"tvg_country":"RU","countries":[{"name":"Russia","code":"RU","lang":"rus"}],"regions":[{"name":"Asia","code":"ASIA"},{"name":"Commonwealth of Independent States","code":"CIS"},{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Russian","code":"rus"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":["https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"],"logo":"https://iptvx.one/icn/ldpr-tv.png","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","src_country":{"name":"Andorra","code":"AD","lang":"cat"},"tvg_country":"AD","countries":[{"name":"Andorra","code":"AD","lang":"cat"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Catalan","code":"cat"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/kJCjeQ4.png","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/__data__/input/streams.db b/tests/__data__/input/streams.db new file mode 100644 index 000000000..9f75a017e --- /dev/null +++ b/tests/__data__/input/streams.db @@ -0,0 +1,4 @@ +{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/commands/load-streams.test.js b/tests/commands/load-streams.test.js index 960b70379..00bde9545 100644 --- a/tests/commands/load-streams.test.js +++ b/tests/commands/load-streams.test.js @@ -5,10 +5,10 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/channels.db', 'tests/__data__/temp/channels.db') + fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') const stdout = execSync( - 'DB_FILEPATH=tests/__data__/temp/channels.db LOGS_PATH=tests/__data__/output/logs node scripts/commands/load-streams.js --cluster-id=1 --timeout=1', + 'DB_FILEPATH=tests/__data__/temp/streams.db LOGS_PATH=tests/__data__/output/logs/load-streams node scripts/commands/load-streams.js --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) From 219539b70c14e17567bce3552e44520514db508e Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 07:32:18 +0300 Subject: [PATCH 013/157] Update save-results.js --- scripts/commands/save-results.js | 2 +- tests/__data__/expected/save-results.channels.db | 6 ------ tests/__data__/expected/save-results.streams.db | 6 ++++++ tests/__data__/input/codes.json | 1 - tests/__data__/input/save-results.channels.db | 6 ------ tests/__data__/input/save-results.streams.db | 6 ++++++ tests/commands/save-results.test.js | 11 ++++------- 7 files changed, 17 insertions(+), 21 deletions(-) delete mode 100644 tests/__data__/expected/save-results.channels.db create mode 100644 tests/__data__/expected/save-results.streams.db delete mode 100644 tests/__data__/input/codes.json delete mode 100644 tests/__data__/input/save-results.channels.db create mode 100644 tests/__data__/input/save-results.streams.db diff --git a/scripts/commands/save-results.js b/scripts/commands/save-results.js index d3dbb9027..d77b6db69 100644 --- a/scripts/commands/save-results.js +++ b/scripts/commands/save-results.js @@ -28,7 +28,7 @@ async function loadDatabase() { } async function loadResults() { - logger.info('loading results from logs/...') + logger.info('loading results from logs/load-streams...') const files = await file.list(`${LOGS_PATH}/cluster_*.log`) for (const filepath of files) { diff --git a/tests/__data__/expected/save-results.channels.db b/tests/__data__/expected/save-results.channels.db deleted file mode 100644 index a7eca5bc1..000000000 --- a/tests/__data__/expected/save-results.channels.db +++ /dev/null @@ -1,6 +0,0 @@ -{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"name":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"name":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/expected/save-results.streams.db b/tests/__data__/expected/save-results.streams.db new file mode 100644 index 000000000..0b9c65556 --- /dev/null +++ b/tests/__data__/expected/save-results.streams.db @@ -0,0 +1,6 @@ +{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/codes.json b/tests/__data__/input/codes.json deleted file mode 100644 index 3f8989427..000000000 --- a/tests/__data__/input/codes.json +++ /dev/null @@ -1 +0,0 @@ -[{"tvg_id":"AndorraTV.ad","display_name":"Andorra TV","country":"ad","guides":["https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml"],"logo":"https://www.andorradifusio.ad/images/logo/andorradifusio_logo_22122020091723.png"}] \ No newline at end of file diff --git a/tests/__data__/input/save-results.channels.db b/tests/__data__/input/save-results.channels.db deleted file mode 100644 index 27154ad3c..000000000 --- a/tests/__data__/input/save-results.channels.db +++ /dev/null @@ -1,6 +0,0 @@ -{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"name":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"name":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/save-results.streams.db b/tests/__data__/input/save-results.streams.db new file mode 100644 index 000000000..0fbbcdf57 --- /dev/null +++ b/tests/__data__/input/save-results.streams.db @@ -0,0 +1,6 @@ +{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/commands/save-results.test.js b/tests/commands/save-results.test.js index 68943d6a8..73af2cd22 100644 --- a/tests/commands/save-results.test.js +++ b/tests/commands/save-results.test.js @@ -4,20 +4,17 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync( - 'tests/__data__/input/save-results.channels.db', - 'tests/__data__/temp/channels.db' - ) + fs.copyFileSync('tests/__data__/input/save-results.streams.db', 'tests/__data__/temp/streams.db') const stdout = execSync( - 'DB_FILEPATH=tests/__data__/temp/channels.db LOGS_PATH=tests/__data__/input/logs/load-streams EPG_CODES_FILEPATH=tests/__data__/input/codes.json node scripts/commands/save-results.js', + 'DB_FILEPATH=tests/__data__/temp/streams.db LOGS_PATH=tests/__data__/input/logs/load-streams node scripts/commands/save-results.js', { encoding: 'utf8' } ) }) it('can save results', () => { - const output = content('tests/__data__/temp/channels.db') - const expected = content('tests/__data__/expected/save-results.channels.db') + const output = content('tests/__data__/temp/streams.db') + const expected = content('tests/__data__/expected/save-results.streams.db') expect(output).toEqual(expected) }) From 244afb8088c2cdd05084ce7ad01725ba5b5b81d5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 07:45:12 +0300 Subject: [PATCH 014/157] Update create-database.js --- scripts/core/parser.js | 2 +- tests/__data__/expected/streams.db | 1 + tests/__data__/input/channels/unsorted.m3u | 3 +++ tests/commands/create-database.test.js | 3 ++- 4 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 tests/__data__/input/channels/unsorted.m3u diff --git a/scripts/core/parser.js b/scripts/core/parser.js index 5af0eb85b..531a93a3b 100644 --- a/scripts/core/parser.js +++ b/scripts/core/parser.js @@ -42,7 +42,7 @@ parser.parseChannelName = function (string) { parser.parseCountryCode = function (filepath) { if (!filepath) return null const basename = file.basename(filepath) - const [code] = basename.split('_') || [null] + const [_, code] = basename.match(/^([a-z]{2})(_|\.)/) || [null, null] return code } diff --git a/tests/__data__/expected/streams.db b/tests/__data__/expected/streams.db index dc5057f18..ddfa7ac49 100644 --- a/tests/__data__/expected/streams.db +++ b/tests/__data__/expected/streams.db @@ -1,2 +1,3 @@ {"title":"ATV","id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} {"title":"Fox Sports 2 Asia (Thai)","id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} +{"id":null,"title":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Jruf9KFXRsa5BjYj"} diff --git a/tests/__data__/input/channels/unsorted.m3u b/tests/__data__/input/channels/unsorted.m3u new file mode 100644 index 000000000..a245f03e8 --- /dev/null +++ b/tests/__data__/input/channels/unsorted.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",1A Network (720p) +https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8 diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js index cbc852af4..674c6d81f 100644 --- a/tests/commands/create-database.test.js +++ b/tests/commands/create-database.test.js @@ -27,7 +27,8 @@ it('can create database', () => { expect(output).toEqual( expect.arrayContaining([ expect.objectContaining(expected[0]), - expect.objectContaining(expected[1]) + expect.objectContaining(expected[1]), + expect.objectContaining(expected[2]) ]) ) }) From 1c925c407a6ac32b75bd2bef5da83f60b716b0e0 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 08:12:17 +0300 Subject: [PATCH 015/157] Update update-playlists.js --- scripts/commands/update-playlists.js | 2 +- scripts/core/generator.js | 29 +++++++----- .../getters/{title.js => display_name.js} | 2 +- scripts/store/getters/index.js | 2 +- tests/__data__/expected/channels/ad.m3u | 3 ++ tests/__data__/expected/channels/ru.m3u | 3 ++ tests/__data__/expected/channels/uk.m3u | 5 ++ tests/__data__/input/streams.db | 4 +- tests/commands/update-playlists.test.js | 47 +++++++++---------- 9 files changed, 56 insertions(+), 41 deletions(-) rename scripts/store/getters/{title.js => display_name.js} (88%) create mode 100644 tests/__data__/expected/channels/ad.m3u create mode 100644 tests/__data__/expected/channels/ru.m3u create mode 100644 tests/__data__/expected/channels/uk.m3u diff --git a/scripts/commands/update-playlists.js b/scripts/commands/update-playlists.js index 648c27ee9..4ef3b7f00 100644 --- a/scripts/commands/update-playlists.js +++ b/scripts/commands/update-playlists.js @@ -9,7 +9,7 @@ async function main() { for (const filepath in files) { const items = files[filepath] - await generator.saveAsM3U(filepath, items, { includeGuides: false }) + await generator.saveAsM3U(filepath, items) } } diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 046ac15fd..918d864cf 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -50,11 +50,11 @@ generator.generate = async function (filepath, query = {}, options = {}) { return { filepath, query, options, count: items.length } } -async function saveAsM3U(filepath, items, options) { +async function saveAsM3U(filepath, items, options = {}) { const playlist = await createPlaylist(filepath) const header = {} - if (options.includeGuides) { + if (options.public) { let guides = items.map(item => item.guides) guides = _.uniq(_.flatten(guides)).sort().join(',') @@ -64,23 +64,28 @@ async function saveAsM3U(filepath, items, options) { await playlist.header(header) for (const item of items) { const stream = store.create(item) - await playlist.link( - stream.get('url'), - stream.get('title'), - { + + let attrs + if (options.public) { + attrs = { 'tvg-id': stream.get('tvg_id'), 'tvg-country': stream.get('tvg_country'), 'tvg-language': stream.get('tvg_language'), 'tvg-logo': stream.get('tvg_logo'), - // 'tvg-url': stream.get('tvg_url') || undefined, 'user-agent': stream.get('http.user-agent') || undefined, 'group-title': stream.get('group_title') - }, - { - 'http-referrer': stream.get('http.referrer') || undefined, - 'http-user-agent': stream.get('http.user-agent') || undefined } - ) + } else { + attrs = { + 'tvg-id': stream.get('tvg_id'), + 'user-agent': stream.get('http.user-agent') || undefined + } + } + + await playlist.link(stream.get('url'), stream.get('display_name'), attrs, { + 'http-referrer': stream.get('http.referrer') || undefined, + 'http-user-agent': stream.get('http.user-agent') || undefined + }) } } diff --git a/scripts/store/getters/title.js b/scripts/store/getters/display_name.js similarity index 88% rename from scripts/store/getters/title.js rename to scripts/store/getters/display_name.js index 7dc8304a6..010cc6042 100644 --- a/scripts/store/getters/title.js +++ b/scripts/store/getters/display_name.js @@ -1,5 +1,5 @@ module.exports = function () { - let title = this.name + let title = this.title if (this.resolution.height) { title += ` (${this.resolution.height}p)` diff --git a/scripts/store/getters/index.js b/scripts/store/getters/index.js index df20631e0..090faca8c 100644 --- a/scripts/store/getters/index.js +++ b/scripts/store/getters/index.js @@ -1,5 +1,5 @@ exports.group_title = require('./group_title') -exports.title = require('./title') +exports.display_name = require('./display_name') exports.tvg_country = require('./tvg_country') exports.tvg_id = require('./tvg_id') exports.tvg_language = require('./tvg_language') diff --git a/tests/__data__/expected/channels/ad.m3u b/tests/__data__/expected/channels/ad.m3u new file mode 100644 index 000000000..9289a76bd --- /dev/null +++ b/tests/__data__/expected/channels/ad.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AndorraTV.ad",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/tests/__data__/expected/channels/ru.m3u b/tests/__data__/expected/channels/ru.m3u new file mode 100644 index 000000000..d463313f3 --- /dev/null +++ b/tests/__data__/expected/channels/ru.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/channels/uk.m3u b/tests/__data__/expected/channels/uk.m3u new file mode 100644 index 000000000..bf1dc35a0 --- /dev/null +++ b/tests/__data__/expected/channels/uk.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AndorraTV.ad",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ diff --git a/tests/__data__/input/streams.db b/tests/__data__/input/streams.db index 9f75a017e..5555ec209 100644 --- a/tests/__data__/input/streams.db +++ b/tests/__data__/input/streams.db @@ -1,4 +1,4 @@ {"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} {"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Andorra TV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/commands/update-playlists.test.js b/tests/commands/update-playlists.test.js index 1656f051d..8e449258a 100644 --- a/tests/commands/update-playlists.test.js +++ b/tests/commands/update-playlists.test.js @@ -1,37 +1,36 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.copyFileSync('tests/__data__/input/test.db', 'tests/__data__/temp/test.db') -}) + fs.emptyDirSync('tests/__data__/temp') + fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') -afterEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') + const stdout = execSync( + 'DB_FILEPATH=tests/__data__/temp/streams.db node scripts/commands/update-playlists.js', + { encoding: 'utf8' } + ) }) it('can update playlist', () => { - const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db node scripts/commands/update-playlists.js', - { encoding: 'utf8' } - ) + const output1 = content('tests/__data__/output/channels/ad.m3u') + const expected1 = content('tests/__data__/expected/channels/ad.m3u') - const adPlaylist = fs.readFileSync('tests/__data__/output/channels/ad.m3u', { - encoding: 'utf8' - }) + expect(output1).toBe(expected1) - expect(adPlaylist).toBe(`#EXTM3U -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Catalan" tvg-logo="https://i.imgur.com/kJCjeQ4.png" group-title="General",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv -`) + const output2 = content('tests/__data__/output/channels/ru.m3u') + const expected2 = content('tests/__data__/expected/channels/ru.m3u') - const ruPlaylist = fs.readFileSync('tests/__data__/output/channels/ru.m3u', { - encoding: 'utf8' - }) + expect(output2).toBe(expected2) + + const output3 = content('tests/__data__/output/channels/uk.m3u') + const expected3 = content('tests/__data__/expected/channels/uk.m3u') - expect(ruPlaylist).toBe(`#EXTM3U -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -`) + expect(output3).toBe(expected3) }) + +function content(filepath) { + return fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) +} From d604f35ba1b1fee777a2380afa155dc21b39cb89 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 5 Feb 2022 08:21:31 +0300 Subject: [PATCH 016/157] Update update-playlists.test.js --- tests/commands/update-playlists.test.js | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/tests/commands/update-playlists.test.js b/tests/commands/update-playlists.test.js index 8e449258a..402a64f6a 100644 --- a/tests/commands/update-playlists.test.js +++ b/tests/commands/update-playlists.test.js @@ -13,20 +13,17 @@ beforeEach(() => { }) it('can update playlist', () => { - const output1 = content('tests/__data__/output/channels/ad.m3u') - const expected1 = content('tests/__data__/expected/channels/ad.m3u') - - expect(output1).toBe(expected1) - - const output2 = content('tests/__data__/output/channels/ru.m3u') - const expected2 = content('tests/__data__/expected/channels/ru.m3u') - - expect(output2).toBe(expected2) + expect(content('tests/__data__/output/channels/ad.m3u')).toBe( + content('tests/__data__/expected/channels/ad.m3u') + ) - const output3 = content('tests/__data__/output/channels/uk.m3u') - const expected3 = content('tests/__data__/expected/channels/uk.m3u') + expect(content('tests/__data__/output/channels/ru.m3u')).toBe( + content('tests/__data__/expected/channels/ru.m3u') + ) - expect(output3).toBe(expected3) + expect(content('tests/__data__/output/channels/uk.m3u')).toBe( + content('tests/__data__/expected/channels/uk.m3u') + ) }) function content(filepath) { From 9a4a62fd1021ea7bfa19a9168624c969beef50a6 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 00:04:56 +0300 Subject: [PATCH 017/157] wip --- .github/workflows/auto-update.yml | 9 + scripts/commands/generate-playlists.js | 216 +- scripts/core/api.js | 14 + scripts/core/db.js | 102 +- scripts/core/file.js | 44 + scripts/core/generator.js | 122 +- scripts/core/playlist.js | 107 +- scripts/data/.gitignore | 1 - scripts/data/categories.json | 147 - scripts/data/countries.json | 264 - scripts/data/languages.json | 33018 ---------------- scripts/data/regions.json | 1094 - scripts/generators/categories.js | 47 + scripts/generators/index.js | 1 + scripts/store/getters/group_title.js | 2 +- scripts/store/getters/index.js | 2 +- .../getters/{display_name.js => title.js} | 2 +- scripts/store/getters/tvg_country.js | 4 +- scripts/store/getters/tvg_id.js | 2 +- scripts/store/getters/tvg_logo.js | 2 +- scripts/store/setters/title.js | 11 +- .../expected/.gh-pages/categories/general.m3u | 2 +- .../.gh-pages/categories/legislative.m3u | 4 +- .../expected/.gh-pages/categories/news.m3u | 6 +- .../expected/.gh-pages/categories/other.m3u | 6 +- .../expected/.gh-pages/countries/ru.m3u | 10 +- .../expected/.gh-pages/countries/uk.m3u | 10 +- .../.gh-pages/countries/undefined.m3u | 2 + .../.gh-pages/{channels.json => streams.json} | 0 .../logs/generate-playlists/categories.log | 6 - .../logs/generate-playlists/countries.log | 4 - .../expected/logs/generators/categories.log | 29 + .../expected/logs/generators/countries.log | 251 + .../languages.log | 0 .../regions.log | 0 .../__data__/expected/save-results.streams.db | 12 +- tests/__data__/expected/streams.db | 6 +- .../__data__/input/generate-playlists.test.db | 8 - .../categories.log | 0 .../countries.log | 0 .../languages.log | 0 .../regions.log | 0 tests/__data__/input/save-results.streams.db | 6 - tests/__data__/input/streams.db | 4 - tests/commands/generate-playlists.test.js | 176 +- 45 files changed, 713 insertions(+), 35040 deletions(-) delete mode 100644 scripts/data/.gitignore delete mode 100644 scripts/data/categories.json delete mode 100644 scripts/data/countries.json delete mode 100644 scripts/data/languages.json delete mode 100644 scripts/data/regions.json create mode 100644 scripts/generators/categories.js create mode 100644 scripts/generators/index.js rename scripts/store/getters/{display_name.js => title.js} (86%) rename tests/__data__/expected/.gh-pages/{channels.json => streams.json} (100%) delete mode 100644 tests/__data__/expected/logs/generate-playlists/categories.log delete mode 100644 tests/__data__/expected/logs/generate-playlists/countries.log create mode 100644 tests/__data__/expected/logs/generators/categories.log create mode 100644 tests/__data__/expected/logs/generators/countries.log rename tests/__data__/expected/logs/{generate-playlists => generators}/languages.log (100%) rename tests/__data__/expected/logs/{generate-playlists => generators}/regions.log (100%) delete mode 100644 tests/__data__/input/generate-playlists.test.db rename tests/__data__/input/logs/{generate-playlists => generators}/categories.log (100%) rename tests/__data__/input/logs/{generate-playlists => generators}/countries.log (100%) rename tests/__data__/input/logs/{generate-playlists => generators}/languages.log (100%) rename tests/__data__/input/logs/{generate-playlists => generators}/regions.log (100%) delete mode 100644 tests/__data__/input/save-results.streams.db delete mode 100644 tests/__data__/input/streams.db diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index dc2fe1274..4d2a38477 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -8,6 +8,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Download channels from API + run: | + mkdir -p scripts/data + curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json + curl -L -o scripts/data/categories.json https://iptv-org.github.io/api/categories.json + curl -L -o scripts/data/countries.json https://iptv-org.github.io/api/countries.json + curl -L -o scripts/data/languages.json https://iptv-org.github.io/api/languages.json + curl -L -o scripts/data/regions.json https://iptv-org.github.io/api/regions.json + curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.json - uses: actions/setup-node@v2 if: ${{ !env.ACT }} with: diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index 485ef19b7..ec8b801bd 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -1,109 +1,90 @@ -const { db, logger, generator, file } = require('../core') +const { create: createPlaylist } = require('../core/playlist') +const { db, logger, generator, file, api } = require('../core') const _ = require('lodash') -let languages = [] -let countries = [] -let categories = [] -let regions = [] - -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs' -const PUBLIC_PATH = process.env.PUBLIC_PATH || '.gh-pages' - async function main() { - await setUp() - - await generateCategories() - await generateCountries() - await generateLanguages() - await generateRegions() - await generateIndex() - await generateIndexNSFW() - await generateIndexCategory() - await generateIndexCountry() - await generateIndexLanguage() - await generateIndexRegion() - - await generateChannelsJson() -} + const streams = await loadStreams() -main() + logger.info(`generating categories/...`) + await generator.generate('categories', streams) -async function generateCategories() { - logger.info(`Generating categories/...`) - - for (const category of categories) { - const { count } = await generator.generate( - `${PUBLIC_PATH}/categories/${category.slug}.m3u`, - { categories: { $elemMatch: category } }, - { saveEmpty: true, includeNSFW: true } - ) + // await generateCountries(streams) + // await generateLanguages() + // await generateRegions() + // await generateIndex() + // await generateIndexNSFW() + // await generateIndexCategory() + // await generateIndexCountry() + // await generateIndexLanguage() + // await generateIndexRegion() - await log('categories', { - name: category.name, - slug: category.slug, - count - }) - } + // await generateChannelsJson() - const { count: otherCount } = await generator.generate( - `${PUBLIC_PATH}/categories/other.m3u`, - { categories: { $size: 0 } }, - { - saveEmpty: true, - onLoad: function (items) { - return items.map(item => { - item.group_title = 'Other' - return item - }) - } - } - ) - - await log('categories', { - name: 'Other', - slug: 'other', - count: otherCount - }) + // await saveLogs() } -async function generateCountries() { - logger.info(`Generating countries/...`) +main() +async function generateCountries(streams) { + logger.info(`generating countries/...`) + const countries = await loadCountries() + const regions = await loadRegions() for (const country of countries) { - const { count } = await generator.generate( + let areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) + areaCodes.push(country.code) + const { count, items } = await generator.generate( `${PUBLIC_PATH}/countries/${country.code.toLowerCase()}.m3u`, + streams, { - countries: { $elemMatch: country } + public: true, + filter: s => _.intersection(areaCodes, s.broadcast_area).length } ) - await log('countries', { + log.countries.push({ name: country.name, code: country.code, count }) } - const { count: undefinedCount } = await generator.generate( - `${PUBLIC_PATH}/countries/undefined.m3u`, - { - countries: { $size: 0 } - }, - { - onLoad: function (items) { - return items.map(item => { - item.group_title = 'Undefined' - return item - }) - } + const { count } = await generator.generate(`${PUBLIC_PATH}/countries/undefined.m3u`, streams, { + public: true, + filter: s => !s.broadcast_area.length, + onLoad: items => { + return items.map(item => { + item.group_title = 'Undefined' + return item + }) } - ) + }) - await log('countries', { + log.countries.push({ name: 'Undefined', - code: 'UNDEFINED', - count: undefinedCount + id: 'UNDEFINED', + count }) + + // const { count: undefinedCount } = await generator.generate( + // `${PUBLIC_PATH}/countries/undefined.m3u`, + // { + // countries: { $size: 0 } + // }, + // { + // onLoad: function (items) { + // return items.map(item => { + // item.group_title = 'Undefined' + // return item + // }) + // } + // } + // ) + + // await log('countries', { + // name: 'Undefined', + // code: 'UNDEFINED', + // count: undefinedCount + // }) } async function generateLanguages() { @@ -395,47 +376,44 @@ async function generateIndexRegion() { ) } -async function generateChannelsJson() { - logger.info('Generating channels.json...') +async function loadStreams() { + await api.channels.load() + let channels = await api.channels.all() + channels = _.keyBy(channels, 'id') - await generator.generate( - `${PUBLIC_PATH}/channels.json`, - {}, - { format: 'json', includeNSFW: true, uniqBy: null } - ) -} + await api.countries.load() + let countries = await api.countries.all() + countries = _.keyBy(countries, 'code') -async function setUp() { - logger.info(`Loading database...`) - const items = await db.find({}) - categories = _.sortBy(_.uniqBy(_.flatten(items.map(i => i.categories)), 'slug'), ['name']).filter( - i => i - ) - countries = _.sortBy(_.uniqBy(_.flatten(items.map(i => i.countries)), 'code'), ['name']).filter( - i => i - ) - languages = _.sortBy(_.uniqBy(_.flatten(items.map(i => i.languages)), 'code'), ['name']).filter( - i => i - ) - regions = _.sortBy(_.uniqBy(_.flatten(items.map(i => i.regions)), 'code'), ['name']).filter( - i => i - ) + await api.categories.load() + let categories = await api.categories.all() + categories = _.keyBy(categories, 'id') - const categoriesLog = `${LOGS_PATH}/generate-playlists/categories.log` - const countriesLog = `${LOGS_PATH}/generate-playlists/countries.log` - const languagesLog = `${LOGS_PATH}/generate-playlists/languages.log` - const regionsLog = `${LOGS_PATH}/generate-playlists/regions.log` - - logger.info(`Creating '${categoriesLog}'...`) - await file.create(categoriesLog) - logger.info(`Creating '${countriesLog}'...`) - await file.create(countriesLog) - logger.info(`Creating '${languagesLog}'...`) - await file.create(languagesLog) - logger.info(`Creating '${regionsLog}'...`) - await file.create(regionsLog) -} + await api.languages.load() + let languages = await api.languages.all() + languages = _.keyBy(languages, 'code') -async function log(type, data) { - await file.append(`${LOGS_PATH}/generate-playlists/${type}.log`, JSON.stringify(data) + '\n') + await api.guides.load() + let guides = await api.guides.all() + guides = _.groupBy(guides, 'channel') + + await db.streams.load() + let streams = await db.streams.find({}) + + return streams.map(stream => { + const channel = channels[stream.channel_id] || null + + stream.channel = channel + stream.broadcast_area = channel + ? channel.broadcast_area.map(item => { + const [_, code] = item.split('/') + return code + }) + : [] + stream.categories = channel ? channel.categories.map(id => categories[id]) : [] + stream.languages = channel ? channel.languages.map(code => languages[code]) : [] + stream.guides = guides[stream.channel_id] ? guides[stream.channel_id].map(g => g.url) : [] + + return stream + }) } diff --git a/scripts/core/api.js b/scripts/core/api.js index 4f82ae518..6d44a08b3 100644 --- a/scripts/core/api.js +++ b/scripts/core/api.js @@ -16,11 +16,25 @@ class API { find(query) { return _.find(this.collection, query) } + + filter(query) { + return _.filter(this.collection, query) + } + + all() { + return this.collection + } } const api = {} api.channels = new API(`${DATA_DIR}/channels.json`) api.countries = new API(`${DATA_DIR}/countries.json`) +api.guides = new API(`${DATA_DIR}/guides.json`) +api.categories = new API(`${DATA_DIR}/categories.json`) +api.languages = new API(`${DATA_DIR}/languages.json`) +api.regions = new API(`${DATA_DIR}/regions.json`) +api.statuses = new API(`${DATA_DIR}/statuses.json`) +api.blocklist = new API(`${DATA_DIR}/blocklist.json`) module.exports = api diff --git a/scripts/core/db.js b/scripts/core/db.js index 27360a839..fc3f11755 100644 --- a/scripts/core/db.js +++ b/scripts/core/db.js @@ -1,61 +1,75 @@ -const Database = require('nedb-promises') +const nedb = require('nedb-promises') const file = require('./file') -const DB_FILEPATH = process.env.DB_FILEPATH || './scripts/channels.db' - -const nedb = Database.create({ - filename: file.resolve(DB_FILEPATH), - autoload: true, - onload(err) { - if (err) console.error(err) - }, - compareStrings: (a, b) => { - a = a.replace(/\s/g, '_') - b = b.replace(/\s/g, '_') - - return a.localeCompare(b, undefined, { - sensitivity: 'accent', - numeric: true +const DB_DIR = process.env.DB_DIR || './scripts/database' + +class Database { + constructor(filepath) { + this.filepath = filepath + } + + load() { + this.db = nedb.create({ + filename: file.resolve(this.filepath), + autoload: true, + onload: err => { + if (err) console.error(err) + }, + compareStrings: (a, b) => { + a = a.replace(/\s/g, '_') + b = b.replace(/\s/g, '_') + + return a.localeCompare(b, undefined, { + sensitivity: 'accent', + numeric: true + }) + } }) } -}) -const db = {} + removeIndex(field) { + return this.db.removeIndex(field) + } -db.removeIndex = function (field) { - return nedb.removeIndex(field) -} + addIndex(options) { + return this.db.ensureIndex(options) + } -db.addIndex = function (options) { - return nedb.ensureIndex(options) -} + compact() { + return this.db.persistence.compactDatafile() + } -db.compact = function () { - return nedb.persistence.compactDatafile() -} + stopAutocompact() { + return this.db.persistence.stopAutocompaction() + } -db.reset = function () { - return file.clear(DB_FILEPATH) -} + reset() { + return file.clear(this.filepath) + } -db.count = function (query) { - return nedb.count(query) -} + count(query) { + return this.db.count(query) + } -db.insert = function (doc) { - return nedb.insert(doc) -} + insert(doc) { + return this.db.insert(doc) + } -db.update = function (query, update) { - return nedb.update(query, update) -} + update(query, update) { + return this.db.update(query, update) + } -db.find = function (query) { - return nedb.find(query) -} + find(query) { + return this.db.find(query) + } -db.remove = function (query, options) { - return nedb.remove(query, options) + remove(query, options) { + return this.db.remove(query, options) + } } +const db = {} + +db.streams = new Database(`${DB_DIR}/streams.db`) + module.exports = db diff --git a/scripts/core/file.js b/scripts/core/file.js index 56da4db96..cdbe1a6db 100644 --- a/scripts/core/file.js +++ b/scripts/core/file.js @@ -1,6 +1,9 @@ +const { create: createPlaylist } = require('./playlist') +const store = require('./store') const path = require('path') const glob = require('glob') const fs = require('mz/fs') +const _ = require('lodash') const file = {} @@ -64,4 +67,45 @@ file.basename = function (filepath) { return path.basename(filepath) } +// file.saveAsM3U = async function (filepath, items, options = {}) { +// const playlist = createPlaylist(filepath) + +// const header = {} +// if (options.public) { +// let guides = items.map(item => item.guides) +// guides = _.uniq(_.flatten(guides)).sort().join(',') + +// header['x-tvg-url'] = guides +// } +// playlist.setHeader(header) + +// for (const item of items) { +// const stream = store.create(item) + +// let attrs +// if (options.public) { +// attrs = { +// 'tvg-id': stream.get('tvg_id'), +// 'tvg-country': stream.get('tvg_country'), +// 'tvg-language': stream.get('tvg_language'), +// 'tvg-logo': stream.get('tvg_logo'), +// 'user-agent': stream.get('http.user-agent') || undefined, +// 'group-title': stream.get('group_title') +// } +// } else { +// attrs = { +// 'tvg-id': stream.get('tvg_id'), +// 'user-agent': stream.get('http.user-agent') || undefined +// } +// } + +// playlist.add(stream.get('url'), stream.get('display_name'), attrs, { +// 'http-referrer': stream.get('http.referrer') || undefined, +// 'http-user-agent': stream.get('http.user-agent') || undefined +// }) +// } + +// return file.write(filepath, playlist.toString()) +// } + module.exports = file diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 918d864cf..31a265dbc 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -1,119 +1,23 @@ -const { create: createPlaylist } = require('./playlist') -const store = require('./store') const file = require('./file') -const logger = require('./logger') -const db = require('./db') -const _ = require('lodash') +const generators = require('../generators') -const generator = {} - -generator.generate = async function (filepath, query = {}, options = {}) { - options = { - ...{ - format: 'm3u', - saveEmpty: false, - includeNSFW: false, - includeGuides: true, - includeBroken: false, - onLoad: r => r, - uniqBy: item => item.id || _.uniqueId(), - sortBy: null - }, - ...options - } - - query['is_nsfw'] = options.includeNSFW ? { $in: [true, false] } : false - query['is_broken'] = options.includeBroken ? { $in: [true, false] } : false - - let items = await db - .find(query) - .sort({ name: 1, 'status.level': 1, 'resolution.height': -1, url: 1 }) - - items = _.uniqBy(items, 'url') - if (!options.saveEmpty && !items.length) return { filepath, query, options, count: 0 } - if (options.uniqBy) items = _.uniqBy(items, options.uniqBy) - - items = options.onLoad(items) - - if (options.sortBy) items = _.sortBy(items, options.sortBy) - - switch (options.format) { - case 'json': - await saveAsJSON(filepath, items, options) - break - case 'm3u': - default: - await saveAsM3U(filepath, items, options) - break - } - - return { filepath, query, options, count: items.length } -} +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' -async function saveAsM3U(filepath, items, options = {}) { - const playlist = await createPlaylist(filepath) - - const header = {} - if (options.public) { - let guides = items.map(item => item.guides) - guides = _.uniq(_.flatten(guides)).sort().join(',') - - header['x-tvg-url'] = guides - } - - await playlist.header(header) - for (const item of items) { - const stream = store.create(item) +const generator = {} - let attrs - if (options.public) { - attrs = { - 'tvg-id': stream.get('tvg_id'), - 'tvg-country': stream.get('tvg_country'), - 'tvg-language': stream.get('tvg_language'), - 'tvg-logo': stream.get('tvg_logo'), - 'user-agent': stream.get('http.user-agent') || undefined, - 'group-title': stream.get('group_title') - } - } else { - attrs = { - 'tvg-id': stream.get('tvg_id'), - 'user-agent': stream.get('http.user-agent') || undefined - } +generator.generate = async function (name, items = []) { + if (typeof generators[name] === 'function') { + try { + const logs = await generators[name].bind()(items) + await file.create(`${LOGS_DIR}/${name}.log`, logs.map(toJSON).join('\n')) + } catch (error) { + logger.error(`generators/${name}.js: ${error.message}`) } - - await playlist.link(stream.get('url'), stream.get('display_name'), attrs, { - 'http-referrer': stream.get('http.referrer') || undefined, - 'http-user-agent': stream.get('http.user-agent') || undefined - }) } } -async function saveAsJSON(filepath, items, options) { - const output = items.map(item => { - const stream = store.create(item) - const categories = stream.get('categories').map(c => ({ name: c.name, slug: c.slug })) - const countries = stream.get('countries').map(c => ({ name: c.name, code: c.code })) - - return { - name: stream.get('name'), - logo: stream.get('logo'), - url: stream.get('url'), - categories, - countries, - languages: stream.get('languages'), - tvg: { - id: stream.get('tvg_id'), - name: stream.get('name'), - url: stream.get('tvg_url') - } - } - }) +module.exports = generator - await file.create(filepath, JSON.stringify(output)) +function toJSON(item) { + return JSON.stringify(item) } - -generator.saveAsM3U = saveAsM3U -generator.saveAsJSON = saveAsJSON - -module.exports = generator diff --git a/scripts/core/playlist.js b/scripts/core/playlist.js index fb8077b27..43f5ad1bc 100644 --- a/scripts/core/playlist.js +++ b/scripts/core/playlist.js @@ -1,49 +1,92 @@ -const file = require('./file') +const store = require('./store') +const _ = require('lodash') const playlist = {} -playlist.create = async function (filepath) { - playlist.filepath = filepath - const dir = file.dirname(filepath) - file.createDir(dir) - await file.create(filepath, '') +class Playlist { + constructor() { + this.links = [] + } - return playlist -} + setHeader(attrs = {}) { + this.header = attrs + } -playlist.header = async function (attrs) { - let header = `#EXTM3U` - for (const name in attrs) { - const value = attrs[name] - header += ` ${name}="${value}"` + add(url, title, attrs, vlcOpts) { + this.links.push({ url, title, attrs, vlcOpts }) } - header += `\n` - await file.append(playlist.filepath, header) + toString() { + let output = `#EXTM3U` + for (const attr in this.header) { + const value = this.header[attr] + output += ` ${attr}="${value}"` + } + output += `\n` + + for (const link of this.links) { + output += `#EXTINF:-1` + for (const name in link.attrs) { + const value = link.attrs[name] + if (value !== undefined) { + output += ` ${name}="${value}"` + } + } + output += `,${link.title}\n` - return playlist -} + for (const name in link.vlcOpts) { + const value = link.vlcOpts[name] + if (value !== undefined) { + output += `#EXTVLCOPT:${name}=${value}\n` + } + } -playlist.link = async function (url, title, attrs, vlcOpts) { - let link = `#EXTINF:-1` - for (const name in attrs) { - const value = attrs[name] - if (value !== undefined) { - link += ` ${name}="${value}"` + output += `${link.url}\n` } + + return output } - link += `,${title}\n` - for (const name in vlcOpts) { - const value = vlcOpts[name] - if (value !== undefined) { - link += `#EXTVLCOPT:${name}=${value}\n` - } +} + +playlist.create = function (items = [], options = {}) { + const p = new Playlist() + + const header = {} + if (options.public) { + let guides = items.map(item => item.guides) + guides = _.uniq(_.flatten(guides)).sort().join(',') + + header['x-tvg-url'] = guides } - link += `${url}\n` + p.setHeader(header) - await file.append(playlist.filepath, link) + for (const item of items) { + const stream = store.create(item) + + let attrs + if (options.public) { + attrs = { + 'tvg-id': stream.get('tvg_id'), + 'tvg-country': stream.get('tvg_country'), + 'tvg-language': stream.get('tvg_language'), + 'tvg-logo': stream.get('tvg_logo'), + 'user-agent': stream.get('http.user-agent') || undefined, + 'group-title': stream.get('group_title') + } + } else { + attrs = { + 'tvg-id': stream.get('tvg_id'), + 'user-agent': stream.get('http.user-agent') || undefined + } + } + + p.add(stream.get('url'), stream.get('title'), attrs, { + 'http-referrer': stream.get('http.referrer') || undefined, + 'http-user-agent': stream.get('http.user-agent') || undefined + }) + } - return playlist + return p } module.exports = playlist diff --git a/scripts/data/.gitignore b/scripts/data/.gitignore deleted file mode 100644 index 3063886ea..000000000 --- a/scripts/data/.gitignore +++ /dev/null @@ -1 +0,0 @@ -codes.json \ No newline at end of file diff --git a/scripts/data/categories.json b/scripts/data/categories.json deleted file mode 100644 index 41a23b1b4..000000000 --- a/scripts/data/categories.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "auto": { - "name": "Auto", - "slug": "auto", - "nsfw": false - }, - "animation": { - "name": "Animation", - "slug": "animation", - "nsfw": false - }, - "business": { - "name": "Business", - "slug": "business", - "nsfw": false - }, - "classic": { - "name": "Classic", - "slug": "classic", - "nsfw": false - }, - "comedy": { - "name": "Comedy", - "slug": "comedy", - "nsfw": false - }, - "cooking": { - "name": "Cooking", - "slug": "cooking", - "nsfw": false - }, - "culture": { - "name": "Culture", - "slug": "culture", - "nsfw": false - }, - "documentary": { - "name": "Documentary", - "slug": "documentary", - "nsfw": false - }, - "education": { - "name": "Education", - "slug": "education", - "nsfw": false - }, - "entertainment": { - "name": "Entertainment", - "slug": "entertainment", - "nsfw": false - }, - "family": { - "name": "Family", - "slug": "family", - "nsfw": false - }, - "general": { - "name": "General", - "slug": "general", - "nsfw": false - }, - "kids": { - "name": "Kids", - "slug": "kids", - "nsfw": false - }, - "legislative": { - "name": "Legislative", - "slug": "legislative", - "nsfw": false - }, - "lifestyle": { - "name": "Lifestyle", - "slug": "lifestyle", - "nsfw": false - }, - "local": { - "name": "Local", - "slug": "local", - "nsfw": false - }, - "movies": { - "name": "Movies", - "slug": "movies", - "nsfw": false - }, - "music": { - "name": "Music", - "slug": "music", - "nsfw": false - }, - "news": { - "name": "News", - "slug": "news", - "nsfw": false - }, - "outdoor": { - "name": "Outdoor", - "slug": "outdoor", - "nsfw": false - }, - "relax": { - "name": "Relax", - "slug": "relax", - "nsfw": false - }, - "religious": { - "name": "Religious", - "slug": "religious", - "nsfw": false - }, - "series": { - "name": "Series", - "slug": "series", - "nsfw": false - }, - "science": { - "name": "Science", - "slug": "science", - "nsfw": false - }, - "shop": { - "name": "Shop", - "slug": "shop", - "nsfw": false - }, - "sports": { - "name": "Sports", - "slug": "sports", - "nsfw": false - }, - "travel": { - "name": "Travel", - "slug": "travel", - "nsfw": false - }, - "weather": { - "name": "Weather", - "slug": "weather", - "nsfw": false - }, - "xxx": { - "name": "XXX", - "slug": "xxx", - "nsfw": true - } -} diff --git a/scripts/data/countries.json b/scripts/data/countries.json deleted file mode 100644 index 53286657c..000000000 --- a/scripts/data/countries.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "AD": { "name": "Andorra", "code": "AD", "lang": "cat" }, - "AE": { "name": "United Arab Emirates", "code": "AE", "lang": "ara" }, - "AF": { "name": "Afghanistan", "code": "AF", "lang": "pus" }, - "AG": { "name": "Antigua and Barbuda", "code": "AG", "lang": "eng" }, - "AI": { "name": "Anguilla", "code": "AI", "lang": "eng" }, - "AL": { "name": "Albania", "code": "AL", "lang": "sqi" }, - "AM": { "name": "Armenia", "code": "AM", "lang": "hye" }, - "AO": { "name": "Angola", "code": "AO", "lang": "por" }, - "AQ": { "name": "Antarctica", "code": "AQ", "lang": null }, - "AR": { "name": "Argentina", "code": "AR", "lang": "spa" }, - "AS": { "name": "American Samoa", "code": "AS", "lang": "eng" }, - "AT": { "name": "Austria", "code": "AT", "lang": "deu" }, - "AU": { "name": "Australia", "code": "AU", "lang": "eng" }, - "AW": { "name": "Aruba", "code": "AW", "lang": "nld" }, - "AX": { "name": "Åland", "code": "AX", "lang": "swe" }, - "AZ": { "name": "Azerbaijan", "code": "AZ", "lang": "aze" }, - "BA": { "name": "Bosnia and Herzegovina", "code": "BA", "lang": "bos" }, - "BB": { "name": "Barbados", "code": "BB", "lang": "eng" }, - "BD": { "name": "Bangladesh", "code": "BD", "lang": "ben" }, - "BE": { "name": "Belgium", "code": "BE", "lang": "nld" }, - "BF": { "name": "Burkina Faso", "code": "BF", "lang": "fra" }, - "BG": { "name": "Bulgaria", "code": "BG", "lang": "bul" }, - "BH": { "name": "Bahrain", "code": "BH", "lang": "ara" }, - "BI": { "name": "Burundi", "code": "BI", "lang": "fra" }, - "BJ": { "name": "Benin", "code": "BJ", "lang": "fra" }, - "BL": { "name": "Saint Barthélemy", "code": "BL", "lang": "fra" }, - "BM": { "name": "Bermuda", "code": "BM", "lang": "eng" }, - "BN": { "name": "Brunei", "code": "BN", "lang": "msa" }, - "BO": { "name": "Bolivia", "code": "BO", "lang": "spa" }, - "BQ": { "name": "Bonaire", "code": "BQ", "lang": "nld" }, - "BR": { "name": "Brazil", "code": "BR", "lang": "por" }, - "BS": { "name": "Bahamas", "code": "BS", "lang": "eng" }, - "BT": { "name": "Bhutan", "code": "BT", "lang": "dzo" }, - "BV": { "name": "Bouvet Island", "code": "BV", "lang": "nor" }, - "BW": { "name": "Botswana", "code": "BW", "lang": "eng" }, - "BY": { "name": "Belarus", "code": "BY", "lang": "bel" }, - "BZ": { "name": "Belize", "code": "BZ", "lang": "eng" }, - "CA": { "name": "Canada", "code": "CA", "lang": "eng" }, - "CC": { "name": "Cocos [Keeling] Islands", "code": "CC", "lang": "eng" }, - "CD": { - "name": "Democratic Republic of the Congo", - "code": "CD", - "lang": "fra" - }, - "CF": { "name": "Central African Republic", "code": "CF", "lang": "fra" }, - "CG": { "name": "Republic of the Congo", "code": "CG", "lang": "fra" }, - "CH": { "name": "Switzerland", "code": "CH", "lang": "deu" }, - "CI": { "name": "Ivory Coast", "code": "CI", "lang": "fra" }, - "CK": { "name": "Cook Islands", "code": "CK", "lang": "eng" }, - "CL": { "name": "Chile", "code": "CL", "lang": "spa" }, - "CM": { "name": "Cameroon", "code": "CM", "lang": "eng" }, - "CN": { "name": "China", "code": "CN", "lang": "zho" }, - "CO": { "name": "Colombia", "code": "CO", "lang": "spa" }, - "CR": { "name": "Costa Rica", "code": "CR", "lang": "spa" }, - "CU": { "name": "Cuba", "code": "CU", "lang": "spa" }, - "CV": { "name": "Cape Verde", "code": "CV", "lang": "por" }, - "CW": { "name": "Curacao", "code": "CW", "lang": "nld" }, - "CX": { "name": "Christmas Island", "code": "CX", "lang": "eng" }, - "CY": { "name": "Cyprus", "code": "CY", "lang": "ell" }, - "CZ": { "name": "Czech Republic", "code": "CZ", "lang": "ces" }, - "DE": { "name": "Germany", "code": "DE", "lang": "deu" }, - "DJ": { "name": "Djibouti", "code": "DJ", "lang": "fra" }, - "DK": { "name": "Denmark", "code": "DK", "lang": "dan" }, - "DM": { "name": "Dominica", "code": "DM", "lang": "eng" }, - "DO": { "name": "Dominican Republic", "code": "DO", "lang": "spa" }, - "DZ": { "name": "Algeria", "code": "DZ", "lang": "ara" }, - "EC": { "name": "Ecuador", "code": "EC", "lang": "spa" }, - "EE": { "name": "Estonia", "code": "EE", "lang": "est" }, - "EG": { "name": "Egypt", "code": "EG", "lang": "ara" }, - "EH": { "name": "Western Sahara", "code": "EH", "lang": "spa" }, - "ER": { "name": "Eritrea", "code": "ER", "lang": "tir" }, - "ES": { "name": "Spain", "code": "ES", "lang": "spa" }, - "ET": { "name": "Ethiopia", "code": "ET", "lang": "amh" }, - "FI": { "name": "Finland", "code": "FI", "lang": "fin" }, - "FJ": { "name": "Fiji", "code": "FJ", "lang": "eng" }, - "FK": { "name": "Falkland Islands", "code": "FK", "lang": "eng" }, - "FM": { "name": "Micronesia", "code": "FM", "lang": "eng" }, - "FO": { "name": "Faroe Islands", "code": "FO", "lang": "fao" }, - "FR": { "name": "France", "code": "FR", "lang": "fra" }, - "GA": { "name": "Gabon", "code": "GA", "lang": "fra" }, - "UK": { "name": "United Kingdom", "code": "UK", "lang": "eng" }, - "GD": { "name": "Grenada", "code": "GD", "lang": "eng" }, - "GE": { "name": "Georgia", "code": "GE", "lang": "kat" }, - "GF": { "name": "French Guiana", "code": "GF", "lang": "fra" }, - "GG": { "name": "Guernsey", "code": "GG", "lang": "eng" }, - "GH": { "name": "Ghana", "code": "GH", "lang": "eng" }, - "GI": { "name": "Gibraltar", "code": "GI", "lang": "eng" }, - "GL": { "name": "Greenland", "code": "GL", "lang": "kal" }, - "GM": { "name": "Gambia", "code": "GM", "lang": "eng" }, - "GN": { "name": "Guinea", "code": "GN", "lang": "fra" }, - "GP": { "name": "Guadeloupe", "code": "GP", "lang": "fra" }, - "GQ": { "name": "Equatorial Guinea", "code": "GQ", "lang": "spa" }, - "GR": { "name": "Greece", "code": "GR", "lang": "ell" }, - "GS": { - "name": "South Georgia and the South Sandwich Islands", - "code": "GS", - "lang": "eng" - }, - "GT": { "name": "Guatemala", "code": "GT", "lang": "spa" }, - "GU": { "name": "Guam", "code": "GU", "lang": "eng" }, - "GW": { "name": "Guinea-Bissau", "code": "GW", "lang": "por" }, - "GY": { "name": "Guyana", "code": "GY", "lang": "eng" }, - "HK": { "name": "Hong Kong", "code": "HK", "lang": "zho" }, - "HM": { "name": "Heard Island and McDonald Islands", "code": "HM", "lang": "eng" }, - "HN": { "name": "Honduras", "code": "HN", "lang": "spa" }, - "HR": { "name": "Croatia", "code": "HR", "lang": "hrv" }, - "HT": { "name": "Haiti", "code": "HT", "lang": "fra" }, - "HU": { "name": "Hungary", "code": "HU", "lang": "hun" }, - "ID": { "name": "Indonesia", "code": "ID", "lang": "ind" }, - "IE": { "name": "Ireland", "code": "IE", "lang": "gle" }, - "IL": { "name": "Israel", "code": "IL", "lang": "heb" }, - "IM": { "name": "Isle of Man", "code": "IM", "lang": "eng" }, - "IN": { "name": "India", "code": "IN", "lang": "hin" }, - "IO": { "name": "British Indian Ocean Territory", "code": "IO", "lang": "eng" }, - "IQ": { "name": "Iraq", "code": "IQ", "lang": "ara" }, - "IR": { "name": "Iran", "code": "IR", "lang": "fas" }, - "IS": { "name": "Iceland", "code": "IS", "lang": "isl" }, - "IT": { "name": "Italy", "code": "IT", "lang": "ita" }, - "JE": { "name": "Jersey", "code": "JE", "lang": "eng" }, - "JM": { "name": "Jamaica", "code": "JM", "lang": "eng" }, - "JO": { "name": "Jordan", "code": "JO", "lang": "ara" }, - "JP": { "name": "Japan", "code": "JP", "lang": "jpn" }, - "KE": { "name": "Kenya", "code": "KE", "lang": "eng" }, - "KG": { "name": "Kyrgyzstan", "code": "KG", "lang": "kir" }, - "KH": { "name": "Cambodia", "code": "KH", "lang": "khm" }, - "KI": { "name": "Kiribati", "code": "KI", "lang": "eng" }, - "KM": { "name": "Comoros", "code": "KM", "lang": "ara" }, - "KN": { "name": "Saint Kitts and Nevis", "code": "KN", "lang": "eng" }, - "KP": { "name": "North Korea", "code": "KP", "lang": "kor" }, - "KR": { "name": "South Korea", "code": "KR", "lang": "kor" }, - "KW": { "name": "Kuwait", "code": "KW", "lang": "ara" }, - "KY": { "name": "Cayman Islands", "code": "KY", "lang": "eng" }, - "KZ": { "name": "Kazakhstan", "code": "KZ", "lang": "kaz" }, - "LA": { "name": "Laos", "code": "LA", "lang": "lao" }, - "LB": { "name": "Lebanon", "code": "LB", "lang": "ara" }, - "LC": { "name": "Saint Lucia", "code": "LC", "lang": "eng" }, - "LI": { "name": "Liechtenstein", "code": "LI", "lang": "deu" }, - "LK": { "name": "Sri Lanka", "code": "LK", "lang": "sin" }, - "LR": { "name": "Liberia", "code": "LR", "lang": "eng" }, - "LS": { "name": "Lesotho", "code": "LS", "lang": "eng" }, - "LT": { "name": "Lithuania", "code": "LT", "lang": "lit" }, - "LU": { "name": "Luxembourg", "code": "LU", "lang": "fra" }, - "LV": { "name": "Latvia", "code": "LV", "lang": "lav" }, - "LY": { "name": "Libya", "code": "LY", "lang": "ara" }, - "MA": { "name": "Morocco", "code": "MA", "lang": "ara" }, - "MC": { "name": "Monaco", "code": "MC", "lang": "fra" }, - "MD": { "name": "Moldova", "code": "MD", "lang": "ron" }, - "ME": { "name": "Montenegro", "code": "ME", "lang": "srp" }, - "MF": { "name": "Saint Martin", "code": "MF", "lang": "eng" }, - "MG": { "name": "Madagascar", "code": "MG", "lang": "fra" }, - "MH": { "name": "Marshall Islands", "code": "MH", "lang": "eng" }, - "MK": { "name": "North Macedonia", "code": "MK", "lang": "mkd" }, - "ML": { "name": "Mali", "code": "ML", "lang": "fra" }, - "MM": { "name": "Myanmar [Burma]", "code": "MM", "lang": "mya" }, - "MN": { "name": "Mongolia", "code": "MN", "lang": "mon" }, - "MO": { "name": "Macao", "code": "MO", "lang": "zho" }, - "MP": { "name": "Northern Mariana Islands", "code": "MP", "lang": "eng" }, - "MQ": { "name": "Martinique", "code": "MQ", "lang": "fra" }, - "MR": { "name": "Mauritania", "code": "MR", "lang": "ara" }, - "MS": { "name": "Montserrat", "code": "MS", "lang": "eng" }, - "MT": { "name": "Malta", "code": "MT", "lang": "mlt" }, - "MU": { "name": "Mauritius", "code": "MU", "lang": "eng" }, - "MV": { "name": "Maldives", "code": "MV", "lang": "div" }, - "MW": { "name": "Malawi", "code": "MW", "lang": "eng" }, - "MX": { "name": "Mexico", "code": "MX", "lang": "spa" }, - "MY": { "name": "Malaysia", "code": "MY", "lang": "msa" }, - "MZ": { "name": "Mozambique", "code": "MZ", "lang": "por" }, - "NA": { "name": "Namibia", "code": "NA", "lang": "eng" }, - "NC": { "name": "New Caledonia", "code": "NC", "lang": "fra" }, - "NE": { "name": "Niger", "code": "NE", "lang": "fra" }, - "NF": { "name": "Norfolk Island", "code": "NF", "lang": "eng" }, - "NG": { "name": "Nigeria", "code": "NG", "lang": "eng" }, - "NI": { "name": "Nicaragua", "code": "NI", "lang": "spa" }, - "NL": { "name": "Netherlands", "code": "NL", "lang": "nld" }, - "NO": { "name": "Norway", "code": "NO", "lang": "nor" }, - "NP": { "name": "Nepal", "code": "NP", "lang": "nep" }, - "NR": { "name": "Nauru", "code": "NR", "lang": "eng" }, - "NU": { "name": "Niue", "code": "NU", "lang": "eng" }, - "NZ": { "name": "New Zealand", "code": "NZ", "lang": "eng" }, - "OM": { "name": "Oman", "code": "OM", "lang": "ara" }, - "PA": { "name": "Panama", "code": "PA", "lang": "spa" }, - "PE": { "name": "Peru", "code": "PE", "lang": "spa" }, - "PF": { "name": "French Polynesia", "code": "PF", "lang": "fra" }, - "PG": { "name": "Papua New Guinea", "code": "PG", "lang": "eng" }, - "PH": { "name": "Philippines", "code": "PH", "lang": "eng" }, - "PK": { "name": "Pakistan", "code": "PK", "lang": "eng" }, - "PL": { "name": "Poland", "code": "PL", "lang": "pol" }, - "PM": { "name": "Saint Pierre and Miquelon", "code": "PM", "lang": "fra" }, - "PN": { "name": "Pitcairn Islands", "code": "PN", "lang": "eng" }, - "PR": { "name": "Puerto Rico", "code": "PR", "lang": "spa" }, - "PS": { "name": "Palestine", "code": "PS", "lang": "ara" }, - "PT": { "name": "Portugal", "code": "PT", "lang": "por" }, - "PW": { "name": "Palau", "code": "PW", "lang": "eng" }, - "PY": { "name": "Paraguay", "code": "PY", "lang": "spa" }, - "QA": { "name": "Qatar", "code": "QA", "lang": "ara" }, - "RE": { "name": "Réunion", "code": "RE", "lang": "fra" }, - "RO": { "name": "Romania", "code": "RO", "lang": "ron" }, - "RS": { "name": "Serbia", "code": "RS", "lang": "srp" }, - "RU": { "name": "Russia", "code": "RU", "lang": "rus" }, - "RW": { "name": "Rwanda", "code": "RW", "lang": "kin" }, - "SA": { "name": "Saudi Arabia", "code": "SA", "lang": "ara" }, - "SB": { "name": "Solomon Islands", "code": "SB", "lang": "eng" }, - "SC": { "name": "Seychelles", "code": "SC", "lang": "fra" }, - "SD": { "name": "Sudan", "code": "SD", "lang": "ara" }, - "SE": { "name": "Sweden", "code": "SE", "lang": "swe" }, - "SG": { "name": "Singapore", "code": "SG", "lang": "eng" }, - "SH": { "name": "Saint Helena", "code": "SH", "lang": "eng" }, - "SI": { "name": "Slovenia", "code": "SI", "lang": "slv" }, - "SJ": { "name": "Svalbard and Jan Mayen", "code": "SJ", "lang": "nor" }, - "SK": { "name": "Slovakia", "code": "SK", "lang": "slk" }, - "SL": { "name": "Sierra Leone", "code": "SL", "lang": "eng" }, - "SM": { "name": "San Marino", "code": "SM", "lang": "ita" }, - "SN": { "name": "Senegal", "code": "SN", "lang": "fra" }, - "SO": { "name": "Somalia", "code": "SO", "lang": "som" }, - "SR": { "name": "Suriname", "code": "SR", "lang": "nld" }, - "SS": { "name": "South Sudan", "code": "SS", "lang": "eng" }, - "ST": { "name": "São Tomé and Príncipe", "code": "ST", "lang": "por" }, - "SV": { "name": "El Salvador", "code": "SV", "lang": "spa" }, - "SX": { "name": "Sint Maarten", "code": "SX", "lang": "nld" }, - "SY": { "name": "Syria", "code": "SY", "lang": "ara" }, - "SZ": { "name": "Swaziland", "code": "SZ", "lang": "eng" }, - "TC": { "name": "Turks and Caicos Islands", "code": "TC", "lang": "eng" }, - "TD": { "name": "Chad", "code": "TD", "lang": "fra" }, - "TF": { "name": "French Southern Territories", "code": "TF", "lang": "fra" }, - "TG": { "name": "Togo", "code": "TG", "lang": "fra" }, - "TH": { "name": "Thailand", "code": "TH", "lang": "tha" }, - "TJ": { "name": "Tajikistan", "code": "TJ", "lang": "tgk" }, - "TK": { "name": "Tokelau", "code": "TK", "lang": "eng" }, - "TL": { "name": "East Timor", "code": "TL", "lang": "por" }, - "TM": { "name": "Turkmenistan", "code": "TM", "lang": "tuk" }, - "TN": { "name": "Tunisia", "code": "TN", "lang": "ara" }, - "TO": { "name": "Tonga", "code": "TO", "lang": "eng" }, - "TR": { "name": "Turkey", "code": "TR", "lang": "tur" }, - "TT": { "name": "Trinidad and Tobago", "code": "TT", "lang": "eng" }, - "TV": { "name": "Tuvalu", "code": "TV", "lang": "eng" }, - "TW": { "name": "Taiwan", "code": "TW", "lang": "zho" }, - "TZ": { "name": "Tanzania", "code": "TZ", "lang": "swa" }, - "UA": { "name": "Ukraine", "code": "UA", "lang": "ukr" }, - "UG": { "name": "Uganda", "code": "UG", "lang": "eng" }, - "UM": { "name": "U.S. Minor Outlying Islands", "code": "UM", "lang": "eng" }, - "US": { "name": "United States", "code": "US", "lang": "eng" }, - "UY": { "name": "Uruguay", "code": "UY", "lang": "spa" }, - "UZ": { "name": "Uzbekistan", "code": "UZ", "lang": "uzb" }, - "VA": { "name": "Vatican City", "code": "VA", "lang": "ita" }, - "VC": { "name": "Saint Vincent and the Grenadines", "code": "VC", "lang": "eng" }, - "VE": { "name": "Venezuela", "code": "VE", "lang": "spa" }, - "VG": { "name": "British Virgin Islands", "code": "VG", "lang": "eng" }, - "VI": { "name": "U.S. Virgin Islands", "code": "VI", "lang": "eng" }, - "VN": { "name": "Vietnam", "code": "VN", "lang": "vie" }, - "VU": { "name": "Vanuatu", "code": "VU", "lang": "bis" }, - "WF": { "name": "Wallis and Futuna", "code": "WF", "lang": "fra" }, - "WS": { "name": "Samoa", "code": "WS", "lang": "smo" }, - "XK": { "name": "Kosovo", "code": "XK", "lang": "sqi" }, - "YE": { "name": "Yemen", "code": "YE", "lang": "ara" }, - "YT": { "name": "Mayotte", "code": "YT", "lang": "fra" }, - "ZA": { - "name": "South Africa", - "code": "ZA", - "lang": "afr" - }, - "ZM": { "name": "Zambia", "code": "ZM", "lang": "eng" }, - "ZW": { "name": "Zimbabwe", "code": "ZW", "lang": "eng" } -} diff --git a/scripts/data/languages.json b/scripts/data/languages.json deleted file mode 100644 index 740c8a8eb..000000000 --- a/scripts/data/languages.json +++ /dev/null @@ -1,33018 +0,0 @@ -[ - { - "name": "Ghotuo", - "code": "aaa" - }, - { - "name": "Alumu-Tesu", - "code": "aab" - }, - { - "name": "Ari", - "code": "aac" - }, - { - "name": "Amal", - "code": "aad" - }, - { - "name": "Arbëreshë Albanian", - "code": "aae" - }, - { - "name": "Aranadan", - "code": "aaf" - }, - { - "name": "Ambrak", - "code": "aag" - }, - { - "name": "Abu' Arapesh", - "code": "aah" - }, - { - "name": "Arifama-Miniafia", - "code": "aai" - }, - { - "name": "Ankave", - "code": "aak" - }, - { - "name": "Afade", - "code": "aal" - }, - { - "name": "Anambé", - "code": "aan" - }, - { - "name": "Algerian Saharan Arabic", - "code": "aao" - }, - { - "name": "Pará Arára", - "code": "aap" - }, - { - "name": "Eastern Abnaki", - "code": "aaq" - }, - { - "name": "Afar", - "code": "aar" - }, - { - "name": "Aasáx", - "code": "aas" - }, - { - "name": "Arvanitika Albanian", - "code": "aat" - }, - { - "name": "Abau", - "code": "aau" - }, - { - "name": "Solong", - "code": "aaw" - }, - { - "name": "Mandobo Atas", - "code": "aax" - }, - { - "name": "Amarasi", - "code": "aaz" - }, - { - "name": "Abé", - "code": "aba" - }, - { - "name": "Bankon", - "code": "abb" - }, - { - "name": "Ambala Ayta", - "code": "abc" - }, - { - "name": "Manide", - "code": "abd" - }, - { - "name": "Western Abnaki", - "code": "abe" - }, - { - "name": "Abai Sungai", - "code": "abf" - }, - { - "name": "Abaga", - "code": "abg" - }, - { - "name": "Tajiki Arabic", - "code": "abh" - }, - { - "name": "Abidji", - "code": "abi" - }, - { - "name": "Aka-Bea", - "code": "abj" - }, - { - "name": "Abkhazian", - "code": "abk" - }, - { - "name": "Lampung Nyo", - "code": "abl" - }, - { - "name": "Abanyom", - "code": "abm" - }, - { - "name": "Abua", - "code": "abn" - }, - { - "name": "Abon", - "code": "abo" - }, - { - "name": "Abellen Ayta", - "code": "abp" - }, - { - "name": "Abaza", - "code": "abq" - }, - { - "name": "Abron", - "code": "abr" - }, - { - "name": "Ambonese Malay", - "code": "abs" - }, - { - "name": "Ambulas", - "code": "abt" - }, - { - "name": "Abure", - "code": "abu" - }, - { - "name": "Baharna Arabic", - "code": "abv" - }, - { - "name": "Pal", - "code": "abw" - }, - { - "name": "Inabaknon", - "code": "abx" - }, - { - "name": "Aneme Wake", - "code": "aby" - }, - { - "name": "Abui", - "code": "abz" - }, - { - "name": "Achagua", - "code": "aca" - }, - { - "name": "Áncá", - "code": "acb" - }, - { - "name": "Gikyode", - "code": "acd" - }, - { - "name": "Achinese", - "code": "ace" - }, - { - "name": "Saint Lucian Creole French", - "code": "acf" - }, - { - "name": "Acoli", - "code": "ach" - }, - { - "name": "Aka-Cari", - "code": "aci" - }, - { - "name": "Aka-Kora", - "code": "ack" - }, - { - "name": "Akar-Bale", - "code": "acl" - }, - { - "name": "Mesopotamian Arabic", - "code": "acm" - }, - { - "name": "Achang", - "code": "acn" - }, - { - "name": "Eastern Acipa", - "code": "acp" - }, - { - "name": "Ta'izzi-Adeni Arabic", - "code": "acq" - }, - { - "name": "Achi", - "code": "acr" - }, - { - "name": "Acroá", - "code": "acs" - }, - { - "name": "Achterhoeks", - "code": "act" - }, - { - "name": "Achuar-Shiwiar", - "code": "acu" - }, - { - "name": "Achumawi", - "code": "acv" - }, - { - "name": "Hijazi Arabic", - "code": "acw" - }, - { - "name": "Omani Arabic", - "code": "acx" - }, - { - "name": "Cypriot Arabic", - "code": "acy" - }, - { - "name": "Acheron", - "code": "acz" - }, - { - "name": "Adangme", - "code": "ada" - }, - { - "name": "Atauran", - "code": "adb" - }, - { - "name": "Dzodinka", - "code": "add" - }, - { - "name": "Lidzonka", - "code": "add" - }, - { - "name": "Adele", - "code": "ade" - }, - { - "name": "Dhofari Arabic", - "code": "adf" - }, - { - "name": "Andegerebinha", - "code": "adg" - }, - { - "name": "Adhola", - "code": "adh" - }, - { - "name": "Adi", - "code": "adi" - }, - { - "name": "Adioukrou", - "code": "adj" - }, - { - "name": "Galo", - "code": "adl" - }, - { - "name": "Adang", - "code": "adn" - }, - { - "name": "Abu", - "code": "ado" - }, - { - "name": "Adangbe", - "code": "adq" - }, - { - "name": "Adonara", - "code": "adr" - }, - { - "name": "Adamorobe Sign Language", - "code": "ads" - }, - { - "name": "Adnyamathanha", - "code": "adt" - }, - { - "name": "Aduge", - "code": "adu" - }, - { - "name": "Amundava", - "code": "adw" - }, - { - "name": "Amdo Tibetan", - "code": "adx" - }, - { - "name": "Adygei", - "code": "ady" - }, - { - "name": "Adyghe", - "code": "ady" - }, - { - "name": "Adzera", - "code": "adz" - }, - { - "name": "Areba", - "code": "aea" - }, - { - "name": "Tunisian Arabic", - "code": "aeb" - }, - { - "name": "Saidi Arabic", - "code": "aec" - }, - { - "name": "Argentine Sign Language", - "code": "aed" - }, - { - "name": "Northeast Pashai", - "code": "aee" - }, - { - "name": "Northeast Pashayi", - "code": "aee" - }, - { - "name": "Haeke", - "code": "aek" - }, - { - "name": "Ambele", - "code": "ael" - }, - { - "name": "Arem", - "code": "aem" - }, - { - "name": "Armenian Sign Language", - "code": "aen" - }, - { - "name": "Aer", - "code": "aeq" - }, - { - "name": "Eastern Arrernte", - "code": "aer" - }, - { - "name": "Alsea", - "code": "aes" - }, - { - "name": "Akeu", - "code": "aeu" - }, - { - "name": "Ambakich", - "code": "aew" - }, - { - "name": "Amele", - "code": "aey" - }, - { - "name": "Aeka", - "code": "aez" - }, - { - "name": "Gulf Arabic", - "code": "afb" - }, - { - "name": "Andai", - "code": "afd" - }, - { - "name": "Putukwam", - "code": "afe" - }, - { - "name": "Afghan Sign Language", - "code": "afg" - }, - { - "name": "Afrihili", - "code": "afh" - }, - { - "name": "Akrukay", - "code": "afi" - }, - { - "name": "Chini", - "code": "afi" - }, - { - "name": "Nanubae", - "code": "afk" - }, - { - "name": "Defaka", - "code": "afn" - }, - { - "name": "Eloyi", - "code": "afo" - }, - { - "name": "Tapei", - "code": "afp" - }, - { - "name": "Afrikaans", - "code": "afr" - }, - { - "name": "Afro-Seminole Creole", - "code": "afs" - }, - { - "name": "Afitti", - "code": "aft" - }, - { - "name": "Awutu", - "code": "afu" - }, - { - "name": "Obokuitai", - "code": "afz" - }, - { - "name": "Aguano", - "code": "aga" - }, - { - "name": "Legbo", - "code": "agb" - }, - { - "name": "Agatu", - "code": "agc" - }, - { - "name": "Agarabi", - "code": "agd" - }, - { - "name": "Angal", - "code": "age" - }, - { - "name": "Arguni", - "code": "agf" - }, - { - "name": "Angor", - "code": "agg" - }, - { - "name": "Ngelima", - "code": "agh" - }, - { - "name": "Agariya", - "code": "agi" - }, - { - "name": "Argobba", - "code": "agj" - }, - { - "name": "Isarog Agta", - "code": "agk" - }, - { - "name": "Fembe", - "code": "agl" - }, - { - "name": "Angaataha", - "code": "agm" - }, - { - "name": "Agutaynen", - "code": "agn" - }, - { - "name": "Tainae", - "code": "ago" - }, - { - "name": "Aghem", - "code": "agq" - }, - { - "name": "Aguaruna", - "code": "agr" - }, - { - "name": "Esimbi", - "code": "ags" - }, - { - "name": "Central Cagayan Agta", - "code": "agt" - }, - { - "name": "Aguacateco", - "code": "agu" - }, - { - "name": "Remontado Dumagat", - "code": "agv" - }, - { - "name": "Kahua", - "code": "agw" - }, - { - "name": "Aghul", - "code": "agx" - }, - { - "name": "Southern Alta", - "code": "agy" - }, - { - "name": "Mt. Iriga Agta", - "code": "agz" - }, - { - "name": "Ahanta", - "code": "aha" - }, - { - "name": "Axamb", - "code": "ahb" - }, - { - "name": "Qimant", - "code": "ahg" - }, - { - "name": "Aghu", - "code": "ahh" - }, - { - "name": "Tiagbamrin Aizi", - "code": "ahi" - }, - { - "name": "Akha", - "code": "ahk" - }, - { - "name": "Igo", - "code": "ahl" - }, - { - "name": "Mobumrin Aizi", - "code": "ahm" - }, - { - "name": "Àhàn", - "code": "ahn" - }, - { - "name": "Ahom", - "code": "aho" - }, - { - "name": "Aproumu Aizi", - "code": "ahp" - }, - { - "name": "Ahirani", - "code": "ahr" - }, - { - "name": "Ashe", - "code": "ahs" - }, - { - "name": "Ahtena", - "code": "aht" - }, - { - "name": "Arosi", - "code": "aia" - }, - { - "name": "Ainu (China)", - "code": "aib" - }, - { - "name": "Ainbai", - "code": "aic" - }, - { - "name": "Alngith", - "code": "aid" - }, - { - "name": "Amara", - "code": "aie" - }, - { - "name": "Agi", - "code": "aif" - }, - { - "name": "Antigua and Barbuda Creole English", - "code": "aig" - }, - { - "name": "Ai-Cham", - "code": "aih" - }, - { - "name": "Assyrian Neo-Aramaic", - "code": "aii" - }, - { - "name": "Lishanid Noshan", - "code": "aij" - }, - { - "name": "Ake", - "code": "aik" - }, - { - "name": "Aimele", - "code": "ail" - }, - { - "name": "Aimol", - "code": "aim" - }, - { - "name": "Ainu (Japan)", - "code": "ain" - }, - { - "name": "Aiton", - "code": "aio" - }, - { - "name": "Burumakok", - "code": "aip" - }, - { - "name": "Aimaq", - "code": "aiq" - }, - { - "name": "Airoran", - "code": "air" - }, - { - "name": "Arikem", - "code": "ait" - }, - { - "name": "Aari", - "code": "aiw" - }, - { - "name": "Aighon", - "code": "aix" - }, - { - "name": "Ali", - "code": "aiy" - }, - { - "name": "Aja (South Sudan)", - "code": "aja" - }, - { - "name": "Aja (Benin)", - "code": "ajg" - }, - { - "name": "Ajië", - "code": "aji" - }, - { - "name": "Andajin", - "code": "ajn" - }, - { - "name": "South Levantine Arabic", - "code": "ajp" - }, - { - "name": "Judeo-Tunisian Arabic", - "code": "ajt" - }, - { - "name": "Judeo-Moroccan Arabic", - "code": "aju" - }, - { - "name": "Ajawa", - "code": "ajw" - }, - { - "name": "Amri Karbi", - "code": "ajz" - }, - { - "name": "Akan", - "code": "aka" - }, - { - "name": "Batak Angkola", - "code": "akb" - }, - { - "name": "Mpur", - "code": "akc" - }, - { - "name": "Ukpet-Ehom", - "code": "akd" - }, - { - "name": "Akawaio", - "code": "ake" - }, - { - "name": "Akpa", - "code": "akf" - }, - { - "name": "Anakalangu", - "code": "akg" - }, - { - "name": "Angal Heneng", - "code": "akh" - }, - { - "name": "Aiome", - "code": "aki" - }, - { - "name": "Aka-Jeru", - "code": "akj" - }, - { - "name": "Akkadian", - "code": "akk" - }, - { - "name": "Aklanon", - "code": "akl" - }, - { - "name": "Aka-Bo", - "code": "akm" - }, - { - "name": "Akurio", - "code": "ako" - }, - { - "name": "Siwu", - "code": "akp" - }, - { - "name": "Ak", - "code": "akq" - }, - { - "name": "Araki", - "code": "akr" - }, - { - "name": "Akaselem", - "code": "aks" - }, - { - "name": "Akolet", - "code": "akt" - }, - { - "name": "Akum", - "code": "aku" - }, - { - "name": "Akhvakh", - "code": "akv" - }, - { - "name": "Akwa", - "code": "akw" - }, - { - "name": "Aka-Kede", - "code": "akx" - }, - { - "name": "Aka-Kol", - "code": "aky" - }, - { - "name": "Alabama", - "code": "akz" - }, - { - "name": "Alago", - "code": "ala" - }, - { - "name": "Qawasqar", - "code": "alc" - }, - { - "name": "Alladian", - "code": "ald" - }, - { - "name": "Aleut", - "code": "ale" - }, - { - "name": "Alege", - "code": "alf" - }, - { - "name": "Alawa", - "code": "alh" - }, - { - "name": "Amaimon", - "code": "ali" - }, - { - "name": "Alangan", - "code": "alj" - }, - { - "name": "Alak", - "code": "alk" - }, - { - "name": "Allar", - "code": "all" - }, - { - "name": "Amblong", - "code": "alm" - }, - { - "name": "Gheg Albanian", - "code": "aln" - }, - { - "name": "Larike-Wakasihu", - "code": "alo" - }, - { - "name": "Alune", - "code": "alp" - }, - { - "name": "Algonquin", - "code": "alq" - }, - { - "name": "Alutor", - "code": "alr" - }, - { - "name": "Tosk Albanian", - "code": "als" - }, - { - "name": "Southern Altai", - "code": "alt" - }, - { - "name": "'Are'are", - "code": "alu" - }, - { - "name": "Alaba-K’abeena", - "code": "alw" - }, - { - "name": "Wanbasana", - "code": "alw" - }, - { - "name": "Amol", - "code": "alx" - }, - { - "name": "Alyawarr", - "code": "aly" - }, - { - "name": "Alur", - "code": "alz" - }, - { - "name": "Amanayé", - "code": "ama" - }, - { - "name": "Ambo", - "code": "amb" - }, - { - "name": "Amahuaca", - "code": "amc" - }, - { - "name": "Yanesha'", - "code": "ame" - }, - { - "name": "Hamer-Banna", - "code": "amf" - }, - { - "name": "Amurdak", - "code": "amg" - }, - { - "name": "Amharic", - "code": "amh" - }, - { - "name": "Amis", - "code": "ami" - }, - { - "name": "Amdang", - "code": "amj" - }, - { - "name": "Ambai", - "code": "amk" - }, - { - "name": "War-Jaintia", - "code": "aml" - }, - { - "name": "Ama (Papua New Guinea)", - "code": "amm" - }, - { - "name": "Amanab", - "code": "amn" - }, - { - "name": "Amo", - "code": "amo" - }, - { - "name": "Alamblak", - "code": "amp" - }, - { - "name": "Amahai", - "code": "amq" - }, - { - "name": "Amarakaeri", - "code": "amr" - }, - { - "name": "Southern Amami-Oshima", - "code": "ams" - }, - { - "name": "Amto", - "code": "amt" - }, - { - "name": "Guerrero Amuzgo", - "code": "amu" - }, - { - "name": "Ambelau", - "code": "amv" - }, - { - "name": "Western Neo-Aramaic", - "code": "amw" - }, - { - "name": "Anmatyerre", - "code": "amx" - }, - { - "name": "Ami", - "code": "amy" - }, - { - "name": "Atampaya", - "code": "amz" - }, - { - "name": "Andaqui", - "code": "ana" - }, - { - "name": "Andoa", - "code": "anb" - }, - { - "name": "Ngas", - "code": "anc" - }, - { - "name": "Ansus", - "code": "and" - }, - { - "name": "Xârâcùù", - "code": "ane" - }, - { - "name": "Animere", - "code": "anf" - }, - { - "name": "Old English (ca. 450-1100)", - "code": "ang" - }, - { - "name": "Nend", - "code": "anh" - }, - { - "name": "Andi", - "code": "ani" - }, - { - "name": "Anor", - "code": "anj" - }, - { - "name": "Goemai", - "code": "ank" - }, - { - "name": "Anu-Hkongso Chin", - "code": "anl" - }, - { - "name": "Anal", - "code": "anm" - }, - { - "name": "Obolo", - "code": "ann" - }, - { - "name": "Andoque", - "code": "ano" - }, - { - "name": "Angika", - "code": "anp" - }, - { - "name": "Jarawa (India)", - "code": "anq" - }, - { - "name": "Andh", - "code": "anr" - }, - { - "name": "Anserma", - "code": "ans" - }, - { - "name": "Antakarinya", - "code": "ant" - }, - { - "name": "Antikarinya", - "code": "ant" - }, - { - "name": "Anuak", - "code": "anu" - }, - { - "name": "Denya", - "code": "anv" - }, - { - "name": "Anaang", - "code": "anw" - }, - { - "name": "Andra-Hus", - "code": "anx" - }, - { - "name": "Anyin", - "code": "any" - }, - { - "name": "Anem", - "code": "anz" - }, - { - "name": "Angolar", - "code": "aoa" - }, - { - "name": "Abom", - "code": "aob" - }, - { - "name": "Pemon", - "code": "aoc" - }, - { - "name": "Andarum", - "code": "aod" - }, - { - "name": "Angal Enen", - "code": "aoe" - }, - { - "name": "Bragat", - "code": "aof" - }, - { - "name": "Angoram", - "code": "aog" - }, - { - "name": "Anindilyakwa", - "code": "aoi" - }, - { - "name": "Mufian", - "code": "aoj" - }, - { - "name": "Arhö", - "code": "aok" - }, - { - "name": "Alor", - "code": "aol" - }, - { - "name": "Ömie", - "code": "aom" - }, - { - "name": "Bumbita Arapesh", - "code": "aon" - }, - { - "name": "Aore", - "code": "aor" - }, - { - "name": "Taikat", - "code": "aos" - }, - { - "name": "A'tong", - "code": "aot" - }, - { - "name": "Atong (India)", - "code": "aot" - }, - { - "name": "A'ou", - "code": "aou" - }, - { - "name": "Atorada", - "code": "aox" - }, - { - "name": "Uab Meto", - "code": "aoz" - }, - { - "name": "Sa'a", - "code": "apb" - }, - { - "name": "North Levantine Arabic", - "code": "apc" - }, - { - "name": "Sudanese Arabic", - "code": "apd" - }, - { - "name": "Bukiyip", - "code": "ape" - }, - { - "name": "Pahanan Agta", - "code": "apf" - }, - { - "name": "Ampanang", - "code": "apg" - }, - { - "name": "Athpariya", - "code": "aph" - }, - { - "name": "Apiaká", - "code": "api" - }, - { - "name": "Jicarilla Apache", - "code": "apj" - }, - { - "name": "Kiowa Apache", - "code": "apk" - }, - { - "name": "Lipan Apache", - "code": "apl" - }, - { - "name": "Mescalero-Chiricahua Apache", - "code": "apm" - }, - { - "name": "Apinayé", - "code": "apn" - }, - { - "name": "Ambul", - "code": "apo" - }, - { - "name": "Apma", - "code": "app" - }, - { - "name": "A-Pucikwar", - "code": "apq" - }, - { - "name": "Arop-Lokep", - "code": "apr" - }, - { - "name": "Arop-Sissano", - "code": "aps" - }, - { - "name": "Apatani", - "code": "apt" - }, - { - "name": "Apurinã", - "code": "apu" - }, - { - "name": "Alapmunte", - "code": "apv" - }, - { - "name": "Western Apache", - "code": "apw" - }, - { - "name": "Aputai", - "code": "apx" - }, - { - "name": "Apalaí", - "code": "apy" - }, - { - "name": "Safeyoka", - "code": "apz" - }, - { - "name": "Archi", - "code": "aqc" - }, - { - "name": "Ampari Dogon", - "code": "aqd" - }, - { - "name": "Arigidi", - "code": "aqg" - }, - { - "name": "Aninka", - "code": "aqk" - }, - { - "name": "Atohwaim", - "code": "aqm" - }, - { - "name": "Northern Alta", - "code": "aqn" - }, - { - "name": "Atakapa", - "code": "aqp" - }, - { - "name": "Arhâ", - "code": "aqr" - }, - { - "name": "Angaité", - "code": "aqt" - }, - { - "name": "Akuntsu", - "code": "aqz" - }, - { - "name": "Arabic", - "code": "ara" - }, - { - "name": "Standard Arabic", - "code": "arb" - }, - { - "name": "Imperial Aramaic (700-300 BCE)", - "code": "arc" - }, - { - "name": "Official Aramaic (700-300 BCE)", - "code": "arc" - }, - { - "name": "Arabana", - "code": "ard" - }, - { - "name": "Western Arrarnta", - "code": "are" - }, - { - "name": "Aragonese", - "code": "arg" - }, - { - "name": "Arhuaco", - "code": "arh" - }, - { - "name": "Arikara", - "code": "ari" - }, - { - "name": "Arapaso", - "code": "arj" - }, - { - "name": "Arikapú", - "code": "ark" - }, - { - "name": "Arabela", - "code": "arl" - }, - { - "name": "Mapuche", - "code": "arn" - }, - { - "name": "Mapudungun", - "code": "arn" - }, - { - "name": "Araona", - "code": "aro" - }, - { - "name": "Arapaho", - "code": "arp" - }, - { - "name": "Algerian Arabic", - "code": "arq" - }, - { - "name": "Karo (Brazil)", - "code": "arr" - }, - { - "name": "Najdi Arabic", - "code": "ars" - }, - { - "name": "Arawá", - "code": "aru" - }, - { - "name": "Aruá (Amazonas State)", - "code": "aru" - }, - { - "name": "Arbore", - "code": "arv" - }, - { - "name": "Arawak", - "code": "arw" - }, - { - "name": "Aruá (Rodonia State)", - "code": "arx" - }, - { - "name": "Moroccan Arabic", - "code": "ary" - }, - { - "name": "Egyptian Arabic", - "code": "arz" - }, - { - "name": "Asu (Tanzania)", - "code": "asa" - }, - { - "name": "Assiniboine", - "code": "asb" - }, - { - "name": "Casuarina Coast Asmat", - "code": "asc" - }, - { - "name": "American Sign Language", - "code": "ase" - }, - { - "name": "Auslan", - "code": "asf" - }, - { - "name": "Australian Sign Language", - "code": "asf" - }, - { - "name": "Cishingini", - "code": "asg" - }, - { - "name": "Abishira", - "code": "ash" - }, - { - "name": "Buruwai", - "code": "asi" - }, - { - "name": "Sari", - "code": "asj" - }, - { - "name": "Ashkun", - "code": "ask" - }, - { - "name": "Asilulu", - "code": "asl" - }, - { - "name": "Assamese", - "code": "asm" - }, - { - "name": "Xingú Asuriní", - "code": "asn" - }, - { - "name": "Dano", - "code": "aso" - }, - { - "name": "Algerian Sign Language", - "code": "asp" - }, - { - "name": "Austrian Sign Language", - "code": "asq" - }, - { - "name": "Asuri", - "code": "asr" - }, - { - "name": "Ipulo", - "code": "ass" - }, - { - "name": "Asturian", - "code": "ast" - }, - { - "name": "Asturleonese", - "code": "ast" - }, - { - "name": "Bable", - "code": "ast" - }, - { - "name": "Leonese", - "code": "ast" - }, - { - "name": "Tocantins Asurini", - "code": "asu" - }, - { - "name": "Asoa", - "code": "asv" - }, - { - "name": "Australian Aborigines Sign Language", - "code": "asw" - }, - { - "name": "Muratayak", - "code": "asx" - }, - { - "name": "Yaosakor Asmat", - "code": "asy" - }, - { - "name": "As", - "code": "asz" - }, - { - "name": "Pele-Ata", - "code": "ata" - }, - { - "name": "Zaiwa", - "code": "atb" - }, - { - "name": "Atsahuaca", - "code": "atc" - }, - { - "name": "Ata Manobo", - "code": "atd" - }, - { - "name": "Atemble", - "code": "ate" - }, - { - "name": "Ivbie North-Okpela-Arhe", - "code": "atg" - }, - { - "name": "Attié", - "code": "ati" - }, - { - "name": "Atikamekw", - "code": "atj" - }, - { - "name": "Ati", - "code": "atk" - }, - { - "name": "Mt. Iraya Agta", - "code": "atl" - }, - { - "name": "Ata", - "code": "atm" - }, - { - "name": "Ashtiani", - "code": "atn" - }, - { - "name": "Atong (Cameroon)", - "code": "ato" - }, - { - "name": "Pudtol Atta", - "code": "atp" - }, - { - "name": "Aralle-Tabulahan", - "code": "atq" - }, - { - "name": "Waimiri-Atroari", - "code": "atr" - }, - { - "name": "Gros Ventre", - "code": "ats" - }, - { - "name": "Pamplona Atta", - "code": "att" - }, - { - "name": "Reel", - "code": "atu" - }, - { - "name": "Northern Altai", - "code": "atv" - }, - { - "name": "Atsugewi", - "code": "atw" - }, - { - "name": "Arutani", - "code": "atx" - }, - { - "name": "Aneityum", - "code": "aty" - }, - { - "name": "Arta", - "code": "atz" - }, - { - "name": "Asumboa", - "code": "aua" - }, - { - "name": "Alugu", - "code": "aub" - }, - { - "name": "Waorani", - "code": "auc" - }, - { - "name": "Anuta", - "code": "aud" - }, - { - "name": "Aguna", - "code": "aug" - }, - { - "name": "Aushi", - "code": "auh" - }, - { - "name": "Anuki", - "code": "aui" - }, - { - "name": "Awjilah", - "code": "auj" - }, - { - "name": "Heyo", - "code": "auk" - }, - { - "name": "Aulua", - "code": "aul" - }, - { - "name": "Asu (Nigeria)", - "code": "aum" - }, - { - "name": "Molmo One", - "code": "aun" - }, - { - "name": "Auyokawa", - "code": "auo" - }, - { - "name": "Makayam", - "code": "aup" - }, - { - "name": "Anus", - "code": "auq" - }, - { - "name": "Korur", - "code": "auq" - }, - { - "name": "Aruek", - "code": "aur" - }, - { - "name": "Austral", - "code": "aut" - }, - { - "name": "Auye", - "code": "auu" - }, - { - "name": "Awyi", - "code": "auw" - }, - { - "name": "Aurá", - "code": "aux" - }, - { - "name": "Awiyaana", - "code": "auy" - }, - { - "name": "Uzbeki Arabic", - "code": "auz" - }, - { - "name": "Avaric", - "code": "ava" - }, - { - "name": "Avau", - "code": "avb" - }, - { - "name": "Alviri-Vidari", - "code": "avd" - }, - { - "name": "Avestan", - "code": "ave" - }, - { - "name": "Avikam", - "code": "avi" - }, - { - "name": "Kotava", - "code": "avk" - }, - { - "name": "Eastern Egyptian Bedawi Arabic", - "code": "avl" - }, - { - "name": "Angkamuthi", - "code": "avm" - }, - { - "name": "Avatime", - "code": "avn" - }, - { - "name": "Agavotaguerra", - "code": "avo" - }, - { - "name": "Aushiri", - "code": "avs" - }, - { - "name": "Au", - "code": "avt" - }, - { - "name": "Avokaya", - "code": "avu" - }, - { - "name": "Avá-Canoeiro", - "code": "avv" - }, - { - "name": "Awadhi", - "code": "awa" - }, - { - "name": "Awa (Papua New Guinea)", - "code": "awb" - }, - { - "name": "Cicipu", - "code": "awc" - }, - { - "name": "Awetí", - "code": "awe" - }, - { - "name": "Anguthimri", - "code": "awg" - }, - { - "name": "Awbono", - "code": "awh" - }, - { - "name": "Aekyom", - "code": "awi" - }, - { - "name": "Awabakal", - "code": "awk" - }, - { - "name": "Arawum", - "code": "awm" - }, - { - "name": "Awngi", - "code": "awn" - }, - { - "name": "Awak", - "code": "awo" - }, - { - "name": "Awera", - "code": "awr" - }, - { - "name": "South Awyu", - "code": "aws" - }, - { - "name": "Araweté", - "code": "awt" - }, - { - "name": "Central Awyu", - "code": "awu" - }, - { - "name": "Jair Awyu", - "code": "awv" - }, - { - "name": "Awun", - "code": "aww" - }, - { - "name": "Awara", - "code": "awx" - }, - { - "name": "Edera Awyu", - "code": "awy" - }, - { - "name": "Abipon", - "code": "axb" - }, - { - "name": "Ayerrerenge", - "code": "axe" - }, - { - "name": "Mato Grosso Arára", - "code": "axg" - }, - { - "name": "Yaka (Central African Republic)", - "code": "axk" - }, - { - "name": "Lower Southern Aranda", - "code": "axl" - }, - { - "name": "Middle Armenian", - "code": "axm" - }, - { - "name": "Xârâgurè", - "code": "axx" - }, - { - "name": "Awar", - "code": "aya" - }, - { - "name": "Ayizo Gbe", - "code": "ayb" - }, - { - "name": "Southern Aymara", - "code": "ayc" - }, - { - "name": "Ayabadhu", - "code": "ayd" - }, - { - "name": "Ayere", - "code": "aye" - }, - { - "name": "Ginyanga", - "code": "ayg" - }, - { - "name": "Hadrami Arabic", - "code": "ayh" - }, - { - "name": "Leyigha", - "code": "ayi" - }, - { - "name": "Akuku", - "code": "ayk" - }, - { - "name": "Libyan Arabic", - "code": "ayl" - }, - { - "name": "Aymara", - "code": "aym" - }, - { - "name": "Sanaani Arabic", - "code": "ayn" - }, - { - "name": "Ayoreo", - "code": "ayo" - }, - { - "name": "North Mesopotamian Arabic", - "code": "ayp" - }, - { - "name": "Ayi (Papua New Guinea)", - "code": "ayq" - }, - { - "name": "Central Aymara", - "code": "ayr" - }, - { - "name": "Sorsogon Ayta", - "code": "ays" - }, - { - "name": "Magbukun Ayta", - "code": "ayt" - }, - { - "name": "Ayu", - "code": "ayu" - }, - { - "name": "Mai Brat", - "code": "ayz" - }, - { - "name": "Azha", - "code": "aza" - }, - { - "name": "South Azerbaijani", - "code": "azb" - }, - { - "name": "Eastern Durango Nahuatl", - "code": "azd" - }, - { - "name": "Azerbaijani", - "code": "aze" - }, - { - "name": "San Pedro Amuzgos Amuzgo", - "code": "azg" - }, - { - "name": "North Azerbaijani", - "code": "azj" - }, - { - "name": "Ipalapa Amuzgo", - "code": "azm" - }, - { - "name": "Western Durango Nahuatl", - "code": "azn" - }, - { - "name": "Awing", - "code": "azo" - }, - { - "name": "Faire Atta", - "code": "azt" - }, - { - "name": "Highland Puebla Nahuatl", - "code": "azz" - }, - { - "name": "Babatana", - "code": "baa" - }, - { - "name": "Bainouk-Gunyuño", - "code": "bab" - }, - { - "name": "Badui", - "code": "bac" - }, - { - "name": "Baré", - "code": "bae" - }, - { - "name": "Nubaca", - "code": "baf" - }, - { - "name": "Tuki", - "code": "bag" - }, - { - "name": "Bahamas Creole English", - "code": "bah" - }, - { - "name": "Barakai", - "code": "baj" - }, - { - "name": "Bashkir", - "code": "bak" - }, - { - "name": "Baluchi", - "code": "bal" - }, - { - "name": "Bambara", - "code": "bam" - }, - { - "name": "Balinese", - "code": "ban" - }, - { - "name": "Waimaha", - "code": "bao" - }, - { - "name": "Bantawa", - "code": "bap" - }, - { - "name": "Bavarian", - "code": "bar" - }, - { - "name": "Basa (Cameroon)", - "code": "bas" - }, - { - "name": "Bada (Nigeria)", - "code": "bau" - }, - { - "name": "Vengo", - "code": "bav" - }, - { - "name": "Bambili-Bambui", - "code": "baw" - }, - { - "name": "Bamun", - "code": "bax" - }, - { - "name": "Batuley", - "code": "bay" - }, - { - "name": "Baatonum", - "code": "bba" - }, - { - "name": "Barai", - "code": "bbb" - }, - { - "name": "Batak Toba", - "code": "bbc" - }, - { - "name": "Bau", - "code": "bbd" - }, - { - "name": "Bangba", - "code": "bbe" - }, - { - "name": "Baibai", - "code": "bbf" - }, - { - "name": "Barama", - "code": "bbg" - }, - { - "name": "Bugan", - "code": "bbh" - }, - { - "name": "Barombi", - "code": "bbi" - }, - { - "name": "Ghomálá'", - "code": "bbj" - }, - { - "name": "Babanki", - "code": "bbk" - }, - { - "name": "Bats", - "code": "bbl" - }, - { - "name": "Babango", - "code": "bbm" - }, - { - "name": "Uneapa", - "code": "bbn" - }, - { - "name": "Konabéré", - "code": "bbo" - }, - { - "name": "Northern Bobo Madaré", - "code": "bbo" - }, - { - "name": "West Central Banda", - "code": "bbp" - }, - { - "name": "Bamali", - "code": "bbq" - }, - { - "name": "Girawa", - "code": "bbr" - }, - { - "name": "Bakpinka", - "code": "bbs" - }, - { - "name": "Mburku", - "code": "bbt" - }, - { - "name": "Kulung (Nigeria)", - "code": "bbu" - }, - { - "name": "Karnai", - "code": "bbv" - }, - { - "name": "Baba", - "code": "bbw" - }, - { - "name": "Bubia", - "code": "bbx" - }, - { - "name": "Befang", - "code": "bby" - }, - { - "name": "Central Bai", - "code": "bca" - }, - { - "name": "Bainouk-Samik", - "code": "bcb" - }, - { - "name": "Southern Balochi", - "code": "bcc" - }, - { - "name": "North Babar", - "code": "bcd" - }, - { - "name": "Bamenyam", - "code": "bce" - }, - { - "name": "Bamu", - "code": "bcf" - }, - { - "name": "Baga Pokur", - "code": "bcg" - }, - { - "name": "Bariai", - "code": "bch" - }, - { - "name": "Baoulé", - "code": "bci" - }, - { - "name": "Bardi", - "code": "bcj" - }, - { - "name": "Bunuba", - "code": "bck" - }, - { - "name": "Central Bikol", - "code": "bcl" - }, - { - "name": "Bannoni", - "code": "bcm" - }, - { - "name": "Bali (Nigeria)", - "code": "bcn" - }, - { - "name": "Kaluli", - "code": "bco" - }, - { - "name": "Bali (Democratic Republic of Congo)", - "code": "bcp" - }, - { - "name": "Bench", - "code": "bcq" - }, - { - "name": "Babine", - "code": "bcr" - }, - { - "name": "Kohumono", - "code": "bcs" - }, - { - "name": "Bendi", - "code": "bct" - }, - { - "name": "Awad Bing", - "code": "bcu" - }, - { - "name": "Shoo-Minda-Nye", - "code": "bcv" - }, - { - "name": "Bana", - "code": "bcw" - }, - { - "name": "Bacama", - "code": "bcy" - }, - { - "name": "Bainouk-Gunyaamolo", - "code": "bcz" - }, - { - "name": "Bayot", - "code": "bda" - }, - { - "name": "Basap", - "code": "bdb" - }, - { - "name": "Emberá-Baudó", - "code": "bdc" - }, - { - "name": "Bunama", - "code": "bdd" - }, - { - "name": "Bade", - "code": "bde" - }, - { - "name": "Biage", - "code": "bdf" - }, - { - "name": "Bonggi", - "code": "bdg" - }, - { - "name": "Baka (South Sudan)", - "code": "bdh" - }, - { - "name": "Burun", - "code": "bdi" - }, - { - "name": "Bai", - "code": "bdj" - }, - { - "name": "Bai (South Sudan)", - "code": "bdj" - }, - { - "name": "Budukh", - "code": "bdk" - }, - { - "name": "Indonesian Bajau", - "code": "bdl" - }, - { - "name": "Buduma", - "code": "bdm" - }, - { - "name": "Baldemu", - "code": "bdn" - }, - { - "name": "Morom", - "code": "bdo" - }, - { - "name": "Bende", - "code": "bdp" - }, - { - "name": "Bahnar", - "code": "bdq" - }, - { - "name": "West Coast Bajau", - "code": "bdr" - }, - { - "name": "Burunge", - "code": "bds" - }, - { - "name": "Bokoto", - "code": "bdt" - }, - { - "name": "Oroko", - "code": "bdu" - }, - { - "name": "Bodo Parja", - "code": "bdv" - }, - { - "name": "Baham", - "code": "bdw" - }, - { - "name": "Budong-Budong", - "code": "bdx" - }, - { - "name": "Bandjalang", - "code": "bdy" - }, - { - "name": "Badeshi", - "code": "bdz" - }, - { - "name": "Beaver", - "code": "bea" - }, - { - "name": "Bebele", - "code": "beb" - }, - { - "name": "Iceve-Maci", - "code": "bec" - }, - { - "name": "Bedoanas", - "code": "bed" - }, - { - "name": "Byangsi", - "code": "bee" - }, - { - "name": "Benabena", - "code": "bef" - }, - { - "name": "Belait", - "code": "beg" - }, - { - "name": "Biali", - "code": "beh" - }, - { - "name": "Bekati'", - "code": "bei" - }, - { - "name": "Bedawiyet", - "code": "bej" - }, - { - "name": "Beja", - "code": "bej" - }, - { - "name": "Bebeli", - "code": "bek" - }, - { - "name": "Belarusian", - "code": "bel" - }, - { - "name": "Bemba (Zambia)", - "code": "bem" - }, - { - "name": "Bengali", - "code": "ben" - }, - { - "name": "Beami", - "code": "beo" - }, - { - "name": "Besoa", - "code": "bep" - }, - { - "name": "Beembe", - "code": "beq" - }, - { - "name": "Besme", - "code": "bes" - }, - { - "name": "Guiberoua Béte", - "code": "bet" - }, - { - "name": "Blagar", - "code": "beu" - }, - { - "name": "Daloa Bété", - "code": "bev" - }, - { - "name": "Betawi", - "code": "bew" - }, - { - "name": "Jur Modo", - "code": "bex" - }, - { - "name": "Beli (Papua New Guinea)", - "code": "bey" - }, - { - "name": "Bena (Tanzania)", - "code": "bez" - }, - { - "name": "Bari", - "code": "bfa" - }, - { - "name": "Pauri Bareli", - "code": "bfb" - }, - { - "name": "Northern Bai", - "code": "bfc" - }, - { - "name": "Panyi Bai", - "code": "bfc" - }, - { - "name": "Bafut", - "code": "bfd" - }, - { - "name": "Betaf", - "code": "bfe" - }, - { - "name": "Tena", - "code": "bfe" - }, - { - "name": "Bofi", - "code": "bff" - }, - { - "name": "Busang Kayan", - "code": "bfg" - }, - { - "name": "Blafe", - "code": "bfh" - }, - { - "name": "British Sign Language", - "code": "bfi" - }, - { - "name": "Bafanji", - "code": "bfj" - }, - { - "name": "Ban Khor Sign Language", - "code": "bfk" - }, - { - "name": "Banda-Ndélé", - "code": "bfl" - }, - { - "name": "Mmen", - "code": "bfm" - }, - { - "name": "Bunak", - "code": "bfn" - }, - { - "name": "Malba Birifor", - "code": "bfo" - }, - { - "name": "Beba", - "code": "bfp" - }, - { - "name": "Badaga", - "code": "bfq" - }, - { - "name": "Bazigar", - "code": "bfr" - }, - { - "name": "Southern Bai", - "code": "bfs" - }, - { - "name": "Balti", - "code": "bft" - }, - { - "name": "Gahri", - "code": "bfu" - }, - { - "name": "Bondo", - "code": "bfw" - }, - { - "name": "Bantayanon", - "code": "bfx" - }, - { - "name": "Bagheli", - "code": "bfy" - }, - { - "name": "Mahasu Pahari", - "code": "bfz" - }, - { - "name": "Gwamhi-Wuri", - "code": "bga" - }, - { - "name": "Bobongko", - "code": "bgb" - }, - { - "name": "Haryanvi", - "code": "bgc" - }, - { - "name": "Rathwi Bareli", - "code": "bgd" - }, - { - "name": "Bauria", - "code": "bge" - }, - { - "name": "Bangandu", - "code": "bgf" - }, - { - "name": "Bugun", - "code": "bgg" - }, - { - "name": "Giangan", - "code": "bgi" - }, - { - "name": "Bangolan", - "code": "bgj" - }, - { - "name": "Bit", - "code": "bgk" - }, - { - "name": "Buxinhua", - "code": "bgk" - }, - { - "name": "Bo (Laos)", - "code": "bgl" - }, - { - "name": "Western Balochi", - "code": "bgn" - }, - { - "name": "Baga Koga", - "code": "bgo" - }, - { - "name": "Eastern Balochi", - "code": "bgp" - }, - { - "name": "Bagri", - "code": "bgq" - }, - { - "name": "Bawm Chin", - "code": "bgr" - }, - { - "name": "Tagabawa", - "code": "bgs" - }, - { - "name": "Bughotu", - "code": "bgt" - }, - { - "name": "Mbongno", - "code": "bgu" - }, - { - "name": "Warkay-Bipim", - "code": "bgv" - }, - { - "name": "Bhatri", - "code": "bgw" - }, - { - "name": "Balkan Gagauz Turkish", - "code": "bgx" - }, - { - "name": "Benggoi", - "code": "bgy" - }, - { - "name": "Banggai", - "code": "bgz" - }, - { - "name": "Bharia", - "code": "bha" - }, - { - "name": "Bhili", - "code": "bhb" - }, - { - "name": "Biga", - "code": "bhc" - }, - { - "name": "Bhadrawahi", - "code": "bhd" - }, - { - "name": "Bhaya", - "code": "bhe" - }, - { - "name": "Odiai", - "code": "bhf" - }, - { - "name": "Binandere", - "code": "bhg" - }, - { - "name": "Bukharic", - "code": "bhh" - }, - { - "name": "Bhilali", - "code": "bhi" - }, - { - "name": "Bahing", - "code": "bhj" - }, - { - "name": "Bimin", - "code": "bhl" - }, - { - "name": "Bathari", - "code": "bhm" - }, - { - "name": "Bohtan Neo-Aramaic", - "code": "bhn" - }, - { - "name": "Bhojpuri", - "code": "bho" - }, - { - "name": "Bima", - "code": "bhp" - }, - { - "name": "Tukang Besi South", - "code": "bhq" - }, - { - "name": "Bara Malagasy", - "code": "bhr" - }, - { - "name": "Buwal", - "code": "bhs" - }, - { - "name": "Bhattiyali", - "code": "bht" - }, - { - "name": "Bhunjia", - "code": "bhu" - }, - { - "name": "Bahau", - "code": "bhv" - }, - { - "name": "Biak", - "code": "bhw" - }, - { - "name": "Bhalay", - "code": "bhx" - }, - { - "name": "Bhele", - "code": "bhy" - }, - { - "name": "Bada (Indonesia)", - "code": "bhz" - }, - { - "name": "Badimaya", - "code": "bia" - }, - { - "name": "Bisa", - "code": "bib" - }, - { - "name": "Bissa", - "code": "bib" - }, - { - "name": "Bidiyo", - "code": "bid" - }, - { - "name": "Bepour", - "code": "bie" - }, - { - "name": "Biafada", - "code": "bif" - }, - { - "name": "Biangai", - "code": "big" - }, - { - "name": "Bikol", - "code": "bik" - }, - { - "name": "Bile", - "code": "bil" - }, - { - "name": "Bimoba", - "code": "bim" - }, - { - "name": "Bini", - "code": "bin" - }, - { - "name": "Edo", - "code": "bin" - }, - { - "name": "Nai", - "code": "bio" - }, - { - "name": "Bila", - "code": "bip" - }, - { - "name": "Bipi", - "code": "biq" - }, - { - "name": "Bisorio", - "code": "bir" - }, - { - "name": "Bislama", - "code": "bis" - }, - { - "name": "Berinomo", - "code": "bit" - }, - { - "name": "Biete", - "code": "biu" - }, - { - "name": "Southern Birifor", - "code": "biv" - }, - { - "name": "Kol (Cameroon)", - "code": "biw" - }, - { - "name": "Bijori", - "code": "bix" - }, - { - "name": "Birhor", - "code": "biy" - }, - { - "name": "Baloi", - "code": "biz" - }, - { - "name": "Budza", - "code": "bja" - }, - { - "name": "Banggarla", - "code": "bjb" - }, - { - "name": "Bariji", - "code": "bjc" - }, - { - "name": "Biao-Jiao Mien", - "code": "bje" - }, - { - "name": "Barzani Jewish Neo-Aramaic", - "code": "bjf" - }, - { - "name": "Bidyogo", - "code": "bjg" - }, - { - "name": "Bahinemo", - "code": "bjh" - }, - { - "name": "Burji", - "code": "bji" - }, - { - "name": "Kanauji", - "code": "bjj" - }, - { - "name": "Barok", - "code": "bjk" - }, - { - "name": "Bulu (Papua New Guinea)", - "code": "bjl" - }, - { - "name": "Bajelani", - "code": "bjm" - }, - { - "name": "Banjar", - "code": "bjn" - }, - { - "name": "Mid-Southern Banda", - "code": "bjo" - }, - { - "name": "Fanamaket", - "code": "bjp" - }, - { - "name": "Binumarien", - "code": "bjr" - }, - { - "name": "Bajan", - "code": "bjs" - }, - { - "name": "Balanta-Ganja", - "code": "bjt" - }, - { - "name": "Busuu", - "code": "bju" - }, - { - "name": "Bedjond", - "code": "bjv" - }, - { - "name": "Bakwé", - "code": "bjw" - }, - { - "name": "Banao Itneg", - "code": "bjx" - }, - { - "name": "Bayali", - "code": "bjy" - }, - { - "name": "Baruga", - "code": "bjz" - }, - { - "name": "Kyak", - "code": "bka" - }, - { - "name": "Baka (Cameroon)", - "code": "bkc" - }, - { - "name": "Binukid", - "code": "bkd" - }, - { - "name": "Talaandig", - "code": "bkd" - }, - { - "name": "Beeke", - "code": "bkf" - }, - { - "name": "Buraka", - "code": "bkg" - }, - { - "name": "Bakoko", - "code": "bkh" - }, - { - "name": "Baki", - "code": "bki" - }, - { - "name": "Pande", - "code": "bkj" - }, - { - "name": "Brokskat", - "code": "bkk" - }, - { - "name": "Berik", - "code": "bkl" - }, - { - "name": "Kom (Cameroon)", - "code": "bkm" - }, - { - "name": "Bukitan", - "code": "bkn" - }, - { - "name": "Kwa'", - "code": "bko" - }, - { - "name": "Boko (Democratic Republic of Congo)", - "code": "bkp" - }, - { - "name": "Bakairí", - "code": "bkq" - }, - { - "name": "Bakumpai", - "code": "bkr" - }, - { - "name": "Northern Sorsoganon", - "code": "bks" - }, - { - "name": "Boloki", - "code": "bkt" - }, - { - "name": "Buhid", - "code": "bku" - }, - { - "name": "Bekwarra", - "code": "bkv" - }, - { - "name": "Bekwel", - "code": "bkw" - }, - { - "name": "Baikeno", - "code": "bkx" - }, - { - "name": "Bokyi", - "code": "bky" - }, - { - "name": "Bungku", - "code": "bkz" - }, - { - "name": "Siksika", - "code": "bla" - }, - { - "name": "Bilua", - "code": "blb" - }, - { - "name": "Bella Coola", - "code": "blc" - }, - { - "name": "Bolango", - "code": "bld" - }, - { - "name": "Balanta-Kentohe", - "code": "ble" - }, - { - "name": "Buol", - "code": "blf" - }, - { - "name": "Kuwaa", - "code": "blh" - }, - { - "name": "Bolia", - "code": "bli" - }, - { - "name": "Bolongan", - "code": "blj" - }, - { - "name": "Pa'O", - "code": "blk" - }, - { - "name": "Pa'o Karen", - "code": "blk" - }, - { - "name": "Biloxi", - "code": "bll" - }, - { - "name": "Beli (South Sudan)", - "code": "blm" - }, - { - "name": "Southern Catanduanes Bikol", - "code": "bln" - }, - { - "name": "Anii", - "code": "blo" - }, - { - "name": "Blablanga", - "code": "blp" - }, - { - "name": "Baluan-Pam", - "code": "blq" - }, - { - "name": "Blang", - "code": "blr" - }, - { - "name": "Balaesang", - "code": "bls" - }, - { - "name": "Tai Dam", - "code": "blt" - }, - { - "name": "Bolo", - "code": "blv" - }, - { - "name": "Kibala", - "code": "blv" - }, - { - "name": "Balangao", - "code": "blw" - }, - { - "name": "Mag-Indi Ayta", - "code": "blx" - }, - { - "name": "Notre", - "code": "bly" - }, - { - "name": "Balantak", - "code": "blz" - }, - { - "name": "Lame", - "code": "bma" - }, - { - "name": "Bembe", - "code": "bmb" - }, - { - "name": "Biem", - "code": "bmc" - }, - { - "name": "Baga Manduri", - "code": "bmd" - }, - { - "name": "Limassa", - "code": "bme" - }, - { - "name": "Bom-Kim", - "code": "bmf" - }, - { - "name": "Bamwe", - "code": "bmg" - }, - { - "name": "Kein", - "code": "bmh" - }, - { - "name": "Bagirmi", - "code": "bmi" - }, - { - "name": "Bote-Majhi", - "code": "bmj" - }, - { - "name": "Ghayavi", - "code": "bmk" - }, - { - "name": "Bomboli", - "code": "bml" - }, - { - "name": "Northern Betsimisaraka Malagasy", - "code": "bmm" - }, - { - "name": "Bina (Papua New Guinea)", - "code": "bmn" - }, - { - "name": "Bambalang", - "code": "bmo" - }, - { - "name": "Bulgebi", - "code": "bmp" - }, - { - "name": "Bomu", - "code": "bmq" - }, - { - "name": "Muinane", - "code": "bmr" - }, - { - "name": "Bilma Kanuri", - "code": "bms" - }, - { - "name": "Biao Mon", - "code": "bmt" - }, - { - "name": "Somba-Siawari", - "code": "bmu" - }, - { - "name": "Bum", - "code": "bmv" - }, - { - "name": "Bomwali", - "code": "bmw" - }, - { - "name": "Baimak", - "code": "bmx" - }, - { - "name": "Baramu", - "code": "bmz" - }, - { - "name": "Bonerate", - "code": "bna" - }, - { - "name": "Bookan", - "code": "bnb" - }, - { - "name": "Bontok", - "code": "bnc" - }, - { - "name": "Banda (Indonesia)", - "code": "bnd" - }, - { - "name": "Bintauna", - "code": "bne" - }, - { - "name": "Masiwang", - "code": "bnf" - }, - { - "name": "Benga", - "code": "bng" - }, - { - "name": "Bangi", - "code": "bni" - }, - { - "name": "Eastern Tawbuid", - "code": "bnj" - }, - { - "name": "Bierebo", - "code": "bnk" - }, - { - "name": "Boon", - "code": "bnl" - }, - { - "name": "Batanga", - "code": "bnm" - }, - { - "name": "Bunun", - "code": "bnn" - }, - { - "name": "Bantoanon", - "code": "bno" - }, - { - "name": "Bola", - "code": "bnp" - }, - { - "name": "Bantik", - "code": "bnq" - }, - { - "name": "Butmas-Tur", - "code": "bnr" - }, - { - "name": "Bundeli", - "code": "bns" - }, - { - "name": "Bentong", - "code": "bnu" - }, - { - "name": "Beneraf", - "code": "bnv" - }, - { - "name": "Bonerif", - "code": "bnv" - }, - { - "name": "Edwas", - "code": "bnv" - }, - { - "name": "Bisis", - "code": "bnw" - }, - { - "name": "Bangubangu", - "code": "bnx" - }, - { - "name": "Bintulu", - "code": "bny" - }, - { - "name": "Beezen", - "code": "bnz" - }, - { - "name": "Bora", - "code": "boa" - }, - { - "name": "Aweer", - "code": "bob" - }, - { - "name": "Tibetan", - "code": "bod" - }, - { - "name": "Mundabli", - "code": "boe" - }, - { - "name": "Bolon", - "code": "bof" - }, - { - "name": "Bamako Sign Language", - "code": "bog" - }, - { - "name": "Boma", - "code": "boh" - }, - { - "name": "Barbareño", - "code": "boi" - }, - { - "name": "Anjam", - "code": "boj" - }, - { - "name": "Bonjo", - "code": "bok" - }, - { - "name": "Bole", - "code": "bol" - }, - { - "name": "Berom", - "code": "bom" - }, - { - "name": "Bine", - "code": "bon" - }, - { - "name": "Tiemacèwè Bozo", - "code": "boo" - }, - { - "name": "Bonkiman", - "code": "bop" - }, - { - "name": "Bogaya", - "code": "boq" - }, - { - "name": "Borôro", - "code": "bor" - }, - { - "name": "Bosnian", - "code": "bos" - }, - { - "name": "Bongo", - "code": "bot" - }, - { - "name": "Bondei", - "code": "bou" - }, - { - "name": "Tuwuli", - "code": "bov" - }, - { - "name": "Rema", - "code": "bow" - }, - { - "name": "Buamu", - "code": "box" - }, - { - "name": "Bodo (Central African Republic)", - "code": "boy" - }, - { - "name": "Tiéyaxo Bozo", - "code": "boz" - }, - { - "name": "Daakaka", - "code": "bpa" - }, - { - "name": "Banda-Banda", - "code": "bpd" - }, - { - "name": "Bauni", - "code": "bpe" - }, - { - "name": "Bonggo", - "code": "bpg" - }, - { - "name": "Botlikh", - "code": "bph" - }, - { - "name": "Bagupi", - "code": "bpi" - }, - { - "name": "Binji", - "code": "bpj" - }, - { - "name": "'Ôrôê", - "code": "bpk" - }, - { - "name": "Orowe", - "code": "bpk" - }, - { - "name": "Broome Pearling Lugger Pidgin", - "code": "bpl" - }, - { - "name": "Biyom", - "code": "bpm" - }, - { - "name": "Dzao Min", - "code": "bpn" - }, - { - "name": "Anasi", - "code": "bpo" - }, - { - "name": "Kaure", - "code": "bpp" - }, - { - "name": "Banda Malay", - "code": "bpq" - }, - { - "name": "Koronadal Blaan", - "code": "bpr" - }, - { - "name": "Sarangani Blaan", - "code": "bps" - }, - { - "name": "Barrow Point", - "code": "bpt" - }, - { - "name": "Bongu", - "code": "bpu" - }, - { - "name": "Bian Marind", - "code": "bpv" - }, - { - "name": "Bo (Papua New Guinea)", - "code": "bpw" - }, - { - "name": "Palya Bareli", - "code": "bpx" - }, - { - "name": "Bishnupriya", - "code": "bpy" - }, - { - "name": "Bilba", - "code": "bpz" - }, - { - "name": "Tchumbuli", - "code": "bqa" - }, - { - "name": "Bagusa", - "code": "bqb" - }, - { - "name": "Boko (Benin)", - "code": "bqc" - }, - { - "name": "Boo", - "code": "bqc" - }, - { - "name": "Bung", - "code": "bqd" - }, - { - "name": "Baga Kaloum", - "code": "bqf" - }, - { - "name": "Bago-Kusuntu", - "code": "bqg" - }, - { - "name": "Baima", - "code": "bqh" - }, - { - "name": "Bakhtiari", - "code": "bqi" - }, - { - "name": "Bandial", - "code": "bqj" - }, - { - "name": "Banda-Mbrès", - "code": "bqk" - }, - { - "name": "Bilakura", - "code": "bql" - }, - { - "name": "Wumboko", - "code": "bqm" - }, - { - "name": "Bulgarian Sign Language", - "code": "bqn" - }, - { - "name": "Balo", - "code": "bqo" - }, - { - "name": "Busa", - "code": "bqp" - }, - { - "name": "Biritai", - "code": "bqq" - }, - { - "name": "Burusu", - "code": "bqr" - }, - { - "name": "Bosngun", - "code": "bqs" - }, - { - "name": "Bamukumbit", - "code": "bqt" - }, - { - "name": "Boguru", - "code": "bqu" - }, - { - "name": "Begbere-Ejar", - "code": "bqv" - }, - { - "name": "Koro Wachi", - "code": "bqv" - }, - { - "name": "Buru (Nigeria)", - "code": "bqw" - }, - { - "name": "Baangi", - "code": "bqx" - }, - { - "name": "Bengkala Sign Language", - "code": "bqy" - }, - { - "name": "Bakaka", - "code": "bqz" - }, - { - "name": "Braj", - "code": "bra" - }, - { - "name": "Lave", - "code": "brb" - }, - { - "name": "Berbice Creole Dutch", - "code": "brc" - }, - { - "name": "Baraamu", - "code": "brd" - }, - { - "name": "Breton", - "code": "bre" - }, - { - "name": "Bira", - "code": "brf" - }, - { - "name": "Baure", - "code": "brg" - }, - { - "name": "Brahui", - "code": "brh" - }, - { - "name": "Mokpwe", - "code": "bri" - }, - { - "name": "Bieria", - "code": "brj" - }, - { - "name": "Birked", - "code": "brk" - }, - { - "name": "Birwa", - "code": "brl" - }, - { - "name": "Barambu", - "code": "brm" - }, - { - "name": "Boruca", - "code": "brn" - }, - { - "name": "Brokkat", - "code": "bro" - }, - { - "name": "Barapasi", - "code": "brp" - }, - { - "name": "Breri", - "code": "brq" - }, - { - "name": "Birao", - "code": "brr" - }, - { - "name": "Baras", - "code": "brs" - }, - { - "name": "Bitare", - "code": "brt" - }, - { - "name": "Eastern Bru", - "code": "bru" - }, - { - "name": "Western Bru", - "code": "brv" - }, - { - "name": "Bellari", - "code": "brw" - }, - { - "name": "Bodo (India)", - "code": "brx" - }, - { - "name": "Burui", - "code": "bry" - }, - { - "name": "Bilbil", - "code": "brz" - }, - { - "name": "Abinomn", - "code": "bsa" - }, - { - "name": "Brunei Bisaya", - "code": "bsb" - }, - { - "name": "Bassari", - "code": "bsc" - }, - { - "name": "Oniyan", - "code": "bsc" - }, - { - "name": "Wushi", - "code": "bse" - }, - { - "name": "Bauchi", - "code": "bsf" - }, - { - "name": "Bashkardi", - "code": "bsg" - }, - { - "name": "Kati", - "code": "bsh" - }, - { - "name": "Bassossi", - "code": "bsi" - }, - { - "name": "Bangwinji", - "code": "bsj" - }, - { - "name": "Burushaski", - "code": "bsk" - }, - { - "name": "Basa-Gumna", - "code": "bsl" - }, - { - "name": "Busami", - "code": "bsm" - }, - { - "name": "Barasana-Eduria", - "code": "bsn" - }, - { - "name": "Buso", - "code": "bso" - }, - { - "name": "Baga Sitemu", - "code": "bsp" - }, - { - "name": "Bassa", - "code": "bsq" - }, - { - "name": "Bassa-Kontagora", - "code": "bsr" - }, - { - "name": "Akoose", - "code": "bss" - }, - { - "name": "Basketo", - "code": "bst" - }, - { - "name": "Bahonsuai", - "code": "bsu" - }, - { - "name": "Baga Sobané", - "code": "bsv" - }, - { - "name": "Baiso", - "code": "bsw" - }, - { - "name": "Yangkam", - "code": "bsx" - }, - { - "name": "Sabah Bisaya", - "code": "bsy" - }, - { - "name": "Bata", - "code": "bta" - }, - { - "name": "Bati (Cameroon)", - "code": "btc" - }, - { - "name": "Batak Dairi", - "code": "btd" - }, - { - "name": "Gamo-Ningi", - "code": "bte" - }, - { - "name": "Birgit", - "code": "btf" - }, - { - "name": "Gagnoa Bété", - "code": "btg" - }, - { - "name": "Biatah Bidayuh", - "code": "bth" - }, - { - "name": "Burate", - "code": "bti" - }, - { - "name": "Bacanese Malay", - "code": "btj" - }, - { - "name": "Batak Mandailing", - "code": "btm" - }, - { - "name": "Ratagnon", - "code": "btn" - }, - { - "name": "Rinconada Bikol", - "code": "bto" - }, - { - "name": "Budibud", - "code": "btp" - }, - { - "name": "Batek", - "code": "btq" - }, - { - "name": "Baetora", - "code": "btr" - }, - { - "name": "Batak Simalungun", - "code": "bts" - }, - { - "name": "Bete-Bendi", - "code": "btt" - }, - { - "name": "Batu", - "code": "btu" - }, - { - "name": "Bateri", - "code": "btv" - }, - { - "name": "Butuanon", - "code": "btw" - }, - { - "name": "Batak Karo", - "code": "btx" - }, - { - "name": "Bobot", - "code": "bty" - }, - { - "name": "Batak Alas-Kluet", - "code": "btz" - }, - { - "name": "Buriat", - "code": "bua" - }, - { - "name": "Bua", - "code": "bub" - }, - { - "name": "Bushi", - "code": "buc" - }, - { - "name": "Ntcham", - "code": "bud" - }, - { - "name": "Beothuk", - "code": "bue" - }, - { - "name": "Bushoong", - "code": "buf" - }, - { - "name": "Buginese", - "code": "bug" - }, - { - "name": "Younuo Bunu", - "code": "buh" - }, - { - "name": "Bongili", - "code": "bui" - }, - { - "name": "Basa-Gurmana", - "code": "buj" - }, - { - "name": "Bugawac", - "code": "buk" - }, - { - "name": "Bulgarian", - "code": "bul" - }, - { - "name": "Bulu (Cameroon)", - "code": "bum" - }, - { - "name": "Sherbro", - "code": "bun" - }, - { - "name": "Terei", - "code": "buo" - }, - { - "name": "Busoa", - "code": "bup" - }, - { - "name": "Brem", - "code": "buq" - }, - { - "name": "Bokobaru", - "code": "bus" - }, - { - "name": "Bungain", - "code": "but" - }, - { - "name": "Budu", - "code": "buu" - }, - { - "name": "Bun", - "code": "buv" - }, - { - "name": "Bubi", - "code": "buw" - }, - { - "name": "Boghom", - "code": "bux" - }, - { - "name": "Bullom So", - "code": "buy" - }, - { - "name": "Bukwen", - "code": "buz" - }, - { - "name": "Barein", - "code": "bva" - }, - { - "name": "Bube", - "code": "bvb" - }, - { - "name": "Baelelea", - "code": "bvc" - }, - { - "name": "Baeggu", - "code": "bvd" - }, - { - "name": "Berau Malay", - "code": "bve" - }, - { - "name": "Boor", - "code": "bvf" - }, - { - "name": "Bonkeng", - "code": "bvg" - }, - { - "name": "Bure", - "code": "bvh" - }, - { - "name": "Belanda Viri", - "code": "bvi" - }, - { - "name": "Baan", - "code": "bvj" - }, - { - "name": "Bukat", - "code": "bvk" - }, - { - "name": "Bolivian Sign Language", - "code": "bvl" - }, - { - "name": "Bamunka", - "code": "bvm" - }, - { - "name": "Buna", - "code": "bvn" - }, - { - "name": "Bolgo", - "code": "bvo" - }, - { - "name": "Bumang", - "code": "bvp" - }, - { - "name": "Birri", - "code": "bvq" - }, - { - "name": "Burarra", - "code": "bvr" - }, - { - "name": "Bati (Indonesia)", - "code": "bvt" - }, - { - "name": "Bukit Malay", - "code": "bvu" - }, - { - "name": "Baniva", - "code": "bvv" - }, - { - "name": "Boga", - "code": "bvw" - }, - { - "name": "Dibole", - "code": "bvx" - }, - { - "name": "Baybayanon", - "code": "bvy" - }, - { - "name": "Bauzi", - "code": "bvz" - }, - { - "name": "Bwatoo", - "code": "bwa" - }, - { - "name": "Namosi-Naitasiri-Serua", - "code": "bwb" - }, - { - "name": "Bwile", - "code": "bwc" - }, - { - "name": "Bwaidoka", - "code": "bwd" - }, - { - "name": "Bwe Karen", - "code": "bwe" - }, - { - "name": "Boselewa", - "code": "bwf" - }, - { - "name": "Barwe", - "code": "bwg" - }, - { - "name": "Bishuo", - "code": "bwh" - }, - { - "name": "Baniwa", - "code": "bwi" - }, - { - "name": "Láá Láá Bwamu", - "code": "bwj" - }, - { - "name": "Bauwaki", - "code": "bwk" - }, - { - "name": "Bwela", - "code": "bwl" - }, - { - "name": "Biwat", - "code": "bwm" - }, - { - "name": "Wunai Bunu", - "code": "bwn" - }, - { - "name": "Borna (Ethiopia)", - "code": "bwo" - }, - { - "name": "Boro (Ethiopia)", - "code": "bwo" - }, - { - "name": "Mandobo Bawah", - "code": "bwp" - }, - { - "name": "Southern Bobo Madaré", - "code": "bwq" - }, - { - "name": "Bura-Pabir", - "code": "bwr" - }, - { - "name": "Bomboma", - "code": "bws" - }, - { - "name": "Bafaw-Balong", - "code": "bwt" - }, - { - "name": "Buli (Ghana)", - "code": "bwu" - }, - { - "name": "Bwa", - "code": "bww" - }, - { - "name": "Bu-Nao Bunu", - "code": "bwx" - }, - { - "name": "Cwi Bwamu", - "code": "bwy" - }, - { - "name": "Bwisi", - "code": "bwz" - }, - { - "name": "Tairaha", - "code": "bxa" - }, - { - "name": "Belanda Bor", - "code": "bxb" - }, - { - "name": "Molengue", - "code": "bxc" - }, - { - "name": "Pela", - "code": "bxd" - }, - { - "name": "Birale", - "code": "bxe" - }, - { - "name": "Bilur", - "code": "bxf" - }, - { - "name": "Minigir", - "code": "bxf" - }, - { - "name": "Bangala", - "code": "bxg" - }, - { - "name": "Buhutu", - "code": "bxh" - }, - { - "name": "Pirlatapa", - "code": "bxi" - }, - { - "name": "Bayungu", - "code": "bxj" - }, - { - "name": "Bukusu", - "code": "bxk" - }, - { - "name": "Lubukusu", - "code": "bxk" - }, - { - "name": "Jalkunan", - "code": "bxl" - }, - { - "name": "Mongolia Buriat", - "code": "bxm" - }, - { - "name": "Burduna", - "code": "bxn" - }, - { - "name": "Barikanchi", - "code": "bxo" - }, - { - "name": "Bebil", - "code": "bxp" - }, - { - "name": "Beele", - "code": "bxq" - }, - { - "name": "Russia Buriat", - "code": "bxr" - }, - { - "name": "Busam", - "code": "bxs" - }, - { - "name": "China Buriat", - "code": "bxu" - }, - { - "name": "Berakou", - "code": "bxv" - }, - { - "name": "Bankagooma", - "code": "bxw" - }, - { - "name": "Binahari", - "code": "bxz" - }, - { - "name": "Batak", - "code": "bya" - }, - { - "name": "Bikya", - "code": "byb" - }, - { - "name": "Ubaghara", - "code": "byc" - }, - { - "name": "Benyadu'", - "code": "byd" - }, - { - "name": "Pouye", - "code": "bye" - }, - { - "name": "Bete", - "code": "byf" - }, - { - "name": "Baygo", - "code": "byg" - }, - { - "name": "Bhujel", - "code": "byh" - }, - { - "name": "Buyu", - "code": "byi" - }, - { - "name": "Bina (Nigeria)", - "code": "byj" - }, - { - "name": "Biao", - "code": "byk" - }, - { - "name": "Bayono", - "code": "byl" - }, - { - "name": "Bidjara", - "code": "bym" - }, - { - "name": "Bilin", - "code": "byn" - }, - { - "name": "Blin", - "code": "byn" - }, - { - "name": "Biyo", - "code": "byo" - }, - { - "name": "Bumaji", - "code": "byp" - }, - { - "name": "Basay", - "code": "byq" - }, - { - "name": "Baruya", - "code": "byr" - }, - { - "name": "Yipma", - "code": "byr" - }, - { - "name": "Burak", - "code": "bys" - }, - { - "name": "Berti", - "code": "byt" - }, - { - "name": "Medumba", - "code": "byv" - }, - { - "name": "Belhariya", - "code": "byw" - }, - { - "name": "Qaqet", - "code": "byx" - }, - { - "name": "Banaro", - "code": "byz" - }, - { - "name": "Bandi", - "code": "bza" - }, - { - "name": "Andio", - "code": "bzb" - }, - { - "name": "Southern Betsimisaraka Malagasy", - "code": "bzc" - }, - { - "name": "Bribri", - "code": "bzd" - }, - { - "name": "Jenaama Bozo", - "code": "bze" - }, - { - "name": "Boikin", - "code": "bzf" - }, - { - "name": "Babuza", - "code": "bzg" - }, - { - "name": "Mapos Buang", - "code": "bzh" - }, - { - "name": "Bisu", - "code": "bzi" - }, - { - "name": "Belize Kriol English", - "code": "bzj" - }, - { - "name": "Nicaragua Creole English", - "code": "bzk" - }, - { - "name": "Boano (Sulawesi)", - "code": "bzl" - }, - { - "name": "Bolondo", - "code": "bzm" - }, - { - "name": "Boano (Maluku)", - "code": "bzn" - }, - { - "name": "Bozaba", - "code": "bzo" - }, - { - "name": "Kemberano", - "code": "bzp" - }, - { - "name": "Buli (Indonesia)", - "code": "bzq" - }, - { - "name": "Biri", - "code": "bzr" - }, - { - "name": "Brazilian Sign Language", - "code": "bzs" - }, - { - "name": "Brithenig", - "code": "bzt" - }, - { - "name": "Burmeso", - "code": "bzu" - }, - { - "name": "Naami", - "code": "bzv" - }, - { - "name": "Basa (Nigeria)", - "code": "bzw" - }, - { - "name": "Kɛlɛngaxo Bozo", - "code": "bzx" - }, - { - "name": "Obanliku", - "code": "bzy" - }, - { - "name": "Evant", - "code": "bzz" - }, - { - "name": "Chortí", - "code": "caa" - }, - { - "name": "Garifuna", - "code": "cab" - }, - { - "name": "Chuj", - "code": "cac" - }, - { - "name": "Caddo", - "code": "cad" - }, - { - "name": "Laalaa", - "code": "cae" - }, - { - "name": "Lehar", - "code": "cae" - }, - { - "name": "Southern Carrier", - "code": "caf" - }, - { - "name": "Nivaclé", - "code": "cag" - }, - { - "name": "Cahuarano", - "code": "cah" - }, - { - "name": "Chané", - "code": "caj" - }, - { - "name": "Cakchiquel", - "code": "cak" - }, - { - "name": "Kaqchikel", - "code": "cak" - }, - { - "name": "Carolinian", - "code": "cal" - }, - { - "name": "Cemuhî", - "code": "cam" - }, - { - "name": "Chambri", - "code": "can" - }, - { - "name": "Chácobo", - "code": "cao" - }, - { - "name": "Chipaya", - "code": "cap" - }, - { - "name": "Car Nicobarese", - "code": "caq" - }, - { - "name": "Galibi Carib", - "code": "car" - }, - { - "name": "Tsimané", - "code": "cas" - }, - { - "name": "Catalan", - "code": "cat" - }, - { - "name": "Valencian", - "code": "cat" - }, - { - "name": "Cavineña", - "code": "cav" - }, - { - "name": "Callawalla", - "code": "caw" - }, - { - "name": "Chiquitano", - "code": "cax" - }, - { - "name": "Cayuga", - "code": "cay" - }, - { - "name": "Canichana", - "code": "caz" - }, - { - "name": "Cabiyarí", - "code": "cbb" - }, - { - "name": "Carapana", - "code": "cbc" - }, - { - "name": "Carijona", - "code": "cbd" - }, - { - "name": "Chimila", - "code": "cbg" - }, - { - "name": "Chachi", - "code": "cbi" - }, - { - "name": "Ede Cabe", - "code": "cbj" - }, - { - "name": "Chavacano", - "code": "cbk" - }, - { - "name": "Bualkhaw Chin", - "code": "cbl" - }, - { - "name": "Nyahkur", - "code": "cbn" - }, - { - "name": "Izora", - "code": "cbo" - }, - { - "name": "Cuba", - "code": "cbq" - }, - { - "name": "Tsucuba", - "code": "cbq" - }, - { - "name": "Cashibo-Cacataibo", - "code": "cbr" - }, - { - "name": "Cashinahua", - "code": "cbs" - }, - { - "name": "Chayahuita", - "code": "cbt" - }, - { - "name": "Candoshi-Shapra", - "code": "cbu" - }, - { - "name": "Cacua", - "code": "cbv" - }, - { - "name": "Kinabalian", - "code": "cbw" - }, - { - "name": "Carabayo", - "code": "cby" - }, - { - "name": "Chamicuro", - "code": "ccc" - }, - { - "name": "Cafundo Creole", - "code": "ccd" - }, - { - "name": "Chopi", - "code": "cce" - }, - { - "name": "Samba Daka", - "code": "ccg" - }, - { - "name": "Atsam", - "code": "cch" - }, - { - "name": "Kasanga", - "code": "ccj" - }, - { - "name": "Cutchi-Swahili", - "code": "ccl" - }, - { - "name": "Malaccan Creole Malay", - "code": "ccm" - }, - { - "name": "Comaltepec Chinantec", - "code": "cco" - }, - { - "name": "Chakma", - "code": "ccp" - }, - { - "name": "Cacaopera", - "code": "ccr" - }, - { - "name": "Choni", - "code": "cda" - }, - { - "name": "Chenchu", - "code": "cde" - }, - { - "name": "Chiru", - "code": "cdf" - }, - { - "name": "Chambeali", - "code": "cdh" - }, - { - "name": "Chodri", - "code": "cdi" - }, - { - "name": "Churahi", - "code": "cdj" - }, - { - "name": "Chepang", - "code": "cdm" - }, - { - "name": "Chaudangsi", - "code": "cdn" - }, - { - "name": "Min Dong Chinese", - "code": "cdo" - }, - { - "name": "Cinda-Regi-Tiyal", - "code": "cdr" - }, - { - "name": "Chadian Sign Language", - "code": "cds" - }, - { - "name": "Chadong", - "code": "cdy" - }, - { - "name": "Koda", - "code": "cdz" - }, - { - "name": "Lower Chehalis", - "code": "cea" - }, - { - "name": "Cebuano", - "code": "ceb" - }, - { - "name": "Chamacoco", - "code": "ceg" - }, - { - "name": "Eastern Khumi Chin", - "code": "cek" - }, - { - "name": "Cen", - "code": "cen" - }, - { - "name": "Czech", - "code": "ces" - }, - { - "name": "Centúúm", - "code": "cet" - }, - { - "name": "Ekai Chin", - "code": "cey" - }, - { - "name": "Dijim-Bwilim", - "code": "cfa" - }, - { - "name": "Cara", - "code": "cfd" - }, - { - "name": "Como Karim", - "code": "cfg" - }, - { - "name": "Falam Chin", - "code": "cfm" - }, - { - "name": "Changriwa", - "code": "cga" - }, - { - "name": "Kagayanen", - "code": "cgc" - }, - { - "name": "Chiga", - "code": "cgg" - }, - { - "name": "Chocangacakha", - "code": "cgk" - }, - { - "name": "Chamorro", - "code": "cha" - }, - { - "name": "Chibcha", - "code": "chb" - }, - { - "name": "Catawba", - "code": "chc" - }, - { - "name": "Highland Oaxaca Chontal", - "code": "chd" - }, - { - "name": "Chechen", - "code": "che" - }, - { - "name": "Tabasco Chontal", - "code": "chf" - }, - { - "name": "Chagatai", - "code": "chg" - }, - { - "name": "Chinook", - "code": "chh" - }, - { - "name": "Ojitlán Chinantec", - "code": "chj" - }, - { - "name": "Chuukese", - "code": "chk" - }, - { - "name": "Cahuilla", - "code": "chl" - }, - { - "name": "Mari (Russia)", - "code": "chm" - }, - { - "name": "Chinook jargon", - "code": "chn" - }, - { - "name": "Choctaw", - "code": "cho" - }, - { - "name": "Chipewyan", - "code": "chp" - }, - { - "name": "Dene Suline", - "code": "chp" - }, - { - "name": "Quiotepec Chinantec", - "code": "chq" - }, - { - "name": "Cherokee", - "code": "chr" - }, - { - "name": "Cholón", - "code": "cht" - }, - { - "name": "Church Slavic", - "code": "chu" - }, - { - "name": "Church Slavonic", - "code": "chu" - }, - { - "name": "Old Bulgarian", - "code": "chu" - }, - { - "name": "Old Church Slavonic", - "code": "chu" - }, - { - "name": "Old Slavonic", - "code": "chu" - }, - { - "name": "Chuvash", - "code": "chv" - }, - { - "name": "Chuwabu", - "code": "chw" - }, - { - "name": "Chantyal", - "code": "chx" - }, - { - "name": "Cheyenne", - "code": "chy" - }, - { - "name": "Ozumacín Chinantec", - "code": "chz" - }, - { - "name": "Cia-Cia", - "code": "cia" - }, - { - "name": "Ci Gbe", - "code": "cib" - }, - { - "name": "Chickasaw", - "code": "cic" - }, - { - "name": "Chimariko", - "code": "cid" - }, - { - "name": "Cineni", - "code": "cie" - }, - { - "name": "Chinali", - "code": "cih" - }, - { - "name": "Chitkuli Kinnauri", - "code": "cik" - }, - { - "name": "Cimbrian", - "code": "cim" - }, - { - "name": "Cinta Larga", - "code": "cin" - }, - { - "name": "Chiapanec", - "code": "cip" - }, - { - "name": "Haméa", - "code": "cir" - }, - { - "name": "Méa", - "code": "cir" - }, - { - "name": "Tiri", - "code": "cir" - }, - { - "name": "Chippewa", - "code": "ciw" - }, - { - "name": "Chaima", - "code": "ciy" - }, - { - "name": "Western Cham", - "code": "cja" - }, - { - "name": "Chru", - "code": "cje" - }, - { - "name": "Upper Chehalis", - "code": "cjh" - }, - { - "name": "Chamalal", - "code": "cji" - }, - { - "name": "Chokwe", - "code": "cjk" - }, - { - "name": "Eastern Cham", - "code": "cjm" - }, - { - "name": "Chenapian", - "code": "cjn" - }, - { - "name": "Ashéninka Pajonal", - "code": "cjo" - }, - { - "name": "Cabécar", - "code": "cjp" - }, - { - "name": "Shor", - "code": "cjs" - }, - { - "name": "Chuave", - "code": "cjv" - }, - { - "name": "Jinyu Chinese", - "code": "cjy" - }, - { - "name": "Central Kurdish", - "code": "ckb" - }, - { - "name": "Chak", - "code": "ckh" - }, - { - "name": "Cibak", - "code": "ckl" - }, - { - "name": "Chakavian", - "code": "ckm" - }, - { - "name": "Kaang Chin", - "code": "ckn" - }, - { - "name": "Anufo", - "code": "cko" - }, - { - "name": "Kajakse", - "code": "ckq" - }, - { - "name": "Kairak", - "code": "ckr" - }, - { - "name": "Tayo", - "code": "cks" - }, - { - "name": "Chukot", - "code": "ckt" - }, - { - "name": "Koasati", - "code": "cku" - }, - { - "name": "Kavalan", - "code": "ckv" - }, - { - "name": "Caka", - "code": "ckx" - }, - { - "name": "Cakfem-Mushere", - "code": "cky" - }, - { - "name": "Cakchiquel-Quiché Mixed Language", - "code": "ckz" - }, - { - "name": "Ron", - "code": "cla" - }, - { - "name": "Chilcotin", - "code": "clc" - }, - { - "name": "Chaldean Neo-Aramaic", - "code": "cld" - }, - { - "name": "Lealao Chinantec", - "code": "cle" - }, - { - "name": "Chilisso", - "code": "clh" - }, - { - "name": "Chakali", - "code": "cli" - }, - { - "name": "Laitu Chin", - "code": "clj" - }, - { - "name": "Idu-Mishmi", - "code": "clk" - }, - { - "name": "Chala", - "code": "cll" - }, - { - "name": "Clallam", - "code": "clm" - }, - { - "name": "Lowland Oaxaca Chontal", - "code": "clo" - }, - { - "name": "Lautu Chin", - "code": "clt" - }, - { - "name": "Caluyanun", - "code": "clu" - }, - { - "name": "Chulym", - "code": "clw" - }, - { - "name": "Eastern Highland Chatino", - "code": "cly" - }, - { - "name": "Maa", - "code": "cma" - }, - { - "name": "Cerma", - "code": "cme" - }, - { - "name": "Classical Mongolian", - "code": "cmg" - }, - { - "name": "Emberá-Chamí", - "code": "cmi" - }, - { - "name": "Campalagian", - "code": "cml" - }, - { - "name": "Michigamea", - "code": "cmm" - }, - { - "name": "Mandarin Chinese", - "code": "cmn" - }, - { - "name": "Central Mnong", - "code": "cmo" - }, - { - "name": "Mro-Khimi Chin", - "code": "cmr" - }, - { - "name": "Messapic", - "code": "cms" - }, - { - "name": "Camtho", - "code": "cmt" - }, - { - "name": "Changthang", - "code": "cna" - }, - { - "name": "Chinbon Chin", - "code": "cnb" - }, - { - "name": "Côông", - "code": "cnc" - }, - { - "name": "Northern Qiang", - "code": "cng" - }, - { - "name": "Haka Chin", - "code": "cnh" - }, - { - "name": "Hakha Chin", - "code": "cnh" - }, - { - "name": "Asháninka", - "code": "cni" - }, - { - "name": "Khumi Chin", - "code": "cnk" - }, - { - "name": "Lalana Chinantec", - "code": "cnl" - }, - { - "name": "Con", - "code": "cno" - }, - { - "name": "Northern Ping Chinese", - "code": "cnp" - }, - { - "name": "Northern Pinghua", - "code": "cnp" - }, - { - "name": "Montenegrin", - "code": "cnr" - }, - { - "name": "Central Asmat", - "code": "cns" - }, - { - "name": "Tepetotutla Chinantec", - "code": "cnt" - }, - { - "name": "Chenoua", - "code": "cnu" - }, - { - "name": "Ngawn Chin", - "code": "cnw" - }, - { - "name": "Middle Cornish", - "code": "cnx" - }, - { - "name": "Cocos Islands Malay", - "code": "coa" - }, - { - "name": "Chicomuceltec", - "code": "cob" - }, - { - "name": "Cocopa", - "code": "coc" - }, - { - "name": "Cocama-Cocamilla", - "code": "cod" - }, - { - "name": "Koreguaje", - "code": "coe" - }, - { - "name": "Colorado", - "code": "cof" - }, - { - "name": "Chong", - "code": "cog" - }, - { - "name": "Chichonyi-Chidzihana-Chikauma", - "code": "coh" - }, - { - "name": "Chonyi-Dzihana-Kauma", - "code": "coh" - }, - { - "name": "Cochimi", - "code": "coj" - }, - { - "name": "Santa Teresa Cora", - "code": "cok" - }, - { - "name": "Columbia-Wenatchi", - "code": "col" - }, - { - "name": "Comanche", - "code": "com" - }, - { - "name": "Cofán", - "code": "con" - }, - { - "name": "Comox", - "code": "coo" - }, - { - "name": "Coptic", - "code": "cop" - }, - { - "name": "Coquille", - "code": "coq" - }, - { - "name": "Cornish", - "code": "cor" - }, - { - "name": "Corsican", - "code": "cos" - }, - { - "name": "Caquinte", - "code": "cot" - }, - { - "name": "Wamey", - "code": "cou" - }, - { - "name": "Cao Miao", - "code": "cov" - }, - { - "name": "Cowlitz", - "code": "cow" - }, - { - "name": "Nanti", - "code": "cox" - }, - { - "name": "Chochotec", - "code": "coz" - }, - { - "name": "Palantla Chinantec", - "code": "cpa" - }, - { - "name": "Ucayali-Yurúa Ashéninka", - "code": "cpb" - }, - { - "name": "Ajyíninka Apurucayali", - "code": "cpc" - }, - { - "name": "Cappadocian Greek", - "code": "cpg" - }, - { - "name": "Chinese Pidgin English", - "code": "cpi" - }, - { - "name": "Cherepon", - "code": "cpn" - }, - { - "name": "Kpeego", - "code": "cpo" - }, - { - "name": "Capiznon", - "code": "cps" - }, - { - "name": "Pichis Ashéninka", - "code": "cpu" - }, - { - "name": "Pu-Xian Chinese", - "code": "cpx" - }, - { - "name": "South Ucayali Ashéninka", - "code": "cpy" - }, - { - "name": "Chuanqiandian Cluster Miao", - "code": "cqd" - }, - { - "name": "Chara", - "code": "cra" - }, - { - "name": "Island Carib", - "code": "crb" - }, - { - "name": "Lonwolwol", - "code": "crc" - }, - { - "name": "Coeur d'Alene", - "code": "crd" - }, - { - "name": "Cree", - "code": "cre" - }, - { - "name": "Caramanta", - "code": "crf" - }, - { - "name": "Michif", - "code": "crg" - }, - { - "name": "Crimean Tatar", - "code": "crh" - }, - { - "name": "Crimean Turkish", - "code": "crh" - }, - { - "name": "Sãotomense", - "code": "cri" - }, - { - "name": "Southern East Cree", - "code": "crj" - }, - { - "name": "Plains Cree", - "code": "crk" - }, - { - "name": "Northern East Cree", - "code": "crl" - }, - { - "name": "Moose Cree", - "code": "crm" - }, - { - "name": "El Nayar Cora", - "code": "crn" - }, - { - "name": "Crow", - "code": "cro" - }, - { - "name": "Iyo'wujwa Chorote", - "code": "crq" - }, - { - "name": "Carolina Algonquian", - "code": "crr" - }, - { - "name": "Seselwa Creole French", - "code": "crs" - }, - { - "name": "Iyojwa'ja Chorote", - "code": "crt" - }, - { - "name": "Chaura", - "code": "crv" - }, - { - "name": "Chrau", - "code": "crw" - }, - { - "name": "Carrier", - "code": "crx" - }, - { - "name": "Cori", - "code": "cry" - }, - { - "name": "Cruzeño", - "code": "crz" - }, - { - "name": "Chiltepec Chinantec", - "code": "csa" - }, - { - "name": "Kashubian", - "code": "csb" - }, - { - "name": "Catalan Sign Language", - "code": "csc" - }, - { - "name": "Lengua de señas catalana", - "code": "csc" - }, - { - "name": "Llengua de Signes Catalana", - "code": "csc" - }, - { - "name": "Chiangmai Sign Language", - "code": "csd" - }, - { - "name": "Czech Sign Language", - "code": "cse" - }, - { - "name": "Cuba Sign Language", - "code": "csf" - }, - { - "name": "Chilean Sign Language", - "code": "csg" - }, - { - "name": "Asho Chin", - "code": "csh" - }, - { - "name": "Coast Miwok", - "code": "csi" - }, - { - "name": "Songlai Chin", - "code": "csj" - }, - { - "name": "Jola-Kasa", - "code": "csk" - }, - { - "name": "Chinese Sign Language", - "code": "csl" - }, - { - "name": "Central Sierra Miwok", - "code": "csm" - }, - { - "name": "Colombian Sign Language", - "code": "csn" - }, - { - "name": "Sochiapam Chinantec", - "code": "cso" - }, - { - "name": "Sochiapan Chinantec", - "code": "cso" - }, - { - "name": "Southern Ping Chinese", - "code": "csp" - }, - { - "name": "Southern Pinghua", - "code": "csp" - }, - { - "name": "Croatia Sign Language", - "code": "csq" - }, - { - "name": "Costa Rican Sign Language", - "code": "csr" - }, - { - "name": "Southern Ohlone", - "code": "css" - }, - { - "name": "Northern Ohlone", - "code": "cst" - }, - { - "name": "Sumtu Chin", - "code": "csv" - }, - { - "name": "Swampy Cree", - "code": "csw" - }, - { - "name": "Cambodian Sign Language", - "code": "csx" - }, - { - "name": "Siyin Chin", - "code": "csy" - }, - { - "name": "Coos", - "code": "csz" - }, - { - "name": "Tataltepec Chatino", - "code": "cta" - }, - { - "name": "Chetco", - "code": "ctc" - }, - { - "name": "Tedim Chin", - "code": "ctd" - }, - { - "name": "Tepinapa Chinantec", - "code": "cte" - }, - { - "name": "Chittagonian", - "code": "ctg" - }, - { - "name": "Thaiphum Chin", - "code": "cth" - }, - { - "name": "Tlacoatzintepec Chinantec", - "code": "ctl" - }, - { - "name": "Chitimacha", - "code": "ctm" - }, - { - "name": "Chhintange", - "code": "ctn" - }, - { - "name": "Emberá-Catío", - "code": "cto" - }, - { - "name": "Western Highland Chatino", - "code": "ctp" - }, - { - "name": "Northern Catanduanes Bikol", - "code": "cts" - }, - { - "name": "Wayanad Chetti", - "code": "ctt" - }, - { - "name": "Chol", - "code": "ctu" - }, - { - "name": "Moundadan Chetty", - "code": "cty" - }, - { - "name": "Zacatepec Chatino", - "code": "ctz" - }, - { - "name": "Cua", - "code": "cua" - }, - { - "name": "Cubeo", - "code": "cub" - }, - { - "name": "Usila Chinantec", - "code": "cuc" - }, - { - "name": "Chungmboko", - "code": "cug" - }, - { - "name": "Cung", - "code": "cug" - }, - { - "name": "Chuka", - "code": "cuh" - }, - { - "name": "Gichuka", - "code": "cuh" - }, - { - "name": "Cuiba", - "code": "cui" - }, - { - "name": "Mashco Piro", - "code": "cuj" - }, - { - "name": "San Blas Kuna", - "code": "cuk" - }, - { - "name": "Culina", - "code": "cul" - }, - { - "name": "Kulina", - "code": "cul" - }, - { - "name": "Cumanagoto", - "code": "cuo" - }, - { - "name": "Cupeño", - "code": "cup" - }, - { - "name": "Cun", - "code": "cuq" - }, - { - "name": "Chhulung", - "code": "cur" - }, - { - "name": "Teutila Cuicatec", - "code": "cut" - }, - { - "name": "Tai Ya", - "code": "cuu" - }, - { - "name": "Cuvok", - "code": "cuv" - }, - { - "name": "Chukwa", - "code": "cuw" - }, - { - "name": "Tepeuxila Cuicatec", - "code": "cux" - }, - { - "name": "Cuitlatec", - "code": "cuy" - }, - { - "name": "Chug", - "code": "cvg" - }, - { - "name": "Valle Nacional Chinantec", - "code": "cvn" - }, - { - "name": "Kabwa", - "code": "cwa" - }, - { - "name": "Maindo", - "code": "cwb" - }, - { - "name": "Woods Cree", - "code": "cwd" - }, - { - "name": "Kwere", - "code": "cwe" - }, - { - "name": "Cheq Wong", - "code": "cwg" - }, - { - "name": "Chewong", - "code": "cwg" - }, - { - "name": "Kuwaataay", - "code": "cwt" - }, - { - "name": "Nopala Chatino", - "code": "cya" - }, - { - "name": "Cayubaba", - "code": "cyb" - }, - { - "name": "Welsh", - "code": "cym" - }, - { - "name": "Cuyonon", - "code": "cyo" - }, - { - "name": "Huizhou Chinese", - "code": "czh" - }, - { - "name": "Knaanic", - "code": "czk" - }, - { - "name": "Zenzontepec Chatino", - "code": "czn" - }, - { - "name": "Min Zhong Chinese", - "code": "czo" - }, - { - "name": "Zotung Chin", - "code": "czt" - }, - { - "name": "Dangaléat", - "code": "daa" - }, - { - "name": "Dambi", - "code": "dac" - }, - { - "name": "Marik", - "code": "dad" - }, - { - "name": "Duupa", - "code": "dae" - }, - { - "name": "Dagbani", - "code": "dag" - }, - { - "name": "Gwahatike", - "code": "dah" - }, - { - "name": "Day", - "code": "dai" - }, - { - "name": "Dar Fur Daju", - "code": "daj" - }, - { - "name": "Dakota", - "code": "dak" - }, - { - "name": "Dahalo", - "code": "dal" - }, - { - "name": "Damakawa", - "code": "dam" - }, - { - "name": "Danish", - "code": "dan" - }, - { - "name": "Daai Chin", - "code": "dao" - }, - { - "name": "Dandami Maria", - "code": "daq" - }, - { - "name": "Dargwa", - "code": "dar" - }, - { - "name": "Daho-Doo", - "code": "das" - }, - { - "name": "Dar Sila Daju", - "code": "dau" - }, - { - "name": "Dawida", - "code": "dav" - }, - { - "name": "Taita", - "code": "dav" - }, - { - "name": "Davawenyo", - "code": "daw" - }, - { - "name": "Dayi", - "code": "dax" - }, - { - "name": "Dao", - "code": "daz" - }, - { - "name": "Bangime", - "code": "dba" - }, - { - "name": "Deno", - "code": "dbb" - }, - { - "name": "Dadiya", - "code": "dbd" - }, - { - "name": "Dabe", - "code": "dbe" - }, - { - "name": "Edopi", - "code": "dbf" - }, - { - "name": "Dogul Dom Dogon", - "code": "dbg" - }, - { - "name": "Doka", - "code": "dbi" - }, - { - "name": "Ida'an", - "code": "dbj" - }, - { - "name": "Dyirbal", - "code": "dbl" - }, - { - "name": "Duguri", - "code": "dbm" - }, - { - "name": "Duriankere", - "code": "dbn" - }, - { - "name": "Dulbu", - "code": "dbo" - }, - { - "name": "Duwai", - "code": "dbp" - }, - { - "name": "Daba", - "code": "dbq" - }, - { - "name": "Dabarre", - "code": "dbr" - }, - { - "name": "Ben Tey Dogon", - "code": "dbt" - }, - { - "name": "Bondum Dom Dogon", - "code": "dbu" - }, - { - "name": "Dungu", - "code": "dbv" - }, - { - "name": "Bankan Tey Dogon", - "code": "dbw" - }, - { - "name": "Dibiyaso", - "code": "dby" - }, - { - "name": "Deccan", - "code": "dcc" - }, - { - "name": "Negerhollands", - "code": "dcr" - }, - { - "name": "Dadi Dadi", - "code": "dda" - }, - { - "name": "Dongotono", - "code": "ddd" - }, - { - "name": "Doondo", - "code": "dde" - }, - { - "name": "Fataluku", - "code": "ddg" - }, - { - "name": "West Goodenough", - "code": "ddi" - }, - { - "name": "Jaru", - "code": "ddj" - }, - { - "name": "Dendi (Benin)", - "code": "ddn" - }, - { - "name": "Dido", - "code": "ddo" - }, - { - "name": "Dhudhuroa", - "code": "ddr" - }, - { - "name": "Donno So Dogon", - "code": "dds" - }, - { - "name": "Dawera-Daweloor", - "code": "ddw" - }, - { - "name": "Dagik", - "code": "dec" - }, - { - "name": "Dedua", - "code": "ded" - }, - { - "name": "Dewoin", - "code": "dee" - }, - { - "name": "Dezfuli", - "code": "def" - }, - { - "name": "Degema", - "code": "deg" - }, - { - "name": "Dehwari", - "code": "deh" - }, - { - "name": "Demisa", - "code": "dei" - }, - { - "name": "Dek", - "code": "dek" - }, - { - "name": "Delaware", - "code": "del" - }, - { - "name": "Dem", - "code": "dem" - }, - { - "name": "Slave (Athapascan)", - "code": "den" - }, - { - "name": "Pidgin Delaware", - "code": "dep" - }, - { - "name": "Dendi (Central African Republic)", - "code": "deq" - }, - { - "name": "Deori", - "code": "der" - }, - { - "name": "Desano", - "code": "des" - }, - { - "name": "German", - "code": "deu" - }, - { - "name": "Domung", - "code": "dev" - }, - { - "name": "Dengese", - "code": "dez" - }, - { - "name": "Southern Dagaare", - "code": "dga" - }, - { - "name": "Bunoge Dogon", - "code": "dgb" - }, - { - "name": "Casiguran Dumagat Agta", - "code": "dgc" - }, - { - "name": "Dagaari Dioula", - "code": "dgd" - }, - { - "name": "Degenan", - "code": "dge" - }, - { - "name": "Doga", - "code": "dgg" - }, - { - "name": "Dghwede", - "code": "dgh" - }, - { - "name": "Northern Dagara", - "code": "dgi" - }, - { - "name": "Dagba", - "code": "dgk" - }, - { - "name": "Andaandi", - "code": "dgl" - }, - { - "name": "Dongolawi", - "code": "dgl" - }, - { - "name": "Dagoman", - "code": "dgn" - }, - { - "name": "Dogri (individual language)", - "code": "dgo" - }, - { - "name": "Dogrib", - "code": "dgr" - }, - { - "name": "Tłı̨chǫ", - "code": "dgr" - }, - { - "name": "Dogoso", - "code": "dgs" - }, - { - "name": "Ndra'ngith", - "code": "dgt" - }, - { - "name": "Daungwurrung", - "code": "dgw" - }, - { - "name": "Doghoro", - "code": "dgx" - }, - { - "name": "Daga", - "code": "dgz" - }, - { - "name": "Dhundari", - "code": "dhd" - }, - { - "name": "Dhangu", - "code": "dhg" - }, - { - "name": "Dhangu-Djangu", - "code": "dhg" - }, - { - "name": "Djangu", - "code": "dhg" - }, - { - "name": "Dhimal", - "code": "dhi" - }, - { - "name": "Dhalandji", - "code": "dhl" - }, - { - "name": "Zemba", - "code": "dhm" - }, - { - "name": "Dhanki", - "code": "dhn" - }, - { - "name": "Dhodia", - "code": "dho" - }, - { - "name": "Dhargari", - "code": "dhr" - }, - { - "name": "Dhaiso", - "code": "dhs" - }, - { - "name": "Dhurga", - "code": "dhu" - }, - { - "name": "Dehu", - "code": "dhv" - }, - { - "name": "Drehu", - "code": "dhv" - }, - { - "name": "Dhanwar (Nepal)", - "code": "dhw" - }, - { - "name": "Dhungaloo", - "code": "dhx" - }, - { - "name": "Dia", - "code": "dia" - }, - { - "name": "South Central Dinka", - "code": "dib" - }, - { - "name": "Lakota Dida", - "code": "dic" - }, - { - "name": "Didinga", - "code": "did" - }, - { - "name": "Dieri", - "code": "dif" - }, - { - "name": "Diyari", - "code": "dif" - }, - { - "name": "Chidigo", - "code": "dig" - }, - { - "name": "Digo", - "code": "dig" - }, - { - "name": "Kumiai", - "code": "dih" - }, - { - "name": "Dimbong", - "code": "dii" - }, - { - "name": "Dai", - "code": "dij" - }, - { - "name": "Southwestern Dinka", - "code": "dik" - }, - { - "name": "Dilling", - "code": "dil" - }, - { - "name": "Dime", - "code": "dim" - }, - { - "name": "Dinka", - "code": "din" - }, - { - "name": "Dibo", - "code": "dio" - }, - { - "name": "Northeastern Dinka", - "code": "dip" - }, - { - "name": "Dimli (individual language)", - "code": "diq" - }, - { - "name": "Dirim", - "code": "dir" - }, - { - "name": "Dimasa", - "code": "dis" - }, - { - "name": "Diriku", - "code": "diu" - }, - { - "name": "Dhivehi", - "code": "div" - }, - { - "name": "Divehi", - "code": "div" - }, - { - "name": "Maldivian", - "code": "div" - }, - { - "name": "Northwestern Dinka", - "code": "diw" - }, - { - "name": "Dixon Reef", - "code": "dix" - }, - { - "name": "Diuwe", - "code": "diy" - }, - { - "name": "Ding", - "code": "diz" - }, - { - "name": "Djadjawurrung", - "code": "dja" - }, - { - "name": "Djinba", - "code": "djb" - }, - { - "name": "Dar Daju Daju", - "code": "djc" - }, - { - "name": "Djamindjung", - "code": "djd" - }, - { - "name": "Ngaliwurru", - "code": "djd" - }, - { - "name": "Zarma", - "code": "dje" - }, - { - "name": "Djangun", - "code": "djf" - }, - { - "name": "Djinang", - "code": "dji" - }, - { - "name": "Djeebbana", - "code": "djj" - }, - { - "name": "Businenge Tongo", - "code": "djk" - }, - { - "name": "Eastern Maroon Creole", - "code": "djk" - }, - { - "name": "Nenge", - "code": "djk" - }, - { - "name": "Jamsay Dogon", - "code": "djm" - }, - { - "name": "Djauan", - "code": "djn" - }, - { - "name": "Jawoyn", - "code": "djn" - }, - { - "name": "Jangkang", - "code": "djo" - }, - { - "name": "Djambarrpuyngu", - "code": "djr" - }, - { - "name": "Kapriman", - "code": "dju" - }, - { - "name": "Djawi", - "code": "djw" - }, - { - "name": "Dakpakha", - "code": "dka" - }, - { - "name": "Kadung", - "code": "dkg" - }, - { - "name": "Dakka", - "code": "dkk" - }, - { - "name": "Kuijau", - "code": "dkr" - }, - { - "name": "Southeastern Dinka", - "code": "dks" - }, - { - "name": "Mazagway", - "code": "dkx" - }, - { - "name": "Dolgan", - "code": "dlg" - }, - { - "name": "Dahalik", - "code": "dlk" - }, - { - "name": "Dalmatian", - "code": "dlm" - }, - { - "name": "Darlong", - "code": "dln" - }, - { - "name": "Duma", - "code": "dma" - }, - { - "name": "Mombo Dogon", - "code": "dmb" - }, - { - "name": "Gavak", - "code": "dmc" - }, - { - "name": "Madhi Madhi", - "code": "dmd" - }, - { - "name": "Dugwor", - "code": "dme" - }, - { - "name": "Medefaidrin", - "code": "dmf" - }, - { - "name": "Upper Kinabatangan", - "code": "dmg" - }, - { - "name": "Domaaki", - "code": "dmk" - }, - { - "name": "Dameli", - "code": "dml" - }, - { - "name": "Dama", - "code": "dmm" - }, - { - "name": "Kemedzung", - "code": "dmo" - }, - { - "name": "East Damar", - "code": "dmr" - }, - { - "name": "Dampelas", - "code": "dms" - }, - { - "name": "Dubu", - "code": "dmu" - }, - { - "name": "Tebi", - "code": "dmu" - }, - { - "name": "Dumpas", - "code": "dmv" - }, - { - "name": "Mudburra", - "code": "dmw" - }, - { - "name": "Dema", - "code": "dmx" - }, - { - "name": "Demta", - "code": "dmy" - }, - { - "name": "Sowari", - "code": "dmy" - }, - { - "name": "Upper Grand Valley Dani", - "code": "dna" - }, - { - "name": "Daonda", - "code": "dnd" - }, - { - "name": "Ndendeule", - "code": "dne" - }, - { - "name": "Dungan", - "code": "dng" - }, - { - "name": "Lower Grand Valley Dani", - "code": "dni" - }, - { - "name": "Dan", - "code": "dnj" - }, - { - "name": "Dengka", - "code": "dnk" - }, - { - "name": "Dzùùngoo", - "code": "dnn" - }, - { - "name": "Ndrulo", - "code": "dno" - }, - { - "name": "Northern Lendu", - "code": "dno" - }, - { - "name": "Danaru", - "code": "dnr" - }, - { - "name": "Mid Grand Valley Dani", - "code": "dnt" - }, - { - "name": "Danau", - "code": "dnu" - }, - { - "name": "Danu", - "code": "dnv" - }, - { - "name": "Western Dani", - "code": "dnw" - }, - { - "name": "Dení", - "code": "dny" - }, - { - "name": "Dom", - "code": "doa" - }, - { - "name": "Dobu", - "code": "dob" - }, - { - "name": "Northern Dong", - "code": "doc" - }, - { - "name": "Doe", - "code": "doe" - }, - { - "name": "Domu", - "code": "dof" - }, - { - "name": "Dong", - "code": "doh" - }, - { - "name": "Dogri (macrolanguage)", - "code": "doi" - }, - { - "name": "Dondo", - "code": "dok" - }, - { - "name": "Doso", - "code": "dol" - }, - { - "name": "Toura (Papua New Guinea)", - "code": "don" - }, - { - "name": "Dongo", - "code": "doo" - }, - { - "name": "Lukpa", - "code": "dop" - }, - { - "name": "Dominican Sign Language", - "code": "doq" - }, - { - "name": "Dori'o", - "code": "dor" - }, - { - "name": "Dogosé", - "code": "dos" - }, - { - "name": "Dass", - "code": "dot" - }, - { - "name": "Dombe", - "code": "dov" - }, - { - "name": "Doyayo", - "code": "dow" - }, - { - "name": "Bussa", - "code": "dox" - }, - { - "name": "Dompo", - "code": "doy" - }, - { - "name": "Dorze", - "code": "doz" - }, - { - "name": "Papar", - "code": "dpp" - }, - { - "name": "Dair", - "code": "drb" - }, - { - "name": "Minderico", - "code": "drc" - }, - { - "name": "Darmiya", - "code": "drd" - }, - { - "name": "Dolpo", - "code": "dre" - }, - { - "name": "Rungus", - "code": "drg" - }, - { - "name": "C'Lela", - "code": "dri" - }, - { - "name": "Paakantyi", - "code": "drl" - }, - { - "name": "West Damar", - "code": "drn" - }, - { - "name": "Daro-Matu Melanau", - "code": "dro" - }, - { - "name": "Dura", - "code": "drq" - }, - { - "name": "Gedeo", - "code": "drs" - }, - { - "name": "Drents", - "code": "drt" - }, - { - "name": "Rukai", - "code": "dru" - }, - { - "name": "Darai", - "code": "dry" - }, - { - "name": "Lower Sorbian", - "code": "dsb" - }, - { - "name": "Dutch Sign Language", - "code": "dse" - }, - { - "name": "Daasanach", - "code": "dsh" - }, - { - "name": "Disa", - "code": "dsi" - }, - { - "name": "Danish Sign Language", - "code": "dsl" - }, - { - "name": "Dusner", - "code": "dsn" - }, - { - "name": "Desiya", - "code": "dso" - }, - { - "name": "Tadaksahak", - "code": "dsq" - }, - { - "name": "Daur", - "code": "dta" - }, - { - "name": "Labuk-Kinabatangan Kadazan", - "code": "dtb" - }, - { - "name": "Ditidaht", - "code": "dtd" - }, - { - "name": "Adithinngithigh", - "code": "dth" - }, - { - "name": "Ana Tinga Dogon", - "code": "dti" - }, - { - "name": "Tene Kan Dogon", - "code": "dtk" - }, - { - "name": "Tomo Kan Dogon", - "code": "dtm" - }, - { - "name": "Daatsʼíin", - "code": "dtn" - }, - { - "name": "Tommo So Dogon", - "code": "dto" - }, - { - "name": "Central Dusun", - "code": "dtp" - }, - { - "name": "Kadazan Dusun", - "code": "dtp" - }, - { - "name": "Lotud", - "code": "dtr" - }, - { - "name": "Toro So Dogon", - "code": "dts" - }, - { - "name": "Toro Tegu Dogon", - "code": "dtt" - }, - { - "name": "Tebul Ure Dogon", - "code": "dtu" - }, - { - "name": "Dotyali", - "code": "dty" - }, - { - "name": "Duala", - "code": "dua" - }, - { - "name": "Dubli", - "code": "dub" - }, - { - "name": "Duna", - "code": "duc" - }, - { - "name": "Umiray Dumaget Agta", - "code": "due" - }, - { - "name": "Drubea", - "code": "duf" - }, - { - "name": "Dumbea", - "code": "duf" - }, - { - "name": "Chiduruma", - "code": "dug" - }, - { - "name": "Duruma", - "code": "dug" - }, - { - "name": "Dungra Bhil", - "code": "duh" - }, - { - "name": "Dumun", - "code": "dui" - }, - { - "name": "Uyajitaya", - "code": "duk" - }, - { - "name": "Alabat Island Agta", - "code": "dul" - }, - { - "name": "Middle Dutch (ca. 1050-1350)", - "code": "dum" - }, - { - "name": "Dusun Deyah", - "code": "dun" - }, - { - "name": "Dupaninan Agta", - "code": "duo" - }, - { - "name": "Duano", - "code": "dup" - }, - { - "name": "Dusun Malang", - "code": "duq" - }, - { - "name": "Dii", - "code": "dur" - }, - { - "name": "Dumi", - "code": "dus" - }, - { - "name": "Drung", - "code": "duu" - }, - { - "name": "Duvle", - "code": "duv" - }, - { - "name": "Dusun Witu", - "code": "duw" - }, - { - "name": "Duungooma", - "code": "dux" - }, - { - "name": "Dicamay Agta", - "code": "duy" - }, - { - "name": "Duli-Gey", - "code": "duz" - }, - { - "name": "Duau", - "code": "dva" - }, - { - "name": "Diri", - "code": "dwa" - }, - { - "name": "Dawik Kui", - "code": "dwk" - }, - { - "name": "Dawro", - "code": "dwr" - }, - { - "name": "Dutton World Speedwords", - "code": "dws" - }, - { - "name": "Dhuwal", - "code": "dwu" - }, - { - "name": "Dawawa", - "code": "dww" - }, - { - "name": "Dhuwaya", - "code": "dwy" - }, - { - "name": "Dewas Rai", - "code": "dwz" - }, - { - "name": "Dyan", - "code": "dya" - }, - { - "name": "Dyaberdyaber", - "code": "dyb" - }, - { - "name": "Dyugun", - "code": "dyd" - }, - { - "name": "Villa Viciosa Agta", - "code": "dyg" - }, - { - "name": "Djimini Senoufo", - "code": "dyi" - }, - { - "name": "Yanda Dom Dogon", - "code": "dym" - }, - { - "name": "Dhanggatti", - "code": "dyn" - }, - { - "name": "Dyangadi", - "code": "dyn" - }, - { - "name": "Jola-Fonyi", - "code": "dyo" - }, - { - "name": "Dyula", - "code": "dyu" - }, - { - "name": "Djabugay", - "code": "dyy" - }, - { - "name": "Dyaabugay", - "code": "dyy" - }, - { - "name": "Tunzu", - "code": "dza" - }, - { - "name": "Djiwarli", - "code": "dze" - }, - { - "name": "Dazaga", - "code": "dzg" - }, - { - "name": "Dzalakha", - "code": "dzl" - }, - { - "name": "Dzando", - "code": "dzn" - }, - { - "name": "Dzongkha", - "code": "dzo" - }, - { - "name": "Karenggapa", - "code": "eaa" - }, - { - "name": "Beginci", - "code": "ebc" - }, - { - "name": "Ebughu", - "code": "ebg" - }, - { - "name": "Eastern Bontok", - "code": "ebk" - }, - { - "name": "Teke-Ebo", - "code": "ebo" - }, - { - "name": "Ebrié", - "code": "ebr" - }, - { - "name": "Embu", - "code": "ebu" - }, - { - "name": "Kiembu", - "code": "ebu" - }, - { - "name": "Eteocretan", - "code": "ecr" - }, - { - "name": "Ecuadorian Sign Language", - "code": "ecs" - }, - { - "name": "Eteocypriot", - "code": "ecy" - }, - { - "name": "E", - "code": "eee" - }, - { - "name": "Efai", - "code": "efa" - }, - { - "name": "Efe", - "code": "efe" - }, - { - "name": "Efik", - "code": "efi" - }, - { - "name": "Ega", - "code": "ega" - }, - { - "name": "Emilian", - "code": "egl" - }, - { - "name": "Eggon", - "code": "ego" - }, - { - "name": "Egyptian (Ancient)", - "code": "egy" - }, - { - "name": "Miyakubo Sign Language", - "code": "ehs" - }, - { - "name": "Ehueun", - "code": "ehu" - }, - { - "name": "Eipomek", - "code": "eip" - }, - { - "name": "Eitiep", - "code": "eit" - }, - { - "name": "Askopan", - "code": "eiv" - }, - { - "name": "Ejamat", - "code": "eja" - }, - { - "name": "Ekajuk", - "code": "eka" - }, - { - "name": "Ekit", - "code": "eke" - }, - { - "name": "Ekari", - "code": "ekg" - }, - { - "name": "Eki", - "code": "eki" - }, - { - "name": "Standard Estonian", - "code": "ekk" - }, - { - "name": "Kol", - "code": "ekl" - }, - { - "name": "Kol (Bangladesh)", - "code": "ekl" - }, - { - "name": "Elip", - "code": "ekm" - }, - { - "name": "Koti", - "code": "eko" - }, - { - "name": "Ekpeye", - "code": "ekp" - }, - { - "name": "Yace", - "code": "ekr" - }, - { - "name": "Eastern Kayah", - "code": "eky" - }, - { - "name": "Elepi", - "code": "ele" - }, - { - "name": "El Hugeirat", - "code": "elh" - }, - { - "name": "Nding", - "code": "eli" - }, - { - "name": "Elkei", - "code": "elk" - }, - { - "name": "Greek", - "code": "ell" - }, - { - "name": "Modern Greek (1453-)", - "code": "ell" - }, - { - "name": "Eleme", - "code": "elm" - }, - { - "name": "El Molo", - "code": "elo" - }, - { - "name": "Elu", - "code": "elu" - }, - { - "name": "Elamite", - "code": "elx" - }, - { - "name": "Emai-Iuleha-Ora", - "code": "ema" - }, - { - "name": "Embaloh", - "code": "emb" - }, - { - "name": "Emerillon", - "code": "eme" - }, - { - "name": "Eastern Meohang", - "code": "emg" - }, - { - "name": "Mussau-Emira", - "code": "emi" - }, - { - "name": "Eastern Maninkakan", - "code": "emk" - }, - { - "name": "Mamulique", - "code": "emm" - }, - { - "name": "Eman", - "code": "emn" - }, - { - "name": "Northern Emberá", - "code": "emp" - }, - { - "name": "Eastern Minyag", - "code": "emq" - }, - { - "name": "Pacific Gulf Yupik", - "code": "ems" - }, - { - "name": "Eastern Muria", - "code": "emu" - }, - { - "name": "Emplawas", - "code": "emw" - }, - { - "name": "Erromintxela", - "code": "emx" - }, - { - "name": "Epigraphic Mayan", - "code": "emy" - }, - { - "name": "Mbessa", - "code": "emz" - }, - { - "name": "Apali", - "code": "ena" - }, - { - "name": "Markweeta", - "code": "enb" - }, - { - "name": "En", - "code": "enc" - }, - { - "name": "Ende", - "code": "end" - }, - { - "name": "Forest Enets", - "code": "enf" - }, - { - "name": "English", - "code": "eng" - }, - { - "name": "Tundra Enets", - "code": "enh" - }, - { - "name": "Enlhet", - "code": "enl" - }, - { - "name": "Middle English (1100-1500)", - "code": "enm" - }, - { - "name": "Engenni", - "code": "enn" - }, - { - "name": "Enggano", - "code": "eno" - }, - { - "name": "Enga", - "code": "enq" - }, - { - "name": "Emem", - "code": "enr" - }, - { - "name": "Emumu", - "code": "enr" - }, - { - "name": "Enu", - "code": "enu" - }, - { - "name": "Enwan (Edu State)", - "code": "env" - }, - { - "name": "Enwan (Akwa Ibom State)", - "code": "enw" - }, - { - "name": "Enxet", - "code": "enx" - }, - { - "name": "Beti (Côte d'Ivoire)", - "code": "eot" - }, - { - "name": "Epie", - "code": "epi" - }, - { - "name": "Esperanto", - "code": "epo" - }, - { - "name": "Eravallan", - "code": "era" - }, - { - "name": "Sie", - "code": "erg" - }, - { - "name": "Eruwa", - "code": "erh" - }, - { - "name": "Ogea", - "code": "eri" - }, - { - "name": "South Efate", - "code": "erk" - }, - { - "name": "Horpa", - "code": "ero" - }, - { - "name": "Erre", - "code": "err" - }, - { - "name": "Ersu", - "code": "ers" - }, - { - "name": "Eritai", - "code": "ert" - }, - { - "name": "Erokwanas", - "code": "erw" - }, - { - "name": "Ese Ejja", - "code": "ese" - }, - { - "name": "Aheri Gondi", - "code": "esg" - }, - { - "name": "Eshtehardi", - "code": "esh" - }, - { - "name": "North Alaskan Inupiatun", - "code": "esi" - }, - { - "name": "Northwest Alaska Inupiatun", - "code": "esk" - }, - { - "name": "Egypt Sign Language", - "code": "esl" - }, - { - "name": "Esuma", - "code": "esm" - }, - { - "name": "Salvadoran Sign Language", - "code": "esn" - }, - { - "name": "Estonian Sign Language", - "code": "eso" - }, - { - "name": "Esselen", - "code": "esq" - }, - { - "name": "Central Siberian Yupik", - "code": "ess" - }, - { - "name": "Estonian", - "code": "est" - }, - { - "name": "Central Yupik", - "code": "esu" - }, - { - "name": "Eskayan", - "code": "esy" - }, - { - "name": "Etebi", - "code": "etb" - }, - { - "name": "Etchemin", - "code": "etc" - }, - { - "name": "Ethiopian Sign Language", - "code": "eth" - }, - { - "name": "Eton (Vanuatu)", - "code": "etn" - }, - { - "name": "Eton (Cameroon)", - "code": "eto" - }, - { - "name": "Edolo", - "code": "etr" - }, - { - "name": "Yekhee", - "code": "ets" - }, - { - "name": "Etruscan", - "code": "ett" - }, - { - "name": "Ejagham", - "code": "etu" - }, - { - "name": "Eten", - "code": "etx" - }, - { - "name": "Semimi", - "code": "etz" - }, - { - "name": "Basque", - "code": "eus" - }, - { - "name": "Even", - "code": "eve" - }, - { - "name": "Uvbie", - "code": "evh" - }, - { - "name": "Evenki", - "code": "evn" - }, - { - "name": "Ewe", - "code": "ewe" - }, - { - "name": "Ewondo", - "code": "ewo" - }, - { - "name": "Extremaduran", - "code": "ext" - }, - { - "name": "Eyak", - "code": "eya" - }, - { - "name": "Keiyo", - "code": "eyo" - }, - { - "name": "Ezaa", - "code": "eza" - }, - { - "name": "Uzekwe", - "code": "eze" - }, - { - "name": "Fasu", - "code": "faa" - }, - { - "name": "Fa d'Ambu", - "code": "fab" - }, - { - "name": "Wagi", - "code": "fad" - }, - { - "name": "Fagani", - "code": "faf" - }, - { - "name": "Finongan", - "code": "fag" - }, - { - "name": "Baissa Fali", - "code": "fah" - }, - { - "name": "Faiwol", - "code": "fai" - }, - { - "name": "Faita", - "code": "faj" - }, - { - "name": "Fang (Cameroon)", - "code": "fak" - }, - { - "name": "South Fali", - "code": "fal" - }, - { - "name": "Fam", - "code": "fam" - }, - { - "name": "Fang (Equatorial Guinea)", - "code": "fan" - }, - { - "name": "Faroese", - "code": "fao" - }, - { - "name": "Paloor", - "code": "fap" - }, - { - "name": "Fataleka", - "code": "far" - }, - { - "name": "Persian", - "code": "fas" - }, - { - "name": "Fanti", - "code": "fat" - }, - { - "name": "Fayu", - "code": "fau" - }, - { - "name": "Fala", - "code": "fax" - }, - { - "name": "Southwestern Fars", - "code": "fay" - }, - { - "name": "Northwestern Fars", - "code": "faz" - }, - { - "name": "West Albay Bikol", - "code": "fbl" - }, - { - "name": "Quebec Sign Language", - "code": "fcs" - }, - { - "name": "Feroge", - "code": "fer" - }, - { - "name": "Foia Foia", - "code": "ffi" - }, - { - "name": "Maasina Fulfulde", - "code": "ffm" - }, - { - "name": "Fongoro", - "code": "fgr" - }, - { - "name": "Nobiin", - "code": "fia" - }, - { - "name": "Fyer", - "code": "fie" - }, - { - "name": "Faifi", - "code": "fif" - }, - { - "name": "Fijian", - "code": "fij" - }, - { - "name": "Filipino", - "code": "fil" - }, - { - "name": "Pilipino", - "code": "fil" - }, - { - "name": "Finnish", - "code": "fin" - }, - { - "name": "Fipa", - "code": "fip" - }, - { - "name": "Firan", - "code": "fir" - }, - { - "name": "Tornedalen Finnish", - "code": "fit" - }, - { - "name": "Fiwaga", - "code": "fiw" - }, - { - "name": "Kirya-Konzəl", - "code": "fkk" - }, - { - "name": "Kven Finnish", - "code": "fkv" - }, - { - "name": "Kalispel-Pend d'Oreille", - "code": "fla" - }, - { - "name": "Foau", - "code": "flh" - }, - { - "name": "Fali", - "code": "fli" - }, - { - "name": "North Fali", - "code": "fll" - }, - { - "name": "Flinders Island", - "code": "fln" - }, - { - "name": "Fuliiru", - "code": "flr" - }, - { - "name": "Flaaitaal", - "code": "fly" - }, - { - "name": "Tsotsitaal", - "code": "fly" - }, - { - "name": "Fe'fe'", - "code": "fmp" - }, - { - "name": "Far Western Muria", - "code": "fmu" - }, - { - "name": "Fanbak", - "code": "fnb" - }, - { - "name": "Fanagalo", - "code": "fng" - }, - { - "name": "Fania", - "code": "fni" - }, - { - "name": "Foodo", - "code": "fod" - }, - { - "name": "Foi", - "code": "foi" - }, - { - "name": "Foma", - "code": "fom" - }, - { - "name": "Fon", - "code": "fon" - }, - { - "name": "Fore", - "code": "for" - }, - { - "name": "Siraya", - "code": "fos" - }, - { - "name": "Fernando Po Creole English", - "code": "fpe" - }, - { - "name": "Fas", - "code": "fqs" - }, - { - "name": "French", - "code": "fra" - }, - { - "name": "Cajun French", - "code": "frc" - }, - { - "name": "Fordata", - "code": "frd" - }, - { - "name": "Frankish", - "code": "frk" - }, - { - "name": "Middle French (ca. 1400-1600)", - "code": "frm" - }, - { - "name": "Old French (842-ca. 1400)", - "code": "fro" - }, - { - "name": "Arpitan", - "code": "frp" - }, - { - "name": "Francoprovençal", - "code": "frp" - }, - { - "name": "Forak", - "code": "frq" - }, - { - "name": "Northern Frisian", - "code": "frr" - }, - { - "name": "Eastern Frisian", - "code": "frs" - }, - { - "name": "Fortsenal", - "code": "frt" - }, - { - "name": "Western Frisian", - "code": "fry" - }, - { - "name": "Finnish Sign Language", - "code": "fse" - }, - { - "name": "French Sign Language", - "code": "fsl" - }, - { - "name": "finlandssvenskt teckenspråk", - "code": "fss" - }, - { - "name": "Finland-Swedish Sign Language", - "code": "fss" - }, - { - "name": "suomenruotsalainen viittomakieli", - "code": "fss" - }, - { - "name": "Adamawa Fulfulde", - "code": "fub" - }, - { - "name": "Pulaar", - "code": "fuc" - }, - { - "name": "East Futuna", - "code": "fud" - }, - { - "name": "Borgu Fulfulde", - "code": "fue" - }, - { - "name": "Pular", - "code": "fuf" - }, - { - "name": "Western Niger Fulfulde", - "code": "fuh" - }, - { - "name": "Bagirmi Fulfulde", - "code": "fui" - }, - { - "name": "Ko", - "code": "fuj" - }, - { - "name": "Fulah", - "code": "ful" - }, - { - "name": "Fum", - "code": "fum" - }, - { - "name": "Fulniô", - "code": "fun" - }, - { - "name": "Central-Eastern Niger Fulfulde", - "code": "fuq" - }, - { - "name": "Friulian", - "code": "fur" - }, - { - "name": "Futuna-Aniwa", - "code": "fut" - }, - { - "name": "Furu", - "code": "fuu" - }, - { - "name": "Nigerian Fulfulde", - "code": "fuv" - }, - { - "name": "Fuyug", - "code": "fuy" - }, - { - "name": "Fur", - "code": "fvr" - }, - { - "name": "Fwâi", - "code": "fwa" - }, - { - "name": "Fwe", - "code": "fwe" - }, - { - "name": "Ga", - "code": "gaa" - }, - { - "name": "Gabri", - "code": "gab" - }, - { - "name": "Mixed Great Andamanese", - "code": "gac" - }, - { - "name": "Gaddang", - "code": "gad" - }, - { - "name": "Guarequena", - "code": "gae" - }, - { - "name": "Gende", - "code": "gaf" - }, - { - "name": "Gagauz", - "code": "gag" - }, - { - "name": "Alekano", - "code": "gah" - }, - { - "name": "Borei", - "code": "gai" - }, - { - "name": "Gadsup", - "code": "gaj" - }, - { - "name": "Gamkonora", - "code": "gak" - }, - { - "name": "Galolen", - "code": "gal" - }, - { - "name": "Kandawo", - "code": "gam" - }, - { - "name": "Gan Chinese", - "code": "gan" - }, - { - "name": "Gants", - "code": "gao" - }, - { - "name": "Gal", - "code": "gap" - }, - { - "name": "Gata'", - "code": "gaq" - }, - { - "name": "Galeya", - "code": "gar" - }, - { - "name": "Adiwasi Garasia", - "code": "gas" - }, - { - "name": "Kenati", - "code": "gat" - }, - { - "name": "Mudhili Gadaba", - "code": "gau" - }, - { - "name": "Nobonob", - "code": "gaw" - }, - { - "name": "Borana-Arsi-Guji Oromo", - "code": "gax" - }, - { - "name": "Gayo", - "code": "gay" - }, - { - "name": "West Central Oromo", - "code": "gaz" - }, - { - "name": "Gbaya (Central African Republic)", - "code": "gba" - }, - { - "name": "Kaytetye", - "code": "gbb" - }, - { - "name": "Karajarri", - "code": "gbd" - }, - { - "name": "Niksek", - "code": "gbe" - }, - { - "name": "Gaikundi", - "code": "gbf" - }, - { - "name": "Gbanziri", - "code": "gbg" - }, - { - "name": "Defi Gbe", - "code": "gbh" - }, - { - "name": "Galela", - "code": "gbi" - }, - { - "name": "Bodo Gadaba", - "code": "gbj" - }, - { - "name": "Gaddi", - "code": "gbk" - }, - { - "name": "Gamit", - "code": "gbl" - }, - { - "name": "Garhwali", - "code": "gbm" - }, - { - "name": "Mo'da", - "code": "gbn" - }, - { - "name": "Northern Grebo", - "code": "gbo" - }, - { - "name": "Gbaya-Bossangoa", - "code": "gbp" - }, - { - "name": "Gbaya-Bozoum", - "code": "gbq" - }, - { - "name": "Gbagyi", - "code": "gbr" - }, - { - "name": "Gbesi Gbe", - "code": "gbs" - }, - { - "name": "Gagadu", - "code": "gbu" - }, - { - "name": "Gbanu", - "code": "gbv" - }, - { - "name": "Gabi-Gabi", - "code": "gbw" - }, - { - "name": "Eastern Xwla Gbe", - "code": "gbx" - }, - { - "name": "Gbari", - "code": "gby" - }, - { - "name": "Zoroastrian Dari", - "code": "gbz" - }, - { - "name": "Mali", - "code": "gcc" - }, - { - "name": "Ganggalida", - "code": "gcd" - }, - { - "name": "Galice", - "code": "gce" - }, - { - "name": "Guadeloupean Creole French", - "code": "gcf" - }, - { - "name": "Grenadian Creole English", - "code": "gcl" - }, - { - "name": "Gaina", - "code": "gcn" - }, - { - "name": "Guianese Creole French", - "code": "gcr" - }, - { - "name": "Colonia Tovar German", - "code": "gct" - }, - { - "name": "Gade Lohar", - "code": "gda" - }, - { - "name": "Pottangi Ollar Gadaba", - "code": "gdb" - }, - { - "name": "Gugu Badhun", - "code": "gdc" - }, - { - "name": "Gedaged", - "code": "gdd" - }, - { - "name": "Gude", - "code": "gde" - }, - { - "name": "Guduf-Gava", - "code": "gdf" - }, - { - "name": "Ga'dang", - "code": "gdg" - }, - { - "name": "Gadjerawang", - "code": "gdh" - }, - { - "name": "Gajirrabeng", - "code": "gdh" - }, - { - "name": "Gundi", - "code": "gdi" - }, - { - "name": "Gurdjar", - "code": "gdj" - }, - { - "name": "Gadang", - "code": "gdk" - }, - { - "name": "Dirasha", - "code": "gdl" - }, - { - "name": "Laal", - "code": "gdm" - }, - { - "name": "Umanakaina", - "code": "gdn" - }, - { - "name": "Ghodoberi", - "code": "gdo" - }, - { - "name": "Mehri", - "code": "gdq" - }, - { - "name": "Wipi", - "code": "gdr" - }, - { - "name": "Ghandruk Sign Language", - "code": "gds" - }, - { - "name": "Kungardutyi", - "code": "gdt" - }, - { - "name": "Gudu", - "code": "gdu" - }, - { - "name": "Godwari", - "code": "gdx" - }, - { - "name": "Geruma", - "code": "gea" - }, - { - "name": "Kire", - "code": "geb" - }, - { - "name": "Gboloo Grebo", - "code": "gec" - }, - { - "name": "Gade", - "code": "ged" - }, - { - "name": "Gerai", - "code": "gef" - }, - { - "name": "Gengle", - "code": "geg" - }, - { - "name": "Hutterisch", - "code": "geh" - }, - { - "name": "Hutterite German", - "code": "geh" - }, - { - "name": "Gebe", - "code": "gei" - }, - { - "name": "Gen", - "code": "gej" - }, - { - "name": "Ywom", - "code": "gek" - }, - { - "name": "ut-Ma'in", - "code": "gel" - }, - { - "name": "Geme", - "code": "geq" - }, - { - "name": "Geser-Gorom", - "code": "ges" - }, - { - "name": "Eviya", - "code": "gev" - }, - { - "name": "Gera", - "code": "gew" - }, - { - "name": "Garre", - "code": "gex" - }, - { - "name": "Enya", - "code": "gey" - }, - { - "name": "Geez", - "code": "gez" - }, - { - "name": "Patpatar", - "code": "gfk" - }, - { - "name": "Gafat", - "code": "gft" - }, - { - "name": "Gao", - "code": "gga" - }, - { - "name": "Gbii", - "code": "ggb" - }, - { - "name": "Gugadj", - "code": "ggd" - }, - { - "name": "Gurr-goni", - "code": "gge" - }, - { - "name": "Gurgula", - "code": "ggg" - }, - { - "name": "Kungarakany", - "code": "ggk" - }, - { - "name": "Ganglau", - "code": "ggl" - }, - { - "name": "Gitua", - "code": "ggt" - }, - { - "name": "Gagu", - "code": "ggu" - }, - { - "name": "Gban", - "code": "ggu" - }, - { - "name": "Gogodala", - "code": "ggw" - }, - { - "name": "Ghadamès", - "code": "gha" - }, - { - "name": "Hiberno-Scottish Gaelic", - "code": "ghc" - }, - { - "name": "Southern Ghale", - "code": "ghe" - }, - { - "name": "Northern Ghale", - "code": "ghh" - }, - { - "name": "Geko Karen", - "code": "ghk" - }, - { - "name": "Ghulfan", - "code": "ghl" - }, - { - "name": "Ghanongga", - "code": "ghn" - }, - { - "name": "Ghomara", - "code": "gho" - }, - { - "name": "Ghera", - "code": "ghr" - }, - { - "name": "Guhu-Samane", - "code": "ghs" - }, - { - "name": "Kuke", - "code": "ght" - }, - { - "name": "Kutang Ghale", - "code": "ght" - }, - { - "name": "Kija", - "code": "gia" - }, - { - "name": "Gibanawa", - "code": "gib" - }, - { - "name": "Gail", - "code": "gic" - }, - { - "name": "Gidar", - "code": "gid" - }, - { - "name": "Gaɓogbo", - "code": "gie" - }, - { - "name": "Guébie", - "code": "gie" - }, - { - "name": "Goaria", - "code": "gig" - }, - { - "name": "Githabul", - "code": "gih" - }, - { - "name": "Girirra", - "code": "gii" - }, - { - "name": "Gilbertese", - "code": "gil" - }, - { - "name": "Gimi (Eastern Highlands)", - "code": "gim" - }, - { - "name": "Hinukh", - "code": "gin" - }, - { - "name": "Gimi (West New Britain)", - "code": "gip" - }, - { - "name": "Green Gelao", - "code": "giq" - }, - { - "name": "Red Gelao", - "code": "gir" - }, - { - "name": "North Giziga", - "code": "gis" - }, - { - "name": "Gitxsan", - "code": "git" - }, - { - "name": "Mulao", - "code": "giu" - }, - { - "name": "White Gelao", - "code": "giw" - }, - { - "name": "Gilima", - "code": "gix" - }, - { - "name": "Giyug", - "code": "giy" - }, - { - "name": "South Giziga", - "code": "giz" - }, - { - "name": "Kachi Koli", - "code": "gjk" - }, - { - "name": "Gunditjmara", - "code": "gjm" - }, - { - "name": "Gonja", - "code": "gjn" - }, - { - "name": "Gurindji Kriol", - "code": "gjr" - }, - { - "name": "Gujari", - "code": "gju" - }, - { - "name": "Guya", - "code": "gka" - }, - { - "name": "Magɨ (Madang Province)", - "code": "gkd" - }, - { - "name": "Ndai", - "code": "gke" - }, - { - "name": "Gokana", - "code": "gkn" - }, - { - "name": "Kok-Nar", - "code": "gko" - }, - { - "name": "Guinea Kpelle", - "code": "gkp" - }, - { - "name": "ǂUngkue", - "code": "gku" - }, - { - "name": "Gaelic", - "code": "gla" - }, - { - "name": "Scottish Gaelic", - "code": "gla" - }, - { - "name": "Belning", - "code": "glb" - }, - { - "name": "Bon Gula", - "code": "glc" - }, - { - "name": "Nanai", - "code": "gld" - }, - { - "name": "Irish", - "code": "gle" - }, - { - "name": "Galician", - "code": "glg" - }, - { - "name": "Northwest Pashai", - "code": "glh" - }, - { - "name": "Northwest Pashayi", - "code": "glh" - }, - { - "name": "Gula Iro", - "code": "glj" - }, - { - "name": "Gilaki", - "code": "glk" - }, - { - "name": "Garlali", - "code": "gll" - }, - { - "name": "Galambu", - "code": "glo" - }, - { - "name": "Glaro-Twabo", - "code": "glr" - }, - { - "name": "Gula (Chad)", - "code": "glu" - }, - { - "name": "Manx", - "code": "glv" - }, - { - "name": "Glavda", - "code": "glw" - }, - { - "name": "Gule", - "code": "gly" - }, - { - "name": "Gambera", - "code": "gma" - }, - { - "name": "Gula'alaa", - "code": "gmb" - }, - { - "name": "Mághdì", - "code": "gmd" - }, - { - "name": "Magɨyi", - "code": "gmg" - }, - { - "name": "Middle High German (ca. 1050-1500)", - "code": "gmh" - }, - { - "name": "Middle Low German", - "code": "gml" - }, - { - "name": "Gbaya-Mbodomo", - "code": "gmm" - }, - { - "name": "Gimnime", - "code": "gmn" - }, - { - "name": "Mirning", - "code": "gmr" - }, - { - "name": "Mirniny", - "code": "gmr" - }, - { - "name": "Gumalu", - "code": "gmu" - }, - { - "name": "Gamo", - "code": "gmv" - }, - { - "name": "Magoma", - "code": "gmx" - }, - { - "name": "Mycenaean Greek", - "code": "gmy" - }, - { - "name": "Mgbolizhia", - "code": "gmz" - }, - { - "name": "Kaansa", - "code": "gna" - }, - { - "name": "Gangte", - "code": "gnb" - }, - { - "name": "Guanche", - "code": "gnc" - }, - { - "name": "Zulgo-Gemzek", - "code": "gnd" - }, - { - "name": "Ganang", - "code": "gne" - }, - { - "name": "Ngangam", - "code": "gng" - }, - { - "name": "Lere", - "code": "gnh" - }, - { - "name": "Gooniyandi", - "code": "gni" - }, - { - "name": "Ngen", - "code": "gnj" - }, - { - "name": "ǁGana", - "code": "gnk" - }, - { - "name": "Gangulu", - "code": "gnl" - }, - { - "name": "Ginuman", - "code": "gnm" - }, - { - "name": "Gumatj", - "code": "gnn" - }, - { - "name": "Northern Gondi", - "code": "gno" - }, - { - "name": "Gana", - "code": "gnq" - }, - { - "name": "Gureng Gureng", - "code": "gnr" - }, - { - "name": "Guntai", - "code": "gnt" - }, - { - "name": "Gnau", - "code": "gnu" - }, - { - "name": "Western Bolivian Guaraní", - "code": "gnw" - }, - { - "name": "Ganzi", - "code": "gnz" - }, - { - "name": "Guro", - "code": "goa" - }, - { - "name": "Playero", - "code": "gob" - }, - { - "name": "Gorakor", - "code": "goc" - }, - { - "name": "Godié", - "code": "god" - }, - { - "name": "Gongduk", - "code": "goe" - }, - { - "name": "Gofa", - "code": "gof" - }, - { - "name": "Gogo", - "code": "gog" - }, - { - "name": "Old High German (ca. 750-1050)", - "code": "goh" - }, - { - "name": "Gobasi", - "code": "goi" - }, - { - "name": "Gowlan", - "code": "goj" - }, - { - "name": "Gowli", - "code": "gok" - }, - { - "name": "Gola", - "code": "gol" - }, - { - "name": "Goan Konkani", - "code": "gom" - }, - { - "name": "Gondi", - "code": "gon" - }, - { - "name": "Gone Dau", - "code": "goo" - }, - { - "name": "Yeretuar", - "code": "gop" - }, - { - "name": "Gorap", - "code": "goq" - }, - { - "name": "Gorontalo", - "code": "gor" - }, - { - "name": "Gronings", - "code": "gos" - }, - { - "name": "Gothic", - "code": "got" - }, - { - "name": "Gavar", - "code": "gou" - }, - { - "name": "Gorowa", - "code": "gow" - }, - { - "name": "Gobu", - "code": "gox" - }, - { - "name": "Goundo", - "code": "goy" - }, - { - "name": "Gozarkhani", - "code": "goz" - }, - { - "name": "Gupa-Abawa", - "code": "gpa" - }, - { - "name": "Ghanaian Pidgin English", - "code": "gpe" - }, - { - "name": "Taiap", - "code": "gpn" - }, - { - "name": "Ga'anda", - "code": "gqa" - }, - { - "name": "Guiqiong", - "code": "gqi" - }, - { - "name": "Guana (Brazil)", - "code": "gqn" - }, - { - "name": "Gor", - "code": "gqr" - }, - { - "name": "Qau", - "code": "gqu" - }, - { - "name": "Rajput Garasia", - "code": "gra" - }, - { - "name": "Grebo", - "code": "grb" - }, - { - "name": "Ancient Greek (to 1453)", - "code": "grc" - }, - { - "name": "Guruntum-Mbaaru", - "code": "grd" - }, - { - "name": "Madi", - "code": "grg" - }, - { - "name": "Gbiri-Niragu", - "code": "grh" - }, - { - "name": "Ghari", - "code": "gri" - }, - { - "name": "Southern Grebo", - "code": "grj" - }, - { - "name": "Kota Marudu Talantang", - "code": "grm" - }, - { - "name": "Guarani", - "code": "grn" - }, - { - "name": "Groma", - "code": "gro" - }, - { - "name": "Gorovu", - "code": "grq" - }, - { - "name": "Taznatit", - "code": "grr" - }, - { - "name": "Gresi", - "code": "grs" - }, - { - "name": "Garo", - "code": "grt" - }, - { - "name": "Kistane", - "code": "gru" - }, - { - "name": "Central Grebo", - "code": "grv" - }, - { - "name": "Gweda", - "code": "grw" - }, - { - "name": "Guriaso", - "code": "grx" - }, - { - "name": "Barclayville Grebo", - "code": "gry" - }, - { - "name": "Guramalum", - "code": "grz" - }, - { - "name": "Ghanaian Sign Language", - "code": "gse" - }, - { - "name": "German Sign Language", - "code": "gsg" - }, - { - "name": "Gusilay", - "code": "gsl" - }, - { - "name": "Guatemalan Sign Language", - "code": "gsm" - }, - { - "name": "Gusan", - "code": "gsn" - }, - { - "name": "Nema", - "code": "gsn" - }, - { - "name": "Southwest Gbaya", - "code": "gso" - }, - { - "name": "Wasembo", - "code": "gsp" - }, - { - "name": "Greek Sign Language", - "code": "gss" - }, - { - "name": "Alemannic", - "code": "gsw" - }, - { - "name": "Alsatian", - "code": "gsw" - }, - { - "name": "Swiss German", - "code": "gsw" - }, - { - "name": "Guató", - "code": "gta" - }, - { - "name": "Aghu-Tharnggala", - "code": "gtu" - }, - { - "name": "Shiki", - "code": "gua" - }, - { - "name": "Guajajára", - "code": "gub" - }, - { - "name": "Wayuu", - "code": "guc" - }, - { - "name": "Yocoboué Dida", - "code": "gud" - }, - { - "name": "Gurindji", - "code": "gue" - }, - { - "name": "Gupapuyngu", - "code": "guf" - }, - { - "name": "Paraguayan Guaraní", - "code": "gug" - }, - { - "name": "Guahibo", - "code": "guh" - }, - { - "name": "Eastern Bolivian Guaraní", - "code": "gui" - }, - { - "name": "Gujarati", - "code": "guj" - }, - { - "name": "Gumuz", - "code": "guk" - }, - { - "name": "Sea Island Creole English", - "code": "gul" - }, - { - "name": "Guambiano", - "code": "gum" - }, - { - "name": "Mbyá Guaraní", - "code": "gun" - }, - { - "name": "Guayabero", - "code": "guo" - }, - { - "name": "Gunwinggu", - "code": "gup" - }, - { - "name": "Aché", - "code": "guq" - }, - { - "name": "Farefare", - "code": "gur" - }, - { - "name": "Guinean Sign Language", - "code": "gus" - }, - { - "name": "Maléku Jaíka", - "code": "gut" - }, - { - "name": "Yanomamö", - "code": "guu" - }, - { - "name": "Gun", - "code": "guw" - }, - { - "name": "Gourmanchéma", - "code": "gux" - }, - { - "name": "Ekegusii", - "code": "guz" - }, - { - "name": "Gusii", - "code": "guz" - }, - { - "name": "Guana (Paraguay)", - "code": "gva" - }, - { - "name": "Guanano", - "code": "gvc" - }, - { - "name": "Duwet", - "code": "gve" - }, - { - "name": "Golin", - "code": "gvf" - }, - { - "name": "Guajá", - "code": "gvj" - }, - { - "name": "Gulay", - "code": "gvl" - }, - { - "name": "Gurmana", - "code": "gvm" - }, - { - "name": "Kuku-Yalanji", - "code": "gvn" - }, - { - "name": "Gavião Do Jiparaná", - "code": "gvo" - }, - { - "name": "Pará Gavião", - "code": "gvp" - }, - { - "name": "Gurung", - "code": "gvr" - }, - { - "name": "Gumawana", - "code": "gvs" - }, - { - "name": "Guyani", - "code": "gvy" - }, - { - "name": "Mbato", - "code": "gwa" - }, - { - "name": "Gwa", - "code": "gwb" - }, - { - "name": "Gawri", - "code": "gwc" - }, - { - "name": "Kalami", - "code": "gwc" - }, - { - "name": "Gawwada", - "code": "gwd" - }, - { - "name": "Gweno", - "code": "gwe" - }, - { - "name": "Gowro", - "code": "gwf" - }, - { - "name": "Moo", - "code": "gwg" - }, - { - "name": "Gwichʼin", - "code": "gwi" - }, - { - "name": "ǀGwi", - "code": "gwj" - }, - { - "name": "Awngthim", - "code": "gwm" - }, - { - "name": "Gwandara", - "code": "gwn" - }, - { - "name": "Gwere", - "code": "gwr" - }, - { - "name": "Gawar-Bati", - "code": "gwt" - }, - { - "name": "Guwamu", - "code": "gwu" - }, - { - "name": "Kwini", - "code": "gww" - }, - { - "name": "Gua", - "code": "gwx" - }, - { - "name": "Wè Southern", - "code": "gxx" - }, - { - "name": "Northwest Gbaya", - "code": "gya" - }, - { - "name": "Garus", - "code": "gyb" - }, - { - "name": "Kayardild", - "code": "gyd" - }, - { - "name": "Gyem", - "code": "gye" - }, - { - "name": "Gungabula", - "code": "gyf" - }, - { - "name": "Gbayi", - "code": "gyg" - }, - { - "name": "Gyele", - "code": "gyi" - }, - { - "name": "Gayil", - "code": "gyl" - }, - { - "name": "Ngäbere", - "code": "gym" - }, - { - "name": "Guyanese Creole English", - "code": "gyn" - }, - { - "name": "Gyalsumdo", - "code": "gyo" - }, - { - "name": "Guarayu", - "code": "gyr" - }, - { - "name": "Gunya", - "code": "gyy" - }, - { - "name": "Geji", - "code": "gyz" - }, - { - "name": "Gyaazi", - "code": "gyz" - }, - { - "name": "Ganza", - "code": "gza" - }, - { - "name": "Gazi", - "code": "gzi" - }, - { - "name": "Gane", - "code": "gzn" - }, - { - "name": "Han", - "code": "haa" - }, - { - "name": "Hanoi Sign Language", - "code": "hab" - }, - { - "name": "Gurani", - "code": "hac" - }, - { - "name": "Hatam", - "code": "had" - }, - { - "name": "Eastern Oromo", - "code": "hae" - }, - { - "name": "Haiphong Sign Language", - "code": "haf" - }, - { - "name": "Hanga", - "code": "hag" - }, - { - "name": "Hahon", - "code": "hah" - }, - { - "name": "Haida", - "code": "hai" - }, - { - "name": "Hajong", - "code": "haj" - }, - { - "name": "Hakka Chinese", - "code": "hak" - }, - { - "name": "Halang", - "code": "hal" - }, - { - "name": "Hewa", - "code": "ham" - }, - { - "name": "Hangaza", - "code": "han" - }, - { - "name": "Hakö", - "code": "hao" - }, - { - "name": "Hupla", - "code": "hap" - }, - { - "name": "Ha", - "code": "haq" - }, - { - "name": "Harari", - "code": "har" - }, - { - "name": "Haisla", - "code": "has" - }, - { - "name": "Haitian", - "code": "hat" - }, - { - "name": "Haitian Creole", - "code": "hat" - }, - { - "name": "Hausa", - "code": "hau" - }, - { - "name": "Havu", - "code": "hav" - }, - { - "name": "Hawaiian", - "code": "haw" - }, - { - "name": "Southern Haida", - "code": "hax" - }, - { - "name": "Haya", - "code": "hay" - }, - { - "name": "Hazaragi", - "code": "haz" - }, - { - "name": "Hamba", - "code": "hba" - }, - { - "name": "Huba", - "code": "hbb" - }, - { - "name": "Heiban", - "code": "hbn" - }, - { - "name": "Ancient Hebrew", - "code": "hbo" - }, - { - "name": "Serbo-Croatian", - "code": "hbs" - }, - { - "name": "Habu", - "code": "hbu" - }, - { - "name": "Andaman Creole Hindi", - "code": "hca" - }, - { - "name": "Huichol", - "code": "hch" - }, - { - "name": "Northern Haida", - "code": "hdn" - }, - { - "name": "Honduras Sign Language", - "code": "hds" - }, - { - "name": "Hadiyya", - "code": "hdy" - }, - { - "name": "Northern Qiandong Miao", - "code": "hea" - }, - { - "name": "Hebrew", - "code": "heb" - }, - { - "name": "Herdé", - "code": "hed" - }, - { - "name": "Helong", - "code": "heg" - }, - { - "name": "Hehe", - "code": "heh" - }, - { - "name": "Heiltsuk", - "code": "hei" - }, - { - "name": "Hemba", - "code": "hem" - }, - { - "name": "Herero", - "code": "her" - }, - { - "name": "Haiǁom", - "code": "hgm" - }, - { - "name": "Haigwai", - "code": "hgw" - }, - { - "name": "Hoia Hoia", - "code": "hhi" - }, - { - "name": "Kerak", - "code": "hhr" - }, - { - "name": "Hoyahoya", - "code": "hhy" - }, - { - "name": "Lamang", - "code": "hia" - }, - { - "name": "Hibito", - "code": "hib" - }, - { - "name": "Hidatsa", - "code": "hid" - }, - { - "name": "Fiji Hindi", - "code": "hif" - }, - { - "name": "Kamwe", - "code": "hig" - }, - { - "name": "Pamosu", - "code": "hih" - }, - { - "name": "Hinduri", - "code": "hii" - }, - { - "name": "Hijuk", - "code": "hij" - }, - { - "name": "Seit-Kaitetu", - "code": "hik" - }, - { - "name": "Hiligaynon", - "code": "hil" - }, - { - "name": "Hindi", - "code": "hin" - }, - { - "name": "Tsoa", - "code": "hio" - }, - { - "name": "Himarimã", - "code": "hir" - }, - { - "name": "Hittite", - "code": "hit" - }, - { - "name": "Hiw", - "code": "hiw" - }, - { - "name": "Hixkaryána", - "code": "hix" - }, - { - "name": "Haji", - "code": "hji" - }, - { - "name": "Kahe", - "code": "hka" - }, - { - "name": "Hunde", - "code": "hke" - }, - { - "name": "Khah", - "code": "hkh" - }, - { - "name": "Poguli", - "code": "hkh" - }, - { - "name": "Hunjara-Kaina Ke", - "code": "hkk" - }, - { - "name": "Mel-Khaonh", - "code": "hkn" - }, - { - "name": "Heung Kong Sau Yue", - "code": "hks" - }, - { - "name": "Hong Kong Sign Language", - "code": "hks" - }, - { - "name": "Halia", - "code": "hla" - }, - { - "name": "Halbi", - "code": "hlb" - }, - { - "name": "Halang Doan", - "code": "hld" - }, - { - "name": "Hlersu", - "code": "hle" - }, - { - "name": "Matu Chin", - "code": "hlt" - }, - { - "name": "Hieroglyphic Luwian", - "code": "hlu" - }, - { - "name": "Southern Mashan Hmong", - "code": "hma" - }, - { - "name": "Southern Mashan Miao", - "code": "hma" - }, - { - "name": "Humburi Senni Songhay", - "code": "hmb" - }, - { - "name": "Central Huishui Hmong", - "code": "hmc" - }, - { - "name": "Central Huishui Miao", - "code": "hmc" - }, - { - "name": "A-hmaos", - "code": "hmd" - }, - { - "name": "Da-Hua Miao", - "code": "hmd" - }, - { - "name": "Large Flowery Miao", - "code": "hmd" - }, - { - "name": "Eastern Huishui Hmong", - "code": "hme" - }, - { - "name": "Eastern Huishui Miao", - "code": "hme" - }, - { - "name": "Hmong Don", - "code": "hmf" - }, - { - "name": "Southwestern Guiyang Hmong", - "code": "hmg" - }, - { - "name": "Southwestern Huishui Hmong", - "code": "hmh" - }, - { - "name": "Southwestern Huishui Miao", - "code": "hmh" - }, - { - "name": "Northern Huishui Hmong", - "code": "hmi" - }, - { - "name": "Northern Huishui Miao", - "code": "hmi" - }, - { - "name": "Ge", - "code": "hmj" - }, - { - "name": "Gejia", - "code": "hmj" - }, - { - "name": "Maek", - "code": "hmk" - }, - { - "name": "Luopohe Hmong", - "code": "hml" - }, - { - "name": "Luopohe Miao", - "code": "hml" - }, - { - "name": "Central Mashan Hmong", - "code": "hmm" - }, - { - "name": "Central Mashan Miao", - "code": "hmm" - }, - { - "name": "Hmong", - "code": "hmn" - }, - { - "name": "Mong", - "code": "hmn" - }, - { - "name": "Hiri Motu", - "code": "hmo" - }, - { - "name": "Northern Mashan Hmong", - "code": "hmp" - }, - { - "name": "Northern Mashan Miao", - "code": "hmp" - }, - { - "name": "Eastern Qiandong Miao", - "code": "hmq" - }, - { - "name": "Hmar", - "code": "hmr" - }, - { - "name": "Southern Qiandong Miao", - "code": "hms" - }, - { - "name": "Hamtai", - "code": "hmt" - }, - { - "name": "Hamap", - "code": "hmu" - }, - { - "name": "Hmong Dô", - "code": "hmv" - }, - { - "name": "Western Mashan Hmong", - "code": "hmw" - }, - { - "name": "Western Mashan Miao", - "code": "hmw" - }, - { - "name": "Southern Guiyang Hmong", - "code": "hmy" - }, - { - "name": "Southern Guiyang Miao", - "code": "hmy" - }, - { - "name": "Hmong Shua", - "code": "hmz" - }, - { - "name": "Sinicized Miao", - "code": "hmz" - }, - { - "name": "Mina (Cameroon)", - "code": "hna" - }, - { - "name": "Southern Hindko", - "code": "hnd" - }, - { - "name": "Chhattisgarhi", - "code": "hne" - }, - { - "name": "Hungu", - "code": "hng" - }, - { - "name": "ǁAni", - "code": "hnh" - }, - { - "name": "Hani", - "code": "hni" - }, - { - "name": "Hmong Njua", - "code": "hnj" - }, - { - "name": "Mong Leng", - "code": "hnj" - }, - { - "name": "Mong Njua", - "code": "hnj" - }, - { - "name": "Hanunoo", - "code": "hnn" - }, - { - "name": "Northern Hindko", - "code": "hno" - }, - { - "name": "Caribbean Hindustani", - "code": "hns" - }, - { - "name": "Hung", - "code": "hnu" - }, - { - "name": "Hoava", - "code": "hoa" - }, - { - "name": "Mari (Madang Province)", - "code": "hob" - }, - { - "name": "Ho", - "code": "hoc" - }, - { - "name": "Holma", - "code": "hod" - }, - { - "name": "Horom", - "code": "hoe" - }, - { - "name": "Hobyót", - "code": "hoh" - }, - { - "name": "Holikachuk", - "code": "hoi" - }, - { - "name": "Hadothi", - "code": "hoj" - }, - { - "name": "Haroti", - "code": "hoj" - }, - { - "name": "Holu", - "code": "hol" - }, - { - "name": "Homa", - "code": "hom" - }, - { - "name": "Holoholo", - "code": "hoo" - }, - { - "name": "Hopi", - "code": "hop" - }, - { - "name": "Horo", - "code": "hor" - }, - { - "name": "Ho Chi Minh City Sign Language", - "code": "hos" - }, - { - "name": "Hote", - "code": "hot" - }, - { - "name": "Malê", - "code": "hot" - }, - { - "name": "Hovongan", - "code": "hov" - }, - { - "name": "Honi", - "code": "how" - }, - { - "name": "Holiya", - "code": "hoy" - }, - { - "name": "Hozo", - "code": "hoz" - }, - { - "name": "Hpon", - "code": "hpo" - }, - { - "name": "Hawai'i Pidgin Sign Language", - "code": "hps" - }, - { - "name": "Hawai'i Sign Language (HSL)", - "code": "hps" - }, - { - "name": "Hrangkhol", - "code": "hra" - }, - { - "name": "Niwer Mil", - "code": "hrc" - }, - { - "name": "Hre", - "code": "hre" - }, - { - "name": "Haruku", - "code": "hrk" - }, - { - "name": "Horned Miao", - "code": "hrm" - }, - { - "name": "Haroi", - "code": "hro" - }, - { - "name": "Nhirrpi", - "code": "hrp" - }, - { - "name": "Hértevin", - "code": "hrt" - }, - { - "name": "Hruso", - "code": "hru" - }, - { - "name": "Croatian", - "code": "hrv" - }, - { - "name": "Warwar Feni", - "code": "hrw" - }, - { - "name": "Hunsrik", - "code": "hrx" - }, - { - "name": "Harzani", - "code": "hrz" - }, - { - "name": "Upper Sorbian", - "code": "hsb" - }, - { - "name": "Hungarian Sign Language", - "code": "hsh" - }, - { - "name": "Hausa Sign Language", - "code": "hsl" - }, - { - "name": "Xiang Chinese", - "code": "hsn" - }, - { - "name": "Harsusi", - "code": "hss" - }, - { - "name": "Hoti", - "code": "hti" - }, - { - "name": "Minica Huitoto", - "code": "hto" - }, - { - "name": "Hadza", - "code": "hts" - }, - { - "name": "Hitu", - "code": "htu" - }, - { - "name": "Middle Hittite", - "code": "htx" - }, - { - "name": "Huambisa", - "code": "hub" - }, - { - "name": "ǂ'Amkhoe", - "code": "huc" - }, - { - "name": "ǂHua", - "code": "huc" - }, - { - "name": "Huaulu", - "code": "hud" - }, - { - "name": "San Francisco Del Mar Huave", - "code": "hue" - }, - { - "name": "Humene", - "code": "huf" - }, - { - "name": "Huachipaeri", - "code": "hug" - }, - { - "name": "Huilliche", - "code": "huh" - }, - { - "name": "Huli", - "code": "hui" - }, - { - "name": "Northern Guiyang Hmong", - "code": "huj" - }, - { - "name": "Northern Guiyang Miao", - "code": "huj" - }, - { - "name": "Hulung", - "code": "huk" - }, - { - "name": "Hula", - "code": "hul" - }, - { - "name": "Hungana", - "code": "hum" - }, - { - "name": "Hungarian", - "code": "hun" - }, - { - "name": "Hu", - "code": "huo" - }, - { - "name": "Hupa", - "code": "hup" - }, - { - "name": "Tsat", - "code": "huq" - }, - { - "name": "Halkomelem", - "code": "hur" - }, - { - "name": "Huastec", - "code": "hus" - }, - { - "name": "Humla", - "code": "hut" - }, - { - "name": "Murui Huitoto", - "code": "huu" - }, - { - "name": "San Mateo Del Mar Huave", - "code": "huv" - }, - { - "name": "Hukumina", - "code": "huw" - }, - { - "name": "Nüpode Huitoto", - "code": "hux" - }, - { - "name": "Hulaulá", - "code": "huy" - }, - { - "name": "Hunzib", - "code": "huz" - }, - { - "name": "Haitian Vodoun Culture Language", - "code": "hvc" - }, - { - "name": "San Dionisio Del Mar Huave", - "code": "hve" - }, - { - "name": "Haveke", - "code": "hvk" - }, - { - "name": "Sabu", - "code": "hvn" - }, - { - "name": "Santa María Del Mar Huave", - "code": "hvv" - }, - { - "name": "Wané", - "code": "hwa" - }, - { - "name": "Hawai'i Creole English", - "code": "hwc" - }, - { - "name": "Hawai'i Pidgin", - "code": "hwc" - }, - { - "name": "Hwana", - "code": "hwo" - }, - { - "name": "Hya", - "code": "hya" - }, - { - "name": "Armenian", - "code": "hye" - }, - { - "name": "Western Armenian", - "code": "hyw" - }, - { - "name": "Iaai", - "code": "iai" - }, - { - "name": "Iatmul", - "code": "ian" - }, - { - "name": "Purari", - "code": "iar" - }, - { - "name": "Iban", - "code": "iba" - }, - { - "name": "Ibibio", - "code": "ibb" - }, - { - "name": "Iwaidja", - "code": "ibd" - }, - { - "name": "Akpes", - "code": "ibe" - }, - { - "name": "Ibanag", - "code": "ibg" - }, - { - "name": "Bih", - "code": "ibh" - }, - { - "name": "Ibaloi", - "code": "ibl" - }, - { - "name": "Agoi", - "code": "ibm" - }, - { - "name": "Ibino", - "code": "ibn" - }, - { - "name": "Igbo", - "code": "ibo" - }, - { - "name": "Ibuoro", - "code": "ibr" - }, - { - "name": "Ibu", - "code": "ibu" - }, - { - "name": "Ibani", - "code": "iby" - }, - { - "name": "Ede Ica", - "code": "ica" - }, - { - "name": "Etkywan", - "code": "ich" - }, - { - "name": "Icelandic Sign Language", - "code": "icl" - }, - { - "name": "Islander Creole English", - "code": "icr" - }, - { - "name": "Idakho-Isukha-Tiriki", - "code": "ida" - }, - { - "name": "Luidakho-Luisukha-Lutirichi", - "code": "ida" - }, - { - "name": "Indo-Portuguese", - "code": "idb" - }, - { - "name": "Ajiya", - "code": "idc" - }, - { - "name": "Idon", - "code": "idc" - }, - { - "name": "Ede Idaca", - "code": "idd" - }, - { - "name": "Idere", - "code": "ide" - }, - { - "name": "Idi", - "code": "idi" - }, - { - "name": "Ido", - "code": "ido" - }, - { - "name": "Indri", - "code": "idr" - }, - { - "name": "Idesa", - "code": "ids" - }, - { - "name": "Idaté", - "code": "idt" - }, - { - "name": "Idoma", - "code": "idu" - }, - { - "name": "Amganad Ifugao", - "code": "ifa" - }, - { - "name": "Ayangan Ifugao", - "code": "ifb" - }, - { - "name": "Batad Ifugao", - "code": "ifb" - }, - { - "name": "Ifè", - "code": "ife" - }, - { - "name": "Ifo", - "code": "iff" - }, - { - "name": "Tuwali Ifugao", - "code": "ifk" - }, - { - "name": "Teke-Fuumu", - "code": "ifm" - }, - { - "name": "Mayoyao Ifugao", - "code": "ifu" - }, - { - "name": "Keley-I Kallahan", - "code": "ify" - }, - { - "name": "Ebira", - "code": "igb" - }, - { - "name": "Igede", - "code": "ige" - }, - { - "name": "Igana", - "code": "igg" - }, - { - "name": "Igala", - "code": "igl" - }, - { - "name": "Kanggape", - "code": "igm" - }, - { - "name": "Ignaciano", - "code": "ign" - }, - { - "name": "Isebe", - "code": "igo" - }, - { - "name": "Interglossa", - "code": "igs" - }, - { - "name": "Igwe", - "code": "igw" - }, - { - "name": "Iha Based Pidgin", - "code": "ihb" - }, - { - "name": "Ihievbe", - "code": "ihi" - }, - { - "name": "Iha", - "code": "ihp" - }, - { - "name": "Bidhawal", - "code": "ihw" - }, - { - "name": "Nuosu", - "code": "iii" - }, - { - "name": "Sichuan Yi", - "code": "iii" - }, - { - "name": "Thiin", - "code": "iin" - }, - { - "name": "Izon", - "code": "ijc" - }, - { - "name": "Biseni", - "code": "ije" - }, - { - "name": "Ede Ije", - "code": "ijj" - }, - { - "name": "Kalabari", - "code": "ijn" - }, - { - "name": "Southeast Ijo", - "code": "ijs" - }, - { - "name": "Eastern Canadian Inuktitut", - "code": "ike" - }, - { - "name": "Iko", - "code": "iki" - }, - { - "name": "Ika", - "code": "ikk" - }, - { - "name": "Ikulu", - "code": "ikl" - }, - { - "name": "Olulumo-Ikom", - "code": "iko" - }, - { - "name": "Ikpeshi", - "code": "ikp" - }, - { - "name": "Ikaranggal", - "code": "ikr" - }, - { - "name": "Inuit Sign Language", - "code": "iks" - }, - { - "name": "Inuinnaqtun", - "code": "ikt" - }, - { - "name": "Western Canadian Inuktitut", - "code": "ikt" - }, - { - "name": "Inuktitut", - "code": "iku" - }, - { - "name": "Iku-Gora-Ankwa", - "code": "ikv" - }, - { - "name": "Ikwere", - "code": "ikw" - }, - { - "name": "Ik", - "code": "ikx" - }, - { - "name": "Ikizu", - "code": "ikz" - }, - { - "name": "Ile Ape", - "code": "ila" - }, - { - "name": "Ila", - "code": "ilb" - }, - { - "name": "Interlingue", - "code": "ile" - }, - { - "name": "Occidental", - "code": "ile" - }, - { - "name": "Garig-Ilgar", - "code": "ilg" - }, - { - "name": "Ili Turki", - "code": "ili" - }, - { - "name": "Ilongot", - "code": "ilk" - }, - { - "name": "Iranun (Malaysia)", - "code": "ilm" - }, - { - "name": "Iloko", - "code": "ilo" - }, - { - "name": "Iranun (Philippines)", - "code": "ilp" - }, - { - "name": "International Sign", - "code": "ils" - }, - { - "name": "Ili'uun", - "code": "ilu" - }, - { - "name": "Ilue", - "code": "ilv" - }, - { - "name": "Mala Malasar", - "code": "ima" - }, - { - "name": "Anamgura", - "code": "imi" - }, - { - "name": "Miluk", - "code": "iml" - }, - { - "name": "Imonda", - "code": "imn" - }, - { - "name": "Imbongu", - "code": "imo" - }, - { - "name": "Imroing", - "code": "imr" - }, - { - "name": "Marsian", - "code": "ims" - }, - { - "name": "Milyan", - "code": "imy" - }, - { - "name": "Interlingua (International Auxiliary Language Association)", - "code": "ina" - }, - { - "name": "Inga", - "code": "inb" - }, - { - "name": "Indonesian", - "code": "ind" - }, - { - "name": "Degexit'an", - "code": "ing" - }, - { - "name": "Ingush", - "code": "inh" - }, - { - "name": "Jungle Inga", - "code": "inj" - }, - { - "name": "Indonesian Sign Language", - "code": "inl" - }, - { - "name": "Minaean", - "code": "inm" - }, - { - "name": "Isinai", - "code": "inn" - }, - { - "name": "Inoke-Yate", - "code": "ino" - }, - { - "name": "Iñapari", - "code": "inp" - }, - { - "name": "Indian Sign Language", - "code": "ins" - }, - { - "name": "Intha", - "code": "int" - }, - { - "name": "Ineseño", - "code": "inz" - }, - { - "name": "Inor", - "code": "ior" - }, - { - "name": "Tuma-Irumu", - "code": "iou" - }, - { - "name": "Iowa-Oto", - "code": "iow" - }, - { - "name": "Ipili", - "code": "ipi" - }, - { - "name": "Inupiaq", - "code": "ipk" - }, - { - "name": "Ipiko", - "code": "ipo" - }, - { - "name": "Iquito", - "code": "iqu" - }, - { - "name": "Ikwo", - "code": "iqw" - }, - { - "name": "Iresim", - "code": "ire" - }, - { - "name": "Irarutu", - "code": "irh" - }, - { - "name": "Irigwe", - "code": "iri" - }, - { - "name": "Rigwe", - "code": "iri" - }, - { - "name": "Iraqw", - "code": "irk" - }, - { - "name": "Irántxe", - "code": "irn" - }, - { - "name": "Ir", - "code": "irr" - }, - { - "name": "Irula", - "code": "iru" - }, - { - "name": "Kamberau", - "code": "irx" - }, - { - "name": "Iraya", - "code": "iry" - }, - { - "name": "Isabi", - "code": "isa" - }, - { - "name": "Isconahua", - "code": "isc" - }, - { - "name": "Isnag", - "code": "isd" - }, - { - "name": "Italian Sign Language", - "code": "ise" - }, - { - "name": "Irish Sign Language", - "code": "isg" - }, - { - "name": "Esan", - "code": "ish" - }, - { - "name": "Nkem-Nkum", - "code": "isi" - }, - { - "name": "Ishkashimi", - "code": "isk" - }, - { - "name": "Icelandic", - "code": "isl" - }, - { - "name": "Masimasi", - "code": "ism" - }, - { - "name": "Isanzu", - "code": "isn" - }, - { - "name": "Isoko", - "code": "iso" - }, - { - "name": "Israeli Sign Language", - "code": "isr" - }, - { - "name": "Istriot", - "code": "ist" - }, - { - "name": "Isu (Menchum Division)", - "code": "isu" - }, - { - "name": "Italian", - "code": "ita" - }, - { - "name": "Binongan Itneg", - "code": "itb" - }, - { - "name": "Southern Tidung", - "code": "itd" - }, - { - "name": "Itene", - "code": "ite" - }, - { - "name": "Inlaod Itneg", - "code": "iti" - }, - { - "name": "Judeo-Italian", - "code": "itk" - }, - { - "name": "Itelmen", - "code": "itl" - }, - { - "name": "Itu Mbon Uzo", - "code": "itm" - }, - { - "name": "Itonama", - "code": "ito" - }, - { - "name": "Iteri", - "code": "itr" - }, - { - "name": "Isekiri", - "code": "its" - }, - { - "name": "Maeng Itneg", - "code": "itt" - }, - { - "name": "Itawit", - "code": "itv" - }, - { - "name": "Ito", - "code": "itw" - }, - { - "name": "Itik", - "code": "itx" - }, - { - "name": "Moyadan Itneg", - "code": "ity" - }, - { - "name": "Itzá", - "code": "itz" - }, - { - "name": "Iu Mien", - "code": "ium" - }, - { - "name": "Ibatan", - "code": "ivb" - }, - { - "name": "Ivatan", - "code": "ivv" - }, - { - "name": "I-Wak", - "code": "iwk" - }, - { - "name": "Iwam", - "code": "iwm" - }, - { - "name": "Iwur", - "code": "iwo" - }, - { - "name": "Sepik Iwam", - "code": "iws" - }, - { - "name": "Ixcatec", - "code": "ixc" - }, - { - "name": "Ixil", - "code": "ixl" - }, - { - "name": "Iyayu", - "code": "iya" - }, - { - "name": "Mesaka", - "code": "iyo" - }, - { - "name": "Yaka (Congo)", - "code": "iyx" - }, - { - "name": "Ingrian", - "code": "izh" - }, - { - "name": "Izere", - "code": "izr" - }, - { - "name": "Izii", - "code": "izz" - }, - { - "name": "Jamamadí", - "code": "jaa" - }, - { - "name": "Hyam", - "code": "jab" - }, - { - "name": "Jakalteko", - "code": "jac" - }, - { - "name": "Popti'", - "code": "jac" - }, - { - "name": "Jahanka", - "code": "jad" - }, - { - "name": "Yabem", - "code": "jae" - }, - { - "name": "Jara", - "code": "jaf" - }, - { - "name": "Jah Hut", - "code": "jah" - }, - { - "name": "Zazao", - "code": "jaj" - }, - { - "name": "Jakun", - "code": "jak" - }, - { - "name": "Yalahatan", - "code": "jal" - }, - { - "name": "Jamaican Creole English", - "code": "jam" - }, - { - "name": "Jandai", - "code": "jan" - }, - { - "name": "Yanyuwa", - "code": "jao" - }, - { - "name": "Yaqay", - "code": "jaq" - }, - { - "name": "New Caledonian Javanese", - "code": "jas" - }, - { - "name": "Jakati", - "code": "jat" - }, - { - "name": "Yaur", - "code": "jau" - }, - { - "name": "Javanese", - "code": "jav" - }, - { - "name": "Jambi Malay", - "code": "jax" - }, - { - "name": "Nhangu", - "code": "jay" - }, - { - "name": "Yan-nhangu", - "code": "jay" - }, - { - "name": "Jawe", - "code": "jaz" - }, - { - "name": "Judeo-Berber", - "code": "jbe" - }, - { - "name": "Badjiri", - "code": "jbi" - }, - { - "name": "Arandai", - "code": "jbj" - }, - { - "name": "Barikewa", - "code": "jbk" - }, - { - "name": "Bijim", - "code": "jbm" - }, - { - "name": "Nafusi", - "code": "jbn" - }, - { - "name": "Lojban", - "code": "jbo" - }, - { - "name": "Jofotek-Bromnya", - "code": "jbr" - }, - { - "name": "Jabutí", - "code": "jbt" - }, - { - "name": "Jukun Takum", - "code": "jbu" - }, - { - "name": "Yawijibaya", - "code": "jbw" - }, - { - "name": "Jamaican Country Sign Language", - "code": "jcs" - }, - { - "name": "Krymchak", - "code": "jct" - }, - { - "name": "Jad", - "code": "jda" - }, - { - "name": "Jadgali", - "code": "jdg" - }, - { - "name": "Judeo-Tat", - "code": "jdt" - }, - { - "name": "Jebero", - "code": "jeb" - }, - { - "name": "Jerung", - "code": "jee" - }, - { - "name": "Jeh", - "code": "jeh" - }, - { - "name": "Yei", - "code": "jei" - }, - { - "name": "Jeri Kuo", - "code": "jek" - }, - { - "name": "Yelmek", - "code": "jel" - }, - { - "name": "Dza", - "code": "jen" - }, - { - "name": "Jere", - "code": "jer" - }, - { - "name": "Manem", - "code": "jet" - }, - { - "name": "Jonkor Bourmataguil", - "code": "jeu" - }, - { - "name": "Ngbee", - "code": "jgb" - }, - { - "name": "Judeo-Georgian", - "code": "jge" - }, - { - "name": "Gwak", - "code": "jgk" - }, - { - "name": "Ngomba", - "code": "jgo" - }, - { - "name": "Jehai", - "code": "jhi" - }, - { - "name": "Jhankot Sign Language", - "code": "jhs" - }, - { - "name": "Jina", - "code": "jia" - }, - { - "name": "Jibu", - "code": "jib" - }, - { - "name": "Tol", - "code": "jic" - }, - { - "name": "Bu (Kaduna State)", - "code": "jid" - }, - { - "name": "Jilbe", - "code": "jie" - }, - { - "name": "Djingili", - "code": "jig" - }, - { - "name": "Jingulu", - "code": "jig" - }, - { - "name": "Shangzhai", - "code": "jih" - }, - { - "name": "sTodsde", - "code": "jih" - }, - { - "name": "Jiiddu", - "code": "jii" - }, - { - "name": "Jilim", - "code": "jil" - }, - { - "name": "Jimi (Cameroon)", - "code": "jim" - }, - { - "name": "Jiamao", - "code": "jio" - }, - { - "name": "Guanyinqiao", - "code": "jiq" - }, - { - "name": "Lavrung", - "code": "jiq" - }, - { - "name": "Jita", - "code": "jit" - }, - { - "name": "Youle Jinuo", - "code": "jiu" - }, - { - "name": "Shuar", - "code": "jiv" - }, - { - "name": "Buyuan Jinuo", - "code": "jiy" - }, - { - "name": "Jejueo", - "code": "jje" - }, - { - "name": "Bankal", - "code": "jjr" - }, - { - "name": "Kaera", - "code": "jka" - }, - { - "name": "Mobwa Karen", - "code": "jkm" - }, - { - "name": "Kubo", - "code": "jko" - }, - { - "name": "Paku Karen", - "code": "jkp" - }, - { - "name": "Koro (India)", - "code": "jkr" - }, - { - "name": "Amami Koniya Sign Language", - "code": "jks" - }, - { - "name": "Labir", - "code": "jku" - }, - { - "name": "Ngile", - "code": "jle" - }, - { - "name": "Jamaican Sign Language", - "code": "jls" - }, - { - "name": "Dima", - "code": "jma" - }, - { - "name": "Zumbun", - "code": "jmb" - }, - { - "name": "Machame", - "code": "jmc" - }, - { - "name": "Yamdena", - "code": "jmd" - }, - { - "name": "Jimi (Nigeria)", - "code": "jmi" - }, - { - "name": "Jumli", - "code": "jml" - }, - { - "name": "Makuri Naga", - "code": "jmn" - }, - { - "name": "Kamara", - "code": "jmr" - }, - { - "name": "Mashi (Nigeria)", - "code": "jms" - }, - { - "name": "Mouwase", - "code": "jmw" - }, - { - "name": "Western Juxtlahuaca Mixtec", - "code": "jmx" - }, - { - "name": "Jangshung", - "code": "jna" - }, - { - "name": "Jandavra", - "code": "jnd" - }, - { - "name": "Yangman", - "code": "jng" - }, - { - "name": "Janji", - "code": "jni" - }, - { - "name": "Yemsa", - "code": "jnj" - }, - { - "name": "Rawat", - "code": "jnl" - }, - { - "name": "Jaunsari", - "code": "jns" - }, - { - "name": "Joba", - "code": "job" - }, - { - "name": "Wojenaka", - "code": "jod" - }, - { - "name": "Jogi", - "code": "jog" - }, - { - "name": "Jorá", - "code": "jor" - }, - { - "name": "Jordanian Sign Language", - "code": "jos" - }, - { - "name": "Jowulu", - "code": "jow" - }, - { - "name": "Jewish Palestinian Aramaic", - "code": "jpa" - }, - { - "name": "Japanese", - "code": "jpn" - }, - { - "name": "Judeo-Persian", - "code": "jpr" - }, - { - "name": "Jaqaru", - "code": "jqr" - }, - { - "name": "Jarai", - "code": "jra" - }, - { - "name": "Judeo-Arabic", - "code": "jrb" - }, - { - "name": "Jiru", - "code": "jrr" - }, - { - "name": "Jakattoe", - "code": "jrt" - }, - { - "name": "Japrería", - "code": "jru" - }, - { - "name": "Japanese Sign Language", - "code": "jsl" - }, - { - "name": "Júma", - "code": "jua" - }, - { - "name": "Wannu", - "code": "jub" - }, - { - "name": "Jurchen", - "code": "juc" - }, - { - "name": "Worodougou", - "code": "jud" - }, - { - "name": "Hõne", - "code": "juh" - }, - { - "name": "Ngadjuri", - "code": "jui" - }, - { - "name": "Wapan", - "code": "juk" - }, - { - "name": "Jirel", - "code": "jul" - }, - { - "name": "Jumjum", - "code": "jum" - }, - { - "name": "Juang", - "code": "jun" - }, - { - "name": "Jiba", - "code": "juo" - }, - { - "name": "Hupdë", - "code": "jup" - }, - { - "name": "Jurúna", - "code": "jur" - }, - { - "name": "Jumla Sign Language", - "code": "jus" - }, - { - "name": "Jutish", - "code": "jut" - }, - { - "name": "Ju", - "code": "juu" - }, - { - "name": "Wãpha", - "code": "juw" - }, - { - "name": "Juray", - "code": "juy" - }, - { - "name": "Javindo", - "code": "jvd" - }, - { - "name": "Caribbean Javanese", - "code": "jvn" - }, - { - "name": "Jwira-Pepesa", - "code": "jwi" - }, - { - "name": "Jiarong", - "code": "jya" - }, - { - "name": "Judeo-Yemeni Arabic", - "code": "jye" - }, - { - "name": "Jaya", - "code": "jyy" - }, - { - "name": "Karakalpak", - "code": "kaa" - }, - { - "name": "Kara-Kalpak", - "code": "kaa" - }, - { - "name": "Kabyle", - "code": "kab" - }, - { - "name": "Jingpho", - "code": "kac" - }, - { - "name": "Kachin", - "code": "kac" - }, - { - "name": "Adara", - "code": "kad" - }, - { - "name": "Ketangalan", - "code": "kae" - }, - { - "name": "Katso", - "code": "kaf" - }, - { - "name": "Kajaman", - "code": "kag" - }, - { - "name": "Kara (Central African Republic)", - "code": "kah" - }, - { - "name": "Karekare", - "code": "kai" - }, - { - "name": "Jju", - "code": "kaj" - }, - { - "name": "Kalanguya", - "code": "kak" - }, - { - "name": "Kayapa Kallahan", - "code": "kak" - }, - { - "name": "Greenlandic", - "code": "kal" - }, - { - "name": "Kalaallisut", - "code": "kal" - }, - { - "name": "Kamba (Kenya)", - "code": "kam" - }, - { - "name": "Kannada", - "code": "kan" - }, - { - "name": "Xaasongaxango", - "code": "kao" - }, - { - "name": "Bezhta", - "code": "kap" - }, - { - "name": "Capanahua", - "code": "kaq" - }, - { - "name": "Kashmiri", - "code": "kas" - }, - { - "name": "Georgian", - "code": "kat" - }, - { - "name": "Kanuri", - "code": "kau" - }, - { - "name": "Katukína", - "code": "kav" - }, - { - "name": "Kawi", - "code": "kaw" - }, - { - "name": "Kao", - "code": "kax" - }, - { - "name": "Kamayurá", - "code": "kay" - }, - { - "name": "Kazakh", - "code": "kaz" - }, - { - "name": "Kalarko", - "code": "kba" - }, - { - "name": "Kaxuiâna", - "code": "kbb" - }, - { - "name": "Kadiwéu", - "code": "kbc" - }, - { - "name": "Kabardian", - "code": "kbd" - }, - { - "name": "Kanju", - "code": "kbe" - }, - { - "name": "Khamba", - "code": "kbg" - }, - { - "name": "Camsá", - "code": "kbh" - }, - { - "name": "Kaptiau", - "code": "kbi" - }, - { - "name": "Kari", - "code": "kbj" - }, - { - "name": "Grass Koiari", - "code": "kbk" - }, - { - "name": "Kanembu", - "code": "kbl" - }, - { - "name": "Iwal", - "code": "kbm" - }, - { - "name": "Kare (Central African Republic)", - "code": "kbn" - }, - { - "name": "Keliko", - "code": "kbo" - }, - { - "name": "Kabiyè", - "code": "kbp" - }, - { - "name": "Kamano", - "code": "kbq" - }, - { - "name": "Kafa", - "code": "kbr" - }, - { - "name": "Kande", - "code": "kbs" - }, - { - "name": "Abadi", - "code": "kbt" - }, - { - "name": "Kabutra", - "code": "kbu" - }, - { - "name": "Dera (Indonesia)", - "code": "kbv" - }, - { - "name": "Kaiep", - "code": "kbw" - }, - { - "name": "Ap Ma", - "code": "kbx" - }, - { - "name": "Manga Kanuri", - "code": "kby" - }, - { - "name": "Duhwa", - "code": "kbz" - }, - { - "name": "Khanty", - "code": "kca" - }, - { - "name": "Kawacha", - "code": "kcb" - }, - { - "name": "Lubila", - "code": "kcc" - }, - { - "name": "Ngkâlmpw Kanum", - "code": "kcd" - }, - { - "name": "Kaivi", - "code": "kce" - }, - { - "name": "Ukaan", - "code": "kcf" - }, - { - "name": "Tyap", - "code": "kcg" - }, - { - "name": "Vono", - "code": "kch" - }, - { - "name": "Kamantan", - "code": "kci" - }, - { - "name": "Kobiana", - "code": "kcj" - }, - { - "name": "Kalanga", - "code": "kck" - }, - { - "name": "Kala", - "code": "kcl" - }, - { - "name": "Kela (Papua New Guinea)", - "code": "kcl" - }, - { - "name": "Gula (Central African Republic)", - "code": "kcm" - }, - { - "name": "Nubi", - "code": "kcn" - }, - { - "name": "Kinalakna", - "code": "kco" - }, - { - "name": "Kanga", - "code": "kcp" - }, - { - "name": "Kamo", - "code": "kcq" - }, - { - "name": "Katla", - "code": "kcr" - }, - { - "name": "Koenoem", - "code": "kcs" - }, - { - "name": "Kaian", - "code": "kct" - }, - { - "name": "Kami (Tanzania)", - "code": "kcu" - }, - { - "name": "Kete", - "code": "kcv" - }, - { - "name": "Kabwari", - "code": "kcw" - }, - { - "name": "Kachama-Ganjule", - "code": "kcx" - }, - { - "name": "Korandje", - "code": "kcy" - }, - { - "name": "Konongo", - "code": "kcz" - }, - { - "name": "Worimi", - "code": "kda" - }, - { - "name": "Kutu", - "code": "kdc" - }, - { - "name": "Yankunytjatjara", - "code": "kdd" - }, - { - "name": "Makonde", - "code": "kde" - }, - { - "name": "Mamusi", - "code": "kdf" - }, - { - "name": "Seba", - "code": "kdg" - }, - { - "name": "Tem", - "code": "kdh" - }, - { - "name": "Kumam", - "code": "kdi" - }, - { - "name": "Karamojong", - "code": "kdj" - }, - { - "name": "Kwényi", - "code": "kdk" - }, - { - "name": "Numèè", - "code": "kdk" - }, - { - "name": "Tsikimba", - "code": "kdl" - }, - { - "name": "Kagoma", - "code": "kdm" - }, - { - "name": "Kunda", - "code": "kdn" - }, - { - "name": "Kaningdon-Nindem", - "code": "kdp" - }, - { - "name": "Koch", - "code": "kdq" - }, - { - "name": "Karaim", - "code": "kdr" - }, - { - "name": "Kuy", - "code": "kdt" - }, - { - "name": "Kadaru", - "code": "kdu" - }, - { - "name": "Koneraw", - "code": "kdw" - }, - { - "name": "Kam", - "code": "kdx" - }, - { - "name": "Keder", - "code": "kdy" - }, - { - "name": "Keijar", - "code": "kdy" - }, - { - "name": "Kwaja", - "code": "kdz" - }, - { - "name": "Kabuverdianu", - "code": "kea" - }, - { - "name": "Kélé", - "code": "keb" - }, - { - "name": "Keiga", - "code": "kec" - }, - { - "name": "Kerewe", - "code": "ked" - }, - { - "name": "Eastern Keres", - "code": "kee" - }, - { - "name": "Kpessi", - "code": "kef" - }, - { - "name": "Tese", - "code": "keg" - }, - { - "name": "Keak", - "code": "keh" - }, - { - "name": "Kei", - "code": "kei" - }, - { - "name": "Kadar", - "code": "kej" - }, - { - "name": "Kekchí", - "code": "kek" - }, - { - "name": "Kela (Democratic Republic of Congo)", - "code": "kel" - }, - { - "name": "Kemak", - "code": "kem" - }, - { - "name": "Kenyang", - "code": "ken" - }, - { - "name": "Kakwa", - "code": "keo" - }, - { - "name": "Kaikadi", - "code": "kep" - }, - { - "name": "Kamar", - "code": "keq" - }, - { - "name": "Kera", - "code": "ker" - }, - { - "name": "Kugbo", - "code": "kes" - }, - { - "name": "Ket", - "code": "ket" - }, - { - "name": "Akebu", - "code": "keu" - }, - { - "name": "Kanikkaran", - "code": "kev" - }, - { - "name": "West Kewa", - "code": "kew" - }, - { - "name": "Kukna", - "code": "kex" - }, - { - "name": "Kupia", - "code": "key" - }, - { - "name": "Kukele", - "code": "kez" - }, - { - "name": "Kodava", - "code": "kfa" - }, - { - "name": "Northwestern Kolami", - "code": "kfb" - }, - { - "name": "Konda-Dora", - "code": "kfc" - }, - { - "name": "Korra Koraga", - "code": "kfd" - }, - { - "name": "Kota (India)", - "code": "kfe" - }, - { - "name": "Koya", - "code": "kff" - }, - { - "name": "Kudiya", - "code": "kfg" - }, - { - "name": "Kurichiya", - "code": "kfh" - }, - { - "name": "Kannada Kurumba", - "code": "kfi" - }, - { - "name": "Kemiehua", - "code": "kfj" - }, - { - "name": "Kinnauri", - "code": "kfk" - }, - { - "name": "Kung", - "code": "kfl" - }, - { - "name": "Khunsari", - "code": "kfm" - }, - { - "name": "Kuk", - "code": "kfn" - }, - { - "name": "Koro (Côte d'Ivoire)", - "code": "kfo" - }, - { - "name": "Korwa", - "code": "kfp" - }, - { - "name": "Korku", - "code": "kfq" - }, - { - "name": "Kachhi", - "code": "kfr" - }, - { - "name": "Kutchi", - "code": "kfr" - }, - { - "name": "Bilaspuri", - "code": "kfs" - }, - { - "name": "Kanjari", - "code": "kft" - }, - { - "name": "Katkari", - "code": "kfu" - }, - { - "name": "Kurmukar", - "code": "kfv" - }, - { - "name": "Kharam Naga", - "code": "kfw" - }, - { - "name": "Kullu Pahari", - "code": "kfx" - }, - { - "name": "Kumaoni", - "code": "kfy" - }, - { - "name": "Koromfé", - "code": "kfz" - }, - { - "name": "Koyaga", - "code": "kga" - }, - { - "name": "Kawe", - "code": "kgb" - }, - { - "name": "Komering", - "code": "kge" - }, - { - "name": "Kube", - "code": "kgf" - }, - { - "name": "Kusunda", - "code": "kgg" - }, - { - "name": "Selangor Sign Language", - "code": "kgi" - }, - { - "name": "Gamale Kham", - "code": "kgj" - }, - { - "name": "Kaiwá", - "code": "kgk" - }, - { - "name": "Kunggari", - "code": "kgl" - }, - { - "name": "Karipúna", - "code": "kgm" - }, - { - "name": "Karingani", - "code": "kgn" - }, - { - "name": "Krongo", - "code": "kgo" - }, - { - "name": "Kaingang", - "code": "kgp" - }, - { - "name": "Kamoro", - "code": "kgq" - }, - { - "name": "Abun", - "code": "kgr" - }, - { - "name": "Kumbainggar", - "code": "kgs" - }, - { - "name": "Somyev", - "code": "kgt" - }, - { - "name": "Kobol", - "code": "kgu" - }, - { - "name": "Karas", - "code": "kgv" - }, - { - "name": "Karon Dori", - "code": "kgw" - }, - { - "name": "Kamaru", - "code": "kgx" - }, - { - "name": "Kyerung", - "code": "kgy" - }, - { - "name": "Khasi", - "code": "kha" - }, - { - "name": "Lü", - "code": "khb" - }, - { - "name": "Tukang Besi North", - "code": "khc" - }, - { - "name": "Bädi Kanum", - "code": "khd" - }, - { - "name": "Korowai", - "code": "khe" - }, - { - "name": "Khuen", - "code": "khf" - }, - { - "name": "Khams Tibetan", - "code": "khg" - }, - { - "name": "Kehu", - "code": "khh" - }, - { - "name": "Kuturmi", - "code": "khj" - }, - { - "name": "Halh Mongolian", - "code": "khk" - }, - { - "name": "Lusi", - "code": "khl" - }, - { - "name": "Khmer", - "code": "khm" - }, - { - "name": "Central Khmer", - "code": "khm" - }, - { - "name": "Khandesi", - "code": "khn" - }, - { - "name": "Khotanese", - "code": "kho" - }, - { - "name": "Sakan", - "code": "kho" - }, - { - "name": "Kapauri", - "code": "khp" - }, - { - "name": "Kapori", - "code": "khp" - }, - { - "name": "Koyra Chiini Songhay", - "code": "khq" - }, - { - "name": "Kharia", - "code": "khr" - }, - { - "name": "Kasua", - "code": "khs" - }, - { - "name": "Khamti", - "code": "kht" - }, - { - "name": "Nkhumbi", - "code": "khu" - }, - { - "name": "Khvarshi", - "code": "khv" - }, - { - "name": "Khowar", - "code": "khw" - }, - { - "name": "Kanu", - "code": "khx" - }, - { - "name": "Kele (Democratic Republic of Congo)", - "code": "khy" - }, - { - "name": "Keapara", - "code": "khz" - }, - { - "name": "Kim", - "code": "kia" - }, - { - "name": "Koalib", - "code": "kib" - }, - { - "name": "Kickapoo", - "code": "kic" - }, - { - "name": "Koshin", - "code": "kid" - }, - { - "name": "Kibet", - "code": "kie" - }, - { - "name": "Eastern Parbate Kham", - "code": "kif" - }, - { - "name": "Kimaama", - "code": "kig" - }, - { - "name": "Kimaghima", - "code": "kig" - }, - { - "name": "Kilmeri", - "code": "kih" - }, - { - "name": "Kitsai", - "code": "kii" - }, - { - "name": "Kilivila", - "code": "kij" - }, - { - "name": "Gikuyu", - "code": "kik" - }, - { - "name": "Kikuyu", - "code": "kik" - }, - { - "name": "Kariya", - "code": "kil" - }, - { - "name": "Karagas", - "code": "kim" - }, - { - "name": "Kinyarwanda", - "code": "kin" - }, - { - "name": "Kiowa", - "code": "kio" - }, - { - "name": "Sheshi Kham", - "code": "kip" - }, - { - "name": "Kosadle", - "code": "kiq" - }, - { - "name": "Kosare", - "code": "kiq" - }, - { - "name": "Kirghiz", - "code": "kir" - }, - { - "name": "Kyrgyz", - "code": "kir" - }, - { - "name": "Kis", - "code": "kis" - }, - { - "name": "Agob", - "code": "kit" - }, - { - "name": "Kirmanjki (individual language)", - "code": "kiu" - }, - { - "name": "Kimbu", - "code": "kiv" - }, - { - "name": "Northeast Kiwai", - "code": "kiw" - }, - { - "name": "Khiamniungan Naga", - "code": "kix" - }, - { - "name": "Kirikiri", - "code": "kiy" - }, - { - "name": "Kisi", - "code": "kiz" - }, - { - "name": "Mlap", - "code": "kja" - }, - { - "name": "Kanjobal", - "code": "kjb" - }, - { - "name": "Q'anjob'al", - "code": "kjb" - }, - { - "name": "Coastal Konjo", - "code": "kjc" - }, - { - "name": "Southern Kiwai", - "code": "kjd" - }, - { - "name": "Kisar", - "code": "kje" - }, - { - "name": "Khmu", - "code": "kjg" - }, - { - "name": "Khakas", - "code": "kjh" - }, - { - "name": "Zabana", - "code": "kji" - }, - { - "name": "Khinalugh", - "code": "kjj" - }, - { - "name": "Highland Konjo", - "code": "kjk" - }, - { - "name": "Western Parbate Kham", - "code": "kjl" - }, - { - "name": "Kháng", - "code": "kjm" - }, - { - "name": "Kunjen", - "code": "kjn" - }, - { - "name": "Harijan Kinnauri", - "code": "kjo" - }, - { - "name": "Pwo Eastern Karen", - "code": "kjp" - }, - { - "name": "Western Keres", - "code": "kjq" - }, - { - "name": "Kurudu", - "code": "kjr" - }, - { - "name": "East Kewa", - "code": "kjs" - }, - { - "name": "Phrae Pwo Karen", - "code": "kjt" - }, - { - "name": "Kashaya", - "code": "kju" - }, - { - "name": "Kaikavian Literary Language", - "code": "kjv" - }, - { - "name": "Ramopa", - "code": "kjx" - }, - { - "name": "Erave", - "code": "kjy" - }, - { - "name": "Bumthangkha", - "code": "kjz" - }, - { - "name": "Kakanda", - "code": "kka" - }, - { - "name": "Kwerisa", - "code": "kkb" - }, - { - "name": "Odoodee", - "code": "kkc" - }, - { - "name": "Kinuku", - "code": "kkd" - }, - { - "name": "Kakabe", - "code": "kke" - }, - { - "name": "Kalaktang Monpa", - "code": "kkf" - }, - { - "name": "Mabaka Valley Kalinga", - "code": "kkg" - }, - { - "name": "Khün", - "code": "kkh" - }, - { - "name": "Kagulu", - "code": "kki" - }, - { - "name": "Kako", - "code": "kkj" - }, - { - "name": "Kokota", - "code": "kkk" - }, - { - "name": "Kosarek Yale", - "code": "kkl" - }, - { - "name": "Kiong", - "code": "kkm" - }, - { - "name": "Kon Keu", - "code": "kkn" - }, - { - "name": "Karko", - "code": "kko" - }, - { - "name": "Gugubera", - "code": "kkp" - }, - { - "name": "Koko-Bera", - "code": "kkp" - }, - { - "name": "Kaeku", - "code": "kkq" - }, - { - "name": "Kir-Balar", - "code": "kkr" - }, - { - "name": "Giiwo", - "code": "kks" - }, - { - "name": "Koi", - "code": "kkt" - }, - { - "name": "Tumi", - "code": "kku" - }, - { - "name": "Kangean", - "code": "kkv" - }, - { - "name": "Teke-Kukuya", - "code": "kkw" - }, - { - "name": "Kohin", - "code": "kkx" - }, - { - "name": "Guguyimidjir", - "code": "kky" - }, - { - "name": "Guugu Yimidhirr", - "code": "kky" - }, - { - "name": "Kaska", - "code": "kkz" - }, - { - "name": "Klamath-Modoc", - "code": "kla" - }, - { - "name": "Kiliwa", - "code": "klb" - }, - { - "name": "Kolbila", - "code": "klc" - }, - { - "name": "Gamilaraay", - "code": "kld" - }, - { - "name": "Kulung (Nepal)", - "code": "kle" - }, - { - "name": "Kendeje", - "code": "klf" - }, - { - "name": "Tagakaulo", - "code": "klg" - }, - { - "name": "Weliki", - "code": "klh" - }, - { - "name": "Kalumpang", - "code": "kli" - }, - { - "name": "Khalaj", - "code": "klj" - }, - { - "name": "Kono (Nigeria)", - "code": "klk" - }, - { - "name": "Kagan Kalagan", - "code": "kll" - }, - { - "name": "Migum", - "code": "klm" - }, - { - "name": "Kalenjin", - "code": "kln" - }, - { - "name": "Kapya", - "code": "klo" - }, - { - "name": "Kamasa", - "code": "klp" - }, - { - "name": "Rumu", - "code": "klq" - }, - { - "name": "Khaling", - "code": "klr" - }, - { - "name": "Kalasha", - "code": "kls" - }, - { - "name": "Nukna", - "code": "klt" - }, - { - "name": "Klao", - "code": "klu" - }, - { - "name": "Maskelynes", - "code": "klv" - }, - { - "name": "Lindu", - "code": "klw" - }, - { - "name": "Tado", - "code": "klw" - }, - { - "name": "Koluwawa", - "code": "klx" - }, - { - "name": "Kalao", - "code": "kly" - }, - { - "name": "Kabola", - "code": "klz" - }, - { - "name": "Konni", - "code": "kma" - }, - { - "name": "Kimbundu", - "code": "kmb" - }, - { - "name": "Southern Dong", - "code": "kmc" - }, - { - "name": "Majukayang Kalinga", - "code": "kmd" - }, - { - "name": "Bakole", - "code": "kme" - }, - { - "name": "Kare (Papua New Guinea)", - "code": "kmf" - }, - { - "name": "Kâte", - "code": "kmg" - }, - { - "name": "Kalam", - "code": "kmh" - }, - { - "name": "Kami (Nigeria)", - "code": "kmi" - }, - { - "name": "Kumarbhag Paharia", - "code": "kmj" - }, - { - "name": "Limos Kalinga", - "code": "kmk" - }, - { - "name": "Tanudan Kalinga", - "code": "kml" - }, - { - "name": "Kom (India)", - "code": "kmm" - }, - { - "name": "Awtuw", - "code": "kmn" - }, - { - "name": "Kwoma", - "code": "kmo" - }, - { - "name": "Gimme", - "code": "kmp" - }, - { - "name": "Kwama", - "code": "kmq" - }, - { - "name": "Northern Kurdish", - "code": "kmr" - }, - { - "name": "Kamasau", - "code": "kms" - }, - { - "name": "Kemtuik", - "code": "kmt" - }, - { - "name": "Kanite", - "code": "kmu" - }, - { - "name": "Karipúna Creole French", - "code": "kmv" - }, - { - "name": "Komo (Democratic Republic of Congo)", - "code": "kmw" - }, - { - "name": "Waboda", - "code": "kmx" - }, - { - "name": "Koma", - "code": "kmy" - }, - { - "name": "Khorasani Turkish", - "code": "kmz" - }, - { - "name": "Dera (Nigeria)", - "code": "kna" - }, - { - "name": "Lubuagan Kalinga", - "code": "knb" - }, - { - "name": "Central Kanuri", - "code": "knc" - }, - { - "name": "Konda", - "code": "knd" - }, - { - "name": "Kankanaey", - "code": "kne" - }, - { - "name": "Mankanya", - "code": "knf" - }, - { - "name": "Koongo", - "code": "kng" - }, - { - "name": "Kanufi", - "code": "kni" - }, - { - "name": "Western Kanjobal", - "code": "knj" - }, - { - "name": "Kuranko", - "code": "knk" - }, - { - "name": "Keninjal", - "code": "knl" - }, - { - "name": "Kanamarí", - "code": "knm" - }, - { - "name": "Konkani (individual language)", - "code": "knn" - }, - { - "name": "Kono (Sierra Leone)", - "code": "kno" - }, - { - "name": "Kwanja", - "code": "knp" - }, - { - "name": "Kintaq", - "code": "knq" - }, - { - "name": "Kaningra", - "code": "knr" - }, - { - "name": "Kensiu", - "code": "kns" - }, - { - "name": "Panoan Katukína", - "code": "knt" - }, - { - "name": "Kono (Guinea)", - "code": "knu" - }, - { - "name": "Tabo", - "code": "knv" - }, - { - "name": "Kung-Ekoka", - "code": "knw" - }, - { - "name": "Kendayan", - "code": "knx" - }, - { - "name": "Salako", - "code": "knx" - }, - { - "name": "Kanyok", - "code": "kny" - }, - { - "name": "Kalamsé", - "code": "knz" - }, - { - "name": "Konomala", - "code": "koa" - }, - { - "name": "Kpati", - "code": "koc" - }, - { - "name": "Kodi", - "code": "kod" - }, - { - "name": "Kacipo-Bale Suri", - "code": "koe" - }, - { - "name": "Kubi", - "code": "kof" - }, - { - "name": "Cogui", - "code": "kog" - }, - { - "name": "Kogi", - "code": "kog" - }, - { - "name": "Koyo", - "code": "koh" - }, - { - "name": "Komi-Permyak", - "code": "koi" - }, - { - "name": "Konkani (macrolanguage)", - "code": "kok" - }, - { - "name": "Kol (Papua New Guinea)", - "code": "kol" - }, - { - "name": "Komi", - "code": "kom" - }, - { - "name": "Kongo", - "code": "kon" - }, - { - "name": "Konzo", - "code": "koo" - }, - { - "name": "Waube", - "code": "kop" - }, - { - "name": "Kota (Gabon)", - "code": "koq" - }, - { - "name": "Korean", - "code": "kor" - }, - { - "name": "Kosraean", - "code": "kos" - }, - { - "name": "Lagwan", - "code": "kot" - }, - { - "name": "Koke", - "code": "kou" - }, - { - "name": "Kudu-Camo", - "code": "kov" - }, - { - "name": "Kugama", - "code": "kow" - }, - { - "name": "Koyukon", - "code": "koy" - }, - { - "name": "Korak", - "code": "koz" - }, - { - "name": "Kutto", - "code": "kpa" - }, - { - "name": "Mullu Kurumba", - "code": "kpb" - }, - { - "name": "Curripaco", - "code": "kpc" - }, - { - "name": "Koba", - "code": "kpd" - }, - { - "name": "Kpelle", - "code": "kpe" - }, - { - "name": "Komba", - "code": "kpf" - }, - { - "name": "Kapingamarangi", - "code": "kpg" - }, - { - "name": "Kplang", - "code": "kph" - }, - { - "name": "Kofei", - "code": "kpi" - }, - { - "name": "Karajá", - "code": "kpj" - }, - { - "name": "Kpan", - "code": "kpk" - }, - { - "name": "Kpala", - "code": "kpl" - }, - { - "name": "Koho", - "code": "kpm" - }, - { - "name": "Kepkiriwát", - "code": "kpn" - }, - { - "name": "Ikposo", - "code": "kpo" - }, - { - "name": "Korupun-Sela", - "code": "kpq" - }, - { - "name": "Korafe-Yegha", - "code": "kpr" - }, - { - "name": "Tehit", - "code": "kps" - }, - { - "name": "Karata", - "code": "kpt" - }, - { - "name": "Kafoa", - "code": "kpu" - }, - { - "name": "Komi-Zyrian", - "code": "kpv" - }, - { - "name": "Kobon", - "code": "kpw" - }, - { - "name": "Mountain Koiali", - "code": "kpx" - }, - { - "name": "Koryak", - "code": "kpy" - }, - { - "name": "Kupsabiny", - "code": "kpz" - }, - { - "name": "Mum", - "code": "kqa" - }, - { - "name": "Kovai", - "code": "kqb" - }, - { - "name": "Doromu-Koki", - "code": "kqc" - }, - { - "name": "Koy Sanjaq Surat", - "code": "kqd" - }, - { - "name": "Kalagan", - "code": "kqe" - }, - { - "name": "Kakabai", - "code": "kqf" - }, - { - "name": "Khe", - "code": "kqg" - }, - { - "name": "Kisankasa", - "code": "kqh" - }, - { - "name": "Koitabu", - "code": "kqi" - }, - { - "name": "Koromira", - "code": "kqj" - }, - { - "name": "Kotafon Gbe", - "code": "kqk" - }, - { - "name": "Kyenele", - "code": "kql" - }, - { - "name": "Khisa", - "code": "kqm" - }, - { - "name": "Kaonde", - "code": "kqn" - }, - { - "name": "Eastern Krahn", - "code": "kqo" - }, - { - "name": "Kimré", - "code": "kqp" - }, - { - "name": "Krenak", - "code": "kqq" - }, - { - "name": "Kimaragang", - "code": "kqr" - }, - { - "name": "Northern Kissi", - "code": "kqs" - }, - { - "name": "Klias River Kadazan", - "code": "kqt" - }, - { - "name": "Seroa", - "code": "kqu" - }, - { - "name": "Okolod", - "code": "kqv" - }, - { - "name": "Kandas", - "code": "kqw" - }, - { - "name": "Mser", - "code": "kqx" - }, - { - "name": "Koorete", - "code": "kqy" - }, - { - "name": "Korana", - "code": "kqz" - }, - { - "name": "Kumhali", - "code": "kra" - }, - { - "name": "Karkin", - "code": "krb" - }, - { - "name": "Karachay-Balkar", - "code": "krc" - }, - { - "name": "Kairui-Midiki", - "code": "krd" - }, - { - "name": "Panará", - "code": "kre" - }, - { - "name": "Koro (Vanuatu)", - "code": "krf" - }, - { - "name": "Kurama", - "code": "krh" - }, - { - "name": "Krio", - "code": "kri" - }, - { - "name": "Kinaray-A", - "code": "krj" - }, - { - "name": "Kerek", - "code": "krk" - }, - { - "name": "Karelian", - "code": "krl" - }, - { - "name": "Sapo", - "code": "krn" - }, - { - "name": "Korop", - "code": "krp" - }, - { - "name": "Krung", - "code": "krr" - }, - { - "name": "Gbaya (Sudan)", - "code": "krs" - }, - { - "name": "Tumari Kanuri", - "code": "krt" - }, - { - "name": "Kurukh", - "code": "kru" - }, - { - "name": "Kavet", - "code": "krv" - }, - { - "name": "Western Krahn", - "code": "krw" - }, - { - "name": "Karon", - "code": "krx" - }, - { - "name": "Kryts", - "code": "kry" - }, - { - "name": "Sota Kanum", - "code": "krz" - }, - { - "name": "Shuwa-Zamani", - "code": "ksa" - }, - { - "name": "Shambala", - "code": "ksb" - }, - { - "name": "Southern Kalinga", - "code": "ksc" - }, - { - "name": "Kuanua", - "code": "ksd" - }, - { - "name": "Kuni", - "code": "kse" - }, - { - "name": "Bafia", - "code": "ksf" - }, - { - "name": "Kusaghe", - "code": "ksg" - }, - { - "name": "Kölsch", - "code": "ksh" - }, - { - "name": "I'saka", - "code": "ksi" - }, - { - "name": "Krisa", - "code": "ksi" - }, - { - "name": "Uare", - "code": "ksj" - }, - { - "name": "Kansa", - "code": "ksk" - }, - { - "name": "Kumalu", - "code": "ksl" - }, - { - "name": "Kumba", - "code": "ksm" - }, - { - "name": "Kasiguranin", - "code": "ksn" - }, - { - "name": "Kofa", - "code": "kso" - }, - { - "name": "Kaba", - "code": "ksp" - }, - { - "name": "Kwaami", - "code": "ksq" - }, - { - "name": "Borong", - "code": "ksr" - }, - { - "name": "Southern Kisi", - "code": "kss" - }, - { - "name": "Winyé", - "code": "kst" - }, - { - "name": "Khamyang", - "code": "ksu" - }, - { - "name": "Kusu", - "code": "ksv" - }, - { - "name": "S'gaw Karen", - "code": "ksw" - }, - { - "name": "Kedang", - "code": "ksx" - }, - { - "name": "Kharia Thar", - "code": "ksy" - }, - { - "name": "Kodaku", - "code": "ksz" - }, - { - "name": "Katua", - "code": "kta" - }, - { - "name": "Kambaata", - "code": "ktb" - }, - { - "name": "Kholok", - "code": "ktc" - }, - { - "name": "Kokata", - "code": "ktd" - }, - { - "name": "Kukatha", - "code": "ktd" - }, - { - "name": "Nubri", - "code": "kte" - }, - { - "name": "Kwami", - "code": "ktf" - }, - { - "name": "Kalkutung", - "code": "ktg" - }, - { - "name": "Karanga", - "code": "kth" - }, - { - "name": "North Muyu", - "code": "kti" - }, - { - "name": "Plapo Krumen", - "code": "ktj" - }, - { - "name": "Kaniet", - "code": "ktk" - }, - { - "name": "Koroshi", - "code": "ktl" - }, - { - "name": "Kurti", - "code": "ktm" - }, - { - "name": "Karitiâna", - "code": "ktn" - }, - { - "name": "Kuot", - "code": "kto" - }, - { - "name": "Kaduo", - "code": "ktp" - }, - { - "name": "Katabaga", - "code": "ktq" - }, - { - "name": "South Muyu", - "code": "kts" - }, - { - "name": "Ketum", - "code": "ktt" - }, - { - "name": "Kituba (Democratic Republic of Congo)", - "code": "ktu" - }, - { - "name": "Eastern Katu", - "code": "ktv" - }, - { - "name": "Kato", - "code": "ktw" - }, - { - "name": "Kaxararí", - "code": "ktx" - }, - { - "name": "Kango (Bas-Uélé District)", - "code": "kty" - }, - { - "name": "Juǀʼhoan", - "code": "ktz" - }, - { - "name": "Juǀʼhoansi", - "code": "ktz" - }, - { - "name": "Kuanyama", - "code": "kua" - }, - { - "name": "Kwanyama", - "code": "kua" - }, - { - "name": "Kutep", - "code": "kub" - }, - { - "name": "Kwinsu", - "code": "kuc" - }, - { - "name": "'Auhelawa", - "code": "kud" - }, - { - "name": "Kuman (Papua New Guinea)", - "code": "kue" - }, - { - "name": "Western Katu", - "code": "kuf" - }, - { - "name": "Kupa", - "code": "kug" - }, - { - "name": "Kushi", - "code": "kuh" - }, - { - "name": "Kalapalo", - "code": "kui" - }, - { - "name": "Kuikúro-Kalapálo", - "code": "kui" - }, - { - "name": "Kuria", - "code": "kuj" - }, - { - "name": "Kepo'", - "code": "kuk" - }, - { - "name": "Kulere", - "code": "kul" - }, - { - "name": "Kumyk", - "code": "kum" - }, - { - "name": "Kunama", - "code": "kun" - }, - { - "name": "Kumukio", - "code": "kuo" - }, - { - "name": "Kunimaipa", - "code": "kup" - }, - { - "name": "Karipuna", - "code": "kuq" - }, - { - "name": "Kurdish", - "code": "kur" - }, - { - "name": "Kusaal", - "code": "kus" - }, - { - "name": "Kutenai", - "code": "kut" - }, - { - "name": "Upper Kuskokwim", - "code": "kuu" - }, - { - "name": "Kur", - "code": "kuv" - }, - { - "name": "Kpagua", - "code": "kuw" - }, - { - "name": "Kukatja", - "code": "kux" - }, - { - "name": "Kuuku-Ya'u", - "code": "kuy" - }, - { - "name": "Kunza", - "code": "kuz" - }, - { - "name": "Bagvalal", - "code": "kva" - }, - { - "name": "Kubu", - "code": "kvb" - }, - { - "name": "Kove", - "code": "kvc" - }, - { - "name": "Kui (Indonesia)", - "code": "kvd" - }, - { - "name": "Kalabakan", - "code": "kve" - }, - { - "name": "Kabalai", - "code": "kvf" - }, - { - "name": "Kuni-Boazi", - "code": "kvg" - }, - { - "name": "Komodo", - "code": "kvh" - }, - { - "name": "Kwang", - "code": "kvi" - }, - { - "name": "Psikye", - "code": "kvj" - }, - { - "name": "Korean Sign Language", - "code": "kvk" - }, - { - "name": "Kayaw", - "code": "kvl" - }, - { - "name": "Kendem", - "code": "kvm" - }, - { - "name": "Border Kuna", - "code": "kvn" - }, - { - "name": "Dobel", - "code": "kvo" - }, - { - "name": "Kompane", - "code": "kvp" - }, - { - "name": "Geba Karen", - "code": "kvq" - }, - { - "name": "Kerinci", - "code": "kvr" - }, - { - "name": "Lahta", - "code": "kvt" - }, - { - "name": "Lahta Karen", - "code": "kvt" - }, - { - "name": "Yinbaw Karen", - "code": "kvu" - }, - { - "name": "Kola", - "code": "kvv" - }, - { - "name": "Wersing", - "code": "kvw" - }, - { - "name": "Parkari Koli", - "code": "kvx" - }, - { - "name": "Yintale", - "code": "kvy" - }, - { - "name": "Yintale Karen", - "code": "kvy" - }, - { - "name": "Tsakwambo", - "code": "kvz" - }, - { - "name": "Tsaukambo", - "code": "kvz" - }, - { - "name": "Dâw", - "code": "kwa" - }, - { - "name": "Kwa", - "code": "kwb" - }, - { - "name": "Likwala", - "code": "kwc" - }, - { - "name": "Kwaio", - "code": "kwd" - }, - { - "name": "Kwerba", - "code": "kwe" - }, - { - "name": "Kwara'ae", - "code": "kwf" - }, - { - "name": "Sara Kaba Deme", - "code": "kwg" - }, - { - "name": "Kowiai", - "code": "kwh" - }, - { - "name": "Awa-Cuaiquer", - "code": "kwi" - }, - { - "name": "Kwanga", - "code": "kwj" - }, - { - "name": "Kwakiutl", - "code": "kwk" - }, - { - "name": "Kofyar", - "code": "kwl" - }, - { - "name": "Kwambi", - "code": "kwm" - }, - { - "name": "Kwangali", - "code": "kwn" - }, - { - "name": "Kwomtari", - "code": "kwo" - }, - { - "name": "Kodia", - "code": "kwp" - }, - { - "name": "Kwer", - "code": "kwr" - }, - { - "name": "Kwese", - "code": "kws" - }, - { - "name": "Kwesten", - "code": "kwt" - }, - { - "name": "Kwakum", - "code": "kwu" - }, - { - "name": "Sara Kaba Náà", - "code": "kwv" - }, - { - "name": "Kwinti", - "code": "kww" - }, - { - "name": "Khirwar", - "code": "kwx" - }, - { - "name": "San Salvador Kongo", - "code": "kwy" - }, - { - "name": "Kwadi", - "code": "kwz" - }, - { - "name": "Kairiru", - "code": "kxa" - }, - { - "name": "Krobu", - "code": "kxb" - }, - { - "name": "Khonso", - "code": "kxc" - }, - { - "name": "Konso", - "code": "kxc" - }, - { - "name": "Brunei", - "code": "kxd" - }, - { - "name": "Manumanaw", - "code": "kxf" - }, - { - "name": "Manumanaw Karen", - "code": "kxf" - }, - { - "name": "Karo (Ethiopia)", - "code": "kxh" - }, - { - "name": "Keningau Murut", - "code": "kxi" - }, - { - "name": "Kulfa", - "code": "kxj" - }, - { - "name": "Zayein Karen", - "code": "kxk" - }, - { - "name": "Northern Khmer", - "code": "kxm" - }, - { - "name": "Kanowit-Tanjong Melanau", - "code": "kxn" - }, - { - "name": "Kanoé", - "code": "kxo" - }, - { - "name": "Wadiyara Koli", - "code": "kxp" - }, - { - "name": "Smärky Kanum", - "code": "kxq" - }, - { - "name": "Koro (Papua New Guinea)", - "code": "kxr" - }, - { - "name": "Kangjia", - "code": "kxs" - }, - { - "name": "Koiwat", - "code": "kxt" - }, - { - "name": "Kuvi", - "code": "kxv" - }, - { - "name": "Konai", - "code": "kxw" - }, - { - "name": "Likuba", - "code": "kxx" - }, - { - "name": "Kayong", - "code": "kxy" - }, - { - "name": "Kerewo", - "code": "kxz" - }, - { - "name": "Kwaya", - "code": "kya" - }, - { - "name": "Butbut Kalinga", - "code": "kyb" - }, - { - "name": "Kyaka", - "code": "kyc" - }, - { - "name": "Karey", - "code": "kyd" - }, - { - "name": "Krache", - "code": "kye" - }, - { - "name": "Kouya", - "code": "kyf" - }, - { - "name": "Keyagana", - "code": "kyg" - }, - { - "name": "Karok", - "code": "kyh" - }, - { - "name": "Kiput", - "code": "kyi" - }, - { - "name": "Karao", - "code": "kyj" - }, - { - "name": "Kamayo", - "code": "kyk" - }, - { - "name": "Kalapuya", - "code": "kyl" - }, - { - "name": "Kpatili", - "code": "kym" - }, - { - "name": "Northern Binukidnon", - "code": "kyn" - }, - { - "name": "Kelon", - "code": "kyo" - }, - { - "name": "Kang", - "code": "kyp" - }, - { - "name": "Kenga", - "code": "kyq" - }, - { - "name": "Kuruáya", - "code": "kyr" - }, - { - "name": "Baram Kayan", - "code": "kys" - }, - { - "name": "Kayagar", - "code": "kyt" - }, - { - "name": "Western Kayah", - "code": "kyu" - }, - { - "name": "Kayort", - "code": "kyv" - }, - { - "name": "Kudmali", - "code": "kyw" - }, - { - "name": "Rapoisi", - "code": "kyx" - }, - { - "name": "Kambaira", - "code": "kyy" - }, - { - "name": "Kayabí", - "code": "kyz" - }, - { - "name": "Western Karaboro", - "code": "kza" - }, - { - "name": "Kaibobo", - "code": "kzb" - }, - { - "name": "Bondoukou Kulango", - "code": "kzc" - }, - { - "name": "Kadai", - "code": "kzd" - }, - { - "name": "Kosena", - "code": "kze" - }, - { - "name": "Da'a Kaili", - "code": "kzf" - }, - { - "name": "Kikai", - "code": "kzg" - }, - { - "name": "Kelabit", - "code": "kzi" - }, - { - "name": "Kazukuru", - "code": "kzk" - }, - { - "name": "Kayeli", - "code": "kzl" - }, - { - "name": "Kais", - "code": "kzm" - }, - { - "name": "Kokola", - "code": "kzn" - }, - { - "name": "Kaningi", - "code": "kzo" - }, - { - "name": "Kaidipang", - "code": "kzp" - }, - { - "name": "Kaike", - "code": "kzq" - }, - { - "name": "Karang", - "code": "kzr" - }, - { - "name": "Sugut Dusun", - "code": "kzs" - }, - { - "name": "Kayupulau", - "code": "kzu" - }, - { - "name": "Komyandaret", - "code": "kzv" - }, - { - "name": "Karirí-Xocó", - "code": "kzw" - }, - { - "name": "Kamarian", - "code": "kzx" - }, - { - "name": "Kango (Tshopo District)", - "code": "kzy" - }, - { - "name": "Kalabra", - "code": "kzz" - }, - { - "name": "Southern Subanen", - "code": "laa" - }, - { - "name": "Linear A", - "code": "lab" - }, - { - "name": "Lacandon", - "code": "lac" - }, - { - "name": "Ladino", - "code": "lad" - }, - { - "name": "Pattani", - "code": "lae" - }, - { - "name": "Lafofa", - "code": "laf" - }, - { - "name": "Langi", - "code": "lag" - }, - { - "name": "Lahnda", - "code": "lah" - }, - { - "name": "Lambya", - "code": "lai" - }, - { - "name": "Lango (Uganda)", - "code": "laj" - }, - { - "name": "Laka (Nigeria)", - "code": "lak" - }, - { - "name": "Lalia", - "code": "lal" - }, - { - "name": "Lamba", - "code": "lam" - }, - { - "name": "Laru", - "code": "lan" - }, - { - "name": "Lao", - "code": "lao" - }, - { - "name": "Laka (Chad)", - "code": "lap" - }, - { - "name": "Qabiao", - "code": "laq" - }, - { - "name": "Larteh", - "code": "lar" - }, - { - "name": "Lama (Togo)", - "code": "las" - }, - { - "name": "Latin", - "code": "lat" - }, - { - "name": "Laba", - "code": "lau" - }, - { - "name": "Latvian", - "code": "lav" - }, - { - "name": "Lauje", - "code": "law" - }, - { - "name": "Tiwa", - "code": "lax" - }, - { - "name": "Lama Bai", - "code": "lay" - }, - { - "name": "Aribwatsa", - "code": "laz" - }, - { - "name": "Label", - "code": "lbb" - }, - { - "name": "Lakkia", - "code": "lbc" - }, - { - "name": "Lak", - "code": "lbe" - }, - { - "name": "Tinani", - "code": "lbf" - }, - { - "name": "Laopang", - "code": "lbg" - }, - { - "name": "La'bi", - "code": "lbi" - }, - { - "name": "Ladakhi", - "code": "lbj" - }, - { - "name": "Central Bontok", - "code": "lbk" - }, - { - "name": "Libon Bikol", - "code": "lbl" - }, - { - "name": "Lodhi", - "code": "lbm" - }, - { - "name": "Rmeet", - "code": "lbn" - }, - { - "name": "Laven", - "code": "lbo" - }, - { - "name": "Wampar", - "code": "lbq" - }, - { - "name": "Lohorung", - "code": "lbr" - }, - { - "name": "Libyan Sign Language", - "code": "lbs" - }, - { - "name": "Lachi", - "code": "lbt" - }, - { - "name": "Labu", - "code": "lbu" - }, - { - "name": "Lavatbura-Lamusong", - "code": "lbv" - }, - { - "name": "Tolaki", - "code": "lbw" - }, - { - "name": "Lawangan", - "code": "lbx" - }, - { - "name": "Lamalama", - "code": "lby" - }, - { - "name": "Lamu-Lamu", - "code": "lby" - }, - { - "name": "Lardil", - "code": "lbz" - }, - { - "name": "Legenyem", - "code": "lcc" - }, - { - "name": "Lola", - "code": "lcd" - }, - { - "name": "Loncong", - "code": "lce" - }, - { - "name": "Sekak", - "code": "lce" - }, - { - "name": "Lubu", - "code": "lcf" - }, - { - "name": "Luchazi", - "code": "lch" - }, - { - "name": "Lisela", - "code": "lcl" - }, - { - "name": "Tungag", - "code": "lcm" - }, - { - "name": "Western Lawa", - "code": "lcp" - }, - { - "name": "Luhu", - "code": "lcq" - }, - { - "name": "Lisabata-Nuniali", - "code": "lcs" - }, - { - "name": "Kla-Dan", - "code": "lda" - }, - { - "name": "Dũya", - "code": "ldb" - }, - { - "name": "Luri", - "code": "ldd" - }, - { - "name": "Lenyima", - "code": "ldg" - }, - { - "name": "Lamja-Dengsa-Tola", - "code": "ldh" - }, - { - "name": "Laari", - "code": "ldi" - }, - { - "name": "Lemoro", - "code": "ldj" - }, - { - "name": "Leelau", - "code": "ldk" - }, - { - "name": "Kaan", - "code": "ldl" - }, - { - "name": "Landoma", - "code": "ldm" - }, - { - "name": "Láadan", - "code": "ldn" - }, - { - "name": "Loo", - "code": "ldo" - }, - { - "name": "Tso", - "code": "ldp" - }, - { - "name": "Lufu", - "code": "ldq" - }, - { - "name": "Lega-Shabunda", - "code": "lea" - }, - { - "name": "Lala-Bisa", - "code": "leb" - }, - { - "name": "Leco", - "code": "lec" - }, - { - "name": "Lendu", - "code": "led" - }, - { - "name": "Lyélé", - "code": "lee" - }, - { - "name": "Lelemi", - "code": "lef" - }, - { - "name": "Lenje", - "code": "leh" - }, - { - "name": "Lemio", - "code": "lei" - }, - { - "name": "Lengola", - "code": "lej" - }, - { - "name": "Leipon", - "code": "lek" - }, - { - "name": "Lele (Democratic Republic of Congo)", - "code": "lel" - }, - { - "name": "Nomaande", - "code": "lem" - }, - { - "name": "Lenca", - "code": "len" - }, - { - "name": "Leti (Cameroon)", - "code": "leo" - }, - { - "name": "Lepcha", - "code": "lep" - }, - { - "name": "Lembena", - "code": "leq" - }, - { - "name": "Lenkau", - "code": "ler" - }, - { - "name": "Lese", - "code": "les" - }, - { - "name": "Amio-Gelimi", - "code": "let" - }, - { - "name": "Lesing-Gelimi", - "code": "let" - }, - { - "name": "Kara (Papua New Guinea)", - "code": "leu" - }, - { - "name": "Lamma", - "code": "lev" - }, - { - "name": "Ledo Kaili", - "code": "lew" - }, - { - "name": "Luang", - "code": "lex" - }, - { - "name": "Lemolang", - "code": "ley" - }, - { - "name": "Lezghian", - "code": "lez" - }, - { - "name": "Lefa", - "code": "lfa" - }, - { - "name": "Lingua Franca Nova", - "code": "lfn" - }, - { - "name": "Lungga", - "code": "lga" - }, - { - "name": "Laghu", - "code": "lgb" - }, - { - "name": "Lugbara", - "code": "lgg" - }, - { - "name": "Laghuu", - "code": "lgh" - }, - { - "name": "Lengilu", - "code": "lgi" - }, - { - "name": "Lingarak", - "code": "lgk" - }, - { - "name": "Neverver", - "code": "lgk" - }, - { - "name": "Wala", - "code": "lgl" - }, - { - "name": "Lega-Mwenga", - "code": "lgm" - }, - { - "name": "Opuuo", - "code": "lgn" - }, - { - "name": "T'apo", - "code": "lgn" - }, - { - "name": "Logba", - "code": "lgq" - }, - { - "name": "Lengo", - "code": "lgr" - }, - { - "name": "Pahi", - "code": "lgt" - }, - { - "name": "Longgu", - "code": "lgu" - }, - { - "name": "Ligenza", - "code": "lgz" - }, - { - "name": "Laha (Viet Nam)", - "code": "lha" - }, - { - "name": "Laha (Indonesia)", - "code": "lhh" - }, - { - "name": "Lahu Shi", - "code": "lhi" - }, - { - "name": "Lahul Lohar", - "code": "lhl" - }, - { - "name": "Lhomi", - "code": "lhm" - }, - { - "name": "Lahanan", - "code": "lhn" - }, - { - "name": "Lhokpu", - "code": "lhp" - }, - { - "name": "Mlahsö", - "code": "lhs" - }, - { - "name": "Lo-Toga", - "code": "lht" - }, - { - "name": "Lahu", - "code": "lhu" - }, - { - "name": "West-Central Limba", - "code": "lia" - }, - { - "name": "Likum", - "code": "lib" - }, - { - "name": "Hlai", - "code": "lic" - }, - { - "name": "Nyindrou", - "code": "lid" - }, - { - "name": "Likila", - "code": "lie" - }, - { - "name": "Limbu", - "code": "lif" - }, - { - "name": "Ligbi", - "code": "lig" - }, - { - "name": "Lihir", - "code": "lih" - }, - { - "name": "Ligurian", - "code": "lij" - }, - { - "name": "Lika", - "code": "lik" - }, - { - "name": "Lillooet", - "code": "lil" - }, - { - "name": "Limburgan", - "code": "lim" - }, - { - "name": "Limburger", - "code": "lim" - }, - { - "name": "Limburgish", - "code": "lim" - }, - { - "name": "Lingala", - "code": "lin" - }, - { - "name": "Liki", - "code": "lio" - }, - { - "name": "Sekpele", - "code": "lip" - }, - { - "name": "Libido", - "code": "liq" - }, - { - "name": "Liberian English", - "code": "lir" - }, - { - "name": "Lisu", - "code": "lis" - }, - { - "name": "Lithuanian", - "code": "lit" - }, - { - "name": "Logorik", - "code": "liu" - }, - { - "name": "Liv", - "code": "liv" - }, - { - "name": "Col", - "code": "liw" - }, - { - "name": "Liabuku", - "code": "lix" - }, - { - "name": "Banda-Bambari", - "code": "liy" - }, - { - "name": "Libinza", - "code": "liz" - }, - { - "name": "Golpa", - "code": "lja" - }, - { - "name": "Rampi", - "code": "lje" - }, - { - "name": "Laiyolo", - "code": "lji" - }, - { - "name": "Li'o", - "code": "ljl" - }, - { - "name": "Lampung Api", - "code": "ljp" - }, - { - "name": "Yirandali", - "code": "ljw" - }, - { - "name": "Yuru", - "code": "ljx" - }, - { - "name": "Lakalei", - "code": "lka" - }, - { - "name": "Kabras", - "code": "lkb" - }, - { - "name": "Lukabaras", - "code": "lkb" - }, - { - "name": "Kucong", - "code": "lkc" - }, - { - "name": "Lakondê", - "code": "lkd" - }, - { - "name": "Kenyi", - "code": "lke" - }, - { - "name": "Lakha", - "code": "lkh" - }, - { - "name": "Laki", - "code": "lki" - }, - { - "name": "Remun", - "code": "lkj" - }, - { - "name": "Laeko-Libuat", - "code": "lkl" - }, - { - "name": "Kalaamaya", - "code": "lkm" - }, - { - "name": "Lakon", - "code": "lkn" - }, - { - "name": "Vure", - "code": "lkn" - }, - { - "name": "Khayo", - "code": "lko" - }, - { - "name": "Olukhayo", - "code": "lko" - }, - { - "name": "Päri", - "code": "lkr" - }, - { - "name": "Kisa", - "code": "lks" - }, - { - "name": "Olushisa", - "code": "lks" - }, - { - "name": "Lakota", - "code": "lkt" - }, - { - "name": "Kungkari", - "code": "lku" - }, - { - "name": "Lokoya", - "code": "lky" - }, - { - "name": "Lala-Roba", - "code": "lla" - }, - { - "name": "Lolo", - "code": "llb" - }, - { - "name": "Lele (Guinea)", - "code": "llc" - }, - { - "name": "Ladin", - "code": "lld" - }, - { - "name": "Lele (Papua New Guinea)", - "code": "lle" - }, - { - "name": "Hermit", - "code": "llf" - }, - { - "name": "Lole", - "code": "llg" - }, - { - "name": "Lamu", - "code": "llh" - }, - { - "name": "Teke-Laali", - "code": "lli" - }, - { - "name": "Ladji Ladji", - "code": "llj" - }, - { - "name": "Lelak", - "code": "llk" - }, - { - "name": "Lilau", - "code": "lll" - }, - { - "name": "Lasalimu", - "code": "llm" - }, - { - "name": "Lele (Chad)", - "code": "lln" - }, - { - "name": "North Efate", - "code": "llp" - }, - { - "name": "Lolak", - "code": "llq" - }, - { - "name": "Lithuanian Sign Language", - "code": "lls" - }, - { - "name": "Lau", - "code": "llu" - }, - { - "name": "Lauan", - "code": "llx" - }, - { - "name": "East Limba", - "code": "lma" - }, - { - "name": "Merei", - "code": "lmb" - }, - { - "name": "Limilngan", - "code": "lmc" - }, - { - "name": "Lumun", - "code": "lmd" - }, - { - "name": "Pévé", - "code": "lme" - }, - { - "name": "South Lembata", - "code": "lmf" - }, - { - "name": "Lamogai", - "code": "lmg" - }, - { - "name": "Lambichhong", - "code": "lmh" - }, - { - "name": "Lombi", - "code": "lmi" - }, - { - "name": "West Lembata", - "code": "lmj" - }, - { - "name": "Lamkang", - "code": "lmk" - }, - { - "name": "Hano", - "code": "lml" - }, - { - "name": "Lambadi", - "code": "lmn" - }, - { - "name": "Lombard", - "code": "lmo" - }, - { - "name": "Limbum", - "code": "lmp" - }, - { - "name": "Lamatuka", - "code": "lmq" - }, - { - "name": "Lamalera", - "code": "lmr" - }, - { - "name": "Lamenu", - "code": "lmu" - }, - { - "name": "Lomaiviti", - "code": "lmv" - }, - { - "name": "Lake Miwok", - "code": "lmw" - }, - { - "name": "Laimbue", - "code": "lmx" - }, - { - "name": "Lamboya", - "code": "lmy" - }, - { - "name": "Langbashe", - "code": "lna" - }, - { - "name": "Mbalanhu", - "code": "lnb" - }, - { - "name": "Lun Bawang", - "code": "lnd" - }, - { - "name": "Lundayeh", - "code": "lnd" - }, - { - "name": "Langobardic", - "code": "lng" - }, - { - "name": "Lanoh", - "code": "lnh" - }, - { - "name": "Daantanai'", - "code": "lni" - }, - { - "name": "Leningitij", - "code": "lnj" - }, - { - "name": "South Central Banda", - "code": "lnl" - }, - { - "name": "Langam", - "code": "lnm" - }, - { - "name": "Lorediakarkar", - "code": "lnn" - }, - { - "name": "Lango (South Sudan)", - "code": "lno" - }, - { - "name": "Lamnso'", - "code": "lns" - }, - { - "name": "Longuda", - "code": "lnu" - }, - { - "name": "Lanima", - "code": "lnw" - }, - { - "name": "Lonzo", - "code": "lnz" - }, - { - "name": "Loloda", - "code": "loa" - }, - { - "name": "Lobi", - "code": "lob" - }, - { - "name": "Inonhan", - "code": "loc" - }, - { - "name": "Saluan", - "code": "loe" - }, - { - "name": "Logol", - "code": "lof" - }, - { - "name": "Logo", - "code": "log" - }, - { - "name": "Narim", - "code": "loh" - }, - { - "name": "Loma (Côte d'Ivoire)", - "code": "loi" - }, - { - "name": "Lou", - "code": "loj" - }, - { - "name": "Loko", - "code": "lok" - }, - { - "name": "Mongo", - "code": "lol" - }, - { - "name": "Loma (Liberia)", - "code": "lom" - }, - { - "name": "Malawi Lomwe", - "code": "lon" - }, - { - "name": "Lombo", - "code": "loo" - }, - { - "name": "Lopa", - "code": "lop" - }, - { - "name": "Lobala", - "code": "loq" - }, - { - "name": "Téén", - "code": "lor" - }, - { - "name": "Loniu", - "code": "los" - }, - { - "name": "Otuho", - "code": "lot" - }, - { - "name": "Louisiana Creole", - "code": "lou" - }, - { - "name": "Lopi", - "code": "lov" - }, - { - "name": "Tampias Lobu", - "code": "low" - }, - { - "name": "Loun", - "code": "lox" - }, - { - "name": "Loke", - "code": "loy" - }, - { - "name": "Lozi", - "code": "loz" - }, - { - "name": "Lelepa", - "code": "lpa" - }, - { - "name": "Lepki", - "code": "lpe" - }, - { - "name": "Long Phuri Naga", - "code": "lpn" - }, - { - "name": "Lipo", - "code": "lpo" - }, - { - "name": "Lopit", - "code": "lpx" - }, - { - "name": "Rara Bakati'", - "code": "lra" - }, - { - "name": "Northern Luri", - "code": "lrc" - }, - { - "name": "Laurentian", - "code": "lre" - }, - { - "name": "Laragia", - "code": "lrg" - }, - { - "name": "Marachi", - "code": "lri" - }, - { - "name": "Olumarachi", - "code": "lri" - }, - { - "name": "Loarki", - "code": "lrk" - }, - { - "name": "Lari", - "code": "lrl" - }, - { - "name": "Marama", - "code": "lrm" - }, - { - "name": "Olumarama", - "code": "lrm" - }, - { - "name": "Lorang", - "code": "lrn" - }, - { - "name": "Laro", - "code": "lro" - }, - { - "name": "Southern Yamphu", - "code": "lrr" - }, - { - "name": "Larantuka Malay", - "code": "lrt" - }, - { - "name": "Larevat", - "code": "lrv" - }, - { - "name": "Lemerig", - "code": "lrz" - }, - { - "name": "Lasgerdi", - "code": "lsa" - }, - { - "name": "Burundian Sign Language", - "code": "lsb" - }, - { - "name": "Langue des Signes Burundaise", - "code": "lsb" - }, - { - "name": "Lishana Deni", - "code": "lsd" - }, - { - "name": "Lusengo", - "code": "lse" - }, - { - "name": "Lish", - "code": "lsh" - }, - { - "name": "Lashi", - "code": "lsi" - }, - { - "name": "Latvian Sign Language", - "code": "lsl" - }, - { - "name": "Olusamia", - "code": "lsm" - }, - { - "name": "Saamia", - "code": "lsm" - }, - { - "name": "Tibetan Sign Language", - "code": "lsn" - }, - { - "name": "Laos Sign Language", - "code": "lso" - }, - { - "name": "Lengua de Señas Panameñas", - "code": "lsp" - }, - { - "name": "Panamanian Sign Language", - "code": "lsp" - }, - { - "name": "Aruop", - "code": "lsr" - }, - { - "name": "Lasi", - "code": "lss" - }, - { - "name": "Trinidad and Tobago Sign Language", - "code": "lst" - }, - { - "name": "Sivia Sign Language", - "code": "lsv" - }, - { - "name": "Mauritian Sign Language", - "code": "lsy" - }, - { - "name": "Late Middle Chinese", - "code": "ltc" - }, - { - "name": "Latgalian", - "code": "ltg" - }, - { - "name": "Thur", - "code": "lth" - }, - { - "name": "Leti (Indonesia)", - "code": "lti" - }, - { - "name": "Latundê", - "code": "ltn" - }, - { - "name": "Olutsotso", - "code": "lto" - }, - { - "name": "Tsotso", - "code": "lto" - }, - { - "name": "Lutachoni", - "code": "lts" - }, - { - "name": "Tachoni", - "code": "lts" - }, - { - "name": "Latu", - "code": "ltu" - }, - { - "name": "Letzeburgesch", - "code": "ltz" - }, - { - "name": "Luxembourgish", - "code": "ltz" - }, - { - "name": "Luba-Lulua", - "code": "lua" - }, - { - "name": "Luba-Katanga", - "code": "lub" - }, - { - "name": "Aringa", - "code": "luc" - }, - { - "name": "Ludian", - "code": "lud" - }, - { - "name": "Luvale", - "code": "lue" - }, - { - "name": "Laua", - "code": "luf" - }, - { - "name": "Ganda", - "code": "lug" - }, - { - "name": "Luiseno", - "code": "lui" - }, - { - "name": "Luna", - "code": "luj" - }, - { - "name": "Lunanakha", - "code": "luk" - }, - { - "name": "Olu'bo", - "code": "lul" - }, - { - "name": "Luimbi", - "code": "lum" - }, - { - "name": "Lunda", - "code": "lun" - }, - { - "name": "Dholuo", - "code": "luo" - }, - { - "name": "Luo (Kenya and Tanzania)", - "code": "luo" - }, - { - "name": "Lumbu", - "code": "lup" - }, - { - "name": "Lucumi", - "code": "luq" - }, - { - "name": "Laura", - "code": "lur" - }, - { - "name": "Lushai", - "code": "lus" - }, - { - "name": "Lushootseed", - "code": "lut" - }, - { - "name": "Lumba-Yakkha", - "code": "luu" - }, - { - "name": "Luwati", - "code": "luv" - }, - { - "name": "Luo (Cameroon)", - "code": "luw" - }, - { - "name": "Luyia", - "code": "luy" - }, - { - "name": "Oluluyia", - "code": "luy" - }, - { - "name": "Southern Luri", - "code": "luz" - }, - { - "name": "Maku'a", - "code": "lva" - }, - { - "name": "Lavi", - "code": "lvi" - }, - { - "name": "Lavukaleve", - "code": "lvk" - }, - { - "name": "Standard Latvian", - "code": "lvs" - }, - { - "name": "Levuka", - "code": "lvu" - }, - { - "name": "Lwalu", - "code": "lwa" - }, - { - "name": "Lewo Eleng", - "code": "lwe" - }, - { - "name": "Oluwanga", - "code": "lwg" - }, - { - "name": "Wanga", - "code": "lwg" - }, - { - "name": "White Lachi", - "code": "lwh" - }, - { - "name": "Eastern Lawa", - "code": "lwl" - }, - { - "name": "Laomian", - "code": "lwm" - }, - { - "name": "Luwo", - "code": "lwo" - }, - { - "name": "Malawian Sign Language", - "code": "lws" - }, - { - "name": "Lewotobi", - "code": "lwt" - }, - { - "name": "Lawu", - "code": "lwu" - }, - { - "name": "Lewo", - "code": "lww" - }, - { - "name": "Lakurumau", - "code": "lxm" - }, - { - "name": "Layakha", - "code": "lya" - }, - { - "name": "Lyngngam", - "code": "lyg" - }, - { - "name": "Luyana", - "code": "lyn" - }, - { - "name": "Literary Chinese", - "code": "lzh" - }, - { - "name": "Litzlitz", - "code": "lzl" - }, - { - "name": "Leinong Naga", - "code": "lzn" - }, - { - "name": "Laz", - "code": "lzz" - }, - { - "name": "San Jerónimo Tecóatl Mazatec", - "code": "maa" - }, - { - "name": "Yutanduchi Mixtec", - "code": "mab" - }, - { - "name": "Madurese", - "code": "mad" - }, - { - "name": "Bo-Rukul", - "code": "mae" - }, - { - "name": "Mafa", - "code": "maf" - }, - { - "name": "Magahi", - "code": "mag" - }, - { - "name": "Marshallese", - "code": "mah" - }, - { - "name": "Maithili", - "code": "mai" - }, - { - "name": "Jalapa De Díaz Mazatec", - "code": "maj" - }, - { - "name": "Makasar", - "code": "mak" - }, - { - "name": "Malayalam", - "code": "mal" - }, - { - "name": "Mam", - "code": "mam" - }, - { - "name": "Manding", - "code": "man" - }, - { - "name": "Mandingo", - "code": "man" - }, - { - "name": "Chiquihuitlán Mazatec", - "code": "maq" - }, - { - "name": "Marathi", - "code": "mar" - }, - { - "name": "Masai", - "code": "mas" - }, - { - "name": "San Francisco Matlatzinca", - "code": "mat" - }, - { - "name": "Huautla Mazatec", - "code": "mau" - }, - { - "name": "Sateré-Mawé", - "code": "mav" - }, - { - "name": "Mampruli", - "code": "maw" - }, - { - "name": "North Moluccan Malay", - "code": "max" - }, - { - "name": "Central Mazahua", - "code": "maz" - }, - { - "name": "Higaonon", - "code": "mba" - }, - { - "name": "Western Bukidnon Manobo", - "code": "mbb" - }, - { - "name": "Macushi", - "code": "mbc" - }, - { - "name": "Dibabawon Manobo", - "code": "mbd" - }, - { - "name": "Molale", - "code": "mbe" - }, - { - "name": "Baba Malay", - "code": "mbf" - }, - { - "name": "Mangseng", - "code": "mbh" - }, - { - "name": "Ilianen Manobo", - "code": "mbi" - }, - { - "name": "Nadëb", - "code": "mbj" - }, - { - "name": "Malol", - "code": "mbk" - }, - { - "name": "Maxakalí", - "code": "mbl" - }, - { - "name": "Ombamba", - "code": "mbm" - }, - { - "name": "Macaguán", - "code": "mbn" - }, - { - "name": "Mbo (Cameroon)", - "code": "mbo" - }, - { - "name": "Malayo", - "code": "mbp" - }, - { - "name": "Maisin", - "code": "mbq" - }, - { - "name": "Nukak Makú", - "code": "mbr" - }, - { - "name": "Sarangani Manobo", - "code": "mbs" - }, - { - "name": "Matigsalug Manobo", - "code": "mbt" - }, - { - "name": "Mbula-Bwazza", - "code": "mbu" - }, - { - "name": "Mbulungish", - "code": "mbv" - }, - { - "name": "Maring", - "code": "mbw" - }, - { - "name": "Mari (East Sepik Province)", - "code": "mbx" - }, - { - "name": "Memoni", - "code": "mby" - }, - { - "name": "Amoltepec Mixtec", - "code": "mbz" - }, - { - "name": "Maca", - "code": "mca" - }, - { - "name": "Machiguenga", - "code": "mcb" - }, - { - "name": "Bitur", - "code": "mcc" - }, - { - "name": "Sharanahua", - "code": "mcd" - }, - { - "name": "Itundujia Mixtec", - "code": "mce" - }, - { - "name": "Matsés", - "code": "mcf" - }, - { - "name": "Mapoyo", - "code": "mcg" - }, - { - "name": "Maquiritari", - "code": "mch" - }, - { - "name": "Mese", - "code": "mci" - }, - { - "name": "Mvanip", - "code": "mcj" - }, - { - "name": "Mbunda", - "code": "mck" - }, - { - "name": "Macaguaje", - "code": "mcl" - }, - { - "name": "Malaccan Creole Portuguese", - "code": "mcm" - }, - { - "name": "Masana", - "code": "mcn" - }, - { - "name": "Coatlán Mixe", - "code": "mco" - }, - { - "name": "Makaa", - "code": "mcp" - }, - { - "name": "Ese", - "code": "mcq" - }, - { - "name": "Menya", - "code": "mcr" - }, - { - "name": "Mambai", - "code": "mcs" - }, - { - "name": "Mengisa", - "code": "mct" - }, - { - "name": "Cameroon Mambila", - "code": "mcu" - }, - { - "name": "Minanibai", - "code": "mcv" - }, - { - "name": "Mawa (Chad)", - "code": "mcw" - }, - { - "name": "Mpiemo", - "code": "mcx" - }, - { - "name": "South Watut", - "code": "mcy" - }, - { - "name": "Mawan", - "code": "mcz" - }, - { - "name": "Mada (Nigeria)", - "code": "mda" - }, - { - "name": "Morigi", - "code": "mdb" - }, - { - "name": "Male (Papua New Guinea)", - "code": "mdc" - }, - { - "name": "Mbum", - "code": "mdd" - }, - { - "name": "Maba (Chad)", - "code": "mde" - }, - { - "name": "Moksha", - "code": "mdf" - }, - { - "name": "Massalat", - "code": "mdg" - }, - { - "name": "Maguindanaon", - "code": "mdh" - }, - { - "name": "Mamvu", - "code": "mdi" - }, - { - "name": "Mangbetu", - "code": "mdj" - }, - { - "name": "Mangbutu", - "code": "mdk" - }, - { - "name": "Maltese Sign Language", - "code": "mdl" - }, - { - "name": "Mayogo", - "code": "mdm" - }, - { - "name": "Mbati", - "code": "mdn" - }, - { - "name": "Mbala", - "code": "mdp" - }, - { - "name": "Mbole", - "code": "mdq" - }, - { - "name": "Mandar", - "code": "mdr" - }, - { - "name": "Maria (Papua New Guinea)", - "code": "mds" - }, - { - "name": "Mbere", - "code": "mdt" - }, - { - "name": "Mboko", - "code": "mdu" - }, - { - "name": "Santa Lucía Monteverde Mixtec", - "code": "mdv" - }, - { - "name": "Mbosi", - "code": "mdw" - }, - { - "name": "Dizin", - "code": "mdx" - }, - { - "name": "Male (Ethiopia)", - "code": "mdy" - }, - { - "name": "Suruí Do Pará", - "code": "mdz" - }, - { - "name": "Menka", - "code": "mea" - }, - { - "name": "Ikobi", - "code": "meb" - }, - { - "name": "Marra", - "code": "mec" - }, - { - "name": "Melpa", - "code": "med" - }, - { - "name": "Mengen", - "code": "mee" - }, - { - "name": "Megam", - "code": "mef" - }, - { - "name": "Southwestern Tlaxiaco Mixtec", - "code": "meh" - }, - { - "name": "Midob", - "code": "mei" - }, - { - "name": "Meyah", - "code": "mej" - }, - { - "name": "Mekeo", - "code": "mek" - }, - { - "name": "Central Melanau", - "code": "mel" - }, - { - "name": "Mangala", - "code": "mem" - }, - { - "name": "Mende (Sierra Leone)", - "code": "men" - }, - { - "name": "Kedah Malay", - "code": "meo" - }, - { - "name": "Miriwoong", - "code": "mep" - }, - { - "name": "Merey", - "code": "meq" - }, - { - "name": "Meru", - "code": "mer" - }, - { - "name": "Masmaje", - "code": "mes" - }, - { - "name": "Mato", - "code": "met" - }, - { - "name": "Motu", - "code": "meu" - }, - { - "name": "Mano", - "code": "mev" - }, - { - "name": "Maaka", - "code": "mew" - }, - { - "name": "Hassaniyya", - "code": "mey" - }, - { - "name": "Menominee", - "code": "mez" - }, - { - "name": "Pattani Malay", - "code": "mfa" - }, - { - "name": "Bangka", - "code": "mfb" - }, - { - "name": "Mba", - "code": "mfc" - }, - { - "name": "Mendankwe-Nkwen", - "code": "mfd" - }, - { - "name": "Morisyen", - "code": "mfe" - }, - { - "name": "Naki", - "code": "mff" - }, - { - "name": "Mogofin", - "code": "mfg" - }, - { - "name": "Matal", - "code": "mfh" - }, - { - "name": "Wandala", - "code": "mfi" - }, - { - "name": "Mefele", - "code": "mfj" - }, - { - "name": "North Mofu", - "code": "mfk" - }, - { - "name": "Putai", - "code": "mfl" - }, - { - "name": "Marghi South", - "code": "mfm" - }, - { - "name": "Cross River Mbembe", - "code": "mfn" - }, - { - "name": "Mbe", - "code": "mfo" - }, - { - "name": "Makassar Malay", - "code": "mfp" - }, - { - "name": "Moba", - "code": "mfq" - }, - { - "name": "Marrithiyel", - "code": "mfr" - }, - { - "name": "Mexican Sign Language", - "code": "mfs" - }, - { - "name": "Mokerang", - "code": "mft" - }, - { - "name": "Mbwela", - "code": "mfu" - }, - { - "name": "Mandjak", - "code": "mfv" - }, - { - "name": "Mulaha", - "code": "mfw" - }, - { - "name": "Melo", - "code": "mfx" - }, - { - "name": "Mayo", - "code": "mfy" - }, - { - "name": "Mabaan", - "code": "mfz" - }, - { - "name": "Middle Irish (900-1200)", - "code": "mga" - }, - { - "name": "Mararit", - "code": "mgb" - }, - { - "name": "Morokodo", - "code": "mgc" - }, - { - "name": "Moru", - "code": "mgd" - }, - { - "name": "Mango", - "code": "mge" - }, - { - "name": "Maklew", - "code": "mgf" - }, - { - "name": "Mpumpong", - "code": "mgg" - }, - { - "name": "Makhuwa-Meetto", - "code": "mgh" - }, - { - "name": "Lijili", - "code": "mgi" - }, - { - "name": "Abureni", - "code": "mgj" - }, - { - "name": "Mawes", - "code": "mgk" - }, - { - "name": "Maleu-Kilenge", - "code": "mgl" - }, - { - "name": "Mambae", - "code": "mgm" - }, - { - "name": "Mbangi", - "code": "mgn" - }, - { - "name": "Meta'", - "code": "mgo" - }, - { - "name": "Eastern Magar", - "code": "mgp" - }, - { - "name": "Malila", - "code": "mgq" - }, - { - "name": "Mambwe-Lungu", - "code": "mgr" - }, - { - "name": "Manda (Tanzania)", - "code": "mgs" - }, - { - "name": "Mongol", - "code": "mgt" - }, - { - "name": "Mailu", - "code": "mgu" - }, - { - "name": "Matengo", - "code": "mgv" - }, - { - "name": "Matumbi", - "code": "mgw" - }, - { - "name": "Mbunga", - "code": "mgy" - }, - { - "name": "Mbugwe", - "code": "mgz" - }, - { - "name": "Manda (India)", - "code": "mha" - }, - { - "name": "Mahongwe", - "code": "mhb" - }, - { - "name": "Mocho", - "code": "mhc" - }, - { - "name": "Mbugu", - "code": "mhd" - }, - { - "name": "Besisi", - "code": "mhe" - }, - { - "name": "Mah Meri", - "code": "mhe" - }, - { - "name": "Mamaa", - "code": "mhf" - }, - { - "name": "Margu", - "code": "mhg" - }, - { - "name": "Ma'di", - "code": "mhi" - }, - { - "name": "Mogholi", - "code": "mhj" - }, - { - "name": "Mungaka", - "code": "mhk" - }, - { - "name": "Mauwake", - "code": "mhl" - }, - { - "name": "Makhuwa-Moniga", - "code": "mhm" - }, - { - "name": "Mócheno", - "code": "mhn" - }, - { - "name": "Mashi (Zambia)", - "code": "mho" - }, - { - "name": "Balinese Malay", - "code": "mhp" - }, - { - "name": "Mandan", - "code": "mhq" - }, - { - "name": "Eastern Mari", - "code": "mhr" - }, - { - "name": "Buru (Indonesia)", - "code": "mhs" - }, - { - "name": "Mandahuaca", - "code": "mht" - }, - { - "name": "Darang Deng", - "code": "mhu" - }, - { - "name": "Digaro-Mishmi", - "code": "mhu" - }, - { - "name": "Mbukushu", - "code": "mhw" - }, - { - "name": "Lhaovo", - "code": "mhx" - }, - { - "name": "Maru", - "code": "mhx" - }, - { - "name": "Ma'anyan", - "code": "mhy" - }, - { - "name": "Mor (Mor Islands)", - "code": "mhz" - }, - { - "name": "Miami", - "code": "mia" - }, - { - "name": "Atatláhuca Mixtec", - "code": "mib" - }, - { - "name": "Micmac", - "code": "mic" - }, - { - "name": "Mi'kmaq", - "code": "mic" - }, - { - "name": "Mandaic", - "code": "mid" - }, - { - "name": "Ocotepec Mixtec", - "code": "mie" - }, - { - "name": "Mofu-Gudur", - "code": "mif" - }, - { - "name": "San Miguel El Grande Mixtec", - "code": "mig" - }, - { - "name": "Chayuco Mixtec", - "code": "mih" - }, - { - "name": "Chigmecatitlán Mixtec", - "code": "mii" - }, - { - "name": "Abar", - "code": "mij" - }, - { - "name": "Mungbam", - "code": "mij" - }, - { - "name": "Mikasuki", - "code": "mik" - }, - { - "name": "Peñoles Mixtec", - "code": "mil" - }, - { - "name": "Alacatlatzala Mixtec", - "code": "mim" - }, - { - "name": "Minangkabau", - "code": "min" - }, - { - "name": "Pinotepa Nacional Mixtec", - "code": "mio" - }, - { - "name": "Apasco-Apoala Mixtec", - "code": "mip" - }, - { - "name": "Mískito", - "code": "miq" - }, - { - "name": "Isthmus Mixe", - "code": "mir" - }, - { - "name": "Uncoded languages", - "code": "mis" - }, - { - "name": "Southern Puebla Mixtec", - "code": "mit" - }, - { - "name": "Cacaloxtepec Mixtec", - "code": "miu" - }, - { - "name": "Akoye", - "code": "miw" - }, - { - "name": "Mixtepec Mixtec", - "code": "mix" - }, - { - "name": "Ayutla Mixtec", - "code": "miy" - }, - { - "name": "Coatzospan Mixtec", - "code": "miz" - }, - { - "name": "Makalero", - "code": "mjb" - }, - { - "name": "San Juan Colorado Mixtec", - "code": "mjc" - }, - { - "name": "Northwest Maidu", - "code": "mjd" - }, - { - "name": "Muskum", - "code": "mje" - }, - { - "name": "Tu", - "code": "mjg" - }, - { - "name": "Mwera (Nyasa)", - "code": "mjh" - }, - { - "name": "Kim Mun", - "code": "mji" - }, - { - "name": "Mawak", - "code": "mjj" - }, - { - "name": "Matukar", - "code": "mjk" - }, - { - "name": "Mandeali", - "code": "mjl" - }, - { - "name": "Medebur", - "code": "mjm" - }, - { - "name": "Ma (Papua New Guinea)", - "code": "mjn" - }, - { - "name": "Malankuravan", - "code": "mjo" - }, - { - "name": "Malapandaram", - "code": "mjp" - }, - { - "name": "Malaryan", - "code": "mjq" - }, - { - "name": "Malavedan", - "code": "mjr" - }, - { - "name": "Miship", - "code": "mjs" - }, - { - "name": "Sauria Paharia", - "code": "mjt" - }, - { - "name": "Manna-Dora", - "code": "mju" - }, - { - "name": "Mannan", - "code": "mjv" - }, - { - "name": "Karbi", - "code": "mjw" - }, - { - "name": "Mahali", - "code": "mjx" - }, - { - "name": "Mahican", - "code": "mjy" - }, - { - "name": "Majhi", - "code": "mjz" - }, - { - "name": "Mbre", - "code": "mka" - }, - { - "name": "Mal Paharia", - "code": "mkb" - }, - { - "name": "Siliput", - "code": "mkc" - }, - { - "name": "Macedonian", - "code": "mkd" - }, - { - "name": "Mawchi", - "code": "mke" - }, - { - "name": "Miya", - "code": "mkf" - }, - { - "name": "Mak (China)", - "code": "mkg" - }, - { - "name": "Dhatki", - "code": "mki" - }, - { - "name": "Mokilese", - "code": "mkj" - }, - { - "name": "Byep", - "code": "mkk" - }, - { - "name": "Mokole", - "code": "mkl" - }, - { - "name": "Moklen", - "code": "mkm" - }, - { - "name": "Kupang Malay", - "code": "mkn" - }, - { - "name": "Mingang Doso", - "code": "mko" - }, - { - "name": "Moikodi", - "code": "mkp" - }, - { - "name": "Bay Miwok", - "code": "mkq" - }, - { - "name": "Malas", - "code": "mkr" - }, - { - "name": "Silacayoapan Mixtec", - "code": "mks" - }, - { - "name": "Vamale", - "code": "mkt" - }, - { - "name": "Konyanka Maninka", - "code": "mku" - }, - { - "name": "Mafea", - "code": "mkv" - }, - { - "name": "Kituba (Congo)", - "code": "mkw" - }, - { - "name": "Kinamiging Manobo", - "code": "mkx" - }, - { - "name": "East Makian", - "code": "mky" - }, - { - "name": "Makasae", - "code": "mkz" - }, - { - "name": "Malo", - "code": "mla" - }, - { - "name": "Mbule", - "code": "mlb" - }, - { - "name": "Cao Lan", - "code": "mlc" - }, - { - "name": "Manambu", - "code": "mle" - }, - { - "name": "Mal", - "code": "mlf" - }, - { - "name": "Malagasy", - "code": "mlg" - }, - { - "name": "Mape", - "code": "mlh" - }, - { - "name": "Malimpung", - "code": "mli" - }, - { - "name": "Miltu", - "code": "mlj" - }, - { - "name": "Ilwana", - "code": "mlk" - }, - { - "name": "Kiwilwana", - "code": "mlk" - }, - { - "name": "Malua Bay", - "code": "mll" - }, - { - "name": "Mulam", - "code": "mlm" - }, - { - "name": "Malango", - "code": "mln" - }, - { - "name": "Mlomp", - "code": "mlo" - }, - { - "name": "Bargam", - "code": "mlp" - }, - { - "name": "Western Maninkakan", - "code": "mlq" - }, - { - "name": "Vame", - "code": "mlr" - }, - { - "name": "Masalit", - "code": "mls" - }, - { - "name": "Maltese", - "code": "mlt" - }, - { - "name": "To'abaita", - "code": "mlu" - }, - { - "name": "Motlav", - "code": "mlv" - }, - { - "name": "Mwotlap", - "code": "mlv" - }, - { - "name": "Moloko", - "code": "mlw" - }, - { - "name": "Malfaxal", - "code": "mlx" - }, - { - "name": "Naha'ai", - "code": "mlx" - }, - { - "name": "Malaynon", - "code": "mlz" - }, - { - "name": "Mama", - "code": "mma" - }, - { - "name": "Momina", - "code": "mmb" - }, - { - "name": "Michoacán Mazahua", - "code": "mmc" - }, - { - "name": "Maonan", - "code": "mmd" - }, - { - "name": "Mae", - "code": "mme" - }, - { - "name": "Mundat", - "code": "mmf" - }, - { - "name": "North Ambrym", - "code": "mmg" - }, - { - "name": "Mehináku", - "code": "mmh" - }, - { - "name": "Musar", - "code": "mmi" - }, - { - "name": "Majhwar", - "code": "mmj" - }, - { - "name": "Mukha-Dora", - "code": "mmk" - }, - { - "name": "Man Met", - "code": "mml" - }, - { - "name": "Maii", - "code": "mmm" - }, - { - "name": "Mamanwa", - "code": "mmn" - }, - { - "name": "Mangga Buang", - "code": "mmo" - }, - { - "name": "Siawi", - "code": "mmp" - }, - { - "name": "Musak", - "code": "mmq" - }, - { - "name": "Western Xiangxi Miao", - "code": "mmr" - }, - { - "name": "Malalamai", - "code": "mmt" - }, - { - "name": "Mmaala", - "code": "mmu" - }, - { - "name": "Miriti", - "code": "mmv" - }, - { - "name": "Emae", - "code": "mmw" - }, - { - "name": "Madak", - "code": "mmx" - }, - { - "name": "Migaama", - "code": "mmy" - }, - { - "name": "Mabaale", - "code": "mmz" - }, - { - "name": "Mbula", - "code": "mna" - }, - { - "name": "Muna", - "code": "mnb" - }, - { - "name": "Manchu", - "code": "mnc" - }, - { - "name": "Mondé", - "code": "mnd" - }, - { - "name": "Naba", - "code": "mne" - }, - { - "name": "Mundani", - "code": "mnf" - }, - { - "name": "Eastern Mnong", - "code": "mng" - }, - { - "name": "Mono (Democratic Republic of Congo)", - "code": "mnh" - }, - { - "name": "Manipuri", - "code": "mni" - }, - { - "name": "Munji", - "code": "mnj" - }, - { - "name": "Mandinka", - "code": "mnk" - }, - { - "name": "Tiale", - "code": "mnl" - }, - { - "name": "Mapena", - "code": "mnm" - }, - { - "name": "Southern Mnong", - "code": "mnn" - }, - { - "name": "Min Bei Chinese", - "code": "mnp" - }, - { - "name": "Minriq", - "code": "mnq" - }, - { - "name": "Mono (USA)", - "code": "mnr" - }, - { - "name": "Mansi", - "code": "mns" - }, - { - "name": "Mer", - "code": "mnu" - }, - { - "name": "Rennell-Bellona", - "code": "mnv" - }, - { - "name": "Mon", - "code": "mnw" - }, - { - "name": "Manikion", - "code": "mnx" - }, - { - "name": "Manyawa", - "code": "mny" - }, - { - "name": "Moni", - "code": "mnz" - }, - { - "name": "Mwan", - "code": "moa" - }, - { - "name": "Mocoví", - "code": "moc" - }, - { - "name": "Mobilian", - "code": "mod" - }, - { - "name": "Innu", - "code": "moe" - }, - { - "name": "Montagnais", - "code": "moe" - }, - { - "name": "Mongondow", - "code": "mog" - }, - { - "name": "Mohawk", - "code": "moh" - }, - { - "name": "Mboi", - "code": "moi" - }, - { - "name": "Monzombo", - "code": "moj" - }, - { - "name": "Morori", - "code": "mok" - }, - { - "name": "Mangue", - "code": "mom" - }, - { - "name": "Mongolian", - "code": "mon" - }, - { - "name": "Monom", - "code": "moo" - }, - { - "name": "Mopán Maya", - "code": "mop" - }, - { - "name": "Mor (Bomberai Peninsula)", - "code": "moq" - }, - { - "name": "Moro", - "code": "mor" - }, - { - "name": "Mossi", - "code": "mos" - }, - { - "name": "Barí", - "code": "mot" - }, - { - "name": "Mogum", - "code": "mou" - }, - { - "name": "Mohave", - "code": "mov" - }, - { - "name": "Moi (Congo)", - "code": "mow" - }, - { - "name": "Molima", - "code": "mox" - }, - { - "name": "Shekkacho", - "code": "moy" - }, - { - "name": "Gergiko", - "code": "moz" - }, - { - "name": "Mukulu", - "code": "moz" - }, - { - "name": "Mpoto", - "code": "mpa" - }, - { - "name": "Malak Malak", - "code": "mpb" - }, - { - "name": "Mullukmulluk", - "code": "mpb" - }, - { - "name": "Mangarrayi", - "code": "mpc" - }, - { - "name": "Machinere", - "code": "mpd" - }, - { - "name": "Majang", - "code": "mpe" - }, - { - "name": "Marba", - "code": "mpg" - }, - { - "name": "Maung", - "code": "mph" - }, - { - "name": "Mpade", - "code": "mpi" - }, - { - "name": "Martu Wangka", - "code": "mpj" - }, - { - "name": "Wangkajunga", - "code": "mpj" - }, - { - "name": "Mbara (Chad)", - "code": "mpk" - }, - { - "name": "Middle Watut", - "code": "mpl" - }, - { - "name": "Yosondúa Mixtec", - "code": "mpm" - }, - { - "name": "Mindiri", - "code": "mpn" - }, - { - "name": "Miu", - "code": "mpo" - }, - { - "name": "Migabac", - "code": "mpp" - }, - { - "name": "Matís", - "code": "mpq" - }, - { - "name": "Vangunu", - "code": "mpr" - }, - { - "name": "Dadibi", - "code": "mps" - }, - { - "name": "Mian", - "code": "mpt" - }, - { - "name": "Makuráp", - "code": "mpu" - }, - { - "name": "Mungkip", - "code": "mpv" - }, - { - "name": "Mapidian", - "code": "mpw" - }, - { - "name": "Misima-Panaeati", - "code": "mpx" - }, - { - "name": "Mapia", - "code": "mpy" - }, - { - "name": "Mpi", - "code": "mpz" - }, - { - "name": "Maba (Indonesia)", - "code": "mqa" - }, - { - "name": "Mbuko", - "code": "mqb" - }, - { - "name": "Mangole", - "code": "mqc" - }, - { - "name": "Matepi", - "code": "mqe" - }, - { - "name": "Momuna", - "code": "mqf" - }, - { - "name": "Kota Bangun Kutai Malay", - "code": "mqg" - }, - { - "name": "Tlazoyaltepec Mixtec", - "code": "mqh" - }, - { - "name": "Mariri", - "code": "mqi" - }, - { - "name": "Mamasa", - "code": "mqj" - }, - { - "name": "Rajah Kabunsuwan Manobo", - "code": "mqk" - }, - { - "name": "Mbelime", - "code": "mql" - }, - { - "name": "South Marquesan", - "code": "mqm" - }, - { - "name": "Moronene", - "code": "mqn" - }, - { - "name": "Modole", - "code": "mqo" - }, - { - "name": "Manipa", - "code": "mqp" - }, - { - "name": "Minokok", - "code": "mqq" - }, - { - "name": "Mander", - "code": "mqr" - }, - { - "name": "West Makian", - "code": "mqs" - }, - { - "name": "Mok", - "code": "mqt" - }, - { - "name": "Mandari", - "code": "mqu" - }, - { - "name": "Mosimo", - "code": "mqv" - }, - { - "name": "Murupi", - "code": "mqw" - }, - { - "name": "Mamuju", - "code": "mqx" - }, - { - "name": "Manggarai", - "code": "mqy" - }, - { - "name": "Pano", - "code": "mqz" - }, - { - "name": "Mlabri", - "code": "mra" - }, - { - "name": "Marino", - "code": "mrb" - }, - { - "name": "Maricopa", - "code": "mrc" - }, - { - "name": "Western Magar", - "code": "mrd" - }, - { - "name": "Martha's Vineyard Sign Language", - "code": "mre" - }, - { - "name": "Elseng", - "code": "mrf" - }, - { - "name": "Mising", - "code": "mrg" - }, - { - "name": "Mara Chin", - "code": "mrh" - }, - { - "name": "Maori", - "code": "mri" - }, - { - "name": "Western Mari", - "code": "mrj" - }, - { - "name": "Hmwaveke", - "code": "mrk" - }, - { - "name": "Mortlockese", - "code": "mrl" - }, - { - "name": "Merlav", - "code": "mrm" - }, - { - "name": "Mwerlap", - "code": "mrm" - }, - { - "name": "Cheke Holo", - "code": "mrn" - }, - { - "name": "Mru", - "code": "mro" - }, - { - "name": "Morouas", - "code": "mrp" - }, - { - "name": "North Marquesan", - "code": "mrq" - }, - { - "name": "Maria (India)", - "code": "mrr" - }, - { - "name": "Maragus", - "code": "mrs" - }, - { - "name": "Marghi Central", - "code": "mrt" - }, - { - "name": "Mono (Cameroon)", - "code": "mru" - }, - { - "name": "Mangareva", - "code": "mrv" - }, - { - "name": "Maranao", - "code": "mrw" - }, - { - "name": "Dineor", - "code": "mrx" - }, - { - "name": "Maremgi", - "code": "mrx" - }, - { - "name": "Mandaya", - "code": "mry" - }, - { - "name": "Marind", - "code": "mrz" - }, - { - "name": "Malay", - "code": "msa" - }, - { - "name": "Malay (macrolanguage)", - "code": "msa" - }, - { - "name": "Masbatenyo", - "code": "msb" - }, - { - "name": "Sankaran Maninka", - "code": "msc" - }, - { - "name": "Yucatec Maya Sign Language", - "code": "msd" - }, - { - "name": "Musey", - "code": "mse" - }, - { - "name": "Mekwei", - "code": "msf" - }, - { - "name": "Moraid", - "code": "msg" - }, - { - "name": "Masikoro Malagasy", - "code": "msh" - }, - { - "name": "Sabah Malay", - "code": "msi" - }, - { - "name": "Ma (Democratic Republic of Congo)", - "code": "msj" - }, - { - "name": "Mansaka", - "code": "msk" - }, - { - "name": "Molof", - "code": "msl" - }, - { - "name": "Poule", - "code": "msl" - }, - { - "name": "Agusan Manobo", - "code": "msm" - }, - { - "name": "Vurës", - "code": "msn" - }, - { - "name": "Mombum", - "code": "mso" - }, - { - "name": "Maritsauá", - "code": "msp" - }, - { - "name": "Caac", - "code": "msq" - }, - { - "name": "Mongolian Sign Language", - "code": "msr" - }, - { - "name": "West Masela", - "code": "mss" - }, - { - "name": "Musom", - "code": "msu" - }, - { - "name": "Maslam", - "code": "msv" - }, - { - "name": "Mansoanka", - "code": "msw" - }, - { - "name": "Moresada", - "code": "msx" - }, - { - "name": "Aruamu", - "code": "msy" - }, - { - "name": "Momare", - "code": "msz" - }, - { - "name": "Cotabato Manobo", - "code": "mta" - }, - { - "name": "Anyin Morofo", - "code": "mtb" - }, - { - "name": "Munit", - "code": "mtc" - }, - { - "name": "Mualang", - "code": "mtd" - }, - { - "name": "Mono (Solomon Islands)", - "code": "mte" - }, - { - "name": "Murik (Papua New Guinea)", - "code": "mtf" - }, - { - "name": "Una", - "code": "mtg" - }, - { - "name": "Munggui", - "code": "mth" - }, - { - "name": "Maiwa (Papua New Guinea)", - "code": "mti" - }, - { - "name": "Moskona", - "code": "mtj" - }, - { - "name": "Mbe'", - "code": "mtk" - }, - { - "name": "Montol", - "code": "mtl" - }, - { - "name": "Mator", - "code": "mtm" - }, - { - "name": "Matagalpa", - "code": "mtn" - }, - { - "name": "Totontepec Mixe", - "code": "mto" - }, - { - "name": "Wichí Lhamtés Nocten", - "code": "mtp" - }, - { - "name": "Muong", - "code": "mtq" - }, - { - "name": "Mewari", - "code": "mtr" - }, - { - "name": "Yora", - "code": "mts" - }, - { - "name": "Mota", - "code": "mtt" - }, - { - "name": "Tututepec Mixtec", - "code": "mtu" - }, - { - "name": "Asaro'o", - "code": "mtv" - }, - { - "name": "Southern Binukidnon", - "code": "mtw" - }, - { - "name": "Tidaá Mixtec", - "code": "mtx" - }, - { - "name": "Nabi", - "code": "mty" - }, - { - "name": "Mundang", - "code": "mua" - }, - { - "name": "Mubi", - "code": "mub" - }, - { - "name": "Ajumbu", - "code": "muc" - }, - { - "name": "Mednyj Aleut", - "code": "mud" - }, - { - "name": "Media Lengua", - "code": "mue" - }, - { - "name": "Musgu", - "code": "mug" - }, - { - "name": "Mündü", - "code": "muh" - }, - { - "name": "Musi", - "code": "mui" - }, - { - "name": "Mabire", - "code": "muj" - }, - { - "name": "Mugom", - "code": "muk" - }, - { - "name": "Multiple languages", - "code": "mul" - }, - { - "name": "Maiwala", - "code": "mum" - }, - { - "name": "Nyong", - "code": "muo" - }, - { - "name": "Malvi", - "code": "mup" - }, - { - "name": "Eastern Xiangxi Miao", - "code": "muq" - }, - { - "name": "Murle", - "code": "mur" - }, - { - "name": "Creek", - "code": "mus" - }, - { - "name": "Western Muria", - "code": "mut" - }, - { - "name": "Yaaku", - "code": "muu" - }, - { - "name": "Muthuvan", - "code": "muv" - }, - { - "name": "Bo-Ung", - "code": "mux" - }, - { - "name": "Muyang", - "code": "muy" - }, - { - "name": "Mursi", - "code": "muz" - }, - { - "name": "Manam", - "code": "mva" - }, - { - "name": "Mattole", - "code": "mvb" - }, - { - "name": "Mamboru", - "code": "mvd" - }, - { - "name": "Marwari (Pakistan)", - "code": "mve" - }, - { - "name": "Peripheral Mongolian", - "code": "mvf" - }, - { - "name": "Yucuañe Mixtec", - "code": "mvg" - }, - { - "name": "Mulgi", - "code": "mvh" - }, - { - "name": "Miyako", - "code": "mvi" - }, - { - "name": "Mekmek", - "code": "mvk" - }, - { - "name": "Mbara (Australia)", - "code": "mvl" - }, - { - "name": "Minaveha", - "code": "mvn" - }, - { - "name": "Marovo", - "code": "mvo" - }, - { - "name": "Duri", - "code": "mvp" - }, - { - "name": "Moere", - "code": "mvq" - }, - { - "name": "Marau", - "code": "mvr" - }, - { - "name": "Massep", - "code": "mvs" - }, - { - "name": "Mpotovoro", - "code": "mvt" - }, - { - "name": "Marfa", - "code": "mvu" - }, - { - "name": "Tagal Murut", - "code": "mvv" - }, - { - "name": "Machinga", - "code": "mvw" - }, - { - "name": "Meoswar", - "code": "mvx" - }, - { - "name": "Indus Kohistani", - "code": "mvy" - }, - { - "name": "Mesqan", - "code": "mvz" - }, - { - "name": "Mwatebu", - "code": "mwa" - }, - { - "name": "Juwal", - "code": "mwb" - }, - { - "name": "Are", - "code": "mwc" - }, - { - "name": "Mwera (Chimwera)", - "code": "mwe" - }, - { - "name": "Murrinh-Patha", - "code": "mwf" - }, - { - "name": "Aiklep", - "code": "mwg" - }, - { - "name": "Mouk-Aria", - "code": "mwh" - }, - { - "name": "Labo", - "code": "mwi" - }, - { - "name": "Ninde", - "code": "mwi" - }, - { - "name": "Kita Maninkakan", - "code": "mwk" - }, - { - "name": "Mirandese", - "code": "mwl" - }, - { - "name": "Sar", - "code": "mwm" - }, - { - "name": "Nyamwanga", - "code": "mwn" - }, - { - "name": "Central Maewo", - "code": "mwo" - }, - { - "name": "Kala Lagaw Ya", - "code": "mwp" - }, - { - "name": "Mün Chin", - "code": "mwq" - }, - { - "name": "Marwari", - "code": "mwr" - }, - { - "name": "Mwimbi-Muthambi", - "code": "mws" - }, - { - "name": "Moken", - "code": "mwt" - }, - { - "name": "Mittu", - "code": "mwu" - }, - { - "name": "Mentawai", - "code": "mwv" - }, - { - "name": "Hmong Daw", - "code": "mww" - }, - { - "name": "Moingi", - "code": "mwz" - }, - { - "name": "Northwest Oaxaca Mixtec", - "code": "mxa" - }, - { - "name": "Tezoatlán Mixtec", - "code": "mxb" - }, - { - "name": "Manyika", - "code": "mxc" - }, - { - "name": "Modang", - "code": "mxd" - }, - { - "name": "Mele-Fila", - "code": "mxe" - }, - { - "name": "Malgbe", - "code": "mxf" - }, - { - "name": "Mbangala", - "code": "mxg" - }, - { - "name": "Mvuba", - "code": "mxh" - }, - { - "name": "Mozarabic", - "code": "mxi" - }, - { - "name": "Geman Deng", - "code": "mxj" - }, - { - "name": "Miju-Mishmi", - "code": "mxj" - }, - { - "name": "Monumbo", - "code": "mxk" - }, - { - "name": "Maxi Gbe", - "code": "mxl" - }, - { - "name": "Meramera", - "code": "mxm" - }, - { - "name": "Moi (Indonesia)", - "code": "mxn" - }, - { - "name": "Mbowe", - "code": "mxo" - }, - { - "name": "Tlahuitoltepec Mixe", - "code": "mxp" - }, - { - "name": "Juquila Mixe", - "code": "mxq" - }, - { - "name": "Murik (Malaysia)", - "code": "mxr" - }, - { - "name": "Huitepec Mixtec", - "code": "mxs" - }, - { - "name": "Jamiltepec Mixtec", - "code": "mxt" - }, - { - "name": "Mada (Cameroon)", - "code": "mxu" - }, - { - "name": "Metlatónoc Mixtec", - "code": "mxv" - }, - { - "name": "Namo", - "code": "mxw" - }, - { - "name": "Mahou", - "code": "mxx" - }, - { - "name": "Mawukakan", - "code": "mxx" - }, - { - "name": "Southeastern Nochixtlán Mixtec", - "code": "mxy" - }, - { - "name": "Central Masela", - "code": "mxz" - }, - { - "name": "Burmese", - "code": "mya" - }, - { - "name": "Mbay", - "code": "myb" - }, - { - "name": "Mayeka", - "code": "myc" - }, - { - "name": "Myene", - "code": "mye" - }, - { - "name": "Bambassi", - "code": "myf" - }, - { - "name": "Manta", - "code": "myg" - }, - { - "name": "Makah", - "code": "myh" - }, - { - "name": "Mangayat", - "code": "myj" - }, - { - "name": "Mamara Senoufo", - "code": "myk" - }, - { - "name": "Moma", - "code": "myl" - }, - { - "name": "Me'en", - "code": "mym" - }, - { - "name": "Anfillo", - "code": "myo" - }, - { - "name": "Pirahã", - "code": "myp" - }, - { - "name": "Muniche", - "code": "myr" - }, - { - "name": "Mesmes", - "code": "mys" - }, - { - "name": "Mundurukú", - "code": "myu" - }, - { - "name": "Erzya", - "code": "myv" - }, - { - "name": "Muyuw", - "code": "myw" - }, - { - "name": "Masaaba", - "code": "myx" - }, - { - "name": "Macuna", - "code": "myy" - }, - { - "name": "Classical Mandaic", - "code": "myz" - }, - { - "name": "Santa María Zacatepec Mixtec", - "code": "mza" - }, - { - "name": "Tumzabt", - "code": "mzb" - }, - { - "name": "Madagascar Sign Language", - "code": "mzc" - }, - { - "name": "Malimba", - "code": "mzd" - }, - { - "name": "Morawa", - "code": "mze" - }, - { - "name": "Monastic Sign Language", - "code": "mzg" - }, - { - "name": "Wichí Lhamtés Güisnay", - "code": "mzh" - }, - { - "name": "Ixcatlán Mazatec", - "code": "mzi" - }, - { - "name": "Manya", - "code": "mzj" - }, - { - "name": "Nigeria Mambila", - "code": "mzk" - }, - { - "name": "Mazatlán Mixe", - "code": "mzl" - }, - { - "name": "Mumuye", - "code": "mzm" - }, - { - "name": "Mazanderani", - "code": "mzn" - }, - { - "name": "Matipuhy", - "code": "mzo" - }, - { - "name": "Movima", - "code": "mzp" - }, - { - "name": "Mori Atas", - "code": "mzq" - }, - { - "name": "Marúbo", - "code": "mzr" - }, - { - "name": "Macanese", - "code": "mzs" - }, - { - "name": "Mintil", - "code": "mzt" - }, - { - "name": "Inapang", - "code": "mzu" - }, - { - "name": "Manza", - "code": "mzv" - }, - { - "name": "Deg", - "code": "mzw" - }, - { - "name": "Mawayana", - "code": "mzx" - }, - { - "name": "Mozambican Sign Language", - "code": "mzy" - }, - { - "name": "Maiadomu", - "code": "mzz" - }, - { - "name": "Namla", - "code": "naa" - }, - { - "name": "Southern Nambikuára", - "code": "nab" - }, - { - "name": "Narak", - "code": "nac" - }, - { - "name": "Naka'ela", - "code": "nae" - }, - { - "name": "Nabak", - "code": "naf" - }, - { - "name": "Naga Pidgin", - "code": "nag" - }, - { - "name": "Nalu", - "code": "naj" - }, - { - "name": "Nakanai", - "code": "nak" - }, - { - "name": "Nalik", - "code": "nal" - }, - { - "name": "Ngan'gityemerri", - "code": "nam" - }, - { - "name": "Min Nan Chinese", - "code": "nan" - }, - { - "name": "Naaba", - "code": "nao" - }, - { - "name": "Neapolitan", - "code": "nap" - }, - { - "name": "Khoekhoe", - "code": "naq" - }, - { - "name": "Nama (Namibia)", - "code": "naq" - }, - { - "name": "Iguta", - "code": "nar" - }, - { - "name": "Naasioi", - "code": "nas" - }, - { - "name": "Ca̱hungwa̱rya̱", - "code": "nat" - }, - { - "name": "Hungworo", - "code": "nat" - }, - { - "name": "Nauru", - "code": "nau" - }, - { - "name": "Navaho", - "code": "nav" - }, - { - "name": "Navajo", - "code": "nav" - }, - { - "name": "Nawuri", - "code": "naw" - }, - { - "name": "Nakwi", - "code": "nax" - }, - { - "name": "Ngarrindjeri", - "code": "nay" - }, - { - "name": "Coatepec Nahuatl", - "code": "naz" - }, - { - "name": "Nyemba", - "code": "nba" - }, - { - "name": "Ndoe", - "code": "nbb" - }, - { - "name": "Chang Naga", - "code": "nbc" - }, - { - "name": "Ngbinda", - "code": "nbd" - }, - { - "name": "Konyak Naga", - "code": "nbe" - }, - { - "name": "Nagarchal", - "code": "nbg" - }, - { - "name": "Ngamo", - "code": "nbh" - }, - { - "name": "Mao Naga", - "code": "nbi" - }, - { - "name": "Ngarinyman", - "code": "nbj" - }, - { - "name": "Nake", - "code": "nbk" - }, - { - "name": "South Ndebele", - "code": "nbl" - }, - { - "name": "Ngbaka Ma'bo", - "code": "nbm" - }, - { - "name": "Kuri", - "code": "nbn" - }, - { - "name": "Nkukoli", - "code": "nbo" - }, - { - "name": "Nnam", - "code": "nbp" - }, - { - "name": "Nggem", - "code": "nbq" - }, - { - "name": "Numana", - "code": "nbr" - }, - { - "name": "Namibian Sign Language", - "code": "nbs" - }, - { - "name": "Na", - "code": "nbt" - }, - { - "name": "Rongmei Naga", - "code": "nbu" - }, - { - "name": "Ngamambo", - "code": "nbv" - }, - { - "name": "Southern Ngbandi", - "code": "nbw" - }, - { - "name": "Ningera", - "code": "nby" - }, - { - "name": "Iyo", - "code": "nca" - }, - { - "name": "Central Nicobarese", - "code": "ncb" - }, - { - "name": "Ponam", - "code": "ncc" - }, - { - "name": "Nachering", - "code": "ncd" - }, - { - "name": "Yale", - "code": "nce" - }, - { - "name": "Notsi", - "code": "ncf" - }, - { - "name": "Nisga'a", - "code": "ncg" - }, - { - "name": "Central Huasteca Nahuatl", - "code": "nch" - }, - { - "name": "Classical Nahuatl", - "code": "nci" - }, - { - "name": "Northern Puebla Nahuatl", - "code": "ncj" - }, - { - "name": "Na-kara", - "code": "nck" - }, - { - "name": "Michoacán Nahuatl", - "code": "ncl" - }, - { - "name": "Nambo", - "code": "ncm" - }, - { - "name": "Nauna", - "code": "ncn" - }, - { - "name": "Sibe", - "code": "nco" - }, - { - "name": "Northern Katang", - "code": "ncq" - }, - { - "name": "Ncane", - "code": "ncr" - }, - { - "name": "Nicaraguan Sign Language", - "code": "ncs" - }, - { - "name": "Chothe Naga", - "code": "nct" - }, - { - "name": "Chumburung", - "code": "ncu" - }, - { - "name": "Central Puebla Nahuatl", - "code": "ncx" - }, - { - "name": "Natchez", - "code": "ncz" - }, - { - "name": "Ndasa", - "code": "nda" - }, - { - "name": "Kenswei Nsei", - "code": "ndb" - }, - { - "name": "Ndau", - "code": "ndc" - }, - { - "name": "Nde-Nsele-Nta", - "code": "ndd" - }, - { - "name": "North Ndebele", - "code": "nde" - }, - { - "name": "Nadruvian", - "code": "ndf" - }, - { - "name": "Ndengereko", - "code": "ndg" - }, - { - "name": "Ndali", - "code": "ndh" - }, - { - "name": "Samba Leko", - "code": "ndi" - }, - { - "name": "Ndamba", - "code": "ndj" - }, - { - "name": "Ndaka", - "code": "ndk" - }, - { - "name": "Ndolo", - "code": "ndl" - }, - { - "name": "Ndam", - "code": "ndm" - }, - { - "name": "Ngundi", - "code": "ndn" - }, - { - "name": "Ndonga", - "code": "ndo" - }, - { - "name": "Ndo", - "code": "ndp" - }, - { - "name": "Ndombe", - "code": "ndq" - }, - { - "name": "Ndoola", - "code": "ndr" - }, - { - "name": "Low German", - "code": "nds" - }, - { - "name": "Low Saxon", - "code": "nds" - }, - { - "name": "Ndunga", - "code": "ndt" - }, - { - "name": "Dugun", - "code": "ndu" - }, - { - "name": "Ndut", - "code": "ndv" - }, - { - "name": "Ndobo", - "code": "ndw" - }, - { - "name": "Nduga", - "code": "ndx" - }, - { - "name": "Lutos", - "code": "ndy" - }, - { - "name": "Ndogo", - "code": "ndz" - }, - { - "name": "Eastern Ngad'a", - "code": "nea" - }, - { - "name": "Toura (Côte d'Ivoire)", - "code": "neb" - }, - { - "name": "Nedebang", - "code": "nec" - }, - { - "name": "Nde-Gbite", - "code": "ned" - }, - { - "name": "Nêlêmwa-Nixumwak", - "code": "nee" - }, - { - "name": "Nefamese", - "code": "nef" - }, - { - "name": "Negidal", - "code": "neg" - }, - { - "name": "Nyenkha", - "code": "neh" - }, - { - "name": "Neo-Hittite", - "code": "nei" - }, - { - "name": "Neko", - "code": "nej" - }, - { - "name": "Neku", - "code": "nek" - }, - { - "name": "Nemi", - "code": "nem" - }, - { - "name": "Nengone", - "code": "nen" - }, - { - "name": "Ná-Meo", - "code": "neo" - }, - { - "name": "Nepali", - "code": "nep" - }, - { - "name": "Nepali (macrolanguage)", - "code": "nep" - }, - { - "name": "North Central Mixe", - "code": "neq" - }, - { - "name": "Yahadian", - "code": "ner" - }, - { - "name": "Bhoti Kinnauri", - "code": "nes" - }, - { - "name": "Nete", - "code": "net" - }, - { - "name": "Neo", - "code": "neu" - }, - { - "name": "Nyaheun", - "code": "nev" - }, - { - "name": "Nepal Bhasa", - "code": "new" - }, - { - "name": "Newari", - "code": "new" - }, - { - "name": "Neme", - "code": "nex" - }, - { - "name": "Neyo", - "code": "ney" - }, - { - "name": "Nez Perce", - "code": "nez" - }, - { - "name": "Dhao", - "code": "nfa" - }, - { - "name": "Ahwai", - "code": "nfd" - }, - { - "name": "Äiwoo", - "code": "nfl" - }, - { - "name": "Ayiwo", - "code": "nfl" - }, - { - "name": "Nafaanra", - "code": "nfr" - }, - { - "name": "Mfumte", - "code": "nfu" - }, - { - "name": "Ngbaka", - "code": "nga" - }, - { - "name": "Northern Ngbandi", - "code": "ngb" - }, - { - "name": "Ngombe (Democratic Republic of Congo)", - "code": "ngc" - }, - { - "name": "Ngando (Central African Republic)", - "code": "ngd" - }, - { - "name": "Ngemba", - "code": "nge" - }, - { - "name": "Ngbaka Manza", - "code": "ngg" - }, - { - "name": "Nǁng", - "code": "ngh" - }, - { - "name": "Ngizim", - "code": "ngi" - }, - { - "name": "Ngie", - "code": "ngj" - }, - { - "name": "Dalabon", - "code": "ngk" - }, - { - "name": "Lomwe", - "code": "ngl" - }, - { - "name": "Ngatik Men's Creole", - "code": "ngm" - }, - { - "name": "Ngwo", - "code": "ngn" - }, - { - "name": "Ngulu", - "code": "ngp" - }, - { - "name": "Ngoreme", - "code": "ngq" - }, - { - "name": "Ngurimi", - "code": "ngq" - }, - { - "name": "Engdewu", - "code": "ngr" - }, - { - "name": "Gvoko", - "code": "ngs" - }, - { - "name": "Kriang", - "code": "ngt" - }, - { - "name": "Ngeq", - "code": "ngt" - }, - { - "name": "Guerrero Nahuatl", - "code": "ngu" - }, - { - "name": "Nagumi", - "code": "ngv" - }, - { - "name": "Ngwaba", - "code": "ngw" - }, - { - "name": "Nggwahyi", - "code": "ngx" - }, - { - "name": "Tibea", - "code": "ngy" - }, - { - "name": "Ngungwel", - "code": "ngz" - }, - { - "name": "Nhanda", - "code": "nha" - }, - { - "name": "Beng", - "code": "nhb" - }, - { - "name": "Tabasco Nahuatl", - "code": "nhc" - }, - { - "name": "Ava Guaraní", - "code": "nhd" - }, - { - "name": "Chiripá", - "code": "nhd" - }, - { - "name": "Eastern Huasteca Nahuatl", - "code": "nhe" - }, - { - "name": "Nhuwala", - "code": "nhf" - }, - { - "name": "Tetelcingo Nahuatl", - "code": "nhg" - }, - { - "name": "Nahari", - "code": "nhh" - }, - { - "name": "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", - "code": "nhi" - }, - { - "name": "Isthmus-Cosoleacaque Nahuatl", - "code": "nhk" - }, - { - "name": "Morelos Nahuatl", - "code": "nhm" - }, - { - "name": "Central Nahuatl", - "code": "nhn" - }, - { - "name": "Takuu", - "code": "nho" - }, - { - "name": "Isthmus-Pajapan Nahuatl", - "code": "nhp" - }, - { - "name": "Huaxcaleca Nahuatl", - "code": "nhq" - }, - { - "name": "Naro", - "code": "nhr" - }, - { - "name": "Ometepec Nahuatl", - "code": "nht" - }, - { - "name": "Noone", - "code": "nhu" - }, - { - "name": "Temascaltepec Nahuatl", - "code": "nhv" - }, - { - "name": "Western Huasteca Nahuatl", - "code": "nhw" - }, - { - "name": "Isthmus-Mecayapan Nahuatl", - "code": "nhx" - }, - { - "name": "Northern Oaxaca Nahuatl", - "code": "nhy" - }, - { - "name": "Santa María La Alta Nahuatl", - "code": "nhz" - }, - { - "name": "Nias", - "code": "nia" - }, - { - "name": "Nakame", - "code": "nib" - }, - { - "name": "Ngandi", - "code": "nid" - }, - { - "name": "Niellim", - "code": "nie" - }, - { - "name": "Nek", - "code": "nif" - }, - { - "name": "Ngalakgan", - "code": "nig" - }, - { - "name": "Nyiha (Tanzania)", - "code": "nih" - }, - { - "name": "Nii", - "code": "nii" - }, - { - "name": "Ngaju", - "code": "nij" - }, - { - "name": "Southern Nicobarese", - "code": "nik" - }, - { - "name": "Nila", - "code": "nil" - }, - { - "name": "Nilamba", - "code": "nim" - }, - { - "name": "Ninzo", - "code": "nin" - }, - { - "name": "Nganasan", - "code": "nio" - }, - { - "name": "Nandi", - "code": "niq" - }, - { - "name": "Nimboran", - "code": "nir" - }, - { - "name": "Nimi", - "code": "nis" - }, - { - "name": "Southeastern Kolami", - "code": "nit" - }, - { - "name": "Niuean", - "code": "niu" - }, - { - "name": "Gilyak", - "code": "niv" - }, - { - "name": "Nimo", - "code": "niw" - }, - { - "name": "Hema", - "code": "nix" - }, - { - "name": "Ngiti", - "code": "niy" - }, - { - "name": "Ningil", - "code": "niz" - }, - { - "name": "Nzanyi", - "code": "nja" - }, - { - "name": "Nocte Naga", - "code": "njb" - }, - { - "name": "Ndonde Hamba", - "code": "njd" - }, - { - "name": "Lotha Naga", - "code": "njh" - }, - { - "name": "Gudanji", - "code": "nji" - }, - { - "name": "Njen", - "code": "njj" - }, - { - "name": "Njalgulgule", - "code": "njl" - }, - { - "name": "Angami Naga", - "code": "njm" - }, - { - "name": "Liangmai Naga", - "code": "njn" - }, - { - "name": "Ao Naga", - "code": "njo" - }, - { - "name": "Njerep", - "code": "njr" - }, - { - "name": "Nisa", - "code": "njs" - }, - { - "name": "Ndyuka-Trio Pidgin", - "code": "njt" - }, - { - "name": "Ngadjunmaya", - "code": "nju" - }, - { - "name": "Kunyi", - "code": "njx" - }, - { - "name": "Njyem", - "code": "njy" - }, - { - "name": "Nyishi", - "code": "njz" - }, - { - "name": "Nkoya", - "code": "nka" - }, - { - "name": "Khoibu Naga", - "code": "nkb" - }, - { - "name": "Nkongho", - "code": "nkc" - }, - { - "name": "Koireng", - "code": "nkd" - }, - { - "name": "Duke", - "code": "nke" - }, - { - "name": "Inpui Naga", - "code": "nkf" - }, - { - "name": "Nekgini", - "code": "nkg" - }, - { - "name": "Khezha Naga", - "code": "nkh" - }, - { - "name": "Thangal Naga", - "code": "nki" - }, - { - "name": "Nakai", - "code": "nkj" - }, - { - "name": "Nokuku", - "code": "nkk" - }, - { - "name": "Namat", - "code": "nkm" - }, - { - "name": "Nkangala", - "code": "nkn" - }, - { - "name": "Nkonya", - "code": "nko" - }, - { - "name": "Niuatoputapu", - "code": "nkp" - }, - { - "name": "Nkami", - "code": "nkq" - }, - { - "name": "Nukuoro", - "code": "nkr" - }, - { - "name": "North Asmat", - "code": "nks" - }, - { - "name": "Nyika (Tanzania)", - "code": "nkt" - }, - { - "name": "Bouna Kulango", - "code": "nku" - }, - { - "name": "Nyika (Malawi and Zambia)", - "code": "nkv" - }, - { - "name": "Nkutu", - "code": "nkw" - }, - { - "name": "Nkoroo", - "code": "nkx" - }, - { - "name": "Nkari", - "code": "nkz" - }, - { - "name": "Ngombale", - "code": "nla" - }, - { - "name": "Nalca", - "code": "nlc" - }, - { - "name": "Dutch", - "code": "nld" - }, - { - "name": "Flemish", - "code": "nld" - }, - { - "name": "East Nyala", - "code": "nle" - }, - { - "name": "Gela", - "code": "nlg" - }, - { - "name": "Grangali", - "code": "nli" - }, - { - "name": "Nyali", - "code": "nlj" - }, - { - "name": "Ninia Yali", - "code": "nlk" - }, - { - "name": "Nihali", - "code": "nll" - }, - { - "name": "Mankiyali", - "code": "nlm" - }, - { - "name": "Ngul", - "code": "nlo" - }, - { - "name": "Lao Naga", - "code": "nlq" - }, - { - "name": "Nchumbulu", - "code": "nlu" - }, - { - "name": "Orizaba Nahuatl", - "code": "nlv" - }, - { - "name": "Walangama", - "code": "nlw" - }, - { - "name": "Nahali", - "code": "nlx" - }, - { - "name": "Nyamal", - "code": "nly" - }, - { - "name": "Nalögo", - "code": "nlz" - }, - { - "name": "Maram Naga", - "code": "nma" - }, - { - "name": "Big Nambas", - "code": "nmb" - }, - { - "name": "V'ënen Taut", - "code": "nmb" - }, - { - "name": "Ngam", - "code": "nmc" - }, - { - "name": "Ndumu", - "code": "nmd" - }, - { - "name": "Mzieme Naga", - "code": "nme" - }, - { - "name": "Tangkhul Naga (India)", - "code": "nmf" - }, - { - "name": "Kwasio", - "code": "nmg" - }, - { - "name": "Monsang Naga", - "code": "nmh" - }, - { - "name": "Nyam", - "code": "nmi" - }, - { - "name": "Ngombe (Central African Republic)", - "code": "nmj" - }, - { - "name": "Namakura", - "code": "nmk" - }, - { - "name": "Ndemli", - "code": "nml" - }, - { - "name": "Manangba", - "code": "nmm" - }, - { - "name": "ǃXóõ", - "code": "nmn" - }, - { - "name": "Moyon Naga", - "code": "nmo" - }, - { - "name": "Nimanbur", - "code": "nmp" - }, - { - "name": "Nambya", - "code": "nmq" - }, - { - "name": "Nimbari", - "code": "nmr" - }, - { - "name": "Letemboi", - "code": "nms" - }, - { - "name": "Namonuito", - "code": "nmt" - }, - { - "name": "Northeast Maidu", - "code": "nmu" - }, - { - "name": "Ngamini", - "code": "nmv" - }, - { - "name": "Nimoa", - "code": "nmw" - }, - { - "name": "Rifao", - "code": "nmw" - }, - { - "name": "Nama (Papua New Guinea)", - "code": "nmx" - }, - { - "name": "Namuyi", - "code": "nmy" - }, - { - "name": "Nawdm", - "code": "nmz" - }, - { - "name": "Nyangumarta", - "code": "nna" - }, - { - "name": "Nande", - "code": "nnb" - }, - { - "name": "Nancere", - "code": "nnc" - }, - { - "name": "West Ambae", - "code": "nnd" - }, - { - "name": "Ngandyera", - "code": "nne" - }, - { - "name": "Ngaing", - "code": "nnf" - }, - { - "name": "Maring Naga", - "code": "nng" - }, - { - "name": "Ngiemboon", - "code": "nnh" - }, - { - "name": "North Nuaulu", - "code": "nni" - }, - { - "name": "Nyangatom", - "code": "nnj" - }, - { - "name": "Nankina", - "code": "nnk" - }, - { - "name": "Northern Rengma Naga", - "code": "nnl" - }, - { - "name": "Namia", - "code": "nnm" - }, - { - "name": "Ngete", - "code": "nnn" - }, - { - "name": "Norwegian Nynorsk", - "code": "nno" - }, - { - "name": "Wancho Naga", - "code": "nnp" - }, - { - "name": "Ngindo", - "code": "nnq" - }, - { - "name": "Narungga", - "code": "nnr" - }, - { - "name": "Nanticoke", - "code": "nnt" - }, - { - "name": "Dwang", - "code": "nnu" - }, - { - "name": "Nugunu (Australia)", - "code": "nnv" - }, - { - "name": "Southern Nuni", - "code": "nnw" - }, - { - "name": "Nyangga", - "code": "nny" - }, - { - "name": "Nda'nda'", - "code": "nnz" - }, - { - "name": "Woun Meu", - "code": "noa" - }, - { - "name": "Norwegian Bokmål", - "code": "nob" - }, - { - "name": "Nuk", - "code": "noc" - }, - { - "name": "Northern Thai", - "code": "nod" - }, - { - "name": "Nimadi", - "code": "noe" - }, - { - "name": "Nomane", - "code": "nof" - }, - { - "name": "Nogai", - "code": "nog" - }, - { - "name": "Nomu", - "code": "noh" - }, - { - "name": "Noiri", - "code": "noi" - }, - { - "name": "Nonuya", - "code": "noj" - }, - { - "name": "Nooksack", - "code": "nok" - }, - { - "name": "Nomlaki", - "code": "nol" - }, - { - "name": "Nocamán", - "code": "nom" - }, - { - "name": "Old Norse", - "code": "non" - }, - { - "name": "Numanggang", - "code": "nop" - }, - { - "name": "Ngongo", - "code": "noq" - }, - { - "name": "Norwegian", - "code": "nor" - }, - { - "name": "Eastern Nisu", - "code": "nos" - }, - { - "name": "Nomatsiguenga", - "code": "not" - }, - { - "name": "Ewage-Notu", - "code": "nou" - }, - { - "name": "Novial", - "code": "nov" - }, - { - "name": "Nyambo", - "code": "now" - }, - { - "name": "Noy", - "code": "noy" - }, - { - "name": "Nayi", - "code": "noz" - }, - { - "name": "Nar Phu", - "code": "npa" - }, - { - "name": "Nupbikha", - "code": "npb" - }, - { - "name": "Ponyo-Gongwang Naga", - "code": "npg" - }, - { - "name": "Phom Naga", - "code": "nph" - }, - { - "name": "Nepali (individual language)", - "code": "npi" - }, - { - "name": "Southeastern Puebla Nahuatl", - "code": "npl" - }, - { - "name": "Mondropolon", - "code": "npn" - }, - { - "name": "Pochuri Naga", - "code": "npo" - }, - { - "name": "Nipsan", - "code": "nps" - }, - { - "name": "Puimei Naga", - "code": "npu" - }, - { - "name": "Noipx", - "code": "npx" - }, - { - "name": "Napu", - "code": "npy" - }, - { - "name": "Southern Nago", - "code": "nqg" - }, - { - "name": "Kura Ede Nago", - "code": "nqk" - }, - { - "name": "Ngendelengo", - "code": "nql" - }, - { - "name": "Ndom", - "code": "nqm" - }, - { - "name": "Nen", - "code": "nqn" - }, - { - "name": "N'Ko", - "code": "nqo" - }, - { - "name": "Kyan-Karyaw Naga", - "code": "nqq" - }, - { - "name": "Nteng", - "code": "nqt" - }, - { - "name": "Akyaung Ari Naga", - "code": "nqy" - }, - { - "name": "Ngom", - "code": "nra" - }, - { - "name": "Nara", - "code": "nrb" - }, - { - "name": "Noric", - "code": "nrc" - }, - { - "name": "Southern Rengma Naga", - "code": "nre" - }, - { - "name": "Guernésiais", - "code": "nrf" - }, - { - "name": "Jèrriais", - "code": "nrf" - }, - { - "name": "Narango", - "code": "nrg" - }, - { - "name": "Chokri Naga", - "code": "nri" - }, - { - "name": "Ngarla", - "code": "nrk" - }, - { - "name": "Ngarluma", - "code": "nrl" - }, - { - "name": "Narom", - "code": "nrm" - }, - { - "name": "Norn", - "code": "nrn" - }, - { - "name": "North Picene", - "code": "nrp" - }, - { - "name": "Nora", - "code": "nrr" - }, - { - "name": "Norra", - "code": "nrr" - }, - { - "name": "Northern Kalapuya", - "code": "nrt" - }, - { - "name": "Narua", - "code": "nru" - }, - { - "name": "Ngurmbur", - "code": "nrx" - }, - { - "name": "Lala", - "code": "nrz" - }, - { - "name": "Sangtam Naga", - "code": "nsa" - }, - { - "name": "Lower Nossob", - "code": "nsb" - }, - { - "name": "Nshi", - "code": "nsc" - }, - { - "name": "Southern Nisu", - "code": "nsd" - }, - { - "name": "Nsenga", - "code": "nse" - }, - { - "name": "Northwestern Nisu", - "code": "nsf" - }, - { - "name": "Ngasa", - "code": "nsg" - }, - { - "name": "Ngoshie", - "code": "nsh" - }, - { - "name": "Nigerian Sign Language", - "code": "nsi" - }, - { - "name": "Naskapi", - "code": "nsk" - }, - { - "name": "Norwegian Sign Language", - "code": "nsl" - }, - { - "name": "Sumi Naga", - "code": "nsm" - }, - { - "name": "Nehan", - "code": "nsn" - }, - { - "name": "Northern Sotho", - "code": "nso" - }, - { - "name": "Pedi", - "code": "nso" - }, - { - "name": "Sepedi", - "code": "nso" - }, - { - "name": "Nepalese Sign Language", - "code": "nsp" - }, - { - "name": "Northern Sierra Miwok", - "code": "nsq" - }, - { - "name": "Maritime Sign Language", - "code": "nsr" - }, - { - "name": "Nali", - "code": "nss" - }, - { - "name": "Tase Naga", - "code": "nst" - }, - { - "name": "Sierra Negra Nahuatl", - "code": "nsu" - }, - { - "name": "Southwestern Nisu", - "code": "nsv" - }, - { - "name": "Navut", - "code": "nsw" - }, - { - "name": "Nsongo", - "code": "nsx" - }, - { - "name": "Nasal", - "code": "nsy" - }, - { - "name": "Nisenan", - "code": "nsz" - }, - { - "name": "Northern Tidung", - "code": "ntd" - }, - { - "name": "Nathembo", - "code": "nte" - }, - { - "name": "Ngantangarra", - "code": "ntg" - }, - { - "name": "Natioro", - "code": "nti" - }, - { - "name": "Ngaanyatjarra", - "code": "ntj" - }, - { - "name": "Ikoma-Nata-Isenye", - "code": "ntk" - }, - { - "name": "Nateni", - "code": "ntm" - }, - { - "name": "Ntomba", - "code": "nto" - }, - { - "name": "Northern Tepehuan", - "code": "ntp" - }, - { - "name": "Delo", - "code": "ntr" - }, - { - "name": "Natügu", - "code": "ntu" - }, - { - "name": "Nottoway", - "code": "ntw" - }, - { - "name": "Tangkhul Naga (Myanmar)", - "code": "ntx" - }, - { - "name": "Mantsi", - "code": "nty" - }, - { - "name": "Natanzi", - "code": "ntz" - }, - { - "name": "Yuanga", - "code": "nua" - }, - { - "name": "Nukuini", - "code": "nuc" - }, - { - "name": "Ngala", - "code": "nud" - }, - { - "name": "Ngundu", - "code": "nue" - }, - { - "name": "Nusu", - "code": "nuf" - }, - { - "name": "Nungali", - "code": "nug" - }, - { - "name": "Ndunda", - "code": "nuh" - }, - { - "name": "Ngumbi", - "code": "nui" - }, - { - "name": "Nyole", - "code": "nuj" - }, - { - "name": "Nuuchahnulth", - "code": "nuk" - }, - { - "name": "Nuu-chah-nulth", - "code": "nuk" - }, - { - "name": "Nusa Laut", - "code": "nul" - }, - { - "name": "Niuafo'ou", - "code": "num" - }, - { - "name": "Anong", - "code": "nun" - }, - { - "name": "Nguôn", - "code": "nuo" - }, - { - "name": "Nupe-Nupe-Tako", - "code": "nup" - }, - { - "name": "Nukumanu", - "code": "nuq" - }, - { - "name": "Nukuria", - "code": "nur" - }, - { - "name": "Nuer", - "code": "nus" - }, - { - "name": "Nung (Viet Nam)", - "code": "nut" - }, - { - "name": "Ngbundu", - "code": "nuu" - }, - { - "name": "Northern Nuni", - "code": "nuv" - }, - { - "name": "Nguluwan", - "code": "nuw" - }, - { - "name": "Mehek", - "code": "nux" - }, - { - "name": "Nunggubuyu", - "code": "nuy" - }, - { - "name": "Tlamacazapa Nahuatl", - "code": "nuz" - }, - { - "name": "Nasarian", - "code": "nvh" - }, - { - "name": "Namiae", - "code": "nvm" - }, - { - "name": "Nyokon", - "code": "nvo" - }, - { - "name": "Nawathinehena", - "code": "nwa" - }, - { - "name": "Nyabwa", - "code": "nwb" - }, - { - "name": "Classical Nepal Bhasa", - "code": "nwc" - }, - { - "name": "Classical Newari", - "code": "nwc" - }, - { - "name": "Old Newari", - "code": "nwc" - }, - { - "name": "Ngwe", - "code": "nwe" - }, - { - "name": "Ngayawung", - "code": "nwg" - }, - { - "name": "Southwest Tanna", - "code": "nwi" - }, - { - "name": "Nyamusa-Molo", - "code": "nwm" - }, - { - "name": "Nauo", - "code": "nwo" - }, - { - "name": "Nawaru", - "code": "nwr" - }, - { - "name": "Middle Newar", - "code": "nwx" - }, - { - "name": "Nottoway-Meherrin", - "code": "nwy" - }, - { - "name": "Nauete", - "code": "nxa" - }, - { - "name": "Ngando (Democratic Republic of Congo)", - "code": "nxd" - }, - { - "name": "Nage", - "code": "nxe" - }, - { - "name": "Ngad'a", - "code": "nxg" - }, - { - "name": "Nindi", - "code": "nxi" - }, - { - "name": "Koki Naga", - "code": "nxk" - }, - { - "name": "South Nuaulu", - "code": "nxl" - }, - { - "name": "Numidian", - "code": "nxm" - }, - { - "name": "Ngawun", - "code": "nxn" - }, - { - "name": "Ndambomo", - "code": "nxo" - }, - { - "name": "Naxi", - "code": "nxq" - }, - { - "name": "Ninggerum", - "code": "nxr" - }, - { - "name": "Nafri", - "code": "nxx" - }, - { - "name": "Chewa", - "code": "nya" - }, - { - "name": "Chichewa", - "code": "nya" - }, - { - "name": "Nyanja", - "code": "nya" - }, - { - "name": "Nyangbo", - "code": "nyb" - }, - { - "name": "Nyanga-li", - "code": "nyc" - }, - { - "name": "Nyore", - "code": "nyd" - }, - { - "name": "Olunyole", - "code": "nyd" - }, - { - "name": "Nyengo", - "code": "nye" - }, - { - "name": "Giryama", - "code": "nyf" - }, - { - "name": "Kigiryama", - "code": "nyf" - }, - { - "name": "Nyindu", - "code": "nyg" - }, - { - "name": "Nyikina", - "code": "nyh" - }, - { - "name": "Ama (Sudan)", - "code": "nyi" - }, - { - "name": "Nyanga", - "code": "nyj" - }, - { - "name": "Nyaneka", - "code": "nyk" - }, - { - "name": "Nyeu", - "code": "nyl" - }, - { - "name": "Nyamwezi", - "code": "nym" - }, - { - "name": "Nyankole", - "code": "nyn" - }, - { - "name": "Nyoro", - "code": "nyo" - }, - { - "name": "Nyang'i", - "code": "nyp" - }, - { - "name": "Nayini", - "code": "nyq" - }, - { - "name": "Nyiha (Malawi)", - "code": "nyr" - }, - { - "name": "Nyungar", - "code": "nys" - }, - { - "name": "Nyawaygi", - "code": "nyt" - }, - { - "name": "Nyungwe", - "code": "nyu" - }, - { - "name": "Nyulnyul", - "code": "nyv" - }, - { - "name": "Nyaw", - "code": "nyw" - }, - { - "name": "Nganyaywana", - "code": "nyx" - }, - { - "name": "Nyakyusa-Ngonde", - "code": "nyy" - }, - { - "name": "Tigon Mbembe", - "code": "nza" - }, - { - "name": "Njebi", - "code": "nzb" - }, - { - "name": "Nzadi", - "code": "nzd" - }, - { - "name": "Nzima", - "code": "nzi" - }, - { - "name": "Nzakara", - "code": "nzk" - }, - { - "name": "Zeme Naga", - "code": "nzm" - }, - { - "name": "New Zealand Sign Language", - "code": "nzs" - }, - { - "name": "Teke-Nzikou", - "code": "nzu" - }, - { - "name": "Nzakambay", - "code": "nzy" - }, - { - "name": "Nanga Dama Dogon", - "code": "nzz" - }, - { - "name": "Orok", - "code": "oaa" - }, - { - "name": "Oroch", - "code": "oac" - }, - { - "name": "Ancient Aramaic (up to 700 BCE)", - "code": "oar" - }, - { - "name": "Old Aramaic (up to 700 BCE)", - "code": "oar" - }, - { - "name": "Old Avar", - "code": "oav" - }, - { - "name": "Obispeño", - "code": "obi" - }, - { - "name": "Southern Bontok", - "code": "obk" - }, - { - "name": "Oblo", - "code": "obl" - }, - { - "name": "Moabite", - "code": "obm" - }, - { - "name": "Obo Manobo", - "code": "obo" - }, - { - "name": "Old Burmese", - "code": "obr" - }, - { - "name": "Old Breton", - "code": "obt" - }, - { - "name": "Obulom", - "code": "obu" - }, - { - "name": "Ocaina", - "code": "oca" - }, - { - "name": "Old Chinese", - "code": "och" - }, - { - "name": "Occitan (post 1500)", - "code": "oci" - }, - { - "name": "Old Cham", - "code": "ocm" - }, - { - "name": "Old Cornish", - "code": "oco" - }, - { - "name": "Atzingo Matlatzinca", - "code": "ocu" - }, - { - "name": "Odut", - "code": "oda" - }, - { - "name": "Od", - "code": "odk" - }, - { - "name": "Old Dutch", - "code": "odt" - }, - { - "name": "Odual", - "code": "odu" - }, - { - "name": "Ofo", - "code": "ofo" - }, - { - "name": "Old Frisian", - "code": "ofs" - }, - { - "name": "Efutop", - "code": "ofu" - }, - { - "name": "Ogbia", - "code": "ogb" - }, - { - "name": "Ogbah", - "code": "ogc" - }, - { - "name": "Old Georgian", - "code": "oge" - }, - { - "name": "Ogbogolo", - "code": "ogg" - }, - { - "name": "Khana", - "code": "ogo" - }, - { - "name": "Ogbronuagum", - "code": "ogu" - }, - { - "name": "Old Hittite", - "code": "oht" - }, - { - "name": "Old Hungarian", - "code": "ohu" - }, - { - "name": "Oirata", - "code": "oia" - }, - { - "name": "Inebu One", - "code": "oin" - }, - { - "name": "Northwestern Ojibwa", - "code": "ojb" - }, - { - "name": "Central Ojibwa", - "code": "ojc" - }, - { - "name": "Eastern Ojibwa", - "code": "ojg" - }, - { - "name": "Ojibwa", - "code": "oji" - }, - { - "name": "Old Japanese", - "code": "ojp" - }, - { - "name": "Severn Ojibwa", - "code": "ojs" - }, - { - "name": "Ontong Java", - "code": "ojv" - }, - { - "name": "Western Ojibwa", - "code": "ojw" - }, - { - "name": "Okanagan", - "code": "oka" - }, - { - "name": "Okobo", - "code": "okb" - }, - { - "name": "Kobo", - "code": "okc" - }, - { - "name": "Okodia", - "code": "okd" - }, - { - "name": "Okpe (Southwestern Edo)", - "code": "oke" - }, - { - "name": "Koko Babangk", - "code": "okg" - }, - { - "name": "Koresh-e Rostam", - "code": "okh" - }, - { - "name": "Okiek", - "code": "oki" - }, - { - "name": "Oko-Juwoi", - "code": "okj" - }, - { - "name": "Kwamtim One", - "code": "okk" - }, - { - "name": "Old Kentish Sign Language", - "code": "okl" - }, - { - "name": "Middle Korean (10th-16th cent.)", - "code": "okm" - }, - { - "name": "Oki-No-Erabu", - "code": "okn" - }, - { - "name": "Old Korean (3rd-9th cent.)", - "code": "oko" - }, - { - "name": "Kirike", - "code": "okr" - }, - { - "name": "Oko-Eni-Osayen", - "code": "oks" - }, - { - "name": "Oku", - "code": "oku" - }, - { - "name": "Orokaiva", - "code": "okv" - }, - { - "name": "Okpe (Northwestern Edo)", - "code": "okx" - }, - { - "name": "Old Khmer", - "code": "okz" - }, - { - "name": "Walungge", - "code": "ola" - }, - { - "name": "Mochi", - "code": "old" - }, - { - "name": "Olekha", - "code": "ole" - }, - { - "name": "Olkol", - "code": "olk" - }, - { - "name": "Oloma", - "code": "olm" - }, - { - "name": "Livvi", - "code": "olo" - }, - { - "name": "Olrat", - "code": "olr" - }, - { - "name": "Old Lithuanian", - "code": "olt" - }, - { - "name": "Kuvale", - "code": "olu" - }, - { - "name": "Omaha-Ponca", - "code": "oma" - }, - { - "name": "East Ambae", - "code": "omb" - }, - { - "name": "Mochica", - "code": "omc" - }, - { - "name": "Omagua", - "code": "omg" - }, - { - "name": "Omi", - "code": "omi" - }, - { - "name": "Omok", - "code": "omk" - }, - { - "name": "Ombo", - "code": "oml" - }, - { - "name": "Minoan", - "code": "omn" - }, - { - "name": "Utarmbung", - "code": "omo" - }, - { - "name": "Old Manipuri", - "code": "omp" - }, - { - "name": "Old Marathi", - "code": "omr" - }, - { - "name": "Omotik", - "code": "omt" - }, - { - "name": "Omurano", - "code": "omu" - }, - { - "name": "South Tairora", - "code": "omw" - }, - { - "name": "Old Mon", - "code": "omx" - }, - { - "name": "Old Malay", - "code": "omy" - }, - { - "name": "Ona", - "code": "ona" - }, - { - "name": "Lingao", - "code": "onb" - }, - { - "name": "Oneida", - "code": "one" - }, - { - "name": "Olo", - "code": "ong" - }, - { - "name": "Onin", - "code": "oni" - }, - { - "name": "Onjob", - "code": "onj" - }, - { - "name": "Kabore One", - "code": "onk" - }, - { - "name": "Onobasulu", - "code": "onn" - }, - { - "name": "Onondaga", - "code": "ono" - }, - { - "name": "Sartang", - "code": "onp" - }, - { - "name": "Northern One", - "code": "onr" - }, - { - "name": "Ono", - "code": "ons" - }, - { - "name": "Ontenu", - "code": "ont" - }, - { - "name": "Unua", - "code": "onu" - }, - { - "name": "Old Nubian", - "code": "onw" - }, - { - "name": "Onin Based Pidgin", - "code": "onx" - }, - { - "name": "Tohono O'odham", - "code": "ood" - }, - { - "name": "Ong", - "code": "oog" - }, - { - "name": "Önge", - "code": "oon" - }, - { - "name": "Oorlams", - "code": "oor" - }, - { - "name": "Old Ossetic", - "code": "oos" - }, - { - "name": "Okpamheri", - "code": "opa" - }, - { - "name": "Kopkaka", - "code": "opk" - }, - { - "name": "Oksapmin", - "code": "opm" - }, - { - "name": "Opao", - "code": "opo" - }, - { - "name": "Opata", - "code": "opt" - }, - { - "name": "Ofayé", - "code": "opy" - }, - { - "name": "Oroha", - "code": "ora" - }, - { - "name": "Orma", - "code": "orc" - }, - { - "name": "Orejón", - "code": "ore" - }, - { - "name": "Oring", - "code": "org" - }, - { - "name": "Oroqen", - "code": "orh" - }, - { - "name": "Oriya (macrolanguage)", - "code": "ori" - }, - { - "name": "Oromo", - "code": "orm" - }, - { - "name": "Orang Kanaq", - "code": "orn" - }, - { - "name": "Orokolo", - "code": "oro" - }, - { - "name": "Oruma", - "code": "orr" - }, - { - "name": "Orang Seletar", - "code": "ors" - }, - { - "name": "Adivasi Oriya", - "code": "ort" - }, - { - "name": "Ormuri", - "code": "oru" - }, - { - "name": "Old Russian", - "code": "orv" - }, - { - "name": "Oro Win", - "code": "orw" - }, - { - "name": "Oro", - "code": "orx" - }, - { - "name": "Odia", - "code": "ory" - }, - { - "name": "Oriya (individual language)", - "code": "ory" - }, - { - "name": "Ormu", - "code": "orz" - }, - { - "name": "Osage", - "code": "osa" - }, - { - "name": "Oscan", - "code": "osc" - }, - { - "name": "Osing", - "code": "osi" - }, - { - "name": "Old Sundanese", - "code": "osn" - }, - { - "name": "Ososo", - "code": "oso" - }, - { - "name": "Old Spanish", - "code": "osp" - }, - { - "name": "Ossetian", - "code": "oss" - }, - { - "name": "Ossetic", - "code": "oss" - }, - { - "name": "Osatu", - "code": "ost" - }, - { - "name": "Southern One", - "code": "osu" - }, - { - "name": "Old Saxon", - "code": "osx" - }, - { - "name": "Ottoman Turkish (1500-1928)", - "code": "ota" - }, - { - "name": "Old Tibetan", - "code": "otb" - }, - { - "name": "Ot Danum", - "code": "otd" - }, - { - "name": "Mezquital Otomi", - "code": "ote" - }, - { - "name": "Oti", - "code": "oti" - }, - { - "name": "Old Turkish", - "code": "otk" - }, - { - "name": "Tilapa Otomi", - "code": "otl" - }, - { - "name": "Eastern Highland Otomi", - "code": "otm" - }, - { - "name": "Tenango Otomi", - "code": "otn" - }, - { - "name": "Querétaro Otomi", - "code": "otq" - }, - { - "name": "Otoro", - "code": "otr" - }, - { - "name": "Estado de México Otomi", - "code": "ots" - }, - { - "name": "Temoaya Otomi", - "code": "ott" - }, - { - "name": "Otuke", - "code": "otu" - }, - { - "name": "Ottawa", - "code": "otw" - }, - { - "name": "Texcatepec Otomi", - "code": "otx" - }, - { - "name": "Old Tamil", - "code": "oty" - }, - { - "name": "Ixtenco Otomi", - "code": "otz" - }, - { - "name": "Tagargrent", - "code": "oua" - }, - { - "name": "Glio-Oubi", - "code": "oub" - }, - { - "name": "Oune", - "code": "oue" - }, - { - "name": "Old Uighur", - "code": "oui" - }, - { - "name": "Ouma", - "code": "oum" - }, - { - "name": "Elfdalian", - "code": "ovd" - }, - { - "name": "Övdalian", - "code": "ovd" - }, - { - "name": "Owiniga", - "code": "owi" - }, - { - "name": "Old Welsh", - "code": "owl" - }, - { - "name": "Oy", - "code": "oyb" - }, - { - "name": "Oyda", - "code": "oyd" - }, - { - "name": "Wayampi", - "code": "oym" - }, - { - "name": "Oya'oya", - "code": "oyy" - }, - { - "name": "Koonzime", - "code": "ozm" - }, - { - "name": "Parecís", - "code": "pab" - }, - { - "name": "Pacoh", - "code": "pac" - }, - { - "name": "Paumarí", - "code": "pad" - }, - { - "name": "Pagibete", - "code": "pae" - }, - { - "name": "Paranawát", - "code": "paf" - }, - { - "name": "Pangasinan", - "code": "pag" - }, - { - "name": "Tenharim", - "code": "pah" - }, - { - "name": "Pe", - "code": "pai" - }, - { - "name": "Parakanã", - "code": "pak" - }, - { - "name": "Pahlavi", - "code": "pal" - }, - { - "name": "Kapampangan", - "code": "pam" - }, - { - "name": "Pampanga", - "code": "pam" - }, - { - "name": "Panjabi", - "code": "pan" - }, - { - "name": "Punjabi", - "code": "pan" - }, - { - "name": "Northern Paiute", - "code": "pao" - }, - { - "name": "Papiamento", - "code": "pap" - }, - { - "name": "Parya", - "code": "paq" - }, - { - "name": "Panamint", - "code": "par" - }, - { - "name": "Timbisha", - "code": "par" - }, - { - "name": "Papasena", - "code": "pas" - }, - { - "name": "Palauan", - "code": "pau" - }, - { - "name": "Pakaásnovos", - "code": "pav" - }, - { - "name": "Pawnee", - "code": "paw" - }, - { - "name": "Pankararé", - "code": "pax" - }, - { - "name": "Pech", - "code": "pay" - }, - { - "name": "Pankararú", - "code": "paz" - }, - { - "name": "Páez", - "code": "pbb" - }, - { - "name": "Patamona", - "code": "pbc" - }, - { - "name": "Mezontla Popoloca", - "code": "pbe" - }, - { - "name": "Coyotepec Popoloca", - "code": "pbf" - }, - { - "name": "Paraujano", - "code": "pbg" - }, - { - "name": "E'ñapa Woromaipu", - "code": "pbh" - }, - { - "name": "Parkwa", - "code": "pbi" - }, - { - "name": "Mak (Nigeria)", - "code": "pbl" - }, - { - "name": "Puebla Mazatec", - "code": "pbm" - }, - { - "name": "Kpasam", - "code": "pbn" - }, - { - "name": "Papel", - "code": "pbo" - }, - { - "name": "Badyara", - "code": "pbp" - }, - { - "name": "Pangwa", - "code": "pbr" - }, - { - "name": "Central Pame", - "code": "pbs" - }, - { - "name": "Southern Pashto", - "code": "pbt" - }, - { - "name": "Northern Pashto", - "code": "pbu" - }, - { - "name": "Pnar", - "code": "pbv" - }, - { - "name": "Pyu (Papua New Guinea)", - "code": "pby" - }, - { - "name": "Santa Inés Ahuatempan Popoloca", - "code": "pca" - }, - { - "name": "Pear", - "code": "pcb" - }, - { - "name": "Bouyei", - "code": "pcc" - }, - { - "name": "Picard", - "code": "pcd" - }, - { - "name": "Ruching Palaung", - "code": "pce" - }, - { - "name": "Paliyan", - "code": "pcf" - }, - { - "name": "Paniya", - "code": "pcg" - }, - { - "name": "Pardhan", - "code": "pch" - }, - { - "name": "Duruwa", - "code": "pci" - }, - { - "name": "Parenga", - "code": "pcj" - }, - { - "name": "Paite Chin", - "code": "pck" - }, - { - "name": "Pardhi", - "code": "pcl" - }, - { - "name": "Nigerian Pidgin", - "code": "pcm" - }, - { - "name": "Piti", - "code": "pcn" - }, - { - "name": "Pacahuara", - "code": "pcp" - }, - { - "name": "Pyapun", - "code": "pcw" - }, - { - "name": "Anam", - "code": "pda" - }, - { - "name": "Pennsylvania German", - "code": "pdc" - }, - { - "name": "Pa Di", - "code": "pdi" - }, - { - "name": "Fedan", - "code": "pdn" - }, - { - "name": "Podena", - "code": "pdn" - }, - { - "name": "Padoe", - "code": "pdo" - }, - { - "name": "Plautdietsch", - "code": "pdt" - }, - { - "name": "Kayan", - "code": "pdu" - }, - { - "name": "Peranakan Indonesian", - "code": "pea" - }, - { - "name": "Eastern Pomo", - "code": "peb" - }, - { - "name": "Mala (Papua New Guinea)", - "code": "ped" - }, - { - "name": "Taje", - "code": "pee" - }, - { - "name": "Northeastern Pomo", - "code": "pef" - }, - { - "name": "Pengo", - "code": "peg" - }, - { - "name": "Bonan", - "code": "peh" - }, - { - "name": "Chichimeca-Jonaz", - "code": "pei" - }, - { - "name": "Northern Pomo", - "code": "pej" - }, - { - "name": "Penchal", - "code": "pek" - }, - { - "name": "Pekal", - "code": "pel" - }, - { - "name": "Phende", - "code": "pem" - }, - { - "name": "Old Persian (ca. 600-400 B.C.)", - "code": "peo" - }, - { - "name": "Kunja", - "code": "pep" - }, - { - "name": "Southern Pomo", - "code": "peq" - }, - { - "name": "Iranian Persian", - "code": "pes" - }, - { - "name": "Pémono", - "code": "pev" - }, - { - "name": "Petats", - "code": "pex" - }, - { - "name": "Petjo", - "code": "pey" - }, - { - "name": "Eastern Penan", - "code": "pez" - }, - { - "name": "Pááfang", - "code": "pfa" - }, - { - "name": "Pere", - "code": "pfe" - }, - { - "name": "Pfaelzisch", - "code": "pfl" - }, - { - "name": "Sudanese Creole Arabic", - "code": "pga" - }, - { - "name": "Gāndhārī", - "code": "pgd" - }, - { - "name": "Pangwali", - "code": "pgg" - }, - { - "name": "Pagi", - "code": "pgi" - }, - { - "name": "Rerep", - "code": "pgk" - }, - { - "name": "Primitive Irish", - "code": "pgl" - }, - { - "name": "Paelignian", - "code": "pgn" - }, - { - "name": "Pangseng", - "code": "pgs" - }, - { - "name": "Pagu", - "code": "pgu" - }, - { - "name": "Papua New Guinean Sign Language", - "code": "pgz" - }, - { - "name": "Pa-Hng", - "code": "pha" - }, - { - "name": "Phudagi", - "code": "phd" - }, - { - "name": "Phuong", - "code": "phg" - }, - { - "name": "Phukha", - "code": "phh" - }, - { - "name": "Phake", - "code": "phk" - }, - { - "name": "Palula", - "code": "phl" - }, - { - "name": "Phalura", - "code": "phl" - }, - { - "name": "Phimbi", - "code": "phm" - }, - { - "name": "Phoenician", - "code": "phn" - }, - { - "name": "Phunoi", - "code": "pho" - }, - { - "name": "Phana'", - "code": "phq" - }, - { - "name": "Pahari-Potwari", - "code": "phr" - }, - { - "name": "Phu Thai", - "code": "pht" - }, - { - "name": "Phuan", - "code": "phu" - }, - { - "name": "Pahlavani", - "code": "phv" - }, - { - "name": "Phangduwali", - "code": "phw" - }, - { - "name": "Pima Bajo", - "code": "pia" - }, - { - "name": "Yine", - "code": "pib" - }, - { - "name": "Pinji", - "code": "pic" - }, - { - "name": "Piaroa", - "code": "pid" - }, - { - "name": "Piro", - "code": "pie" - }, - { - "name": "Pingelapese", - "code": "pif" - }, - { - "name": "Pisabo", - "code": "pig" - }, - { - "name": "Pitcairn-Norfolk", - "code": "pih" - }, - { - "name": "Pini", - "code": "pii" - }, - { - "name": "Pijao", - "code": "pij" - }, - { - "name": "Yom", - "code": "pil" - }, - { - "name": "Powhatan", - "code": "pim" - }, - { - "name": "Piame", - "code": "pin" - }, - { - "name": "Piapoco", - "code": "pio" - }, - { - "name": "Pero", - "code": "pip" - }, - { - "name": "Piratapuyo", - "code": "pir" - }, - { - "name": "Pijin", - "code": "pis" - }, - { - "name": "Pitta Pitta", - "code": "pit" - }, - { - "name": "Pintupi-Luritja", - "code": "piu" - }, - { - "name": "Pileni", - "code": "piv" - }, - { - "name": "Vaeakau-Taumako", - "code": "piv" - }, - { - "name": "Pimbwe", - "code": "piw" - }, - { - "name": "Piu", - "code": "pix" - }, - { - "name": "Piya-Kwonci", - "code": "piy" - }, - { - "name": "Pije", - "code": "piz" - }, - { - "name": "Pitjantjatjara", - "code": "pjt" - }, - { - "name": "Ardhamāgadhī Prākrit", - "code": "pka" - }, - { - "name": "Kipfokomo", - "code": "pkb" - }, - { - "name": "Pokomo", - "code": "pkb" - }, - { - "name": "Paekche", - "code": "pkc" - }, - { - "name": "Pak-Tong", - "code": "pkg" - }, - { - "name": "Pankhu", - "code": "pkh" - }, - { - "name": "Pakanha", - "code": "pkn" - }, - { - "name": "Pökoot", - "code": "pko" - }, - { - "name": "Pukapuka", - "code": "pkp" - }, - { - "name": "Attapady Kurumba", - "code": "pkr" - }, - { - "name": "Pakistan Sign Language", - "code": "pks" - }, - { - "name": "Maleng", - "code": "pkt" - }, - { - "name": "Paku", - "code": "pku" - }, - { - "name": "Miani", - "code": "pla" - }, - { - "name": "Polonombauk", - "code": "plb" - }, - { - "name": "Central Palawano", - "code": "plc" - }, - { - "name": "Polari", - "code": "pld" - }, - { - "name": "Palu'e", - "code": "ple" - }, - { - "name": "Pilagá", - "code": "plg" - }, - { - "name": "Paulohi", - "code": "plh" - }, - { - "name": "Pali", - "code": "pli" - }, - { - "name": "Polci", - "code": "plj" - }, - { - "name": "Kohistani Shina", - "code": "plk" - }, - { - "name": "Shwe Palaung", - "code": "pll" - }, - { - "name": "Palenquero", - "code": "pln" - }, - { - "name": "Oluta Popoluca", - "code": "plo" - }, - { - "name": "Palaic", - "code": "plq" - }, - { - "name": "Palaka Senoufo", - "code": "plr" - }, - { - "name": "San Marcos Tlacoyalco Popoloca", - "code": "pls" - }, - { - "name": "San Marcos Tlalcoyalco Popoloca", - "code": "pls" - }, - { - "name": "Plateau Malagasy", - "code": "plt" - }, - { - "name": "Palikúr", - "code": "plu" - }, - { - "name": "Southwest Palawano", - "code": "plv" - }, - { - "name": "Brooke's Point Palawano", - "code": "plw" - }, - { - "name": "Bolyu", - "code": "ply" - }, - { - "name": "Paluan", - "code": "plz" - }, - { - "name": "Paama", - "code": "pma" - }, - { - "name": "Pambia", - "code": "pmb" - }, - { - "name": "Pallanganmiddang", - "code": "pmd" - }, - { - "name": "Pwaamei", - "code": "pme" - }, - { - "name": "Pamona", - "code": "pmf" - }, - { - "name": "Māhārāṣṭri Prākrit", - "code": "pmh" - }, - { - "name": "Northern Pumi", - "code": "pmi" - }, - { - "name": "Southern Pumi", - "code": "pmj" - }, - { - "name": "Pamlico", - "code": "pmk" - }, - { - "name": "Lingua Franca", - "code": "pml" - }, - { - "name": "Pomo", - "code": "pmm" - }, - { - "name": "Pam", - "code": "pmn" - }, - { - "name": "Pom", - "code": "pmo" - }, - { - "name": "Northern Pame", - "code": "pmq" - }, - { - "name": "Paynamar", - "code": "pmr" - }, - { - "name": "Piemontese", - "code": "pms" - }, - { - "name": "Tuamotuan", - "code": "pmt" - }, - { - "name": "Plains Miwok", - "code": "pmw" - }, - { - "name": "Poumei Naga", - "code": "pmx" - }, - { - "name": "Papuan Malay", - "code": "pmy" - }, - { - "name": "Southern Pame", - "code": "pmz" - }, - { - "name": "Punan Bah-Biau", - "code": "pna" - }, - { - "name": "Western Panjabi", - "code": "pnb" - }, - { - "name": "Pannei", - "code": "pnc" - }, - { - "name": "Mpinda", - "code": "pnd" - }, - { - "name": "Western Penan", - "code": "pne" - }, - { - "name": "Pangu", - "code": "png" - }, - { - "name": "Pongu", - "code": "png" - }, - { - "name": "Penrhyn", - "code": "pnh" - }, - { - "name": "Aoheng", - "code": "pni" - }, - { - "name": "Pinjarup", - "code": "pnj" - }, - { - "name": "Paunaka", - "code": "pnk" - }, - { - "name": "Paleni", - "code": "pnl" - }, - { - "name": "Punan Batu 1", - "code": "pnm" - }, - { - "name": "Pinai-Hagahai", - "code": "pnn" - }, - { - "name": "Panobo", - "code": "pno" - }, - { - "name": "Pancana", - "code": "pnp" - }, - { - "name": "Pana (Burkina Faso)", - "code": "pnq" - }, - { - "name": "Panim", - "code": "pnr" - }, - { - "name": "Ponosakan", - "code": "pns" - }, - { - "name": "Pontic", - "code": "pnt" - }, - { - "name": "Jiongnai Bunu", - "code": "pnu" - }, - { - "name": "Pinigura", - "code": "pnv" - }, - { - "name": "Banyjima", - "code": "pnw" - }, - { - "name": "Panytyima", - "code": "pnw" - }, - { - "name": "Phong-Kniang", - "code": "pnx" - }, - { - "name": "Pinyin", - "code": "pny" - }, - { - "name": "Pana (Central African Republic)", - "code": "pnz" - }, - { - "name": "Poqomam", - "code": "poc" - }, - { - "name": "San Juan Atzingo Popoloca", - "code": "poe" - }, - { - "name": "Poke", - "code": "pof" - }, - { - "name": "Potiguára", - "code": "pog" - }, - { - "name": "Poqomchi'", - "code": "poh" - }, - { - "name": "Highland Popoluca", - "code": "poi" - }, - { - "name": "Pokangá", - "code": "pok" - }, - { - "name": "Polish", - "code": "pol" - }, - { - "name": "Southeastern Pomo", - "code": "pom" - }, - { - "name": "Pohnpeian", - "code": "pon" - }, - { - "name": "Central Pomo", - "code": "poo" - }, - { - "name": "Pwapwâ", - "code": "pop" - }, - { - "name": "Texistepec Popoluca", - "code": "poq" - }, - { - "name": "Portuguese", - "code": "por" - }, - { - "name": "Sayula Popoluca", - "code": "pos" - }, - { - "name": "Potawatomi", - "code": "pot" - }, - { - "name": "Upper Guinea Crioulo", - "code": "pov" - }, - { - "name": "San Felipe Otlaltepec Popoloca", - "code": "pow" - }, - { - "name": "Polabian", - "code": "pox" - }, - { - "name": "Pogolo", - "code": "poy" - }, - { - "name": "Papi", - "code": "ppe" - }, - { - "name": "Paipai", - "code": "ppi" - }, - { - "name": "Uma", - "code": "ppk" - }, - { - "name": "Nicarao", - "code": "ppl" - }, - { - "name": "Pipil", - "code": "ppl" - }, - { - "name": "Papuma", - "code": "ppm" - }, - { - "name": "Papapana", - "code": "ppn" - }, - { - "name": "Folopa", - "code": "ppo" - }, - { - "name": "Pelende", - "code": "ppp" - }, - { - "name": "Pei", - "code": "ppq" - }, - { - "name": "San Luís Temalacayuca Popoloca", - "code": "pps" - }, - { - "name": "Pare", - "code": "ppt" - }, - { - "name": "Papora", - "code": "ppu" - }, - { - "name": "Pa'a", - "code": "pqa" - }, - { - "name": "Malecite-Passamaquoddy", - "code": "pqm" - }, - { - "name": "Parachi", - "code": "prc" - }, - { - "name": "Parsi-Dari", - "code": "prd" - }, - { - "name": "Principense", - "code": "pre" - }, - { - "name": "Paranan", - "code": "prf" - }, - { - "name": "Prussian", - "code": "prg" - }, - { - "name": "Porohanon", - "code": "prh" - }, - { - "name": "Paicî", - "code": "pri" - }, - { - "name": "Parauk", - "code": "prk" - }, - { - "name": "Peruvian Sign Language", - "code": "prl" - }, - { - "name": "Kibiri", - "code": "prm" - }, - { - "name": "Prasuni", - "code": "prn" - }, - { - "name": "Old Occitan (to 1500)", - "code": "pro" - }, - { - "name": "Old Provençal (to 1500)", - "code": "pro" - }, - { - "name": "Parsi", - "code": "prp" - }, - { - "name": "Ashéninka Perené", - "code": "prq" - }, - { - "name": "Puri", - "code": "prr" - }, - { - "name": "Afghan Persian", - "code": "prs" - }, - { - "name": "Dari", - "code": "prs" - }, - { - "name": "Phai", - "code": "prt" - }, - { - "name": "Puragi", - "code": "pru" - }, - { - "name": "Parawen", - "code": "prw" - }, - { - "name": "Purik", - "code": "prx" - }, - { - "name": "Providencia Sign Language", - "code": "prz" - }, - { - "name": "Asue Awyu", - "code": "psa" - }, - { - "name": "Persian Sign Language", - "code": "psc" - }, - { - "name": "Plains Indian Sign Language", - "code": "psd" - }, - { - "name": "Central Malay", - "code": "pse" - }, - { - "name": "Penang Sign Language", - "code": "psg" - }, - { - "name": "Southwest Pashai", - "code": "psh" - }, - { - "name": "Southwest Pashayi", - "code": "psh" - }, - { - "name": "Southeast Pashai", - "code": "psi" - }, - { - "name": "Southeast Pashayi", - "code": "psi" - }, - { - "name": "Puerto Rican Sign Language", - "code": "psl" - }, - { - "name": "Pauserna", - "code": "psm" - }, - { - "name": "Panasuan", - "code": "psn" - }, - { - "name": "Polish Sign Language", - "code": "pso" - }, - { - "name": "Philippine Sign Language", - "code": "psp" - }, - { - "name": "Pasi", - "code": "psq" - }, - { - "name": "Portuguese Sign Language", - "code": "psr" - }, - { - "name": "Kaulong", - "code": "pss" - }, - { - "name": "Central Pashto", - "code": "pst" - }, - { - "name": "Sauraseni Prākrit", - "code": "psu" - }, - { - "name": "Port Sandwich", - "code": "psw" - }, - { - "name": "Piscataway", - "code": "psy" - }, - { - "name": "Pai Tavytera", - "code": "pta" - }, - { - "name": "Pataxó Hã-Ha-Hãe", - "code": "pth" - }, - { - "name": "Pindiini", - "code": "pti" - }, - { - "name": "Wangkatha", - "code": "pti" - }, - { - "name": "Patani", - "code": "ptn" - }, - { - "name": "Zo'é", - "code": "pto" - }, - { - "name": "Patep", - "code": "ptp" - }, - { - "name": "Pattapu", - "code": "ptq" - }, - { - "name": "Piamatsina", - "code": "ptr" - }, - { - "name": "Enrekang", - "code": "ptt" - }, - { - "name": "Bambam", - "code": "ptu" - }, - { - "name": "Port Vato", - "code": "ptv" - }, - { - "name": "Pentlatch", - "code": "ptw" - }, - { - "name": "Pathiya", - "code": "pty" - }, - { - "name": "Western Highland Purepecha", - "code": "pua" - }, - { - "name": "Purum", - "code": "pub" - }, - { - "name": "Punan Merap", - "code": "puc" - }, - { - "name": "Punan Aput", - "code": "pud" - }, - { - "name": "Puelche", - "code": "pue" - }, - { - "name": "Punan Merah", - "code": "puf" - }, - { - "name": "Phuie", - "code": "pug" - }, - { - "name": "Puinave", - "code": "pui" - }, - { - "name": "Punan Tubu", - "code": "puj" - }, - { - "name": "Puma", - "code": "pum" - }, - { - "name": "Puoc", - "code": "puo" - }, - { - "name": "Pulabu", - "code": "pup" - }, - { - "name": "Puquina", - "code": "puq" - }, - { - "name": "Puruborá", - "code": "pur" - }, - { - "name": "Pushto", - "code": "pus" - }, - { - "name": "Pashto", - "code": "pus" - }, - { - "name": "Putoh", - "code": "put" - }, - { - "name": "Punu", - "code": "puu" - }, - { - "name": "Puluwatese", - "code": "puw" - }, - { - "name": "Puare", - "code": "pux" - }, - { - "name": "Purisimeño", - "code": "puy" - }, - { - "name": "Pawaia", - "code": "pwa" - }, - { - "name": "Panawa", - "code": "pwb" - }, - { - "name": "Gapapaiwa", - "code": "pwg" - }, - { - "name": "Patwin", - "code": "pwi" - }, - { - "name": "Molbog", - "code": "pwm" - }, - { - "name": "Paiwan", - "code": "pwn" - }, - { - "name": "Pwo Western Karen", - "code": "pwo" - }, - { - "name": "Powari", - "code": "pwr" - }, - { - "name": "Pwo Northern Karen", - "code": "pww" - }, - { - "name": "Quetzaltepec Mixe", - "code": "pxm" - }, - { - "name": "Pye Krumen", - "code": "pye" - }, - { - "name": "Fyam", - "code": "pym" - }, - { - "name": "Poyanáwa", - "code": "pyn" - }, - { - "name": "Lengua de Señas del Paraguay", - "code": "pys" - }, - { - "name": "Paraguayan Sign Language", - "code": "pys" - }, - { - "name": "Puyuma", - "code": "pyu" - }, - { - "name": "Pyu (Myanmar)", - "code": "pyx" - }, - { - "name": "Pyen", - "code": "pyy" - }, - { - "name": "Para Naga", - "code": "pzn" - }, - { - "name": "Quapaw", - "code": "qua" - }, - { - "name": "Huallaga Huánuco Quechua", - "code": "qub" - }, - { - "name": "K'iche'", - "code": "quc" - }, - { - "name": "Quiché", - "code": "quc" - }, - { - "name": "Calderón Highland Quichua", - "code": "qud" - }, - { - "name": "Quechua", - "code": "que" - }, - { - "name": "Lambayeque Quechua", - "code": "quf" - }, - { - "name": "Chimborazo Highland Quichua", - "code": "qug" - }, - { - "name": "South Bolivian Quechua", - "code": "quh" - }, - { - "name": "Quileute", - "code": "qui" - }, - { - "name": "Chachapoyas Quechua", - "code": "quk" - }, - { - "name": "North Bolivian Quechua", - "code": "qul" - }, - { - "name": "Sipacapense", - "code": "qum" - }, - { - "name": "Quinault", - "code": "qun" - }, - { - "name": "Southern Pastaza Quechua", - "code": "qup" - }, - { - "name": "Quinqui", - "code": "quq" - }, - { - "name": "Yanahuanca Pasco Quechua", - "code": "qur" - }, - { - "name": "Santiago del Estero Quichua", - "code": "qus" - }, - { - "name": "Sacapulteco", - "code": "quv" - }, - { - "name": "Tena Lowland Quichua", - "code": "quw" - }, - { - "name": "Yauyos Quechua", - "code": "qux" - }, - { - "name": "Ayacucho Quechua", - "code": "quy" - }, - { - "name": "Cusco Quechua", - "code": "quz" - }, - { - "name": "Ambo-Pasco Quechua", - "code": "qva" - }, - { - "name": "Cajamarca Quechua", - "code": "qvc" - }, - { - "name": "Eastern Apurímac Quechua", - "code": "qve" - }, - { - "name": "Huamalíes-Dos de Mayo Huánuco Quechua", - "code": "qvh" - }, - { - "name": "Imbabura Highland Quichua", - "code": "qvi" - }, - { - "name": "Loja Highland Quichua", - "code": "qvj" - }, - { - "name": "Cajatambo North Lima Quechua", - "code": "qvl" - }, - { - "name": "Margos-Yarowilca-Lauricocha Quechua", - "code": "qvm" - }, - { - "name": "North Junín Quechua", - "code": "qvn" - }, - { - "name": "Napo Lowland Quechua", - "code": "qvo" - }, - { - "name": "Pacaraos Quechua", - "code": "qvp" - }, - { - "name": "San Martín Quechua", - "code": "qvs" - }, - { - "name": "Huaylla Wanca Quechua", - "code": "qvw" - }, - { - "name": "Queyu", - "code": "qvy" - }, - { - "name": "Northern Pastaza Quichua", - "code": "qvz" - }, - { - "name": "Corongo Ancash Quechua", - "code": "qwa" - }, - { - "name": "Classical Quechua", - "code": "qwc" - }, - { - "name": "Huaylas Ancash Quechua", - "code": "qwh" - }, - { - "name": "Kuman (Russia)", - "code": "qwm" - }, - { - "name": "Sihuas Ancash Quechua", - "code": "qws" - }, - { - "name": "Kwalhioqua-Tlatskanai", - "code": "qwt" - }, - { - "name": "Chiquián Ancash Quechua", - "code": "qxa" - }, - { - "name": "Chincha Quechua", - "code": "qxc" - }, - { - "name": "Panao Huánuco Quechua", - "code": "qxh" - }, - { - "name": "Salasaca Highland Quichua", - "code": "qxl" - }, - { - "name": "Northern Conchucos Ancash Quechua", - "code": "qxn" - }, - { - "name": "Southern Conchucos Ancash Quechua", - "code": "qxo" - }, - { - "name": "Puno Quechua", - "code": "qxp" - }, - { - "name": "Qashqa'i", - "code": "qxq" - }, - { - "name": "Cañar Highland Quichua", - "code": "qxr" - }, - { - "name": "Southern Qiang", - "code": "qxs" - }, - { - "name": "Santa Ana de Tusi Pasco Quechua", - "code": "qxt" - }, - { - "name": "Arequipa-La Unión Quechua", - "code": "qxu" - }, - { - "name": "Jauja Wanca Quechua", - "code": "qxw" - }, - { - "name": "Quenya", - "code": "qya" - }, - { - "name": "Quiripi", - "code": "qyp" - }, - { - "name": "Dungmali", - "code": "raa" - }, - { - "name": "Camling", - "code": "rab" - }, - { - "name": "Rasawa", - "code": "rac" - }, - { - "name": "Rade", - "code": "rad" - }, - { - "name": "Western Meohang", - "code": "raf" - }, - { - "name": "Logooli", - "code": "rag" - }, - { - "name": "Lulogooli", - "code": "rag" - }, - { - "name": "Rabha", - "code": "rah" - }, - { - "name": "Ramoaaina", - "code": "rai" - }, - { - "name": "Rajasthani", - "code": "raj" - }, - { - "name": "Tulu-Bohuai", - "code": "rak" - }, - { - "name": "Ralte", - "code": "ral" - }, - { - "name": "Canela", - "code": "ram" - }, - { - "name": "Riantana", - "code": "ran" - }, - { - "name": "Rao", - "code": "rao" - }, - { - "name": "Rapanui", - "code": "rap" - }, - { - "name": "Saam", - "code": "raq" - }, - { - "name": "Cook Islands Maori", - "code": "rar" - }, - { - "name": "Rarotongan", - "code": "rar" - }, - { - "name": "Tegali", - "code": "ras" - }, - { - "name": "Razajerdi", - "code": "rat" - }, - { - "name": "Raute", - "code": "rau" - }, - { - "name": "Sampang", - "code": "rav" - }, - { - "name": "Rawang", - "code": "raw" - }, - { - "name": "Rang", - "code": "rax" - }, - { - "name": "Rapa", - "code": "ray" - }, - { - "name": "Rahambuu", - "code": "raz" - }, - { - "name": "Rumai Palaung", - "code": "rbb" - }, - { - "name": "Northern Bontok", - "code": "rbk" - }, - { - "name": "Miraya Bikol", - "code": "rbl" - }, - { - "name": "Barababaraba", - "code": "rbp" - }, - { - "name": "Réunion Creole French", - "code": "rcf" - }, - { - "name": "Rudbari", - "code": "rdb" - }, - { - "name": "Rerau", - "code": "rea" - }, - { - "name": "Rembong", - "code": "reb" - }, - { - "name": "Rejang Kayan", - "code": "ree" - }, - { - "name": "Kara (Tanzania)", - "code": "reg" - }, - { - "name": "Reli", - "code": "rei" - }, - { - "name": "Rejang", - "code": "rej" - }, - { - "name": "Rendille", - "code": "rel" - }, - { - "name": "Remo", - "code": "rem" - }, - { - "name": "Rengao", - "code": "ren" - }, - { - "name": "Rer Bare", - "code": "rer" - }, - { - "name": "Reshe", - "code": "res" - }, - { - "name": "Retta", - "code": "ret" - }, - { - "name": "Reyesano", - "code": "rey" - }, - { - "name": "Roria", - "code": "rga" - }, - { - "name": "Romano-Greek", - "code": "rge" - }, - { - "name": "Rangkas", - "code": "rgk" - }, - { - "name": "Romagnol", - "code": "rgn" - }, - { - "name": "Resígaro", - "code": "rgr" - }, - { - "name": "Southern Roglai", - "code": "rgs" - }, - { - "name": "Ringgou", - "code": "rgu" - }, - { - "name": "Rohingya", - "code": "rhg" - }, - { - "name": "Yahang", - "code": "rhp" - }, - { - "name": "Riang (India)", - "code": "ria" - }, - { - "name": "Tarifit", - "code": "rif" - }, - { - "name": "Riang (Myanmar)", - "code": "ril" - }, - { - "name": "Riang Lang", - "code": "ril" - }, - { - "name": "Nyaturu", - "code": "rim" - }, - { - "name": "Nungu", - "code": "rin" - }, - { - "name": "Ribun", - "code": "rir" - }, - { - "name": "Ritharrngu", - "code": "rit" - }, - { - "name": "Riung", - "code": "riu" - }, - { - "name": "Rajong", - "code": "rjg" - }, - { - "name": "Raji", - "code": "rji" - }, - { - "name": "Rajbanshi", - "code": "rjs" - }, - { - "name": "Kraol", - "code": "rka" - }, - { - "name": "Rikbaktsa", - "code": "rkb" - }, - { - "name": "Rakahanga-Manihiki", - "code": "rkh" - }, - { - "name": "Rakhine", - "code": "rki" - }, - { - "name": "Marka", - "code": "rkm" - }, - { - "name": "Kamta", - "code": "rkt" - }, - { - "name": "Rangpuri", - "code": "rkt" - }, - { - "name": "Arakwal", - "code": "rkw" - }, - { - "name": "Rama", - "code": "rma" - }, - { - "name": "Rembarrnga", - "code": "rmb" - }, - { - "name": "Carpathian Romani", - "code": "rmc" - }, - { - "name": "Traveller Danish", - "code": "rmd" - }, - { - "name": "Angloromani", - "code": "rme" - }, - { - "name": "Kalo Finnish Romani", - "code": "rmf" - }, - { - "name": "Traveller Norwegian", - "code": "rmg" - }, - { - "name": "Murkim", - "code": "rmh" - }, - { - "name": "Lomavren", - "code": "rmi" - }, - { - "name": "Romkun", - "code": "rmk" - }, - { - "name": "Baltic Romani", - "code": "rml" - }, - { - "name": "Roma", - "code": "rmm" - }, - { - "name": "Balkan Romani", - "code": "rmn" - }, - { - "name": "Sinte Romani", - "code": "rmo" - }, - { - "name": "Rempi", - "code": "rmp" - }, - { - "name": "Caló", - "code": "rmq" - }, - { - "name": "Romanian Sign Language", - "code": "rms" - }, - { - "name": "Domari", - "code": "rmt" - }, - { - "name": "Tavringer Romani", - "code": "rmu" - }, - { - "name": "Romanova", - "code": "rmv" - }, - { - "name": "Welsh Romani", - "code": "rmw" - }, - { - "name": "Romam", - "code": "rmx" - }, - { - "name": "Vlax Romani", - "code": "rmy" - }, - { - "name": "Marma", - "code": "rmz" - }, - { - "name": "Ruund", - "code": "rnd" - }, - { - "name": "Ronga", - "code": "rng" - }, - { - "name": "Ranglong", - "code": "rnl" - }, - { - "name": "Roon", - "code": "rnn" - }, - { - "name": "Rongpo", - "code": "rnp" - }, - { - "name": "Nari Nari", - "code": "rnr" - }, - { - "name": "Rungwa", - "code": "rnw" - }, - { - "name": "Tae'", - "code": "rob" - }, - { - "name": "Cacgia Roglai", - "code": "roc" - }, - { - "name": "Rogo", - "code": "rod" - }, - { - "name": "Ronji", - "code": "roe" - }, - { - "name": "Rombo", - "code": "rof" - }, - { - "name": "Northern Roglai", - "code": "rog" - }, - { - "name": "Romansh", - "code": "roh" - }, - { - "name": "Romblomanon", - "code": "rol" - }, - { - "name": "Romany", - "code": "rom" - }, - { - "name": "Romanian", - "code": "ron" - }, - { - "name": "Moldavian", - "code": "ron" - }, - { - "name": "Moldovan", - "code": "ron" - }, - { - "name": "Rotokas", - "code": "roo" - }, - { - "name": "Kriol", - "code": "rop" - }, - { - "name": "Rongga", - "code": "ror" - }, - { - "name": "Runga", - "code": "rou" - }, - { - "name": "Dela-Oenale", - "code": "row" - }, - { - "name": "Repanbitip", - "code": "rpn" - }, - { - "name": "Rapting", - "code": "rpt" - }, - { - "name": "Ririo", - "code": "rri" - }, - { - "name": "Waima", - "code": "rro" - }, - { - "name": "Arritinngithigh", - "code": "rrt" - }, - { - "name": "Romano-Serbian", - "code": "rsb" - }, - { - "name": "Russian Sign Language", - "code": "rsl" - }, - { - "name": "Miriwoong Sign Language", - "code": "rsm" - }, - { - "name": "Rungtu Chin", - "code": "rtc" - }, - { - "name": "Ratahan", - "code": "rth" - }, - { - "name": "Rotuman", - "code": "rtm" - }, - { - "name": "Yurats", - "code": "rts" - }, - { - "name": "Rathawi", - "code": "rtw" - }, - { - "name": "Gungu", - "code": "rub" - }, - { - "name": "Ruuli", - "code": "ruc" - }, - { - "name": "Rusyn", - "code": "rue" - }, - { - "name": "Luguru", - "code": "ruf" - }, - { - "name": "Roviana", - "code": "rug" - }, - { - "name": "Ruga", - "code": "ruh" - }, - { - "name": "Rufiji", - "code": "rui" - }, - { - "name": "Che", - "code": "ruk" - }, - { - "name": "Rundi", - "code": "run" - }, - { - "name": "Istro Romanian", - "code": "ruo" - }, - { - "name": "Aromanian", - "code": "rup" - }, - { - "name": "Arumanian", - "code": "rup" - }, - { - "name": "Macedo-Romanian", - "code": "rup" - }, - { - "name": "Megleno Romanian", - "code": "ruq" - }, - { - "name": "Russian", - "code": "rus" - }, - { - "name": "Rutul", - "code": "rut" - }, - { - "name": "Lanas Lobu", - "code": "ruu" - }, - { - "name": "Mala (Nigeria)", - "code": "ruy" - }, - { - "name": "Ruma", - "code": "ruz" - }, - { - "name": "Rawo", - "code": "rwa" - }, - { - "name": "Rwa", - "code": "rwk" - }, - { - "name": "Ruwila", - "code": "rwl" - }, - { - "name": "Amba (Uganda)", - "code": "rwm" - }, - { - "name": "Rawa", - "code": "rwo" - }, - { - "name": "Marwari (India)", - "code": "rwr" - }, - { - "name": "Ngardi", - "code": "rxd" - }, - { - "name": "Garuwali", - "code": "rxw" - }, - { - "name": "Karuwali", - "code": "rxw" - }, - { - "name": "Northern Amami-Oshima", - "code": "ryn" - }, - { - "name": "Yaeyama", - "code": "rys" - }, - { - "name": "Central Okinawan", - "code": "ryu" - }, - { - "name": "Rāziḥī", - "code": "rzh" - }, - { - "name": "Saba", - "code": "saa" - }, - { - "name": "Buglere", - "code": "sab" - }, - { - "name": "Meskwaki", - "code": "sac" - }, - { - "name": "Sandawe", - "code": "sad" - }, - { - "name": "Sabanê", - "code": "sae" - }, - { - "name": "Safaliba", - "code": "saf" - }, - { - "name": "Sango", - "code": "sag" - }, - { - "name": "Yakut", - "code": "sah" - }, - { - "name": "Sahu", - "code": "saj" - }, - { - "name": "Sake", - "code": "sak" - }, - { - "name": "Samaritan Aramaic", - "code": "sam" - }, - { - "name": "Sanskrit", - "code": "san" - }, - { - "name": "Sause", - "code": "sao" - }, - { - "name": "Samburu", - "code": "saq" - }, - { - "name": "Saraveca", - "code": "sar" - }, - { - "name": "Sasak", - "code": "sas" - }, - { - "name": "Santali", - "code": "sat" - }, - { - "name": "Saleman", - "code": "sau" - }, - { - "name": "Saafi-Saafi", - "code": "sav" - }, - { - "name": "Sawi", - "code": "saw" - }, - { - "name": "Sa", - "code": "sax" - }, - { - "name": "Saya", - "code": "say" - }, - { - "name": "Saurashtra", - "code": "saz" - }, - { - "name": "Ngambay", - "code": "sba" - }, - { - "name": "Simbo", - "code": "sbb" - }, - { - "name": "Kele (Papua New Guinea)", - "code": "sbc" - }, - { - "name": "Southern Samo", - "code": "sbd" - }, - { - "name": "Saliba", - "code": "sbe" - }, - { - "name": "Chabu", - "code": "sbf" - }, - { - "name": "Shabo", - "code": "sbf" - }, - { - "name": "Seget", - "code": "sbg" - }, - { - "name": "Sori-Harengan", - "code": "sbh" - }, - { - "name": "Seti", - "code": "sbi" - }, - { - "name": "Surbakhal", - "code": "sbj" - }, - { - "name": "Safwa", - "code": "sbk" - }, - { - "name": "Botolan Sambal", - "code": "sbl" - }, - { - "name": "Sagala", - "code": "sbm" - }, - { - "name": "Sindhi Bhil", - "code": "sbn" - }, - { - "name": "Sabüm", - "code": "sbo" - }, - { - "name": "Sangu (Tanzania)", - "code": "sbp" - }, - { - "name": "Sileibi", - "code": "sbq" - }, - { - "name": "Sembakung Murut", - "code": "sbr" - }, - { - "name": "Subiya", - "code": "sbs" - }, - { - "name": "Kimki", - "code": "sbt" - }, - { - "name": "Stod Bhoti", - "code": "sbu" - }, - { - "name": "Sabine", - "code": "sbv" - }, - { - "name": "Simba", - "code": "sbw" - }, - { - "name": "Seberuang", - "code": "sbx" - }, - { - "name": "Soli", - "code": "sby" - }, - { - "name": "Sara Kaba", - "code": "sbz" - }, - { - "name": "Chut", - "code": "scb" - }, - { - "name": "Dongxiang", - "code": "sce" - }, - { - "name": "San Miguel Creole French", - "code": "scf" - }, - { - "name": "Sanggau", - "code": "scg" - }, - { - "name": "Sakachep", - "code": "sch" - }, - { - "name": "Sri Lankan Creole Malay", - "code": "sci" - }, - { - "name": "Sadri", - "code": "sck" - }, - { - "name": "Shina", - "code": "scl" - }, - { - "name": "Sicilian", - "code": "scn" - }, - { - "name": "Scots", - "code": "sco" - }, - { - "name": "Helambu Sherpa", - "code": "scp" - }, - { - "name": "Hyolmo", - "code": "scp" - }, - { - "name": "Sa'och", - "code": "scq" - }, - { - "name": "North Slavey", - "code": "scs" - }, - { - "name": "Southern Katang", - "code": "sct" - }, - { - "name": "Shumcho", - "code": "scu" - }, - { - "name": "Sheni", - "code": "scv" - }, - { - "name": "Sha", - "code": "scw" - }, - { - "name": "Sicel", - "code": "scx" - }, - { - "name": "Toraja-Sa'dan", - "code": "sda" - }, - { - "name": "Shabak", - "code": "sdb" - }, - { - "name": "Sassarese Sardinian", - "code": "sdc" - }, - { - "name": "Surubu", - "code": "sde" - }, - { - "name": "Sarli", - "code": "sdf" - }, - { - "name": "Savi", - "code": "sdg" - }, - { - "name": "Southern Kurdish", - "code": "sdh" - }, - { - "name": "Suundi", - "code": "sdj" - }, - { - "name": "Sos Kundi", - "code": "sdk" - }, - { - "name": "Saudi Arabian Sign Language", - "code": "sdl" - }, - { - "name": "Gallurese Sardinian", - "code": "sdn" - }, - { - "name": "Bukar-Sadung Bidayuh", - "code": "sdo" - }, - { - "name": "Sherdukpen", - "code": "sdp" - }, - { - "name": "Semandang", - "code": "sdq" - }, - { - "name": "Oraon Sadri", - "code": "sdr" - }, - { - "name": "Sened", - "code": "sds" - }, - { - "name": "Shuadit", - "code": "sdt" - }, - { - "name": "Sarudu", - "code": "sdu" - }, - { - "name": "Sibu Melanau", - "code": "sdx" - }, - { - "name": "Sallands", - "code": "sdz" - }, - { - "name": "Semai", - "code": "sea" - }, - { - "name": "Shempire Senoufo", - "code": "seb" - }, - { - "name": "Sechelt", - "code": "sec" - }, - { - "name": "Sedang", - "code": "sed" - }, - { - "name": "Seneca", - "code": "see" - }, - { - "name": "Cebaara Senoufo", - "code": "sef" - }, - { - "name": "Segeju", - "code": "seg" - }, - { - "name": "Sena", - "code": "seh" - }, - { - "name": "Seri", - "code": "sei" - }, - { - "name": "Sene", - "code": "sej" - }, - { - "name": "Sekani", - "code": "sek" - }, - { - "name": "Selkup", - "code": "sel" - }, - { - "name": "Nanerigé Sénoufo", - "code": "sen" - }, - { - "name": "Suarmin", - "code": "seo" - }, - { - "name": "Sìcìté Sénoufo", - "code": "sep" - }, - { - "name": "Senara Sénoufo", - "code": "seq" - }, - { - "name": "Serrano", - "code": "ser" - }, - { - "name": "Koyraboro Senni Songhai", - "code": "ses" - }, - { - "name": "Sentani", - "code": "set" - }, - { - "name": "Serui-Laut", - "code": "seu" - }, - { - "name": "Nyarafolo Senoufo", - "code": "sev" - }, - { - "name": "Sewa Bay", - "code": "sew" - }, - { - "name": "Secoya", - "code": "sey" - }, - { - "name": "Senthang Chin", - "code": "sez" - }, - { - "name": "French Belgian Sign Language", - "code": "sfb" - }, - { - "name": "Langue des signes de Belgique Francophone", - "code": "sfb" - }, - { - "name": "Eastern Subanen", - "code": "sfe" - }, - { - "name": "Small Flowery Miao", - "code": "sfm" - }, - { - "name": "South African Sign Language", - "code": "sfs" - }, - { - "name": "Sehwi", - "code": "sfw" - }, - { - "name": "Old Irish (to 900)", - "code": "sga" - }, - { - "name": "Mag-antsi Ayta", - "code": "sgb" - }, - { - "name": "Kipsigis", - "code": "sgc" - }, - { - "name": "Surigaonon", - "code": "sgd" - }, - { - "name": "Segai", - "code": "sge" - }, - { - "name": "Swiss-German Sign Language", - "code": "sgg" - }, - { - "name": "Shughni", - "code": "sgh" - }, - { - "name": "Suga", - "code": "sgi" - }, - { - "name": "Surgujia", - "code": "sgj" - }, - { - "name": "Sangkong", - "code": "sgk" - }, - { - "name": "Singa", - "code": "sgm" - }, - { - "name": "Singpho", - "code": "sgp" - }, - { - "name": "Sangisari", - "code": "sgr" - }, - { - "name": "Samogitian", - "code": "sgs" - }, - { - "name": "Brokpake", - "code": "sgt" - }, - { - "name": "Salas", - "code": "sgu" - }, - { - "name": "Sebat Bet Gurage", - "code": "sgw" - }, - { - "name": "Sierra Leone Sign Language", - "code": "sgx" - }, - { - "name": "Sanglechi", - "code": "sgy" - }, - { - "name": "Sursurunga", - "code": "sgz" - }, - { - "name": "Shall-Zwall", - "code": "sha" - }, - { - "name": "Ninam", - "code": "shb" - }, - { - "name": "Sonde", - "code": "shc" - }, - { - "name": "Kundal Shahi", - "code": "shd" - }, - { - "name": "Sheko", - "code": "she" - }, - { - "name": "Shua", - "code": "shg" - }, - { - "name": "Shoshoni", - "code": "shh" - }, - { - "name": "Tachelhit", - "code": "shi" - }, - { - "name": "Shatt", - "code": "shj" - }, - { - "name": "Shilluk", - "code": "shk" - }, - { - "name": "Shendu", - "code": "shl" - }, - { - "name": "Shahrudi", - "code": "shm" - }, - { - "name": "Shan", - "code": "shn" - }, - { - "name": "Shanga", - "code": "sho" - }, - { - "name": "Shipibo-Conibo", - "code": "shp" - }, - { - "name": "Sala", - "code": "shq" - }, - { - "name": "Shi", - "code": "shr" - }, - { - "name": "Shuswap", - "code": "shs" - }, - { - "name": "Shasta", - "code": "sht" - }, - { - "name": "Chadian Arabic", - "code": "shu" - }, - { - "name": "Shehri", - "code": "shv" - }, - { - "name": "Shwai", - "code": "shw" - }, - { - "name": "She", - "code": "shx" - }, - { - "name": "Tachawit", - "code": "shy" - }, - { - "name": "Syenara Senoufo", - "code": "shz" - }, - { - "name": "Akkala Sami", - "code": "sia" - }, - { - "name": "Sebop", - "code": "sib" - }, - { - "name": "Sidamo", - "code": "sid" - }, - { - "name": "Simaa", - "code": "sie" - }, - { - "name": "Siamou", - "code": "sif" - }, - { - "name": "Paasaal", - "code": "sig" - }, - { - "name": "Sîshëë", - "code": "sih" - }, - { - "name": "Zire", - "code": "sih" - }, - { - "name": "Shom Peng", - "code": "sii" - }, - { - "name": "Numbami", - "code": "sij" - }, - { - "name": "Sikiana", - "code": "sik" - }, - { - "name": "Tumulung Sisaala", - "code": "sil" - }, - { - "name": "Mende (Papua New Guinea)", - "code": "sim" - }, - { - "name": "Sinhala", - "code": "sin" - }, - { - "name": "Sinhalese", - "code": "sin" - }, - { - "name": "Sikkimese", - "code": "sip" - }, - { - "name": "Sonia", - "code": "siq" - }, - { - "name": "Siri", - "code": "sir" - }, - { - "name": "Siuslaw", - "code": "sis" - }, - { - "name": "Sinagen", - "code": "siu" - }, - { - "name": "Sumariup", - "code": "siv" - }, - { - "name": "Siwai", - "code": "siw" - }, - { - "name": "Sumau", - "code": "six" - }, - { - "name": "Sivandi", - "code": "siy" - }, - { - "name": "Siwi", - "code": "siz" - }, - { - "name": "Epena", - "code": "sja" - }, - { - "name": "Sajau Basap", - "code": "sjb" - }, - { - "name": "Kildin Sami", - "code": "sjd" - }, - { - "name": "Pite Sami", - "code": "sje" - }, - { - "name": "Assangori", - "code": "sjg" - }, - { - "name": "Kemi Sami", - "code": "sjk" - }, - { - "name": "Miji", - "code": "sjl" - }, - { - "name": "Sajalong", - "code": "sjl" - }, - { - "name": "Mapun", - "code": "sjm" - }, - { - "name": "Sindarin", - "code": "sjn" - }, - { - "name": "Xibe", - "code": "sjo" - }, - { - "name": "Surjapuri", - "code": "sjp" - }, - { - "name": "Siar-Lak", - "code": "sjr" - }, - { - "name": "Senhaja De Srair", - "code": "sjs" - }, - { - "name": "Ter Sami", - "code": "sjt" - }, - { - "name": "Ume Sami", - "code": "sju" - }, - { - "name": "Shawnee", - "code": "sjw" - }, - { - "name": "Skagit", - "code": "ska" - }, - { - "name": "Saek", - "code": "skb" - }, - { - "name": "Ma Manda", - "code": "skc" - }, - { - "name": "Southern Sierra Miwok", - "code": "skd" - }, - { - "name": "Seke (Vanuatu)", - "code": "ske" - }, - { - "name": "Sakirabiá", - "code": "skf" - }, - { - "name": "Sakalava Malagasy", - "code": "skg" - }, - { - "name": "Sikule", - "code": "skh" - }, - { - "name": "Sika", - "code": "ski" - }, - { - "name": "Seke (Nepal)", - "code": "skj" - }, - { - "name": "Kutong", - "code": "skm" - }, - { - "name": "Kolibugan Subanon", - "code": "skn" - }, - { - "name": "Seko Tengah", - "code": "sko" - }, - { - "name": "Sekapan", - "code": "skp" - }, - { - "name": "Sininkere", - "code": "skq" - }, - { - "name": "Saraiki", - "code": "skr" - }, - { - "name": "Seraiki", - "code": "skr" - }, - { - "name": "Maia", - "code": "sks" - }, - { - "name": "Sakata", - "code": "skt" - }, - { - "name": "Sakao", - "code": "sku" - }, - { - "name": "Skou", - "code": "skv" - }, - { - "name": "Skepi Creole Dutch", - "code": "skw" - }, - { - "name": "Seko Padang", - "code": "skx" - }, - { - "name": "Sikaiana", - "code": "sky" - }, - { - "name": "Sekar", - "code": "skz" - }, - { - "name": "Sáliba", - "code": "slc" - }, - { - "name": "Sissala", - "code": "sld" - }, - { - "name": "Sholaga", - "code": "sle" - }, - { - "name": "Swiss-Italian Sign Language", - "code": "slf" - }, - { - "name": "Selungai Murut", - "code": "slg" - }, - { - "name": "Southern Puget Sound Salish", - "code": "slh" - }, - { - "name": "Lower Silesian", - "code": "sli" - }, - { - "name": "Salumá", - "code": "slj" - }, - { - "name": "Slovak", - "code": "slk" - }, - { - "name": "Salt-Yui", - "code": "sll" - }, - { - "name": "Pangutaran Sama", - "code": "slm" - }, - { - "name": "Salinan", - "code": "sln" - }, - { - "name": "Lamaholot", - "code": "slp" - }, - { - "name": "Salchuq", - "code": "slq" - }, - { - "name": "Salar", - "code": "slr" - }, - { - "name": "Singapore Sign Language", - "code": "sls" - }, - { - "name": "Sila", - "code": "slt" - }, - { - "name": "Selaru", - "code": "slu" - }, - { - "name": "Slovenian", - "code": "slv" - }, - { - "name": "Sialum", - "code": "slw" - }, - { - "name": "Salampasu", - "code": "slx" - }, - { - "name": "Selayar", - "code": "sly" - }, - { - "name": "Ma'ya", - "code": "slz" - }, - { - "name": "Southern Sami", - "code": "sma" - }, - { - "name": "Simbari", - "code": "smb" - }, - { - "name": "Som", - "code": "smc" - }, - { - "name": "Sama", - "code": "smd" - }, - { - "name": "Northern Sami", - "code": "sme" - }, - { - "name": "Auwe", - "code": "smf" - }, - { - "name": "Simbali", - "code": "smg" - }, - { - "name": "Samei", - "code": "smh" - }, - { - "name": "Lule Sami", - "code": "smj" - }, - { - "name": "Bolinao", - "code": "smk" - }, - { - "name": "Central Sama", - "code": "sml" - }, - { - "name": "Musasa", - "code": "smm" - }, - { - "name": "Inari Sami", - "code": "smn" - }, - { - "name": "Samoan", - "code": "smo" - }, - { - "name": "Samaritan", - "code": "smp" - }, - { - "name": "Samo", - "code": "smq" - }, - { - "name": "Simeulue", - "code": "smr" - }, - { - "name": "Skolt Sami", - "code": "sms" - }, - { - "name": "Simte", - "code": "smt" - }, - { - "name": "Somray", - "code": "smu" - }, - { - "name": "Samvedi", - "code": "smv" - }, - { - "name": "Sumbawa", - "code": "smw" - }, - { - "name": "Samba", - "code": "smx" - }, - { - "name": "Semnani", - "code": "smy" - }, - { - "name": "Simeku", - "code": "smz" - }, - { - "name": "Shona", - "code": "sna" - }, - { - "name": "Sebuyau", - "code": "snb" - }, - { - "name": "Sinaugoro", - "code": "snc" - }, - { - "name": "Sindhi", - "code": "snd" - }, - { - "name": "Bau Bidayuh", - "code": "sne" - }, - { - "name": "Noon", - "code": "snf" - }, - { - "name": "Sanga (Democratic Republic of Congo)", - "code": "sng" - }, - { - "name": "Sensi", - "code": "sni" - }, - { - "name": "Riverain Sango", - "code": "snj" - }, - { - "name": "Soninke", - "code": "snk" - }, - { - "name": "Sangil", - "code": "snl" - }, - { - "name": "Southern Ma'di", - "code": "snm" - }, - { - "name": "Siona", - "code": "snn" - }, - { - "name": "Snohomish", - "code": "sno" - }, - { - "name": "Siane", - "code": "snp" - }, - { - "name": "Sangu (Gabon)", - "code": "snq" - }, - { - "name": "Sihan", - "code": "snr" - }, - { - "name": "Nahavaq", - "code": "sns" - }, - { - "name": "South West Bay", - "code": "sns" - }, - { - "name": "Senggi", - "code": "snu" - }, - { - "name": "Viid", - "code": "snu" - }, - { - "name": "Sa'ban", - "code": "snv" - }, - { - "name": "Selee", - "code": "snw" - }, - { - "name": "Sam", - "code": "snx" - }, - { - "name": "Saniyo-Hiyewe", - "code": "sny" - }, - { - "name": "Kou", - "code": "snz" - }, - { - "name": "Thai Song", - "code": "soa" - }, - { - "name": "Sobei", - "code": "sob" - }, - { - "name": "So (Democratic Republic of Congo)", - "code": "soc" - }, - { - "name": "Songoora", - "code": "sod" - }, - { - "name": "Songomeno", - "code": "soe" - }, - { - "name": "Sogdian", - "code": "sog" - }, - { - "name": "Aka", - "code": "soh" - }, - { - "name": "Sonha", - "code": "soi" - }, - { - "name": "Soi", - "code": "soj" - }, - { - "name": "Sokoro", - "code": "sok" - }, - { - "name": "Solos", - "code": "sol" - }, - { - "name": "Somali", - "code": "som" - }, - { - "name": "Songo", - "code": "soo" - }, - { - "name": "Songe", - "code": "sop" - }, - { - "name": "Kanasi", - "code": "soq" - }, - { - "name": "Somrai", - "code": "sor" - }, - { - "name": "Seeku", - "code": "sos" - }, - { - "name": "Southern Sotho", - "code": "sot" - }, - { - "name": "Southern Thai", - "code": "sou" - }, - { - "name": "Sonsorol", - "code": "sov" - }, - { - "name": "Sowanda", - "code": "sow" - }, - { - "name": "Swo", - "code": "sox" - }, - { - "name": "Miyobe", - "code": "soy" - }, - { - "name": "Temi", - "code": "soz" - }, - { - "name": "Spanish", - "code": "spa" - }, - { - "name": "Castilian", - "code": "spa" - }, - { - "name": "Sepa (Indonesia)", - "code": "spb" - }, - { - "name": "Sapé", - "code": "spc" - }, - { - "name": "Saep", - "code": "spd" - }, - { - "name": "Sepa (Papua New Guinea)", - "code": "spe" - }, - { - "name": "Sian", - "code": "spg" - }, - { - "name": "Saponi", - "code": "spi" - }, - { - "name": "Sengo", - "code": "spk" - }, - { - "name": "Selepet", - "code": "spl" - }, - { - "name": "Akukem", - "code": "spm" - }, - { - "name": "Sanapaná", - "code": "spn" - }, - { - "name": "Spokane", - "code": "spo" - }, - { - "name": "Supyire Senoufo", - "code": "spp" - }, - { - "name": "Loreto-Ucayali Spanish", - "code": "spq" - }, - { - "name": "Saparua", - "code": "spr" - }, - { - "name": "Saposa", - "code": "sps" - }, - { - "name": "Spiti Bhoti", - "code": "spt" - }, - { - "name": "Sapuan", - "code": "spu" - }, - { - "name": "Kosli", - "code": "spv" - }, - { - "name": "Sambalpuri", - "code": "spv" - }, - { - "name": "South Picene", - "code": "spx" - }, - { - "name": "Sabaot", - "code": "spy" - }, - { - "name": "Shama-Sambuga", - "code": "sqa" - }, - { - "name": "Shau", - "code": "sqh" - }, - { - "name": "Albanian", - "code": "sqi" - }, - { - "name": "Albanian Sign Language", - "code": "sqk" - }, - { - "name": "Suma", - "code": "sqm" - }, - { - "name": "Susquehannock", - "code": "sqn" - }, - { - "name": "Sorkhei", - "code": "sqo" - }, - { - "name": "Sou", - "code": "sqq" - }, - { - "name": "Siculo Arabic", - "code": "sqr" - }, - { - "name": "Sri Lankan Sign Language", - "code": "sqs" - }, - { - "name": "Soqotri", - "code": "sqt" - }, - { - "name": "Squamish", - "code": "squ" - }, - { - "name": "Kufr Qassem Sign Language (KQSL)", - "code": "sqx" - }, - { - "name": "Saruga", - "code": "sra" - }, - { - "name": "Sora", - "code": "srb" - }, - { - "name": "Logudorese Sardinian", - "code": "src" - }, - { - "name": "Sardinian", - "code": "srd" - }, - { - "name": "Sara", - "code": "sre" - }, - { - "name": "Nafi", - "code": "srf" - }, - { - "name": "Sulod", - "code": "srg" - }, - { - "name": "Sarikoli", - "code": "srh" - }, - { - "name": "Siriano", - "code": "sri" - }, - { - "name": "Serudung Murut", - "code": "srk" - }, - { - "name": "Isirawa", - "code": "srl" - }, - { - "name": "Saramaccan", - "code": "srm" - }, - { - "name": "Sranan Tongo", - "code": "srn" - }, - { - "name": "Campidanese Sardinian", - "code": "sro" - }, - { - "name": "Serbian", - "code": "srp" - }, - { - "name": "Sirionó", - "code": "srq" - }, - { - "name": "Serer", - "code": "srr" - }, - { - "name": "Sarsi", - "code": "srs" - }, - { - "name": "Sauri", - "code": "srt" - }, - { - "name": "Suruí", - "code": "sru" - }, - { - "name": "Southern Sorsoganon", - "code": "srv" - }, - { - "name": "Serua", - "code": "srw" - }, - { - "name": "Sirmauri", - "code": "srx" - }, - { - "name": "Sera", - "code": "sry" - }, - { - "name": "Shahmirzadi", - "code": "srz" - }, - { - "name": "Southern Sama", - "code": "ssb" - }, - { - "name": "Suba-Simbiti", - "code": "ssc" - }, - { - "name": "Siroi", - "code": "ssd" - }, - { - "name": "Balangingi", - "code": "sse" - }, - { - "name": "Bangingih Sama", - "code": "sse" - }, - { - "name": "Thao", - "code": "ssf" - }, - { - "name": "Seimat", - "code": "ssg" - }, - { - "name": "Shihhi Arabic", - "code": "ssh" - }, - { - "name": "Sansi", - "code": "ssi" - }, - { - "name": "Sausi", - "code": "ssj" - }, - { - "name": "Sunam", - "code": "ssk" - }, - { - "name": "Western Sisaala", - "code": "ssl" - }, - { - "name": "Semnam", - "code": "ssm" - }, - { - "name": "Waata", - "code": "ssn" - }, - { - "name": "Sissano", - "code": "sso" - }, - { - "name": "Spanish Sign Language", - "code": "ssp" - }, - { - "name": "So'a", - "code": "ssq" - }, - { - "name": "Swiss-French Sign Language", - "code": "ssr" - }, - { - "name": "Sô", - "code": "sss" - }, - { - "name": "Sinasina", - "code": "sst" - }, - { - "name": "Susuami", - "code": "ssu" - }, - { - "name": "Shark Bay", - "code": "ssv" - }, - { - "name": "Swati", - "code": "ssw" - }, - { - "name": "Samberigi", - "code": "ssx" - }, - { - "name": "Saho", - "code": "ssy" - }, - { - "name": "Sengseng", - "code": "ssz" - }, - { - "name": "Settla", - "code": "sta" - }, - { - "name": "Northern Subanen", - "code": "stb" - }, - { - "name": "Sentinel", - "code": "std" - }, - { - "name": "Liana-Seti", - "code": "ste" - }, - { - "name": "Seta", - "code": "stf" - }, - { - "name": "Trieng", - "code": "stg" - }, - { - "name": "Shelta", - "code": "sth" - }, - { - "name": "Bulo Stieng", - "code": "sti" - }, - { - "name": "Matya Samo", - "code": "stj" - }, - { - "name": "Arammba", - "code": "stk" - }, - { - "name": "Stellingwerfs", - "code": "stl" - }, - { - "name": "Setaman", - "code": "stm" - }, - { - "name": "Owa", - "code": "stn" - }, - { - "name": "Stoney", - "code": "sto" - }, - { - "name": "Southeastern Tepehuan", - "code": "stp" - }, - { - "name": "Saterfriesisch", - "code": "stq" - }, - { - "name": "Straits Salish", - "code": "str" - }, - { - "name": "Shumashti", - "code": "sts" - }, - { - "name": "Budeh Stieng", - "code": "stt" - }, - { - "name": "Samtao", - "code": "stu" - }, - { - "name": "Silt'e", - "code": "stv" - }, - { - "name": "Satawalese", - "code": "stw" - }, - { - "name": "Siberian Tatar", - "code": "sty" - }, - { - "name": "Sulka", - "code": "sua" - }, - { - "name": "Suku", - "code": "sub" - }, - { - "name": "Western Subanon", - "code": "suc" - }, - { - "name": "Suena", - "code": "sue" - }, - { - "name": "Suganga", - "code": "sug" - }, - { - "name": "Suki", - "code": "sui" - }, - { - "name": "Shubi", - "code": "suj" - }, - { - "name": "Sukuma", - "code": "suk" - }, - { - "name": "Sundanese", - "code": "sun" - }, - { - "name": "Bouni", - "code": "suo" - }, - { - "name": "Suri", - "code": "suq" - }, - { - "name": "Tirmaga-Chai Suri", - "code": "suq" - }, - { - "name": "Mwaghavul", - "code": "sur" - }, - { - "name": "Susu", - "code": "sus" - }, - { - "name": "Subtiaba", - "code": "sut" - }, - { - "name": "Puroik", - "code": "suv" - }, - { - "name": "Sumbwa", - "code": "suw" - }, - { - "name": "Sumerian", - "code": "sux" - }, - { - "name": "Suyá", - "code": "suy" - }, - { - "name": "Sunwar", - "code": "suz" - }, - { - "name": "Svan", - "code": "sva" - }, - { - "name": "Ulau-Suain", - "code": "svb" - }, - { - "name": "Vincentian Creole English", - "code": "svc" - }, - { - "name": "Serili", - "code": "sve" - }, - { - "name": "Slovakian Sign Language", - "code": "svk" - }, - { - "name": "Slavomolisano", - "code": "svm" - }, - { - "name": "Savosavo", - "code": "svs" - }, - { - "name": "Skalvian", - "code": "svx" - }, - { - "name": "Swahili", - "code": "swa" - }, - { - "name": "Swahili (macrolanguage)", - "code": "swa" - }, - { - "name": "Maore Comorian", - "code": "swb" - }, - { - "name": "Congo Swahili", - "code": "swc" - }, - { - "name": "Swedish", - "code": "swe" - }, - { - "name": "Sere", - "code": "swf" - }, - { - "name": "Swabian", - "code": "swg" - }, - { - "name": "Kiswahili", - "code": "swh" - }, - { - "name": "Swahili (individual language)", - "code": "swh" - }, - { - "name": "Sui", - "code": "swi" - }, - { - "name": "Sira", - "code": "swj" - }, - { - "name": "Malawi Sena", - "code": "swk" - }, - { - "name": "Swedish Sign Language", - "code": "swl" - }, - { - "name": "Samosa", - "code": "swm" - }, - { - "name": "Sawknah", - "code": "swn" - }, - { - "name": "Shanenawa", - "code": "swo" - }, - { - "name": "Suau", - "code": "swp" - }, - { - "name": "Sharwa", - "code": "swq" - }, - { - "name": "Saweru", - "code": "swr" - }, - { - "name": "Seluwasan", - "code": "sws" - }, - { - "name": "Sawila", - "code": "swt" - }, - { - "name": "Suwawa", - "code": "swu" - }, - { - "name": "Shekhawati", - "code": "swv" - }, - { - "name": "Sowa", - "code": "sww" - }, - { - "name": "Suruahá", - "code": "swx" - }, - { - "name": "Sarua", - "code": "swy" - }, - { - "name": "Suba", - "code": "sxb" - }, - { - "name": "Sicanian", - "code": "sxc" - }, - { - "name": "Sighu", - "code": "sxe" - }, - { - "name": "Shixing", - "code": "sxg" - }, - { - "name": "Shuhi", - "code": "sxg" - }, - { - "name": "Southern Kalapuya", - "code": "sxk" - }, - { - "name": "Selian", - "code": "sxl" - }, - { - "name": "Samre", - "code": "sxm" - }, - { - "name": "Sangir", - "code": "sxn" - }, - { - "name": "Sorothaptic", - "code": "sxo" - }, - { - "name": "Saaroa", - "code": "sxr" - }, - { - "name": "Sasaru", - "code": "sxs" - }, - { - "name": "Upper Saxon", - "code": "sxu" - }, - { - "name": "Saxwe Gbe", - "code": "sxw" - }, - { - "name": "Siang", - "code": "sya" - }, - { - "name": "Central Subanen", - "code": "syb" - }, - { - "name": "Classical Syriac", - "code": "syc" - }, - { - "name": "Seki", - "code": "syi" - }, - { - "name": "Sukur", - "code": "syk" - }, - { - "name": "Sylheti", - "code": "syl" - }, - { - "name": "Maya Samo", - "code": "sym" - }, - { - "name": "Senaya", - "code": "syn" - }, - { - "name": "Suoy", - "code": "syo" - }, - { - "name": "Syriac", - "code": "syr" - }, - { - "name": "Sinyar", - "code": "sys" - }, - { - "name": "Kagate", - "code": "syw" - }, - { - "name": "Samay", - "code": "syx" - }, - { - "name": "Al-Sayyid Bedouin Sign Language", - "code": "syy" - }, - { - "name": "Semelai", - "code": "sza" - }, - { - "name": "Ngalum", - "code": "szb" - }, - { - "name": "Semaq Beri", - "code": "szc" - }, - { - "name": "Seru", - "code": "szd" - }, - { - "name": "Seze", - "code": "sze" - }, - { - "name": "Sengele", - "code": "szg" - }, - { - "name": "Silesian", - "code": "szl" - }, - { - "name": "Sula", - "code": "szn" - }, - { - "name": "Suabo", - "code": "szp" - }, - { - "name": "Solomon Islands Sign Language", - "code": "szs" - }, - { - "name": "Isu (Fako Division)", - "code": "szv" - }, - { - "name": "Sawai", - "code": "szw" - }, - { - "name": "Sakizaya", - "code": "szy" - }, - { - "name": "Lower Tanana", - "code": "taa" - }, - { - "name": "Tabassaran", - "code": "tab" - }, - { - "name": "Lowland Tarahumara", - "code": "tac" - }, - { - "name": "Tause", - "code": "tad" - }, - { - "name": "Tariana", - "code": "tae" - }, - { - "name": "Tapirapé", - "code": "taf" - }, - { - "name": "Tagoi", - "code": "tag" - }, - { - "name": "Tahitian", - "code": "tah" - }, - { - "name": "Eastern Tamang", - "code": "taj" - }, - { - "name": "Tala", - "code": "tak" - }, - { - "name": "Tal", - "code": "tal" - }, - { - "name": "Tamil", - "code": "tam" - }, - { - "name": "Tangale", - "code": "tan" - }, - { - "name": "Yami", - "code": "tao" - }, - { - "name": "Taabwa", - "code": "tap" - }, - { - "name": "Tamasheq", - "code": "taq" - }, - { - "name": "Central Tarahumara", - "code": "tar" - }, - { - "name": "Tay Boi", - "code": "tas" - }, - { - "name": "Tatar", - "code": "tat" - }, - { - "name": "Upper Tanana", - "code": "tau" - }, - { - "name": "Tatuyo", - "code": "tav" - }, - { - "name": "Tai", - "code": "taw" - }, - { - "name": "Tamki", - "code": "tax" - }, - { - "name": "Atayal", - "code": "tay" - }, - { - "name": "Tocho", - "code": "taz" - }, - { - "name": "Aikanã", - "code": "tba" - }, - { - "name": "Takia", - "code": "tbc" - }, - { - "name": "Kaki Ae", - "code": "tbd" - }, - { - "name": "Tanimbili", - "code": "tbe" - }, - { - "name": "Mandara", - "code": "tbf" - }, - { - "name": "North Tairora", - "code": "tbg" - }, - { - "name": "Dharawal", - "code": "tbh" - }, - { - "name": "Thurawal", - "code": "tbh" - }, - { - "name": "Gaam", - "code": "tbi" - }, - { - "name": "Tiang", - "code": "tbj" - }, - { - "name": "Calamian Tagbanwa", - "code": "tbk" - }, - { - "name": "Tboli", - "code": "tbl" - }, - { - "name": "Tagbu", - "code": "tbm" - }, - { - "name": "Barro Negro Tunebo", - "code": "tbn" - }, - { - "name": "Tawala", - "code": "tbo" - }, - { - "name": "Diebroud", - "code": "tbp" - }, - { - "name": "Taworta", - "code": "tbp" - }, - { - "name": "Tumtum", - "code": "tbr" - }, - { - "name": "Tanguat", - "code": "tbs" - }, - { - "name": "Tembo (Kitembo)", - "code": "tbt" - }, - { - "name": "Tubar", - "code": "tbu" - }, - { - "name": "Tobo", - "code": "tbv" - }, - { - "name": "Tagbanwa", - "code": "tbw" - }, - { - "name": "Kapin", - "code": "tbx" - }, - { - "name": "Tabaru", - "code": "tby" - }, - { - "name": "Ditammari", - "code": "tbz" - }, - { - "name": "Ticuna", - "code": "tca" - }, - { - "name": "Tanacross", - "code": "tcb" - }, - { - "name": "Datooga", - "code": "tcc" - }, - { - "name": "Tafi", - "code": "tcd" - }, - { - "name": "Southern Tutchone", - "code": "tce" - }, - { - "name": "Malinaltepec Me'phaa", - "code": "tcf" - }, - { - "name": "Malinaltepec Tlapanec", - "code": "tcf" - }, - { - "name": "Tamagario", - "code": "tcg" - }, - { - "name": "Turks And Caicos Creole English", - "code": "tch" - }, - { - "name": "Wára", - "code": "tci" - }, - { - "name": "Tchitchege", - "code": "tck" - }, - { - "name": "Taman (Myanmar)", - "code": "tcl" - }, - { - "name": "Tanahmerah", - "code": "tcm" - }, - { - "name": "Tichurong", - "code": "tcn" - }, - { - "name": "Taungyo", - "code": "tco" - }, - { - "name": "Tawr Chin", - "code": "tcp" - }, - { - "name": "Kaiy", - "code": "tcq" - }, - { - "name": "Torres Strait Creole", - "code": "tcs" - }, - { - "name": "Yumplatok", - "code": "tcs" - }, - { - "name": "T'en", - "code": "tct" - }, - { - "name": "Southeastern Tarahumara", - "code": "tcu" - }, - { - "name": "Tecpatlán Totonac", - "code": "tcw" - }, - { - "name": "Toda", - "code": "tcx" - }, - { - "name": "Tulu", - "code": "tcy" - }, - { - "name": "Thado Chin", - "code": "tcz" - }, - { - "name": "Tagdal", - "code": "tda" - }, - { - "name": "Panchpargania", - "code": "tdb" - }, - { - "name": "Emberá-Tadó", - "code": "tdc" - }, - { - "name": "Tai Nüa", - "code": "tdd" - }, - { - "name": "Tiranige Diga Dogon", - "code": "tde" - }, - { - "name": "Talieng", - "code": "tdf" - }, - { - "name": "Western Tamang", - "code": "tdg" - }, - { - "name": "Thulung", - "code": "tdh" - }, - { - "name": "Tomadino", - "code": "tdi" - }, - { - "name": "Tajio", - "code": "tdj" - }, - { - "name": "Tambas", - "code": "tdk" - }, - { - "name": "Sur", - "code": "tdl" - }, - { - "name": "Taruma", - "code": "tdm" - }, - { - "name": "Tondano", - "code": "tdn" - }, - { - "name": "Teme", - "code": "tdo" - }, - { - "name": "Tita", - "code": "tdq" - }, - { - "name": "Todrah", - "code": "tdr" - }, - { - "name": "Doutai", - "code": "tds" - }, - { - "name": "Tetun Dili", - "code": "tdt" - }, - { - "name": "Toro", - "code": "tdv" - }, - { - "name": "Tandroy-Mahafaly Malagasy", - "code": "tdx" - }, - { - "name": "Tadyawan", - "code": "tdy" - }, - { - "name": "Temiar", - "code": "tea" - }, - { - "name": "Tetete", - "code": "teb" - }, - { - "name": "Terik", - "code": "tec" - }, - { - "name": "Tepo Krumen", - "code": "ted" - }, - { - "name": "Huehuetla Tepehua", - "code": "tee" - }, - { - "name": "Teressa", - "code": "tef" - }, - { - "name": "Teke-Tege", - "code": "teg" - }, - { - "name": "Tehuelche", - "code": "teh" - }, - { - "name": "Torricelli", - "code": "tei" - }, - { - "name": "Ibali Teke", - "code": "tek" - }, - { - "name": "Telugu", - "code": "tel" - }, - { - "name": "Timne", - "code": "tem" - }, - { - "name": "Tama (Colombia)", - "code": "ten" - }, - { - "name": "Teso", - "code": "teo" - }, - { - "name": "Tepecano", - "code": "tep" - }, - { - "name": "Temein", - "code": "teq" - }, - { - "name": "Tereno", - "code": "ter" - }, - { - "name": "Tengger", - "code": "tes" - }, - { - "name": "Tetum", - "code": "tet" - }, - { - "name": "Soo", - "code": "teu" - }, - { - "name": "Teor", - "code": "tev" - }, - { - "name": "Tewa (USA)", - "code": "tew" - }, - { - "name": "Tennet", - "code": "tex" - }, - { - "name": "Tulishi", - "code": "tey" - }, - { - "name": "Tetserret", - "code": "tez" - }, - { - "name": "Tofin Gbe", - "code": "tfi" - }, - { - "name": "Tanaina", - "code": "tfn" - }, - { - "name": "Tefaro", - "code": "tfo" - }, - { - "name": "Teribe", - "code": "tfr" - }, - { - "name": "Ternate", - "code": "tft" - }, - { - "name": "Sagalla", - "code": "tga" - }, - { - "name": "Tobilung", - "code": "tgb" - }, - { - "name": "Tigak", - "code": "tgc" - }, - { - "name": "Ciwogai", - "code": "tgd" - }, - { - "name": "Eastern Gorkha Tamang", - "code": "tge" - }, - { - "name": "Chalikha", - "code": "tgf" - }, - { - "name": "Tobagonian Creole English", - "code": "tgh" - }, - { - "name": "Lawunuia", - "code": "tgi" - }, - { - "name": "Tagin", - "code": "tgj" - }, - { - "name": "Tajik", - "code": "tgk" - }, - { - "name": "Tagalog", - "code": "tgl" - }, - { - "name": "Tandaganon", - "code": "tgn" - }, - { - "name": "Sudest", - "code": "tgo" - }, - { - "name": "Tangoa", - "code": "tgp" - }, - { - "name": "Tring", - "code": "tgq" - }, - { - "name": "Tareng", - "code": "tgr" - }, - { - "name": "Nume", - "code": "tgs" - }, - { - "name": "Central Tagbanwa", - "code": "tgt" - }, - { - "name": "Tanggu", - "code": "tgu" - }, - { - "name": "Tingui-Boto", - "code": "tgv" - }, - { - "name": "Tagwana Senoufo", - "code": "tgw" - }, - { - "name": "Tagish", - "code": "tgx" - }, - { - "name": "Togoyo", - "code": "tgy" - }, - { - "name": "Tagalaka", - "code": "tgz" - }, - { - "name": "Thai", - "code": "tha" - }, - { - "name": "Kuuk Thaayorre", - "code": "thd" - }, - { - "name": "Thayore", - "code": "thd" - }, - { - "name": "Chitwania Tharu", - "code": "the" - }, - { - "name": "Thangmi", - "code": "thf" - }, - { - "name": "Northern Tarahumara", - "code": "thh" - }, - { - "name": "Tai Long", - "code": "thi" - }, - { - "name": "Kitharaka", - "code": "thk" - }, - { - "name": "Tharaka", - "code": "thk" - }, - { - "name": "Dangaura Tharu", - "code": "thl" - }, - { - "name": "Aheu", - "code": "thm" - }, - { - "name": "Thachanadan", - "code": "thn" - }, - { - "name": "Thompson", - "code": "thp" - }, - { - "name": "Kochila Tharu", - "code": "thq" - }, - { - "name": "Rana Tharu", - "code": "thr" - }, - { - "name": "Thakali", - "code": "ths" - }, - { - "name": "Tahltan", - "code": "tht" - }, - { - "name": "Thuri", - "code": "thu" - }, - { - "name": "Tahaggart Tamahaq", - "code": "thv" - }, - { - "name": "Tha", - "code": "thy" - }, - { - "name": "Tayart Tamajeq", - "code": "thz" - }, - { - "name": "Tidikelt Tamazight", - "code": "tia" - }, - { - "name": "Tira", - "code": "tic" - }, - { - "name": "Tifal", - "code": "tif" - }, - { - "name": "Tigre", - "code": "tig" - }, - { - "name": "Timugon Murut", - "code": "tih" - }, - { - "name": "Tiene", - "code": "tii" - }, - { - "name": "Tilung", - "code": "tij" - }, - { - "name": "Tikar", - "code": "tik" - }, - { - "name": "Tillamook", - "code": "til" - }, - { - "name": "Timbe", - "code": "tim" - }, - { - "name": "Tindi", - "code": "tin" - }, - { - "name": "Teop", - "code": "tio" - }, - { - "name": "Trimuris", - "code": "tip" - }, - { - "name": "Tiéfo", - "code": "tiq" - }, - { - "name": "Tigrinya", - "code": "tir" - }, - { - "name": "Masadiit Itneg", - "code": "tis" - }, - { - "name": "Tinigua", - "code": "tit" - }, - { - "name": "Adasen", - "code": "tiu" - }, - { - "name": "Tiv", - "code": "tiv" - }, - { - "name": "Tiwi", - "code": "tiw" - }, - { - "name": "Southern Tiwa", - "code": "tix" - }, - { - "name": "Tiruray", - "code": "tiy" - }, - { - "name": "Tai Hongjin", - "code": "tiz" - }, - { - "name": "Tajuasohn", - "code": "tja" - }, - { - "name": "Tunjung", - "code": "tjg" - }, - { - "name": "Northern Tujia", - "code": "tji" - }, - { - "name": "Tjungundji", - "code": "tjj" - }, - { - "name": "Tai Laing", - "code": "tjl" - }, - { - "name": "Timucua", - "code": "tjm" - }, - { - "name": "Tonjon", - "code": "tjn" - }, - { - "name": "Temacine Tamazight", - "code": "tjo" - }, - { - "name": "Tjupany", - "code": "tjp" - }, - { - "name": "Southern Tujia", - "code": "tjs" - }, - { - "name": "Tjurruru", - "code": "tju" - }, - { - "name": "Djabwurrung", - "code": "tjw" - }, - { - "name": "Truká", - "code": "tka" - }, - { - "name": "Buksa", - "code": "tkb" - }, - { - "name": "Tukudede", - "code": "tkd" - }, - { - "name": "Takwane", - "code": "tke" - }, - { - "name": "Tukumanféd", - "code": "tkf" - }, - { - "name": "Tesaka Malagasy", - "code": "tkg" - }, - { - "name": "Tokelau", - "code": "tkl" - }, - { - "name": "Takelma", - "code": "tkm" - }, - { - "name": "Toku-No-Shima", - "code": "tkn" - }, - { - "name": "Tikopia", - "code": "tkp" - }, - { - "name": "Tee", - "code": "tkq" - }, - { - "name": "Tsakhur", - "code": "tkr" - }, - { - "name": "Takestani", - "code": "tks" - }, - { - "name": "Kathoriya Tharu", - "code": "tkt" - }, - { - "name": "Upper Necaxa Totonac", - "code": "tku" - }, - { - "name": "Mur Pano", - "code": "tkv" - }, - { - "name": "Teanu", - "code": "tkw" - }, - { - "name": "Tangko", - "code": "tkx" - }, - { - "name": "Takua", - "code": "tkz" - }, - { - "name": "Southwestern Tepehuan", - "code": "tla" - }, - { - "name": "Tobelo", - "code": "tlb" - }, - { - "name": "Yecuatla Totonac", - "code": "tlc" - }, - { - "name": "Talaud", - "code": "tld" - }, - { - "name": "Telefol", - "code": "tlf" - }, - { - "name": "Tofanma", - "code": "tlg" - }, - { - "name": "Klingon", - "code": "tlh" - }, - { - "name": "tlhIngan Hol", - "code": "tlh" - }, - { - "name": "Tlingit", - "code": "tli" - }, - { - "name": "Talinga-Bwisi", - "code": "tlj" - }, - { - "name": "Taloki", - "code": "tlk" - }, - { - "name": "Tetela", - "code": "tll" - }, - { - "name": "Tolomako", - "code": "tlm" - }, - { - "name": "Talondo'", - "code": "tln" - }, - { - "name": "Talodi", - "code": "tlo" - }, - { - "name": "Filomena Mata-Coahuitlán Totonac", - "code": "tlp" - }, - { - "name": "Tai Loi", - "code": "tlq" - }, - { - "name": "Talise", - "code": "tlr" - }, - { - "name": "Tambotalo", - "code": "tls" - }, - { - "name": "Sou Nama", - "code": "tlt" - }, - { - "name": "Teluti", - "code": "tlt" - }, - { - "name": "Tulehu", - "code": "tlu" - }, - { - "name": "Taliabu", - "code": "tlv" - }, - { - "name": "Khehek", - "code": "tlx" - }, - { - "name": "Talysh", - "code": "tly" - }, - { - "name": "Tama (Chad)", - "code": "tma" - }, - { - "name": "Avava", - "code": "tmb" - }, - { - "name": "Katbol", - "code": "tmb" - }, - { - "name": "Tumak", - "code": "tmc" - }, - { - "name": "Haruai", - "code": "tmd" - }, - { - "name": "Tremembé", - "code": "tme" - }, - { - "name": "Toba-Maskoy", - "code": "tmf" - }, - { - "name": "Ternateño", - "code": "tmg" - }, - { - "name": "Tamashek", - "code": "tmh" - }, - { - "name": "Tutuba", - "code": "tmi" - }, - { - "name": "Samarokena", - "code": "tmj" - }, - { - "name": "Northwestern Tamang", - "code": "tmk" - }, - { - "name": "Tamnim Citak", - "code": "tml" - }, - { - "name": "Tai Thanh", - "code": "tmm" - }, - { - "name": "Taman (Indonesia)", - "code": "tmn" - }, - { - "name": "Temoq", - "code": "tmo" - }, - { - "name": "Tumleo", - "code": "tmq" - }, - { - "name": "Jewish Babylonian Aramaic (ca. 200-1200 CE)", - "code": "tmr" - }, - { - "name": "Tima", - "code": "tms" - }, - { - "name": "Tasmate", - "code": "tmt" - }, - { - "name": "Iau", - "code": "tmu" - }, - { - "name": "Tembo (Motembo)", - "code": "tmv" - }, - { - "name": "Temuan", - "code": "tmw" - }, - { - "name": "Tami", - "code": "tmy" - }, - { - "name": "Tamanaku", - "code": "tmz" - }, - { - "name": "Tacana", - "code": "tna" - }, - { - "name": "Western Tunebo", - "code": "tnb" - }, - { - "name": "Tanimuca-Retuarã", - "code": "tnc" - }, - { - "name": "Angosturas Tunebo", - "code": "tnd" - }, - { - "name": "Tobanga", - "code": "tng" - }, - { - "name": "Maiani", - "code": "tnh" - }, - { - "name": "Tandia", - "code": "tni" - }, - { - "name": "Kwamera", - "code": "tnk" - }, - { - "name": "Lenakel", - "code": "tnl" - }, - { - "name": "Tabla", - "code": "tnm" - }, - { - "name": "North Tanna", - "code": "tnn" - }, - { - "name": "Toromono", - "code": "tno" - }, - { - "name": "Whitesands", - "code": "tnp" - }, - { - "name": "Taino", - "code": "tnq" - }, - { - "name": "Ménik", - "code": "tnr" - }, - { - "name": "Tenis", - "code": "tns" - }, - { - "name": "Tontemboan", - "code": "tnt" - }, - { - "name": "Tay Khang", - "code": "tnu" - }, - { - "name": "Tangchangya", - "code": "tnv" - }, - { - "name": "Tonsawang", - "code": "tnw" - }, - { - "name": "Tanema", - "code": "tnx" - }, - { - "name": "Tongwe", - "code": "tny" - }, - { - "name": "Ten'edn", - "code": "tnz" - }, - { - "name": "Toba", - "code": "tob" - }, - { - "name": "Coyutla Totonac", - "code": "toc" - }, - { - "name": "Toma", - "code": "tod" - }, - { - "name": "Gizrra", - "code": "tof" - }, - { - "name": "Tonga (Nyasa)", - "code": "tog" - }, - { - "name": "Gitonga", - "code": "toh" - }, - { - "name": "Tonga (Zambia)", - "code": "toi" - }, - { - "name": "Tojolabal", - "code": "toj" - }, - { - "name": "Tolowa", - "code": "tol" - }, - { - "name": "Tombulu", - "code": "tom" - }, - { - "name": "Tonga (Tonga Islands)", - "code": "ton" - }, - { - "name": "Xicotepec De Juárez Totonac", - "code": "too" - }, - { - "name": "Papantla Totonac", - "code": "top" - }, - { - "name": "Toposa", - "code": "toq" - }, - { - "name": "Togbo-Vara Banda", - "code": "tor" - }, - { - "name": "Highland Totonac", - "code": "tos" - }, - { - "name": "Tho", - "code": "tou" - }, - { - "name": "Upper Taromi", - "code": "tov" - }, - { - "name": "Jemez", - "code": "tow" - }, - { - "name": "Tobian", - "code": "tox" - }, - { - "name": "Topoiyo", - "code": "toy" - }, - { - "name": "To", - "code": "toz" - }, - { - "name": "Taupota", - "code": "tpa" - }, - { - "name": "Azoyú Me'phaa", - "code": "tpc" - }, - { - "name": "Azoyú Tlapanec", - "code": "tpc" - }, - { - "name": "Tippera", - "code": "tpe" - }, - { - "name": "Tarpia", - "code": "tpf" - }, - { - "name": "Kula", - "code": "tpg" - }, - { - "name": "Tok Pisin", - "code": "tpi" - }, - { - "name": "Tapieté", - "code": "tpj" - }, - { - "name": "Tupinikin", - "code": "tpk" - }, - { - "name": "Tlacoapa Me'phaa", - "code": "tpl" - }, - { - "name": "Tlacoapa Tlapanec", - "code": "tpl" - }, - { - "name": "Tampulma", - "code": "tpm" - }, - { - "name": "Tupinambá", - "code": "tpn" - }, - { - "name": "Tai Pao", - "code": "tpo" - }, - { - "name": "Pisaflores Tepehua", - "code": "tpp" - }, - { - "name": "Tukpa", - "code": "tpq" - }, - { - "name": "Tuparí", - "code": "tpr" - }, - { - "name": "Tlachichilco Tepehua", - "code": "tpt" - }, - { - "name": "Tampuan", - "code": "tpu" - }, - { - "name": "Tanapag", - "code": "tpv" - }, - { - "name": "Tupí", - "code": "tpw" - }, - { - "name": "Acatepec Me'phaa", - "code": "tpx" - }, - { - "name": "Acatepec Tlapanec", - "code": "tpx" - }, - { - "name": "Trumai", - "code": "tpy" - }, - { - "name": "Tinputz", - "code": "tpz" - }, - { - "name": "Tembé", - "code": "tqb" - }, - { - "name": "Lehali", - "code": "tql" - }, - { - "name": "Turumsa", - "code": "tqm" - }, - { - "name": "Tenino", - "code": "tqn" - }, - { - "name": "Toaripi", - "code": "tqo" - }, - { - "name": "Tomoip", - "code": "tqp" - }, - { - "name": "Tunni", - "code": "tqq" - }, - { - "name": "Torona", - "code": "tqr" - }, - { - "name": "Western Totonac", - "code": "tqt" - }, - { - "name": "Touo", - "code": "tqu" - }, - { - "name": "Tonkawa", - "code": "tqw" - }, - { - "name": "Tirahi", - "code": "tra" - }, - { - "name": "Terebu", - "code": "trb" - }, - { - "name": "Copala Triqui", - "code": "trc" - }, - { - "name": "Turi", - "code": "trd" - }, - { - "name": "East Tarangan", - "code": "tre" - }, - { - "name": "Trinidadian Creole English", - "code": "trf" - }, - { - "name": "Lishán Didán", - "code": "trg" - }, - { - "name": "Turaka", - "code": "trh" - }, - { - "name": "Trió", - "code": "tri" - }, - { - "name": "Toram", - "code": "trj" - }, - { - "name": "Traveller Scottish", - "code": "trl" - }, - { - "name": "Tregami", - "code": "trm" - }, - { - "name": "Trinitario", - "code": "trn" - }, - { - "name": "Tarao Naga", - "code": "tro" - }, - { - "name": "Kok Borok", - "code": "trp" - }, - { - "name": "San Martín Itunyoso Triqui", - "code": "trq" - }, - { - "name": "Taushiro", - "code": "trr" - }, - { - "name": "Chicahuaxtla Triqui", - "code": "trs" - }, - { - "name": "Tunggare", - "code": "trt" - }, - { - "name": "Surayt", - "code": "tru" - }, - { - "name": "Turoyo", - "code": "tru" - }, - { - "name": "Taroko", - "code": "trv" - }, - { - "name": "Torwali", - "code": "trw" - }, - { - "name": "Tringgus-Sembaan Bidayuh", - "code": "trx" - }, - { - "name": "Turung", - "code": "try" - }, - { - "name": "Torá", - "code": "trz" - }, - { - "name": "Tsaangi", - "code": "tsa" - }, - { - "name": "Tsamai", - "code": "tsb" - }, - { - "name": "Tswa", - "code": "tsc" - }, - { - "name": "Tsakonian", - "code": "tsd" - }, - { - "name": "Tunisian Sign Language", - "code": "tse" - }, - { - "name": "Tausug", - "code": "tsg" - }, - { - "name": "Tsuvan", - "code": "tsh" - }, - { - "name": "Tsimshian", - "code": "tsi" - }, - { - "name": "Tshangla", - "code": "tsj" - }, - { - "name": "Tseku", - "code": "tsk" - }, - { - "name": "Ts'ün-Lao", - "code": "tsl" - }, - { - "name": "Türk İşaret Dili", - "code": "tsm" - }, - { - "name": "Turkish Sign Language", - "code": "tsm" - }, - { - "name": "Tswana", - "code": "tsn" - }, - { - "name": "Tsonga", - "code": "tso" - }, - { - "name": "Northern Toussian", - "code": "tsp" - }, - { - "name": "Thai Sign Language", - "code": "tsq" - }, - { - "name": "Akei", - "code": "tsr" - }, - { - "name": "Taiwan Sign Language", - "code": "tss" - }, - { - "name": "Tondi Songway Kiini", - "code": "tst" - }, - { - "name": "Tsou", - "code": "tsu" - }, - { - "name": "Tsogo", - "code": "tsv" - }, - { - "name": "Tsishingini", - "code": "tsw" - }, - { - "name": "Mubami", - "code": "tsx" - }, - { - "name": "Tebul Sign Language", - "code": "tsy" - }, - { - "name": "Purepecha", - "code": "tsz" - }, - { - "name": "Tutelo", - "code": "tta" - }, - { - "name": "Gaa", - "code": "ttb" - }, - { - "name": "Tektiteko", - "code": "ttc" - }, - { - "name": "Tauade", - "code": "ttd" - }, - { - "name": "Bwanabwana", - "code": "tte" - }, - { - "name": "Tuotomb", - "code": "ttf" - }, - { - "name": "Tutong", - "code": "ttg" - }, - { - "name": "Upper Ta'oih", - "code": "tth" - }, - { - "name": "Tobati", - "code": "tti" - }, - { - "name": "Tooro", - "code": "ttj" - }, - { - "name": "Totoro", - "code": "ttk" - }, - { - "name": "Totela", - "code": "ttl" - }, - { - "name": "Northern Tutchone", - "code": "ttm" - }, - { - "name": "Towei", - "code": "ttn" - }, - { - "name": "Lower Ta'oih", - "code": "tto" - }, - { - "name": "Tombelala", - "code": "ttp" - }, - { - "name": "Tawallammat Tamajaq", - "code": "ttq" - }, - { - "name": "Tera", - "code": "ttr" - }, - { - "name": "Northeastern Thai", - "code": "tts" - }, - { - "name": "Muslim Tat", - "code": "ttt" - }, - { - "name": "Torau", - "code": "ttu" - }, - { - "name": "Titan", - "code": "ttv" - }, - { - "name": "Long Wat", - "code": "ttw" - }, - { - "name": "Sikaritai", - "code": "tty" - }, - { - "name": "Tsum", - "code": "ttz" - }, - { - "name": "Wiarumus", - "code": "tua" - }, - { - "name": "Tübatulabal", - "code": "tub" - }, - { - "name": "Mutu", - "code": "tuc" - }, - { - "name": "Tuxá", - "code": "tud" - }, - { - "name": "Tuyuca", - "code": "tue" - }, - { - "name": "Central Tunebo", - "code": "tuf" - }, - { - "name": "Tunia", - "code": "tug" - }, - { - "name": "Taulil", - "code": "tuh" - }, - { - "name": "Tupuri", - "code": "tui" - }, - { - "name": "Tugutil", - "code": "tuj" - }, - { - "name": "Turkmen", - "code": "tuk" - }, - { - "name": "Tula", - "code": "tul" - }, - { - "name": "Tumbuka", - "code": "tum" - }, - { - "name": "Tunica", - "code": "tun" - }, - { - "name": "Tucano", - "code": "tuo" - }, - { - "name": "Tedaga", - "code": "tuq" - }, - { - "name": "Turkish", - "code": "tur" - }, - { - "name": "Tuscarora", - "code": "tus" - }, - { - "name": "Tututni", - "code": "tuu" - }, - { - "name": "Turkana", - "code": "tuv" - }, - { - "name": "Tuxináwa", - "code": "tux" - }, - { - "name": "Tugen", - "code": "tuy" - }, - { - "name": "Turka", - "code": "tuz" - }, - { - "name": "Vaghua", - "code": "tva" - }, - { - "name": "Tsuvadi", - "code": "tvd" - }, - { - "name": "Te'un", - "code": "tve" - }, - { - "name": "Southeast Ambrym", - "code": "tvk" - }, - { - "name": "Tuvalu", - "code": "tvl" - }, - { - "name": "Tela-Masbuar", - "code": "tvm" - }, - { - "name": "Tavoyan", - "code": "tvn" - }, - { - "name": "Tidore", - "code": "tvo" - }, - { - "name": "Taveta", - "code": "tvs" - }, - { - "name": "Tutsa Naga", - "code": "tvt" - }, - { - "name": "Tunen", - "code": "tvu" - }, - { - "name": "Sedoa", - "code": "tvw" - }, - { - "name": "Taivoan", - "code": "tvx" - }, - { - "name": "Timor Pidgin", - "code": "tvy" - }, - { - "name": "Twana", - "code": "twa" - }, - { - "name": "Western Tawbuid", - "code": "twb" - }, - { - "name": "Teshenawa", - "code": "twc" - }, - { - "name": "Twents", - "code": "twd" - }, - { - "name": "Tewa (Indonesia)", - "code": "twe" - }, - { - "name": "Northern Tiwa", - "code": "twf" - }, - { - "name": "Tereweng", - "code": "twg" - }, - { - "name": "Tai Dón", - "code": "twh" - }, - { - "name": "Twi", - "code": "twi" - }, - { - "name": "Tawara", - "code": "twl" - }, - { - "name": "Tawang Monpa", - "code": "twm" - }, - { - "name": "Twendi", - "code": "twn" - }, - { - "name": "Tswapong", - "code": "two" - }, - { - "name": "Ere", - "code": "twp" - }, - { - "name": "Tasawaq", - "code": "twq" - }, - { - "name": "Southwestern Tarahumara", - "code": "twr" - }, - { - "name": "Turiwára", - "code": "twt" - }, - { - "name": "Termanu", - "code": "twu" - }, - { - "name": "Tuwari", - "code": "tww" - }, - { - "name": "Tewe", - "code": "twx" - }, - { - "name": "Tawoyan", - "code": "twy" - }, - { - "name": "Tombonuo", - "code": "txa" - }, - { - "name": "Tokharian B", - "code": "txb" - }, - { - "name": "Tsetsaut", - "code": "txc" - }, - { - "name": "Totoli", - "code": "txe" - }, - { - "name": "Tangut", - "code": "txg" - }, - { - "name": "Thracian", - "code": "txh" - }, - { - "name": "Ikpeng", - "code": "txi" - }, - { - "name": "Tarjumo", - "code": "txj" - }, - { - "name": "Tomini", - "code": "txm" - }, - { - "name": "West Tarangan", - "code": "txn" - }, - { - "name": "Toto", - "code": "txo" - }, - { - "name": "Tii", - "code": "txq" - }, - { - "name": "Tartessian", - "code": "txr" - }, - { - "name": "Tonsea", - "code": "txs" - }, - { - "name": "Citak", - "code": "txt" - }, - { - "name": "Kayapó", - "code": "txu" - }, - { - "name": "Tatana", - "code": "txx" - }, - { - "name": "Tanosy Malagasy", - "code": "txy" - }, - { - "name": "Tauya", - "code": "tya" - }, - { - "name": "Kyanga", - "code": "tye" - }, - { - "name": "O'du", - "code": "tyh" - }, - { - "name": "Teke-Tsaayi", - "code": "tyi" - }, - { - "name": "Tai Do", - "code": "tyj" - }, - { - "name": "Tai Yo", - "code": "tyj" - }, - { - "name": "Thu Lao", - "code": "tyl" - }, - { - "name": "Kombai", - "code": "tyn" - }, - { - "name": "Thaypan", - "code": "typ" - }, - { - "name": "Tai Daeng", - "code": "tyr" - }, - { - "name": "Tày Sa Pa", - "code": "tys" - }, - { - "name": "Tày Tac", - "code": "tyt" - }, - { - "name": "Kua", - "code": "tyu" - }, - { - "name": "Tuvinian", - "code": "tyv" - }, - { - "name": "Teke-Tyee", - "code": "tyx" - }, - { - "name": "Tiyaa", - "code": "tyy" - }, - { - "name": "Tày", - "code": "tyz" - }, - { - "name": "Tanzanian Sign Language", - "code": "tza" - }, - { - "name": "Tzeltal", - "code": "tzh" - }, - { - "name": "Tz'utujil", - "code": "tzj" - }, - { - "name": "Talossan", - "code": "tzl" - }, - { - "name": "Central Atlas Tamazight", - "code": "tzm" - }, - { - "name": "Tugun", - "code": "tzn" - }, - { - "name": "Tzotzil", - "code": "tzo" - }, - { - "name": "Tabriak", - "code": "tzx" - }, - { - "name": "Uamué", - "code": "uam" - }, - { - "name": "Kuan", - "code": "uan" - }, - { - "name": "Tairuma", - "code": "uar" - }, - { - "name": "Ubang", - "code": "uba" - }, - { - "name": "Ubi", - "code": "ubi" - }, - { - "name": "Buhi'non Bikol", - "code": "ubl" - }, - { - "name": "Ubir", - "code": "ubr" - }, - { - "name": "Umbu-Ungu", - "code": "ubu" - }, - { - "name": "Ubykh", - "code": "uby" - }, - { - "name": "Uda", - "code": "uda" - }, - { - "name": "Udihe", - "code": "ude" - }, - { - "name": "Muduga", - "code": "udg" - }, - { - "name": "Udi", - "code": "udi" - }, - { - "name": "Ujir", - "code": "udj" - }, - { - "name": "Wuzlam", - "code": "udl" - }, - { - "name": "Udmurt", - "code": "udm" - }, - { - "name": "Uduk", - "code": "udu" - }, - { - "name": "Kioko", - "code": "ues" - }, - { - "name": "Ufim", - "code": "ufi" - }, - { - "name": "Ugaritic", - "code": "uga" - }, - { - "name": "Kuku-Ugbanh", - "code": "ugb" - }, - { - "name": "Ughele", - "code": "uge" - }, - { - "name": "Ugandan Sign Language", - "code": "ugn" - }, - { - "name": "Ugong", - "code": "ugo" - }, - { - "name": "Uruguayan Sign Language", - "code": "ugy" - }, - { - "name": "Uhami", - "code": "uha" - }, - { - "name": "Damal", - "code": "uhn" - }, - { - "name": "Uighur", - "code": "uig" - }, - { - "name": "Uyghur", - "code": "uig" - }, - { - "name": "Uisai", - "code": "uis" - }, - { - "name": "Iyive", - "code": "uiv" - }, - { - "name": "Tanjijili", - "code": "uji" - }, - { - "name": "Kaburi", - "code": "uka" - }, - { - "name": "Ukuriguma", - "code": "ukg" - }, - { - "name": "Ukhwejo", - "code": "ukh" - }, - { - "name": "Kui (India)", - "code": "uki" - }, - { - "name": "Muak Sa-aak", - "code": "ukk" - }, - { - "name": "Ukrainian Sign Language", - "code": "ukl" - }, - { - "name": "Ukpe-Bayobiri", - "code": "ukp" - }, - { - "name": "Ukwa", - "code": "ukq" - }, - { - "name": "Ukrainian", - "code": "ukr" - }, - { - "name": "Kaapor Sign Language", - "code": "uks" - }, - { - "name": "Urubú-Kaapor Sign Language", - "code": "uks" - }, - { - "name": "Ukue", - "code": "uku" - }, - { - "name": "Kuku", - "code": "ukv" - }, - { - "name": "Ukwuani-Aboh-Ndoni", - "code": "ukw" - }, - { - "name": "Kuuk-Yak", - "code": "uky" - }, - { - "name": "Fungwa", - "code": "ula" - }, - { - "name": "Ulukwumi", - "code": "ulb" - }, - { - "name": "Ulch", - "code": "ulc" - }, - { - "name": "Lule", - "code": "ule" - }, - { - "name": "Afra", - "code": "ulf" - }, - { - "name": "Usku", - "code": "ulf" - }, - { - "name": "Ulithian", - "code": "uli" - }, - { - "name": "Meriam Mir", - "code": "ulk" - }, - { - "name": "Ullatan", - "code": "ull" - }, - { - "name": "Ulumanda'", - "code": "ulm" - }, - { - "name": "Unserdeutsch", - "code": "uln" - }, - { - "name": "Uma' Lung", - "code": "ulu" - }, - { - "name": "Ulwa", - "code": "ulw" - }, - { - "name": "Umatilla", - "code": "uma" - }, - { - "name": "Umbundu", - "code": "umb" - }, - { - "name": "Marrucinian", - "code": "umc" - }, - { - "name": "Umbindhamu", - "code": "umd" - }, - { - "name": "Morrobalama", - "code": "umg" - }, - { - "name": "Umbuygamu", - "code": "umg" - }, - { - "name": "Ukit", - "code": "umi" - }, - { - "name": "Umon", - "code": "umm" - }, - { - "name": "Makyan Naga", - "code": "umn" - }, - { - "name": "Umotína", - "code": "umo" - }, - { - "name": "Umpila", - "code": "ump" - }, - { - "name": "Umbugarla", - "code": "umr" - }, - { - "name": "Pendau", - "code": "ums" - }, - { - "name": "Munsee", - "code": "umu" - }, - { - "name": "North Watut", - "code": "una" - }, - { - "name": "Undetermined", - "code": "und" - }, - { - "name": "Uneme", - "code": "une" - }, - { - "name": "Ngarinyin", - "code": "ung" - }, - { - "name": "Uni", - "code": "uni" - }, - { - "name": "Enawené-Nawé", - "code": "unk" - }, - { - "name": "Unami", - "code": "unm" - }, - { - "name": "Kurnai", - "code": "unn" - }, - { - "name": "Mundari", - "code": "unr" - }, - { - "name": "Unubahe", - "code": "unu" - }, - { - "name": "Munda", - "code": "unx" - }, - { - "name": "Unde Kaili", - "code": "unz" - }, - { - "name": "Umeda", - "code": "upi" - }, - { - "name": "Uripiv-Wala-Rano-Atchin", - "code": "upv" - }, - { - "name": "Urarina", - "code": "ura" - }, - { - "name": "Kaapor", - "code": "urb" - }, - { - "name": "Urubú-Kaapor", - "code": "urb" - }, - { - "name": "Urningangg", - "code": "urc" - }, - { - "name": "Urdu", - "code": "urd" - }, - { - "name": "Uru", - "code": "ure" - }, - { - "name": "Uradhi", - "code": "urf" - }, - { - "name": "Urigina", - "code": "urg" - }, - { - "name": "Urhobo", - "code": "urh" - }, - { - "name": "Urim", - "code": "uri" - }, - { - "name": "Urak Lawoi'", - "code": "urk" - }, - { - "name": "Urali", - "code": "url" - }, - { - "name": "Urapmin", - "code": "urm" - }, - { - "name": "Uruangnirin", - "code": "urn" - }, - { - "name": "Ura (Papua New Guinea)", - "code": "uro" - }, - { - "name": "Uru-Pa-In", - "code": "urp" - }, - { - "name": "Lehalurup", - "code": "urr" - }, - { - "name": "Löyöp", - "code": "urr" - }, - { - "name": "Urat", - "code": "urt" - }, - { - "name": "Urumi", - "code": "uru" - }, - { - "name": "Uruava", - "code": "urv" - }, - { - "name": "Sop", - "code": "urw" - }, - { - "name": "Urimo", - "code": "urx" - }, - { - "name": "Orya", - "code": "ury" - }, - { - "name": "Uru-Eu-Wau-Wau", - "code": "urz" - }, - { - "name": "Usarufa", - "code": "usa" - }, - { - "name": "Ushojo", - "code": "ush" - }, - { - "name": "Usui", - "code": "usi" - }, - { - "name": "Usaghade", - "code": "usk" - }, - { - "name": "Uspanteco", - "code": "usp" - }, - { - "name": "us-Saare", - "code": "uss" - }, - { - "name": "Uya", - "code": "usu" - }, - { - "name": "Otank", - "code": "uta" - }, - { - "name": "Ute-Southern Paiute", - "code": "ute" - }, - { - "name": "ut-Hun", - "code": "uth" - }, - { - "name": "Amba (Solomon Islands)", - "code": "utp" - }, - { - "name": "Etulo", - "code": "utr" - }, - { - "name": "Utu", - "code": "utu" - }, - { - "name": "Urum", - "code": "uum" - }, - { - "name": "Kulon-Pazeh", - "code": "uun" - }, - { - "name": "Ura (Vanuatu)", - "code": "uur" - }, - { - "name": "U", - "code": "uuu" - }, - { - "name": "Fagauvea", - "code": "uve" - }, - { - "name": "West Uvean", - "code": "uve" - }, - { - "name": "Uri", - "code": "uvh" - }, - { - "name": "Lote", - "code": "uvl" - }, - { - "name": "Kuku-Uwanh", - "code": "uwa" - }, - { - "name": "Doko-Uyanga", - "code": "uya" - }, - { - "name": "Uzbek", - "code": "uzb" - }, - { - "name": "Northern Uzbek", - "code": "uzn" - }, - { - "name": "Southern Uzbek", - "code": "uzs" - }, - { - "name": "Vaagri Booli", - "code": "vaa" - }, - { - "name": "Vale", - "code": "vae" - }, - { - "name": "Vafsi", - "code": "vaf" - }, - { - "name": "Vagla", - "code": "vag" - }, - { - "name": "Varhadi-Nagpuri", - "code": "vah" - }, - { - "name": "Vai", - "code": "vai" - }, - { - "name": "Northwestern ǃKung", - "code": "vaj" - }, - { - "name": "Sekele", - "code": "vaj" - }, - { - "name": "Vasekele", - "code": "vaj" - }, - { - "name": "Vehes", - "code": "val" - }, - { - "name": "Vanimo", - "code": "vam" - }, - { - "name": "Valman", - "code": "van" - }, - { - "name": "Vao", - "code": "vao" - }, - { - "name": "Vaiphei", - "code": "vap" - }, - { - "name": "Huarijio", - "code": "var" - }, - { - "name": "Vasavi", - "code": "vas" - }, - { - "name": "Vanuma", - "code": "vau" - }, - { - "name": "Varli", - "code": "vav" - }, - { - "name": "Wayu", - "code": "vay" - }, - { - "name": "Southeast Babar", - "code": "vbb" - }, - { - "name": "Southwestern Bontok", - "code": "vbk" - }, - { - "name": "Venetian", - "code": "vec" - }, - { - "name": "Veddah", - "code": "ved" - }, - { - "name": "Veluws", - "code": "vel" - }, - { - "name": "Vemgo-Mabas", - "code": "vem" - }, - { - "name": "Venda", - "code": "ven" - }, - { - "name": "Ventureño", - "code": "veo" - }, - { - "name": "Veps", - "code": "vep" - }, - { - "name": "Mom Jango", - "code": "ver" - }, - { - "name": "Vaghri", - "code": "vgr" - }, - { - "name": "Flemish Sign Language", - "code": "vgt" - }, - { - "name": "Vlaamse Gebarentaal", - "code": "vgt" - }, - { - "name": "Virgin Islands Creole English", - "code": "vic" - }, - { - "name": "Vidunda", - "code": "vid" - }, - { - "name": "Vietnamese", - "code": "vie" - }, - { - "name": "Vili", - "code": "vif" - }, - { - "name": "Viemo", - "code": "vig" - }, - { - "name": "Vilela", - "code": "vil" - }, - { - "name": "Vinza", - "code": "vin" - }, - { - "name": "Vishavan", - "code": "vis" - }, - { - "name": "Viti", - "code": "vit" - }, - { - "name": "Iduna", - "code": "viv" - }, - { - "name": "Kariyarra", - "code": "vka" - }, - { - "name": "Kujarge", - "code": "vkj" - }, - { - "name": "Kaur", - "code": "vkk" - }, - { - "name": "Kulisusu", - "code": "vkl" - }, - { - "name": "Kamakan", - "code": "vkm" - }, - { - "name": "Koro Nulu", - "code": "vkn" - }, - { - "name": "Kodeoha", - "code": "vko" - }, - { - "name": "Korlai Creole Portuguese", - "code": "vkp" - }, - { - "name": "Tenggarong Kutai Malay", - "code": "vkt" - }, - { - "name": "Kurrama", - "code": "vku" - }, - { - "name": "Koro Zuba", - "code": "vkz" - }, - { - "name": "Valpei", - "code": "vlp" - }, - { - "name": "Vlaams", - "code": "vls" - }, - { - "name": "Martuyhunira", - "code": "vma" - }, - { - "name": "Barbaram", - "code": "vmb" - }, - { - "name": "Juxtlahuaca Mixtec", - "code": "vmc" - }, - { - "name": "Mudu Koraga", - "code": "vmd" - }, - { - "name": "East Masela", - "code": "vme" - }, - { - "name": "Mainfränkisch", - "code": "vmf" - }, - { - "name": "Lungalunga", - "code": "vmg" - }, - { - "name": "Maraghei", - "code": "vmh" - }, - { - "name": "Miwa", - "code": "vmi" - }, - { - "name": "Ixtayutla Mixtec", - "code": "vmj" - }, - { - "name": "Makhuwa-Shirima", - "code": "vmk" - }, - { - "name": "Malgana", - "code": "vml" - }, - { - "name": "Mitlatongo Mixtec", - "code": "vmm" - }, - { - "name": "Soyaltepec Mazatec", - "code": "vmp" - }, - { - "name": "Soyaltepec Mixtec", - "code": "vmq" - }, - { - "name": "Marenje", - "code": "vmr" - }, - { - "name": "Moksela", - "code": "vms" - }, - { - "name": "Muluridyi", - "code": "vmu" - }, - { - "name": "Valley Maidu", - "code": "vmv" - }, - { - "name": "Makhuwa", - "code": "vmw" - }, - { - "name": "Tamazola Mixtec", - "code": "vmx" - }, - { - "name": "Ayautla Mazatec", - "code": "vmy" - }, - { - "name": "Mazatlán Mazatec", - "code": "vmz" - }, - { - "name": "Lovono", - "code": "vnk" - }, - { - "name": "Vano", - "code": "vnk" - }, - { - "name": "Neve'ei", - "code": "vnm" - }, - { - "name": "Vinmavis", - "code": "vnm" - }, - { - "name": "Vunapu", - "code": "vnp" - }, - { - "name": "Volapük", - "code": "vol" - }, - { - "name": "Voro", - "code": "vor" - }, - { - "name": "Votic", - "code": "vot" - }, - { - "name": "Vera'a", - "code": "vra" - }, - { - "name": "Võro", - "code": "vro" - }, - { - "name": "Varisi", - "code": "vrs" - }, - { - "name": "Banam Bay", - "code": "vrt" - }, - { - "name": "Burmbar", - "code": "vrt" - }, - { - "name": "Moldova Sign Language", - "code": "vsi" - }, - { - "name": "Venezuelan Sign Language", - "code": "vsl" - }, - { - "name": "Llengua de signes valenciana", - "code": "vsv" - }, - { - "name": "Valencian Sign Language", - "code": "vsv" - }, - { - "name": "Vitou", - "code": "vto" - }, - { - "name": "Vumbu", - "code": "vum" - }, - { - "name": "Vunjo", - "code": "vun" - }, - { - "name": "Vute", - "code": "vut" - }, - { - "name": "Awa (China)", - "code": "vwa" - }, - { - "name": "Walla Walla", - "code": "waa" - }, - { - "name": "Wab", - "code": "wab" - }, - { - "name": "Wasco-Wishram", - "code": "wac" - }, - { - "name": "Wamesa", - "code": "wad" - }, - { - "name": "Wondama", - "code": "wad" - }, - { - "name": "Walser", - "code": "wae" - }, - { - "name": "Wakoná", - "code": "waf" - }, - { - "name": "Wa'ema", - "code": "wag" - }, - { - "name": "Watubela", - "code": "wah" - }, - { - "name": "Wares", - "code": "wai" - }, - { - "name": "Waffa", - "code": "waj" - }, - { - "name": "Wolaitta", - "code": "wal" - }, - { - "name": "Wolaytta", - "code": "wal" - }, - { - "name": "Wampanoag", - "code": "wam" - }, - { - "name": "Wan", - "code": "wan" - }, - { - "name": "Wappo", - "code": "wao" - }, - { - "name": "Wapishana", - "code": "wap" - }, - { - "name": "Wagiman", - "code": "waq" - }, - { - "name": "Waray (Philippines)", - "code": "war" - }, - { - "name": "Washo", - "code": "was" - }, - { - "name": "Kaninuwa", - "code": "wat" - }, - { - "name": "Waurá", - "code": "wau" - }, - { - "name": "Waka", - "code": "wav" - }, - { - "name": "Waiwai", - "code": "waw" - }, - { - "name": "Marangis", - "code": "wax" - }, - { - "name": "Watam", - "code": "wax" - }, - { - "name": "Wayana", - "code": "way" - }, - { - "name": "Wampur", - "code": "waz" - }, - { - "name": "Warao", - "code": "wba" - }, - { - "name": "Wabo", - "code": "wbb" - }, - { - "name": "Waritai", - "code": "wbe" - }, - { - "name": "Wara", - "code": "wbf" - }, - { - "name": "Wanda", - "code": "wbh" - }, - { - "name": "Vwanji", - "code": "wbi" - }, - { - "name": "Alagwa", - "code": "wbj" - }, - { - "name": "Waigali", - "code": "wbk" - }, - { - "name": "Wakhi", - "code": "wbl" - }, - { - "name": "Wa", - "code": "wbm" - }, - { - "name": "Warlpiri", - "code": "wbp" - }, - { - "name": "Waddar", - "code": "wbq" - }, - { - "name": "Wagdi", - "code": "wbr" - }, - { - "name": "West Bengal Sign Language", - "code": "wbs" - }, - { - "name": "Warnman", - "code": "wbt" - }, - { - "name": "Wajarri", - "code": "wbv" - }, - { - "name": "Woi", - "code": "wbw" - }, - { - "name": "Yanomámi", - "code": "wca" - }, - { - "name": "Waci Gbe", - "code": "wci" - }, - { - "name": "Wandji", - "code": "wdd" - }, - { - "name": "Wadaginam", - "code": "wdg" - }, - { - "name": "Wadjiginy", - "code": "wdj" - }, - { - "name": "Wadikali", - "code": "wdk" - }, - { - "name": "Wadjigu", - "code": "wdu" - }, - { - "name": "Wadjabangayi", - "code": "wdy" - }, - { - "name": "Wewaw", - "code": "wea" - }, - { - "name": "Wè Western", - "code": "wec" - }, - { - "name": "Wedau", - "code": "wed" - }, - { - "name": "Wergaia", - "code": "weg" - }, - { - "name": "Weh", - "code": "weh" - }, - { - "name": "Kiunum", - "code": "wei" - }, - { - "name": "Weme Gbe", - "code": "wem" - }, - { - "name": "Wemale", - "code": "weo" - }, - { - "name": "Westphalien", - "code": "wep" - }, - { - "name": "Weri", - "code": "wer" - }, - { - "name": "Cameroon Pidgin", - "code": "wes" - }, - { - "name": "Perai", - "code": "wet" - }, - { - "name": "Rawngtu Chin", - "code": "weu" - }, - { - "name": "Wejewa", - "code": "wew" - }, - { - "name": "Yafi", - "code": "wfg" - }, - { - "name": "Zorop", - "code": "wfg" - }, - { - "name": "Wagaya", - "code": "wga" - }, - { - "name": "Wagawaga", - "code": "wgb" - }, - { - "name": "Wangganguru", - "code": "wgg" - }, - { - "name": "Wangkangurru", - "code": "wgg" - }, - { - "name": "Wahgi", - "code": "wgi" - }, - { - "name": "Waigeo", - "code": "wgo" - }, - { - "name": "Wirangu", - "code": "wgu" - }, - { - "name": "Warrgamay", - "code": "wgy" - }, - { - "name": "Manusela", - "code": "wha" - }, - { - "name": "Sou Upaa", - "code": "wha" - }, - { - "name": "North Wahgi", - "code": "whg" - }, - { - "name": "Wahau Kenyah", - "code": "whk" - }, - { - "name": "Wahau Kayan", - "code": "whu" - }, - { - "name": "Southern Toussian", - "code": "wib" - }, - { - "name": "Wichita", - "code": "wic" - }, - { - "name": "Wik-Epa", - "code": "wie" - }, - { - "name": "Wik-Keyangan", - "code": "wif" - }, - { - "name": "Wik Ngathan", - "code": "wig" - }, - { - "name": "Wik-Me'anha", - "code": "wih" - }, - { - "name": "Minidien", - "code": "wii" - }, - { - "name": "Wik-Iiyanh", - "code": "wij" - }, - { - "name": "Wikalkan", - "code": "wik" - }, - { - "name": "Wilawila", - "code": "wil" - }, - { - "name": "Wik-Mungkan", - "code": "wim" - }, - { - "name": "Ho-Chunk", - "code": "win" - }, - { - "name": "Wiraféd", - "code": "wir" - }, - { - "name": "Wiru", - "code": "wiu" - }, - { - "name": "Vitu", - "code": "wiv" - }, - { - "name": "Wiyot", - "code": "wiy" - }, - { - "name": "Waja", - "code": "wja" - }, - { - "name": "Warji", - "code": "wji" - }, - { - "name": "Kw'adza", - "code": "wka" - }, - { - "name": "Kumbaran", - "code": "wkb" - }, - { - "name": "Mo", - "code": "wkd" - }, - { - "name": "Wakde", - "code": "wkd" - }, - { - "name": "Kalanadi", - "code": "wkl" - }, - { - "name": "Keerray-Woorroong", - "code": "wkr" - }, - { - "name": "Kunduvadi", - "code": "wku" - }, - { - "name": "Wakawaka", - "code": "wkw" - }, - { - "name": "Wangkayutyuru", - "code": "wky" - }, - { - "name": "Walio", - "code": "wla" - }, - { - "name": "Mwali Comorian", - "code": "wlc" - }, - { - "name": "Wolane", - "code": "wle" - }, - { - "name": "Kunbarlang", - "code": "wlg" - }, - { - "name": "Welaun", - "code": "wlh" - }, - { - "name": "Waioli", - "code": "wli" - }, - { - "name": "Wailaki", - "code": "wlk" - }, - { - "name": "Wali (Sudan)", - "code": "wll" - }, - { - "name": "Middle Welsh", - "code": "wlm" - }, - { - "name": "Walloon", - "code": "wln" - }, - { - "name": "Wolio", - "code": "wlo" - }, - { - "name": "Wailapa", - "code": "wlr" - }, - { - "name": "Wallisian", - "code": "wls" - }, - { - "name": "Wuliwuli", - "code": "wlu" - }, - { - "name": "Wichí Lhamtés Vejoz", - "code": "wlv" - }, - { - "name": "Walak", - "code": "wlw" - }, - { - "name": "Wali (Ghana)", - "code": "wlx" - }, - { - "name": "Waling", - "code": "wly" - }, - { - "name": "Mawa (Nigeria)", - "code": "wma" - }, - { - "name": "Wambaya", - "code": "wmb" - }, - { - "name": "Wamas", - "code": "wmc" - }, - { - "name": "Mamaindé", - "code": "wmd" - }, - { - "name": "Wambule", - "code": "wme" - }, - { - "name": "Western Minyag", - "code": "wmg" - }, - { - "name": "Waima'a", - "code": "wmh" - }, - { - "name": "Wamin", - "code": "wmi" - }, - { - "name": "Maiwa (Indonesia)", - "code": "wmm" - }, - { - "name": "Waamwang", - "code": "wmn" - }, - { - "name": "Wom (Papua New Guinea)", - "code": "wmo" - }, - { - "name": "Wambon", - "code": "wms" - }, - { - "name": "Walmajarri", - "code": "wmt" - }, - { - "name": "Mwani", - "code": "wmw" - }, - { - "name": "Womo", - "code": "wmx" - }, - { - "name": "Wanambre", - "code": "wnb" - }, - { - "name": "Wantoat", - "code": "wnc" - }, - { - "name": "Wandarang", - "code": "wnd" - }, - { - "name": "Waneci", - "code": "wne" - }, - { - "name": "Wanggom", - "code": "wng" - }, - { - "name": "Ndzwani Comorian", - "code": "wni" - }, - { - "name": "Wanukaka", - "code": "wnk" - }, - { - "name": "Wanggamala", - "code": "wnm" - }, - { - "name": "Wunumara", - "code": "wnn" - }, - { - "name": "Wano", - "code": "wno" - }, - { - "name": "Wanap", - "code": "wnp" - }, - { - "name": "Usan", - "code": "wnu" - }, - { - "name": "Wintu", - "code": "wnw" - }, - { - "name": "Waanyi", - "code": "wny" - }, - { - "name": "Wanyi", - "code": "wny" - }, - { - "name": "Kuwema", - "code": "woa" - }, - { - "name": "Tyaraity", - "code": "woa" - }, - { - "name": "Wè Northern", - "code": "wob" - }, - { - "name": "Wogeo", - "code": "woc" - }, - { - "name": "Wolani", - "code": "wod" - }, - { - "name": "Woleaian", - "code": "woe" - }, - { - "name": "Gambian Wolof", - "code": "wof" - }, - { - "name": "Wogamusin", - "code": "wog" - }, - { - "name": "Kamang", - "code": "woi" - }, - { - "name": "Longto", - "code": "wok" - }, - { - "name": "Wolof", - "code": "wol" - }, - { - "name": "Wom (Nigeria)", - "code": "wom" - }, - { - "name": "Wongo", - "code": "won" - }, - { - "name": "Manombai", - "code": "woo" - }, - { - "name": "Woria", - "code": "wor" - }, - { - "name": "Hanga Hundi", - "code": "wos" - }, - { - "name": "Wawonii", - "code": "wow" - }, - { - "name": "Weyto", - "code": "woy" - }, - { - "name": "Maco", - "code": "wpc" - }, - { - "name": "Waluwarra", - "code": "wrb" - }, - { - "name": "Warluwara", - "code": "wrb" - }, - { - "name": "Warduji", - "code": "wrd" - }, - { - "name": "Gudjal", - "code": "wrg" - }, - { - "name": "Warungu", - "code": "wrg" - }, - { - "name": "Wiradjuri", - "code": "wrh" - }, - { - "name": "Wariyangga", - "code": "wri" - }, - { - "name": "Garrwa", - "code": "wrk" - }, - { - "name": "Warlmanpa", - "code": "wrl" - }, - { - "name": "Warumungu", - "code": "wrm" - }, - { - "name": "Warnang", - "code": "wrn" - }, - { - "name": "Worrorra", - "code": "wro" - }, - { - "name": "Waropen", - "code": "wrp" - }, - { - "name": "Wardaman", - "code": "wrr" - }, - { - "name": "Waris", - "code": "wrs" - }, - { - "name": "Waru", - "code": "wru" - }, - { - "name": "Waruna", - "code": "wrv" - }, - { - "name": "Gugu Warra", - "code": "wrw" - }, - { - "name": "Wae Rana", - "code": "wrx" - }, - { - "name": "Merwari", - "code": "wry" - }, - { - "name": "Waray (Australia)", - "code": "wrz" - }, - { - "name": "Warembori", - "code": "wsa" - }, - { - "name": "Adilabad Gondi", - "code": "wsg" - }, - { - "name": "Wusi", - "code": "wsi" - }, - { - "name": "Waskia", - "code": "wsk" - }, - { - "name": "Owenia", - "code": "wsr" - }, - { - "name": "Wasa", - "code": "wss" - }, - { - "name": "Wasu", - "code": "wsu" - }, - { - "name": "Wotapuri-Katarqalai", - "code": "wsv" - }, - { - "name": "Watiwa", - "code": "wtf" - }, - { - "name": "Wathawurrung", - "code": "wth" - }, - { - "name": "Berta", - "code": "wti" - }, - { - "name": "Watakataui", - "code": "wtk" - }, - { - "name": "Mewati", - "code": "wtm" - }, - { - "name": "Wotu", - "code": "wtw" - }, - { - "name": "Wikngenchera", - "code": "wua" - }, - { - "name": "Wunambal", - "code": "wub" - }, - { - "name": "Wudu", - "code": "wud" - }, - { - "name": "Wutunhua", - "code": "wuh" - }, - { - "name": "Silimo", - "code": "wul" - }, - { - "name": "Wumbvu", - "code": "wum" - }, - { - "name": "Bungu", - "code": "wun" - }, - { - "name": "Wurrugu", - "code": "wur" - }, - { - "name": "Wutung", - "code": "wut" - }, - { - "name": "Wu Chinese", - "code": "wuu" - }, - { - "name": "Wuvulu-Aua", - "code": "wuv" - }, - { - "name": "Wulna", - "code": "wux" - }, - { - "name": "Wauyai", - "code": "wuy" - }, - { - "name": "Waama", - "code": "wwa" - }, - { - "name": "Wakabunga", - "code": "wwb" - }, - { - "name": "Dorig", - "code": "wwo" - }, - { - "name": "Wetamut", - "code": "wwo" - }, - { - "name": "Warrwa", - "code": "wwr" - }, - { - "name": "Wawa", - "code": "www" - }, - { - "name": "Waxianghua", - "code": "wxa" - }, - { - "name": "Wardandi", - "code": "wxw" - }, - { - "name": "Wyandot", - "code": "wya" - }, - { - "name": "Wangaaybuwan-Ngiyambaa", - "code": "wyb" - }, - { - "name": "Woiwurrung", - "code": "wyi" - }, - { - "name": "Wymysorys", - "code": "wym" - }, - { - "name": "Wayoró", - "code": "wyr" - }, - { - "name": "Western Fijian", - "code": "wyy" - }, - { - "name": "Andalusian Arabic", - "code": "xaa" - }, - { - "name": "Sambe", - "code": "xab" - }, - { - "name": "Kachari", - "code": "xac" - }, - { - "name": "Adai", - "code": "xad" - }, - { - "name": "Aequian", - "code": "xae" - }, - { - "name": "Aghwan", - "code": "xag" - }, - { - "name": "Kaimbé", - "code": "xai" - }, - { - "name": "Ararandewára", - "code": "xaj" - }, - { - "name": "Máku", - "code": "xak" - }, - { - "name": "Kalmyk", - "code": "xal" - }, - { - "name": "Oirat", - "code": "xal" - }, - { - "name": "ǀXam", - "code": "xam" - }, - { - "name": "Xamtanga", - "code": "xan" - }, - { - "name": "Khao", - "code": "xao" - }, - { - "name": "Apalachee", - "code": "xap" - }, - { - "name": "Aquitanian", - "code": "xaq" - }, - { - "name": "Karami", - "code": "xar" - }, - { - "name": "Kamas", - "code": "xas" - }, - { - "name": "Katawixi", - "code": "xat" - }, - { - "name": "Kauwera", - "code": "xau" - }, - { - "name": "Xavánte", - "code": "xav" - }, - { - "name": "Kawaiisu", - "code": "xaw" - }, - { - "name": "Kayan Mahakam", - "code": "xay" - }, - { - "name": "Lower Burdekin", - "code": "xbb" - }, - { - "name": "Bactrian", - "code": "xbc" - }, - { - "name": "Bindal", - "code": "xbd" - }, - { - "name": "Bigambal", - "code": "xbe" - }, - { - "name": "Bunganditj", - "code": "xbg" - }, - { - "name": "Kombio", - "code": "xbi" - }, - { - "name": "Birrpayi", - "code": "xbj" - }, - { - "name": "Middle Breton", - "code": "xbm" - }, - { - "name": "Kenaboi", - "code": "xbn" - }, - { - "name": "Bolgarian", - "code": "xbo" - }, - { - "name": "Bibbulman", - "code": "xbp" - }, - { - "name": "Kambera", - "code": "xbr" - }, - { - "name": "Kambiwá", - "code": "xbw" - }, - { - "name": "Batjala", - "code": "xby" - }, - { - "name": "Batyala", - "code": "xby" - }, - { - "name": "Cumbric", - "code": "xcb" - }, - { - "name": "Camunic", - "code": "xcc" - }, - { - "name": "Celtiberian", - "code": "xce" - }, - { - "name": "Cisalpine Gaulish", - "code": "xcg" - }, - { - "name": "Chemakum", - "code": "xch" - }, - { - "name": "Chimakum", - "code": "xch" - }, - { - "name": "Classical Armenian", - "code": "xcl" - }, - { - "name": "Comecrudo", - "code": "xcm" - }, - { - "name": "Cotoname", - "code": "xcn" - }, - { - "name": "Chorasmian", - "code": "xco" - }, - { - "name": "Carian", - "code": "xcr" - }, - { - "name": "Classical Tibetan", - "code": "xct" - }, - { - "name": "Curonian", - "code": "xcu" - }, - { - "name": "Chuvantsy", - "code": "xcv" - }, - { - "name": "Coahuilteco", - "code": "xcw" - }, - { - "name": "Cayuse", - "code": "xcy" - }, - { - "name": "Darkinyung", - "code": "xda" - }, - { - "name": "Dacian", - "code": "xdc" - }, - { - "name": "Dharuk", - "code": "xdk" - }, - { - "name": "Edomite", - "code": "xdm" - }, - { - "name": "Kwandu", - "code": "xdo" - }, - { - "name": "Malayic Dayak", - "code": "xdy" - }, - { - "name": "Eblan", - "code": "xeb" - }, - { - "name": "Hdi", - "code": "xed" - }, - { - "name": "ǁXegwi", - "code": "xeg" - }, - { - "name": "Kelo", - "code": "xel" - }, - { - "name": "Kembayan", - "code": "xem" - }, - { - "name": "Epi-Olmec", - "code": "xep" - }, - { - "name": "Xerénte", - "code": "xer" - }, - { - "name": "Kesawai", - "code": "xes" - }, - { - "name": "Xetá", - "code": "xet" - }, - { - "name": "Keoru-Ahia", - "code": "xeu" - }, - { - "name": "Faliscan", - "code": "xfa" - }, - { - "name": "Galatian", - "code": "xga" - }, - { - "name": "Gbin", - "code": "xgb" - }, - { - "name": "Gudang", - "code": "xgd" - }, - { - "name": "Gabrielino-Fernandeño", - "code": "xgf" - }, - { - "name": "Goreng", - "code": "xgg" - }, - { - "name": "Garingbal", - "code": "xgi" - }, - { - "name": "Galindan", - "code": "xgl" - }, - { - "name": "Dharumbal", - "code": "xgm" - }, - { - "name": "Guwinmal", - "code": "xgm" - }, - { - "name": "Garza", - "code": "xgr" - }, - { - "name": "Unggumi", - "code": "xgu" - }, - { - "name": "Guwa", - "code": "xgw" - }, - { - "name": "Harami", - "code": "xha" - }, - { - "name": "Hunnic", - "code": "xhc" - }, - { - "name": "Hadrami", - "code": "xhd" - }, - { - "name": "Khetrani", - "code": "xhe" - }, - { - "name": "Xhosa", - "code": "xho" - }, - { - "name": "Hernican", - "code": "xhr" - }, - { - "name": "Hattic", - "code": "xht" - }, - { - "name": "Hurrian", - "code": "xhu" - }, - { - "name": "Khua", - "code": "xhv" - }, - { - "name": "Iberian", - "code": "xib" - }, - { - "name": "Xiri", - "code": "xii" - }, - { - "name": "Illyrian", - "code": "xil" - }, - { - "name": "Xinca", - "code": "xin" - }, - { - "name": "Xiriâna", - "code": "xir" - }, - { - "name": "Kisan", - "code": "xis" - }, - { - "name": "Indus Valley Language", - "code": "xiv" - }, - { - "name": "Xipaya", - "code": "xiy" - }, - { - "name": "Minjungbal", - "code": "xjb" - }, - { - "name": "Jaitmatang", - "code": "xjt" - }, - { - "name": "Kalkoti", - "code": "xka" - }, - { - "name": "Northern Nago", - "code": "xkb" - }, - { - "name": "Kho'ini", - "code": "xkc" - }, - { - "name": "Mendalam Kayan", - "code": "xkd" - }, - { - "name": "Kereho", - "code": "xke" - }, - { - "name": "Khengkha", - "code": "xkf" - }, - { - "name": "Kagoro", - "code": "xkg" - }, - { - "name": "Kenyan Sign Language", - "code": "xki" - }, - { - "name": "Kajali", - "code": "xkj" - }, - { - "name": "Kaco'", - "code": "xkk" - }, - { - "name": "Mainstream Kenyah", - "code": "xkl" - }, - { - "name": "Kayan River Kayan", - "code": "xkn" - }, - { - "name": "Kiorr", - "code": "xko" - }, - { - "name": "Kabatei", - "code": "xkp" - }, - { - "name": "Koroni", - "code": "xkq" - }, - { - "name": "Xakriabá", - "code": "xkr" - }, - { - "name": "Kumbewaha", - "code": "xks" - }, - { - "name": "Kantosi", - "code": "xkt" - }, - { - "name": "Kaamba", - "code": "xku" - }, - { - "name": "Kgalagadi", - "code": "xkv" - }, - { - "name": "Kembra", - "code": "xkw" - }, - { - "name": "Karore", - "code": "xkx" - }, - { - "name": "Uma' Lasan", - "code": "xky" - }, - { - "name": "Kurtokha", - "code": "xkz" - }, - { - "name": "Kamula", - "code": "xla" - }, - { - "name": "Loup B", - "code": "xlb" - }, - { - "name": "Lycian", - "code": "xlc" - }, - { - "name": "Lydian", - "code": "xld" - }, - { - "name": "Lemnian", - "code": "xle" - }, - { - "name": "Ligurian (Ancient)", - "code": "xlg" - }, - { - "name": "Liburnian", - "code": "xli" - }, - { - "name": "Alanic", - "code": "xln" - }, - { - "name": "Loup A", - "code": "xlo" - }, - { - "name": "Lepontic", - "code": "xlp" - }, - { - "name": "Lusitanian", - "code": "xls" - }, - { - "name": "Cuneiform Luwian", - "code": "xlu" - }, - { - "name": "Elymian", - "code": "xly" - }, - { - "name": "Mushungulu", - "code": "xma" - }, - { - "name": "Mbonga", - "code": "xmb" - }, - { - "name": "Makhuwa-Marrevone", - "code": "xmc" - }, - { - "name": "Mbudum", - "code": "xmd" - }, - { - "name": "Median", - "code": "xme" - }, - { - "name": "Mingrelian", - "code": "xmf" - }, - { - "name": "Mengaka", - "code": "xmg" - }, - { - "name": "Kugu-Muminh", - "code": "xmh" - }, - { - "name": "Majera", - "code": "xmj" - }, - { - "name": "Ancient Macedonian", - "code": "xmk" - }, - { - "name": "Malaysian Sign Language", - "code": "xml" - }, - { - "name": "Manado Malay", - "code": "xmm" - }, - { - "name": "Manichaean Middle Persian", - "code": "xmn" - }, - { - "name": "Morerebi", - "code": "xmo" - }, - { - "name": "Kuku-Mu'inh", - "code": "xmp" - }, - { - "name": "Kuku-Mangk", - "code": "xmq" - }, - { - "name": "Meroitic", - "code": "xmr" - }, - { - "name": "Moroccan Sign Language", - "code": "xms" - }, - { - "name": "Matbat", - "code": "xmt" - }, - { - "name": "Kamu", - "code": "xmu" - }, - { - "name": "Antankarana Malagasy", - "code": "xmv" - }, - { - "name": "Tankarana Malagasy", - "code": "xmv" - }, - { - "name": "Tsimihety Malagasy", - "code": "xmw" - }, - { - "name": "Maden", - "code": "xmx" - }, - { - "name": "Mayaguduna", - "code": "xmy" - }, - { - "name": "Mori Bawah", - "code": "xmz" - }, - { - "name": "Ancient North Arabian", - "code": "xna" - }, - { - "name": "Kanakanabu", - "code": "xnb" - }, - { - "name": "Middle Mongolian", - "code": "xng" - }, - { - "name": "Kuanhua", - "code": "xnh" - }, - { - "name": "Ngarigu", - "code": "xni" - }, - { - "name": "Ngoni (Tanzania)", - "code": "xnj" - }, - { - "name": "Nganakarti", - "code": "xnk" - }, - { - "name": "Ngumbarl", - "code": "xnm" - }, - { - "name": "Northern Kankanay", - "code": "xnn" - }, - { - "name": "Anglo-Norman", - "code": "xno" - }, - { - "name": "Ngoni (Mozambique)", - "code": "xnq" - }, - { - "name": "Kangri", - "code": "xnr" - }, - { - "name": "Kanashi", - "code": "xns" - }, - { - "name": "Narragansett", - "code": "xnt" - }, - { - "name": "Nukunul", - "code": "xnu" - }, - { - "name": "Nyiyaparli", - "code": "xny" - }, - { - "name": "Kenzi", - "code": "xnz" - }, - { - "name": "Mattoki", - "code": "xnz" - }, - { - "name": "O'chi'chi'", - "code": "xoc" - }, - { - "name": "Kokoda", - "code": "xod" - }, - { - "name": "Soga", - "code": "xog" - }, - { - "name": "Kominimung", - "code": "xoi" - }, - { - "name": "Xokleng", - "code": "xok" - }, - { - "name": "Komo (Sudan)", - "code": "xom" - }, - { - "name": "Konkomba", - "code": "xon" - }, - { - "name": "Xukurú", - "code": "xoo" - }, - { - "name": "Kopar", - "code": "xop" - }, - { - "name": "Korubo", - "code": "xor" - }, - { - "name": "Kowaki", - "code": "xow" - }, - { - "name": "Pirriya", - "code": "xpa" - }, - { - "name": "Northeastern Tasmanian", - "code": "xpb" - }, - { - "name": "Pyemmairrener", - "code": "xpb" - }, - { - "name": "Pecheneg", - "code": "xpc" - }, - { - "name": "Oyster Bay Tasmanian", - "code": "xpd" - }, - { - "name": "Liberia Kpelle", - "code": "xpe" - }, - { - "name": "Nuenonne", - "code": "xpf" - }, - { - "name": "Southeast Tasmanian", - "code": "xpf" - }, - { - "name": "Phrygian", - "code": "xpg" - }, - { - "name": "North Midlands Tasmanian", - "code": "xph" - }, - { - "name": "Tyerrenoterpanner", - "code": "xph" - }, - { - "name": "Pictish", - "code": "xpi" - }, - { - "name": "Mpalitjanh", - "code": "xpj" - }, - { - "name": "Kulina Pano", - "code": "xpk" - }, - { - "name": "Port Sorell Tasmanian", - "code": "xpl" - }, - { - "name": "Pumpokol", - "code": "xpm" - }, - { - "name": "Kapinawá", - "code": "xpn" - }, - { - "name": "Pochutec", - "code": "xpo" - }, - { - "name": "Puyo-Paekche", - "code": "xpp" - }, - { - "name": "Mohegan-Pequot", - "code": "xpq" - }, - { - "name": "Parthian", - "code": "xpr" - }, - { - "name": "Pisidian", - "code": "xps" - }, - { - "name": "Punthamara", - "code": "xpt" - }, - { - "name": "Punic", - "code": "xpu" - }, - { - "name": "Northern Tasmanian", - "code": "xpv" - }, - { - "name": "Tommeginne", - "code": "xpv" - }, - { - "name": "Northwestern Tasmanian", - "code": "xpw" - }, - { - "name": "Peerapper", - "code": "xpw" - }, - { - "name": "Southwestern Tasmanian", - "code": "xpx" - }, - { - "name": "Toogee", - "code": "xpx" - }, - { - "name": "Puyo", - "code": "xpy" - }, - { - "name": "Bruny Island Tasmanian", - "code": "xpz" - }, - { - "name": "Karakhanid", - "code": "xqa" - }, - { - "name": "Qatabanian", - "code": "xqt" - }, - { - "name": "Krahô", - "code": "xra" - }, - { - "name": "Eastern Karaboro", - "code": "xrb" - }, - { - "name": "Gundungurra", - "code": "xrd" - }, - { - "name": "Kreye", - "code": "xre" - }, - { - "name": "Minang", - "code": "xrg" - }, - { - "name": "Krikati-Timbira", - "code": "xri" - }, - { - "name": "Armazic", - "code": "xrm" - }, - { - "name": "Arin", - "code": "xrn" - }, - { - "name": "Raetic", - "code": "xrr" - }, - { - "name": "Aranama-Tamique", - "code": "xrt" - }, - { - "name": "Marriammu", - "code": "xru" - }, - { - "name": "Karawa", - "code": "xrw" - }, - { - "name": "Sabaean", - "code": "xsa" - }, - { - "name": "Sambal", - "code": "xsb" - }, - { - "name": "Scythian", - "code": "xsc" - }, - { - "name": "Sidetic", - "code": "xsd" - }, - { - "name": "Sempan", - "code": "xse" - }, - { - "name": "Shamang", - "code": "xsh" - }, - { - "name": "Sio", - "code": "xsi" - }, - { - "name": "Subi", - "code": "xsj" - }, - { - "name": "South Slavey", - "code": "xsl" - }, - { - "name": "Kasem", - "code": "xsm" - }, - { - "name": "Sanga (Nigeria)", - "code": "xsn" - }, - { - "name": "Solano", - "code": "xso" - }, - { - "name": "Silopi", - "code": "xsp" - }, - { - "name": "Makhuwa-Saka", - "code": "xsq" - }, - { - "name": "Sherpa", - "code": "xsr" - }, - { - "name": "Assan", - "code": "xss" - }, - { - "name": "Sanumá", - "code": "xsu" - }, - { - "name": "Sudovian", - "code": "xsv" - }, - { - "name": "Saisiyat", - "code": "xsy" - }, - { - "name": "Alcozauca Mixtec", - "code": "xta" - }, - { - "name": "Chazumba Mixtec", - "code": "xtb" - }, - { - "name": "Katcha-Kadugli-Miri", - "code": "xtc" - }, - { - "name": "Diuxi-Tilantongo Mixtec", - "code": "xtd" - }, - { - "name": "Ketengban", - "code": "xte" - }, - { - "name": "Transalpine Gaulish", - "code": "xtg" - }, - { - "name": "Yitha Yitha", - "code": "xth" - }, - { - "name": "Sinicahua Mixtec", - "code": "xti" - }, - { - "name": "San Juan Teita Mixtec", - "code": "xtj" - }, - { - "name": "Tijaltepec Mixtec", - "code": "xtl" - }, - { - "name": "Magdalena Peñasco Mixtec", - "code": "xtm" - }, - { - "name": "Northern Tlaxiaco Mixtec", - "code": "xtn" - }, - { - "name": "Tokharian A", - "code": "xto" - }, - { - "name": "San Miguel Piedras Mixtec", - "code": "xtp" - }, - { - "name": "Tumshuqese", - "code": "xtq" - }, - { - "name": "Early Tripuri", - "code": "xtr" - }, - { - "name": "Sindihui Mixtec", - "code": "xts" - }, - { - "name": "Tacahua Mixtec", - "code": "xtt" - }, - { - "name": "Cuyamecalco Mixtec", - "code": "xtu" - }, - { - "name": "Thawa", - "code": "xtv" - }, - { - "name": "Tawandê", - "code": "xtw" - }, - { - "name": "Yoloxochitl Mixtec", - "code": "xty" - }, - { - "name": "Alu Kurumba", - "code": "xua" - }, - { - "name": "Betta Kurumba", - "code": "xub" - }, - { - "name": "Umiida", - "code": "xud" - }, - { - "name": "Kunigami", - "code": "xug" - }, - { - "name": "Jennu Kurumba", - "code": "xuj" - }, - { - "name": "Ngunawal", - "code": "xul" - }, - { - "name": "Nunukul", - "code": "xul" - }, - { - "name": "Umbrian", - "code": "xum" - }, - { - "name": "Unggaranggu", - "code": "xun" - }, - { - "name": "Kuo", - "code": "xuo" - }, - { - "name": "Upper Umpqua", - "code": "xup" - }, - { - "name": "Urartian", - "code": "xur" - }, - { - "name": "Kuthant", - "code": "xut" - }, - { - "name": "Khwedam", - "code": "xuu" - }, - { - "name": "Kxoe", - "code": "xuu" - }, - { - "name": "Venetic", - "code": "xve" - }, - { - "name": "Kamviri", - "code": "xvi" - }, - { - "name": "Vandalic", - "code": "xvn" - }, - { - "name": "Volscian", - "code": "xvo" - }, - { - "name": "Vestinian", - "code": "xvs" - }, - { - "name": "Kwaza", - "code": "xwa" - }, - { - "name": "Woccon", - "code": "xwc" - }, - { - "name": "Wadi Wadi", - "code": "xwd" - }, - { - "name": "Xwela Gbe", - "code": "xwe" - }, - { - "name": "Kwegu", - "code": "xwg" - }, - { - "name": "Wajuk", - "code": "xwj" - }, - { - "name": "Wangkumara", - "code": "xwk" - }, - { - "name": "Western Xwla Gbe", - "code": "xwl" - }, - { - "name": "Written Oirat", - "code": "xwo" - }, - { - "name": "Kwerba Mamberamo", - "code": "xwr" - }, - { - "name": "Wotjobaluk", - "code": "xwt" - }, - { - "name": "Wemba Wemba", - "code": "xww" - }, - { - "name": "Boro (Ghana)", - "code": "xxb" - }, - { - "name": "Ke'o", - "code": "xxk" - }, - { - "name": "Minkin", - "code": "xxm" - }, - { - "name": "Koropó", - "code": "xxr" - }, - { - "name": "Tambora", - "code": "xxt" - }, - { - "name": "Yaygir", - "code": "xya" - }, - { - "name": "Yandjibara", - "code": "xyb" - }, - { - "name": "Mayi-Yapi", - "code": "xyj" - }, - { - "name": "Mayi-Kulan", - "code": "xyk" - }, - { - "name": "Yalakalore", - "code": "xyl" - }, - { - "name": "Mayi-Thakurti", - "code": "xyt" - }, - { - "name": "Yorta Yorta", - "code": "xyy" - }, - { - "name": "Zhang-Zhung", - "code": "xzh" - }, - { - "name": "Zemgalian", - "code": "xzm" - }, - { - "name": "Ancient Zapotec", - "code": "xzp" - }, - { - "name": "Yaminahua", - "code": "yaa" - }, - { - "name": "Yuhup", - "code": "yab" - }, - { - "name": "Pass Valley Yali", - "code": "yac" - }, - { - "name": "Yagua", - "code": "yad" - }, - { - "name": "Pumé", - "code": "yae" - }, - { - "name": "Yaka (Democratic Republic of Congo)", - "code": "yaf" - }, - { - "name": "Yámana", - "code": "yag" - }, - { - "name": "Yazgulyam", - "code": "yah" - }, - { - "name": "Yagnobi", - "code": "yai" - }, - { - "name": "Banda-Yangere", - "code": "yaj" - }, - { - "name": "Yakama", - "code": "yak" - }, - { - "name": "Yalunka", - "code": "yal" - }, - { - "name": "Yamba", - "code": "yam" - }, - { - "name": "Mayangna", - "code": "yan" - }, - { - "name": "Yao", - "code": "yao" - }, - { - "name": "Yapese", - "code": "yap" - }, - { - "name": "Yaqui", - "code": "yaq" - }, - { - "name": "Yabarana", - "code": "yar" - }, - { - "name": "Nugunu (Cameroon)", - "code": "yas" - }, - { - "name": "Yambeta", - "code": "yat" - }, - { - "name": "Yuwana", - "code": "yau" - }, - { - "name": "Yangben", - "code": "yav" - }, - { - "name": "Yawalapití", - "code": "yaw" - }, - { - "name": "Yauma", - "code": "yax" - }, - { - "name": "Agwagwune", - "code": "yay" - }, - { - "name": "Lokaa", - "code": "yaz" - }, - { - "name": "Yala", - "code": "yba" - }, - { - "name": "Yemba", - "code": "ybb" - }, - { - "name": "West Yugur", - "code": "ybe" - }, - { - "name": "Yakha", - "code": "ybh" - }, - { - "name": "Yamphu", - "code": "ybi" - }, - { - "name": "Hasha", - "code": "ybj" - }, - { - "name": "Bokha", - "code": "ybk" - }, - { - "name": "Yukuben", - "code": "ybl" - }, - { - "name": "Yaben", - "code": "ybm" - }, - { - "name": "Yabaâna", - "code": "ybn" - }, - { - "name": "Yabong", - "code": "ybo" - }, - { - "name": "Yawiyo", - "code": "ybx" - }, - { - "name": "Yaweyuha", - "code": "yby" - }, - { - "name": "Chesu", - "code": "ych" - }, - { - "name": "Lolopo", - "code": "ycl" - }, - { - "name": "Yucuna", - "code": "ycn" - }, - { - "name": "Chepya", - "code": "ycp" - }, - { - "name": "Yanda", - "code": "yda" - }, - { - "name": "Eastern Yiddish", - "code": "ydd" - }, - { - "name": "Yangum Dey", - "code": "yde" - }, - { - "name": "Yidgha", - "code": "ydg" - }, - { - "name": "Yoidik", - "code": "ydk" - }, - { - "name": "Ravula", - "code": "yea" - }, - { - "name": "Yeniche", - "code": "yec" - }, - { - "name": "Yimas", - "code": "yee" - }, - { - "name": "Yeni", - "code": "yei" - }, - { - "name": "Yevanic", - "code": "yej" - }, - { - "name": "Yela", - "code": "yel" - }, - { - "name": "Tarok", - "code": "yer" - }, - { - "name": "Nyankpa", - "code": "yes" - }, - { - "name": "Yetfa", - "code": "yet" - }, - { - "name": "Yerukula", - "code": "yeu" - }, - { - "name": "Yapunda", - "code": "yev" - }, - { - "name": "Yeyi", - "code": "yey" - }, - { - "name": "Malyangapa", - "code": "yga" - }, - { - "name": "Yiningayi", - "code": "ygi" - }, - { - "name": "Yangum Gel", - "code": "ygl" - }, - { - "name": "Yagomi", - "code": "ygm" - }, - { - "name": "Gepo", - "code": "ygp" - }, - { - "name": "Yagaria", - "code": "ygr" - }, - { - "name": "Yolŋu Sign Language", - "code": "ygs" - }, - { - "name": "Yugul", - "code": "ygu" - }, - { - "name": "Yagwoia", - "code": "ygw" - }, - { - "name": "Baha Buyang", - "code": "yha" - }, - { - "name": "Judeo-Iraqi Arabic", - "code": "yhd" - }, - { - "name": "Hlepho Phowa", - "code": "yhl" - }, - { - "name": "Yan-nhaŋu Sign Language", - "code": "yhs" - }, - { - "name": "Yinggarda", - "code": "yia" - }, - { - "name": "Yiddish", - "code": "yid" - }, - { - "name": "Ache", - "code": "yif" - }, - { - "name": "Wusa Nasu", - "code": "yig" - }, - { - "name": "Western Yiddish", - "code": "yih" - }, - { - "name": "Yidiny", - "code": "yii" - }, - { - "name": "Yindjibarndi", - "code": "yij" - }, - { - "name": "Dongshanba Lalo", - "code": "yik" - }, - { - "name": "Yindjilandji", - "code": "yil" - }, - { - "name": "Yimchungru Naga", - "code": "yim" - }, - { - "name": "Riang Lai", - "code": "yin" - }, - { - "name": "Yinchia", - "code": "yin" - }, - { - "name": "Pholo", - "code": "yip" - }, - { - "name": "Miqie", - "code": "yiq" - }, - { - "name": "North Awyu", - "code": "yir" - }, - { - "name": "Yis", - "code": "yis" - }, - { - "name": "Eastern Lalu", - "code": "yit" - }, - { - "name": "Awu", - "code": "yiu" - }, - { - "name": "Northern Nisu", - "code": "yiv" - }, - { - "name": "Axi Yi", - "code": "yix" - }, - { - "name": "Azhe", - "code": "yiz" - }, - { - "name": "Yakan", - "code": "yka" - }, - { - "name": "Northern Yukaghir", - "code": "ykg" - }, - { - "name": "Yoke", - "code": "yki" - }, - { - "name": "Yakaikeke", - "code": "ykk" - }, - { - "name": "Khlula", - "code": "ykl" - }, - { - "name": "Kap", - "code": "ykm" - }, - { - "name": "Kua-nsi", - "code": "ykn" - }, - { - "name": "Yasa", - "code": "yko" - }, - { - "name": "Yekora", - "code": "ykr" - }, - { - "name": "Kathu", - "code": "ykt" - }, - { - "name": "Kuamasi", - "code": "yku" - }, - { - "name": "Yakoma", - "code": "yky" - }, - { - "name": "Yaul", - "code": "yla" - }, - { - "name": "Yaleba", - "code": "ylb" - }, - { - "name": "Yele", - "code": "yle" - }, - { - "name": "Yelogu", - "code": "ylg" - }, - { - "name": "Angguruk Yali", - "code": "yli" - }, - { - "name": "Yil", - "code": "yll" - }, - { - "name": "Limi", - "code": "ylm" - }, - { - "name": "Langnian Buyang", - "code": "yln" - }, - { - "name": "Naluo Yi", - "code": "ylo" - }, - { - "name": "Yalarnnga", - "code": "ylr" - }, - { - "name": "Aribwaung", - "code": "ylu" - }, - { - "name": "Nyâlayu", - "code": "yly" - }, - { - "name": "Nyelâyu", - "code": "yly" - }, - { - "name": "Yambes", - "code": "ymb" - }, - { - "name": "Southern Muji", - "code": "ymc" - }, - { - "name": "Muda", - "code": "ymd" - }, - { - "name": "Yameo", - "code": "yme" - }, - { - "name": "Yamongeri", - "code": "ymg" - }, - { - "name": "Mili", - "code": "ymh" - }, - { - "name": "Moji", - "code": "ymi" - }, - { - "name": "Makwe", - "code": "ymk" - }, - { - "name": "Iamalele", - "code": "yml" - }, - { - "name": "Maay", - "code": "ymm" - }, - { - "name": "Sunum", - "code": "ymn" - }, - { - "name": "Yamna", - "code": "ymn" - }, - { - "name": "Yangum Mon", - "code": "ymo" - }, - { - "name": "Yamap", - "code": "ymp" - }, - { - "name": "Qila Muji", - "code": "ymq" - }, - { - "name": "Malasar", - "code": "ymr" - }, - { - "name": "Mysian", - "code": "yms" - }, - { - "name": "Northern Muji", - "code": "ymx" - }, - { - "name": "Muzi", - "code": "ymz" - }, - { - "name": "Aluo", - "code": "yna" - }, - { - "name": "Yandruwandha", - "code": "ynd" - }, - { - "name": "Lang'e", - "code": "yne" - }, - { - "name": "Yango", - "code": "yng" - }, - { - "name": "Naukan Yupik", - "code": "ynk" - }, - { - "name": "Yangulam", - "code": "ynl" - }, - { - "name": "Yana", - "code": "ynn" - }, - { - "name": "Yong", - "code": "yno" - }, - { - "name": "Yendang", - "code": "ynq" - }, - { - "name": "Yansi", - "code": "yns" - }, - { - "name": "Yahuna", - "code": "ynu" - }, - { - "name": "Yoba", - "code": "yob" - }, - { - "name": "Yogad", - "code": "yog" - }, - { - "name": "Yonaguni", - "code": "yoi" - }, - { - "name": "Yokuts", - "code": "yok" - }, - { - "name": "Yola", - "code": "yol" - }, - { - "name": "Yombe", - "code": "yom" - }, - { - "name": "Yongkom", - "code": "yon" - }, - { - "name": "Yoruba", - "code": "yor" - }, - { - "name": "Yotti", - "code": "yot" - }, - { - "name": "Yoron", - "code": "yox" - }, - { - "name": "Yoy", - "code": "yoy" - }, - { - "name": "Phala", - "code": "ypa" - }, - { - "name": "Labo Phowa", - "code": "ypb" - }, - { - "name": "Phola", - "code": "ypg" - }, - { - "name": "Phupha", - "code": "yph" - }, - { - "name": "Phuma", - "code": "ypm" - }, - { - "name": "Ani Phowa", - "code": "ypn" - }, - { - "name": "Alo Phola", - "code": "ypo" - }, - { - "name": "Phupa", - "code": "ypp" - }, - { - "name": "Phuza", - "code": "ypz" - }, - { - "name": "Yerakai", - "code": "yra" - }, - { - "name": "Yareba", - "code": "yrb" - }, - { - "name": "Yaouré", - "code": "yre" - }, - { - "name": "Nenets", - "code": "yrk" - }, - { - "name": "Nhengatu", - "code": "yrl" - }, - { - "name": "Yirrk-Mel", - "code": "yrm" - }, - { - "name": "Yerong", - "code": "yrn" - }, - { - "name": "Yaroamë", - "code": "yro" - }, - { - "name": "Yarsun", - "code": "yrs" - }, - { - "name": "Yarawata", - "code": "yrw" - }, - { - "name": "Yarluyandi", - "code": "yry" - }, - { - "name": "Yassic", - "code": "ysc" - }, - { - "name": "Samatao", - "code": "ysd" - }, - { - "name": "Sonaga", - "code": "ysg" - }, - { - "name": "Yugoslavian Sign Language", - "code": "ysl" - }, - { - "name": "Myanmar Sign Language", - "code": "ysm" - }, - { - "name": "Sani", - "code": "ysn" - }, - { - "name": "Nisi (China)", - "code": "yso" - }, - { - "name": "Southern Lolopo", - "code": "ysp" - }, - { - "name": "Sirenik Yupik", - "code": "ysr" - }, - { - "name": "Yessan-Mayo", - "code": "yss" - }, - { - "name": "Sanie", - "code": "ysy" - }, - { - "name": "Talu", - "code": "yta" - }, - { - "name": "Tanglang", - "code": "ytl" - }, - { - "name": "Thopho", - "code": "ytp" - }, - { - "name": "Yout Wam", - "code": "ytw" - }, - { - "name": "Yatay", - "code": "yty" - }, - { - "name": "Yucatec Maya", - "code": "yua" - }, - { - "name": "Yucateco", - "code": "yua" - }, - { - "name": "Yugambal", - "code": "yub" - }, - { - "name": "Yuchi", - "code": "yuc" - }, - { - "name": "Judeo-Tripolitanian Arabic", - "code": "yud" - }, - { - "name": "Yue Chinese", - "code": "yue" - }, - { - "name": "Havasupai-Walapai-Yavapai", - "code": "yuf" - }, - { - "name": "Yug", - "code": "yug" - }, - { - "name": "Yurutí", - "code": "yui" - }, - { - "name": "Karkar-Yuri", - "code": "yuj" - }, - { - "name": "Yuki", - "code": "yuk" - }, - { - "name": "Yulu", - "code": "yul" - }, - { - "name": "Quechan", - "code": "yum" - }, - { - "name": "Bena (Nigeria)", - "code": "yun" - }, - { - "name": "Yukpa", - "code": "yup" - }, - { - "name": "Yuqui", - "code": "yuq" - }, - { - "name": "Yurok", - "code": "yur" - }, - { - "name": "Yopno", - "code": "yut" - }, - { - "name": "Yau (Morobe Province)", - "code": "yuw" - }, - { - "name": "Southern Yukaghir", - "code": "yux" - }, - { - "name": "East Yugur", - "code": "yuy" - }, - { - "name": "Yuracare", - "code": "yuz" - }, - { - "name": "Yawa", - "code": "yva" - }, - { - "name": "Yavitero", - "code": "yvt" - }, - { - "name": "Kalou", - "code": "ywa" - }, - { - "name": "Yinhawangka", - "code": "ywg" - }, - { - "name": "Western Lalu", - "code": "ywl" - }, - { - "name": "Yawanawa", - "code": "ywn" - }, - { - "name": "Wuding-Luquan Yi", - "code": "ywq" - }, - { - "name": "Yawuru", - "code": "ywr" - }, - { - "name": "Central Lalo", - "code": "ywt" - }, - { - "name": "Xishanba Lalo", - "code": "ywt" - }, - { - "name": "Wumeng Nasu", - "code": "ywu" - }, - { - "name": "Yawarawarga", - "code": "yww" - }, - { - "name": "Mayawali", - "code": "yxa" - }, - { - "name": "Yagara", - "code": "yxg" - }, - { - "name": "Yardliyawarra", - "code": "yxl" - }, - { - "name": "Yinwum", - "code": "yxm" - }, - { - "name": "Yuyu", - "code": "yxu" - }, - { - "name": "Yabula Yabula", - "code": "yxy" - }, - { - "name": "Yir Yoront", - "code": "yyr" - }, - { - "name": "Yau (Sandaun Province)", - "code": "yyu" - }, - { - "name": "Ayizi", - "code": "yyz" - }, - { - "name": "E'ma Buyang", - "code": "yzg" - }, - { - "name": "Zokhuo", - "code": "yzk" - }, - { - "name": "Sierra de Juárez Zapotec", - "code": "zaa" - }, - { - "name": "San Juan Guelavía Zapotec", - "code": "zab" - }, - { - "name": "Western Tlacolula Valley Zapotec", - "code": "zab" - }, - { - "name": "Ocotlán Zapotec", - "code": "zac" - }, - { - "name": "Cajonos Zapotec", - "code": "zad" - }, - { - "name": "Yareni Zapotec", - "code": "zae" - }, - { - "name": "Ayoquesco Zapotec", - "code": "zaf" - }, - { - "name": "Zaghawa", - "code": "zag" - }, - { - "name": "Zangwal", - "code": "zah" - }, - { - "name": "Isthmus Zapotec", - "code": "zai" - }, - { - "name": "Zaramo", - "code": "zaj" - }, - { - "name": "Zanaki", - "code": "zak" - }, - { - "name": "Zauzou", - "code": "zal" - }, - { - "name": "Miahuatlán Zapotec", - "code": "zam" - }, - { - "name": "Ozolotepec Zapotec", - "code": "zao" - }, - { - "name": "Zapotec", - "code": "zap" - }, - { - "name": "Aloápam Zapotec", - "code": "zaq" - }, - { - "name": "Rincón Zapotec", - "code": "zar" - }, - { - "name": "Santo Domingo Albarradas Zapotec", - "code": "zas" - }, - { - "name": "Tabaa Zapotec", - "code": "zat" - }, - { - "name": "Zangskari", - "code": "zau" - }, - { - "name": "Yatzachi Zapotec", - "code": "zav" - }, - { - "name": "Mitla Zapotec", - "code": "zaw" - }, - { - "name": "Xadani Zapotec", - "code": "zax" - }, - { - "name": "Zaysete", - "code": "zay" - }, - { - "name": "Zayse-Zergulla", - "code": "zay" - }, - { - "name": "Zari", - "code": "zaz" - }, - { - "name": "Balaibalan", - "code": "zba" - }, - { - "name": "Central Berawan", - "code": "zbc" - }, - { - "name": "East Berawan", - "code": "zbe" - }, - { - "name": "Bliss", - "code": "zbl" - }, - { - "name": "Blissymbolics", - "code": "zbl" - }, - { - "name": "Blissymbols", - "code": "zbl" - }, - { - "name": "Batui", - "code": "zbt" - }, - { - "name": "Bu (Bauchi State)", - "code": "zbu" - }, - { - "name": "West Berawan", - "code": "zbw" - }, - { - "name": "Coatecas Altas Zapotec", - "code": "zca" - }, - { - "name": "Central Hongshuihe Zhuang", - "code": "zch" - }, - { - "name": "Ngazidja Comorian", - "code": "zdj" - }, - { - "name": "Zeeuws", - "code": "zea" - }, - { - "name": "Zenag", - "code": "zeg" - }, - { - "name": "Eastern Hongshuihe Zhuang", - "code": "zeh" - }, - { - "name": "Zenaga", - "code": "zen" - }, - { - "name": "Kinga", - "code": "zga" - }, - { - "name": "Guibei Zhuang", - "code": "zgb" - }, - { - "name": "Standard Moroccan Tamazight", - "code": "zgh" - }, - { - "name": "Minz Zhuang", - "code": "zgm" - }, - { - "name": "Guibian Zhuang", - "code": "zgn" - }, - { - "name": "Magori", - "code": "zgr" - }, - { - "name": "Chuang", - "code": "zha" - }, - { - "name": "Zhuang", - "code": "zha" - }, - { - "name": "Zhaba", - "code": "zhb" - }, - { - "name": "Dai Zhuang", - "code": "zhd" - }, - { - "name": "Zhire", - "code": "zhi" - }, - { - "name": "Nong Zhuang", - "code": "zhn" - }, - { - "name": "Chinese", - "code": "zho" - }, - { - "name": "Zhoa", - "code": "zhw" - }, - { - "name": "Zia", - "code": "zia" - }, - { - "name": "Zimbabwe Sign Language", - "code": "zib" - }, - { - "name": "Zimakani", - "code": "zik" - }, - { - "name": "Zialo", - "code": "zil" - }, - { - "name": "Mesme", - "code": "zim" - }, - { - "name": "Zinza", - "code": "zin" - }, - { - "name": "Zigula", - "code": "ziw" - }, - { - "name": "Zizilivakan", - "code": "ziz" - }, - { - "name": "Kaimbulawa", - "code": "zka" - }, - { - "name": "Koibal", - "code": "zkb" - }, - { - "name": "Kadu", - "code": "zkd" - }, - { - "name": "Koguryo", - "code": "zkg" - }, - { - "name": "Khorezmian", - "code": "zkh" - }, - { - "name": "Karankawa", - "code": "zkk" - }, - { - "name": "Kanan", - "code": "zkn" - }, - { - "name": "Kott", - "code": "zko" - }, - { - "name": "São Paulo Kaingáng", - "code": "zkp" - }, - { - "name": "Zakhring", - "code": "zkr" - }, - { - "name": "Kitan", - "code": "zkt" - }, - { - "name": "Kaurna", - "code": "zku" - }, - { - "name": "Krevinian", - "code": "zkv" - }, - { - "name": "Khazar", - "code": "zkz" - }, - { - "name": "Zula", - "code": "zla" - }, - { - "name": "Liujiang Zhuang", - "code": "zlj" - }, - { - "name": "Malay (individual language)", - "code": "zlm" - }, - { - "name": "Lianshan Zhuang", - "code": "zln" - }, - { - "name": "Liuqian Zhuang", - "code": "zlq" - }, - { - "name": "Manda (Australia)", - "code": "zma" - }, - { - "name": "Zimba", - "code": "zmb" - }, - { - "name": "Margany", - "code": "zmc" - }, - { - "name": "Maridan", - "code": "zmd" - }, - { - "name": "Mangerr", - "code": "zme" - }, - { - "name": "Mfinu", - "code": "zmf" - }, - { - "name": "Marti Ke", - "code": "zmg" - }, - { - "name": "Makolkol", - "code": "zmh" - }, - { - "name": "Negeri Sembilan Malay", - "code": "zmi" - }, - { - "name": "Maridjabin", - "code": "zmj" - }, - { - "name": "Mandandanyi", - "code": "zmk" - }, - { - "name": "Matngala", - "code": "zml" - }, - { - "name": "Marimanindji", - "code": "zmm" - }, - { - "name": "Marramaninyshi", - "code": "zmm" - }, - { - "name": "Mbangwe", - "code": "zmn" - }, - { - "name": "Molo", - "code": "zmo" - }, - { - "name": "Mpuono", - "code": "zmp" - }, - { - "name": "Mituku", - "code": "zmq" - }, - { - "name": "Maranunggu", - "code": "zmr" - }, - { - "name": "Mbesa", - "code": "zms" - }, - { - "name": "Maringarr", - "code": "zmt" - }, - { - "name": "Muruwari", - "code": "zmu" - }, - { - "name": "Mbariman-Gudhinma", - "code": "zmv" - }, - { - "name": "Mbo (Democratic Republic of Congo)", - "code": "zmw" - }, - { - "name": "Bomitaba", - "code": "zmx" - }, - { - "name": "Mariyedi", - "code": "zmy" - }, - { - "name": "Mbandja", - "code": "zmz" - }, - { - "name": "Zan Gula", - "code": "zna" - }, - { - "name": "Zande (individual language)", - "code": "zne" - }, - { - "name": "Mang", - "code": "zng" - }, - { - "name": "Manangkari", - "code": "znk" - }, - { - "name": "Mangas", - "code": "zns" - }, - { - "name": "Copainalá Zoque", - "code": "zoc" - }, - { - "name": "Chimalapa Zoque", - "code": "zoh" - }, - { - "name": "Zou", - "code": "zom" - }, - { - "name": "Asunción Mixtepec Zapotec", - "code": "zoo" - }, - { - "name": "Tabasco Zoque", - "code": "zoq" - }, - { - "name": "Rayón Zoque", - "code": "zor" - }, - { - "name": "Francisco León Zoque", - "code": "zos" - }, - { - "name": "Lachiguiri Zapotec", - "code": "zpa" - }, - { - "name": "Yautepec Zapotec", - "code": "zpb" - }, - { - "name": "Choapan Zapotec", - "code": "zpc" - }, - { - "name": "Southeastern Ixtlán Zapotec", - "code": "zpd" - }, - { - "name": "Petapa Zapotec", - "code": "zpe" - }, - { - "name": "San Pedro Quiatoni Zapotec", - "code": "zpf" - }, - { - "name": "Guevea De Humboldt Zapotec", - "code": "zpg" - }, - { - "name": "Totomachapan Zapotec", - "code": "zph" - }, - { - "name": "Santa María Quiegolani Zapotec", - "code": "zpi" - }, - { - "name": "Quiavicuzas Zapotec", - "code": "zpj" - }, - { - "name": "Tlacolulita Zapotec", - "code": "zpk" - }, - { - "name": "Lachixío Zapotec", - "code": "zpl" - }, - { - "name": "Mixtepec Zapotec", - "code": "zpm" - }, - { - "name": "Santa Inés Yatzechi Zapotec", - "code": "zpn" - }, - { - "name": "Amatlán Zapotec", - "code": "zpo" - }, - { - "name": "El Alto Zapotec", - "code": "zpp" - }, - { - "name": "Zoogocho Zapotec", - "code": "zpq" - }, - { - "name": "Santiago Xanica Zapotec", - "code": "zpr" - }, - { - "name": "Coatlán Zapotec", - "code": "zps" - }, - { - "name": "San Vicente Coatlán Zapotec", - "code": "zpt" - }, - { - "name": "Yalálag Zapotec", - "code": "zpu" - }, - { - "name": "Chichicapan Zapotec", - "code": "zpv" - }, - { - "name": "Zaniza Zapotec", - "code": "zpw" - }, - { - "name": "San Baltazar Loxicha Zapotec", - "code": "zpx" - }, - { - "name": "Mazaltepec Zapotec", - "code": "zpy" - }, - { - "name": "Texmelucan Zapotec", - "code": "zpz" - }, - { - "name": "Qiubei Zhuang", - "code": "zqe" - }, - { - "name": "Kara (Korea)", - "code": "zra" - }, - { - "name": "Mirgan", - "code": "zrg" - }, - { - "name": "Zerenkel", - "code": "zrn" - }, - { - "name": "Záparo", - "code": "zro" - }, - { - "name": "Zarphatic", - "code": "zrp" - }, - { - "name": "Mairasi", - "code": "zrs" - }, - { - "name": "Sarasira", - "code": "zsa" - }, - { - "name": "Kaskean", - "code": "zsk" - }, - { - "name": "Zambian Sign Language", - "code": "zsl" - }, - { - "name": "Standard Malay", - "code": "zsm" - }, - { - "name": "Southern Rincon Zapotec", - "code": "zsr" - }, - { - "name": "Sukurum", - "code": "zsu" - }, - { - "name": "Elotepec Zapotec", - "code": "zte" - }, - { - "name": "Xanaguía Zapotec", - "code": "ztg" - }, - { - "name": "Lapaguía-Guivini Zapotec", - "code": "ztl" - }, - { - "name": "San Agustín Mixtepec Zapotec", - "code": "ztm" - }, - { - "name": "Santa Catarina Albarradas Zapotec", - "code": "ztn" - }, - { - "name": "Loxicha Zapotec", - "code": "ztp" - }, - { - "name": "Quioquitani-Quierí Zapotec", - "code": "ztq" - }, - { - "name": "Tilquiapan Zapotec", - "code": "zts" - }, - { - "name": "Tejalapan Zapotec", - "code": "ztt" - }, - { - "name": "Güilá Zapotec", - "code": "ztu" - }, - { - "name": "Zaachila Zapotec", - "code": "ztx" - }, - { - "name": "Yatee Zapotec", - "code": "zty" - }, - { - "name": "Zeem", - "code": "zua" - }, - { - "name": "Tokano", - "code": "zuh" - }, - { - "name": "Zulu", - "code": "zul" - }, - { - "name": "Kumzari", - "code": "zum" - }, - { - "name": "Zuni", - "code": "zun" - }, - { - "name": "Zumaya", - "code": "zuy" - }, - { - "name": "Zay", - "code": "zwa" - }, - { - "name": "No linguistic content", - "code": "zxx" - }, - { - "name": "Not applicable", - "code": "zxx" - }, - { - "name": "Yongbei Zhuang", - "code": "zyb" - }, - { - "name": "Yang Zhuang", - "code": "zyg" - }, - { - "name": "Youjiang Zhuang", - "code": "zyj" - }, - { - "name": "Yongnan Zhuang", - "code": "zyn" - }, - { - "name": "Zyphe Chin", - "code": "zyp" - }, - { - "name": "Dimili", - "code": "zza" - }, - { - "name": "Dimli (macrolanguage)", - "code": "zza" - }, - { - "name": "Kirdki", - "code": "zza" - }, - { - "name": "Kirmanjki (macrolanguage)", - "code": "zza" - }, - { - "name": "Zaza", - "code": "zza" - }, - { - "name": "Zazaki", - "code": "zza" - }, - { - "name": "Zuojiang Zhuang", - "code": "zzj" - } -] diff --git a/scripts/data/regions.json b/scripts/data/regions.json deleted file mode 100644 index 64a7bd121..000000000 --- a/scripts/data/regions.json +++ /dev/null @@ -1,1094 +0,0 @@ -{ - "AFR": { - "name": "Africa", - "code": "AFR", - "country_codes": [ - "AO", - "BF", - "BI", - "BJ", - "BW", - "CD", - "CF", - "CG", - "CI", - "CM", - "CV", - "DJ", - "DZ", - "EG", - "EH", - "ER", - "ET", - "GA", - "GH", - "GM", - "GN", - "GQ", - "GW", - "KE", - "KM", - "LR", - "LS", - "LY", - "MA", - "MG", - "ML", - "MR", - "MU", - "MW", - "MZ", - "NA", - "NE", - "NG", - "RE", - "RW", - "SC", - "SD", - "SH", - "SL", - "SN", - "SO", - "SS", - "ST", - "SZ", - "TD", - "TF", - "TG", - "TN", - "TZ", - "UG", - "YT", - "ZA", - "ZM", - "ZW" - ] - }, - "AMER": { - "name": "Americas", - "code": "AMER", - "country_codes": [ - "AG", - "AI", - "AR", - "AW", - "BB", - "BL", - "BM", - "BO", - "BR", - "BS", - "BV", - "BZ", - "CA", - "CL", - "CO", - "CR", - "CU", - "CW", - "DM", - "DO", - "EC", - "FK", - "GD", - "GF", - "GL", - "GP", - "GS", - "GT", - "GY", - "HN", - "HT", - "JM", - "KN", - "KY", - "LC", - "MF", - "MQ", - "MS", - "MX", - "NI", - "PA", - "PE", - "PM", - "PR", - "PY", - "SR", - "SV", - "SX", - "TC", - "TT", - "US", - "UY", - "VC", - "VE", - "VG", - "VI" - ] - }, - "APAC": { - "name": "Asia-Pacific", - "code": "APAC", - "country_codes": [ - "AF", - "AS", - "AU", - "BD", - "BN", - "BT", - "CK", - "CN", - "FJ", - "FM", - "GU", - "ID", - "IN", - "JP", - "KH", - "KI", - "KP", - "KR", - "LA", - "LK", - "MH", - "MM", - "MN", - "MP", - "MV", - "MY", - "NC", - "NF", - "NP", - "NR", - "NU", - "NZ", - "PF", - "PG", - "PH", - "PK", - "PN", - "PW", - "SB", - "SG", - "TH", - "TK", - "TL", - "TO", - "TV", - "TW", - "VN", - "VU", - "WF", - "WS" - ] - }, - "ARAB": { - "name": "Arab world", - "code": "ARAB", - "country_codes": [ - "AE", - "BH", - "DJ", - "DZ", - "EG", - "IQ", - "JO", - "KM", - "KW", - "LB", - "LY", - "MA", - "MR", - "OM", - "PS", - "QA", - "SA", - "SD", - "SO", - "SY", - "TN", - "YE" - ] - }, - "ASIA": { - "name": "Asia", - "code": "ASIA", - "country_codes": [ - "AE", - "AF", - "AM", - "AZ", - "BD", - "BH", - "BN", - "BT", - "CN", - "CY", - "GE", - "ID", - "IL", - "IN", - "IQ", - "IR", - "JO", - "JP", - "KG", - "KH", - "KP", - "KR", - "KW", - "KZ", - "LA", - "LB", - "LK", - "MM", - "MN", - "MV", - "MY", - "NP", - "OM", - "PH", - "PK", - "PS", - "QA", - "RU", - "SA", - "SG", - "SY", - "TH", - "TJ", - "TL", - "TM", - "TR", - "TW", - "UZ", - "VN", - "YE" - ] - }, - "CARIB": { - "name": "Caribbean", - "code": "CARIB", - "country_codes": [ - "AG", - "AI", - "AW", - "BB", - "BL", - "BS", - "CU", - "CW", - "DM", - "DO", - "GD", - "GP", - "HT", - "JM", - "KN", - "KY", - "LC", - "MF", - "MQ", - "MS", - "PR", - "SX", - "TC", - "TT", - "VC", - "VG", - "VI" - ] - }, - "CAS": { - "name": "Central Asia", - "code": "CAS", - "country_codes": ["KG", "KZ", "TJ", "TM", "UZ"] - }, - "CIS": { - "name": "Commonwealth of Independent States", - "code": "CIS", - "country_codes": ["AM", "AZ", "BY", "KG", "KZ", "MD", "RU", "TJ", "UZ"] - }, - "EMEA": { - "name": "Europe, the Middle East and Africa", - "code": "EMEA", - "country_codes": [ - "AD", - "AE", - "AL", - "AM", - "AO", - "AT", - "AZ", - "BA", - "BE", - "BF", - "BG", - "BH", - "BI", - "BJ", - "BW", - "BY", - "CD", - "CF", - "CG", - "CH", - "CI", - "CM", - "CV", - "CY", - "CZ", - "DE", - "DJ", - "DK", - "DZ", - "EE", - "EG", - "EH", - "ER", - "ES", - "ET", - "FI", - "FR", - "GA", - "GE", - "GH", - "GM", - "GN", - "GQ", - "GR", - "GW", - "HR", - "HU", - "IE", - "IQ", - "IR", - "IS", - "IT", - "JO", - "KE", - "KM", - "KW", - "KZ", - "LB", - "LI", - "LR", - "LS", - "LT", - "LU", - "LV", - "LY", - "MA", - "MC", - "MD", - "ME", - "MG", - "MK", - "ML", - "MR", - "MT", - "MU", - "MW", - "MZ", - "NA", - "NE", - "NG", - "NL", - "NO", - "OM", - "PL", - "PS", - "PT", - "QA", - "RE", - "RO", - "RS", - "RU", - "RW", - "SA", - "SC", - "SD", - "SE", - "SH", - "SI", - "SK", - "SL", - "SM", - "SN", - "SO", - "SS", - "ST", - "SY", - "SZ", - "TD", - "TF", - "TG", - "TN", - "TR", - "TZ", - "UA", - "UG", - "UK", - "VA", - "YE", - "YT", - "ZA", - "ZM", - "ZW" - ] - }, - "EUR": { - "name": "Europe", - "code": "EUR", - "country_codes": [ - "AD", - "AL", - "AM", - "AT", - "AZ", - "BA", - "BE", - "BG", - "BY", - "CH", - "CY", - "CZ", - "DE", - "DK", - "EE", - "ES", - "FI", - "FR", - "GE", - "GR", - "HR", - "HU", - "IE", - "IS", - "IT", - "KZ", - "LI", - "LT", - "LU", - "LV", - "MC", - "MD", - "ME", - "MK", - "MT", - "NL", - "NO", - "PL", - "PT", - "RO", - "RS", - "RU", - "SE", - "SI", - "SK", - "SM", - "TR", - "UA", - "UK", - "VA" - ] - }, - "HISPAM": { - "name": "Hispanic America", - "code": "HISPAM", - "country_codes": [ - "AR", - "BO", - "CL", - "CO", - "CR", - "CU", - "DO", - "EC", - "GT", - "HN", - "MX", - "NI", - "PA", - "PE", - "PR", - "PY", - "SV", - "UY", - "VE" - ] - }, - "LAC": { - "name": "Latin America and the Caribbean", - "code": "LAC", - "country_codes": [ - "AG", - "AI", - "AR", - "AW", - "BB", - "BL", - "BO", - "BR", - "BS", - "CL", - "CO", - "CR", - "CU", - "CW", - "DM", - "DO", - "EC", - "GD", - "GF", - "GP", - "GT", - "HN", - "HT", - "JM", - "KN", - "KY", - "LC", - "MF", - "MQ", - "MS", - "MX", - "NI", - "PA", - "PE", - "PR", - "PY", - "SV", - "SX", - "TC", - "TT", - "UY", - "VC", - "VE", - "VG", - "VI" - ] - }, - "LATAM": { - "name": "Latin America", - "code": "LATAM", - "country_codes": [ - "AR", - "BL", - "BO", - "BR", - "CL", - "CO", - "CR", - "CU", - "DO", - "EC", - "GF", - "GP", - "GT", - "HN", - "HT", - "MF", - "MQ", - "MX", - "NI", - "PA", - "PE", - "PR", - "PY", - "SV", - "UY", - "VE" - ] - }, - "MAGHREB": { - "name": "Maghreb", - "code": "MAGHREB", - "country_codes": ["DZ", "LY", "MA", "MR", "TN"] - }, - "MENA": { - "name": "Middle East and North Africa", - "code": "MENA", - "country_codes": [ - "AE", - "BH", - "CY", - "DJ", - "DZ", - "EG", - "EH", - "IL", - "IQ", - "IR", - "JO", - "KW", - "LB", - "LY", - "MA", - "OM", - "PS", - "QA", - "SA", - "SD", - "SY", - "TN", - "TR", - "YE" - ] - }, - "MIDEAST": { - "name": "Middle East", - "code": "MIDEAST", - "country_codes": [ - "AE", - "BH", - "CY", - "EG", - "IL", - "IQ", - "IR", - "JO", - "KW", - "LB", - "OM", - "PS", - "QA", - "SA", - "SY", - "TR", - "YE" - ] - }, - "NAM": { - "name": "Northern America", - "code": "NAM", - "country_codes": [ - "BM", - "CA", - "GL", - "PM", - "US" - ] - }, - "NORAM": { - "name": "North America", - "code": "NORAM", - "country_codes": [ - "AG", - "AI", - "AW", - "BB", - "BL", - "BM", - "BS", - "BZ", - "CA", - "CR", - "CU", - "CW", - "DM", - "DO", - "GD", - "GL", - "GP", - "GT", - "HN", - "HT", - "JM", - "KN", - "KY", - "LC", - "MF", - "MQ", - "MS", - "MX", - "NI", - "PA", - "PM", - "PR", - "SV", - "SX", - "TC", - "TT", - "US", - "VC", - "VG", - "VI" - ] - }, - "NORD": { - "name": "Nordics", - "code": "NORD", - "country_codes": ["AX", "DK", "FO", "FI", "IS", "NO", "SE"] - }, - "OCE": { - "name": "Oceania", - "code": "OCE", - "country_codes": [ - "AS", - "AU", - "CK", - "FJ", - "FM", - "GU", - "KI", - "MH", - "MP", - "NC", - "NF", - "NR", - "NU", - "NZ", - "PF", - "PG", - "PN", - "PW", - "SB", - "TK", - "TO", - "TV", - "VU", - "WF", - "WS" - ] - }, - "SAS": { - "name": "South Asia", - "code": "SAS", - "country_codes": ["AF", "BD", "BT", "IN", "LK", "MV", "NP", "PK"] - }, - "SSA": { - "name": "Sub-Saharan Africa", - "code": "SSA", - "country_codes": [ - "AO", - "BF", - "BI", - "BJ", - "BW", - "CD", - "CF", - "CG", - "CI", - "CM", - "CV", - "DJ", - "ER", - "ET", - "GA", - "GH", - "GM", - "GN", - "GQ", - "GW", - "KE", - "KM", - "LR", - "LS", - "MG", - "ML", - "MR", - "MU", - "MW", - "MZ", - "NA", - "NE", - "NG", - "RW", - "SC", - "SD", - "SL", - "SN", - "SO", - "SS", - "ST", - "SZ", - "TD", - "TG", - "TZ", - "UG", - "ZA", - "ZM", - "ZW" - ] - }, - "WAFR": { - "name": "West Africa", - "code": "WAFR", - "country_codes": [ - "BF", - "BJ", - "CI", - "CV", - "GH", - "GM", - "GN", - "GW", - "LR", - "ML", - "MR", - "NE", - "NG", - "SH", - "SL", - "SN", - "TG" - ] - }, - "INT": { - "name": "Worldwide", - "code": "INT", - "country_codes": [ - "AD", - "AE", - "AF", - "AG", - "AI", - "AL", - "AM", - "AO", - "AQ", - "AR", - "AS", - "AT", - "AU", - "AW", - "AX", - "AZ", - "BA", - "BB", - "BD", - "BE", - "BF", - "BG", - "BH", - "BI", - "BJ", - "BL", - "BM", - "BN", - "BO", - "BQ", - "BR", - "BS", - "BT", - "BV", - "BW", - "BY", - "BZ", - "CA", - "CC", - "CD", - "CF", - "CG", - "CH", - "CI", - "CK", - "CL", - "CM", - "CN", - "CO", - "CR", - "CU", - "CV", - "CW", - "CX", - "CY", - "CZ", - "DE", - "DJ", - "DK", - "DM", - "DO", - "DZ", - "EC", - "EE", - "EG", - "EH", - "ER", - "ES", - "ET", - "FI", - "FJ", - "FK", - "FM", - "FO", - "FR", - "GA", - "UK", - "GD", - "GE", - "GF", - "GG", - "GH", - "GI", - "GL", - "GM", - "GN", - "GP", - "GQ", - "GR", - "GS", - "GT", - "GU", - "GW", - "GY", - "HK", - "HM", - "HN", - "HR", - "HT", - "HU", - "ID", - "IE", - "IL", - "IM", - "IN", - "IO", - "IQ", - "IR", - "IS", - "IT", - "JE", - "JM", - "JO", - "JP", - "KE", - "KG", - "KH", - "KI", - "KM", - "KN", - "KP", - "KR", - "KW", - "KY", - "KZ", - "LA", - "LB", - "LC", - "LI", - "LK", - "LR", - "LS", - "LT", - "LU", - "LV", - "LY", - "MA", - "MC", - "MD", - "ME", - "MF", - "MG", - "MH", - "MK", - "ML", - "MM", - "MN", - "MO", - "MP", - "MQ", - "MR", - "MS", - "MT", - "MU", - "MV", - "MW", - "MX", - "MY", - "MZ", - "NA", - "NC", - "NE", - "NF", - "NG", - "NI", - "NL", - "NO", - "NP", - "NR", - "NU", - "NZ", - "OM", - "PA", - "PE", - "PF", - "PG", - "PH", - "PK", - "PL", - "PM", - "PN", - "PR", - "PS", - "PT", - "PW", - "PY", - "QA", - "RE", - "RO", - "RS", - "RU", - "RW", - "SA", - "SB", - "SC", - "SD", - "SE", - "SG", - "SH", - "SI", - "SJ", - "SK", - "SL", - "SM", - "SN", - "SO", - "SR", - "SS", - "ST", - "SV", - "SX", - "SY", - "SZ", - "TC", - "TD", - "TF", - "TG", - "TH", - "TJ", - "TK", - "TL", - "TM", - "TN", - "TO", - "TR", - "TT", - "TV", - "TW", - "TZ", - "UA", - "UG", - "UM", - "US", - "UY", - "UZ", - "VA", - "VC", - "VE", - "VG", - "VI", - "VN", - "VU", - "WF", - "WS", - "XK", - "YE", - "YT", - "ZA", - "ZM", -"ZW" - ] - } -} diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js new file mode 100644 index 000000000..c5c2792d8 --- /dev/null +++ b/scripts/generators/categories.js @@ -0,0 +1,47 @@ +const { create: createPlaylist } = require('../core/playlist') +const api = require('../core/api') +const file = require('../core/file') +const _ = require('lodash') + +const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' + +module.exports = async function (streams = []) { + const logs = [] + + await api.categories.load() + const categories = await api.categories.all() + + for (const category of categories) { + let output = _.filter(streams, { channel: { categories: [category.id] } }) + output = _.orderBy( + output, + ['channel.name', 'status.level', 'resolution.height'], + ['asc', 'asc', 'desc'] + ) + output = _.uniqBy(output, s => s.channel_id || _.uniqueId()) + + const playlist = createPlaylist(output, { public: true }) + await file.create(`${PUBLIC_DIR}/categories/${category.id}.m3u`, playlist.toString()) + + logs.push({ id: category.id, count: output.length }) + } + + let output = _.filter(streams, s => !s.categories.length) + output = _.orderBy( + output, + ['channel.name', 'status.level', 'resolution.height'], + ['asc', 'asc', 'desc'] + ) + output = _.uniqBy(output, s => s.channel_id || _.uniqueId()) + output = output.map(item => { + item.group_title = 'Other' + return item + }) + + const playlist = createPlaylist(output, { public: true }) + await file.create(`${PUBLIC_DIR}/categories/other.m3u`, playlist.toString()) + + logs.push({ id: 'other', count: output.length }) + + return logs +} diff --git a/scripts/generators/index.js b/scripts/generators/index.js new file mode 100644 index 000000000..75324864e --- /dev/null +++ b/scripts/generators/index.js @@ -0,0 +1 @@ +exports.categories = require('./categories') diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index ddae6ef2b..804ffc1a6 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -1,5 +1,5 @@ module.exports = function () { - if (this.group_title) return this.group_title + if (this.group_title !== undefined) return this.group_title if (Array.isArray(this.categories)) { return this.categories diff --git a/scripts/store/getters/index.js b/scripts/store/getters/index.js index 090faca8c..df20631e0 100644 --- a/scripts/store/getters/index.js +++ b/scripts/store/getters/index.js @@ -1,5 +1,5 @@ exports.group_title = require('./group_title') -exports.display_name = require('./display_name') +exports.title = require('./title') exports.tvg_country = require('./tvg_country') exports.tvg_id = require('./tvg_id') exports.tvg_language = require('./tvg_language') diff --git a/scripts/store/getters/display_name.js b/scripts/store/getters/title.js similarity index 86% rename from scripts/store/getters/display_name.js rename to scripts/store/getters/title.js index 010cc6042..69bb469d6 100644 --- a/scripts/store/getters/display_name.js +++ b/scripts/store/getters/title.js @@ -1,5 +1,5 @@ module.exports = function () { - let title = this.title + let title = this.channel_name if (this.resolution.height) { title += ` (${this.resolution.height}p)` diff --git a/scripts/store/getters/tvg_country.js b/scripts/store/getters/tvg_country.js index 7865e26b3..fb23daf09 100644 --- a/scripts/store/getters/tvg_country.js +++ b/scripts/store/getters/tvg_country.js @@ -1,5 +1,3 @@ module.exports = function () { - if (this.tvg_country) return this.tvg_country - - return Array.isArray(this.countries) ? this.countries.map(i => i.code).join(';') : '' + return Array.isArray(this.broadcast_area) ? this.broadcast_area.join(';') : '' } diff --git a/scripts/store/getters/tvg_id.js b/scripts/store/getters/tvg_id.js index 6b362cefe..1a09bbfbe 100644 --- a/scripts/store/getters/tvg_id.js +++ b/scripts/store/getters/tvg_id.js @@ -1,3 +1,3 @@ module.exports = function () { - return this.id || '' + return this.channel_id || '' } diff --git a/scripts/store/getters/tvg_logo.js b/scripts/store/getters/tvg_logo.js index e5d62bc9d..c152968c4 100644 --- a/scripts/store/getters/tvg_logo.js +++ b/scripts/store/getters/tvg_logo.js @@ -1,3 +1,3 @@ module.exports = function () { - return this.logo || '' + return this.channel && this.channel.logo ? this.channel.logo : '' } diff --git a/scripts/store/setters/title.js b/scripts/store/setters/title.js index 4a6612554..d56605337 100644 --- a/scripts/store/setters/title.js +++ b/scripts/store/setters/title.js @@ -1,5 +1,10 @@ -const { parser } = require('../../core') - module.exports = function ({ title }) { - return parser.parseChannelName(title) + return title + .trim() + .split(' ') + .map(s => s.trim()) + .filter(s => { + return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) + }) + .join(' ') } diff --git a/tests/__data__/expected/.gh-pages/categories/general.m3u b/tests/__data__/expected/.gh-pages/categories/general.m3u index 6e90aa990..0b77eed5a 100644 --- a/tests/__data__/expected/.gh-pages/categories/general.m3u +++ b/tests/__data__/expected/.gh-pages/categories/general.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/legislative.m3u b/tests/__data__/expected/.gh-pages/categories/legislative.m3u index 6e90aa990..275a498ee 100644 --- a/tests/__data__/expected/.gh-pages/categories/legislative.m3u +++ b/tests/__data__/expected/.gh-pages/categories/legislative.m3u @@ -1,3 +1 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/categories/news.m3u b/tests/__data__/expected/.gh-pages/categories/news.m3u index c9e8ad6e9..4c20e3838 100644 --- a/tests/__data__/expected/.gh-pages/categories/news.m3u +++ b/tests/__data__/expected/.gh-pages/categories/news.m3u @@ -1,3 +1,3 @@ -#EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/other.m3u b/tests/__data__/expected/.gh-pages/categories/other.m3u index 58409e132..93eeb79d3 100644 --- a/tests/__data__/expected/.gh-pages/categories/other.m3u +++ b/tests/__data__/expected/.gh-pages/categories/other.m3u @@ -1,3 +1,7 @@ -#EXTM3U x-tvg-url="" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Other",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 68e8fdb61..2f7b35904 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,5 +1,7 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index d282ad82f..7e00b31b6 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,5 +1,5 @@ -#EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/undefined.m3u b/tests/__data__/expected/.gh-pages/countries/undefined.m3u index e16261d1d..a5f46139b 100644 --- a/tests/__data__/expected/.gh-pages/countries/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/countries/undefined.m3u @@ -1,3 +1,5 @@ #EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/channels.json b/tests/__data__/expected/.gh-pages/streams.json similarity index 100% rename from tests/__data__/expected/.gh-pages/channels.json rename to tests/__data__/expected/.gh-pages/streams.json diff --git a/tests/__data__/expected/logs/generate-playlists/categories.log b/tests/__data__/expected/logs/generate-playlists/categories.log deleted file mode 100644 index feeadad3f..000000000 --- a/tests/__data__/expected/logs/generate-playlists/categories.log +++ /dev/null @@ -1,6 +0,0 @@ -{"name":"Cooking","slug":"cooking","count":1} -{"name":"General","slug":"general","count":1} -{"name":"Legislative","slug":"legislative","count":1} -{"name":"News","slug":"news","count":1} -{"name":"XXX","slug":"xxx","count":1} -{"name":"Other","slug":"other","count":1} diff --git a/tests/__data__/expected/logs/generate-playlists/countries.log b/tests/__data__/expected/logs/generate-playlists/countries.log deleted file mode 100644 index 8d4859860..000000000 --- a/tests/__data__/expected/logs/generate-playlists/countries.log +++ /dev/null @@ -1,4 +0,0 @@ -{"name":"Andorra","code":"AD","count":1} -{"name":"Russia","code":"RU","count":2} -{"name":"United Kingdom","code":"UK","count":2} -{"name":"Undefined","code":"UNDEFINED","count":1} diff --git a/tests/__data__/expected/logs/generators/categories.log b/tests/__data__/expected/logs/generators/categories.log new file mode 100644 index 000000000..f8900e017 --- /dev/null +++ b/tests/__data__/expected/logs/generators/categories.log @@ -0,0 +1,29 @@ +{"id":"auto","count":0} +{"id":"animation","count":0} +{"id":"business","count":0} +{"id":"classic","count":0} +{"id":"comedy","count":0} +{"id":"cooking","count":0} +{"id":"culture","count":0} +{"id":"documentary","count":0} +{"id":"education","count":0} +{"id":"entertainment","count":0} +{"id":"family","count":0} +{"id":"general","count":1} +{"id":"kids","count":0} +{"id":"legislative","count":0} +{"id":"lifestyle","count":0} +{"id":"movies","count":0} +{"id":"music","count":0} +{"id":"news","count":1} +{"id":"outdoor","count":0} +{"id":"relax","count":0} +{"id":"religious","count":0} +{"id":"series","count":0} +{"id":"science","count":0} +{"id":"shop","count":0} +{"id":"sports","count":0} +{"id":"travel","count":0} +{"id":"weather","count":0} +{"id":"xxx","count":1} +{"id":"other","count":3} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log new file mode 100644 index 000000000..2a686916b --- /dev/null +++ b/tests/__data__/expected/logs/generators/countries.log @@ -0,0 +1,251 @@ +{"name":"Afghanistan","code":"AF","count":2} +{"name":"Albania","code":"AL","count":2} +{"name":"Algeria","code":"DZ","count":2} +{"name":"American Samoa","code":"AS","count":2} +{"name":"Andorra","code":"AD","count":3} +{"name":"Angola","code":"AO","count":2} +{"name":"Anguilla","code":"AI","count":2} +{"name":"Antarctica","code":"AQ","count":2} +{"name":"Antigua and Barbuda","code":"AG","count":2} +{"name":"Argentina","code":"AR","count":2} +{"name":"Armenia","code":"AM","count":2} +{"name":"Aruba","code":"AW","count":2} +{"name":"Australia","code":"AU","count":2} +{"name":"Austria","code":"AT","count":2} +{"name":"Azerbaijan","code":"AZ","count":2} +{"name":"Bahamas","code":"BS","count":2} +{"name":"Bahrain","code":"BH","count":2} +{"name":"Bangladesh","code":"BD","count":2} +{"name":"Barbados","code":"BB","count":2} +{"name":"Belarus","code":"BY","count":2} +{"name":"Belgium","code":"BE","count":2} +{"name":"Belize","code":"BZ","count":2} +{"name":"Benin","code":"BJ","count":2} +{"name":"Bermuda","code":"BM","count":2} +{"name":"Bhutan","code":"BT","count":2} +{"name":"Bolivia","code":"BO","count":2} +{"name":"Bonaire","code":"BQ","count":2} +{"name":"Bosnia and Herzegovina","code":"BA","count":2} +{"name":"Botswana","code":"BW","count":2} +{"name":"Bouvet Island","code":"BV","count":2} +{"name":"Brazil","code":"BR","count":2} +{"name":"British Indian Ocean Territory","code":"IO","count":2} +{"name":"British Virgin Islands","code":"VG","count":2} +{"name":"Brunei","code":"BN","count":2} +{"name":"Bulgaria","code":"BG","count":2} +{"name":"Burkina Faso","code":"BF","count":2} +{"name":"Burundi","code":"BI","count":2} +{"name":"Cambodia","code":"KH","count":2} +{"name":"Cameroon","code":"CM","count":2} +{"name":"Canada","code":"CA","count":2} +{"name":"Cape Verde","code":"CV","count":2} +{"name":"Cayman Islands","code":"KY","count":2} +{"name":"Central African Republic","code":"CF","count":2} +{"name":"Chad","code":"TD","count":2} +{"name":"Chile","code":"CL","count":2} +{"name":"China","code":"CN","count":2} +{"name":"Christmas Island","code":"CX","count":2} +{"name":"Cocos (Keeling) Islands","code":"CC","count":2} +{"name":"Colombia","code":"CO","count":2} +{"name":"Comoros","code":"KM","count":2} +{"name":"Cook Islands","code":"CK","count":2} +{"name":"Costa Rica","code":"CR","count":2} +{"name":"Croatia","code":"HR","count":2} +{"name":"Cuba","code":"CU","count":2} +{"name":"Curacao","code":"CW","count":2} +{"name":"Cyprus","code":"CY","count":2} +{"name":"Czech Republic","code":"CZ","count":2} +{"name":"Democratic Republic of the Congo","code":"CD","count":2} +{"name":"Denmark","code":"DK","count":2} +{"name":"Djibouti","code":"DJ","count":2} +{"name":"Dominica","code":"DM","count":2} +{"name":"Dominican Republic","code":"DO","count":2} +{"name":"East Timor","code":"TL","count":2} +{"name":"Ecuador","code":"EC","count":2} +{"name":"Egypt","code":"EG","count":2} +{"name":"El Salvador","code":"SV","count":2} +{"name":"Equatorial Guinea","code":"GQ","count":2} +{"name":"Eritrea","code":"ER","count":2} +{"name":"Estonia","code":"EE","count":2} +{"name":"Ethiopia","code":"ET","count":2} +{"name":"Falkland Islands","code":"FK","count":2} +{"name":"Faroe Islands","code":"FO","count":2} +{"name":"Fiji","code":"FJ","count":2} +{"name":"Finland","code":"FI","count":2} +{"name":"France","code":"FR","count":2} +{"name":"French Guiana","code":"GF","count":2} +{"name":"French Polynesia","code":"PF","count":2} +{"name":"French Southern Territories","code":"TF","count":2} +{"name":"Gabon","code":"GA","count":2} +{"name":"Gambia","code":"GM","count":2} +{"name":"Georgia","code":"GE","count":2} +{"name":"Germany","code":"DE","count":2} +{"name":"Ghana","code":"GH","count":2} +{"name":"Gibraltar","code":"GI","count":2} +{"name":"Greece","code":"GR","count":2} +{"name":"Greenland","code":"GL","count":2} +{"name":"Grenada","code":"GD","count":2} +{"name":"Guadeloupe","code":"GP","count":2} +{"name":"Guam","code":"GU","count":2} +{"name":"Guatemala","code":"GT","count":2} +{"name":"Guernsey","code":"GG","count":2} +{"name":"Guinea","code":"GN","count":2} +{"name":"Guinea-Bissau","code":"GW","count":2} +{"name":"Guyana","code":"GY","count":2} +{"name":"Haiti","code":"HT","count":2} +{"name":"Heard Island and McDonald Islands","code":"HM","count":2} +{"name":"Honduras","code":"HN","count":2} +{"name":"Hong Kong","code":"HK","count":2} +{"name":"Hungary","code":"HU","count":2} +{"name":"Iceland","code":"IS","count":2} +{"name":"India","code":"IN","count":2} +{"name":"Indonesia","code":"ID","count":2} +{"name":"Iran","code":"IR","count":2} +{"name":"Iraq","code":"IQ","count":2} +{"name":"Ireland","code":"IE","count":2} +{"name":"Isle of Man","code":"IM","count":2} +{"name":"Israel","code":"IL","count":2} +{"name":"Italy","code":"IT","count":2} +{"name":"Ivory Coast","code":"CI","count":2} +{"name":"Jamaica","code":"JM","count":2} +{"name":"Japan","code":"JP","count":2} +{"name":"Jersey","code":"JE","count":2} +{"name":"Jordan","code":"JO","count":2} +{"name":"Kazakhstan","code":"KZ","count":2} +{"name":"Kenya","code":"KE","count":2} +{"name":"Kiribati","code":"KI","count":2} +{"name":"Kosovo","code":"XK","count":2} +{"name":"Kuwait","code":"KW","count":2} +{"name":"Kyrgyzstan","code":"KG","count":2} +{"name":"Laos","code":"LA","count":2} +{"name":"Latvia","code":"LV","count":2} +{"name":"Lebanon","code":"LB","count":2} +{"name":"Lesotho","code":"LS","count":2} +{"name":"Liberia","code":"LR","count":2} +{"name":"Libya","code":"LY","count":2} +{"name":"Liechtenstein","code":"LI","count":2} +{"name":"Lithuania","code":"LT","count":2} +{"name":"Luxembourg","code":"LU","count":2} +{"name":"Macao","code":"MO","count":2} +{"name":"Madagascar","code":"MG","count":2} +{"name":"Malawi","code":"MW","count":2} +{"name":"Malaysia","code":"MY","count":2} +{"name":"Maldives","code":"MV","count":2} +{"name":"Mali","code":"ML","count":2} +{"name":"Malta","code":"MT","count":2} +{"name":"Marshall Islands","code":"MH","count":2} +{"name":"Martinique","code":"MQ","count":2} +{"name":"Mauritania","code":"MR","count":2} +{"name":"Mauritius","code":"MU","count":2} +{"name":"Mayotte","code":"YT","count":2} +{"name":"Mexico","code":"MX","count":2} +{"name":"Micronesia","code":"FM","count":2} +{"name":"Moldova","code":"MD","count":2} +{"name":"Monaco","code":"MC","count":2} +{"name":"Mongolia","code":"MN","count":2} +{"name":"Montenegro","code":"ME","count":2} +{"name":"Montserrat","code":"MS","count":2} +{"name":"Morocco","code":"MA","count":2} +{"name":"Mozambique","code":"MZ","count":2} +{"name":"Myanmar (Burma)","code":"MM","count":2} +{"name":"Namibia","code":"NA","count":2} +{"name":"Nauru","code":"NR","count":2} +{"name":"Nepal","code":"NP","count":2} +{"name":"Netherlands","code":"NL","count":2} +{"name":"New Caledonia","code":"NC","count":2} +{"name":"New Zealand","code":"NZ","count":2} +{"name":"Nicaragua","code":"NI","count":2} +{"name":"Niger","code":"NE","count":2} +{"name":"Nigeria","code":"NG","count":2} +{"name":"Niue","code":"NU","count":2} +{"name":"Norfolk Island","code":"NF","count":2} +{"name":"North Korea","code":"KP","count":2} +{"name":"North Macedonia","code":"MK","count":2} +{"name":"Northern Mariana Islands","code":"MP","count":2} +{"name":"Norway","code":"NO","count":2} +{"name":"Oman","code":"OM","count":2} +{"name":"Pakistan","code":"PK","count":2} +{"name":"Palau","code":"PW","count":2} +{"name":"Palestine","code":"PS","count":2} +{"name":"Panama","code":"PA","count":2} +{"name":"Papua New Guinea","code":"PG","count":2} +{"name":"Paraguay","code":"PY","count":2} +{"name":"Peru","code":"PE","count":2} +{"name":"Philippines","code":"PH","count":2} +{"name":"Pitcairn Islands","code":"PN","count":2} +{"name":"Poland","code":"PL","count":2} +{"name":"Portugal","code":"PT","count":2} +{"name":"Puerto Rico","code":"PR","count":2} +{"name":"Qatar","code":"QA","count":2} +{"name":"Republic of the Congo","code":"CG","count":2} +{"name":"Romania","code":"RO","count":2} +{"name":"Russia","code":"RU","count":3} +{"name":"Rwanda","code":"RW","count":2} +{"name":"Réunion","code":"RE","count":2} +{"name":"Saint Barthélemy","code":"BL","count":2} +{"name":"Saint Helena","code":"SH","count":2} +{"name":"Saint Kitts and Nevis","code":"KN","count":2} +{"name":"Saint Lucia","code":"LC","count":2} +{"name":"Saint Martin","code":"MF","count":2} +{"name":"Saint Pierre and Miquelon","code":"PM","count":2} +{"name":"Saint Vincent and the Grenadines","code":"VC","count":2} +{"name":"Samoa","code":"WS","count":2} +{"name":"San Marino","code":"SM","count":2} +{"name":"Saudi Arabia","code":"SA","count":2} +{"name":"Senegal","code":"SN","count":2} +{"name":"Serbia","code":"RS","count":2} +{"name":"Seychelles","code":"SC","count":2} +{"name":"Sierra Leone","code":"SL","count":2} +{"name":"Singapore","code":"SG","count":2} +{"name":"Sint Maarten","code":"SX","count":2} +{"name":"Slovakia","code":"SK","count":2} +{"name":"Slovenia","code":"SI","count":2} +{"name":"Solomon Islands","code":"SB","count":2} +{"name":"Somalia","code":"SO","count":2} +{"name":"South Africa","code":"ZA","count":2} +{"name":"South Georgia and the South Sandwich Islands","code":"GS","count":2} +{"name":"South Korea","code":"KR","count":2} +{"name":"South Sudan","code":"SS","count":2} +{"name":"Spain","code":"ES","count":2} +{"name":"Sri Lanka","code":"LK","count":2} +{"name":"Sudan","code":"SD","count":2} +{"name":"Suriname","code":"SR","count":2} +{"name":"Svalbard and Jan Mayen","code":"SJ","count":2} +{"name":"Swaziland","code":"SZ","count":2} +{"name":"Sweden","code":"SE","count":2} +{"name":"Switzerland","code":"CH","count":2} +{"name":"Syria","code":"SY","count":2} +{"name":"São Tomé and Príncipe","code":"ST","count":2} +{"name":"Taiwan","code":"TW","count":2} +{"name":"Tajikistan","code":"TJ","count":2} +{"name":"Tanzania","code":"TZ","count":2} +{"name":"Thailand","code":"TH","count":2} +{"name":"Togo","code":"TG","count":2} +{"name":"Tokelau","code":"TK","count":2} +{"name":"Tonga","code":"TO","count":2} +{"name":"Trinidad and Tobago","code":"TT","count":2} +{"name":"Tunisia","code":"TN","count":2} +{"name":"Turkey","code":"TR","count":2} +{"name":"Turkmenistan","code":"TM","count":2} +{"name":"Turks and Caicos Islands","code":"TC","count":2} +{"name":"Tuvalu","code":"TV","count":2} +{"name":"U.S. Minor Outlying Islands","code":"UM","count":2} +{"name":"U.S. Virgin Islands","code":"VI","count":2} +{"name":"Uganda","code":"UG","count":2} +{"name":"Ukraine","code":"UA","count":2} +{"name":"United Arab Emirates","code":"AE","count":2} +{"name":"United Kingdom","code":"UK","count":2} +{"name":"United States","code":"US","count":2} +{"name":"Uruguay","code":"UY","count":2} +{"name":"Uzbekistan","code":"UZ","count":2} +{"name":"Vanuatu","code":"VU","count":2} +{"name":"Vatican City","code":"VA","count":2} +{"name":"Venezuela","code":"VE","count":2} +{"name":"Vietnam","code":"VN","count":2} +{"name":"Wallis and Futuna","code":"WF","count":2} +{"name":"Western Sahara","code":"EH","count":2} +{"name":"Yemen","code":"YE","count":2} +{"name":"Zambia","code":"ZM","count":2} +{"name":"Zimbabwe","code":"ZW","count":2} +{"name":"Åland","code":"AX","count":2} +{"name":"Undefined","id":"UNDEFINED","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generate-playlists/languages.log b/tests/__data__/expected/logs/generators/languages.log similarity index 100% rename from tests/__data__/expected/logs/generate-playlists/languages.log rename to tests/__data__/expected/logs/generators/languages.log diff --git a/tests/__data__/expected/logs/generate-playlists/regions.log b/tests/__data__/expected/logs/generators/regions.log similarity index 100% rename from tests/__data__/expected/logs/generate-playlists/regions.log rename to tests/__data__/expected/logs/generators/regions.log diff --git a/tests/__data__/expected/save-results.streams.db b/tests/__data__/expected/save-results.streams.db index 0b9c65556..b577e30cd 100644 --- a/tests/__data__/expected/save-results.streams.db +++ b/tests/__data__/expected/save-results.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/expected/streams.db b/tests/__data__/expected/streams.db index ddfa7ac49..0d481168e 100644 --- a/tests/__data__/expected/streams.db +++ b/tests/__data__/expected/streams.db @@ -1,3 +1,3 @@ -{"title":"ATV","id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} -{"title":"Fox Sports 2 Asia (Thai)","id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} -{"id":null,"title":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Jruf9KFXRsa5BjYj"} +{"channel_name":"ATV","channel_id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} +{"channel_name":"Fox Sports 2 Asia (Thai)","channel_id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} +{"channel_id":null,"channel_name":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Jruf9KFXRsa5BjYj"} diff --git a/tests/__data__/input/generate-playlists.test.db b/tests/__data__/input/generate-playlists.test.db deleted file mode 100644 index 46b45e560..000000000 --- a/tests/__data__/input/generate-playlists.test.db +++ /dev/null @@ -1,8 +0,0 @@ -{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","src_country":{"name":"Russia","code":"RU","lang":"rus"},"tvg_country":"RU","countries":[{"name":"Russia","code":"RU","lang":"rus"}],"regions":[{"name":"Asia","code":"ASIA"},{"name":"Commonwealth of Independent States","code":"CIS"},{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Russian","code":"rus"}],"categories":[{"name":"General","slug":"general","nsfw":false},{"name":"Legislative","slug":"legislative","nsfw":false}],"tvg_url":"","guides":["https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"],"logo":"https://iptvx.one/icn/ldpr-tv.png","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"name":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCId5"} -{"name":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","src_country":{"name":"Andorra","code":"AD","lang":"cat"},"tvg_country":"AD","countries":[{"name":"Andorra","code":"AD","lang":"cat"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Catalan","code":"cat"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/kJCjeQ4.png","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"name":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","src_country":{"name":"United Kingdom","code":"UK","lang":"eng"},"tvg_country":"UK","countries":[{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"English","code":"eng"}],"categories":[{"name":"News","slug":"news","nsfw":false}],"tvg_url":"","guides":[],"logo":"https://i.imgur.com/eNPIQ9f.png","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"name":"Visit-X TV","id":"","filepath":"tests/__data__/output/channels/nl.m3u","src_country":{},"tvg_country":"","countries":[],"regions":[],"languages":[],"categories":[{"name":"XXX","slug":"xxx","nsfw":true}],"tvg_url":"","guides":[],"logo":"","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":true,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF5"} -{"name":"Tastemade","id":"","filepath":"tests/__data__/output/channels/qa.m3u","src_country":{},"tvg_country":"INT","countries":[{"name":"Andorra","code":"AD","lang":"cat"},{"name":"Russia","code":"RU","lang":"rus"},{"name":"United Kingdom","code":"UK","lang":"eng"}],"regions":[{"name":"Worldwide","code":"INT"}],"languages":[],"categories":[{"name":"Cooking","slug":"cooking","nsfw":false}],"tvg_url":"","guides":[],"logo":"","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPAB"} -{"name":"Daawah TV","id":"","filepath":"tests/__data__/output/channels/in.m3u","src_country":{},"tvg_country":"","countries":[],"regions":[],"languages":[],"categories":[],"tvg_url":"","guides":[],"logo":"","resolution":{},"status":{"label":"","code":"online","level":1},"url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF9"} diff --git a/tests/__data__/input/logs/generate-playlists/categories.log b/tests/__data__/input/logs/generators/categories.log similarity index 100% rename from tests/__data__/input/logs/generate-playlists/categories.log rename to tests/__data__/input/logs/generators/categories.log diff --git a/tests/__data__/input/logs/generate-playlists/countries.log b/tests/__data__/input/logs/generators/countries.log similarity index 100% rename from tests/__data__/input/logs/generate-playlists/countries.log rename to tests/__data__/input/logs/generators/countries.log diff --git a/tests/__data__/input/logs/generate-playlists/languages.log b/tests/__data__/input/logs/generators/languages.log similarity index 100% rename from tests/__data__/input/logs/generate-playlists/languages.log rename to tests/__data__/input/logs/generators/languages.log diff --git a/tests/__data__/input/logs/generate-playlists/regions.log b/tests/__data__/input/logs/generators/regions.log similarity index 100% rename from tests/__data__/input/logs/generate-playlists/regions.log rename to tests/__data__/input/logs/generators/regions.log diff --git a/tests/__data__/input/save-results.streams.db b/tests/__data__/input/save-results.streams.db deleted file mode 100644 index 0fbbcdf57..000000000 --- a/tests/__data__/input/save-results.streams.db +++ /dev/null @@ -1,6 +0,0 @@ -{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/streams.db b/tests/__data__/input/streams.db deleted file mode 100644 index 5555ec209..000000000 --- a/tests/__data__/input/streams.db +++ /dev/null @@ -1,4 +0,0 @@ -{"title":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"Andorra TV","id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index 0b5a12a08..d16bb169f 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -1,160 +1,42 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') -function content(filepath) { - return fs.readFileSync(`tests/__data__/${filepath}`, { - encoding: 'utf8' - }) -} - beforeEach(() => { - fs.rmdirSync('tests/__data__/output', { recursive: true }) - fs.copyFileSync('tests/__data__/input/generate-playlists.test.db', 'tests/__data__/temp/test.db') - - execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db PUBLIC_PATH=tests/__data__/output/.gh-pages LOGS_PATH=tests/__data__/output/logs node scripts/commands/generate-playlists.js', - { encoding: 'utf8' } - ) -}) - -afterEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') -}) - -it('can generate categories', () => { - expect(content('output/.gh-pages/categories/general.m3u')).toBe( - content('expected/.gh-pages/categories/general.m3u') - ) - - expect(content('output/.gh-pages/categories/legislative.m3u')).toBe( - content('expected/.gh-pages/categories/legislative.m3u') + fs.emptyDirSync('tests/__data__/output') + fs.emptyDirSync('tests/__data__/temp') + fs.copyFileSync( + 'tests/__data__/input/database/generate-playlists.streams.db', + 'tests/__data__/temp/streams.db' ) - expect(content('output/.gh-pages/categories/news.m3u')).toBe( - content('expected/.gh-pages/categories/news.m3u') - ) - - expect(content('output/.gh-pages/categories/other.m3u')).toBe( - content('expected/.gh-pages/categories/other.m3u') - ) -}) - -it('can generate countries', () => { - expect(content('output/.gh-pages/countries/ru.m3u')).toBe( - content('expected/.gh-pages/countries/ru.m3u') - ) - - expect(content('output/.gh-pages/countries/uk.m3u')).toBe( - content('expected/.gh-pages/countries/uk.m3u') - ) - - expect(content('output/.gh-pages/countries/undefined.m3u')).toBe( - content('expected/.gh-pages/countries/undefined.m3u') - ) -}) - -it('can generate languages', () => { - expect(content('output/.gh-pages/languages/rus.m3u')).toBe( - content('expected/.gh-pages/languages/rus.m3u') - ) - - expect(content('output/.gh-pages/languages/eng.m3u')).toBe( - content('expected/.gh-pages/languages/eng.m3u') - ) - - expect(content('output/.gh-pages/languages/undefined.m3u')).toBe( - content('expected/.gh-pages/languages/undefined.m3u') - ) -}) - -it('can generate regions', () => { - expect(content('output/.gh-pages/regions/asia.m3u')).toBe( - content('expected/.gh-pages/regions/asia.m3u') - ) - - expect(content('output/.gh-pages/regions/cis.m3u')).toBe( - content('expected/.gh-pages/regions/cis.m3u') - ) - - expect(content('output/.gh-pages/regions/emea.m3u')).toBe( - content('expected/.gh-pages/regions/emea.m3u') - ) - - expect(content('output/.gh-pages/regions/eur.m3u')).toBe( - content('expected/.gh-pages/regions/eur.m3u') - ) - - expect(content('output/.gh-pages/regions/int.m3u')).toBe( - content('expected/.gh-pages/regions/int.m3u') - ) - - expect(content('output/.gh-pages/regions/undefined.m3u')).toBe( - content('expected/.gh-pages/regions/undefined.m3u') - ) -}) - -it('can generate channels.json', () => { - expect(content('output/.gh-pages/channels.json')).toBe( - content('expected/.gh-pages/channels.json') - ) -}) - -it('can generate index.category.m3u', () => { - expect(content('output/.gh-pages/index.category.m3u')).toBe( - content('expected/.gh-pages/index.category.m3u') - ) -}) - -it('can generate index.country.m3u', () => { - expect(content('output/.gh-pages/index.country.m3u')).toBe( - content('expected/.gh-pages/index.country.m3u') - ) -}) - -it('can generate index.language.m3u', () => { - expect(content('output/.gh-pages/index.language.m3u')).toBe( - content('expected/.gh-pages/index.language.m3u') - ) -}) - -it('can generate index.region.m3u', () => { - expect(content('output/.gh-pages/index.region.m3u')).toBe( - content('expected/.gh-pages/index.region.m3u') + const stdout = execSync( + 'DB_DIR=tests/__data__/temp DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/generate-playlists.js', + { encoding: 'utf8' } ) -}) - -it('can generate index.m3u', () => { - expect(content('output/.gh-pages/index.m3u')).toBe(content('expected/.gh-pages/index.m3u')) -}) -it('can generate index.nsfw.m3u', () => { - expect(content('output/.gh-pages/index.nsfw.m3u')).toBe( - content('expected/.gh-pages/index.nsfw.m3u') - ) + console.log(stdout) }) -it('can generate logs categories', () => { - expect(content('output/logs/generate-playlists/categories.log')).toBe( - content('expected/logs/generate-playlists/categories.log') - ) +it.each([ + '.gh-pages/categories/general.m3u', + '.gh-pages/categories/legislative.m3u', + '.gh-pages/categories/news.m3u', + '.gh-pages/categories/other.m3u', + 'logs/generators/categories.log' +])('can generate %s', filepath => { + expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) }) -it('can generate logs countries', () => { - expect(content('output/logs/generate-playlists/countries.log')).toBe( - content('expected/logs/generate-playlists/countries.log') - ) -}) +it.each(['countries/ru.m3u', 'countries/uk.m3u', 'countries/undefined.m3u'])( + 'can generate %s', + filepath => { + expect(content(`output/.gh-pages/${filepath}`)).toBe(content(`expected/.gh-pages/${filepath}`)) + } +) -it('can generate logs languages', () => { - expect(content('output/logs/generate-playlists/languages.log')).toBe( - content('expected/logs/generate-playlists/languages.log') - ) -}) - -it('can generate logs regions', () => { - expect(content('output/logs/generate-playlists/regions.log')).toBe( - content('expected/logs/generate-playlists/regions.log') - ) -}) +function content(filepath) { + return fs.readFileSync(`tests/__data__/${filepath}`, { + encoding: 'utf8' + }) +} From 109deb476d36f6c6c989bfeb4e85cb70391f3c34 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 00:19:09 +0300 Subject: [PATCH 018/157] wip --- scripts/commands/generate-playlists.js | 1 + scripts/core/generator.js | 15 ++++++-- scripts/generators/categories.js | 46 +++++++---------------- tests/commands/generate-playlists.test.js | 16 ++++---- 4 files changed, 34 insertions(+), 44 deletions(-) diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index ec8b801bd..d5da50308 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -7,6 +7,7 @@ async function main() { logger.info(`generating categories/...`) await generator.generate('categories', streams) + await generator.generate('countries', streams) // await generateCountries(streams) // await generateLanguages() diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 31a265dbc..80fac18eb 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -1,6 +1,9 @@ +const { create: createPlaylist } = require('./playlist') +const logger = require('./logger') const file = require('./file') const generators = require('../generators') +const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' const generator = {} @@ -8,8 +11,12 @@ const generator = {} generator.generate = async function (name, items = []) { if (typeof generators[name] === 'function') { try { - const logs = await generators[name].bind()(items) - await file.create(`${LOGS_DIR}/${name}.log`, logs.map(toJSON).join('\n')) + const output = await generators[name].bind()(items) + await file.create(`${LOGS_DIR}/${name}.log`, output.map(toJSON).join('\n')) + for (const type of output) { + const playlist = createPlaylist(type.items, { public: true }) + await file.create(`${PUBLIC_DIR}/${name}/${type.id}.m3u`, playlist.toString()) + } } catch (error) { logger.error(`generators/${name}.js: ${error.message}`) } @@ -18,6 +25,6 @@ generator.generate = async function (name, items = []) { module.exports = generator -function toJSON(item) { - return JSON.stringify(item) +function toJSON(type) { + return JSON.stringify({ id: type.id, count: type.items.length }) } diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js index c5c2792d8..3262aed2b 100644 --- a/scripts/generators/categories.js +++ b/scripts/generators/categories.js @@ -1,47 +1,27 @@ -const { create: createPlaylist } = require('../core/playlist') const api = require('../core/api') -const file = require('../core/file') const _ = require('lodash') -const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' - module.exports = async function (streams = []) { - const logs = [] - + streams = _.orderBy( + streams, + ['channel.name', 'status.level', 'resolution.height'], + ['asc', 'asc', 'desc'] + ) + streams = _.uniqBy(streams, s => s.channel_id || _.uniqueId()) + const output = [] await api.categories.load() const categories = await api.categories.all() - for (const category of categories) { - let output = _.filter(streams, { channel: { categories: [category.id] } }) - output = _.orderBy( - output, - ['channel.name', 'status.level', 'resolution.height'], - ['asc', 'asc', 'desc'] - ) - output = _.uniqBy(output, s => s.channel_id || _.uniqueId()) - - const playlist = createPlaylist(output, { public: true }) - await file.create(`${PUBLIC_DIR}/categories/${category.id}.m3u`, playlist.toString()) - - logs.push({ id: category.id, count: output.length }) + let items = _.filter(streams, { channel: { categories: [category.id] } }) + output.push({ id: category.id, items }) } - let output = _.filter(streams, s => !s.categories.length) - output = _.orderBy( - output, - ['channel.name', 'status.level', 'resolution.height'], - ['asc', 'asc', 'desc'] - ) - output = _.uniqBy(output, s => s.channel_id || _.uniqueId()) - output = output.map(item => { + let items = _.filter(streams, s => !s.categories.length) + items = items.map(item => { item.group_title = 'Other' return item }) + output.push({ id: 'other', items }) - const playlist = createPlaylist(output, { public: true }) - await file.create(`${PUBLIC_DIR}/categories/other.m3u`, playlist.toString()) - - logs.push({ id: 'other', count: output.length }) - - return logs + return output } diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index d16bb169f..1d13e60e1 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -18,7 +18,7 @@ beforeEach(() => { console.log(stdout) }) -it.each([ +fit.each([ '.gh-pages/categories/general.m3u', '.gh-pages/categories/legislative.m3u', '.gh-pages/categories/news.m3u', @@ -28,12 +28,14 @@ it.each([ expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) }) -it.each(['countries/ru.m3u', 'countries/uk.m3u', 'countries/undefined.m3u'])( - 'can generate %s', - filepath => { - expect(content(`output/.gh-pages/${filepath}`)).toBe(content(`expected/.gh-pages/${filepath}`)) - } -) +it.each([ + '.gh-pages/countries/ru.m3u', + '.gh-pages/countries/uk.m3u', + '.gh-pages/countries/undefined.m3u', + 'logs/generators/countries.log' +])('can generate %s', filepath => { + expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) +}) function content(filepath) { return fs.readFileSync(`tests/__data__/${filepath}`, { From bad3eddf9db961a2521e537f8424aa1607115625 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 01:22:20 +0300 Subject: [PATCH 019/157] wip --- scripts/commands/generate-playlists.js | 180 ++----- scripts/core/generator.js | 7 + scripts/generators/categories.js | 12 +- scripts/generators/countries.js | 21 + scripts/generators/index.js | 3 + scripts/generators/languages.js | 20 + scripts/generators/regions.js | 19 + scripts/store/getters/group_title.js | 4 +- .../categories/{other.m3u => undefined.m3u} | 6 +- .../expected/.gh-pages/languages/cat.m3u | 3 + .../expected/.gh-pages/languages/eng.m3u | 6 +- .../expected/.gh-pages/languages/nld.m3u | 3 + .../expected/.gh-pages/languages/rus.m3u | 2 +- .../.gh-pages/languages/undefined.m3u | 4 +- .../expected/.gh-pages/regions/asia.m3u | 2 +- .../expected/.gh-pages/regions/cis.m3u | 2 +- .../expected/.gh-pages/regions/emea.m3u | 6 +- .../expected/.gh-pages/regions/eur.m3u | 6 +- .../expected/.gh-pages/regions/int.m3u | 12 +- .../expected/.gh-pages/regions/undefined.m3u | 2 + .../expected/logs/generators/categories.log | 2 +- .../expected/logs/generators/countries.log | 502 +++++++++--------- .../expected/logs/generators/languages.log | 9 +- .../expected/logs/generators/regions.log | 31 +- tests/commands/generate-playlists.test.js | 44 +- 25 files changed, 457 insertions(+), 451 deletions(-) create mode 100644 scripts/generators/countries.js create mode 100644 scripts/generators/languages.js create mode 100644 scripts/generators/regions.js rename tests/__data__/expected/.gh-pages/categories/{other.m3u => undefined.m3u} (77%) create mode 100644 tests/__data__/expected/.gh-pages/languages/cat.m3u create mode 100644 tests/__data__/expected/.gh-pages/languages/nld.m3u diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index d5da50308..5530f27f6 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -5,12 +5,11 @@ const _ = require('lodash') async function main() { const streams = await loadStreams() - logger.info(`generating categories/...`) await generator.generate('categories', streams) await generator.generate('countries', streams) + await generator.generate('languages', streams) + await generator.generate('regions', streams) - // await generateCountries(streams) - // await generateLanguages() // await generateRegions() // await generateIndex() // await generateIndexNSFW() @@ -26,143 +25,44 @@ async function main() { main() -async function generateCountries(streams) { - logger.info(`generating countries/...`) - const countries = await loadCountries() - const regions = await loadRegions() - for (const country of countries) { - let areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) - areaCodes.push(country.code) - const { count, items } = await generator.generate( - `${PUBLIC_PATH}/countries/${country.code.toLowerCase()}.m3u`, - streams, - { - public: true, - filter: s => _.intersection(areaCodes, s.broadcast_area).length - } - ) - - log.countries.push({ - name: country.name, - code: country.code, - count - }) - } - - const { count } = await generator.generate(`${PUBLIC_PATH}/countries/undefined.m3u`, streams, { - public: true, - filter: s => !s.broadcast_area.length, - onLoad: items => { - return items.map(item => { - item.group_title = 'Undefined' - return item - }) - } - }) - - log.countries.push({ - name: 'Undefined', - id: 'UNDEFINED', - count - }) - - // const { count: undefinedCount } = await generator.generate( - // `${PUBLIC_PATH}/countries/undefined.m3u`, - // { - // countries: { $size: 0 } - // }, - // { - // onLoad: function (items) { - // return items.map(item => { - // item.group_title = 'Undefined' - // return item - // }) - // } - // } - // ) - - // await log('countries', { - // name: 'Undefined', - // code: 'UNDEFINED', - // count: undefinedCount - // }) -} - -async function generateLanguages() { - logger.info(`Generating languages/...`) - - for (const language of _.uniqBy(languages, 'code')) { - const { count } = await generator.generate(`${PUBLIC_PATH}/languages/${language.code}.m3u`, { - languages: { $elemMatch: language } - }) - - await log('languages', { - name: language.name, - code: language.code, - count - }) - } - - const { count: undefinedCount } = await generator.generate( - `${PUBLIC_PATH}/languages/undefined.m3u`, - { - languages: { $size: 0 } - }, - { - onLoad: function (items) { - return items.map(item => { - item.group_title = 'Undefined' - return item - }) - } - } - ) - - await log('languages', { - name: 'Undefined', - code: 'undefined', - count: undefinedCount - }) -} - -async function generateRegions() { - logger.info(`Generating regions/...`) - - for (const region of regions) { - const { count } = await generator.generate( - `${PUBLIC_PATH}/regions/${region.code.toLowerCase()}.m3u`, - { - regions: { $elemMatch: region } - } - ) - - await log('regions', { - name: region.name, - code: region.code, - count - }) - } - - const { count: undefinedCount } = await generator.generate( - `${PUBLIC_PATH}/regions/undefined.m3u`, - { regions: { $size: 0 } }, - { - saveEmpty: true, - onLoad: function (items) { - return items.map(item => { - item.group_title = 'Undefined' - return item - }) - } - } - ) - - await log('regions', { - name: 'Undefined', - code: 'UNDEFINED', - count: undefinedCount - }) -} +// async function generateRegions() { +// logger.info(`Generating regions/...`) + +// for (const region of regions) { +// const { count } = await generator.generate( +// `${PUBLIC_PATH}/regions/${region.code.toLowerCase()}.m3u`, +// { +// regions: { $elemMatch: region } +// } +// ) + +// await log('regions', { +// name: region.name, +// code: region.code, +// count +// }) +// } + +// const { count: undefinedCount } = await generator.generate( +// `${PUBLIC_PATH}/regions/undefined.m3u`, +// { regions: { $size: 0 } }, +// { +// saveEmpty: true, +// onLoad: function (items) { +// return items.map(item => { +// item.group_title = 'Undefined' +// return item +// }) +// } +// } +// ) + +// await log('regions', { +// name: 'Undefined', +// code: 'UNDEFINED', +// count: undefinedCount +// }) +// } async function generateIndexNSFW() { logger.info(`Generating index.nsfw.m3u...`) diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 80fac18eb..37d85e0e9 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -2,6 +2,7 @@ const { create: createPlaylist } = require('./playlist') const logger = require('./logger') const file = require('./file') const generators = require('../generators') +const _ = require('lodash') const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' @@ -11,6 +12,12 @@ const generator = {} generator.generate = async function (name, items = []) { if (typeof generators[name] === 'function') { try { + items = _.orderBy( + items, + ['channel.name', 'status.level', 'resolution.height'], + ['asc', 'asc', 'desc'] + ) + items = _.uniqBy(items, s => s.channel_id || _.uniqueId()) const output = await generators[name].bind()(items) await file.create(`${LOGS_DIR}/${name}.log`, output.map(toJSON).join('\n')) for (const type of output) { diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js index 3262aed2b..c168f4ae2 100644 --- a/scripts/generators/categories.js +++ b/scripts/generators/categories.js @@ -2,12 +2,6 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.orderBy( - streams, - ['channel.name', 'status.level', 'resolution.height'], - ['asc', 'asc', 'desc'] - ) - streams = _.uniqBy(streams, s => s.channel_id || _.uniqueId()) const output = [] await api.categories.load() const categories = await api.categories.all() @@ -17,11 +11,7 @@ module.exports = async function (streams = []) { } let items = _.filter(streams, s => !s.categories.length) - items = items.map(item => { - item.group_title = 'Other' - return item - }) - output.push({ id: 'other', items }) + output.push({ id: 'undefined', items }) return output } diff --git a/scripts/generators/countries.js b/scripts/generators/countries.js new file mode 100644 index 000000000..b89d85738 --- /dev/null +++ b/scripts/generators/countries.js @@ -0,0 +1,21 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + const output = [] + await api.countries.load() + const countries = await api.countries.all() + await api.regions.load() + const regions = await api.regions.all() + for (const country of countries) { + const areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) + areaCodes.push(country.code) + let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) + output.push({ id: country.code.toLowerCase(), items }) + } + + let items = _.filter(streams, s => !s.broadcast_area.length) + output.push({ id: 'undefined', items }) + + return output +} diff --git a/scripts/generators/index.js b/scripts/generators/index.js index 75324864e..625ee4b3e 100644 --- a/scripts/generators/index.js +++ b/scripts/generators/index.js @@ -1 +1,4 @@ exports.categories = require('./categories') +exports.countries = require('./countries') +exports.languages = require('./languages') +exports.regions = require('./regions') diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js new file mode 100644 index 000000000..21dba6d95 --- /dev/null +++ b/scripts/generators/languages.js @@ -0,0 +1,20 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + const output = [] + await api.languages.load() + let languages = await api.languages.all() + languages = _.uniqBy(languages, 'code') + for (const language of languages) { + let items = _.filter(streams, { channel: { languages: [language.code] } }) + if (items.length) { + output.push({ id: language.code, items }) + } + } + + let items = _.filter(streams, s => !s.languages.length) + output.push({ id: 'undefined', items }) + + return output +} diff --git a/scripts/generators/regions.js b/scripts/generators/regions.js new file mode 100644 index 000000000..e7093ba1d --- /dev/null +++ b/scripts/generators/regions.js @@ -0,0 +1,19 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + const output = [] + await api.regions.load() + const regions = await api.regions.all() + for (const region of regions) { + const areaCodes = region.countries + areaCodes.push(region.code) + let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) + output.push({ id: region.code.toLowerCase(), items }) + } + + let items = _.filter(streams, s => !s.broadcast_area.length) + output.push({ id: 'undefined', items }) + + return output +} diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index 804ffc1a6..15ea1a9a3 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -1,12 +1,12 @@ module.exports = function () { if (this.group_title !== undefined) return this.group_title - if (Array.isArray(this.categories)) { + if (Array.isArray(this.categories) && this.categories.length) { return this.categories .map(i => i.name) .sort() .join(';') } - return '' + return 'Undefined' } diff --git a/tests/__data__/expected/.gh-pages/categories/other.m3u b/tests/__data__/expected/.gh-pages/categories/undefined.m3u similarity index 77% rename from tests/__data__/expected/.gh-pages/categories/other.m3u rename to tests/__data__/expected/.gh-pages/categories/undefined.m3u index 93eeb79d3..88cbb11bb 100644 --- a/tests/__data__/expected/.gh-pages/categories/other.m3u +++ b/tests/__data__/expected/.gh-pages/categories/undefined.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Other",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Tastemade +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Daawah TV +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/cat.m3u b/tests/__data__/expected/.gh-pages/languages/cat.m3u new file mode 100644 index 000000000..862706f18 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/languages/cat.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/eng.m3u b/tests/__data__/expected/.gh-pages/languages/eng.m3u index c9e8ad6e9..4c20e3838 100644 --- a/tests/__data__/expected/.gh-pages/languages/eng.m3u +++ b/tests/__data__/expected/.gh-pages/languages/eng.m3u @@ -1,3 +1,3 @@ -#EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/nld.m3u b/tests/__data__/expected/.gh-pages/languages/nld.m3u new file mode 100644 index 000000000..3c9f990fc --- /dev/null +++ b/tests/__data__/expected/.gh-pages/languages/nld.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/rus.m3u b/tests/__data__/expected/.gh-pages/languages/rus.m3u index 6e90aa990..0b77eed5a 100644 --- a/tests/__data__/expected/.gh-pages/languages/rus.m3u +++ b/tests/__data__/expected/.gh-pages/languages/rus.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/undefined.m3u b/tests/__data__/expected/.gh-pages/languages/undefined.m3u index 7ca9967b9..a5f46139b 100644 --- a/tests/__data__/expected/.gh-pages/languages/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/languages/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/asia.m3u b/tests/__data__/expected/.gh-pages/regions/asia.m3u index 6e90aa990..0b77eed5a 100644 --- a/tests/__data__/expected/.gh-pages/regions/asia.m3u +++ b/tests/__data__/expected/.gh-pages/regions/asia.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/cis.m3u b/tests/__data__/expected/.gh-pages/regions/cis.m3u index 6e90aa990..0b77eed5a 100644 --- a/tests/__data__/expected/.gh-pages/regions/cis.m3u +++ b/tests/__data__/expected/.gh-pages/regions/cis.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/emea.m3u b/tests/__data__/expected/.gh-pages/regions/emea.m3u index a99ae31b5..f0d6bc87a 100644 --- a/tests/__data__/expected/.gh-pages/regions/emea.m3u +++ b/tests/__data__/expected/.gh-pages/regions/emea.m3u @@ -1,5 +1,5 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/eur.m3u b/tests/__data__/expected/.gh-pages/regions/eur.m3u index a99ae31b5..f0d6bc87a 100644 --- a/tests/__data__/expected/.gh-pages/regions/eur.m3u +++ b/tests/__data__/expected/.gh-pages/regions/eur.m3u @@ -1,5 +1,5 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index 67cbf1093..da1cab5dd 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,3 +1,9 @@ -#EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/undefined.m3u b/tests/__data__/expected/.gh-pages/regions/undefined.m3u index e16261d1d..a5f46139b 100644 --- a/tests/__data__/expected/.gh-pages/regions/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/regions/undefined.m3u @@ -1,3 +1,5 @@ #EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/logs/generators/categories.log b/tests/__data__/expected/logs/generators/categories.log index f8900e017..7adc07286 100644 --- a/tests/__data__/expected/logs/generators/categories.log +++ b/tests/__data__/expected/logs/generators/categories.log @@ -26,4 +26,4 @@ {"id":"travel","count":0} {"id":"weather","count":0} {"id":"xxx","count":1} -{"id":"other","count":3} \ No newline at end of file +{"id":"undefined","count":3} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log index 2a686916b..962490c3c 100644 --- a/tests/__data__/expected/logs/generators/countries.log +++ b/tests/__data__/expected/logs/generators/countries.log @@ -1,251 +1,251 @@ -{"name":"Afghanistan","code":"AF","count":2} -{"name":"Albania","code":"AL","count":2} -{"name":"Algeria","code":"DZ","count":2} -{"name":"American Samoa","code":"AS","count":2} -{"name":"Andorra","code":"AD","count":3} -{"name":"Angola","code":"AO","count":2} -{"name":"Anguilla","code":"AI","count":2} -{"name":"Antarctica","code":"AQ","count":2} -{"name":"Antigua and Barbuda","code":"AG","count":2} -{"name":"Argentina","code":"AR","count":2} -{"name":"Armenia","code":"AM","count":2} -{"name":"Aruba","code":"AW","count":2} -{"name":"Australia","code":"AU","count":2} -{"name":"Austria","code":"AT","count":2} -{"name":"Azerbaijan","code":"AZ","count":2} -{"name":"Bahamas","code":"BS","count":2} -{"name":"Bahrain","code":"BH","count":2} -{"name":"Bangladesh","code":"BD","count":2} -{"name":"Barbados","code":"BB","count":2} -{"name":"Belarus","code":"BY","count":2} -{"name":"Belgium","code":"BE","count":2} -{"name":"Belize","code":"BZ","count":2} -{"name":"Benin","code":"BJ","count":2} -{"name":"Bermuda","code":"BM","count":2} -{"name":"Bhutan","code":"BT","count":2} -{"name":"Bolivia","code":"BO","count":2} -{"name":"Bonaire","code":"BQ","count":2} -{"name":"Bosnia and Herzegovina","code":"BA","count":2} -{"name":"Botswana","code":"BW","count":2} -{"name":"Bouvet Island","code":"BV","count":2} -{"name":"Brazil","code":"BR","count":2} -{"name":"British Indian Ocean Territory","code":"IO","count":2} -{"name":"British Virgin Islands","code":"VG","count":2} -{"name":"Brunei","code":"BN","count":2} -{"name":"Bulgaria","code":"BG","count":2} -{"name":"Burkina Faso","code":"BF","count":2} -{"name":"Burundi","code":"BI","count":2} -{"name":"Cambodia","code":"KH","count":2} -{"name":"Cameroon","code":"CM","count":2} -{"name":"Canada","code":"CA","count":2} -{"name":"Cape Verde","code":"CV","count":2} -{"name":"Cayman Islands","code":"KY","count":2} -{"name":"Central African Republic","code":"CF","count":2} -{"name":"Chad","code":"TD","count":2} -{"name":"Chile","code":"CL","count":2} -{"name":"China","code":"CN","count":2} -{"name":"Christmas Island","code":"CX","count":2} -{"name":"Cocos (Keeling) Islands","code":"CC","count":2} -{"name":"Colombia","code":"CO","count":2} -{"name":"Comoros","code":"KM","count":2} -{"name":"Cook Islands","code":"CK","count":2} -{"name":"Costa Rica","code":"CR","count":2} -{"name":"Croatia","code":"HR","count":2} -{"name":"Cuba","code":"CU","count":2} -{"name":"Curacao","code":"CW","count":2} -{"name":"Cyprus","code":"CY","count":2} -{"name":"Czech Republic","code":"CZ","count":2} -{"name":"Democratic Republic of the Congo","code":"CD","count":2} -{"name":"Denmark","code":"DK","count":2} -{"name":"Djibouti","code":"DJ","count":2} -{"name":"Dominica","code":"DM","count":2} -{"name":"Dominican Republic","code":"DO","count":2} -{"name":"East Timor","code":"TL","count":2} -{"name":"Ecuador","code":"EC","count":2} -{"name":"Egypt","code":"EG","count":2} -{"name":"El Salvador","code":"SV","count":2} -{"name":"Equatorial Guinea","code":"GQ","count":2} -{"name":"Eritrea","code":"ER","count":2} -{"name":"Estonia","code":"EE","count":2} -{"name":"Ethiopia","code":"ET","count":2} -{"name":"Falkland Islands","code":"FK","count":2} -{"name":"Faroe Islands","code":"FO","count":2} -{"name":"Fiji","code":"FJ","count":2} -{"name":"Finland","code":"FI","count":2} -{"name":"France","code":"FR","count":2} -{"name":"French Guiana","code":"GF","count":2} -{"name":"French Polynesia","code":"PF","count":2} -{"name":"French Southern Territories","code":"TF","count":2} -{"name":"Gabon","code":"GA","count":2} -{"name":"Gambia","code":"GM","count":2} -{"name":"Georgia","code":"GE","count":2} -{"name":"Germany","code":"DE","count":2} -{"name":"Ghana","code":"GH","count":2} -{"name":"Gibraltar","code":"GI","count":2} -{"name":"Greece","code":"GR","count":2} -{"name":"Greenland","code":"GL","count":2} -{"name":"Grenada","code":"GD","count":2} -{"name":"Guadeloupe","code":"GP","count":2} -{"name":"Guam","code":"GU","count":2} -{"name":"Guatemala","code":"GT","count":2} -{"name":"Guernsey","code":"GG","count":2} -{"name":"Guinea","code":"GN","count":2} -{"name":"Guinea-Bissau","code":"GW","count":2} -{"name":"Guyana","code":"GY","count":2} -{"name":"Haiti","code":"HT","count":2} -{"name":"Heard Island and McDonald Islands","code":"HM","count":2} -{"name":"Honduras","code":"HN","count":2} -{"name":"Hong Kong","code":"HK","count":2} -{"name":"Hungary","code":"HU","count":2} -{"name":"Iceland","code":"IS","count":2} -{"name":"India","code":"IN","count":2} -{"name":"Indonesia","code":"ID","count":2} -{"name":"Iran","code":"IR","count":2} -{"name":"Iraq","code":"IQ","count":2} -{"name":"Ireland","code":"IE","count":2} -{"name":"Isle of Man","code":"IM","count":2} -{"name":"Israel","code":"IL","count":2} -{"name":"Italy","code":"IT","count":2} -{"name":"Ivory Coast","code":"CI","count":2} -{"name":"Jamaica","code":"JM","count":2} -{"name":"Japan","code":"JP","count":2} -{"name":"Jersey","code":"JE","count":2} -{"name":"Jordan","code":"JO","count":2} -{"name":"Kazakhstan","code":"KZ","count":2} -{"name":"Kenya","code":"KE","count":2} -{"name":"Kiribati","code":"KI","count":2} -{"name":"Kosovo","code":"XK","count":2} -{"name":"Kuwait","code":"KW","count":2} -{"name":"Kyrgyzstan","code":"KG","count":2} -{"name":"Laos","code":"LA","count":2} -{"name":"Latvia","code":"LV","count":2} -{"name":"Lebanon","code":"LB","count":2} -{"name":"Lesotho","code":"LS","count":2} -{"name":"Liberia","code":"LR","count":2} -{"name":"Libya","code":"LY","count":2} -{"name":"Liechtenstein","code":"LI","count":2} -{"name":"Lithuania","code":"LT","count":2} -{"name":"Luxembourg","code":"LU","count":2} -{"name":"Macao","code":"MO","count":2} -{"name":"Madagascar","code":"MG","count":2} -{"name":"Malawi","code":"MW","count":2} -{"name":"Malaysia","code":"MY","count":2} -{"name":"Maldives","code":"MV","count":2} -{"name":"Mali","code":"ML","count":2} -{"name":"Malta","code":"MT","count":2} -{"name":"Marshall Islands","code":"MH","count":2} -{"name":"Martinique","code":"MQ","count":2} -{"name":"Mauritania","code":"MR","count":2} -{"name":"Mauritius","code":"MU","count":2} -{"name":"Mayotte","code":"YT","count":2} -{"name":"Mexico","code":"MX","count":2} -{"name":"Micronesia","code":"FM","count":2} -{"name":"Moldova","code":"MD","count":2} -{"name":"Monaco","code":"MC","count":2} -{"name":"Mongolia","code":"MN","count":2} -{"name":"Montenegro","code":"ME","count":2} -{"name":"Montserrat","code":"MS","count":2} -{"name":"Morocco","code":"MA","count":2} -{"name":"Mozambique","code":"MZ","count":2} -{"name":"Myanmar (Burma)","code":"MM","count":2} -{"name":"Namibia","code":"NA","count":2} -{"name":"Nauru","code":"NR","count":2} -{"name":"Nepal","code":"NP","count":2} -{"name":"Netherlands","code":"NL","count":2} -{"name":"New Caledonia","code":"NC","count":2} -{"name":"New Zealand","code":"NZ","count":2} -{"name":"Nicaragua","code":"NI","count":2} -{"name":"Niger","code":"NE","count":2} -{"name":"Nigeria","code":"NG","count":2} -{"name":"Niue","code":"NU","count":2} -{"name":"Norfolk Island","code":"NF","count":2} -{"name":"North Korea","code":"KP","count":2} -{"name":"North Macedonia","code":"MK","count":2} -{"name":"Northern Mariana Islands","code":"MP","count":2} -{"name":"Norway","code":"NO","count":2} -{"name":"Oman","code":"OM","count":2} -{"name":"Pakistan","code":"PK","count":2} -{"name":"Palau","code":"PW","count":2} -{"name":"Palestine","code":"PS","count":2} -{"name":"Panama","code":"PA","count":2} -{"name":"Papua New Guinea","code":"PG","count":2} -{"name":"Paraguay","code":"PY","count":2} -{"name":"Peru","code":"PE","count":2} -{"name":"Philippines","code":"PH","count":2} -{"name":"Pitcairn Islands","code":"PN","count":2} -{"name":"Poland","code":"PL","count":2} -{"name":"Portugal","code":"PT","count":2} -{"name":"Puerto Rico","code":"PR","count":2} -{"name":"Qatar","code":"QA","count":2} -{"name":"Republic of the Congo","code":"CG","count":2} -{"name":"Romania","code":"RO","count":2} -{"name":"Russia","code":"RU","count":3} -{"name":"Rwanda","code":"RW","count":2} -{"name":"Réunion","code":"RE","count":2} -{"name":"Saint Barthélemy","code":"BL","count":2} -{"name":"Saint Helena","code":"SH","count":2} -{"name":"Saint Kitts and Nevis","code":"KN","count":2} -{"name":"Saint Lucia","code":"LC","count":2} -{"name":"Saint Martin","code":"MF","count":2} -{"name":"Saint Pierre and Miquelon","code":"PM","count":2} -{"name":"Saint Vincent and the Grenadines","code":"VC","count":2} -{"name":"Samoa","code":"WS","count":2} -{"name":"San Marino","code":"SM","count":2} -{"name":"Saudi Arabia","code":"SA","count":2} -{"name":"Senegal","code":"SN","count":2} -{"name":"Serbia","code":"RS","count":2} -{"name":"Seychelles","code":"SC","count":2} -{"name":"Sierra Leone","code":"SL","count":2} -{"name":"Singapore","code":"SG","count":2} -{"name":"Sint Maarten","code":"SX","count":2} -{"name":"Slovakia","code":"SK","count":2} -{"name":"Slovenia","code":"SI","count":2} -{"name":"Solomon Islands","code":"SB","count":2} -{"name":"Somalia","code":"SO","count":2} -{"name":"South Africa","code":"ZA","count":2} -{"name":"South Georgia and the South Sandwich Islands","code":"GS","count":2} -{"name":"South Korea","code":"KR","count":2} -{"name":"South Sudan","code":"SS","count":2} -{"name":"Spain","code":"ES","count":2} -{"name":"Sri Lanka","code":"LK","count":2} -{"name":"Sudan","code":"SD","count":2} -{"name":"Suriname","code":"SR","count":2} -{"name":"Svalbard and Jan Mayen","code":"SJ","count":2} -{"name":"Swaziland","code":"SZ","count":2} -{"name":"Sweden","code":"SE","count":2} -{"name":"Switzerland","code":"CH","count":2} -{"name":"Syria","code":"SY","count":2} -{"name":"São Tomé and Príncipe","code":"ST","count":2} -{"name":"Taiwan","code":"TW","count":2} -{"name":"Tajikistan","code":"TJ","count":2} -{"name":"Tanzania","code":"TZ","count":2} -{"name":"Thailand","code":"TH","count":2} -{"name":"Togo","code":"TG","count":2} -{"name":"Tokelau","code":"TK","count":2} -{"name":"Tonga","code":"TO","count":2} -{"name":"Trinidad and Tobago","code":"TT","count":2} -{"name":"Tunisia","code":"TN","count":2} -{"name":"Turkey","code":"TR","count":2} -{"name":"Turkmenistan","code":"TM","count":2} -{"name":"Turks and Caicos Islands","code":"TC","count":2} -{"name":"Tuvalu","code":"TV","count":2} -{"name":"U.S. Minor Outlying Islands","code":"UM","count":2} -{"name":"U.S. Virgin Islands","code":"VI","count":2} -{"name":"Uganda","code":"UG","count":2} -{"name":"Ukraine","code":"UA","count":2} -{"name":"United Arab Emirates","code":"AE","count":2} -{"name":"United Kingdom","code":"UK","count":2} -{"name":"United States","code":"US","count":2} -{"name":"Uruguay","code":"UY","count":2} -{"name":"Uzbekistan","code":"UZ","count":2} -{"name":"Vanuatu","code":"VU","count":2} -{"name":"Vatican City","code":"VA","count":2} -{"name":"Venezuela","code":"VE","count":2} -{"name":"Vietnam","code":"VN","count":2} -{"name":"Wallis and Futuna","code":"WF","count":2} -{"name":"Western Sahara","code":"EH","count":2} -{"name":"Yemen","code":"YE","count":2} -{"name":"Zambia","code":"ZM","count":2} -{"name":"Zimbabwe","code":"ZW","count":2} -{"name":"Åland","code":"AX","count":2} -{"name":"Undefined","id":"UNDEFINED","count":2} \ No newline at end of file +{"id":"af","count":2} +{"id":"al","count":2} +{"id":"dz","count":2} +{"id":"as","count":2} +{"id":"ad","count":3} +{"id":"ao","count":2} +{"id":"ai","count":2} +{"id":"aq","count":2} +{"id":"ag","count":2} +{"id":"ar","count":2} +{"id":"am","count":2} +{"id":"aw","count":2} +{"id":"au","count":2} +{"id":"at","count":2} +{"id":"az","count":2} +{"id":"bs","count":2} +{"id":"bh","count":2} +{"id":"bd","count":2} +{"id":"bb","count":2} +{"id":"by","count":2} +{"id":"be","count":2} +{"id":"bz","count":2} +{"id":"bj","count":2} +{"id":"bm","count":2} +{"id":"bt","count":2} +{"id":"bo","count":2} +{"id":"bq","count":2} +{"id":"ba","count":2} +{"id":"bw","count":2} +{"id":"bv","count":2} +{"id":"br","count":2} +{"id":"io","count":2} +{"id":"vg","count":2} +{"id":"bn","count":2} +{"id":"bg","count":2} +{"id":"bf","count":2} +{"id":"bi","count":2} +{"id":"kh","count":2} +{"id":"cm","count":2} +{"id":"ca","count":2} +{"id":"cv","count":2} +{"id":"ky","count":2} +{"id":"cf","count":2} +{"id":"td","count":2} +{"id":"cl","count":2} +{"id":"cn","count":2} +{"id":"cx","count":2} +{"id":"cc","count":2} +{"id":"co","count":2} +{"id":"km","count":2} +{"id":"ck","count":2} +{"id":"cr","count":2} +{"id":"hr","count":2} +{"id":"cu","count":2} +{"id":"cw","count":2} +{"id":"cy","count":2} +{"id":"cz","count":2} +{"id":"cd","count":2} +{"id":"dk","count":2} +{"id":"dj","count":2} +{"id":"dm","count":2} +{"id":"do","count":2} +{"id":"tl","count":2} +{"id":"ec","count":2} +{"id":"eg","count":2} +{"id":"sv","count":2} +{"id":"gq","count":2} +{"id":"er","count":2} +{"id":"ee","count":2} +{"id":"et","count":2} +{"id":"fk","count":2} +{"id":"fo","count":2} +{"id":"fj","count":2} +{"id":"fi","count":2} +{"id":"fr","count":2} +{"id":"gf","count":2} +{"id":"pf","count":2} +{"id":"tf","count":2} +{"id":"ga","count":2} +{"id":"gm","count":2} +{"id":"ge","count":2} +{"id":"de","count":2} +{"id":"gh","count":2} +{"id":"gi","count":2} +{"id":"gr","count":2} +{"id":"gl","count":2} +{"id":"gd","count":2} +{"id":"gp","count":2} +{"id":"gu","count":2} +{"id":"gt","count":2} +{"id":"gg","count":2} +{"id":"gn","count":2} +{"id":"gw","count":2} +{"id":"gy","count":2} +{"id":"ht","count":2} +{"id":"hm","count":2} +{"id":"hn","count":2} +{"id":"hk","count":2} +{"id":"hu","count":2} +{"id":"is","count":2} +{"id":"in","count":2} +{"id":"id","count":2} +{"id":"ir","count":2} +{"id":"iq","count":2} +{"id":"ie","count":2} +{"id":"im","count":2} +{"id":"il","count":2} +{"id":"it","count":2} +{"id":"ci","count":2} +{"id":"jm","count":2} +{"id":"jp","count":2} +{"id":"je","count":2} +{"id":"jo","count":2} +{"id":"kz","count":2} +{"id":"ke","count":2} +{"id":"ki","count":2} +{"id":"xk","count":2} +{"id":"kw","count":2} +{"id":"kg","count":2} +{"id":"la","count":2} +{"id":"lv","count":2} +{"id":"lb","count":2} +{"id":"ls","count":2} +{"id":"lr","count":2} +{"id":"ly","count":2} +{"id":"li","count":2} +{"id":"lt","count":2} +{"id":"lu","count":2} +{"id":"mo","count":2} +{"id":"mg","count":2} +{"id":"mw","count":2} +{"id":"my","count":2} +{"id":"mv","count":2} +{"id":"ml","count":2} +{"id":"mt","count":2} +{"id":"mh","count":2} +{"id":"mq","count":2} +{"id":"mr","count":2} +{"id":"mu","count":2} +{"id":"yt","count":2} +{"id":"mx","count":2} +{"id":"fm","count":2} +{"id":"md","count":2} +{"id":"mc","count":2} +{"id":"mn","count":2} +{"id":"me","count":2} +{"id":"ms","count":2} +{"id":"ma","count":2} +{"id":"mz","count":2} +{"id":"mm","count":2} +{"id":"na","count":2} +{"id":"nr","count":2} +{"id":"np","count":2} +{"id":"nl","count":2} +{"id":"nc","count":2} +{"id":"nz","count":2} +{"id":"ni","count":2} +{"id":"ne","count":2} +{"id":"ng","count":2} +{"id":"nu","count":2} +{"id":"nf","count":2} +{"id":"kp","count":2} +{"id":"mk","count":2} +{"id":"mp","count":2} +{"id":"no","count":2} +{"id":"om","count":2} +{"id":"pk","count":2} +{"id":"pw","count":2} +{"id":"ps","count":2} +{"id":"pa","count":2} +{"id":"pg","count":2} +{"id":"py","count":2} +{"id":"pe","count":2} +{"id":"ph","count":2} +{"id":"pn","count":2} +{"id":"pl","count":2} +{"id":"pt","count":2} +{"id":"pr","count":2} +{"id":"qa","count":2} +{"id":"cg","count":2} +{"id":"ro","count":2} +{"id":"ru","count":3} +{"id":"rw","count":2} +{"id":"re","count":2} +{"id":"bl","count":2} +{"id":"sh","count":2} +{"id":"kn","count":2} +{"id":"lc","count":2} +{"id":"mf","count":2} +{"id":"pm","count":2} +{"id":"vc","count":2} +{"id":"ws","count":2} +{"id":"sm","count":2} +{"id":"sa","count":2} +{"id":"sn","count":2} +{"id":"rs","count":2} +{"id":"sc","count":2} +{"id":"sl","count":2} +{"id":"sg","count":2} +{"id":"sx","count":2} +{"id":"sk","count":2} +{"id":"si","count":2} +{"id":"sb","count":2} +{"id":"so","count":2} +{"id":"za","count":2} +{"id":"gs","count":2} +{"id":"kr","count":2} +{"id":"ss","count":2} +{"id":"es","count":2} +{"id":"lk","count":2} +{"id":"sd","count":2} +{"id":"sr","count":2} +{"id":"sj","count":2} +{"id":"sz","count":2} +{"id":"se","count":2} +{"id":"ch","count":2} +{"id":"sy","count":2} +{"id":"st","count":2} +{"id":"tw","count":2} +{"id":"tj","count":2} +{"id":"tz","count":2} +{"id":"th","count":2} +{"id":"tg","count":2} +{"id":"tk","count":2} +{"id":"to","count":2} +{"id":"tt","count":2} +{"id":"tn","count":2} +{"id":"tr","count":2} +{"id":"tm","count":2} +{"id":"tc","count":2} +{"id":"tv","count":2} +{"id":"um","count":2} +{"id":"vi","count":2} +{"id":"ug","count":2} +{"id":"ua","count":2} +{"id":"ae","count":2} +{"id":"uk","count":2} +{"id":"us","count":2} +{"id":"uy","count":2} +{"id":"uz","count":2} +{"id":"vu","count":2} +{"id":"va","count":2} +{"id":"ve","count":2} +{"id":"vn","count":2} +{"id":"wf","count":2} +{"id":"eh","count":2} +{"id":"ye","count":2} +{"id":"zm","count":2} +{"id":"zw","count":2} +{"id":"ax","count":2} +{"id":"undefined","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/languages.log b/tests/__data__/expected/logs/generators/languages.log index 02eee06c2..79aeb3b2d 100644 --- a/tests/__data__/expected/logs/generators/languages.log +++ b/tests/__data__/expected/logs/generators/languages.log @@ -1,4 +1,5 @@ -{"name":"Catalan","code":"cat","count":0} -{"name":"English","code":"eng","count":1} -{"name":"Russian","code":"rus","count":1} -{"name":"Undefined","code":"undefined","count":2} +{"id":"cat","count":1} +{"id":"eng","count":1} +{"id":"nld","count":1} +{"id":"rus","count":1} +{"id":"undefined","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/regions.log b/tests/__data__/expected/logs/generators/regions.log index 3380f477f..2722a163c 100644 --- a/tests/__data__/expected/logs/generators/regions.log +++ b/tests/__data__/expected/logs/generators/regions.log @@ -1,6 +1,25 @@ -{"name":"Asia","code":"ASIA","count":1} -{"name":"Commonwealth of Independent States","code":"CIS","count":1} -{"name":"Europe","code":"EUR","count":2} -{"name":"Europe, the Middle East and Africa","code":"EMEA","count":2} -{"name":"Worldwide","code":"INT","count":1} -{"name":"Undefined","code":"UNDEFINED","count":1} +{"id":"afr","count":0} +{"id":"amer","count":0} +{"id":"arab","count":0} +{"id":"asia","count":1} +{"id":"apac","count":0} +{"id":"carib","count":0} +{"id":"cas","count":0} +{"id":"cis","count":1} +{"id":"eur","count":2} +{"id":"emea","count":2} +{"id":"hispam","count":0} +{"id":"latam","count":0} +{"id":"lac","count":0} +{"id":"maghreb","count":0} +{"id":"mideast","count":0} +{"id":"mena","count":0} +{"id":"nord","count":0} +{"id":"noram","count":0} +{"id":"nam","count":0} +{"id":"oce","count":0} +{"id":"sas","count":0} +{"id":"ssa","count":0} +{"id":"wafr","count":0} +{"id":"int","count":4} +{"id":"undefined","count":2} \ No newline at end of file diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index 1d13e60e1..14a6e5aaa 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -18,23 +18,35 @@ beforeEach(() => { console.log(stdout) }) -fit.each([ - '.gh-pages/categories/general.m3u', - '.gh-pages/categories/legislative.m3u', - '.gh-pages/categories/news.m3u', - '.gh-pages/categories/other.m3u', - 'logs/generators/categories.log' -])('can generate %s', filepath => { - expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) -}) +it('can generate playlists', () => { + const files = [ + '.gh-pages/categories/general.m3u', + '.gh-pages/categories/legislative.m3u', + '.gh-pages/categories/news.m3u', + '.gh-pages/categories/undefined.m3u', + 'logs/generators/categories.log', + '.gh-pages/countries/ru.m3u', + '.gh-pages/countries/uk.m3u', + '.gh-pages/countries/undefined.m3u', + 'logs/generators/countries.log', + '.gh-pages/languages/cat.m3u', + '.gh-pages/languages/eng.m3u', + '.gh-pages/languages/nld.m3u', + '.gh-pages/languages/rus.m3u', + '.gh-pages/languages/undefined.m3u', + 'logs/generators/languages.log', + '.gh-pages/regions/asia.m3u', + '.gh-pages/regions/cis.m3u', + '.gh-pages/regions/emea.m3u', + '.gh-pages/regions/eur.m3u', + '.gh-pages/regions/int.m3u', + '.gh-pages/regions/undefined.m3u', + 'logs/generators/regions.log' + ] -it.each([ - '.gh-pages/countries/ru.m3u', - '.gh-pages/countries/uk.m3u', - '.gh-pages/countries/undefined.m3u', - 'logs/generators/countries.log' -])('can generate %s', filepath => { - expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) + files.forEach(filepath => { + expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) + }) }) function content(filepath) { From 86e0c2f7dae9d2b9ae4d3d06c518b4805112849c Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 02:27:15 +0300 Subject: [PATCH 020/157] wip --- package-lock.json | 28 + package.json | 9 +- scripts/commands/generate-playlists.js | 448 +++++++--------- scripts/core/generator.js | 13 +- scripts/generators/categories.js | 4 +- scripts/generators/countries.js | 4 +- scripts/generators/index.js | 1 + scripts/generators/index_m3u.js | 6 + scripts/generators/languages.js | 4 +- scripts/generators/regions.js | 4 +- .../.gh-pages/categories/undefined.m3u | 8 +- .../expected/.gh-pages/categories/xxx.m3u | 3 + .../expected/.gh-pages/countries/ru.m3u | 4 +- .../.gh-pages/countries/undefined.m3u | 4 +- .../expected/.gh-pages/index.category.m3u | 11 - .../expected/.gh-pages/index.country.m3u | 13 - .../expected/.gh-pages/index.language.m3u | 9 - tests/__data__/expected/.gh-pages/index.m3u | 18 +- .../expected/.gh-pages/index.nsfw.m3u | 11 - .../expected/.gh-pages/index.region.m3u | 17 - .../expected/.gh-pages/languages/cat.m3u | 4 +- .../.gh-pages/languages/undefined.m3u | 4 +- .../expected/.gh-pages/regions/emea.m3u | 4 +- .../expected/.gh-pages/regions/eur.m3u | 4 +- .../expected/.gh-pages/regions/int.m3u | 8 +- .../expected/.gh-pages/regions/undefined.m3u | 4 +- .../expected/logs/generators/categories.log | 58 +- .../expected/logs/generators/countries.log | 502 +++++++++--------- .../expected/logs/generators/languages.log | 10 +- .../expected/logs/generators/regions.log | 50 +- tests/commands/generate-playlists.test.js | 40 +- 31 files changed, 610 insertions(+), 697 deletions(-) create mode 100644 scripts/generators/index_m3u.js create mode 100644 tests/__data__/expected/.gh-pages/categories/xxx.m3u delete mode 100644 tests/__data__/expected/.gh-pages/index.category.m3u delete mode 100644 tests/__data__/expected/.gh-pages/index.country.m3u delete mode 100644 tests/__data__/expected/.gh-pages/index.language.m3u delete mode 100644 tests/__data__/expected/.gh-pages/index.nsfw.m3u delete mode 100644 tests/__data__/expected/.gh-pages/index.region.m3u diff --git a/package-lock.json b/package-lock.json index bb28332f5..129d55824 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,8 +23,18 @@ "normalize-url": "^6.1.0", "transliteration": "^2.2.0", "winston": "^3.3.3" + }, + "devDependencies": { + "@alex_neo/jest-expect-message": "^1.0.5", + "jest-expect-message": "^1.0.2" } }, + "node_modules/@alex_neo/jest-expect-message": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@alex_neo/jest-expect-message/-/jest-expect-message-1.0.5.tgz", + "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==", + "dev": true + }, "node_modules/@babel/code-frame": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", @@ -2413,6 +2423,12 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, + "node_modules/jest-expect-message": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/jest-expect-message/-/jest-expect-message-1.0.2.tgz", + "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==", + "dev": true + }, "node_modules/jest-get-type": { "version": "27.4.0", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", @@ -4220,6 +4236,12 @@ } }, "dependencies": { + "@alex_neo/jest-expect-message": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@alex_neo/jest-expect-message/-/jest-expect-message-1.0.5.tgz", + "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==", + "dev": true + }, "@babel/code-frame": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", @@ -6071,6 +6093,12 @@ "jest-util": "^27.4.2" } }, + "jest-expect-message": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/jest-expect-message/-/jest-expect-message-1.0.2.tgz", + "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==", + "dev": true + }, "jest-get-type": { "version": "27.4.0", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", diff --git a/package.json b/package.json index 9895079c5..9ea1ec6b5 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,10 @@ "test": "jest --runInBand" }, "jest": { - "testRegex": "tests/(.*?/)?.*test.js$" + "testRegex": "tests/(.*?/)?.*test.js$", + "setupFilesAfterEnv": [ + "@alex_neo/jest-expect-message" + ] }, "author": "Arhey", "private": true, @@ -28,5 +31,9 @@ "normalize-url": "^6.1.0", "transliteration": "^2.2.0", "winston": "^3.3.3" + }, + "devDependencies": { + "@alex_neo/jest-expect-message": "^1.0.5", + "jest-expect-message": "^1.0.2" } } diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index 5530f27f6..b20ecfd2d 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -9,274 +9,17 @@ async function main() { await generator.generate('countries', streams) await generator.generate('languages', streams) await generator.generate('regions', streams) + await generator.generate('index_m3u', streams) - // await generateRegions() - // await generateIndex() // await generateIndexNSFW() // await generateIndexCategory() // await generateIndexCountry() // await generateIndexLanguage() // await generateIndexRegion() - - // await generateChannelsJson() - - // await saveLogs() } main() -// async function generateRegions() { -// logger.info(`Generating regions/...`) - -// for (const region of regions) { -// const { count } = await generator.generate( -// `${PUBLIC_PATH}/regions/${region.code.toLowerCase()}.m3u`, -// { -// regions: { $elemMatch: region } -// } -// ) - -// await log('regions', { -// name: region.name, -// code: region.code, -// count -// }) -// } - -// const { count: undefinedCount } = await generator.generate( -// `${PUBLIC_PATH}/regions/undefined.m3u`, -// { regions: { $size: 0 } }, -// { -// saveEmpty: true, -// onLoad: function (items) { -// return items.map(item => { -// item.group_title = 'Undefined' -// return item -// }) -// } -// } -// ) - -// await log('regions', { -// name: 'Undefined', -// code: 'UNDEFINED', -// count: undefinedCount -// }) -// } - -async function generateIndexNSFW() { - logger.info(`Generating index.nsfw.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.nsfw.m3u`, - {}, - { - includeNSFW: true, - onLoad: function (items) { - return items.map(item => { - if (!item.categories || !item.categories.length) { - item.group_title = 'Other' - } - - return item - }) - }, - sortBy: item => { - if (item.group_title === 'Other') return '_' - return item.group_title || '' - } - } - ) -} - -async function generateIndex() { - logger.info(`Generating index.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.m3u`, - {}, - { - onLoad: function (items) { - return items.map(item => { - if (!item.categories || !item.categories.length) { - item.group_title = 'Other' - } - - return item - }) - }, - sortBy: item => { - if (item.group_title === 'Other') return '_' - return item.group_title || '' - } - } - ) -} - -async function generateIndexCategory() { - logger.info(`Generating index.category.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.category.m3u`, - {}, - { - onLoad: function (items) { - let results = items - .filter(item => !item.categories || !item.categories.length) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = 'Other' - return newItem - }) - for (const category of _.sortBy(Object.values(categories), ['name'])) { - let filtered = items - .filter(item => { - return ( - Array.isArray(item.categories) && - item.categories.map(c => c.slug).includes(category.slug) - ) - }) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = category.name - return newItem - }) - results = results.concat(filtered) - } - - return results - }, - sortBy: item => { - if (item.group_title === 'Other') return '_' - return item.group_title - } - } - ) -} - -async function generateIndexCountry() { - logger.info(`Generating index.country.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.country.m3u`, - {}, - { - onLoad: function (items) { - let results = items - .filter(item => !item.countries || !item.countries.length) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = 'Undefined' - newItem.categories = [] - return newItem - }) - for (const country of _.sortBy(Object.values(countries), ['name'])) { - let filtered = items - .filter(item => { - return ( - Array.isArray(item.countries) && - item.countries.map(c => c.code).includes(country.code) - ) - }) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = country.name - return newItem - }) - results = results.concat(filtered) - } - - return results - }, - sortBy: item => { - if (item.group_title === 'Undefined') return '_' - return item.group_title - } - } - ) -} - -async function generateIndexLanguage() { - logger.info(`Generating index.language.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.language.m3u`, - {}, - { - onLoad: function (items) { - let results = items - .filter(item => !item.languages || !item.languages.length) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = 'Undefined' - newItem.categories = [] - return newItem - }) - for (const language of languages) { - let filtered = items - .filter(item => { - return ( - Array.isArray(item.languages) && - item.languages.map(c => c.code).includes(language.code) - ) - }) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = language.name - return newItem - }) - results = results.concat(filtered) - } - - return results - }, - sortBy: item => { - if (item.group_title === 'Undefined') return '_' - return item.group_title - } - } - ) -} - -async function generateIndexRegion() { - logger.info(`Generating index.region.m3u...`) - - await generator.generate( - `${PUBLIC_PATH}/index.region.m3u`, - {}, - { - onLoad: function (items) { - let results = items - .filter(item => !item.regions.length) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = 'Undefined' - newItem.categories = [] - return newItem - }) - for (const region of regions) { - let filtered = items - .filter(item => { - return item.regions.map(c => c.code).includes(region.code) - }) - .map(item => { - const newItem = _.cloneDeep(item) - newItem.group_title = region.name - return newItem - }) - results = results.concat(filtered) - } - - return results - }, - sortBy: item => { - if (item.group_title === 'Undefined') return '_' - return item.group_title - } - } - ) -} - async function loadStreams() { await api.channels.load() let channels = await api.channels.all() @@ -318,3 +61,192 @@ async function loadStreams() { return stream }) } + +// async function generateIndexNSFW() { +// logger.info(`Generating index.nsfw.m3u...`) + +// await generator.generate( +// `${PUBLIC_PATH}/index.nsfw.m3u`, +// {}, +// { +// includeNSFW: true, +// onLoad: function (items) { +// return items.map(item => { +// if (!item.categories || !item.categories.length) { +// item.group_title = 'Other' +// } + +// return item +// }) +// }, +// sortBy: item => { +// if (item.group_title === 'Other') return '_' +// return item.group_title || '' +// } +// } +// ) +// } + +// async function generateIndexCategory() { +// logger.info(`Generating index.category.m3u...`) + +// await generator.generate( +// `${PUBLIC_PATH}/index.category.m3u`, +// {}, +// { +// onLoad: function (items) { +// let results = items +// .filter(item => !item.categories || !item.categories.length) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = 'Other' +// return newItem +// }) +// for (const category of _.sortBy(Object.values(categories), ['name'])) { +// let filtered = items +// .filter(item => { +// return ( +// Array.isArray(item.categories) && +// item.categories.map(c => c.slug).includes(category.slug) +// ) +// }) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = category.name +// return newItem +// }) +// results = results.concat(filtered) +// } + +// return results +// }, +// sortBy: item => { +// if (item.group_title === 'Other') return '_' +// return item.group_title +// } +// } +// ) +// } + +// async function generateIndexCountry() { +// logger.info(`Generating index.country.m3u...`) + +// await generator.generate( +// `${PUBLIC_PATH}/index.country.m3u`, +// {}, +// { +// onLoad: function (items) { +// let results = items +// .filter(item => !item.countries || !item.countries.length) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = 'Undefined' +// newItem.categories = [] +// return newItem +// }) +// for (const country of _.sortBy(Object.values(countries), ['name'])) { +// let filtered = items +// .filter(item => { +// return ( +// Array.isArray(item.countries) && +// item.countries.map(c => c.code).includes(country.code) +// ) +// }) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = country.name +// return newItem +// }) +// results = results.concat(filtered) +// } + +// return results +// }, +// sortBy: item => { +// if (item.group_title === 'Undefined') return '_' +// return item.group_title +// } +// } +// ) +// } + +// async function generateIndexLanguage() { +// logger.info(`Generating index.language.m3u...`) + +// await generator.generate( +// `${PUBLIC_PATH}/index.language.m3u`, +// {}, +// { +// onLoad: function (items) { +// let results = items +// .filter(item => !item.languages || !item.languages.length) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = 'Undefined' +// newItem.categories = [] +// return newItem +// }) +// for (const language of languages) { +// let filtered = items +// .filter(item => { +// return ( +// Array.isArray(item.languages) && +// item.languages.map(c => c.code).includes(language.code) +// ) +// }) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = language.name +// return newItem +// }) +// results = results.concat(filtered) +// } + +// return results +// }, +// sortBy: item => { +// if (item.group_title === 'Undefined') return '_' +// return item.group_title +// } +// } +// ) +// } + +// async function generateIndexRegion() { +// logger.info(`Generating index.region.m3u...`) + +// await generator.generate( +// `${PUBLIC_PATH}/index.region.m3u`, +// {}, +// { +// onLoad: function (items) { +// let results = items +// .filter(item => !item.regions.length) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = 'Undefined' +// newItem.categories = [] +// return newItem +// }) +// for (const region of regions) { +// let filtered = items +// .filter(item => { +// return item.regions.map(c => c.code).includes(region.code) +// }) +// .map(item => { +// const newItem = _.cloneDeep(item) +// newItem.group_title = region.name +// return newItem +// }) +// results = results.concat(filtered) +// } + +// return results +// }, +// sortBy: item => { +// if (item.group_title === 'Undefined') return '_' +// return item.group_title +// } +// } +// ) +// } diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 37d85e0e9..169ce8372 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -14,16 +14,17 @@ generator.generate = async function (name, items = []) { try { items = _.orderBy( items, - ['channel.name', 'status.level', 'resolution.height'], + ['channel_name', 'status.level', 'resolution.height'], ['asc', 'asc', 'desc'] ) items = _.uniqBy(items, s => s.channel_id || _.uniqueId()) - const output = await generators[name].bind()(items) - await file.create(`${LOGS_DIR}/${name}.log`, output.map(toJSON).join('\n')) + let output = await generators[name].bind()(items) + output = Array.isArray(output) ? output : [output] for (const type of output) { const playlist = createPlaylist(type.items, { public: true }) - await file.create(`${PUBLIC_DIR}/${name}/${type.id}.m3u`, playlist.toString()) + await file.create(`${PUBLIC_DIR}/${type.filepath}`, playlist.toString()) } + await file.create(`${LOGS_DIR}/${name}.log`, output.map(toJSON).join('\n')) } catch (error) { logger.error(`generators/${name}.js: ${error.message}`) } @@ -33,5 +34,7 @@ generator.generate = async function (name, items = []) { module.exports = generator function toJSON(type) { - return JSON.stringify({ id: type.id, count: type.items.length }) + type.count = type.items.length + delete type.items + return JSON.stringify(type) } diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js index c168f4ae2..da3e28665 100644 --- a/scripts/generators/categories.js +++ b/scripts/generators/categories.js @@ -7,11 +7,11 @@ module.exports = async function (streams = []) { const categories = await api.categories.all() for (const category of categories) { let items = _.filter(streams, { channel: { categories: [category.id] } }) - output.push({ id: category.id, items }) + output.push({ filepath: `categories/${category.id}.m3u`, items }) } let items = _.filter(streams, s => !s.categories.length) - output.push({ id: 'undefined', items }) + output.push({ filepath: 'categories/undefined.m3u', items }) return output } diff --git a/scripts/generators/countries.js b/scripts/generators/countries.js index b89d85738..bd1e747d4 100644 --- a/scripts/generators/countries.js +++ b/scripts/generators/countries.js @@ -11,11 +11,11 @@ module.exports = async function (streams = []) { const areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) areaCodes.push(country.code) let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) - output.push({ id: country.code.toLowerCase(), items }) + output.push({ filepath: `countries/${country.code.toLowerCase()}.m3u`, items }) } let items = _.filter(streams, s => !s.broadcast_area.length) - output.push({ id: 'undefined', items }) + output.push({ filepath: 'countries/undefined.m3u', items }) return output } diff --git a/scripts/generators/index.js b/scripts/generators/index.js index 625ee4b3e..91391b07e 100644 --- a/scripts/generators/index.js +++ b/scripts/generators/index.js @@ -2,3 +2,4 @@ exports.categories = require('./categories') exports.countries = require('./countries') exports.languages = require('./languages') exports.regions = require('./regions') +exports.index_m3u = require('./index_m3u') diff --git a/scripts/generators/index_m3u.js b/scripts/generators/index_m3u.js new file mode 100644 index 000000000..1a6ea9710 --- /dev/null +++ b/scripts/generators/index_m3u.js @@ -0,0 +1,6 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + return { filepath: 'index.m3u', items: streams } +} diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index 21dba6d95..8c63d8ec0 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -9,12 +9,12 @@ module.exports = async function (streams = []) { for (const language of languages) { let items = _.filter(streams, { channel: { languages: [language.code] } }) if (items.length) { - output.push({ id: language.code, items }) + output.push({ filepath: `languages/${language.code}.m3u`, items }) } } let items = _.filter(streams, s => !s.languages.length) - output.push({ id: 'undefined', items }) + output.push({ filepath: 'languages/undefined.m3u', items }) return output } diff --git a/scripts/generators/regions.js b/scripts/generators/regions.js index e7093ba1d..aa81c0280 100644 --- a/scripts/generators/regions.js +++ b/scripts/generators/regions.js @@ -9,11 +9,11 @@ module.exports = async function (streams = []) { const areaCodes = region.countries areaCodes.push(region.code) let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) - output.push({ id: region.code.toLowerCase(), items }) + output.push({ filepath: `regions/${region.code.toLowerCase()}.m3u`, items }) } let items = _.filter(streams, s => !s.broadcast_area.length) - output.push({ id: 'undefined', items }) + output.push({ filepath: 'regions/undefined.m3u', items }) return output } diff --git a/tests/__data__/expected/.gh-pages/categories/undefined.m3u b/tests/__data__/expected/.gh-pages/categories/undefined.m3u index 88cbb11bb..b16d81e94 100644 --- a/tests/__data__/expected/.gh-pages/categories/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/categories/undefined.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/xxx.m3u b/tests/__data__/expected/.gh-pages/categories/xxx.m3u new file mode 100644 index 000000000..3c9f990fc --- /dev/null +++ b/tests/__data__/expected/.gh-pages/categories/xxx.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 2f7b35904..23eb60dbd 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 #EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/undefined.m3u b/tests/__data__/expected/.gh-pages/countries/undefined.m3u index a5f46139b..f2393c589 100644 --- a/tests/__data__/expected/.gh-pages/countries/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/countries/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u deleted file mode 100644 index 05f83ce58..000000000 --- a/tests/__data__/expected/.gh-pages/index.category.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Legislative",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u deleted file mode 100644 index 9e8fba413..000000000 --- a/tests/__data__/expected/.gh-pages/index.country.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Andorra",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Russia",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russia",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="United Kingdom",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="United Kingdom",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u deleted file mode 100644 index c81dfd4f4..000000000 --- a/tests/__data__/expected/.gh-pages/index.language.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="English",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russian",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index ef512adf6..798c12347 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,9 +1,13 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u deleted file mode 100644 index 3222ce02b..000000000 --- a/tests/__data__/expected/.gh-pages/index.nsfw.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Cooking",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General;Legislative",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Other",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u deleted file mode 100644 index 05f270460..000000000 --- a/tests/__data__/expected/.gh-pages/index.region.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Asia",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Commonwealth of Independent States",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="Europe",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="Europe, the Middle East and Africa",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe, the Middle East and Africa",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="INT" tvg-language="" tvg-logo="" group-title="Worldwide",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/cat.m3u b/tests/__data__/expected/.gh-pages/languages/cat.m3u index 862706f18..940072790 100644 --- a/tests/__data__/expected/.gh-pages/languages/cat.m3u +++ b/tests/__data__/expected/.gh-pages/languages/cat.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/tests/__data__/expected/.gh-pages/languages/undefined.m3u b/tests/__data__/expected/.gh-pages/languages/undefined.m3u index a5f46139b..f2393c589 100644 --- a/tests/__data__/expected/.gh-pages/languages/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/languages/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/emea.m3u b/tests/__data__/expected/.gh-pages/regions/emea.m3u index f0d6bc87a..168033fc2 100644 --- a/tests/__data__/expected/.gh-pages/regions/emea.m3u +++ b/tests/__data__/expected/.gh-pages/regions/emea.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/eur.m3u b/tests/__data__/expected/.gh-pages/regions/eur.m3u index f0d6bc87a..168033fc2 100644 --- a/tests/__data__/expected/.gh-pages/regions/eur.m3u +++ b/tests/__data__/expected/.gh-pages/regions/eur.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index da1cab5dd..589274987 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,9 +1,9 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 #EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/undefined.m3u b/tests/__data__/expected/.gh-pages/regions/undefined.m3u index a5f46139b..f2393c589 100644 --- a/tests/__data__/expected/.gh-pages/regions/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/regions/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/logs/generators/categories.log b/tests/__data__/expected/logs/generators/categories.log index 7adc07286..acfb802b9 100644 --- a/tests/__data__/expected/logs/generators/categories.log +++ b/tests/__data__/expected/logs/generators/categories.log @@ -1,29 +1,29 @@ -{"id":"auto","count":0} -{"id":"animation","count":0} -{"id":"business","count":0} -{"id":"classic","count":0} -{"id":"comedy","count":0} -{"id":"cooking","count":0} -{"id":"culture","count":0} -{"id":"documentary","count":0} -{"id":"education","count":0} -{"id":"entertainment","count":0} -{"id":"family","count":0} -{"id":"general","count":1} -{"id":"kids","count":0} -{"id":"legislative","count":0} -{"id":"lifestyle","count":0} -{"id":"movies","count":0} -{"id":"music","count":0} -{"id":"news","count":1} -{"id":"outdoor","count":0} -{"id":"relax","count":0} -{"id":"religious","count":0} -{"id":"series","count":0} -{"id":"science","count":0} -{"id":"shop","count":0} -{"id":"sports","count":0} -{"id":"travel","count":0} -{"id":"weather","count":0} -{"id":"xxx","count":1} -{"id":"undefined","count":3} \ No newline at end of file +{"filepath":"categories/auto.m3u","count":0} +{"filepath":"categories/animation.m3u","count":0} +{"filepath":"categories/business.m3u","count":0} +{"filepath":"categories/classic.m3u","count":0} +{"filepath":"categories/comedy.m3u","count":0} +{"filepath":"categories/cooking.m3u","count":0} +{"filepath":"categories/culture.m3u","count":0} +{"filepath":"categories/documentary.m3u","count":0} +{"filepath":"categories/education.m3u","count":0} +{"filepath":"categories/entertainment.m3u","count":0} +{"filepath":"categories/family.m3u","count":0} +{"filepath":"categories/general.m3u","count":1} +{"filepath":"categories/kids.m3u","count":0} +{"filepath":"categories/legislative.m3u","count":0} +{"filepath":"categories/lifestyle.m3u","count":0} +{"filepath":"categories/movies.m3u","count":0} +{"filepath":"categories/music.m3u","count":0} +{"filepath":"categories/news.m3u","count":1} +{"filepath":"categories/outdoor.m3u","count":0} +{"filepath":"categories/relax.m3u","count":0} +{"filepath":"categories/religious.m3u","count":0} +{"filepath":"categories/series.m3u","count":0} +{"filepath":"categories/science.m3u","count":0} +{"filepath":"categories/shop.m3u","count":0} +{"filepath":"categories/sports.m3u","count":0} +{"filepath":"categories/travel.m3u","count":0} +{"filepath":"categories/weather.m3u","count":0} +{"filepath":"categories/xxx.m3u","count":1} +{"filepath":"categories/undefined.m3u","count":3} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log index 962490c3c..6a5fe1ba4 100644 --- a/tests/__data__/expected/logs/generators/countries.log +++ b/tests/__data__/expected/logs/generators/countries.log @@ -1,251 +1,251 @@ -{"id":"af","count":2} -{"id":"al","count":2} -{"id":"dz","count":2} -{"id":"as","count":2} -{"id":"ad","count":3} -{"id":"ao","count":2} -{"id":"ai","count":2} -{"id":"aq","count":2} -{"id":"ag","count":2} -{"id":"ar","count":2} -{"id":"am","count":2} -{"id":"aw","count":2} -{"id":"au","count":2} -{"id":"at","count":2} -{"id":"az","count":2} -{"id":"bs","count":2} -{"id":"bh","count":2} -{"id":"bd","count":2} -{"id":"bb","count":2} -{"id":"by","count":2} -{"id":"be","count":2} -{"id":"bz","count":2} -{"id":"bj","count":2} -{"id":"bm","count":2} -{"id":"bt","count":2} -{"id":"bo","count":2} -{"id":"bq","count":2} -{"id":"ba","count":2} -{"id":"bw","count":2} -{"id":"bv","count":2} -{"id":"br","count":2} -{"id":"io","count":2} -{"id":"vg","count":2} -{"id":"bn","count":2} -{"id":"bg","count":2} -{"id":"bf","count":2} -{"id":"bi","count":2} -{"id":"kh","count":2} -{"id":"cm","count":2} -{"id":"ca","count":2} -{"id":"cv","count":2} -{"id":"ky","count":2} -{"id":"cf","count":2} -{"id":"td","count":2} -{"id":"cl","count":2} -{"id":"cn","count":2} -{"id":"cx","count":2} -{"id":"cc","count":2} -{"id":"co","count":2} -{"id":"km","count":2} -{"id":"ck","count":2} -{"id":"cr","count":2} -{"id":"hr","count":2} -{"id":"cu","count":2} -{"id":"cw","count":2} -{"id":"cy","count":2} -{"id":"cz","count":2} -{"id":"cd","count":2} -{"id":"dk","count":2} -{"id":"dj","count":2} -{"id":"dm","count":2} -{"id":"do","count":2} -{"id":"tl","count":2} -{"id":"ec","count":2} -{"id":"eg","count":2} -{"id":"sv","count":2} -{"id":"gq","count":2} -{"id":"er","count":2} -{"id":"ee","count":2} -{"id":"et","count":2} -{"id":"fk","count":2} -{"id":"fo","count":2} -{"id":"fj","count":2} -{"id":"fi","count":2} -{"id":"fr","count":2} -{"id":"gf","count":2} -{"id":"pf","count":2} -{"id":"tf","count":2} -{"id":"ga","count":2} -{"id":"gm","count":2} -{"id":"ge","count":2} -{"id":"de","count":2} -{"id":"gh","count":2} -{"id":"gi","count":2} -{"id":"gr","count":2} -{"id":"gl","count":2} -{"id":"gd","count":2} -{"id":"gp","count":2} -{"id":"gu","count":2} -{"id":"gt","count":2} -{"id":"gg","count":2} -{"id":"gn","count":2} -{"id":"gw","count":2} -{"id":"gy","count":2} -{"id":"ht","count":2} -{"id":"hm","count":2} -{"id":"hn","count":2} -{"id":"hk","count":2} -{"id":"hu","count":2} -{"id":"is","count":2} -{"id":"in","count":2} -{"id":"id","count":2} -{"id":"ir","count":2} -{"id":"iq","count":2} -{"id":"ie","count":2} -{"id":"im","count":2} -{"id":"il","count":2} -{"id":"it","count":2} -{"id":"ci","count":2} -{"id":"jm","count":2} -{"id":"jp","count":2} -{"id":"je","count":2} -{"id":"jo","count":2} -{"id":"kz","count":2} -{"id":"ke","count":2} -{"id":"ki","count":2} -{"id":"xk","count":2} -{"id":"kw","count":2} -{"id":"kg","count":2} -{"id":"la","count":2} -{"id":"lv","count":2} -{"id":"lb","count":2} -{"id":"ls","count":2} -{"id":"lr","count":2} -{"id":"ly","count":2} -{"id":"li","count":2} -{"id":"lt","count":2} -{"id":"lu","count":2} -{"id":"mo","count":2} -{"id":"mg","count":2} -{"id":"mw","count":2} -{"id":"my","count":2} -{"id":"mv","count":2} -{"id":"ml","count":2} -{"id":"mt","count":2} -{"id":"mh","count":2} -{"id":"mq","count":2} -{"id":"mr","count":2} -{"id":"mu","count":2} -{"id":"yt","count":2} -{"id":"mx","count":2} -{"id":"fm","count":2} -{"id":"md","count":2} -{"id":"mc","count":2} -{"id":"mn","count":2} -{"id":"me","count":2} -{"id":"ms","count":2} -{"id":"ma","count":2} -{"id":"mz","count":2} -{"id":"mm","count":2} -{"id":"na","count":2} -{"id":"nr","count":2} -{"id":"np","count":2} -{"id":"nl","count":2} -{"id":"nc","count":2} -{"id":"nz","count":2} -{"id":"ni","count":2} -{"id":"ne","count":2} -{"id":"ng","count":2} -{"id":"nu","count":2} -{"id":"nf","count":2} -{"id":"kp","count":2} -{"id":"mk","count":2} -{"id":"mp","count":2} -{"id":"no","count":2} -{"id":"om","count":2} -{"id":"pk","count":2} -{"id":"pw","count":2} -{"id":"ps","count":2} -{"id":"pa","count":2} -{"id":"pg","count":2} -{"id":"py","count":2} -{"id":"pe","count":2} -{"id":"ph","count":2} -{"id":"pn","count":2} -{"id":"pl","count":2} -{"id":"pt","count":2} -{"id":"pr","count":2} -{"id":"qa","count":2} -{"id":"cg","count":2} -{"id":"ro","count":2} -{"id":"ru","count":3} -{"id":"rw","count":2} -{"id":"re","count":2} -{"id":"bl","count":2} -{"id":"sh","count":2} -{"id":"kn","count":2} -{"id":"lc","count":2} -{"id":"mf","count":2} -{"id":"pm","count":2} -{"id":"vc","count":2} -{"id":"ws","count":2} -{"id":"sm","count":2} -{"id":"sa","count":2} -{"id":"sn","count":2} -{"id":"rs","count":2} -{"id":"sc","count":2} -{"id":"sl","count":2} -{"id":"sg","count":2} -{"id":"sx","count":2} -{"id":"sk","count":2} -{"id":"si","count":2} -{"id":"sb","count":2} -{"id":"so","count":2} -{"id":"za","count":2} -{"id":"gs","count":2} -{"id":"kr","count":2} -{"id":"ss","count":2} -{"id":"es","count":2} -{"id":"lk","count":2} -{"id":"sd","count":2} -{"id":"sr","count":2} -{"id":"sj","count":2} -{"id":"sz","count":2} -{"id":"se","count":2} -{"id":"ch","count":2} -{"id":"sy","count":2} -{"id":"st","count":2} -{"id":"tw","count":2} -{"id":"tj","count":2} -{"id":"tz","count":2} -{"id":"th","count":2} -{"id":"tg","count":2} -{"id":"tk","count":2} -{"id":"to","count":2} -{"id":"tt","count":2} -{"id":"tn","count":2} -{"id":"tr","count":2} -{"id":"tm","count":2} -{"id":"tc","count":2} -{"id":"tv","count":2} -{"id":"um","count":2} -{"id":"vi","count":2} -{"id":"ug","count":2} -{"id":"ua","count":2} -{"id":"ae","count":2} -{"id":"uk","count":2} -{"id":"us","count":2} -{"id":"uy","count":2} -{"id":"uz","count":2} -{"id":"vu","count":2} -{"id":"va","count":2} -{"id":"ve","count":2} -{"id":"vn","count":2} -{"id":"wf","count":2} -{"id":"eh","count":2} -{"id":"ye","count":2} -{"id":"zm","count":2} -{"id":"zw","count":2} -{"id":"ax","count":2} -{"id":"undefined","count":2} \ No newline at end of file +{"filepath":"countries/af.m3u","count":2} +{"filepath":"countries/al.m3u","count":2} +{"filepath":"countries/dz.m3u","count":2} +{"filepath":"countries/as.m3u","count":2} +{"filepath":"countries/ad.m3u","count":3} +{"filepath":"countries/ao.m3u","count":2} +{"filepath":"countries/ai.m3u","count":2} +{"filepath":"countries/aq.m3u","count":2} +{"filepath":"countries/ag.m3u","count":2} +{"filepath":"countries/ar.m3u","count":2} +{"filepath":"countries/am.m3u","count":2} +{"filepath":"countries/aw.m3u","count":2} +{"filepath":"countries/au.m3u","count":2} +{"filepath":"countries/at.m3u","count":2} +{"filepath":"countries/az.m3u","count":2} +{"filepath":"countries/bs.m3u","count":2} +{"filepath":"countries/bh.m3u","count":2} +{"filepath":"countries/bd.m3u","count":2} +{"filepath":"countries/bb.m3u","count":2} +{"filepath":"countries/by.m3u","count":2} +{"filepath":"countries/be.m3u","count":2} +{"filepath":"countries/bz.m3u","count":2} +{"filepath":"countries/bj.m3u","count":2} +{"filepath":"countries/bm.m3u","count":2} +{"filepath":"countries/bt.m3u","count":2} +{"filepath":"countries/bo.m3u","count":2} +{"filepath":"countries/bq.m3u","count":2} +{"filepath":"countries/ba.m3u","count":2} +{"filepath":"countries/bw.m3u","count":2} +{"filepath":"countries/bv.m3u","count":2} +{"filepath":"countries/br.m3u","count":2} +{"filepath":"countries/io.m3u","count":2} +{"filepath":"countries/vg.m3u","count":2} +{"filepath":"countries/bn.m3u","count":2} +{"filepath":"countries/bg.m3u","count":2} +{"filepath":"countries/bf.m3u","count":2} +{"filepath":"countries/bi.m3u","count":2} +{"filepath":"countries/kh.m3u","count":2} +{"filepath":"countries/cm.m3u","count":2} +{"filepath":"countries/ca.m3u","count":2} +{"filepath":"countries/cv.m3u","count":2} +{"filepath":"countries/ky.m3u","count":2} +{"filepath":"countries/cf.m3u","count":2} +{"filepath":"countries/td.m3u","count":2} +{"filepath":"countries/cl.m3u","count":2} +{"filepath":"countries/cn.m3u","count":2} +{"filepath":"countries/cx.m3u","count":2} +{"filepath":"countries/cc.m3u","count":2} +{"filepath":"countries/co.m3u","count":2} +{"filepath":"countries/km.m3u","count":2} +{"filepath":"countries/ck.m3u","count":2} +{"filepath":"countries/cr.m3u","count":2} +{"filepath":"countries/hr.m3u","count":2} +{"filepath":"countries/cu.m3u","count":2} +{"filepath":"countries/cw.m3u","count":2} +{"filepath":"countries/cy.m3u","count":2} +{"filepath":"countries/cz.m3u","count":2} +{"filepath":"countries/cd.m3u","count":2} +{"filepath":"countries/dk.m3u","count":2} +{"filepath":"countries/dj.m3u","count":2} +{"filepath":"countries/dm.m3u","count":2} +{"filepath":"countries/do.m3u","count":2} +{"filepath":"countries/tl.m3u","count":2} +{"filepath":"countries/ec.m3u","count":2} +{"filepath":"countries/eg.m3u","count":2} +{"filepath":"countries/sv.m3u","count":2} +{"filepath":"countries/gq.m3u","count":2} +{"filepath":"countries/er.m3u","count":2} +{"filepath":"countries/ee.m3u","count":2} +{"filepath":"countries/et.m3u","count":2} +{"filepath":"countries/fk.m3u","count":2} +{"filepath":"countries/fo.m3u","count":2} +{"filepath":"countries/fj.m3u","count":2} +{"filepath":"countries/fi.m3u","count":2} +{"filepath":"countries/fr.m3u","count":2} +{"filepath":"countries/gf.m3u","count":2} +{"filepath":"countries/pf.m3u","count":2} +{"filepath":"countries/tf.m3u","count":2} +{"filepath":"countries/ga.m3u","count":2} +{"filepath":"countries/gm.m3u","count":2} +{"filepath":"countries/ge.m3u","count":2} +{"filepath":"countries/de.m3u","count":2} +{"filepath":"countries/gh.m3u","count":2} +{"filepath":"countries/gi.m3u","count":2} +{"filepath":"countries/gr.m3u","count":2} +{"filepath":"countries/gl.m3u","count":2} +{"filepath":"countries/gd.m3u","count":2} +{"filepath":"countries/gp.m3u","count":2} +{"filepath":"countries/gu.m3u","count":2} +{"filepath":"countries/gt.m3u","count":2} +{"filepath":"countries/gg.m3u","count":2} +{"filepath":"countries/gn.m3u","count":2} +{"filepath":"countries/gw.m3u","count":2} +{"filepath":"countries/gy.m3u","count":2} +{"filepath":"countries/ht.m3u","count":2} +{"filepath":"countries/hm.m3u","count":2} +{"filepath":"countries/hn.m3u","count":2} +{"filepath":"countries/hk.m3u","count":2} +{"filepath":"countries/hu.m3u","count":2} +{"filepath":"countries/is.m3u","count":2} +{"filepath":"countries/in.m3u","count":2} +{"filepath":"countries/id.m3u","count":2} +{"filepath":"countries/ir.m3u","count":2} +{"filepath":"countries/iq.m3u","count":2} +{"filepath":"countries/ie.m3u","count":2} +{"filepath":"countries/im.m3u","count":2} +{"filepath":"countries/il.m3u","count":2} +{"filepath":"countries/it.m3u","count":2} +{"filepath":"countries/ci.m3u","count":2} +{"filepath":"countries/jm.m3u","count":2} +{"filepath":"countries/jp.m3u","count":2} +{"filepath":"countries/je.m3u","count":2} +{"filepath":"countries/jo.m3u","count":2} +{"filepath":"countries/kz.m3u","count":2} +{"filepath":"countries/ke.m3u","count":2} +{"filepath":"countries/ki.m3u","count":2} +{"filepath":"countries/xk.m3u","count":2} +{"filepath":"countries/kw.m3u","count":2} +{"filepath":"countries/kg.m3u","count":2} +{"filepath":"countries/la.m3u","count":2} +{"filepath":"countries/lv.m3u","count":2} +{"filepath":"countries/lb.m3u","count":2} +{"filepath":"countries/ls.m3u","count":2} +{"filepath":"countries/lr.m3u","count":2} +{"filepath":"countries/ly.m3u","count":2} +{"filepath":"countries/li.m3u","count":2} +{"filepath":"countries/lt.m3u","count":2} +{"filepath":"countries/lu.m3u","count":2} +{"filepath":"countries/mo.m3u","count":2} +{"filepath":"countries/mg.m3u","count":2} +{"filepath":"countries/mw.m3u","count":2} +{"filepath":"countries/my.m3u","count":2} +{"filepath":"countries/mv.m3u","count":2} +{"filepath":"countries/ml.m3u","count":2} +{"filepath":"countries/mt.m3u","count":2} +{"filepath":"countries/mh.m3u","count":2} +{"filepath":"countries/mq.m3u","count":2} +{"filepath":"countries/mr.m3u","count":2} +{"filepath":"countries/mu.m3u","count":2} +{"filepath":"countries/yt.m3u","count":2} +{"filepath":"countries/mx.m3u","count":2} +{"filepath":"countries/fm.m3u","count":2} +{"filepath":"countries/md.m3u","count":2} +{"filepath":"countries/mc.m3u","count":2} +{"filepath":"countries/mn.m3u","count":2} +{"filepath":"countries/me.m3u","count":2} +{"filepath":"countries/ms.m3u","count":2} +{"filepath":"countries/ma.m3u","count":2} +{"filepath":"countries/mz.m3u","count":2} +{"filepath":"countries/mm.m3u","count":2} +{"filepath":"countries/na.m3u","count":2} +{"filepath":"countries/nr.m3u","count":2} +{"filepath":"countries/np.m3u","count":2} +{"filepath":"countries/nl.m3u","count":2} +{"filepath":"countries/nc.m3u","count":2} +{"filepath":"countries/nz.m3u","count":2} +{"filepath":"countries/ni.m3u","count":2} +{"filepath":"countries/ne.m3u","count":2} +{"filepath":"countries/ng.m3u","count":2} +{"filepath":"countries/nu.m3u","count":2} +{"filepath":"countries/nf.m3u","count":2} +{"filepath":"countries/kp.m3u","count":2} +{"filepath":"countries/mk.m3u","count":2} +{"filepath":"countries/mp.m3u","count":2} +{"filepath":"countries/no.m3u","count":2} +{"filepath":"countries/om.m3u","count":2} +{"filepath":"countries/pk.m3u","count":2} +{"filepath":"countries/pw.m3u","count":2} +{"filepath":"countries/ps.m3u","count":2} +{"filepath":"countries/pa.m3u","count":2} +{"filepath":"countries/pg.m3u","count":2} +{"filepath":"countries/py.m3u","count":2} +{"filepath":"countries/pe.m3u","count":2} +{"filepath":"countries/ph.m3u","count":2} +{"filepath":"countries/pn.m3u","count":2} +{"filepath":"countries/pl.m3u","count":2} +{"filepath":"countries/pt.m3u","count":2} +{"filepath":"countries/pr.m3u","count":2} +{"filepath":"countries/qa.m3u","count":2} +{"filepath":"countries/cg.m3u","count":2} +{"filepath":"countries/ro.m3u","count":2} +{"filepath":"countries/ru.m3u","count":3} +{"filepath":"countries/rw.m3u","count":2} +{"filepath":"countries/re.m3u","count":2} +{"filepath":"countries/bl.m3u","count":2} +{"filepath":"countries/sh.m3u","count":2} +{"filepath":"countries/kn.m3u","count":2} +{"filepath":"countries/lc.m3u","count":2} +{"filepath":"countries/mf.m3u","count":2} +{"filepath":"countries/pm.m3u","count":2} +{"filepath":"countries/vc.m3u","count":2} +{"filepath":"countries/ws.m3u","count":2} +{"filepath":"countries/sm.m3u","count":2} +{"filepath":"countries/sa.m3u","count":2} +{"filepath":"countries/sn.m3u","count":2} +{"filepath":"countries/rs.m3u","count":2} +{"filepath":"countries/sc.m3u","count":2} +{"filepath":"countries/sl.m3u","count":2} +{"filepath":"countries/sg.m3u","count":2} +{"filepath":"countries/sx.m3u","count":2} +{"filepath":"countries/sk.m3u","count":2} +{"filepath":"countries/si.m3u","count":2} +{"filepath":"countries/sb.m3u","count":2} +{"filepath":"countries/so.m3u","count":2} +{"filepath":"countries/za.m3u","count":2} +{"filepath":"countries/gs.m3u","count":2} +{"filepath":"countries/kr.m3u","count":2} +{"filepath":"countries/ss.m3u","count":2} +{"filepath":"countries/es.m3u","count":2} +{"filepath":"countries/lk.m3u","count":2} +{"filepath":"countries/sd.m3u","count":2} +{"filepath":"countries/sr.m3u","count":2} +{"filepath":"countries/sj.m3u","count":2} +{"filepath":"countries/sz.m3u","count":2} +{"filepath":"countries/se.m3u","count":2} +{"filepath":"countries/ch.m3u","count":2} +{"filepath":"countries/sy.m3u","count":2} +{"filepath":"countries/st.m3u","count":2} +{"filepath":"countries/tw.m3u","count":2} +{"filepath":"countries/tj.m3u","count":2} +{"filepath":"countries/tz.m3u","count":2} +{"filepath":"countries/th.m3u","count":2} +{"filepath":"countries/tg.m3u","count":2} +{"filepath":"countries/tk.m3u","count":2} +{"filepath":"countries/to.m3u","count":2} +{"filepath":"countries/tt.m3u","count":2} +{"filepath":"countries/tn.m3u","count":2} +{"filepath":"countries/tr.m3u","count":2} +{"filepath":"countries/tm.m3u","count":2} +{"filepath":"countries/tc.m3u","count":2} +{"filepath":"countries/tv.m3u","count":2} +{"filepath":"countries/um.m3u","count":2} +{"filepath":"countries/vi.m3u","count":2} +{"filepath":"countries/ug.m3u","count":2} +{"filepath":"countries/ua.m3u","count":2} +{"filepath":"countries/ae.m3u","count":2} +{"filepath":"countries/uk.m3u","count":2} +{"filepath":"countries/us.m3u","count":2} +{"filepath":"countries/uy.m3u","count":2} +{"filepath":"countries/uz.m3u","count":2} +{"filepath":"countries/vu.m3u","count":2} +{"filepath":"countries/va.m3u","count":2} +{"filepath":"countries/ve.m3u","count":2} +{"filepath":"countries/vn.m3u","count":2} +{"filepath":"countries/wf.m3u","count":2} +{"filepath":"countries/eh.m3u","count":2} +{"filepath":"countries/ye.m3u","count":2} +{"filepath":"countries/zm.m3u","count":2} +{"filepath":"countries/zw.m3u","count":2} +{"filepath":"countries/ax.m3u","count":2} +{"filepath":"countries/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/languages.log b/tests/__data__/expected/logs/generators/languages.log index 79aeb3b2d..bd9bd1a1c 100644 --- a/tests/__data__/expected/logs/generators/languages.log +++ b/tests/__data__/expected/logs/generators/languages.log @@ -1,5 +1,5 @@ -{"id":"cat","count":1} -{"id":"eng","count":1} -{"id":"nld","count":1} -{"id":"rus","count":1} -{"id":"undefined","count":2} \ No newline at end of file +{"filepath":"languages/cat.m3u","count":1} +{"filepath":"languages/eng.m3u","count":1} +{"filepath":"languages/nld.m3u","count":1} +{"filepath":"languages/rus.m3u","count":1} +{"filepath":"languages/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/regions.log b/tests/__data__/expected/logs/generators/regions.log index 2722a163c..11e3d17da 100644 --- a/tests/__data__/expected/logs/generators/regions.log +++ b/tests/__data__/expected/logs/generators/regions.log @@ -1,25 +1,25 @@ -{"id":"afr","count":0} -{"id":"amer","count":0} -{"id":"arab","count":0} -{"id":"asia","count":1} -{"id":"apac","count":0} -{"id":"carib","count":0} -{"id":"cas","count":0} -{"id":"cis","count":1} -{"id":"eur","count":2} -{"id":"emea","count":2} -{"id":"hispam","count":0} -{"id":"latam","count":0} -{"id":"lac","count":0} -{"id":"maghreb","count":0} -{"id":"mideast","count":0} -{"id":"mena","count":0} -{"id":"nord","count":0} -{"id":"noram","count":0} -{"id":"nam","count":0} -{"id":"oce","count":0} -{"id":"sas","count":0} -{"id":"ssa","count":0} -{"id":"wafr","count":0} -{"id":"int","count":4} -{"id":"undefined","count":2} \ No newline at end of file +{"filepath":"regions/afr.m3u","count":0} +{"filepath":"regions/amer.m3u","count":0} +{"filepath":"regions/arab.m3u","count":0} +{"filepath":"regions/asia.m3u","count":1} +{"filepath":"regions/apac.m3u","count":0} +{"filepath":"regions/carib.m3u","count":0} +{"filepath":"regions/cas.m3u","count":0} +{"filepath":"regions/cis.m3u","count":1} +{"filepath":"regions/eur.m3u","count":2} +{"filepath":"regions/emea.m3u","count":2} +{"filepath":"regions/hispam.m3u","count":0} +{"filepath":"regions/latam.m3u","count":0} +{"filepath":"regions/lac.m3u","count":0} +{"filepath":"regions/maghreb.m3u","count":0} +{"filepath":"regions/mideast.m3u","count":0} +{"filepath":"regions/mena.m3u","count":0} +{"filepath":"regions/nord.m3u","count":0} +{"filepath":"regions/noram.m3u","count":0} +{"filepath":"regions/nam.m3u","count":0} +{"filepath":"regions/oce.m3u","count":0} +{"filepath":"regions/sas.m3u","count":0} +{"filepath":"regions/ssa.m3u","count":0} +{"filepath":"regions/wafr.m3u","count":0} +{"filepath":"regions/int.m3u","count":4} +{"filepath":"regions/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index 14a6e5aaa..e39096fab 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -1,5 +1,6 @@ const fs = require('fs-extra') const path = require('path') +const glob = require('glob') const { execSync } = require('child_process') beforeEach(() => { @@ -19,33 +20,22 @@ beforeEach(() => { }) it('can generate playlists', () => { - const files = [ - '.gh-pages/categories/general.m3u', - '.gh-pages/categories/legislative.m3u', - '.gh-pages/categories/news.m3u', - '.gh-pages/categories/undefined.m3u', - 'logs/generators/categories.log', - '.gh-pages/countries/ru.m3u', - '.gh-pages/countries/uk.m3u', - '.gh-pages/countries/undefined.m3u', - 'logs/generators/countries.log', - '.gh-pages/languages/cat.m3u', - '.gh-pages/languages/eng.m3u', - '.gh-pages/languages/nld.m3u', - '.gh-pages/languages/rus.m3u', - '.gh-pages/languages/undefined.m3u', - 'logs/generators/languages.log', - '.gh-pages/regions/asia.m3u', - '.gh-pages/regions/cis.m3u', - '.gh-pages/regions/emea.m3u', - '.gh-pages/regions/eur.m3u', - '.gh-pages/regions/int.m3u', - '.gh-pages/regions/undefined.m3u', - 'logs/generators/regions.log' - ] + const files = glob + .sync('tests/__data__/expected/.gh-pages/**/*.m3u') + .map(f => f.replace('tests/__data__/expected/', '')) files.forEach(filepath => { - expect(content(`output/${filepath}`)).toBe(content(`expected/${filepath}`)) + expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`)) + }) +}) + +it('can generate logs', () => { + const files = glob + .sync('tests/__data__/expected/logs/generators/*.log') + .map(f => f.replace('tests/__data__/expected/', '')) + + files.forEach(filepath => { + expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`)) }) }) From b535ff405943a80a7687d54b9d32abece092cd20 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 03:05:43 +0300 Subject: [PATCH 021/157] wip --- scripts/generators/countries.js | 1 + scripts/generators/languages.js | 1 + scripts/generators/regions.js | 1 + .../expected/.gh-pages/countries/ru.m3u | 2 - .../expected/.gh-pages/countries/uk.m3u | 2 - .../expected/.gh-pages/languages/nld.m3u | 3 - .../expected/.gh-pages/regions/int.m3u | 2 - .../expected/logs/generators/countries.log | 500 +++++++++--------- .../expected/logs/generators/languages.log | 1 - .../expected/logs/generators/regions.log | 2 +- 10 files changed, 254 insertions(+), 261 deletions(-) delete mode 100644 tests/__data__/expected/.gh-pages/languages/nld.m3u diff --git a/scripts/generators/countries.js b/scripts/generators/countries.js index bd1e747d4..42f3deffc 100644 --- a/scripts/generators/countries.js +++ b/scripts/generators/countries.js @@ -7,6 +7,7 @@ module.exports = async function (streams = []) { const countries = await api.countries.all() await api.regions.load() const regions = await api.regions.all() + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) for (const country of countries) { const areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) areaCodes.push(country.code) diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index 8c63d8ec0..74692f9d8 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -6,6 +6,7 @@ module.exports = async function (streams = []) { await api.languages.load() let languages = await api.languages.all() languages = _.uniqBy(languages, 'code') + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) for (const language of languages) { let items = _.filter(streams, { channel: { languages: [language.code] } }) if (items.length) { diff --git a/scripts/generators/regions.js b/scripts/generators/regions.js index aa81c0280..c48cbad44 100644 --- a/scripts/generators/regions.js +++ b/scripts/generators/regions.js @@ -5,6 +5,7 @@ module.exports = async function (streams = []) { const output = [] await api.regions.load() const regions = await api.regions.all() + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) for (const region of regions) { const areaCodes = region.countries areaCodes.push(region.code) diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 23eb60dbd..753c8e6e1 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,7 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index 7e00b31b6..4c20e3838 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,5 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/nld.m3u b/tests/__data__/expected/.gh-pages/languages/nld.m3u deleted file mode 100644 index 3c9f990fc..000000000 --- a/tests/__data__/expected/.gh-pages/languages/nld.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index 589274987..c0834afa7 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -3,7 +3,5 @@ https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log index 6a5fe1ba4..cdd39bbdf 100644 --- a/tests/__data__/expected/logs/generators/countries.log +++ b/tests/__data__/expected/logs/generators/countries.log @@ -1,251 +1,251 @@ -{"filepath":"countries/af.m3u","count":2} -{"filepath":"countries/al.m3u","count":2} -{"filepath":"countries/dz.m3u","count":2} -{"filepath":"countries/as.m3u","count":2} -{"filepath":"countries/ad.m3u","count":3} -{"filepath":"countries/ao.m3u","count":2} -{"filepath":"countries/ai.m3u","count":2} -{"filepath":"countries/aq.m3u","count":2} -{"filepath":"countries/ag.m3u","count":2} -{"filepath":"countries/ar.m3u","count":2} -{"filepath":"countries/am.m3u","count":2} -{"filepath":"countries/aw.m3u","count":2} -{"filepath":"countries/au.m3u","count":2} -{"filepath":"countries/at.m3u","count":2} -{"filepath":"countries/az.m3u","count":2} -{"filepath":"countries/bs.m3u","count":2} -{"filepath":"countries/bh.m3u","count":2} -{"filepath":"countries/bd.m3u","count":2} -{"filepath":"countries/bb.m3u","count":2} -{"filepath":"countries/by.m3u","count":2} -{"filepath":"countries/be.m3u","count":2} -{"filepath":"countries/bz.m3u","count":2} -{"filepath":"countries/bj.m3u","count":2} -{"filepath":"countries/bm.m3u","count":2} -{"filepath":"countries/bt.m3u","count":2} -{"filepath":"countries/bo.m3u","count":2} -{"filepath":"countries/bq.m3u","count":2} -{"filepath":"countries/ba.m3u","count":2} -{"filepath":"countries/bw.m3u","count":2} -{"filepath":"countries/bv.m3u","count":2} -{"filepath":"countries/br.m3u","count":2} -{"filepath":"countries/io.m3u","count":2} -{"filepath":"countries/vg.m3u","count":2} -{"filepath":"countries/bn.m3u","count":2} -{"filepath":"countries/bg.m3u","count":2} -{"filepath":"countries/bf.m3u","count":2} -{"filepath":"countries/bi.m3u","count":2} -{"filepath":"countries/kh.m3u","count":2} -{"filepath":"countries/cm.m3u","count":2} -{"filepath":"countries/ca.m3u","count":2} -{"filepath":"countries/cv.m3u","count":2} -{"filepath":"countries/ky.m3u","count":2} -{"filepath":"countries/cf.m3u","count":2} -{"filepath":"countries/td.m3u","count":2} -{"filepath":"countries/cl.m3u","count":2} -{"filepath":"countries/cn.m3u","count":2} -{"filepath":"countries/cx.m3u","count":2} -{"filepath":"countries/cc.m3u","count":2} -{"filepath":"countries/co.m3u","count":2} -{"filepath":"countries/km.m3u","count":2} -{"filepath":"countries/ck.m3u","count":2} -{"filepath":"countries/cr.m3u","count":2} -{"filepath":"countries/hr.m3u","count":2} -{"filepath":"countries/cu.m3u","count":2} -{"filepath":"countries/cw.m3u","count":2} -{"filepath":"countries/cy.m3u","count":2} -{"filepath":"countries/cz.m3u","count":2} -{"filepath":"countries/cd.m3u","count":2} -{"filepath":"countries/dk.m3u","count":2} -{"filepath":"countries/dj.m3u","count":2} -{"filepath":"countries/dm.m3u","count":2} -{"filepath":"countries/do.m3u","count":2} -{"filepath":"countries/tl.m3u","count":2} -{"filepath":"countries/ec.m3u","count":2} -{"filepath":"countries/eg.m3u","count":2} -{"filepath":"countries/sv.m3u","count":2} -{"filepath":"countries/gq.m3u","count":2} -{"filepath":"countries/er.m3u","count":2} -{"filepath":"countries/ee.m3u","count":2} -{"filepath":"countries/et.m3u","count":2} -{"filepath":"countries/fk.m3u","count":2} -{"filepath":"countries/fo.m3u","count":2} -{"filepath":"countries/fj.m3u","count":2} -{"filepath":"countries/fi.m3u","count":2} -{"filepath":"countries/fr.m3u","count":2} -{"filepath":"countries/gf.m3u","count":2} -{"filepath":"countries/pf.m3u","count":2} -{"filepath":"countries/tf.m3u","count":2} -{"filepath":"countries/ga.m3u","count":2} -{"filepath":"countries/gm.m3u","count":2} -{"filepath":"countries/ge.m3u","count":2} -{"filepath":"countries/de.m3u","count":2} -{"filepath":"countries/gh.m3u","count":2} -{"filepath":"countries/gi.m3u","count":2} -{"filepath":"countries/gr.m3u","count":2} -{"filepath":"countries/gl.m3u","count":2} -{"filepath":"countries/gd.m3u","count":2} -{"filepath":"countries/gp.m3u","count":2} -{"filepath":"countries/gu.m3u","count":2} -{"filepath":"countries/gt.m3u","count":2} -{"filepath":"countries/gg.m3u","count":2} -{"filepath":"countries/gn.m3u","count":2} -{"filepath":"countries/gw.m3u","count":2} -{"filepath":"countries/gy.m3u","count":2} -{"filepath":"countries/ht.m3u","count":2} -{"filepath":"countries/hm.m3u","count":2} -{"filepath":"countries/hn.m3u","count":2} -{"filepath":"countries/hk.m3u","count":2} -{"filepath":"countries/hu.m3u","count":2} -{"filepath":"countries/is.m3u","count":2} -{"filepath":"countries/in.m3u","count":2} -{"filepath":"countries/id.m3u","count":2} -{"filepath":"countries/ir.m3u","count":2} -{"filepath":"countries/iq.m3u","count":2} -{"filepath":"countries/ie.m3u","count":2} -{"filepath":"countries/im.m3u","count":2} -{"filepath":"countries/il.m3u","count":2} -{"filepath":"countries/it.m3u","count":2} -{"filepath":"countries/ci.m3u","count":2} -{"filepath":"countries/jm.m3u","count":2} -{"filepath":"countries/jp.m3u","count":2} -{"filepath":"countries/je.m3u","count":2} -{"filepath":"countries/jo.m3u","count":2} -{"filepath":"countries/kz.m3u","count":2} -{"filepath":"countries/ke.m3u","count":2} -{"filepath":"countries/ki.m3u","count":2} -{"filepath":"countries/xk.m3u","count":2} -{"filepath":"countries/kw.m3u","count":2} -{"filepath":"countries/kg.m3u","count":2} -{"filepath":"countries/la.m3u","count":2} -{"filepath":"countries/lv.m3u","count":2} -{"filepath":"countries/lb.m3u","count":2} -{"filepath":"countries/ls.m3u","count":2} -{"filepath":"countries/lr.m3u","count":2} -{"filepath":"countries/ly.m3u","count":2} -{"filepath":"countries/li.m3u","count":2} -{"filepath":"countries/lt.m3u","count":2} -{"filepath":"countries/lu.m3u","count":2} -{"filepath":"countries/mo.m3u","count":2} -{"filepath":"countries/mg.m3u","count":2} -{"filepath":"countries/mw.m3u","count":2} -{"filepath":"countries/my.m3u","count":2} -{"filepath":"countries/mv.m3u","count":2} -{"filepath":"countries/ml.m3u","count":2} -{"filepath":"countries/mt.m3u","count":2} -{"filepath":"countries/mh.m3u","count":2} -{"filepath":"countries/mq.m3u","count":2} -{"filepath":"countries/mr.m3u","count":2} -{"filepath":"countries/mu.m3u","count":2} -{"filepath":"countries/yt.m3u","count":2} -{"filepath":"countries/mx.m3u","count":2} -{"filepath":"countries/fm.m3u","count":2} -{"filepath":"countries/md.m3u","count":2} -{"filepath":"countries/mc.m3u","count":2} -{"filepath":"countries/mn.m3u","count":2} -{"filepath":"countries/me.m3u","count":2} -{"filepath":"countries/ms.m3u","count":2} -{"filepath":"countries/ma.m3u","count":2} -{"filepath":"countries/mz.m3u","count":2} -{"filepath":"countries/mm.m3u","count":2} -{"filepath":"countries/na.m3u","count":2} -{"filepath":"countries/nr.m3u","count":2} -{"filepath":"countries/np.m3u","count":2} -{"filepath":"countries/nl.m3u","count":2} -{"filepath":"countries/nc.m3u","count":2} -{"filepath":"countries/nz.m3u","count":2} -{"filepath":"countries/ni.m3u","count":2} -{"filepath":"countries/ne.m3u","count":2} -{"filepath":"countries/ng.m3u","count":2} -{"filepath":"countries/nu.m3u","count":2} -{"filepath":"countries/nf.m3u","count":2} -{"filepath":"countries/kp.m3u","count":2} -{"filepath":"countries/mk.m3u","count":2} -{"filepath":"countries/mp.m3u","count":2} -{"filepath":"countries/no.m3u","count":2} -{"filepath":"countries/om.m3u","count":2} -{"filepath":"countries/pk.m3u","count":2} -{"filepath":"countries/pw.m3u","count":2} -{"filepath":"countries/ps.m3u","count":2} -{"filepath":"countries/pa.m3u","count":2} -{"filepath":"countries/pg.m3u","count":2} -{"filepath":"countries/py.m3u","count":2} -{"filepath":"countries/pe.m3u","count":2} -{"filepath":"countries/ph.m3u","count":2} -{"filepath":"countries/pn.m3u","count":2} -{"filepath":"countries/pl.m3u","count":2} -{"filepath":"countries/pt.m3u","count":2} -{"filepath":"countries/pr.m3u","count":2} -{"filepath":"countries/qa.m3u","count":2} -{"filepath":"countries/cg.m3u","count":2} -{"filepath":"countries/ro.m3u","count":2} -{"filepath":"countries/ru.m3u","count":3} -{"filepath":"countries/rw.m3u","count":2} -{"filepath":"countries/re.m3u","count":2} -{"filepath":"countries/bl.m3u","count":2} -{"filepath":"countries/sh.m3u","count":2} -{"filepath":"countries/kn.m3u","count":2} -{"filepath":"countries/lc.m3u","count":2} -{"filepath":"countries/mf.m3u","count":2} -{"filepath":"countries/pm.m3u","count":2} -{"filepath":"countries/vc.m3u","count":2} -{"filepath":"countries/ws.m3u","count":2} -{"filepath":"countries/sm.m3u","count":2} -{"filepath":"countries/sa.m3u","count":2} -{"filepath":"countries/sn.m3u","count":2} -{"filepath":"countries/rs.m3u","count":2} -{"filepath":"countries/sc.m3u","count":2} -{"filepath":"countries/sl.m3u","count":2} -{"filepath":"countries/sg.m3u","count":2} -{"filepath":"countries/sx.m3u","count":2} -{"filepath":"countries/sk.m3u","count":2} -{"filepath":"countries/si.m3u","count":2} -{"filepath":"countries/sb.m3u","count":2} -{"filepath":"countries/so.m3u","count":2} -{"filepath":"countries/za.m3u","count":2} -{"filepath":"countries/gs.m3u","count":2} -{"filepath":"countries/kr.m3u","count":2} -{"filepath":"countries/ss.m3u","count":2} -{"filepath":"countries/es.m3u","count":2} -{"filepath":"countries/lk.m3u","count":2} -{"filepath":"countries/sd.m3u","count":2} -{"filepath":"countries/sr.m3u","count":2} -{"filepath":"countries/sj.m3u","count":2} -{"filepath":"countries/sz.m3u","count":2} -{"filepath":"countries/se.m3u","count":2} -{"filepath":"countries/ch.m3u","count":2} -{"filepath":"countries/sy.m3u","count":2} -{"filepath":"countries/st.m3u","count":2} -{"filepath":"countries/tw.m3u","count":2} -{"filepath":"countries/tj.m3u","count":2} -{"filepath":"countries/tz.m3u","count":2} -{"filepath":"countries/th.m3u","count":2} -{"filepath":"countries/tg.m3u","count":2} -{"filepath":"countries/tk.m3u","count":2} -{"filepath":"countries/to.m3u","count":2} -{"filepath":"countries/tt.m3u","count":2} -{"filepath":"countries/tn.m3u","count":2} -{"filepath":"countries/tr.m3u","count":2} -{"filepath":"countries/tm.m3u","count":2} -{"filepath":"countries/tc.m3u","count":2} -{"filepath":"countries/tv.m3u","count":2} -{"filepath":"countries/um.m3u","count":2} -{"filepath":"countries/vi.m3u","count":2} -{"filepath":"countries/ug.m3u","count":2} -{"filepath":"countries/ua.m3u","count":2} -{"filepath":"countries/ae.m3u","count":2} -{"filepath":"countries/uk.m3u","count":2} -{"filepath":"countries/us.m3u","count":2} -{"filepath":"countries/uy.m3u","count":2} -{"filepath":"countries/uz.m3u","count":2} -{"filepath":"countries/vu.m3u","count":2} -{"filepath":"countries/va.m3u","count":2} -{"filepath":"countries/ve.m3u","count":2} -{"filepath":"countries/vn.m3u","count":2} -{"filepath":"countries/wf.m3u","count":2} -{"filepath":"countries/eh.m3u","count":2} -{"filepath":"countries/ye.m3u","count":2} -{"filepath":"countries/zm.m3u","count":2} -{"filepath":"countries/zw.m3u","count":2} -{"filepath":"countries/ax.m3u","count":2} +{"filepath":"countries/af.m3u","count":1} +{"filepath":"countries/al.m3u","count":1} +{"filepath":"countries/dz.m3u","count":1} +{"filepath":"countries/as.m3u","count":1} +{"filepath":"countries/ad.m3u","count":2} +{"filepath":"countries/ao.m3u","count":1} +{"filepath":"countries/ai.m3u","count":1} +{"filepath":"countries/aq.m3u","count":1} +{"filepath":"countries/ag.m3u","count":1} +{"filepath":"countries/ar.m3u","count":1} +{"filepath":"countries/am.m3u","count":1} +{"filepath":"countries/aw.m3u","count":1} +{"filepath":"countries/au.m3u","count":1} +{"filepath":"countries/at.m3u","count":1} +{"filepath":"countries/az.m3u","count":1} +{"filepath":"countries/bs.m3u","count":1} +{"filepath":"countries/bh.m3u","count":1} +{"filepath":"countries/bd.m3u","count":1} +{"filepath":"countries/bb.m3u","count":1} +{"filepath":"countries/by.m3u","count":1} +{"filepath":"countries/be.m3u","count":1} +{"filepath":"countries/bz.m3u","count":1} +{"filepath":"countries/bj.m3u","count":1} +{"filepath":"countries/bm.m3u","count":1} +{"filepath":"countries/bt.m3u","count":1} +{"filepath":"countries/bo.m3u","count":1} +{"filepath":"countries/bq.m3u","count":1} +{"filepath":"countries/ba.m3u","count":1} +{"filepath":"countries/bw.m3u","count":1} +{"filepath":"countries/bv.m3u","count":1} +{"filepath":"countries/br.m3u","count":1} +{"filepath":"countries/io.m3u","count":1} +{"filepath":"countries/vg.m3u","count":1} +{"filepath":"countries/bn.m3u","count":1} +{"filepath":"countries/bg.m3u","count":1} +{"filepath":"countries/bf.m3u","count":1} +{"filepath":"countries/bi.m3u","count":1} +{"filepath":"countries/kh.m3u","count":1} +{"filepath":"countries/cm.m3u","count":1} +{"filepath":"countries/ca.m3u","count":1} +{"filepath":"countries/cv.m3u","count":1} +{"filepath":"countries/ky.m3u","count":1} +{"filepath":"countries/cf.m3u","count":1} +{"filepath":"countries/td.m3u","count":1} +{"filepath":"countries/cl.m3u","count":1} +{"filepath":"countries/cn.m3u","count":1} +{"filepath":"countries/cx.m3u","count":1} +{"filepath":"countries/cc.m3u","count":1} +{"filepath":"countries/co.m3u","count":1} +{"filepath":"countries/km.m3u","count":1} +{"filepath":"countries/ck.m3u","count":1} +{"filepath":"countries/cr.m3u","count":1} +{"filepath":"countries/hr.m3u","count":1} +{"filepath":"countries/cu.m3u","count":1} +{"filepath":"countries/cw.m3u","count":1} +{"filepath":"countries/cy.m3u","count":1} +{"filepath":"countries/cz.m3u","count":1} +{"filepath":"countries/cd.m3u","count":1} +{"filepath":"countries/dk.m3u","count":1} +{"filepath":"countries/dj.m3u","count":1} +{"filepath":"countries/dm.m3u","count":1} +{"filepath":"countries/do.m3u","count":1} +{"filepath":"countries/tl.m3u","count":1} +{"filepath":"countries/ec.m3u","count":1} +{"filepath":"countries/eg.m3u","count":1} +{"filepath":"countries/sv.m3u","count":1} +{"filepath":"countries/gq.m3u","count":1} +{"filepath":"countries/er.m3u","count":1} +{"filepath":"countries/ee.m3u","count":1} +{"filepath":"countries/et.m3u","count":1} +{"filepath":"countries/fk.m3u","count":1} +{"filepath":"countries/fo.m3u","count":1} +{"filepath":"countries/fj.m3u","count":1} +{"filepath":"countries/fi.m3u","count":1} +{"filepath":"countries/fr.m3u","count":1} +{"filepath":"countries/gf.m3u","count":1} +{"filepath":"countries/pf.m3u","count":1} +{"filepath":"countries/tf.m3u","count":1} +{"filepath":"countries/ga.m3u","count":1} +{"filepath":"countries/gm.m3u","count":1} +{"filepath":"countries/ge.m3u","count":1} +{"filepath":"countries/de.m3u","count":1} +{"filepath":"countries/gh.m3u","count":1} +{"filepath":"countries/gi.m3u","count":1} +{"filepath":"countries/gr.m3u","count":1} +{"filepath":"countries/gl.m3u","count":1} +{"filepath":"countries/gd.m3u","count":1} +{"filepath":"countries/gp.m3u","count":1} +{"filepath":"countries/gu.m3u","count":1} +{"filepath":"countries/gt.m3u","count":1} +{"filepath":"countries/gg.m3u","count":1} +{"filepath":"countries/gn.m3u","count":1} +{"filepath":"countries/gw.m3u","count":1} +{"filepath":"countries/gy.m3u","count":1} +{"filepath":"countries/ht.m3u","count":1} +{"filepath":"countries/hm.m3u","count":1} +{"filepath":"countries/hn.m3u","count":1} +{"filepath":"countries/hk.m3u","count":1} +{"filepath":"countries/hu.m3u","count":1} +{"filepath":"countries/is.m3u","count":1} +{"filepath":"countries/in.m3u","count":1} +{"filepath":"countries/id.m3u","count":1} +{"filepath":"countries/ir.m3u","count":1} +{"filepath":"countries/iq.m3u","count":1} +{"filepath":"countries/ie.m3u","count":1} +{"filepath":"countries/im.m3u","count":1} +{"filepath":"countries/il.m3u","count":1} +{"filepath":"countries/it.m3u","count":1} +{"filepath":"countries/ci.m3u","count":1} +{"filepath":"countries/jm.m3u","count":1} +{"filepath":"countries/jp.m3u","count":1} +{"filepath":"countries/je.m3u","count":1} +{"filepath":"countries/jo.m3u","count":1} +{"filepath":"countries/kz.m3u","count":1} +{"filepath":"countries/ke.m3u","count":1} +{"filepath":"countries/ki.m3u","count":1} +{"filepath":"countries/xk.m3u","count":1} +{"filepath":"countries/kw.m3u","count":1} +{"filepath":"countries/kg.m3u","count":1} +{"filepath":"countries/la.m3u","count":1} +{"filepath":"countries/lv.m3u","count":1} +{"filepath":"countries/lb.m3u","count":1} +{"filepath":"countries/ls.m3u","count":1} +{"filepath":"countries/lr.m3u","count":1} +{"filepath":"countries/ly.m3u","count":1} +{"filepath":"countries/li.m3u","count":1} +{"filepath":"countries/lt.m3u","count":1} +{"filepath":"countries/lu.m3u","count":1} +{"filepath":"countries/mo.m3u","count":1} +{"filepath":"countries/mg.m3u","count":1} +{"filepath":"countries/mw.m3u","count":1} +{"filepath":"countries/my.m3u","count":1} +{"filepath":"countries/mv.m3u","count":1} +{"filepath":"countries/ml.m3u","count":1} +{"filepath":"countries/mt.m3u","count":1} +{"filepath":"countries/mh.m3u","count":1} +{"filepath":"countries/mq.m3u","count":1} +{"filepath":"countries/mr.m3u","count":1} +{"filepath":"countries/mu.m3u","count":1} +{"filepath":"countries/yt.m3u","count":1} +{"filepath":"countries/mx.m3u","count":1} +{"filepath":"countries/fm.m3u","count":1} +{"filepath":"countries/md.m3u","count":1} +{"filepath":"countries/mc.m3u","count":1} +{"filepath":"countries/mn.m3u","count":1} +{"filepath":"countries/me.m3u","count":1} +{"filepath":"countries/ms.m3u","count":1} +{"filepath":"countries/ma.m3u","count":1} +{"filepath":"countries/mz.m3u","count":1} +{"filepath":"countries/mm.m3u","count":1} +{"filepath":"countries/na.m3u","count":1} +{"filepath":"countries/nr.m3u","count":1} +{"filepath":"countries/np.m3u","count":1} +{"filepath":"countries/nl.m3u","count":1} +{"filepath":"countries/nc.m3u","count":1} +{"filepath":"countries/nz.m3u","count":1} +{"filepath":"countries/ni.m3u","count":1} +{"filepath":"countries/ne.m3u","count":1} +{"filepath":"countries/ng.m3u","count":1} +{"filepath":"countries/nu.m3u","count":1} +{"filepath":"countries/nf.m3u","count":1} +{"filepath":"countries/kp.m3u","count":1} +{"filepath":"countries/mk.m3u","count":1} +{"filepath":"countries/mp.m3u","count":1} +{"filepath":"countries/no.m3u","count":1} +{"filepath":"countries/om.m3u","count":1} +{"filepath":"countries/pk.m3u","count":1} +{"filepath":"countries/pw.m3u","count":1} +{"filepath":"countries/ps.m3u","count":1} +{"filepath":"countries/pa.m3u","count":1} +{"filepath":"countries/pg.m3u","count":1} +{"filepath":"countries/py.m3u","count":1} +{"filepath":"countries/pe.m3u","count":1} +{"filepath":"countries/ph.m3u","count":1} +{"filepath":"countries/pn.m3u","count":1} +{"filepath":"countries/pl.m3u","count":1} +{"filepath":"countries/pt.m3u","count":1} +{"filepath":"countries/pr.m3u","count":1} +{"filepath":"countries/qa.m3u","count":1} +{"filepath":"countries/cg.m3u","count":1} +{"filepath":"countries/ro.m3u","count":1} +{"filepath":"countries/ru.m3u","count":2} +{"filepath":"countries/rw.m3u","count":1} +{"filepath":"countries/re.m3u","count":1} +{"filepath":"countries/bl.m3u","count":1} +{"filepath":"countries/sh.m3u","count":1} +{"filepath":"countries/kn.m3u","count":1} +{"filepath":"countries/lc.m3u","count":1} +{"filepath":"countries/mf.m3u","count":1} +{"filepath":"countries/pm.m3u","count":1} +{"filepath":"countries/vc.m3u","count":1} +{"filepath":"countries/ws.m3u","count":1} +{"filepath":"countries/sm.m3u","count":1} +{"filepath":"countries/sa.m3u","count":1} +{"filepath":"countries/sn.m3u","count":1} +{"filepath":"countries/rs.m3u","count":1} +{"filepath":"countries/sc.m3u","count":1} +{"filepath":"countries/sl.m3u","count":1} +{"filepath":"countries/sg.m3u","count":1} +{"filepath":"countries/sx.m3u","count":1} +{"filepath":"countries/sk.m3u","count":1} +{"filepath":"countries/si.m3u","count":1} +{"filepath":"countries/sb.m3u","count":1} +{"filepath":"countries/so.m3u","count":1} +{"filepath":"countries/za.m3u","count":1} +{"filepath":"countries/gs.m3u","count":1} +{"filepath":"countries/kr.m3u","count":1} +{"filepath":"countries/ss.m3u","count":1} +{"filepath":"countries/es.m3u","count":1} +{"filepath":"countries/lk.m3u","count":1} +{"filepath":"countries/sd.m3u","count":1} +{"filepath":"countries/sr.m3u","count":1} +{"filepath":"countries/sj.m3u","count":1} +{"filepath":"countries/sz.m3u","count":1} +{"filepath":"countries/se.m3u","count":1} +{"filepath":"countries/ch.m3u","count":1} +{"filepath":"countries/sy.m3u","count":1} +{"filepath":"countries/st.m3u","count":1} +{"filepath":"countries/tw.m3u","count":1} +{"filepath":"countries/tj.m3u","count":1} +{"filepath":"countries/tz.m3u","count":1} +{"filepath":"countries/th.m3u","count":1} +{"filepath":"countries/tg.m3u","count":1} +{"filepath":"countries/tk.m3u","count":1} +{"filepath":"countries/to.m3u","count":1} +{"filepath":"countries/tt.m3u","count":1} +{"filepath":"countries/tn.m3u","count":1} +{"filepath":"countries/tr.m3u","count":1} +{"filepath":"countries/tm.m3u","count":1} +{"filepath":"countries/tc.m3u","count":1} +{"filepath":"countries/tv.m3u","count":1} +{"filepath":"countries/um.m3u","count":1} +{"filepath":"countries/vi.m3u","count":1} +{"filepath":"countries/ug.m3u","count":1} +{"filepath":"countries/ua.m3u","count":1} +{"filepath":"countries/ae.m3u","count":1} +{"filepath":"countries/uk.m3u","count":1} +{"filepath":"countries/us.m3u","count":1} +{"filepath":"countries/uy.m3u","count":1} +{"filepath":"countries/uz.m3u","count":1} +{"filepath":"countries/vu.m3u","count":1} +{"filepath":"countries/va.m3u","count":1} +{"filepath":"countries/ve.m3u","count":1} +{"filepath":"countries/vn.m3u","count":1} +{"filepath":"countries/wf.m3u","count":1} +{"filepath":"countries/eh.m3u","count":1} +{"filepath":"countries/ye.m3u","count":1} +{"filepath":"countries/zm.m3u","count":1} +{"filepath":"countries/zw.m3u","count":1} +{"filepath":"countries/ax.m3u","count":1} {"filepath":"countries/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/languages.log b/tests/__data__/expected/logs/generators/languages.log index bd9bd1a1c..c68ade3aa 100644 --- a/tests/__data__/expected/logs/generators/languages.log +++ b/tests/__data__/expected/logs/generators/languages.log @@ -1,5 +1,4 @@ {"filepath":"languages/cat.m3u","count":1} {"filepath":"languages/eng.m3u","count":1} -{"filepath":"languages/nld.m3u","count":1} {"filepath":"languages/rus.m3u","count":1} {"filepath":"languages/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/regions.log b/tests/__data__/expected/logs/generators/regions.log index 11e3d17da..d4c00b2cc 100644 --- a/tests/__data__/expected/logs/generators/regions.log +++ b/tests/__data__/expected/logs/generators/regions.log @@ -21,5 +21,5 @@ {"filepath":"regions/sas.m3u","count":0} {"filepath":"regions/ssa.m3u","count":0} {"filepath":"regions/wafr.m3u","count":0} -{"filepath":"regions/int.m3u","count":4} +{"filepath":"regions/int.m3u","count":3} {"filepath":"regions/undefined.m3u","count":2} \ No newline at end of file From 5e1945ce4a2e8d0a40ad20d97e58a900698d9169 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 03:06:27 +0300 Subject: [PATCH 022/157] wip --- scripts/generators/index_m3u.js | 1 + tests/__data__/expected/.gh-pages/index.m3u | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/generators/index_m3u.js b/scripts/generators/index_m3u.js index 1a6ea9710..d280ecf51 100644 --- a/scripts/generators/index_m3u.js +++ b/scripts/generators/index_m3u.js @@ -2,5 +2,6 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) return { filepath: 'index.m3u', items: streams } } diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index 798c12347..6ccfdd3dd 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -7,7 +7,5 @@ http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 From 3fd0006b317bfdd645f9b6fe5005557e3abacb02 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 03:52:47 +0300 Subject: [PATCH 023/157] wip --- scripts/commands/generate-playlists.js | 28 ++----------------- scripts/generators/index.js | 2 ++ scripts/generators/index_category_m3u.js | 22 +++++++++++++++ scripts/generators/index_nsfw_m3u.js | 6 ++++ .../expected/.gh-pages/categories/general.m3u | 4 ++- .../expected/.gh-pages/categories/news.m3u | 2 +- .../expected/.gh-pages/categories/weather.m3u | 3 ++ .../expected/.gh-pages/countries/ca.m3u | 5 ++++ .../expected/.gh-pages/countries/ru.m3u | 2 +- .../expected/.gh-pages/countries/uk.m3u | 2 +- .../expected/.gh-pages/index.category.m3u | 15 ++++++++++ tests/__data__/expected/.gh-pages/index.m3u | 4 ++- .../expected/.gh-pages/index.nsfw.m3u | 15 ++++++++++ .../expected/.gh-pages/languages/eng.m3u | 2 +- .../expected/.gh-pages/regions/int.m3u | 4 ++- .../expected/logs/generators/categories.log | 4 +-- .../expected/logs/generators/countries.log | 2 +- .../expected/logs/generators/languages.log | 1 + .../expected/logs/generators/regions.log | 8 +++--- 19 files changed, 91 insertions(+), 40 deletions(-) create mode 100644 scripts/generators/index_category_m3u.js create mode 100644 scripts/generators/index_nsfw_m3u.js create mode 100644 tests/__data__/expected/.gh-pages/categories/weather.m3u create mode 100644 tests/__data__/expected/.gh-pages/countries/ca.m3u create mode 100644 tests/__data__/expected/.gh-pages/index.category.m3u create mode 100644 tests/__data__/expected/.gh-pages/index.nsfw.m3u diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index b20ecfd2d..60952d700 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -10,8 +10,9 @@ async function main() { await generator.generate('languages', streams) await generator.generate('regions', streams) await generator.generate('index_m3u', streams) + await generator.generate('index_nsfw_m3u', streams) + await generator.generate('index_category_m3u', streams) - // await generateIndexNSFW() // await generateIndexCategory() // await generateIndexCountry() // await generateIndexLanguage() @@ -62,31 +63,6 @@ async function loadStreams() { }) } -// async function generateIndexNSFW() { -// logger.info(`Generating index.nsfw.m3u...`) - -// await generator.generate( -// `${PUBLIC_PATH}/index.nsfw.m3u`, -// {}, -// { -// includeNSFW: true, -// onLoad: function (items) { -// return items.map(item => { -// if (!item.categories || !item.categories.length) { -// item.group_title = 'Other' -// } - -// return item -// }) -// }, -// sortBy: item => { -// if (item.group_title === 'Other') return '_' -// return item.group_title || '' -// } -// } -// ) -// } - // async function generateIndexCategory() { // logger.info(`Generating index.category.m3u...`) diff --git a/scripts/generators/index.js b/scripts/generators/index.js index 91391b07e..c77404007 100644 --- a/scripts/generators/index.js +++ b/scripts/generators/index.js @@ -3,3 +3,5 @@ exports.countries = require('./countries') exports.languages = require('./languages') exports.regions = require('./regions') exports.index_m3u = require('./index_m3u') +exports.index_nsfw_m3u = require('./index_nsfw_m3u') +exports.index_category_m3u = require('./index_category_m3u') diff --git a/scripts/generators/index_category_m3u.js b/scripts/generators/index_category_m3u.js new file mode 100644 index 000000000..fa3b4b181 --- /dev/null +++ b/scripts/generators/index_category_m3u.js @@ -0,0 +1,22 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + let items = [] + streams.forEach(stream => { + if (!stream.categories.length) return items.push(stream) + + stream.categories.forEach(category => { + const item = _.cloneDeep(stream) + item.group_title = category.name + items.push(item) + }) + }) + items = _.sortBy(items, i => { + if (i.group_title === 'Undefined') return '_' + return i.group_title + }) + + return { filepath: 'index.category.m3u', items } +} diff --git a/scripts/generators/index_nsfw_m3u.js b/scripts/generators/index_nsfw_m3u.js new file mode 100644 index 000000000..a46fec24c --- /dev/null +++ b/scripts/generators/index_nsfw_m3u.js @@ -0,0 +1,6 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + return { filepath: 'index.nsfw.m3u', items: streams } +} diff --git a/tests/__data__/expected/.gh-pages/categories/general.m3u b/tests/__data__/expected/.gh-pages/categories/general.m3u index 0b77eed5a..a5890b5ab 100644 --- a/tests/__data__/expected/.gh-pages/categories/general.m3u +++ b/tests/__data__/expected/.gh-pages/categories/general.m3u @@ -1,3 +1,5 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/news.m3u b/tests/__data__/expected/.gh-pages/categories/news.m3u index 4c20e3838..3993d1c4a 100644 --- a/tests/__data__/expected/.gh-pages/categories/news.m3u +++ b/tests/__data__/expected/.gh-pages/categories/news.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/weather.m3u b/tests/__data__/expected/.gh-pages/categories/weather.m3u new file mode 100644 index 000000000..1dfd5d41a --- /dev/null +++ b/tests/__data__/expected/.gh-pages/categories/weather.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ca.m3u b/tests/__data__/expected/.gh-pages/countries/ca.m3u new file mode 100644 index 000000000..fb0a0ce72 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/countries/ca.m3u @@ -0,0 +1,5 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 753c8e6e1..a5890b5ab 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index 4c20e3838..3993d1c4a 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u new file mode 100644 index 000000000..28b3cbe20 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/index.category.m3u @@ -0,0 +1,15 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index 6ccfdd3dd..1e10afcac 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,10 +1,12 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" #EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u new file mode 100644 index 000000000..7646b9b52 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/index.nsfw.m3u @@ -0,0 +1,15 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/eng.m3u b/tests/__data__/expected/.gh-pages/languages/eng.m3u index 4c20e3838..3993d1c4a 100644 --- a/tests/__data__/expected/.gh-pages/languages/eng.m3u +++ b/tests/__data__/expected/.gh-pages/languages/eng.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index c0834afa7..d2bb00ce0 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,7 +1,9 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" #EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/logs/generators/categories.log b/tests/__data__/expected/logs/generators/categories.log index acfb802b9..af68b09a9 100644 --- a/tests/__data__/expected/logs/generators/categories.log +++ b/tests/__data__/expected/logs/generators/categories.log @@ -9,7 +9,7 @@ {"filepath":"categories/education.m3u","count":0} {"filepath":"categories/entertainment.m3u","count":0} {"filepath":"categories/family.m3u","count":0} -{"filepath":"categories/general.m3u","count":1} +{"filepath":"categories/general.m3u","count":2} {"filepath":"categories/kids.m3u","count":0} {"filepath":"categories/legislative.m3u","count":0} {"filepath":"categories/lifestyle.m3u","count":0} @@ -24,6 +24,6 @@ {"filepath":"categories/shop.m3u","count":0} {"filepath":"categories/sports.m3u","count":0} {"filepath":"categories/travel.m3u","count":0} -{"filepath":"categories/weather.m3u","count":0} +{"filepath":"categories/weather.m3u","count":1} {"filepath":"categories/xxx.m3u","count":1} {"filepath":"categories/undefined.m3u","count":3} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log index cdd39bbdf..9d56d14b6 100644 --- a/tests/__data__/expected/logs/generators/countries.log +++ b/tests/__data__/expected/logs/generators/countries.log @@ -37,7 +37,7 @@ {"filepath":"countries/bi.m3u","count":1} {"filepath":"countries/kh.m3u","count":1} {"filepath":"countries/cm.m3u","count":1} -{"filepath":"countries/ca.m3u","count":1} +{"filepath":"countries/ca.m3u","count":2} {"filepath":"countries/cv.m3u","count":1} {"filepath":"countries/ky.m3u","count":1} {"filepath":"countries/cf.m3u","count":1} diff --git a/tests/__data__/expected/logs/generators/languages.log b/tests/__data__/expected/logs/generators/languages.log index c68ade3aa..a11820504 100644 --- a/tests/__data__/expected/logs/generators/languages.log +++ b/tests/__data__/expected/logs/generators/languages.log @@ -1,4 +1,5 @@ {"filepath":"languages/cat.m3u","count":1} {"filepath":"languages/eng.m3u","count":1} +{"filepath":"languages/fra.m3u","count":1} {"filepath":"languages/rus.m3u","count":1} {"filepath":"languages/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/regions.log b/tests/__data__/expected/logs/generators/regions.log index d4c00b2cc..ddf9139e0 100644 --- a/tests/__data__/expected/logs/generators/regions.log +++ b/tests/__data__/expected/logs/generators/regions.log @@ -1,5 +1,5 @@ {"filepath":"regions/afr.m3u","count":0} -{"filepath":"regions/amer.m3u","count":0} +{"filepath":"regions/amer.m3u","count":1} {"filepath":"regions/arab.m3u","count":0} {"filepath":"regions/asia.m3u","count":1} {"filepath":"regions/apac.m3u","count":0} @@ -15,11 +15,11 @@ {"filepath":"regions/mideast.m3u","count":0} {"filepath":"regions/mena.m3u","count":0} {"filepath":"regions/nord.m3u","count":0} -{"filepath":"regions/noram.m3u","count":0} -{"filepath":"regions/nam.m3u","count":0} +{"filepath":"regions/noram.m3u","count":1} +{"filepath":"regions/nam.m3u","count":1} {"filepath":"regions/oce.m3u","count":0} {"filepath":"regions/sas.m3u","count":0} {"filepath":"regions/ssa.m3u","count":0} {"filepath":"regions/wafr.m3u","count":0} -{"filepath":"regions/int.m3u","count":3} +{"filepath":"regions/int.m3u","count":4} {"filepath":"regions/undefined.m3u","count":2} \ No newline at end of file From e49dc7a39aab58dc5d4006c12d093ef3ea5809e9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 04:42:15 +0300 Subject: [PATCH 024/157] wip --- scripts/commands/generate-playlists.js | 68 +-- scripts/generators/index.js | 1 + scripts/generators/index_country_m3u.js | 55 ++ .../expected/.gh-pages/index.country.m3u | 511 ++++++++++++++++++ 4 files changed, 583 insertions(+), 52 deletions(-) create mode 100644 scripts/generators/index_country_m3u.js create mode 100644 tests/__data__/expected/.gh-pages/index.country.m3u diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index 60952d700..20510fbb6 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -4,7 +4,7 @@ const _ = require('lodash') async function main() { const streams = await loadStreams() - + // console.log(streams) await generator.generate('categories', streams) await generator.generate('countries', streams) await generator.generate('languages', streams) @@ -12,8 +12,8 @@ async function main() { await generator.generate('index_m3u', streams) await generator.generate('index_nsfw_m3u', streams) await generator.generate('index_category_m3u', streams) + await generator.generate('index_country_m3u', streams) - // await generateIndexCategory() // await generateIndexCountry() // await generateIndexLanguage() // await generateIndexRegion() @@ -49,61 +49,25 @@ async function loadStreams() { const channel = channels[stream.channel_id] || null stream.channel = channel - stream.broadcast_area = channel - ? channel.broadcast_area.map(item => { - const [_, code] = item.split('/') - return code - }) - : [] - stream.categories = channel ? channel.categories.map(id => categories[id]) : [] - stream.languages = channel ? channel.languages.map(code => languages[code]) : [] - stream.guides = guides[stream.channel_id] ? guides[stream.channel_id].map(g => g.url) : [] + if (channel) { + stream.broadcast_area = channel.broadcast_area.map(item => { + const [_, code] = item.split('/') + return code + }) + stream.categories = channel.categories.map(id => categories[id]) + stream.languages = channel.languages.map(code => languages[code]) + stream.guides = guides[stream.channel_id] ? guides[stream.channel_id].map(g => g.url) : [] + } else { + stream.broadcast_area = [] + stream.categories = [] + stream.languages = [] + stream.guides = [] + } return stream }) } -// async function generateIndexCategory() { -// logger.info(`Generating index.category.m3u...`) - -// await generator.generate( -// `${PUBLIC_PATH}/index.category.m3u`, -// {}, -// { -// onLoad: function (items) { -// let results = items -// .filter(item => !item.categories || !item.categories.length) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = 'Other' -// return newItem -// }) -// for (const category of _.sortBy(Object.values(categories), ['name'])) { -// let filtered = items -// .filter(item => { -// return ( -// Array.isArray(item.categories) && -// item.categories.map(c => c.slug).includes(category.slug) -// ) -// }) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = category.name -// return newItem -// }) -// results = results.concat(filtered) -// } - -// return results -// }, -// sortBy: item => { -// if (item.group_title === 'Other') return '_' -// return item.group_title -// } -// } -// ) -// } - // async function generateIndexCountry() { // logger.info(`Generating index.country.m3u...`) diff --git a/scripts/generators/index.js b/scripts/generators/index.js index c77404007..b60b09793 100644 --- a/scripts/generators/index.js +++ b/scripts/generators/index.js @@ -5,3 +5,4 @@ exports.regions = require('./regions') exports.index_m3u = require('./index_m3u') exports.index_nsfw_m3u = require('./index_nsfw_m3u') exports.index_category_m3u = require('./index_category_m3u') +exports.index_country_m3u = require('./index_country_m3u') diff --git a/scripts/generators/index_country_m3u.js b/scripts/generators/index_country_m3u.js new file mode 100644 index 000000000..30c70677c --- /dev/null +++ b/scripts/generators/index_country_m3u.js @@ -0,0 +1,55 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + await api.regions.load() + let regions = await api.regions.all() + regions = _.keyBy(regions, 'code') + + await api.countries.load() + let countries = await api.countries.all() + countries = _.keyBy(countries, 'code') + + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + let items = [] + streams.forEach(stream => { + if (!stream.channel) return items.push(stream) + + getBroadcastCountries(stream.channel, { countries, regions }).forEach(country => { + const item = _.cloneDeep(stream) + item.group_title = country.name + items.push(item) + }) + }) + items = _.sortBy(items, i => { + if (i.group_title === 'Undefined') return '_' + return i.group_title + }) + + return { filepath: 'index.country.m3u', items } +} + +function getBroadcastCountries(channel, { countries, regions }) { + let codes = channel.broadcast_area.reduce((acc, item) => { + const [type, code] = item.split('/') + switch (type) { + case 'c': + acc.push(code) + break + case 'r': + if (regions[code]) { + acc = acc.concat(regions[code].countries) + } + break + case 's': + const [c] = item.split('-') + acc.push(c) + break + } + return acc + }, []) + + codes = _.uniq(codes) + + return codes.map(code => countries[code]).filter(c => c) +} diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u new file mode 100644 index 000000000..f854d225d --- /dev/null +++ b/tests/__data__/expected/.gh-pages/index.country.m3u @@ -0,0 +1,511 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Algeria",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Andorra",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antarctica",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antigua and Barbuda",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Argentina",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Armenia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Aruba",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Australia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Austria",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Azerbaijan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahamas",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahrain",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bangladesh",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Barbados",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belarus",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belgium",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belize",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Benin",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bermuda",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bhutan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bolivia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bonaire",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bosnia and Herzegovina",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Botswana",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bouvet Island",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brazil",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Indian Ocean Territory",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Virgin Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brunei",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bulgaria",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burkina Faso",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burundi",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cambodia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cameroon",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Canada",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Canada",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cape Verde",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cayman Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Central African Republic",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chad",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chile",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="China",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Christmas Island",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cocos (Keeling) Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Colombia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Comoros",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cook Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Costa Rica",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Croatia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cuba",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Curacao",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cyprus",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Czech Republic",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Democratic Republic of the Congo",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Denmark",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Djibouti",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominica",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominican Republic",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="East Timor",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ecuador",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Egypt",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="El Salvador",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Equatorial Guinea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Eritrea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Estonia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ethiopia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Falkland Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Faroe Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Fiji",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Finland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="France",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Guiana",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Polynesia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Southern Territories",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gabon",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gambia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Georgia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Germany",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ghana",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gibraltar",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greece",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greenland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Grenada",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guadeloupe",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guam",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guatemala",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guernsey",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea-Bissau",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guyana",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Haiti",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Heard Island and McDonald Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Honduras",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hong Kong",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hungary",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iceland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iraq",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ireland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Isle of Man",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Israel",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Italy",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ivory Coast",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jamaica",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Japan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jersey",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jordan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kazakhstan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kenya",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kiribati",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kosovo",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kuwait",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kyrgyzstan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Laos",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Latvia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lebanon",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lesotho",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liberia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Libya",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liechtenstein",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lithuania",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Luxembourg",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Macao",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Madagascar",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malawi",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malaysia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Maldives",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mali",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malta",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Marshall Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Martinique",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritania",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritius",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mayotte",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mexico",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Micronesia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Moldova",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Monaco",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mongolia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montenegro",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montserrat",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Morocco",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mozambique",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Myanmar (Burma)",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Namibia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nauru",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nepal",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Netherlands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Caledonia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Zealand",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nicaragua",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niger",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nigeria",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niue",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norfolk Island",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Korea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Macedonia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Northern Mariana Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norway",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Oman",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pakistan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palau",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palestine",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Panama",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Papua New Guinea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Paraguay",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Peru",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Philippines",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pitcairn Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Poland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Portugal",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Puerto Rico",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Qatar",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Republic of the Congo",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Romania",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Russia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russia",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Rwanda",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Réunion",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Barthélemy",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Helena",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Kitts and Nevis",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Lucia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Martin",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Pierre and Miquelon",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Vincent and the Grenadines",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Samoa",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="San Marino",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saudi Arabia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Senegal",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Serbia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Seychelles",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sierra Leone",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Singapore",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sint Maarten",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovakia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovenia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Solomon Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Somalia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Africa",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Georgia and the South Sandwich Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Korea",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Sudan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Spain",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sri Lanka",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sudan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Suriname",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Svalbard and Jan Mayen",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Swaziland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sweden",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Switzerland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Syria",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="São Tomé and Príncipe",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Taiwan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tajikistan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tanzania",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Thailand",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Togo",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tokelau",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tonga",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Trinidad and Tobago",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tunisia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkey",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkmenistan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turks and Caicos Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tuvalu",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Minor Outlying Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Virgin Islands",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uganda",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ukraine",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uruguay",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uzbekistan",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vanuatu",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vatican City",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Venezuela",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vietnam",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Wallis and Futuna",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Western Sahara",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Yemen",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zambia",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zimbabwe",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 From 42cbfcd7adf383066fd54c92be9b390c4895dc24 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 05:21:22 +0300 Subject: [PATCH 025/157] wip --- scripts/commands/generate-playlists.js | 42 -------------------------- scripts/generators/languages.js | 6 ++-- 2 files changed, 4 insertions(+), 44 deletions(-) diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index 20510fbb6..ebefbae5d 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -68,48 +68,6 @@ async function loadStreams() { }) } -// async function generateIndexCountry() { -// logger.info(`Generating index.country.m3u...`) - -// await generator.generate( -// `${PUBLIC_PATH}/index.country.m3u`, -// {}, -// { -// onLoad: function (items) { -// let results = items -// .filter(item => !item.countries || !item.countries.length) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = 'Undefined' -// newItem.categories = [] -// return newItem -// }) -// for (const country of _.sortBy(Object.values(countries), ['name'])) { -// let filtered = items -// .filter(item => { -// return ( -// Array.isArray(item.countries) && -// item.countries.map(c => c.code).includes(country.code) -// ) -// }) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = country.name -// return newItem -// }) -// results = results.concat(filtered) -// } - -// return results -// }, -// sortBy: item => { -// if (item.group_title === 'Undefined') return '_' -// return item.group_title -// } -// } -// ) -// } - // async function generateIndexLanguage() { // logger.info(`Generating index.language.m3u...`) diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index 74692f9d8..cff825592 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -2,11 +2,13 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - const output = [] + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + await api.languages.load() let languages = await api.languages.all() languages = _.uniqBy(languages, 'code') - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + + const output = [] for (const language of languages) { let items = _.filter(streams, { channel: { languages: [language.code] } }) if (items.length) { From 510e566f8a930c49e5e0e249e897bc9bc05dc482 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 05:53:30 +0300 Subject: [PATCH 026/157] wip --- scripts/commands/generate-playlists.js | 121 +++++------------- scripts/generators/index.js | 2 + scripts/generators/index_language_m3u.js | 22 ++++ scripts/generators/index_region_m3u.js | 22 ++++ .../expected/.gh-pages/index.language.m3u | 13 ++ .../expected/.gh-pages/index.region.m3u | 31 +++++ 6 files changed, 121 insertions(+), 90 deletions(-) create mode 100644 scripts/generators/index_language_m3u.js create mode 100644 scripts/generators/index_region_m3u.js create mode 100644 tests/__data__/expected/.gh-pages/index.language.m3u create mode 100644 tests/__data__/expected/.gh-pages/index.region.m3u diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index ebefbae5d..f37a43eaf 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -1,22 +1,19 @@ -const { create: createPlaylist } = require('../core/playlist') -const { db, logger, generator, file, api } = require('../core') +const { db, generator, api } = require('../core') const _ = require('lodash') async function main() { const streams = await loadStreams() - // console.log(streams) + await generator.generate('categories', streams) await generator.generate('countries', streams) await generator.generate('languages', streams) await generator.generate('regions', streams) - await generator.generate('index_m3u', streams) - await generator.generate('index_nsfw_m3u', streams) await generator.generate('index_category_m3u', streams) await generator.generate('index_country_m3u', streams) - - // await generateIndexCountry() - // await generateIndexLanguage() - // await generateIndexRegion() + await generator.generate('index_language_m3u', streams) + await generator.generate('index_m3u', streams) + await generator.generate('index_nsfw_m3u', streams) + await generator.generate('index_region_m3u', streams) } main() @@ -38,6 +35,10 @@ async function loadStreams() { let languages = await api.languages.all() languages = _.keyBy(languages, 'code') + await api.regions.load() + let regions = await api.regions.all() + regions = _.keyBy(regions, 'code') + await api.guides.load() let guides = await api.guides.all() guides = _.groupBy(guides, 'channel') @@ -54,6 +55,26 @@ async function loadStreams() { const [_, code] = item.split('/') return code }) + stream.regions = channel.broadcast_area + .reduce((acc, item) => { + const [type, code] = item.split('/') + switch (type) { + case 'r': + acc.push(regions[code]) + break + case 's': + const [c] = item.split('-') + const r1 = _.filter(regions, { countries: [c] }) + acc = acc.concat(r1) + break + case 'c': + const r2 = _.filter(regions, { countries: [code] }) + acc = acc.concat(r2) + break + } + return acc + }, []) + .filter(i => i) stream.categories = channel.categories.map(id => categories[id]) stream.languages = channel.languages.map(code => languages[code]) stream.guides = guides[stream.channel_id] ? guides[stream.channel_id].map(g => g.url) : [] @@ -61,90 +82,10 @@ async function loadStreams() { stream.broadcast_area = [] stream.categories = [] stream.languages = [] + stream.regions = [] stream.guides = [] } return stream }) } - -// async function generateIndexLanguage() { -// logger.info(`Generating index.language.m3u...`) - -// await generator.generate( -// `${PUBLIC_PATH}/index.language.m3u`, -// {}, -// { -// onLoad: function (items) { -// let results = items -// .filter(item => !item.languages || !item.languages.length) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = 'Undefined' -// newItem.categories = [] -// return newItem -// }) -// for (const language of languages) { -// let filtered = items -// .filter(item => { -// return ( -// Array.isArray(item.languages) && -// item.languages.map(c => c.code).includes(language.code) -// ) -// }) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = language.name -// return newItem -// }) -// results = results.concat(filtered) -// } - -// return results -// }, -// sortBy: item => { -// if (item.group_title === 'Undefined') return '_' -// return item.group_title -// } -// } -// ) -// } - -// async function generateIndexRegion() { -// logger.info(`Generating index.region.m3u...`) - -// await generator.generate( -// `${PUBLIC_PATH}/index.region.m3u`, -// {}, -// { -// onLoad: function (items) { -// let results = items -// .filter(item => !item.regions.length) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = 'Undefined' -// newItem.categories = [] -// return newItem -// }) -// for (const region of regions) { -// let filtered = items -// .filter(item => { -// return item.regions.map(c => c.code).includes(region.code) -// }) -// .map(item => { -// const newItem = _.cloneDeep(item) -// newItem.group_title = region.name -// return newItem -// }) -// results = results.concat(filtered) -// } - -// return results -// }, -// sortBy: item => { -// if (item.group_title === 'Undefined') return '_' -// return item.group_title -// } -// } -// ) -// } diff --git a/scripts/generators/index.js b/scripts/generators/index.js index b60b09793..50e75cfeb 100644 --- a/scripts/generators/index.js +++ b/scripts/generators/index.js @@ -6,3 +6,5 @@ exports.index_m3u = require('./index_m3u') exports.index_nsfw_m3u = require('./index_nsfw_m3u') exports.index_category_m3u = require('./index_category_m3u') exports.index_country_m3u = require('./index_country_m3u') +exports.index_language_m3u = require('./index_language_m3u') +exports.index_region_m3u = require('./index_region_m3u') diff --git a/scripts/generators/index_language_m3u.js b/scripts/generators/index_language_m3u.js new file mode 100644 index 000000000..4f9889be5 --- /dev/null +++ b/scripts/generators/index_language_m3u.js @@ -0,0 +1,22 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + let items = [] + streams.forEach(stream => { + if (!stream.languages.length) return items.push(stream) + + stream.languages.forEach(language => { + const item = _.cloneDeep(stream) + item.group_title = language.name + items.push(item) + }) + }) + items = _.sortBy(items, i => { + if (i.group_title === 'Undefined') return '_' + return i.group_title + }) + + return { filepath: 'index.language.m3u', items } +} diff --git a/scripts/generators/index_region_m3u.js b/scripts/generators/index_region_m3u.js new file mode 100644 index 000000000..86f00f2fb --- /dev/null +++ b/scripts/generators/index_region_m3u.js @@ -0,0 +1,22 @@ +const api = require('../core/api') +const _ = require('lodash') + +module.exports = async function (streams = []) { + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + let items = [] + streams.forEach(stream => { + if (!stream.regions.length) return items.push(stream) + + stream.regions.forEach(region => { + const item = _.cloneDeep(stream) + item.group_title = region.name + items.push(item) + }) + }) + items = _.sortBy(items, i => { + if (i.group_title === 'Undefined') return '_' + return i.group_title + }) + + return { filepath: 'index.region.m3u', items } +} diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u new file mode 100644 index 000000000..2d6aa2a7e --- /dev/null +++ b/tests/__data__/expected/.gh-pages/index.language.m3u @@ -0,0 +1,13 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="French",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russian",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Valencian",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u new file mode 100644 index 000000000..73ec6be9b --- /dev/null +++ b/tests/__data__/expected/.gh-pages/index.region.m3u @@ -0,0 +1,31 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Americas",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Asia",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Commonwealth of Independent States",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Europe",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Europe, the Middle East and Africa",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe, the Middle East and Africa",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="North America",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Northern America",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Worldwide",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Worldwide",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Worldwide",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 From 23aef8722d780a96b3a2a1fee22dc660be09e36e Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 05:55:46 +0300 Subject: [PATCH 027/157] Update generate-playlists.test.js --- tests/commands/generate-playlists.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index e39096fab..a5f4438f1 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -15,8 +15,6 @@ beforeEach(() => { 'DB_DIR=tests/__data__/temp DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/generate-playlists.js', { encoding: 'utf8' } ) - - console.log(stdout) }) it('can generate playlists', () => { From 091d43c4f7cac63a2027ce55830d6c7c15e46cdb Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 06:04:41 +0300 Subject: [PATCH 028/157] Update create-database.js --- scripts/commands/create-database.js | 35 ++++++++++--------- .../setters/{title.js => channel_name.js} | 0 scripts/store/setters/index.js | 2 +- tests/commands/create-database.test.js | 6 ++-- 4 files changed, 22 insertions(+), 21 deletions(-) rename scripts/store/setters/{title.js => channel_name.js} (100%) diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js index f9927cbb8..8a41dbbfa 100644 --- a/scripts/commands/create-database.js +++ b/scripts/commands/create-database.js @@ -13,44 +13,45 @@ const options = program .parse(process.argv) .opts() -const links = [] - async function main() { logger.info('starting...') logger.info(`number of clusters: ${options.maxClusters}`) - await loadChannels() - await saveToDatabase() + await saveToDatabase(await findStreams()) logger.info('done') } main() -async function loadChannels() { - logger.info(`loading links...`) +async function findStreams() { + logger.info(`looking for streams...`) + await db.streams.load() const files = await file.list(`${options.inputDir}/**/*.m3u`) + const streams = [] for (const filepath of files) { const items = await parser.parsePlaylist(filepath) for (const item of items) { item.filepath = filepath - links.push(item) + streams.push(item) } } - logger.info(`found ${links.length} links`) + logger.info(`found ${streams.length} streams`) + + return streams } -async function saveToDatabase() { +async function saveToDatabase(streams = []) { logger.info('saving to the database...') - await db.reset() - const chunks = split(_.shuffle(links), options.maxClusters) + await db.streams.reset() + const chunks = split(_.shuffle(streams), options.maxClusters) for (const [i, chunk] of chunks.entries()) { for (const item of chunk) { const stream = store.create() - stream.set('id', { id: item.tvg.id }) - stream.set('title', { title: item.name }) + stream.set('channel_id', { channel_id: item.tvg.id }) + stream.set('channel_name', { title: item.name }) stream.set('filepath', { filepath: item.filepath }) stream.set('resolution', { title: item.name }) stream.set('status', { title: item.name }) @@ -60,14 +61,14 @@ async function saveToDatabase() { stream.set('updated', { updated: false }) stream.set('cluster_id', { cluster_id: i + 1 }) - if (!stream.get('id')) { - const id = cid.generate(item.name, item.filepath) + if (!stream.get('channel_id')) { + const channel_id = cid.generate(item.name, item.filepath) - stream.set('id', { id }) + stream.set('channel_id', { channel_id }) stream.set('updated', { updated: true }) } - await db.insert(stream.data()) + await db.streams.insert(stream.data()) } } } diff --git a/scripts/store/setters/title.js b/scripts/store/setters/channel_name.js similarity index 100% rename from scripts/store/setters/title.js rename to scripts/store/setters/channel_name.js diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 273dc0710..264b8e97a 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -2,4 +2,4 @@ exports.is_broken = require('./is_broken') exports.resolution = require('./resolution') exports.status = require('./status') exports.url = require('./url') -exports.title = require('./title') +exports.channel_name = require('./channel_name') diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js index 674c6d81f..c5c1dca2c 100644 --- a/tests/commands/create-database.test.js +++ b/tests/commands/create-database.test.js @@ -6,14 +6,14 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') const stdout = execSync( - 'DB_FILEPATH=tests/__data__/output/streams.db node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', + 'DB_DIR=tests/__data__/output/database node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', { encoding: 'utf8' } ) }) it('can create database', () => { - let output = content('tests/__data__/output/streams.db') - let expected = content('tests/__data__/expected/streams.db') + let output = content('tests/__data__/output/database/streams.db') + let expected = content('tests/__data__/expected/database/streams.db') output = output.map(i => { i._id = null From 002d8804df10af197dc89ba64a654a4e8c3ba8ca Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 06:11:40 +0300 Subject: [PATCH 029/157] Update create-matrix.js --- scripts/commands/create-matrix.js | 3 ++- tests/commands/create-matrix.test.js | 16 ++++++---------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/scripts/commands/create-matrix.js b/scripts/commands/create-matrix.js index be639b028..486111db6 100644 --- a/scripts/commands/create-matrix.js +++ b/scripts/commands/create-matrix.js @@ -1,7 +1,8 @@ const { logger, db } = require('../core') async function main() { - const docs = await db.find({}).sort({ cluster_id: 1 }) + await db.streams.load() + const docs = await db.streams.find({}).sort({ cluster_id: 1 }) const cluster_id = docs.reduce((acc, curr) => { if (!acc.includes(curr.cluster_id)) acc.push(curr.cluster_id) return acc diff --git a/tests/commands/create-matrix.test.js b/tests/commands/create-matrix.test.js index b02bf0254..07f0106f7 100644 --- a/tests/commands/create-matrix.test.js +++ b/tests/commands/create-matrix.test.js @@ -1,20 +1,16 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') -}) + fs.emptyDirSync('tests/__data__/temp') -afterEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') }) it('can create valid matrix', () => { - const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/streams.db node scripts/commands/create-matrix.js', - { encoding: 'utf8' } - ) + const result = execSync('DB_DIR=tests/__data__/temp node scripts/commands/create-matrix.js', { + encoding: 'utf8' + }) expect(result).toBe('::set-output name=matrix::{"cluster_id":[1,3]}\n') }) From c7dc04e1bb386a3d4748f9cbc380af92ad528d40 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 06:18:31 +0300 Subject: [PATCH 030/157] Update load-cluster.js --- .github/workflows/auto-update.yml | 2 +- scripts/commands/{load-streams.js => load-cluster.js} | 7 ++++--- .../logs/{load-streams => load-cluster}/cluster_1.log | 0 .../{load-streams.test.js => load-cluster.test.js} | 8 ++++---- 4 files changed, 9 insertions(+), 8 deletions(-) rename scripts/commands/{load-streams.js => load-cluster.js} (85%) rename tests/__data__/expected/logs/{load-streams => load-cluster}/cluster_1.log (100%) rename tests/commands/{load-streams.test.js => load-cluster.test.js} (58%) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 4d2a38477..10bb3ced5 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -51,7 +51,7 @@ jobs: with: node-version: '14' - run: npm install - - run: node scripts/commands/load-streams.js --cluster-id=${{ matrix.cluster_id }} + - run: node scripts/commands/load-cluster.js --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 with: name: logs diff --git a/scripts/commands/load-streams.js b/scripts/commands/load-cluster.js similarity index 85% rename from scripts/commands/load-streams.js rename to scripts/commands/load-cluster.js index 5e3e50caa..57629c4f1 100644 --- a/scripts/commands/load-streams.js +++ b/scripts/commands/load-cluster.js @@ -15,7 +15,7 @@ const config = { debug: options.debug } -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs/load-streams' +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/load-cluster' async function main() { logger.info('starting...') @@ -23,11 +23,12 @@ async function main() { logger.info(`delay: ${options.delay}ms`) timer.start() - const clusterLog = `${LOGS_PATH}/cluster_${options.clusterId}.log` + const clusterLog = `${LOGS_DIR}/cluster_${options.clusterId}.log` logger.info(`loading cluster: ${options.clusterId}`) logger.info(`creating '${clusterLog}'...`) await file.create(clusterLog) - const items = await db.find({ cluster_id: options.clusterId }) + await db.streams.load() + const items = await db.streams.find({ cluster_id: options.clusterId }) const total = items.length logger.info(`found ${total} links`) diff --git a/tests/__data__/expected/logs/load-streams/cluster_1.log b/tests/__data__/expected/logs/load-cluster/cluster_1.log similarity index 100% rename from tests/__data__/expected/logs/load-streams/cluster_1.log rename to tests/__data__/expected/logs/load-cluster/cluster_1.log diff --git a/tests/commands/load-streams.test.js b/tests/commands/load-cluster.test.js similarity index 58% rename from tests/commands/load-streams.test.js rename to tests/commands/load-cluster.test.js index 00bde9545..630e862fc 100644 --- a/tests/commands/load-streams.test.js +++ b/tests/commands/load-cluster.test.js @@ -5,17 +5,17 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') const stdout = execSync( - 'DB_FILEPATH=tests/__data__/temp/streams.db LOGS_PATH=tests/__data__/output/logs/load-streams node scripts/commands/load-streams.js --cluster-id=1 --timeout=1', + 'DB_DIR=tests/__data__/temp LOGS_DIR=tests/__data__/output/logs/load-cluster node scripts/commands/load-cluster.js --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) it('return results', () => { - let output = content('tests/__data__/output/logs/load-streams/cluster_1.log') - let expected = content('tests/__data__/expected/logs/load-streams/cluster_1.log') + let output = content('tests/__data__/output/logs/load-cluster/cluster_1.log') + let expected = content('tests/__data__/expected/logs/load-cluster/cluster_1.log') expect(output).toEqual(expected) }) From c2b557c34cd00864fb3d5f26ff090d78dc51ea77 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 06:51:59 +0300 Subject: [PATCH 031/157] Update save-results.js --- scripts/commands/save-results.js | 64 +++++++++++-------- .../cluster_1.log | 0 tests/commands/save-results.test.js | 14 ++-- 3 files changed, 45 insertions(+), 33 deletions(-) rename tests/__data__/input/logs/{load-streams => load-cluster}/cluster_1.log (100%) diff --git a/scripts/commands/save-results.js b/scripts/commands/save-results.js index d77b6db69..93b2be85c 100644 --- a/scripts/commands/save-results.js +++ b/scripts/commands/save-results.js @@ -2,48 +2,53 @@ const _ = require('lodash') const statuses = require('../data/statuses') const { db, store, parser, file, logger } = require('../core') -let streams = [] -let results = {} -const origins = {} const items = [] -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs/load-streams' +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/load-cluster' async function main() { - await loadDatabase() - await loadResults() - await findStreamOrigins() - await updateStreams() - await updateDatabase() + let streams = await loadStreams() + const results = await loadResults() + const origins = await findOrigins(results) + streams = await updateStreams(streams, results, origins) + + await updateDatabase(streams) } main() -async function loadDatabase() { - logger.info('loading database...') +async function loadStreams() { + logger.info('loading streams...') - streams = await db.find({}) + await db.streams.load() + const streams = await db.streams.find({}) logger.info(`found ${streams.length} streams`) + + return streams } async function loadResults() { - logger.info('loading results from logs/load-streams...') + logger.info('loading results from logs...') - const files = await file.list(`${LOGS_PATH}/cluster_*.log`) + const results = {} + const files = await file.list(`${LOGS_DIR}/cluster_*.log`) for (const filepath of files) { const parsed = await parser.parseLogs(filepath) - for (const result of parsed) { - results[result._id] = result + for (const item of parsed) { + results[item._id] = item } } logger.info(`found ${Object.values(results).length} results`) + + return results } -async function findStreamOrigins() { +async function findOrigins(results = {}) { logger.info('searching for stream origins...') + const origins = {} for (const { error, requests } of Object.values(results)) { if (error || !Array.isArray(requests) || !requests.length) continue @@ -59,20 +64,23 @@ async function findStreamOrigins() { } logger.info(`found ${_.uniq(Object.values(origins)).length} origins`) + + return origins } -async function updateStreams() { +async function updateStreams(items = [], results = {}, origins = {}) { logger.info('updating streams...') let updated = 0 - for (const item of streams) { + const output = [] + for (const item of items) { const stream = store.create(item) const result = results[item._id] if (result) { const { error, streams, requests } = result const resolution = parseResolution(streams) - const origin = findOrigin(requests) + const origin = findOrigin(requests, origins) let status = parseStatus(error) if (status) { @@ -105,26 +113,28 @@ async function updateStreams() { if (stream.changed) { stream.set('updated', true) - items.push(stream.data()) + output.push(stream.data()) updated++ } } - logger.info(`updated ${updated} items`) + logger.info(`updated ${updated} streams`) + + return output } -async function updateDatabase() { +async function updateDatabase(streams = []) { logger.info('updating database...') - for (const item of items) { - await db.update({ _id: item._id }, item) + for (const stream of streams) { + await db.streams.update({ _id: stream._id }, stream) } - db.compact() + db.streams.compact() logger.info('done') } -function findOrigin(requests) { +function findOrigin(requests = [], origins = {}) { if (origins && Array.isArray(requests)) { requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) for (const url of requests) { diff --git a/tests/__data__/input/logs/load-streams/cluster_1.log b/tests/__data__/input/logs/load-cluster/cluster_1.log similarity index 100% rename from tests/__data__/input/logs/load-streams/cluster_1.log rename to tests/__data__/input/logs/load-cluster/cluster_1.log diff --git a/tests/commands/save-results.test.js b/tests/commands/save-results.test.js index 73af2cd22..7375b9d4a 100644 --- a/tests/commands/save-results.test.js +++ b/tests/commands/save-results.test.js @@ -4,19 +4,21 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/save-results.streams.db', 'tests/__data__/temp/streams.db') + fs.copyFileSync( + 'tests/__data__/input/database/save-results.streams.db', + 'tests/__data__/temp/streams.db' + ) const stdout = execSync( - 'DB_FILEPATH=tests/__data__/temp/streams.db LOGS_PATH=tests/__data__/input/logs/load-streams node scripts/commands/save-results.js', + 'DB_DIR=tests/__data__/temp LOGS_DIR=tests/__data__/input/logs/load-cluster node scripts/commands/save-results.js', { encoding: 'utf8' } ) }) it('can save results', () => { - const output = content('tests/__data__/temp/streams.db') - const expected = content('tests/__data__/expected/save-results.streams.db') - - expect(output).toEqual(expected) + expect(content('tests/__data__/temp/streams.db')).toEqual( + content('tests/__data__/expected/save-results.streams.db') + ) }) function content(filepath) { From a728d3d5a5bfc5a08d1c4729fe96feae0479465c Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 07:00:48 +0300 Subject: [PATCH 032/157] Update update-playlist.js --- scripts/commands/update-playlists.js | 9 +++++--- tests/commands/update-playlists.test.js | 30 +++++++++++-------------- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/scripts/commands/update-playlists.js b/scripts/commands/update-playlists.js index 4ef3b7f00..782f1b1f9 100644 --- a/scripts/commands/update-playlists.js +++ b/scripts/commands/update-playlists.js @@ -1,15 +1,18 @@ const _ = require('lodash') -const { generator, db, logger } = require('../core') +const { create: createPlaylist } = require('../core/playlist') +const { db, logger, file } = require('../core') async function main() { - let items = await db + await db.streams.load() + let items = await db.streams .find({}) .sort({ name: 1, 'status.level': 1, 'resolution.height': -1, url: 1 }) const files = _.groupBy(items, 'filepath') for (const filepath in files) { const items = files[filepath] - await generator.saveAsM3U(filepath, items) + const playlist = createPlaylist(items, { public: false }) + await file.create(filepath, playlist.toString()) } } diff --git a/tests/commands/update-playlists.test.js b/tests/commands/update-playlists.test.js index 402a64f6a..d66d1b407 100644 --- a/tests/commands/update-playlists.test.js +++ b/tests/commands/update-playlists.test.js @@ -1,33 +1,29 @@ const fs = require('fs-extra') const path = require('path') +const glob = require('glob') const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/streams.db', 'tests/__data__/temp/streams.db') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') - const stdout = execSync( - 'DB_FILEPATH=tests/__data__/temp/streams.db node scripts/commands/update-playlists.js', - { encoding: 'utf8' } - ) + const stdout = execSync('DB_DIR=tests/__data__/temp node scripts/commands/update-playlists.js', { + encoding: 'utf8' + }) }) -it('can update playlist', () => { - expect(content('tests/__data__/output/channels/ad.m3u')).toBe( - content('tests/__data__/expected/channels/ad.m3u') - ) +it('can update playlists', () => { + const files = glob + .sync('tests/__data__/expected/channels/*.m3u') + .map(f => f.replace('tests/__data__/expected/', '')) - expect(content('tests/__data__/output/channels/ru.m3u')).toBe( - content('tests/__data__/expected/channels/ru.m3u') - ) - - expect(content('tests/__data__/output/channels/uk.m3u')).toBe( - content('tests/__data__/expected/channels/uk.m3u') - ) + files.forEach(filepath => { + expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`)) + }) }) function content(filepath) { - return fs.readFileSync(path.resolve(filepath), { + return fs.readFileSync(`tests/__data__/${filepath}`, { encoding: 'utf8' }) } From 2cb9914cf7ab32c793b38f6822217e28b920cccd Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 07:12:33 +0300 Subject: [PATCH 033/157] Update cleanup-database.js --- scripts/commands/cleanup-database.js | 19 +++++---- .../expected/cleanup-database.streams.db | 5 +++ tests/commands/cleanup-database.test.js | 42 ++++++++++++------- 3 files changed, 42 insertions(+), 24 deletions(-) create mode 100644 tests/__data__/expected/cleanup-database.streams.db diff --git a/scripts/commands/cleanup-database.js b/scripts/commands/cleanup-database.js index d005c4807..2bc24f0d5 100644 --- a/scripts/commands/cleanup-database.js +++ b/scripts/commands/cleanup-database.js @@ -1,24 +1,25 @@ const { db, logger } = require('../core') async function main() { - logger.info(`Loading database...`) - let streams = await db.find({}) + logger.info(`loading streams...`) + await db.streams.load() + let streams = await db.streams.find({}) - logger.info(`Removing broken links...`) + logger.info(`removing broken links...`) let removed = 0 - const buffer = [] + const buffer = {} for (const stream of streams) { - const duplicate = buffer.find(i => i.id === stream.id) + const duplicate = buffer[stream.channel_id] if (duplicate && ['offline', 'timeout'].includes(stream.status.code)) { - await db.remove({ _id: stream._id }) + await db.streams.remove({ _id: stream._id }) removed++ } else { - buffer.push(stream) + buffer[stream.channel_id] = stream } } - db.compact() + db.streams.compact() - logger.info(`Removed ${removed} links`) + logger.info(`removed ${removed} links`) } main() diff --git a/tests/__data__/expected/cleanup-database.streams.db b/tests/__data__/expected/cleanup-database.streams.db new file mode 100644 index 000000000..ffee4256c --- /dev/null +++ b/tests/__data__/expected/cleanup-database.streams.db @@ -0,0 +1,5 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/commands/cleanup-database.test.js b/tests/commands/cleanup-database.test.js index bd541e8e7..2d59d8521 100644 --- a/tests/commands/cleanup-database.test.js +++ b/tests/commands/cleanup-database.test.js @@ -1,25 +1,37 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.copyFileSync('tests/__data__/input/test.db', 'tests/__data__/temp/test.db') -}) + fs.emptyDirSync('tests/__data__/output') + fs.copyFileSync( + 'tests/__data__/input/database/cleanup-database.streams.db', + 'tests/__data__/output/streams.db' + ) -afterEach(() => { - fs.rmdirSync('tests/__data__/temp', { recursive: true }) - fs.mkdirSync('tests/__data__/temp') + const stdout = execSync( + 'DB_DIR=tests/__data__/output node scripts/commands/cleanup-database.js', + { + encoding: 'utf8' + } + ) }) it('can remove broken links from database', () => { - const result = execSync( - 'DB_FILEPATH=tests/__data__/temp/test.db node scripts/commands/cleanup-database.js', - { encoding: 'utf8' } - ) - - const database = fs.readFileSync('tests/__data__/temp/test.db', { encoding: 'utf8' }) - const lines = database.split('\n') - expect(lines[0]).toBe( - `{"name":"ЛДПР ТВ","id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","src_country":{"name":"Russia","code":"RU","lang":"rus"},"tvg_country":"RU","countries":[{"name":"Russia","code":"RU","lang":"rus"}],"regions":[{"name":"Asia","code":"ASIA"},{"name":"Commonwealth of Independent States","code":"CIS"},{"name":"Europe, the Middle East and Africa","code":"EMEA"},{"name":"Europe","code":"EUR"}],"languages":[{"name":"Russian","code":"rus"}],"categories":[{"name":"General","slug":"general","nsfw":false}],"tvg_url":"","guides":["https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"],"logo":"https://iptvx.one/icn/ldpr-tv.png","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_nsfw":false,"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"}` + expect(content('tests/__data__/output/streams.db')).toEqual( + content('tests/__data__/expected/cleanup-database.streams.db') ) }) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From b9a093d816dbacad67f454df257572f9872f7cd0 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 07:15:16 +0300 Subject: [PATCH 034/157] Update load-cluster.test.js --- tests/commands/load-cluster.test.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/commands/load-cluster.test.js b/tests/commands/load-cluster.test.js index 630e862fc..be92dfa42 100644 --- a/tests/commands/load-cluster.test.js +++ b/tests/commands/load-cluster.test.js @@ -4,20 +4,18 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') - fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') const stdout = execSync( - 'DB_DIR=tests/__data__/temp LOGS_DIR=tests/__data__/output/logs/load-cluster node scripts/commands/load-cluster.js --cluster-id=1 --timeout=1', + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/load-cluster node scripts/commands/load-cluster.js --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) it('return results', () => { - let output = content('tests/__data__/output/logs/load-cluster/cluster_1.log') - let expected = content('tests/__data__/expected/logs/load-cluster/cluster_1.log') - - expect(output).toEqual(expected) + expect(content('tests/__data__/output/logs/load-cluster/cluster_1.log')).toEqual( + content('tests/__data__/expected/logs/load-cluster/cluster_1.log') + ) }) function content(filepath) { From 822e39dcf01bebf2184e2498aa6cb956b86349b7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:39:55 +0300 Subject: [PATCH 035/157] Update update-readme.js --- .readme/template.md | 89 +--- scripts/commands/update-readme.js | 137 +++--- scripts/core/markdown.js | 29 -- scripts/core/table.js | 32 ++ tests/__data__/expected/_readme.md | 418 ++++++++++++++++++ .../expected/cleanup-database.streams.db | 5 - .../__data__/expected/save-results.streams.db | 6 - tests/__data__/expected/streams.db | 3 - .../input/{readme.json => _readme.json} | 0 .../input/logs/generators/categories.log | 32 +- .../input/logs/generators/countries.log | 255 ++++++++++- .../input/logs/generators/languages.log | 9 +- .../input/logs/generators/regions.log | 31 +- tests/__data__/input/readme.md | 180 -------- tests/commands/update-readme.test.js | 25 +- 15 files changed, 851 insertions(+), 400 deletions(-) create mode 100644 scripts/core/table.js create mode 100644 tests/__data__/expected/_readme.md delete mode 100644 tests/__data__/expected/cleanup-database.streams.db delete mode 100644 tests/__data__/expected/save-results.streams.db delete mode 100644 tests/__data__/expected/streams.db rename tests/__data__/input/{readme.json => _readme.json} (100%) delete mode 100644 tests/__data__/input/readme.md diff --git a/.readme/template.md b/.readme/template.md index af3e5895b..9f23b4bca 100644 --- a/.readme/template.md +++ b/.readme/template.md @@ -2,23 +2,20 @@ [![auto-update](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml/badge.svg)](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml) -Collection of publicly available IPTV channels from all over the world. +Collection of publicly available IPTV (Internet Protocol television) channels from all over the world. ## Usage -To watch IPTV you just need to paste this link `https://iptv-org.github.io/iptv/index.m3u` to any player which supports M3U-playlists. +![VLC Network Panel](https://github.com/iptv-org/iptv/raw/master/.readme/preview.png) -![VLC Network Panel](.readme/preview.png) - -Also you can instead use one of these playlists: +To watch IPTV, simply insert one of the links below into any player that supports M3U playlists: +- `https://iptv-org.github.io/iptv/index.m3u` +- `https://iptv-org.github.io/iptv/index.nsfw.m3u` (includes adult channels) - `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category) -- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language) - `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country) +- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language) - `https://iptv-org.github.io/iptv/index.region.m3u` (grouped by region) -- `https://iptv-org.github.io/iptv/index.nsfw.m3u` (includes adult channels) - -Or select one of the playlists from the list below. ### Playlists by category @@ -31,98 +28,42 @@ Or select one of the playlists from the list below. -### Playlists by language +### Playlists by country
Expand
-#include "./.readme/_languages.md" +#include "./.readme/_countries.md"
-### Playlists by region +### Playlists by language
Expand
-#include "./.readme/_regions.md" +#include "./.readme/_languages.md"
-### Playlists by country +### Playlists by region
Expand
-#include "./.readme/_countries.md" - -
- -## For Developers - -In addition to the above methods, you can also get a list of all available channels in JSON format. - -To do this, you just have to make a GET request to: - -``` -https://iptv-org.github.io/iptv/channels.json -``` - -If successful, you should get the following response: +#include "./.readme/_regions.md" -
-Expand -
- -``` -[ - ... - { - "name": "CNN", - "logo": "https://i.imgur.com/ilZJT5s.png", - "url": "http://ott-cdn.ucom.am/s27/index.m3u8", - "categories": [ - { - "name": "News", - "slug": "news" - } - ], - "countries": [ - { - "code": "us", - "name": "United States" - }, - { - "code": "ca", - "name": "Canada" - } - ], - "languages": [ - { - "code": "eng", - "name": "English" - } - ], - "tvg": { - "id": "cnn.us", - "name": "CNN", - "url": "http://epg.streamstv.me/epg/guide-usa.xml.gz" - } - }, - ... -] -```
## EPG -Playlists already have a built-in list of EPG, so players that support the `url-tvg` tag should load it automatically. If not, you can find a list of available programs here: +Playlists already have a built-in list of EPG, so players that support the `x-tvg-url` tag should load it automatically. If not, you can find a list of available programs here: https://github.com/iptv-org/epg @@ -130,6 +71,10 @@ https://github.com/iptv-org/epg You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv). +## API + +The API documentation can be found in the [iptv-org/api](https://github.com/iptv-org/api) repository. + ## Contribution Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sending an issue or making a pull request. diff --git a/scripts/commands/update-readme.js b/scripts/commands/update-readme.js index 12a42d5ee..a3560cac1 100644 --- a/scripts/commands/update-readme.js +++ b/scripts/commands/update-readme.js @@ -1,12 +1,8 @@ -const { file, markdown, parser, logger } = require('../core') +const { file, markdown, parser, logger, api } = require('../core') +const { create: createTable } = require('../core/table') const { program } = require('commander') -let categories = [] -let countries = [] -let languages = [] -let regions = [] - -const LOGS_PATH = process.env.LOGS_PATH || 'scripts/logs' +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' const options = program .option('-c, --config ', 'Set path to config file', '.readme/config.json') @@ -14,127 +10,114 @@ const options = program .opts() async function main() { - await setUp() - - await generateCategoryTable() - await generateLanguageTable() - await generateRegionTable() - await generateCountryTable() - + await createCategoryTable() + await createCountryTable() + await createLanguageTable() + await createRegionTable() await updateReadme() } main() -async function generateCategoryTable() { - logger.info('Generating category table...') - +async function createCategoryTable() { + logger.info('creating category table...') const rows = [] - for (const category of categories) { + await api.categories.load() + const items = await parser.parseLogs(`${LOGS_DIR}/categories.log`) + for (const item of items) { + const id = file.getFilename(item.filepath) + const category = await api.categories.find({ id }) rows.push({ - category: category.name, - channels: category.count, - playlist: `https://iptv-org.github.io/iptv/categories/${category.slug}.m3u` + name: category ? category.name : 'Undefined', + channels: item.count, + playlist: `https://iptv-org.github.io/iptv/${item.filepath}` }) } - const table = markdown.createTable(rows, [ - { name: 'Category', align: 'left' }, + const table = createTable(rows, [ + { name: 'Category' }, { name: 'Channels', align: 'right' }, - { name: 'Playlist', align: 'left', nowrap: true } + { name: 'Playlist', nowrap: true } ]) await file.create('./.readme/_categories.md', table) } -async function generateCountryTable() { - logger.info('Generating country table...') - +async function createCountryTable() { + logger.info('creating country table...') const rows = [] - for (const country of countries) { - const flag = getCountryFlag(country.code) - const prefix = flag ? `${flag} ` : '' - + await api.countries.load() + const items = await parser.parseLogs(`${LOGS_DIR}/countries.log`) + for (const item of items) { + const code = file.getFilename(item.filepath) + const country = await api.countries.find({ code: code.toUpperCase() }) rows.push({ - country: prefix + country.name, - channels: country.count, - playlist: `https://iptv-org.github.io/iptv/countries/${country.code.toLowerCase()}.m3u` + name: country ? `${country.flag} ${country.name}` : 'Undefined', + channels: item.count, + playlist: `https://iptv-org.github.io/iptv/${item.filepath}` }) } - const table = markdown.createTable(rows, [ - { name: 'Country', align: 'left' }, + const table = createTable(rows, [ + { name: 'Country' }, { name: 'Channels', align: 'right' }, - { name: 'Playlist', align: 'left', nowrap: true } + { name: 'Playlist', nowrap: true } ]) await file.create('./.readme/_countries.md', table) } -async function generateRegionTable() { - logger.info('Generating region table...') - +async function createLanguageTable() { + logger.info('creating language table...') const rows = [] - for (const region of regions) { + await api.languages.load() + const items = await parser.parseLogs(`${LOGS_DIR}/languages.log`) + for (const item of items) { + const code = file.getFilename(item.filepath) + const language = await api.languages.find({ code }) rows.push({ - region: region.name, - channels: region.count, - playlist: `https://iptv-org.github.io/iptv/regions/${region.code.toLowerCase()}.m3u` + name: language ? language.name : 'Undefined', + channels: item.count, + playlist: `https://iptv-org.github.io/iptv/${item.filepath}` }) } - const table = markdown.createTable(rows, [ - { name: 'Region', align: 'left' }, + const table = createTable(rows, [ + { name: 'Language', align: 'left' }, { name: 'Channels', align: 'right' }, { name: 'Playlist', align: 'left', nowrap: true } ]) - await file.create('./.readme/_regions.md', table) + await file.create('./.readme/_languages.md', table) } -async function generateLanguageTable() { - logger.info('Generating language table...') - +async function createRegionTable() { + logger.info('creating region table...') const rows = [] - for (const language of languages) { + await api.regions.load() + const items = await parser.parseLogs(`${LOGS_DIR}/regions.log`) + for (const item of items) { + const code = file.getFilename(item.filepath) + const region = await api.regions.find({ code: code.toUpperCase() }) rows.push({ - language: language.name, - channels: language.count, - playlist: `https://iptv-org.github.io/iptv/languages/${language.code}.m3u` + name: region ? region.name : 'Undefined', + channels: item.count, + playlist: `https://iptv-org.github.io/iptv/${item.filepath}` }) } - const table = markdown.createTable(rows, [ - { name: 'Language', align: 'left' }, + const table = createTable(rows, [ + { name: 'Region', align: 'left' }, { name: 'Channels', align: 'right' }, { name: 'Playlist', align: 'left', nowrap: true } ]) - await file.create('./.readme/_languages.md', table) + await file.create('./.readme/_regions.md', table) } async function updateReadme() { - logger.info('Updating README.md...') - + logger.info('updating readme.md...') const config = require(file.resolve(options.config)) await file.createDir(file.dirname(config.build)) await markdown.compile(options.config) } - -async function setUp() { - categories = await parser.parseLogs(`${LOGS_PATH}/generate-playlists/categories.log`) - countries = await parser.parseLogs(`${LOGS_PATH}/generate-playlists/countries.log`) - languages = await parser.parseLogs(`${LOGS_PATH}/generate-playlists/languages.log`) - regions = await parser.parseLogs(`${LOGS_PATH}/generate-playlists/regions.log`) -} - -function getCountryFlag(code) { - switch (code) { - case 'UK': - return '🇬🇧' - case 'UNDEFINED': - return '' - default: - return code.replace(/./g, char => String.fromCodePoint(char.charCodeAt(0) + 127397)) - } -} diff --git a/scripts/core/markdown.js b/scripts/core/markdown.js index 32dc1110e..2729f0b7b 100644 --- a/scripts/core/markdown.js +++ b/scripts/core/markdown.js @@ -3,35 +3,6 @@ const file = require('./file') const markdown = {} -markdown.createTable = function (data, cols) { - let output = '\n' - - output += ' \n ' - for (let column of cols) { - output += `` - } - output += '\n \n' - - output += ' \n' - for (let item of data) { - output += ' ' - let i = 0 - for (let prop in item) { - const column = cols[i] - let nowrap = column.nowrap - let align = column.align - output += `` - i++ - } - output += '\n' - } - output += ' \n' - - output += '
${column.name}
${item[prop]}
' - - return output -} - markdown.compile = function (filepath) { markdownInclude.compileFiles(file.resolve(filepath)) } diff --git a/scripts/core/table.js b/scripts/core/table.js new file mode 100644 index 000000000..563cb9bfa --- /dev/null +++ b/scripts/core/table.js @@ -0,0 +1,32 @@ +const table = {} + +table.create = function (data, cols) { + let output = '\n' + + output += ' \n ' + for (let column of cols) { + output += `` + } + output += '\n \n' + + output += ' \n' + for (let item of data) { + output += ' ' + let i = 0 + for (let prop in item) { + const column = cols[i] + let nowrap = column.nowrap ? ` nowrap` : '' + let align = column.align ? ` align="${column.align}"` : '' + output += `${item[prop]}` + i++ + } + output += '\n' + } + output += ' \n' + + output += '
${column.name}
' + + return output +} + +module.exports = table diff --git a/tests/__data__/expected/_readme.md b/tests/__data__/expected/_readme.md new file mode 100644 index 000000000..f65bedd97 --- /dev/null +++ b/tests/__data__/expected/_readme.md @@ -0,0 +1,418 @@ +# IPTV + +[![auto-update](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml/badge.svg)](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml) + +Collection of publicly available IPTV (Internet Protocol television) channels from all over the world. + +## Usage + +![VLC Network Panel](https://github.com/iptv-org/iptv/raw/master/.readme/preview.png) + +To watch IPTV, simply insert one of the links below into any player that supports M3U playlists: + +- `https://iptv-org.github.io/iptv/index.m3u` +- `https://iptv-org.github.io/iptv/index.nsfw.m3u` (includes adult channels) +- `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category) +- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country) +- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language) +- `https://iptv-org.github.io/iptv/index.region.m3u` (grouped by region) + +### Playlists by category + +
+Expand +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CategoryChannelsPlaylist
Auto0https://iptv-org.github.io/iptv/categories/auto.m3u
Animation0https://iptv-org.github.io/iptv/categories/animation.m3u
Business0https://iptv-org.github.io/iptv/categories/business.m3u
Classic0https://iptv-org.github.io/iptv/categories/classic.m3u
Comedy0https://iptv-org.github.io/iptv/categories/comedy.m3u
Cooking0https://iptv-org.github.io/iptv/categories/cooking.m3u
Culture0https://iptv-org.github.io/iptv/categories/culture.m3u
Documentary0https://iptv-org.github.io/iptv/categories/documentary.m3u
Education0https://iptv-org.github.io/iptv/categories/education.m3u
Entertainment0https://iptv-org.github.io/iptv/categories/entertainment.m3u
Family0https://iptv-org.github.io/iptv/categories/family.m3u
General2https://iptv-org.github.io/iptv/categories/general.m3u
Kids0https://iptv-org.github.io/iptv/categories/kids.m3u
Legislative0https://iptv-org.github.io/iptv/categories/legislative.m3u
Lifestyle0https://iptv-org.github.io/iptv/categories/lifestyle.m3u
Movies0https://iptv-org.github.io/iptv/categories/movies.m3u
Music0https://iptv-org.github.io/iptv/categories/music.m3u
News1https://iptv-org.github.io/iptv/categories/news.m3u
Outdoor0https://iptv-org.github.io/iptv/categories/outdoor.m3u
Relax0https://iptv-org.github.io/iptv/categories/relax.m3u
Religious0https://iptv-org.github.io/iptv/categories/religious.m3u
Series0https://iptv-org.github.io/iptv/categories/series.m3u
Science0https://iptv-org.github.io/iptv/categories/science.m3u
Shop0https://iptv-org.github.io/iptv/categories/shop.m3u
Sports0https://iptv-org.github.io/iptv/categories/sports.m3u
Travel0https://iptv-org.github.io/iptv/categories/travel.m3u
Weather1https://iptv-org.github.io/iptv/categories/weather.m3u
XXX1https://iptv-org.github.io/iptv/categories/xxx.m3u
Undefined3https://iptv-org.github.io/iptv/categories/undefined.m3u
+ +
+ +### Playlists by country + +
+Expand +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CountryChannelsPlaylist
🇦🇫 Afghanistan1https://iptv-org.github.io/iptv/countries/af.m3u
🇦🇱 Albania1https://iptv-org.github.io/iptv/countries/al.m3u
🇩🇿 Algeria1https://iptv-org.github.io/iptv/countries/dz.m3u
🇦🇸 American Samoa1https://iptv-org.github.io/iptv/countries/as.m3u
🇦🇩 Andorra2https://iptv-org.github.io/iptv/countries/ad.m3u
🇦🇴 Angola1https://iptv-org.github.io/iptv/countries/ao.m3u
🇦🇮 Anguilla1https://iptv-org.github.io/iptv/countries/ai.m3u
🇦🇶 Antarctica1https://iptv-org.github.io/iptv/countries/aq.m3u
🇦🇬 Antigua and Barbuda1https://iptv-org.github.io/iptv/countries/ag.m3u
🇦🇷 Argentina1https://iptv-org.github.io/iptv/countries/ar.m3u
🇦🇲 Armenia1https://iptv-org.github.io/iptv/countries/am.m3u
🇦🇼 Aruba1https://iptv-org.github.io/iptv/countries/aw.m3u
🇦🇺 Australia1https://iptv-org.github.io/iptv/countries/au.m3u
🇦🇹 Austria1https://iptv-org.github.io/iptv/countries/at.m3u
🇦🇿 Azerbaijan1https://iptv-org.github.io/iptv/countries/az.m3u
🇧🇸 Bahamas1https://iptv-org.github.io/iptv/countries/bs.m3u
🇧🇭 Bahrain1https://iptv-org.github.io/iptv/countries/bh.m3u
🇧🇩 Bangladesh1https://iptv-org.github.io/iptv/countries/bd.m3u
🇧🇧 Barbados1https://iptv-org.github.io/iptv/countries/bb.m3u
🇧🇾 Belarus1https://iptv-org.github.io/iptv/countries/by.m3u
🇧🇪 Belgium1https://iptv-org.github.io/iptv/countries/be.m3u
🇧🇿 Belize1https://iptv-org.github.io/iptv/countries/bz.m3u
🇧🇯 Benin1https://iptv-org.github.io/iptv/countries/bj.m3u
🇧🇲 Bermuda1https://iptv-org.github.io/iptv/countries/bm.m3u
🇧🇹 Bhutan1https://iptv-org.github.io/iptv/countries/bt.m3u
🇧🇴 Bolivia1https://iptv-org.github.io/iptv/countries/bo.m3u
🇧🇶 Bonaire1https://iptv-org.github.io/iptv/countries/bq.m3u
🇧🇦 Bosnia and Herzegovina1https://iptv-org.github.io/iptv/countries/ba.m3u
🇧🇼 Botswana1https://iptv-org.github.io/iptv/countries/bw.m3u
🇧🇻 Bouvet Island1https://iptv-org.github.io/iptv/countries/bv.m3u
🇧🇷 Brazil1https://iptv-org.github.io/iptv/countries/br.m3u
🇮🇴 British Indian Ocean Territory1https://iptv-org.github.io/iptv/countries/io.m3u
🇻🇬 British Virgin Islands1https://iptv-org.github.io/iptv/countries/vg.m3u
🇧🇳 Brunei1https://iptv-org.github.io/iptv/countries/bn.m3u
🇧🇬 Bulgaria1https://iptv-org.github.io/iptv/countries/bg.m3u
🇧🇫 Burkina Faso1https://iptv-org.github.io/iptv/countries/bf.m3u
🇧🇮 Burundi1https://iptv-org.github.io/iptv/countries/bi.m3u
🇰🇭 Cambodia1https://iptv-org.github.io/iptv/countries/kh.m3u
🇨🇲 Cameroon1https://iptv-org.github.io/iptv/countries/cm.m3u
🇨🇦 Canada2https://iptv-org.github.io/iptv/countries/ca.m3u
🇨🇻 Cape Verde1https://iptv-org.github.io/iptv/countries/cv.m3u
🇰🇾 Cayman Islands1https://iptv-org.github.io/iptv/countries/ky.m3u
🇨🇫 Central African Republic1https://iptv-org.github.io/iptv/countries/cf.m3u
🇹🇩 Chad1https://iptv-org.github.io/iptv/countries/td.m3u
🇨🇱 Chile1https://iptv-org.github.io/iptv/countries/cl.m3u
🇨🇳 China1https://iptv-org.github.io/iptv/countries/cn.m3u
🇨🇽 Christmas Island1https://iptv-org.github.io/iptv/countries/cx.m3u
🇨🇨 Cocos (Keeling) Islands1https://iptv-org.github.io/iptv/countries/cc.m3u
🇨🇴 Colombia1https://iptv-org.github.io/iptv/countries/co.m3u
🇰🇲 Comoros1https://iptv-org.github.io/iptv/countries/km.m3u
🇨🇰 Cook Islands1https://iptv-org.github.io/iptv/countries/ck.m3u
🇨🇷 Costa Rica1https://iptv-org.github.io/iptv/countries/cr.m3u
🇭🇷 Croatia1https://iptv-org.github.io/iptv/countries/hr.m3u
🇨🇺 Cuba1https://iptv-org.github.io/iptv/countries/cu.m3u
🇨🇼 Curacao1https://iptv-org.github.io/iptv/countries/cw.m3u
🇨🇾 Cyprus1https://iptv-org.github.io/iptv/countries/cy.m3u
🇨🇿 Czech Republic1https://iptv-org.github.io/iptv/countries/cz.m3u
🇨🇩 Democratic Republic of the Congo1https://iptv-org.github.io/iptv/countries/cd.m3u
🇩🇰 Denmark1https://iptv-org.github.io/iptv/countries/dk.m3u
🇩🇯 Djibouti1https://iptv-org.github.io/iptv/countries/dj.m3u
🇩🇲 Dominica1https://iptv-org.github.io/iptv/countries/dm.m3u
🇩🇴 Dominican Republic1https://iptv-org.github.io/iptv/countries/do.m3u
🇹🇱 East Timor1https://iptv-org.github.io/iptv/countries/tl.m3u
🇪🇨 Ecuador1https://iptv-org.github.io/iptv/countries/ec.m3u
🇪🇬 Egypt1https://iptv-org.github.io/iptv/countries/eg.m3u
🇸🇻 El Salvador1https://iptv-org.github.io/iptv/countries/sv.m3u
🇬🇶 Equatorial Guinea1https://iptv-org.github.io/iptv/countries/gq.m3u
🇪🇷 Eritrea1https://iptv-org.github.io/iptv/countries/er.m3u
🇪🇪 Estonia1https://iptv-org.github.io/iptv/countries/ee.m3u
🇪🇹 Ethiopia1https://iptv-org.github.io/iptv/countries/et.m3u
🇫🇰 Falkland Islands1https://iptv-org.github.io/iptv/countries/fk.m3u
🇫🇴 Faroe Islands1https://iptv-org.github.io/iptv/countries/fo.m3u
🇫🇯 Fiji1https://iptv-org.github.io/iptv/countries/fj.m3u
🇫🇮 Finland1https://iptv-org.github.io/iptv/countries/fi.m3u
🇫🇷 France1https://iptv-org.github.io/iptv/countries/fr.m3u
🇬🇫 French Guiana1https://iptv-org.github.io/iptv/countries/gf.m3u
🇵🇫 French Polynesia1https://iptv-org.github.io/iptv/countries/pf.m3u
🇹🇫 French Southern Territories1https://iptv-org.github.io/iptv/countries/tf.m3u
🇬🇦 Gabon1https://iptv-org.github.io/iptv/countries/ga.m3u
🇬🇲 Gambia1https://iptv-org.github.io/iptv/countries/gm.m3u
🇬🇪 Georgia1https://iptv-org.github.io/iptv/countries/ge.m3u
🇩🇪 Germany1https://iptv-org.github.io/iptv/countries/de.m3u
🇬🇭 Ghana1https://iptv-org.github.io/iptv/countries/gh.m3u
🇬🇮 Gibraltar1https://iptv-org.github.io/iptv/countries/gi.m3u
🇬🇷 Greece1https://iptv-org.github.io/iptv/countries/gr.m3u
🇬🇱 Greenland1https://iptv-org.github.io/iptv/countries/gl.m3u
🇬🇩 Grenada1https://iptv-org.github.io/iptv/countries/gd.m3u
🇬🇵 Guadeloupe1https://iptv-org.github.io/iptv/countries/gp.m3u
🇬🇺 Guam1https://iptv-org.github.io/iptv/countries/gu.m3u
🇬🇹 Guatemala1https://iptv-org.github.io/iptv/countries/gt.m3u
🇬🇬 Guernsey1https://iptv-org.github.io/iptv/countries/gg.m3u
🇬🇳 Guinea1https://iptv-org.github.io/iptv/countries/gn.m3u
🇬🇼 Guinea-Bissau1https://iptv-org.github.io/iptv/countries/gw.m3u
🇬🇾 Guyana1https://iptv-org.github.io/iptv/countries/gy.m3u
🇭🇹 Haiti1https://iptv-org.github.io/iptv/countries/ht.m3u
🇭🇲 Heard Island and McDonald Islands1https://iptv-org.github.io/iptv/countries/hm.m3u
🇭🇳 Honduras1https://iptv-org.github.io/iptv/countries/hn.m3u
🇭🇰 Hong Kong1https://iptv-org.github.io/iptv/countries/hk.m3u
🇭🇺 Hungary1https://iptv-org.github.io/iptv/countries/hu.m3u
🇮🇸 Iceland1https://iptv-org.github.io/iptv/countries/is.m3u
🇮🇳 India1https://iptv-org.github.io/iptv/countries/in.m3u
🇮🇩 Indonesia1https://iptv-org.github.io/iptv/countries/id.m3u
🇮🇷 Iran1https://iptv-org.github.io/iptv/countries/ir.m3u
🇮🇶 Iraq1https://iptv-org.github.io/iptv/countries/iq.m3u
🇮🇪 Ireland1https://iptv-org.github.io/iptv/countries/ie.m3u
🇮🇲 Isle of Man1https://iptv-org.github.io/iptv/countries/im.m3u
🇮🇱 Israel1https://iptv-org.github.io/iptv/countries/il.m3u
🇮🇹 Italy1https://iptv-org.github.io/iptv/countries/it.m3u
🇨🇮 Ivory Coast1https://iptv-org.github.io/iptv/countries/ci.m3u
🇯🇲 Jamaica1https://iptv-org.github.io/iptv/countries/jm.m3u
🇯🇵 Japan1https://iptv-org.github.io/iptv/countries/jp.m3u
🇯🇪 Jersey1https://iptv-org.github.io/iptv/countries/je.m3u
🇯🇴 Jordan1https://iptv-org.github.io/iptv/countries/jo.m3u
🇰🇿 Kazakhstan1https://iptv-org.github.io/iptv/countries/kz.m3u
🇰🇪 Kenya1https://iptv-org.github.io/iptv/countries/ke.m3u
🇰🇮 Kiribati1https://iptv-org.github.io/iptv/countries/ki.m3u
🇽🇰 Kosovo1https://iptv-org.github.io/iptv/countries/xk.m3u
🇰🇼 Kuwait1https://iptv-org.github.io/iptv/countries/kw.m3u
🇰🇬 Kyrgyzstan1https://iptv-org.github.io/iptv/countries/kg.m3u
🇱🇦 Laos1https://iptv-org.github.io/iptv/countries/la.m3u
🇱🇻 Latvia1https://iptv-org.github.io/iptv/countries/lv.m3u
🇱🇧 Lebanon1https://iptv-org.github.io/iptv/countries/lb.m3u
🇱🇸 Lesotho1https://iptv-org.github.io/iptv/countries/ls.m3u
🇱🇷 Liberia1https://iptv-org.github.io/iptv/countries/lr.m3u
🇱🇾 Libya1https://iptv-org.github.io/iptv/countries/ly.m3u
🇱🇮 Liechtenstein1https://iptv-org.github.io/iptv/countries/li.m3u
🇱🇹 Lithuania1https://iptv-org.github.io/iptv/countries/lt.m3u
🇱🇺 Luxembourg1https://iptv-org.github.io/iptv/countries/lu.m3u
🇲🇴 Macao1https://iptv-org.github.io/iptv/countries/mo.m3u
🇲🇬 Madagascar1https://iptv-org.github.io/iptv/countries/mg.m3u
🇲🇼 Malawi1https://iptv-org.github.io/iptv/countries/mw.m3u
🇲🇾 Malaysia1https://iptv-org.github.io/iptv/countries/my.m3u
🇲🇻 Maldives1https://iptv-org.github.io/iptv/countries/mv.m3u
🇲🇱 Mali1https://iptv-org.github.io/iptv/countries/ml.m3u
🇲🇹 Malta1https://iptv-org.github.io/iptv/countries/mt.m3u
🇲🇭 Marshall Islands1https://iptv-org.github.io/iptv/countries/mh.m3u
🇲🇶 Martinique1https://iptv-org.github.io/iptv/countries/mq.m3u
🇲🇷 Mauritania1https://iptv-org.github.io/iptv/countries/mr.m3u
🇲🇺 Mauritius1https://iptv-org.github.io/iptv/countries/mu.m3u
🇾🇹 Mayotte1https://iptv-org.github.io/iptv/countries/yt.m3u
🇲🇽 Mexico1https://iptv-org.github.io/iptv/countries/mx.m3u
🇫🇲 Micronesia1https://iptv-org.github.io/iptv/countries/fm.m3u
🇲🇩 Moldova1https://iptv-org.github.io/iptv/countries/md.m3u
🇲🇨 Monaco1https://iptv-org.github.io/iptv/countries/mc.m3u
🇲🇳 Mongolia1https://iptv-org.github.io/iptv/countries/mn.m3u
🇲🇪 Montenegro1https://iptv-org.github.io/iptv/countries/me.m3u
🇲🇸 Montserrat1https://iptv-org.github.io/iptv/countries/ms.m3u
🇲🇦 Morocco1https://iptv-org.github.io/iptv/countries/ma.m3u
🇲🇿 Mozambique1https://iptv-org.github.io/iptv/countries/mz.m3u
🇲🇲 Myanmar (Burma)1https://iptv-org.github.io/iptv/countries/mm.m3u
🇳🇦 Namibia1https://iptv-org.github.io/iptv/countries/na.m3u
🇳🇷 Nauru1https://iptv-org.github.io/iptv/countries/nr.m3u
🇳🇵 Nepal1https://iptv-org.github.io/iptv/countries/np.m3u
🇳🇱 Netherlands1https://iptv-org.github.io/iptv/countries/nl.m3u
🇳🇨 New Caledonia1https://iptv-org.github.io/iptv/countries/nc.m3u
🇳🇿 New Zealand1https://iptv-org.github.io/iptv/countries/nz.m3u
🇳🇮 Nicaragua1https://iptv-org.github.io/iptv/countries/ni.m3u
🇳🇪 Niger1https://iptv-org.github.io/iptv/countries/ne.m3u
🇳🇬 Nigeria1https://iptv-org.github.io/iptv/countries/ng.m3u
🇳🇺 Niue1https://iptv-org.github.io/iptv/countries/nu.m3u
🇳🇫 Norfolk Island1https://iptv-org.github.io/iptv/countries/nf.m3u
🇰🇵 North Korea1https://iptv-org.github.io/iptv/countries/kp.m3u
🇲🇰 North Macedonia1https://iptv-org.github.io/iptv/countries/mk.m3u
🇲🇵 Northern Mariana Islands1https://iptv-org.github.io/iptv/countries/mp.m3u
🇳🇴 Norway1https://iptv-org.github.io/iptv/countries/no.m3u
🇴🇲 Oman1https://iptv-org.github.io/iptv/countries/om.m3u
🇵🇰 Pakistan1https://iptv-org.github.io/iptv/countries/pk.m3u
🇵🇼 Palau1https://iptv-org.github.io/iptv/countries/pw.m3u
🇵🇸 Palestine1https://iptv-org.github.io/iptv/countries/ps.m3u
🇵🇦 Panama1https://iptv-org.github.io/iptv/countries/pa.m3u
🇵🇬 Papua New Guinea1https://iptv-org.github.io/iptv/countries/pg.m3u
🇵🇾 Paraguay1https://iptv-org.github.io/iptv/countries/py.m3u
🇵🇪 Peru1https://iptv-org.github.io/iptv/countries/pe.m3u
🇵🇭 Philippines1https://iptv-org.github.io/iptv/countries/ph.m3u
🇵🇳 Pitcairn Islands1https://iptv-org.github.io/iptv/countries/pn.m3u
🇵🇱 Poland1https://iptv-org.github.io/iptv/countries/pl.m3u
🇵🇹 Portugal1https://iptv-org.github.io/iptv/countries/pt.m3u
🇵🇷 Puerto Rico1https://iptv-org.github.io/iptv/countries/pr.m3u
🇶🇦 Qatar1https://iptv-org.github.io/iptv/countries/qa.m3u
🇨🇬 Republic of the Congo1https://iptv-org.github.io/iptv/countries/cg.m3u
🇷🇴 Romania1https://iptv-org.github.io/iptv/countries/ro.m3u
🇷🇺 Russia2https://iptv-org.github.io/iptv/countries/ru.m3u
🇷🇼 Rwanda1https://iptv-org.github.io/iptv/countries/rw.m3u
🇷🇪 Réunion1https://iptv-org.github.io/iptv/countries/re.m3u
🇧🇱 Saint Barthélemy1https://iptv-org.github.io/iptv/countries/bl.m3u
🇸🇭 Saint Helena1https://iptv-org.github.io/iptv/countries/sh.m3u
🇰🇳 Saint Kitts and Nevis1https://iptv-org.github.io/iptv/countries/kn.m3u
🇱🇨 Saint Lucia1https://iptv-org.github.io/iptv/countries/lc.m3u
🇲🇫 Saint Martin1https://iptv-org.github.io/iptv/countries/mf.m3u
🇵🇲 Saint Pierre and Miquelon1https://iptv-org.github.io/iptv/countries/pm.m3u
🇻🇨 Saint Vincent and the Grenadines1https://iptv-org.github.io/iptv/countries/vc.m3u
🇼🇸 Samoa1https://iptv-org.github.io/iptv/countries/ws.m3u
🇸🇲 San Marino1https://iptv-org.github.io/iptv/countries/sm.m3u
🇸🇦 Saudi Arabia1https://iptv-org.github.io/iptv/countries/sa.m3u
🇸🇳 Senegal1https://iptv-org.github.io/iptv/countries/sn.m3u
🇷🇸 Serbia1https://iptv-org.github.io/iptv/countries/rs.m3u
🇸🇨 Seychelles1https://iptv-org.github.io/iptv/countries/sc.m3u
🇸🇱 Sierra Leone1https://iptv-org.github.io/iptv/countries/sl.m3u
🇸🇬 Singapore1https://iptv-org.github.io/iptv/countries/sg.m3u
🇸🇽 Sint Maarten1https://iptv-org.github.io/iptv/countries/sx.m3u
🇸🇰 Slovakia1https://iptv-org.github.io/iptv/countries/sk.m3u
🇸🇮 Slovenia1https://iptv-org.github.io/iptv/countries/si.m3u
🇸🇧 Solomon Islands1https://iptv-org.github.io/iptv/countries/sb.m3u
🇸🇴 Somalia1https://iptv-org.github.io/iptv/countries/so.m3u
🇿🇦 South Africa1https://iptv-org.github.io/iptv/countries/za.m3u
🇬🇸 South Georgia and the South Sandwich Islands1https://iptv-org.github.io/iptv/countries/gs.m3u
🇰🇷 South Korea1https://iptv-org.github.io/iptv/countries/kr.m3u
🇸🇸 South Sudan1https://iptv-org.github.io/iptv/countries/ss.m3u
🇪🇸 Spain1https://iptv-org.github.io/iptv/countries/es.m3u
🇱🇰 Sri Lanka1https://iptv-org.github.io/iptv/countries/lk.m3u
🇸🇩 Sudan1https://iptv-org.github.io/iptv/countries/sd.m3u
🇸🇷 Suriname1https://iptv-org.github.io/iptv/countries/sr.m3u
🇸🇯 Svalbard and Jan Mayen1https://iptv-org.github.io/iptv/countries/sj.m3u
🇸🇿 Swaziland1https://iptv-org.github.io/iptv/countries/sz.m3u
🇸🇪 Sweden1https://iptv-org.github.io/iptv/countries/se.m3u
🇨🇭 Switzerland1https://iptv-org.github.io/iptv/countries/ch.m3u
🇸🇾 Syria1https://iptv-org.github.io/iptv/countries/sy.m3u
🇸🇹 São Tomé and Príncipe1https://iptv-org.github.io/iptv/countries/st.m3u
🇹🇼 Taiwan1https://iptv-org.github.io/iptv/countries/tw.m3u
🇹🇯 Tajikistan1https://iptv-org.github.io/iptv/countries/tj.m3u
🇹🇿 Tanzania1https://iptv-org.github.io/iptv/countries/tz.m3u
🇹🇭 Thailand1https://iptv-org.github.io/iptv/countries/th.m3u
🇹🇬 Togo1https://iptv-org.github.io/iptv/countries/tg.m3u
🇹🇰 Tokelau1https://iptv-org.github.io/iptv/countries/tk.m3u
🇹🇴 Tonga1https://iptv-org.github.io/iptv/countries/to.m3u
🇹🇹 Trinidad and Tobago1https://iptv-org.github.io/iptv/countries/tt.m3u
🇹🇳 Tunisia1https://iptv-org.github.io/iptv/countries/tn.m3u
🇹🇷 Turkey1https://iptv-org.github.io/iptv/countries/tr.m3u
🇹🇲 Turkmenistan1https://iptv-org.github.io/iptv/countries/tm.m3u
🇹🇨 Turks and Caicos Islands1https://iptv-org.github.io/iptv/countries/tc.m3u
🇹🇻 Tuvalu1https://iptv-org.github.io/iptv/countries/tv.m3u
🇺🇲 U.S. Minor Outlying Islands1https://iptv-org.github.io/iptv/countries/um.m3u
🇻🇮 U.S. Virgin Islands1https://iptv-org.github.io/iptv/countries/vi.m3u
🇺🇬 Uganda1https://iptv-org.github.io/iptv/countries/ug.m3u
🇺🇦 Ukraine1https://iptv-org.github.io/iptv/countries/ua.m3u
🇦🇪 United Arab Emirates1https://iptv-org.github.io/iptv/countries/ae.m3u
🇬🇧 United Kingdom1https://iptv-org.github.io/iptv/countries/uk.m3u
🇺🇸 United States1https://iptv-org.github.io/iptv/countries/us.m3u
🇺🇾 Uruguay1https://iptv-org.github.io/iptv/countries/uy.m3u
🇺🇿 Uzbekistan1https://iptv-org.github.io/iptv/countries/uz.m3u
🇻🇺 Vanuatu1https://iptv-org.github.io/iptv/countries/vu.m3u
🇻🇦 Vatican City1https://iptv-org.github.io/iptv/countries/va.m3u
🇻🇪 Venezuela1https://iptv-org.github.io/iptv/countries/ve.m3u
🇻🇳 Vietnam1https://iptv-org.github.io/iptv/countries/vn.m3u
🇼🇫 Wallis and Futuna1https://iptv-org.github.io/iptv/countries/wf.m3u
🇪🇭 Western Sahara1https://iptv-org.github.io/iptv/countries/eh.m3u
🇾🇪 Yemen1https://iptv-org.github.io/iptv/countries/ye.m3u
🇿🇲 Zambia1https://iptv-org.github.io/iptv/countries/zm.m3u
🇿🇼 Zimbabwe1https://iptv-org.github.io/iptv/countries/zw.m3u
🇦🇽 Åland1https://iptv-org.github.io/iptv/countries/ax.m3u
Undefined2https://iptv-org.github.io/iptv/countries/undefined.m3u
+ +
+ +### Playlists by language + +
+Expand +
+ + + + + + + + + + + + + +
LanguageChannelsPlaylist
Catalan1https://iptv-org.github.io/iptv/languages/cat.m3u
English1https://iptv-org.github.io/iptv/languages/eng.m3u
French1https://iptv-org.github.io/iptv/languages/fra.m3u
Russian1https://iptv-org.github.io/iptv/languages/rus.m3u
Undefined2https://iptv-org.github.io/iptv/languages/undefined.m3u
+ +
+ +### Playlists by region + +
+Expand +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RegionChannelsPlaylist
Africa0https://iptv-org.github.io/iptv/regions/afr.m3u
Americas1https://iptv-org.github.io/iptv/regions/amer.m3u
Arab world0https://iptv-org.github.io/iptv/regions/arab.m3u
Asia1https://iptv-org.github.io/iptv/regions/asia.m3u
Asia-Pacific0https://iptv-org.github.io/iptv/regions/apac.m3u
Caribbean0https://iptv-org.github.io/iptv/regions/carib.m3u
Central Asia0https://iptv-org.github.io/iptv/regions/cas.m3u
Commonwealth of Independent States1https://iptv-org.github.io/iptv/regions/cis.m3u
Europe2https://iptv-org.github.io/iptv/regions/eur.m3u
Europe, the Middle East and Africa2https://iptv-org.github.io/iptv/regions/emea.m3u
Hispanic America0https://iptv-org.github.io/iptv/regions/hispam.m3u
Latin America0https://iptv-org.github.io/iptv/regions/latam.m3u
Latin America and the Caribbean0https://iptv-org.github.io/iptv/regions/lac.m3u
Maghreb0https://iptv-org.github.io/iptv/regions/maghreb.m3u
Middle East0https://iptv-org.github.io/iptv/regions/mideast.m3u
Middle East and North Africa0https://iptv-org.github.io/iptv/regions/mena.m3u
Nordics0https://iptv-org.github.io/iptv/regions/nord.m3u
North America1https://iptv-org.github.io/iptv/regions/noram.m3u
Northern America1https://iptv-org.github.io/iptv/regions/nam.m3u
Oceania0https://iptv-org.github.io/iptv/regions/oce.m3u
South Asia0https://iptv-org.github.io/iptv/regions/sas.m3u
Sub-Saharan Africa0https://iptv-org.github.io/iptv/regions/ssa.m3u
West Africa0https://iptv-org.github.io/iptv/regions/wafr.m3u
Worldwide4https://iptv-org.github.io/iptv/regions/int.m3u
Undefined2https://iptv-org.github.io/iptv/regions/undefined.m3u
+ +
+ +## EPG + +Playlists already have a built-in list of EPG, so players that support the `x-tvg-url` tag should load it automatically. If not, you can find a list of available programs here: + +https://github.com/iptv-org/epg + +## Resources + +You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv). + +## API + +The API documentation can be found in the [iptv-org/api](https://github.com/iptv-org/api) repository. + +## Contribution + +Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sending an issue or making a pull request. + +## Legal + +No video files are stored in this repository. The repository simply contains user-submitted links to publicly available video stream URLs, which to the best of our knowledge have been intentionally made publicly by the copyright holders. If any links in these playlists infringe on your rights as a copyright holder, they may be removed by sending a pull request or opening an issue. However, note that we have **no control** over the destination of the link, and just removing the link from the playlist will not remove its contents from the web. Note that linking does not directly infringe copyright because no copy is made on the site providing the link, and thus this is **not** a valid reason to send a DMCA notice to GitHub. To remove this content from the web, you should contact the web host that's actually hosting the content (**not** GitHub, nor the maintainers of this repository). diff --git a/tests/__data__/expected/cleanup-database.streams.db b/tests/__data__/expected/cleanup-database.streams.db deleted file mode 100644 index ffee4256c..000000000 --- a/tests/__data__/expected/cleanup-database.streams.db +++ /dev/null @@ -1,5 +0,0 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/expected/save-results.streams.db b/tests/__data__/expected/save-results.streams.db deleted file mode 100644 index b577e30cd..000000000 --- a/tests/__data__/expected/save-results.streams.db +++ /dev/null @@ -1,6 +0,0 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/expected/streams.db b/tests/__data__/expected/streams.db deleted file mode 100644 index 0d481168e..000000000 --- a/tests/__data__/expected/streams.db +++ /dev/null @@ -1,3 +0,0 @@ -{"channel_name":"ATV","channel_id":"ATV.ad","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"verufR2ehwdsfou3"} -{"channel_name":"Fox Sports 2 Asia (Thai)","channel_id":"FoxSports2AsiaThai.us","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"sLG04kZhqlEcYc25"} -{"channel_id":null,"channel_name":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Jruf9KFXRsa5BjYj"} diff --git a/tests/__data__/input/readme.json b/tests/__data__/input/_readme.json similarity index 100% rename from tests/__data__/input/readme.json rename to tests/__data__/input/_readme.json diff --git a/tests/__data__/input/logs/generators/categories.log b/tests/__data__/input/logs/generators/categories.log index 5f4d99cf2..af68b09a9 100644 --- a/tests/__data__/input/logs/generators/categories.log +++ b/tests/__data__/input/logs/generators/categories.log @@ -1,3 +1,29 @@ -{"name":"General","slug":"general","count":1} -{"name":"News","slug":"news","count":1} -{"name":"Other","slug":"other","count":0} +{"filepath":"categories/auto.m3u","count":0} +{"filepath":"categories/animation.m3u","count":0} +{"filepath":"categories/business.m3u","count":0} +{"filepath":"categories/classic.m3u","count":0} +{"filepath":"categories/comedy.m3u","count":0} +{"filepath":"categories/cooking.m3u","count":0} +{"filepath":"categories/culture.m3u","count":0} +{"filepath":"categories/documentary.m3u","count":0} +{"filepath":"categories/education.m3u","count":0} +{"filepath":"categories/entertainment.m3u","count":0} +{"filepath":"categories/family.m3u","count":0} +{"filepath":"categories/general.m3u","count":2} +{"filepath":"categories/kids.m3u","count":0} +{"filepath":"categories/legislative.m3u","count":0} +{"filepath":"categories/lifestyle.m3u","count":0} +{"filepath":"categories/movies.m3u","count":0} +{"filepath":"categories/music.m3u","count":0} +{"filepath":"categories/news.m3u","count":1} +{"filepath":"categories/outdoor.m3u","count":0} +{"filepath":"categories/relax.m3u","count":0} +{"filepath":"categories/religious.m3u","count":0} +{"filepath":"categories/series.m3u","count":0} +{"filepath":"categories/science.m3u","count":0} +{"filepath":"categories/shop.m3u","count":0} +{"filepath":"categories/sports.m3u","count":0} +{"filepath":"categories/travel.m3u","count":0} +{"filepath":"categories/weather.m3u","count":1} +{"filepath":"categories/xxx.m3u","count":1} +{"filepath":"categories/undefined.m3u","count":3} \ No newline at end of file diff --git a/tests/__data__/input/logs/generators/countries.log b/tests/__data__/input/logs/generators/countries.log index a173fd049..9d56d14b6 100644 --- a/tests/__data__/input/logs/generators/countries.log +++ b/tests/__data__/input/logs/generators/countries.log @@ -1,4 +1,251 @@ -{"name":"Andorra","code":"AD","count":0} -{"name":"Russia","code":"RU","count":1} -{"name":"United Kingdom","code":"UK","count":1} -{"name":"Undefined","code":"UNDEFINED","count":0} +{"filepath":"countries/af.m3u","count":1} +{"filepath":"countries/al.m3u","count":1} +{"filepath":"countries/dz.m3u","count":1} +{"filepath":"countries/as.m3u","count":1} +{"filepath":"countries/ad.m3u","count":2} +{"filepath":"countries/ao.m3u","count":1} +{"filepath":"countries/ai.m3u","count":1} +{"filepath":"countries/aq.m3u","count":1} +{"filepath":"countries/ag.m3u","count":1} +{"filepath":"countries/ar.m3u","count":1} +{"filepath":"countries/am.m3u","count":1} +{"filepath":"countries/aw.m3u","count":1} +{"filepath":"countries/au.m3u","count":1} +{"filepath":"countries/at.m3u","count":1} +{"filepath":"countries/az.m3u","count":1} +{"filepath":"countries/bs.m3u","count":1} +{"filepath":"countries/bh.m3u","count":1} +{"filepath":"countries/bd.m3u","count":1} +{"filepath":"countries/bb.m3u","count":1} +{"filepath":"countries/by.m3u","count":1} +{"filepath":"countries/be.m3u","count":1} +{"filepath":"countries/bz.m3u","count":1} +{"filepath":"countries/bj.m3u","count":1} +{"filepath":"countries/bm.m3u","count":1} +{"filepath":"countries/bt.m3u","count":1} +{"filepath":"countries/bo.m3u","count":1} +{"filepath":"countries/bq.m3u","count":1} +{"filepath":"countries/ba.m3u","count":1} +{"filepath":"countries/bw.m3u","count":1} +{"filepath":"countries/bv.m3u","count":1} +{"filepath":"countries/br.m3u","count":1} +{"filepath":"countries/io.m3u","count":1} +{"filepath":"countries/vg.m3u","count":1} +{"filepath":"countries/bn.m3u","count":1} +{"filepath":"countries/bg.m3u","count":1} +{"filepath":"countries/bf.m3u","count":1} +{"filepath":"countries/bi.m3u","count":1} +{"filepath":"countries/kh.m3u","count":1} +{"filepath":"countries/cm.m3u","count":1} +{"filepath":"countries/ca.m3u","count":2} +{"filepath":"countries/cv.m3u","count":1} +{"filepath":"countries/ky.m3u","count":1} +{"filepath":"countries/cf.m3u","count":1} +{"filepath":"countries/td.m3u","count":1} +{"filepath":"countries/cl.m3u","count":1} +{"filepath":"countries/cn.m3u","count":1} +{"filepath":"countries/cx.m3u","count":1} +{"filepath":"countries/cc.m3u","count":1} +{"filepath":"countries/co.m3u","count":1} +{"filepath":"countries/km.m3u","count":1} +{"filepath":"countries/ck.m3u","count":1} +{"filepath":"countries/cr.m3u","count":1} +{"filepath":"countries/hr.m3u","count":1} +{"filepath":"countries/cu.m3u","count":1} +{"filepath":"countries/cw.m3u","count":1} +{"filepath":"countries/cy.m3u","count":1} +{"filepath":"countries/cz.m3u","count":1} +{"filepath":"countries/cd.m3u","count":1} +{"filepath":"countries/dk.m3u","count":1} +{"filepath":"countries/dj.m3u","count":1} +{"filepath":"countries/dm.m3u","count":1} +{"filepath":"countries/do.m3u","count":1} +{"filepath":"countries/tl.m3u","count":1} +{"filepath":"countries/ec.m3u","count":1} +{"filepath":"countries/eg.m3u","count":1} +{"filepath":"countries/sv.m3u","count":1} +{"filepath":"countries/gq.m3u","count":1} +{"filepath":"countries/er.m3u","count":1} +{"filepath":"countries/ee.m3u","count":1} +{"filepath":"countries/et.m3u","count":1} +{"filepath":"countries/fk.m3u","count":1} +{"filepath":"countries/fo.m3u","count":1} +{"filepath":"countries/fj.m3u","count":1} +{"filepath":"countries/fi.m3u","count":1} +{"filepath":"countries/fr.m3u","count":1} +{"filepath":"countries/gf.m3u","count":1} +{"filepath":"countries/pf.m3u","count":1} +{"filepath":"countries/tf.m3u","count":1} +{"filepath":"countries/ga.m3u","count":1} +{"filepath":"countries/gm.m3u","count":1} +{"filepath":"countries/ge.m3u","count":1} +{"filepath":"countries/de.m3u","count":1} +{"filepath":"countries/gh.m3u","count":1} +{"filepath":"countries/gi.m3u","count":1} +{"filepath":"countries/gr.m3u","count":1} +{"filepath":"countries/gl.m3u","count":1} +{"filepath":"countries/gd.m3u","count":1} +{"filepath":"countries/gp.m3u","count":1} +{"filepath":"countries/gu.m3u","count":1} +{"filepath":"countries/gt.m3u","count":1} +{"filepath":"countries/gg.m3u","count":1} +{"filepath":"countries/gn.m3u","count":1} +{"filepath":"countries/gw.m3u","count":1} +{"filepath":"countries/gy.m3u","count":1} +{"filepath":"countries/ht.m3u","count":1} +{"filepath":"countries/hm.m3u","count":1} +{"filepath":"countries/hn.m3u","count":1} +{"filepath":"countries/hk.m3u","count":1} +{"filepath":"countries/hu.m3u","count":1} +{"filepath":"countries/is.m3u","count":1} +{"filepath":"countries/in.m3u","count":1} +{"filepath":"countries/id.m3u","count":1} +{"filepath":"countries/ir.m3u","count":1} +{"filepath":"countries/iq.m3u","count":1} +{"filepath":"countries/ie.m3u","count":1} +{"filepath":"countries/im.m3u","count":1} +{"filepath":"countries/il.m3u","count":1} +{"filepath":"countries/it.m3u","count":1} +{"filepath":"countries/ci.m3u","count":1} +{"filepath":"countries/jm.m3u","count":1} +{"filepath":"countries/jp.m3u","count":1} +{"filepath":"countries/je.m3u","count":1} +{"filepath":"countries/jo.m3u","count":1} +{"filepath":"countries/kz.m3u","count":1} +{"filepath":"countries/ke.m3u","count":1} +{"filepath":"countries/ki.m3u","count":1} +{"filepath":"countries/xk.m3u","count":1} +{"filepath":"countries/kw.m3u","count":1} +{"filepath":"countries/kg.m3u","count":1} +{"filepath":"countries/la.m3u","count":1} +{"filepath":"countries/lv.m3u","count":1} +{"filepath":"countries/lb.m3u","count":1} +{"filepath":"countries/ls.m3u","count":1} +{"filepath":"countries/lr.m3u","count":1} +{"filepath":"countries/ly.m3u","count":1} +{"filepath":"countries/li.m3u","count":1} +{"filepath":"countries/lt.m3u","count":1} +{"filepath":"countries/lu.m3u","count":1} +{"filepath":"countries/mo.m3u","count":1} +{"filepath":"countries/mg.m3u","count":1} +{"filepath":"countries/mw.m3u","count":1} +{"filepath":"countries/my.m3u","count":1} +{"filepath":"countries/mv.m3u","count":1} +{"filepath":"countries/ml.m3u","count":1} +{"filepath":"countries/mt.m3u","count":1} +{"filepath":"countries/mh.m3u","count":1} +{"filepath":"countries/mq.m3u","count":1} +{"filepath":"countries/mr.m3u","count":1} +{"filepath":"countries/mu.m3u","count":1} +{"filepath":"countries/yt.m3u","count":1} +{"filepath":"countries/mx.m3u","count":1} +{"filepath":"countries/fm.m3u","count":1} +{"filepath":"countries/md.m3u","count":1} +{"filepath":"countries/mc.m3u","count":1} +{"filepath":"countries/mn.m3u","count":1} +{"filepath":"countries/me.m3u","count":1} +{"filepath":"countries/ms.m3u","count":1} +{"filepath":"countries/ma.m3u","count":1} +{"filepath":"countries/mz.m3u","count":1} +{"filepath":"countries/mm.m3u","count":1} +{"filepath":"countries/na.m3u","count":1} +{"filepath":"countries/nr.m3u","count":1} +{"filepath":"countries/np.m3u","count":1} +{"filepath":"countries/nl.m3u","count":1} +{"filepath":"countries/nc.m3u","count":1} +{"filepath":"countries/nz.m3u","count":1} +{"filepath":"countries/ni.m3u","count":1} +{"filepath":"countries/ne.m3u","count":1} +{"filepath":"countries/ng.m3u","count":1} +{"filepath":"countries/nu.m3u","count":1} +{"filepath":"countries/nf.m3u","count":1} +{"filepath":"countries/kp.m3u","count":1} +{"filepath":"countries/mk.m3u","count":1} +{"filepath":"countries/mp.m3u","count":1} +{"filepath":"countries/no.m3u","count":1} +{"filepath":"countries/om.m3u","count":1} +{"filepath":"countries/pk.m3u","count":1} +{"filepath":"countries/pw.m3u","count":1} +{"filepath":"countries/ps.m3u","count":1} +{"filepath":"countries/pa.m3u","count":1} +{"filepath":"countries/pg.m3u","count":1} +{"filepath":"countries/py.m3u","count":1} +{"filepath":"countries/pe.m3u","count":1} +{"filepath":"countries/ph.m3u","count":1} +{"filepath":"countries/pn.m3u","count":1} +{"filepath":"countries/pl.m3u","count":1} +{"filepath":"countries/pt.m3u","count":1} +{"filepath":"countries/pr.m3u","count":1} +{"filepath":"countries/qa.m3u","count":1} +{"filepath":"countries/cg.m3u","count":1} +{"filepath":"countries/ro.m3u","count":1} +{"filepath":"countries/ru.m3u","count":2} +{"filepath":"countries/rw.m3u","count":1} +{"filepath":"countries/re.m3u","count":1} +{"filepath":"countries/bl.m3u","count":1} +{"filepath":"countries/sh.m3u","count":1} +{"filepath":"countries/kn.m3u","count":1} +{"filepath":"countries/lc.m3u","count":1} +{"filepath":"countries/mf.m3u","count":1} +{"filepath":"countries/pm.m3u","count":1} +{"filepath":"countries/vc.m3u","count":1} +{"filepath":"countries/ws.m3u","count":1} +{"filepath":"countries/sm.m3u","count":1} +{"filepath":"countries/sa.m3u","count":1} +{"filepath":"countries/sn.m3u","count":1} +{"filepath":"countries/rs.m3u","count":1} +{"filepath":"countries/sc.m3u","count":1} +{"filepath":"countries/sl.m3u","count":1} +{"filepath":"countries/sg.m3u","count":1} +{"filepath":"countries/sx.m3u","count":1} +{"filepath":"countries/sk.m3u","count":1} +{"filepath":"countries/si.m3u","count":1} +{"filepath":"countries/sb.m3u","count":1} +{"filepath":"countries/so.m3u","count":1} +{"filepath":"countries/za.m3u","count":1} +{"filepath":"countries/gs.m3u","count":1} +{"filepath":"countries/kr.m3u","count":1} +{"filepath":"countries/ss.m3u","count":1} +{"filepath":"countries/es.m3u","count":1} +{"filepath":"countries/lk.m3u","count":1} +{"filepath":"countries/sd.m3u","count":1} +{"filepath":"countries/sr.m3u","count":1} +{"filepath":"countries/sj.m3u","count":1} +{"filepath":"countries/sz.m3u","count":1} +{"filepath":"countries/se.m3u","count":1} +{"filepath":"countries/ch.m3u","count":1} +{"filepath":"countries/sy.m3u","count":1} +{"filepath":"countries/st.m3u","count":1} +{"filepath":"countries/tw.m3u","count":1} +{"filepath":"countries/tj.m3u","count":1} +{"filepath":"countries/tz.m3u","count":1} +{"filepath":"countries/th.m3u","count":1} +{"filepath":"countries/tg.m3u","count":1} +{"filepath":"countries/tk.m3u","count":1} +{"filepath":"countries/to.m3u","count":1} +{"filepath":"countries/tt.m3u","count":1} +{"filepath":"countries/tn.m3u","count":1} +{"filepath":"countries/tr.m3u","count":1} +{"filepath":"countries/tm.m3u","count":1} +{"filepath":"countries/tc.m3u","count":1} +{"filepath":"countries/tv.m3u","count":1} +{"filepath":"countries/um.m3u","count":1} +{"filepath":"countries/vi.m3u","count":1} +{"filepath":"countries/ug.m3u","count":1} +{"filepath":"countries/ua.m3u","count":1} +{"filepath":"countries/ae.m3u","count":1} +{"filepath":"countries/uk.m3u","count":1} +{"filepath":"countries/us.m3u","count":1} +{"filepath":"countries/uy.m3u","count":1} +{"filepath":"countries/uz.m3u","count":1} +{"filepath":"countries/vu.m3u","count":1} +{"filepath":"countries/va.m3u","count":1} +{"filepath":"countries/ve.m3u","count":1} +{"filepath":"countries/vn.m3u","count":1} +{"filepath":"countries/wf.m3u","count":1} +{"filepath":"countries/eh.m3u","count":1} +{"filepath":"countries/ye.m3u","count":1} +{"filepath":"countries/zm.m3u","count":1} +{"filepath":"countries/zw.m3u","count":1} +{"filepath":"countries/ax.m3u","count":1} +{"filepath":"countries/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/input/logs/generators/languages.log b/tests/__data__/input/logs/generators/languages.log index 4a5a060f8..a11820504 100644 --- a/tests/__data__/input/logs/generators/languages.log +++ b/tests/__data__/input/logs/generators/languages.log @@ -1,4 +1,5 @@ -{"name":"Catalan","code":"cat","count":0} -{"name":"English","code":"eng","count":1} -{"name":"Russian","code":"rus","count":1} -{"name":"Undefined","code":"undefined","count":0} +{"filepath":"languages/cat.m3u","count":1} +{"filepath":"languages/eng.m3u","count":1} +{"filepath":"languages/fra.m3u","count":1} +{"filepath":"languages/rus.m3u","count":1} +{"filepath":"languages/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/input/logs/generators/regions.log b/tests/__data__/input/logs/generators/regions.log index 50d3a6dbc..ddf9139e0 100644 --- a/tests/__data__/input/logs/generators/regions.log +++ b/tests/__data__/input/logs/generators/regions.log @@ -1,6 +1,25 @@ -{"name":"Asia","code":"ASIA","count":1} -{"name":"Commonwealth of Independent States","code":"CIS","count":1} -{"name":"Europe","code":"EUR","count":2} -{"name":"Europe, the Middle East and Africa","code":"EMEA","count":2} -{"name":"Worldwide","code":"INT","count":1} -{"name":"Undefined","code":"UNDEFINED","count":0} +{"filepath":"regions/afr.m3u","count":0} +{"filepath":"regions/amer.m3u","count":1} +{"filepath":"regions/arab.m3u","count":0} +{"filepath":"regions/asia.m3u","count":1} +{"filepath":"regions/apac.m3u","count":0} +{"filepath":"regions/carib.m3u","count":0} +{"filepath":"regions/cas.m3u","count":0} +{"filepath":"regions/cis.m3u","count":1} +{"filepath":"regions/eur.m3u","count":2} +{"filepath":"regions/emea.m3u","count":2} +{"filepath":"regions/hispam.m3u","count":0} +{"filepath":"regions/latam.m3u","count":0} +{"filepath":"regions/lac.m3u","count":0} +{"filepath":"regions/maghreb.m3u","count":0} +{"filepath":"regions/mideast.m3u","count":0} +{"filepath":"regions/mena.m3u","count":0} +{"filepath":"regions/nord.m3u","count":0} +{"filepath":"regions/noram.m3u","count":1} +{"filepath":"regions/nam.m3u","count":1} +{"filepath":"regions/oce.m3u","count":0} +{"filepath":"regions/sas.m3u","count":0} +{"filepath":"regions/ssa.m3u","count":0} +{"filepath":"regions/wafr.m3u","count":0} +{"filepath":"regions/int.m3u","count":4} +{"filepath":"regions/undefined.m3u","count":2} \ No newline at end of file diff --git a/tests/__data__/input/readme.md b/tests/__data__/input/readme.md deleted file mode 100644 index 6b8eb4b1c..000000000 --- a/tests/__data__/input/readme.md +++ /dev/null @@ -1,180 +0,0 @@ -# IPTV - -[![auto-update](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml/badge.svg)](https://github.com/iptv-org/iptv/actions/workflows/auto-update.yml) - -Collection of publicly available IPTV channels from all over the world. - -## Usage - -To watch IPTV you just need to paste this link `https://iptv-org.github.io/iptv/index.m3u` to any player which supports M3U-playlists. - -![VLC Network Panel](.readme/preview.png) - -Also you can instead use one of these playlists: - -- `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category) -- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language) -- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country) -- `https://iptv-org.github.io/iptv/index.region.m3u` (grouped by region) -- `https://iptv-org.github.io/iptv/index.nsfw.m3u` (includes adult channels) - -Or select one of the playlists from the list below. - -### Playlists by category - -
-Expand -
- - - - - - - - - - - -
CategoryChannelsPlaylist
General1https://iptv-org.github.io/iptv/categories/general.m3u
News1https://iptv-org.github.io/iptv/categories/news.m3u
Other0https://iptv-org.github.io/iptv/categories/other.m3u
- -
- -### Playlists by language - -
-Expand -
- - - - - - - - - - - - -
LanguageChannelsPlaylist
Catalan0https://iptv-org.github.io/iptv/languages/cat.m3u
English1https://iptv-org.github.io/iptv/languages/eng.m3u
Russian1https://iptv-org.github.io/iptv/languages/rus.m3u
Undefined0https://iptv-org.github.io/iptv/languages/undefined.m3u
- -
- -### Playlists by region - -
-Expand -
- - - - - - - - - - - - - - -
RegionChannelsPlaylist
Asia1https://iptv-org.github.io/iptv/regions/asia.m3u
Commonwealth of Independent States1https://iptv-org.github.io/iptv/regions/cis.m3u
Europe2https://iptv-org.github.io/iptv/regions/eur.m3u
Europe, the Middle East and Africa2https://iptv-org.github.io/iptv/regions/emea.m3u
Worldwide1https://iptv-org.github.io/iptv/regions/int.m3u
Undefined0https://iptv-org.github.io/iptv/regions/undefined.m3u
- -
- -### Playlists by country - -
-Expand -
- - - - - - - - - - - - -
CountryChannelsPlaylist
🇦🇩 Andorra0https://iptv-org.github.io/iptv/countries/ad.m3u
🇷🇺 Russia1https://iptv-org.github.io/iptv/countries/ru.m3u
🇬🇧 United Kingdom1https://iptv-org.github.io/iptv/countries/uk.m3u
Undefined0https://iptv-org.github.io/iptv/countries/undefined.m3u
- -
- -## For Developers - -In addition to the above methods, you can also get a list of all available channels in JSON format. - -To do this, you just have to make a GET request to: - -``` -https://iptv-org.github.io/iptv/channels.json -``` - -If successful, you should get the following response: - -
-Expand -
- -``` -[ - ... - { - "name": "CNN", - "logo": "https://i.imgur.com/ilZJT5s.png", - "url": "http://ott-cdn.ucom.am/s27/index.m3u8", - "categories": [ - { - "name": "News", - "slug": "news" - } - ], - "countries": [ - { - "code": "us", - "name": "United States" - }, - { - "code": "ca", - "name": "Canada" - } - ], - "languages": [ - { - "code": "eng", - "name": "English" - } - ], - "tvg": { - "id": "cnn.us", - "name": "CNN", - "url": "http://epg.streamstv.me/epg/guide-usa.xml.gz" - } - }, - ... -] -``` -
- -## EPG - -Playlists already have a built-in list of EPG, so players that support the `url-tvg` tag should load it automatically. If not, you can find a list of available programs here: - -https://github.com/iptv-org/epg - -## Resources - -You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv). - -## Contribution - -Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sending an issue or making a pull request. - -## Legal - -No video files are stored in this repository. The repository simply contains user-submitted links to publicly available video stream URLs, which to the best of our knowledge have been intentionally made publicly by the copyright holders. If any links in these playlists infringe on your rights as a copyright holder, they may be removed by sending a pull request or opening an issue. However, note that we have **no control** over the destination of the link, and just removing the link from the playlist will not remove its contents from the web. Note that linking does not directly infringe copyright because no copy is made on the site providing the link, and thus this is **not** a valid reason to send a DMCA notice to GitHub. To remove this content from the web, you should contact the web host that's actually hosting the content (**not** GitHub, nor the maintainers of this repository). diff --git a/tests/commands/update-readme.test.js b/tests/commands/update-readme.test.js index 716215473..029e45fc7 100644 --- a/tests/commands/update-readme.test.js +++ b/tests/commands/update-readme.test.js @@ -1,23 +1,26 @@ -const fs = require('fs') +const fs = require('fs-extra') const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.rmdirSync(path.resolve('tests/__data__/output'), { recursive: true }) + fs.emptyDirSync('tests/__data__/output') + + const stdout = execSync( + 'DATA_DIR=tests/__data__/input/data LOGS_DIR=tests/__data__/input/logs/generators node scripts/commands/update-readme.js --config=tests/__data__/input/_readme.json', + { encoding: 'utf8' } + ) }) it('can update readme.md', () => { - const result = execSync( - 'LOGS_PATH=tests/__data__/input/logs node scripts/commands/update-readme.js --config=tests/__data__/input/readme.json', - { encoding: 'utf8' } + expect(content('tests/__data__/output/readme.md')).toEqual( + content('tests/__data__/expected/_readme.md') ) +}) - const readme = fs.readFileSync(path.resolve('tests/__data__/output/readme.md'), { - encoding: 'utf8' - }) - const expected = fs.readFileSync(path.resolve('tests/__data__/input/readme.md'), { +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { encoding: 'utf8' }) - expect(readme).toBe(expected) -}) + return JSON.stringify(data) +} From f56ea1e44ed9cb95a6646b128abea8af2e0d2f3d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:41:05 +0300 Subject: [PATCH 036/157] Update save-results.test.js --- tests/commands/save-results.test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/commands/save-results.test.js b/tests/commands/save-results.test.js index 7375b9d4a..b5e374452 100644 --- a/tests/commands/save-results.test.js +++ b/tests/commands/save-results.test.js @@ -3,21 +3,21 @@ const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.emptyDirSync('tests/__data__/temp') + fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( 'tests/__data__/input/database/save-results.streams.db', - 'tests/__data__/temp/streams.db' + 'tests/__data__/output/streams.db' ) const stdout = execSync( - 'DB_DIR=tests/__data__/temp LOGS_DIR=tests/__data__/input/logs/load-cluster node scripts/commands/save-results.js', + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/input/logs/load-cluster node scripts/commands/save-results.js', { encoding: 'utf8' } ) }) it('can save results', () => { - expect(content('tests/__data__/temp/streams.db')).toEqual( - content('tests/__data__/expected/save-results.streams.db') + expect(content('tests/__data__/output/streams.db')).toEqual( + content('tests/__data__/expected/database/save-results.streams.db') ) }) From 0de337039e7a41553d742f856857bf6f22576d4d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:41:52 +0300 Subject: [PATCH 037/157] Update create-matrix.test.js --- tests/commands/create-matrix.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/commands/create-matrix.test.js b/tests/commands/create-matrix.test.js index 07f0106f7..736e633a8 100644 --- a/tests/commands/create-matrix.test.js +++ b/tests/commands/create-matrix.test.js @@ -3,13 +3,13 @@ const path = require('path') const { execSync } = require('child_process') beforeEach(() => { - fs.emptyDirSync('tests/__data__/temp') + fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') }) it('can create valid matrix', () => { - const result = execSync('DB_DIR=tests/__data__/temp node scripts/commands/create-matrix.js', { + const result = execSync('DB_DIR=tests/__data__/output node scripts/commands/create-matrix.js', { encoding: 'utf8' }) expect(result).toBe('::set-output name=matrix::{"cluster_id":[1,3]}\n') From 1869be4014f0fafea8a97317f23c35f8983afb55 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:41:54 +0300 Subject: [PATCH 038/157] Update cleanup-database.test.js --- tests/commands/cleanup-database.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/cleanup-database.test.js b/tests/commands/cleanup-database.test.js index 2d59d8521..7bc6ff5e4 100644 --- a/tests/commands/cleanup-database.test.js +++ b/tests/commands/cleanup-database.test.js @@ -19,7 +19,7 @@ beforeEach(() => { it('can remove broken links from database', () => { expect(content('tests/__data__/output/streams.db')).toEqual( - content('tests/__data__/expected/cleanup-database.streams.db') + content('tests/__data__/expected/database/cleanup-database.streams.db') ) }) From 8ab456c16e757642cf2d9f55ab178dbdf5bb1f32 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:42:35 +0300 Subject: [PATCH 039/157] Update generate-playlists.test.js --- tests/commands/generate-playlists.test.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/generate-playlists.test.js index a5f4438f1..b322a5750 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/generate-playlists.test.js @@ -5,14 +5,13 @@ const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') - fs.emptyDirSync('tests/__data__/temp') fs.copyFileSync( 'tests/__data__/input/database/generate-playlists.streams.db', - 'tests/__data__/temp/streams.db' + 'tests/__data__/output/streams.db' ) const stdout = execSync( - 'DB_DIR=tests/__data__/temp DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/generate-playlists.js', + 'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/generate-playlists.js', { encoding: 'utf8' } ) }) From 956e1f25658016593e77f65cc8994d796ded78e4 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:43:28 +0300 Subject: [PATCH 040/157] Update update-playlists.test.js --- tests/commands/update-playlists.test.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tests/commands/update-playlists.test.js b/tests/commands/update-playlists.test.js index d66d1b407..dbf8db085 100644 --- a/tests/commands/update-playlists.test.js +++ b/tests/commands/update-playlists.test.js @@ -4,12 +4,15 @@ const glob = require('glob') const { execSync } = require('child_process') beforeEach(() => { - fs.emptyDirSync('tests/__data__/temp') - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/temp/streams.db') + fs.emptyDirSync('tests/__data__/output') + fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') - const stdout = execSync('DB_DIR=tests/__data__/temp node scripts/commands/update-playlists.js', { - encoding: 'utf8' - }) + const stdout = execSync( + 'DB_DIR=tests/__data__/output node scripts/commands/update-playlists.js', + { + encoding: 'utf8' + } + ) }) it('can update playlists', () => { From b7bbca131163509e84e72553da7ff1b25a803096 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:45:32 +0300 Subject: [PATCH 041/157] Update .gitignore --- tests/__data__/.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/__data__/.gitignore b/tests/__data__/.gitignore index d0dea4f00..9b1960e71 100644 --- a/tests/__data__/.gitignore +++ b/tests/__data__/.gitignore @@ -1,2 +1 @@ -output/ -temp/ \ No newline at end of file +output/ \ No newline at end of file From 6307f0a2b8b8fd88d797e62f7b27d1abe750e037 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:48:52 +0300 Subject: [PATCH 042/157] Create .gitignore --- scripts/data/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scripts/data/.gitignore diff --git a/scripts/data/.gitignore b/scripts/data/.gitignore new file mode 100644 index 000000000..743820606 --- /dev/null +++ b/scripts/data/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!blocklist.json +!statuses.json \ No newline at end of file From f81108040ace49bebc7ee63b84843b03fc86c9e3 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 08:51:07 +0300 Subject: [PATCH 043/157] Update create-database.js --- scripts/commands/create-database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js index 8a41dbbfa..777ab22a2 100644 --- a/scripts/commands/create-database.js +++ b/scripts/commands/create-database.js @@ -7,7 +7,7 @@ const options = program '--max-clusters ', 'Set maximum number of clusters', parser.parseNumber, - 200 + 256 ) .option('--input-dir ', 'Set path to input directory', 'channels') .parse(process.argv) From 10971f375152e3afbb8a37765c51849edaaf696f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 09:25:14 +0300 Subject: [PATCH 044/157] Update update-playlists.js --- scripts/commands/update-playlists.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/commands/update-playlists.js b/scripts/commands/update-playlists.js index 782f1b1f9..7b8cd1fd5 100644 --- a/scripts/commands/update-playlists.js +++ b/scripts/commands/update-playlists.js @@ -10,10 +10,18 @@ async function main() { const files = _.groupBy(items, 'filepath') for (const filepath in files) { - const items = files[filepath] + let items = files[filepath] + items = items.sort(naturalOrder) const playlist = createPlaylist(items, { public: false }) await file.create(filepath, playlist.toString()) } } main() + +function naturalOrder(a, b) { + return a.channel_name.localeCompare(b.channel_name, undefined, { + numeric: true, + sensitivity: 'base' + }) +} From 96403d463ee9f929bb464e09b7a83d290b08a5fc Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 7 Feb 2022 09:33:09 +0300 Subject: [PATCH 045/157] Update auto-update.yml --- .github/workflows/auto-update.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 10bb3ced5..89dda0bb4 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -29,7 +29,11 @@ jobs: - uses: actions/upload-artifact@v2 with: name: database - path: scripts/channels.db + path: scripts/database + - uses: actions/upload-artifact@v2 + with: + name: data + path: scripts/data outputs: matrix: ${{ steps.create-matrix.outputs.matrix }} load: @@ -38,7 +42,9 @@ jobs: continue-on-error: true strategy: fail-fast: false - matrix: ${{ fromJson(needs.setup.outputs.matrix) }} + # matrix: ${{ fromJson(needs.setup.outputs.matrix) }} + matrix: + cluster_id: [1] steps: - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 @@ -71,6 +77,10 @@ jobs: with: name: database path: scripts + - uses: actions/download-artifact@v2 + with: + name: data + path: scripts - uses: actions/download-artifact@v2 with: name: logs @@ -84,7 +94,7 @@ jobs: - uses: actions/upload-artifact@v2 with: name: database - path: scripts/channels.db + path: scripts/database - run: node scripts/commands/update-playlists.js - run: git add channels/* - run: git commit -m "[Bot] Update playlists" From 62ce78bbdfafdc04800d76411ec82a8c6bd87b59 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 8 Feb 2022 01:11:47 +0300 Subject: [PATCH 046/157] Update generate-playlists.js --- package-lock.json | 14 ++++ package.json | 1 + scripts/commands/generate-playlists.js | 80 ++++++++----------- scripts/core/generator.js | 11 +-- scripts/core/playlist.js | 6 +- scripts/generators/categories.js | 2 +- scripts/generators/countries.js | 20 +++-- scripts/generators/index_category_m3u.js | 25 ++++-- scripts/generators/index_country_m3u.js | 17 ++-- scripts/generators/index_language_m3u.js | 18 ++++- scripts/generators/index_region_m3u.js | 42 +++++++++- scripts/generators/languages.js | 2 +- scripts/generators/regions.js | 13 +-- scripts/store/getters/group_title.js | 11 +-- scripts/store/getters/index.js | 4 +- scripts/store/getters/tvg_country.js | 2 +- scripts/store/getters/tvg_language.js | 2 +- scripts/store/getters/tvg_logo.js | 2 +- scripts/store/getters/tvg_url.js | 2 +- .../expected/.gh-pages/categories/general.m3u | 2 +- .../expected/.gh-pages/categories/news.m3u | 2 +- .../expected/.gh-pages/countries/ca.m3u | 2 +- .../expected/.gh-pages/countries/ru.m3u | 2 +- .../expected/.gh-pages/countries/uk.m3u | 2 +- .../expected/.gh-pages/index.category.m3u | 2 +- .../expected/.gh-pages/index.country.m3u | 2 +- .../expected/.gh-pages/index.language.m3u | 2 +- tests/__data__/expected/.gh-pages/index.m3u | 2 +- .../expected/.gh-pages/index.nsfw.m3u | 2 +- .../expected/.gh-pages/index.region.m3u | 2 +- .../expected/.gh-pages/languages/eng.m3u | 2 +- .../expected/.gh-pages/regions/int.m3u | 2 +- 32 files changed, 185 insertions(+), 115 deletions(-) diff --git a/package-lock.json b/package-lock.json index 129d55824..f65726e28 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,6 +19,7 @@ "m3u-linter": "^0.3.0", "markdown-include": "^0.4.3", "mz": "^2.7.0", + "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", "transliteration": "^2.2.0", @@ -3180,6 +3181,14 @@ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" }, + "node_modules/natural-orderby": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz", + "integrity": "sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==", + "engines": { + "node": "*" + } + }, "node_modules/nedb-promises": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/nedb-promises/-/nedb-promises-5.0.2.tgz", @@ -6665,6 +6674,11 @@ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" }, + "natural-orderby": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz", + "integrity": "sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==" + }, "nedb-promises": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/nedb-promises/-/nedb-promises-5.0.2.tgz", diff --git a/package.json b/package.json index 9ea1ec6b5..5589ed18b 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "m3u-linter": "^0.3.0", "markdown-include": "^0.4.3", "mz": "^2.7.0", + "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", "transliteration": "^2.2.0", diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index f37a43eaf..0fa4a1960 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -1,32 +1,41 @@ -const { db, generator, api } = require('../core') +const { db, generator, api, logger } = require('../core') const _ = require('lodash') async function main() { const streams = await loadStreams() + logger.info('generating categories/...') await generator.generate('categories', streams) + logger.info('generating countries/...') await generator.generate('countries', streams) + logger.info('generating languages/...') await generator.generate('languages', streams) + logger.info('generating regions/...') await generator.generate('regions', streams) + logger.info('generating index.category.m3u...') await generator.generate('index_category_m3u', streams) + logger.info('generating index.country.m3u...') await generator.generate('index_country_m3u', streams) + logger.info('generating index.language.m3u...') await generator.generate('index_language_m3u', streams) + logger.info('generating index.m3u...') await generator.generate('index_m3u', streams) + logger.info('generating index.nsfw.m3u...') await generator.generate('index_nsfw_m3u', streams) + logger.info('generating index.region.m3u...') await generator.generate('index_region_m3u', streams) } main() async function loadStreams() { + await db.streams.load() + let streams = await db.streams.find({}) + await api.channels.load() let channels = await api.channels.all() channels = _.keyBy(channels, 'id') - await api.countries.load() - let countries = await api.countries.all() - countries = _.keyBy(countries, 'code') - await api.categories.load() let categories = await api.categories.all() categories = _.keyBy(categories, 'id') @@ -35,55 +44,36 @@ async function loadStreams() { let languages = await api.languages.all() languages = _.keyBy(languages, 'code') - await api.regions.load() - let regions = await api.regions.all() - regions = _.keyBy(regions, 'code') - await api.guides.load() let guides = await api.guides.all() guides = _.groupBy(guides, 'channel') - await db.streams.load() - let streams = await db.streams.find({}) - return streams.map(stream => { const channel = channels[stream.channel_id] || null - stream.channel = channel if (channel) { - stream.broadcast_area = channel.broadcast_area.map(item => { - const [_, code] = item.split('/') - return code - }) - stream.regions = channel.broadcast_area - .reduce((acc, item) => { - const [type, code] = item.split('/') - switch (type) { - case 'r': - acc.push(regions[code]) - break - case 's': - const [c] = item.split('-') - const r1 = _.filter(regions, { countries: [c] }) - acc = acc.concat(r1) - break - case 'c': - const r2 = _.filter(regions, { countries: [code] }) - acc = acc.concat(r2) - break - } - return acc - }, []) + stream.group_title = channel.categories + .map(id => (categories[id] ? categories[id].name : null)) + .filter(i => i) + .sort() + .join(';') + stream.tvg_language = channel.languages + .map(code => (languages[code] ? languages[code].name : '')) + .filter(i => i) + .sort() + .join(';') + stream.tvg_country = channel.broadcast_area + .map(item => { + const [_, code] = item.split('/') + return code + }) .filter(i => i) - stream.categories = channel.categories.map(id => categories[id]) - stream.languages = channel.languages.map(code => languages[code]) - stream.guides = guides[stream.channel_id] ? guides[stream.channel_id].map(g => g.url) : [] - } else { - stream.broadcast_area = [] - stream.categories = [] - stream.languages = [] - stream.regions = [] - stream.guides = [] + .sort() + .join(';') + stream.tvg_logo = channel.logo + stream.tvg_url = + guides[channel.id] && guides[channel.id].length ? guides[channel.id][0].url : null + stream.channel = channel } return stream diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 169ce8372..52893589a 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -3,22 +3,23 @@ const logger = require('./logger') const file = require('./file') const generators = require('../generators') const _ = require('lodash') +const { orderBy } = require('natural-orderby') const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' const generator = {} -generator.generate = async function (name, items = []) { +generator.generate = async function (name, streams = []) { if (typeof generators[name] === 'function') { try { - items = _.orderBy( - items, + streams = orderBy( + streams, ['channel_name', 'status.level', 'resolution.height'], ['asc', 'asc', 'desc'] ) - items = _.uniqBy(items, s => s.channel_id || _.uniqueId()) - let output = await generators[name].bind()(items) + streams = _.uniqBy(streams, stream => stream.channel_id || _.uniqueId()) + let output = await generators[name].bind()(streams) output = Array.isArray(output) ? output : [output] for (const type of output) { const playlist = createPlaylist(type.items, { public: true }) diff --git a/scripts/core/playlist.js b/scripts/core/playlist.js index 43f5ad1bc..4d6c90c47 100644 --- a/scripts/core/playlist.js +++ b/scripts/core/playlist.js @@ -53,10 +53,8 @@ playlist.create = function (items = [], options = {}) { const header = {} if (options.public) { - let guides = items.map(item => item.guides) - guides = _.uniq(_.flatten(guides)).sort().join(',') - - header['x-tvg-url'] = guides + let guides = items.map(item => item.tvg_url).filter(i => i) + header['x-tvg-url'] = _.uniq(guides).sort().join(',') } p.setHeader(header) diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js index da3e28665..0d95cd34a 100644 --- a/scripts/generators/categories.js +++ b/scripts/generators/categories.js @@ -10,7 +10,7 @@ module.exports = async function (streams = []) { output.push({ filepath: `categories/${category.id}.m3u`, items }) } - let items = _.filter(streams, s => !s.categories.length) + let items = _.filter(streams, stream => !stream.channel || !stream.channel.categories.length) output.push({ filepath: 'categories/undefined.m3u', items }) return output diff --git a/scripts/generators/countries.js b/scripts/generators/countries.js index 42f3deffc..cb3829052 100644 --- a/scripts/generators/countries.js +++ b/scripts/generators/countries.js @@ -2,20 +2,28 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - const output = [] + streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) + await api.countries.load() const countries = await api.countries.all() await api.regions.load() const regions = await api.regions.all() - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + + const output = [] for (const country of countries) { - const areaCodes = _.filter(regions, { countries: [country.code] }).map(r => r.code) - areaCodes.push(country.code) - let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) + const countryAreaCodes = _.filter(regions, { countries: [country.code] }).map( + r => `r/${r.code}` + ) + countryAreaCodes.push(`c/${country.code}`) + let items = _.filter( + streams, + stream => + stream.channel && _.intersection(stream.channel.broadcast_area, countryAreaCodes).length + ) output.push({ filepath: `countries/${country.code.toLowerCase()}.m3u`, items }) } - let items = _.filter(streams, s => !s.broadcast_area.length) + let items = _.filter(streams, stream => !stream.channel || !stream.channel.broadcast_area.length) output.push({ filepath: 'countries/undefined.m3u', items }) return output diff --git a/scripts/generators/index_category_m3u.js b/scripts/generators/index_category_m3u.js index fa3b4b181..0e8b364a6 100644 --- a/scripts/generators/index_category_m3u.js +++ b/scripts/generators/index_category_m3u.js @@ -3,19 +3,32 @@ const _ = require('lodash') module.exports = async function (streams = []) { streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + + await api.categories.load() + let categories = await api.categories.all() + categories = _.keyBy(categories, 'id') + let items = [] streams.forEach(stream => { - if (!stream.categories.length) return items.push(stream) + if (!stream.channel || !stream.channel.categories.length) { + const item = _.cloneDeep(stream) + item.group_title = null + items.push(item) - stream.categories.forEach(category => { + return + } + + stream.channel.categories.forEach(id => { const item = _.cloneDeep(stream) - item.group_title = category.name + item.group_title = categories[id] ? categories[id].name : null items.push(item) }) }) - items = _.sortBy(items, i => { - if (i.group_title === 'Undefined') return '_' - return i.group_title + + items = _.sortBy(items, item => { + if (!item.group_title) return '' + + return item.group_title }) return { filepath: 'index.category.m3u', items } diff --git a/scripts/generators/index_country_m3u.js b/scripts/generators/index_country_m3u.js index 30c70677c..d7944bf5a 100644 --- a/scripts/generators/index_country_m3u.js +++ b/scripts/generators/index_country_m3u.js @@ -2,6 +2,8 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { + streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + await api.regions.load() let regions = await api.regions.all() regions = _.keyBy(regions, 'code') @@ -10,10 +12,14 @@ module.exports = async function (streams = []) { let countries = await api.countries.all() countries = _.keyBy(countries, 'code') - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) let items = [] streams.forEach(stream => { - if (!stream.channel) return items.push(stream) + if (!stream.channel || !stream.channel.broadcast_area.length) { + const item = _.cloneDeep(stream) + item.group_title = null + items.push(item) + return + } getBroadcastCountries(stream.channel, { countries, regions }).forEach(country => { const item = _.cloneDeep(stream) @@ -21,9 +27,10 @@ module.exports = async function (streams = []) { items.push(item) }) }) - items = _.sortBy(items, i => { - if (i.group_title === 'Undefined') return '_' - return i.group_title + + items = _.sortBy(items, item => { + if (!item.group_title) return false + return item.group_title }) return { filepath: 'index.country.m3u', items } diff --git a/scripts/generators/index_language_m3u.js b/scripts/generators/index_language_m3u.js index 4f9889be5..c50c17a8e 100644 --- a/scripts/generators/index_language_m3u.js +++ b/scripts/generators/index_language_m3u.js @@ -3,18 +3,28 @@ const _ = require('lodash') module.exports = async function (streams = []) { streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + + await api.languages.load() + let languages = await api.languages.all() + languages = _.keyBy(languages, 'code') + let items = [] streams.forEach(stream => { - if (!stream.languages.length) return items.push(stream) + if (!stream.channel || !stream.channel.languages.length) { + const item = _.cloneDeep(stream) + item.group_title = null + items.push(stream) + return + } - stream.languages.forEach(language => { + stream.channel.languages.forEach(code => { const item = _.cloneDeep(stream) - item.group_title = language.name + item.group_title = languages[code] ? languages[code].name : null items.push(item) }) }) items = _.sortBy(items, i => { - if (i.group_title === 'Undefined') return '_' + if (!i.group_title) return '' return i.group_title }) diff --git a/scripts/generators/index_region_m3u.js b/scripts/generators/index_region_m3u.js index 86f00f2fb..bafcb3fd6 100644 --- a/scripts/generators/index_region_m3u.js +++ b/scripts/generators/index_region_m3u.js @@ -2,21 +2,55 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) + + await api.regions.load() + let regions = await api.regions.all() + regions = _.keyBy(regions, 'code') + let items = [] streams.forEach(stream => { - if (!stream.regions.length) return items.push(stream) + if (!stream.channel || !stream.channel.broadcast_area.length) { + const item = _.cloneDeep(stream) + item.group_title = null + items.push(item) + return + } - stream.regions.forEach(region => { + getChannelRegions(stream.channel, { regions }).forEach(region => { const item = _.cloneDeep(stream) item.group_title = region.name items.push(item) }) }) + items = _.sortBy(items, i => { - if (i.group_title === 'Undefined') return '_' + if (!i.group_title) return '' return i.group_title }) return { filepath: 'index.region.m3u', items } } + +function getChannelRegions(channel, { regions }) { + return channel.broadcast_area + .reduce((acc, item) => { + const [type, code] = item.split('/') + switch (type) { + case 'r': + acc.push(regions[code]) + break + case 's': + const [c] = item.split('-') + const r1 = _.filter(regions, { countries: [c] }) + acc = acc.concat(r1) + break + case 'c': + const r2 = _.filter(regions, { countries: [code] }) + acc = acc.concat(r2) + break + } + return acc + }, []) + .filter(i => i) +} diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index cff825592..51ca967d1 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -16,7 +16,7 @@ module.exports = async function (streams = []) { } } - let items = _.filter(streams, s => !s.languages.length) + let items = _.filter(streams, stream => !stream.channel || !stream.channel.languages.length) output.push({ filepath: 'languages/undefined.m3u', items }) return output diff --git a/scripts/generators/regions.js b/scripts/generators/regions.js index c48cbad44..6df03e852 100644 --- a/scripts/generators/regions.js +++ b/scripts/generators/regions.js @@ -5,15 +5,18 @@ module.exports = async function (streams = []) { const output = [] await api.regions.load() const regions = await api.regions.all() - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) for (const region of regions) { - const areaCodes = region.countries - areaCodes.push(region.code) - let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length) + const areaCodes = region.countries.map(code => `c/${code}`) + areaCodes.push(`r/${region.code}`) + let items = _.filter( + streams, + stream => stream.channel && _.intersection(stream.channel.broadcast_area, areaCodes).length + ) output.push({ filepath: `regions/${region.code.toLowerCase()}.m3u`, items }) } - let items = _.filter(streams, s => !s.broadcast_area.length) + let items = _.filter(streams, stream => !stream.channel || !stream.channel.broadcast_area.length) output.push({ filepath: 'regions/undefined.m3u', items }) return output diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index 15ea1a9a3..c67c955de 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -1,12 +1,3 @@ module.exports = function () { - if (this.group_title !== undefined) return this.group_title - - if (Array.isArray(this.categories) && this.categories.length) { - return this.categories - .map(i => i.name) - .sort() - .join(';') - } - - return 'Undefined' + return this.group_title || 'Undefined' } diff --git a/scripts/store/getters/index.js b/scripts/store/getters/index.js index df20631e0..21f17b262 100644 --- a/scripts/store/getters/index.js +++ b/scripts/store/getters/index.js @@ -1,7 +1,7 @@ exports.group_title = require('./group_title') exports.title = require('./title') -exports.tvg_country = require('./tvg_country') exports.tvg_id = require('./tvg_id') -exports.tvg_language = require('./tvg_language') exports.tvg_logo = require('./tvg_logo') exports.tvg_url = require('./tvg_url') +exports.tvg_country = require('./tvg_country') +exports.tvg_language = require('./tvg_language') diff --git a/scripts/store/getters/tvg_country.js b/scripts/store/getters/tvg_country.js index fb23daf09..f3015d773 100644 --- a/scripts/store/getters/tvg_country.js +++ b/scripts/store/getters/tvg_country.js @@ -1,3 +1,3 @@ module.exports = function () { - return Array.isArray(this.broadcast_area) ? this.broadcast_area.join(';') : '' + return this.tvg_country || '' } diff --git a/scripts/store/getters/tvg_language.js b/scripts/store/getters/tvg_language.js index 2ad39c7fe..ba4de84ed 100644 --- a/scripts/store/getters/tvg_language.js +++ b/scripts/store/getters/tvg_language.js @@ -1,3 +1,3 @@ module.exports = function () { - return Array.isArray(this.languages) ? this.languages.map(i => i.name).join(';') : '' + return this.tvg_language || '' } diff --git a/scripts/store/getters/tvg_logo.js b/scripts/store/getters/tvg_logo.js index c152968c4..8b289fea0 100644 --- a/scripts/store/getters/tvg_logo.js +++ b/scripts/store/getters/tvg_logo.js @@ -1,3 +1,3 @@ module.exports = function () { - return this.channel && this.channel.logo ? this.channel.logo : '' + return this.tvg_logo || '' } diff --git a/scripts/store/getters/tvg_url.js b/scripts/store/getters/tvg_url.js index 9bd084c78..2bb1bb1e4 100644 --- a/scripts/store/getters/tvg_url.js +++ b/scripts/store/getters/tvg_url.js @@ -1,3 +1,3 @@ module.exports = function () { - return this.guides.length ? this.guides[0] : '' + return this.tvg_url || '' } diff --git a/tests/__data__/expected/.gh-pages/categories/general.m3u b/tests/__data__/expected/.gh-pages/categories/general.m3u index a5890b5ab..1ca910b7c 100644 --- a/tests/__data__/expected/.gh-pages/categories/general.m3u +++ b/tests/__data__/expected/.gh-pages/categories/general.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) diff --git a/tests/__data__/expected/.gh-pages/categories/news.m3u b/tests/__data__/expected/.gh-pages/categories/news.m3u index 3993d1c4a..8bbcae29c 100644 --- a/tests/__data__/expected/.gh-pages/categories/news.m3u +++ b/tests/__data__/expected/.gh-pages/categories/news.m3u @@ -1,3 +1,3 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ca.m3u b/tests/__data__/expected/.gh-pages/countries/ca.m3u index fb0a0ce72..0b41d029c 100644 --- a/tests/__data__/expected/.gh-pages/countries/ca.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ca.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index a5890b5ab..1ca910b7c 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index 3993d1c4a..8bbcae29c 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,3 +1,3 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u index 28b3cbe20..5478245cd 100644 --- a/tests/__data__/expected/.gh-pages/index.category.m3u +++ b/tests/__data__/expected/.gh-pages/index.category.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u index f854d225d..78f959ce4 100644 --- a/tests/__data__/expected/.gh-pages/index.country.m3u +++ b/tests/__data__/expected/.gh-pages/index.country.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Not 24/7] diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u index 2d6aa2a7e..3a43dc07b 100644 --- a/tests/__data__/expected/.gh-pages/index.language.m3u +++ b/tests/__data__/expected/.gh-pages/index.language.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="French",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index 1e10afcac..defab9463 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u index 7646b9b52..95db56354 100644 --- a/tests/__data__/expected/.gh-pages/index.nsfw.m3u +++ b/tests/__data__/expected/.gh-pages/index.nsfw.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u index 73ec6be9b..2f40d87d1 100644 --- a/tests/__data__/expected/.gh-pages/index.region.m3u +++ b/tests/__data__/expected/.gh-pages/index.region.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Americas",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Asia",ЛДПР ТВ (1080p) diff --git a/tests/__data__/expected/.gh-pages/languages/eng.m3u b/tests/__data__/expected/.gh-pages/languages/eng.m3u index 3993d1c4a..8bbcae29c 100644 --- a/tests/__data__/expected/.gh-pages/languages/eng.m3u +++ b/tests/__data__/expected/.gh-pages/languages/eng.m3u @@ -1,3 +1,3 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index d2bb00ce0..11a540bc9 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml,https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] From 19629fe58671b29aaa1366897762eef0f41f28ed Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 8 Feb 2022 01:13:35 +0300 Subject: [PATCH 047/157] Update update-playlists.js --- scripts/commands/update-playlists.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/scripts/commands/update-playlists.js b/scripts/commands/update-playlists.js index 7b8cd1fd5..0196b4a76 100644 --- a/scripts/commands/update-playlists.js +++ b/scripts/commands/update-playlists.js @@ -1,4 +1,5 @@ const _ = require('lodash') +const { orderBy } = require('natural-orderby') const { create: createPlaylist } = require('../core/playlist') const { db, logger, file } = require('../core') @@ -11,17 +12,10 @@ async function main() { for (const filepath in files) { let items = files[filepath] - items = items.sort(naturalOrder) + items = orderBy(items, ['channel_name'], ['asc']) const playlist = createPlaylist(items, { public: false }) await file.create(filepath, playlist.toString()) } } main() - -function naturalOrder(a, b) { - return a.channel_name.localeCompare(b.channel_name, undefined, { - numeric: true, - sensitivity: 'base' - }) -} From 8df510ac5332bfc265a4e33a4579aa3e9e28faf0 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 8 Feb 2022 07:30:26 +0300 Subject: [PATCH 048/157] Update package.json --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5589ed18b..65eb7539f 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,9 @@ "private": true, "license": "MIT", "dependencies": { + "chalk": "^4.1.2", "chunk": "^0.0.3", - "commander": "^7.0.0", + "commander": "^8.3.0", "crypto": "^1.0.1", "dayjs": "^1.10.7", "fs-extra": "^10.0.0", From 2f99170a1525bbdc5a5cf5eedc01212725c20c8d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 8 Feb 2022 07:30:28 +0300 Subject: [PATCH 049/157] Update package-lock.json --- package-lock.json | 44 ++++++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index f65726e28..7d7a20c98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,8 +7,9 @@ "name": "iptv", "license": "MIT", "dependencies": { + "chalk": "^4.1.2", "chunk": "^0.0.3", - "commander": "^7.0.0", + "commander": "^8.3.0", "crypto": "^1.0.1", "dayjs": "^1.10.7", "fs-extra": "^10.0.0", @@ -1289,9 +1290,9 @@ } }, "node_modules/chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -1431,11 +1432,11 @@ "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" }, "node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "engines": { - "node": ">= 10" + "node": ">= 12" } }, "node_modules/concat-map": { @@ -3068,6 +3069,14 @@ "node": ">=10.0.0" } }, + "node_modules/m3u-linter/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -5228,9 +5237,9 @@ "integrity": "sha512-KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==" }, "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -5350,9 +5359,9 @@ "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" }, "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" }, "concat-map": { "version": "0.0.1", @@ -6583,6 +6592,13 @@ "chalk": "^4.1.1", "commander": "^7.2.0", "glob": "^7.1.6" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } } }, "make-dir": { From 7ab4cf525ce836771618ed0867f08722ab2b82f7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:09:25 +0300 Subject: [PATCH 050/157] Create blocklist.js --- scripts/core/blocklist.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 scripts/core/blocklist.js diff --git a/scripts/core/blocklist.js b/scripts/core/blocklist.js new file mode 100644 index 000000000..ab2502c39 --- /dev/null +++ b/scripts/core/blocklist.js @@ -0,0 +1,18 @@ +const list = require('../data/blocklist') +const parser = require('./parser') + +const blocklist = {} + +blocklist.find = function (title, country) { + const name = parser.parseChannelName(title) + + return list.find(item => { + const regexp = new RegExp(item.regex, 'i') + const hasSameName = regexp.test(name) + const fromSameCountry = country === item.country + + return hasSameName && fromSameCountry + }) +} + +module.exports = blocklist From 1e681c897b56d94caa36d662cdae3c65daeb81a5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:09:28 +0300 Subject: [PATCH 051/157] Update index.js --- scripts/core/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/core/index.js b/scripts/core/index.js index 0dc882641..32b9e6865 100644 --- a/scripts/core/index.js +++ b/scripts/core/index.js @@ -10,3 +10,4 @@ exports.store = require('./store') exports.markdown = require('./markdown') exports.api = require('./api') exports.cid = require('./cid') +exports.blocklist = require('./blocklist') From e50a478f9f07011322d66ea1356897aed1826172 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:09:31 +0300 Subject: [PATCH 052/157] Update validate.js --- scripts/commands/validate.js | 86 ++++++++++++++++++++---------------- 1 file changed, 49 insertions(+), 37 deletions(-) diff --git a/scripts/commands/validate.js b/scripts/commands/validate.js index 0d2b71655..053f67068 100644 --- a/scripts/commands/validate.js +++ b/scripts/commands/validate.js @@ -1,55 +1,67 @@ -const blocklist = require('../data/blocklist') -const parser = require('iptv-playlist-parser') -const { file, logger } = require('../core') +const { file, logger, api, parser, blocklist } = require('../core') const { program } = require('commander') +const chalk = require('chalk') -const options = program - .option('--input-dir ', 'Set path to input directory', 'channels') - .parse(process.argv) - .opts() +program.argument('', 'Path to file to validate').parse(process.argv) async function main() { - const files = await file.list(`${options.inputDir}/**/*.m3u`) - const errors = [] - for (const filepath of files) { - const content = await file.read(filepath) - const playlist = parser.parse(content) + await api.channels.load() + + let errors = [] + let warnings = [] + for (const filepath of program.args) { + if (!filepath.endsWith('.m3u')) continue + const basename = file.basename(filepath) - const [_, country] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null] + const [_, countryCode] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null] + + const fileLog = [] + const streams = await parser.parsePlaylist(filepath) + for (const stream of streams) { + const found = blocklist.find(stream.name, countryCode.toUpperCase()) + if (found) { + fileLog.push({ + type: 'error', + line: stream.line, + message: `"${found.name}" is on the blocklist due to claims of copyright holders (${found.reference})` + }) + } + + if (stream.tvg.id && !api.channels.find({ id: stream.tvg.id })) { + fileLog.push({ + type: 'warning', + line: stream.line, + message: `"${stream.tvg.id}" is not in the database` + }) + } + } - const items = playlist.items - .map(item => { - const details = check(item, country) + if (fileLog.length) { + logger.info(`\n${chalk.underline(filepath)}`) - return details ? { ...item, details } : null + fileLog.forEach(err => { + const position = err.line.toString().padEnd(6, ' ') + const type = err.type.padEnd(9, ' ') + const status = err.type === 'error' ? chalk.red(type) : chalk.yellow(type) + logger.info(` ${chalk.gray(position)}${status}${err.message}`) }) - .filter(i => i) - items.forEach(item => { - errors.push( - `${filepath}:${item.line} '${item.details.name}' is on the blocklist due to claims of copyright holders (${item.details.reference})` - ) - }) + errors = errors.concat(fileLog.filter(e => e.type === 'error')) + warnings = warnings.concat(fileLog.filter(e => e.type === 'warning')) + } } - errors.forEach(error => { - logger.error(error) - }) + logger.error( + chalk.red( + `\n${errors.length + warnings.length} problems (${errors.length} errors, ${ + warnings.length + } warnings)` + ) + ) if (errors.length) { - logger.info('') process.exit(1) } } -function check(channel, country) { - return blocklist.find(item => { - const regexp = new RegExp(item.regex, 'i') - const hasSameName = regexp.test(channel.name) - const fromSameCountry = country === item.country.toLowerCase() - - return hasSameName && fromSameCountry - }) -} - main() From 8ed13899f7adc661bde7603701f5fe72ebfe1d5a Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:10:30 +0300 Subject: [PATCH 053/157] Create .gitignore --- scripts/commands/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 scripts/commands/.gitignore diff --git a/scripts/commands/.gitignore b/scripts/commands/.gitignore new file mode 100644 index 000000000..2d59da298 --- /dev/null +++ b/scripts/commands/.gitignore @@ -0,0 +1 @@ +export.js \ No newline at end of file From fd1d89304f80d24d4ec3d61236ef816c98b78d65 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:33:53 +0300 Subject: [PATCH 054/157] Create wrong_id.m3u --- tests/__data__/input/channels/wrong_id.m3u | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/__data__/input/channels/wrong_id.m3u diff --git a/tests/__data__/input/channels/wrong_id.m3u b/tests/__data__/input/channels/wrong_id.m3u new file mode 100644 index 000000000..fd9867773 --- /dev/null +++ b/tests/__data__/input/channels/wrong_id.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="qib22lAq1L.us",ABC (720p) +https://example.com/playlist2.m3u8 From 09c4947ac6f50f9f87e12dc3fecc35847023b324 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:33:57 +0300 Subject: [PATCH 055/157] Update validate.test.js --- tests/commands/validate.test.js | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/tests/commands/validate.test.js b/tests/commands/validate.test.js index 7460b0158..e90acdb65 100644 --- a/tests/commands/validate.test.js +++ b/tests/commands/validate.test.js @@ -1,16 +1,27 @@ -const fs = require('fs') -const path = require('path') const { execSync } = require('child_process') -it('can validate channels name', () => { +it('show error if channel name in the blocklist', () => { try { - execSync('node scripts/commands/validate.js --input-dir=tests/__data__/input/channels', { + execSync('node scripts/commands/validate.js tests/__data__/input/channels/us_blocked.m3u', { encoding: 'utf8' }) } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( - `tests/__data__/input/channels/us_blocked.m3u:2 'Fox Sports' is on the blocklist due to claims of copyright holders (https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md)\n\n` + `\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports" is on the blocklist due to claims of copyright holders (https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md)\n\n1 problems (1 errors, 0 warnings)\n` ) } }) + +it('show warning if channel has wrong id', () => { + const stdout = execSync( + 'node scripts/commands/validate.js tests/__data__/input/channels/wrong_id.m3u', + { + encoding: 'utf8' + } + ) + + expect(stdout).toBe( + `\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` + ) +}) From 442916d130b71f5bf151445cec8e3927e5e2cd7a Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 10:52:38 +0300 Subject: [PATCH 056/157] Rename to id.js --- scripts/commands/create-database.js | 4 ++-- scripts/core/{cid.js => id.js} | 6 +++--- scripts/core/index.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename scripts/core/{cid.js => id.js} (84%) diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js index 777ab22a2..5d170ef05 100644 --- a/scripts/commands/create-database.js +++ b/scripts/commands/create-database.js @@ -1,4 +1,4 @@ -const { db, file, parser, store, logger, cid } = require('../core') +const { db, file, parser, store, logger, id } = require('../core') const { program } = require('commander') const _ = require('lodash') @@ -62,7 +62,7 @@ async function saveToDatabase(streams = []) { stream.set('cluster_id', { cluster_id: i + 1 }) if (!stream.get('channel_id')) { - const channel_id = cid.generate(item.name, item.filepath) + const channel_id = id.generate(item.name, item.filepath) stream.set('channel_id', { channel_id }) stream.set('updated', { updated: true }) diff --git a/scripts/core/cid.js b/scripts/core/id.js similarity index 84% rename from scripts/core/cid.js rename to scripts/core/id.js index 11ab5fae3..0c21a7b9d 100644 --- a/scripts/core/cid.js +++ b/scripts/core/id.js @@ -2,9 +2,9 @@ const file = require('./file') const parser = require('./parser') const transliteration = require('transliteration') -const cid = {} +const id = {} -cid.generate = function (title, filepath) { +id.generate = function (title, filepath) { const name = parser.parseChannelName(title) const code = parser.parseCountryCode(filepath) @@ -20,4 +20,4 @@ cid.generate = function (title, filepath) { return null } -module.exports = cid +module.exports = id diff --git a/scripts/core/index.js b/scripts/core/index.js index 32b9e6865..ebb274394 100644 --- a/scripts/core/index.js +++ b/scripts/core/index.js @@ -9,5 +9,5 @@ exports.playlist = require('./playlist') exports.store = require('./store') exports.markdown = require('./markdown') exports.api = require('./api') -exports.cid = require('./cid') +exports.id = require('./id') exports.blocklist = require('./blocklist') From 5ec8619268139966218c0aafef7ebf14e8a3c0af Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 19:56:11 +0300 Subject: [PATCH 057/157] Update generate-playlist.js --- scripts/commands/generate-playlists.js | 37 ++++++------------- scripts/core/playlist.js | 2 +- scripts/generators/categories.js | 7 ++-- scripts/generators/countries.js | 14 +++---- scripts/generators/index_category_m3u.js | 17 +++------ scripts/generators/index_country_m3u.js | 15 ++++---- scripts/generators/index_language_m3u.js | 19 ++++------ scripts/generators/index_m3u.js | 2 +- scripts/generators/index_region_m3u.js | 15 ++++---- scripts/generators/languages.js | 6 +-- scripts/generators/regions.js | 14 +++---- scripts/store/getters/group_title.js | 11 +++++- scripts/store/getters/index.js | 1 - scripts/store/getters/tvg_country.js | 15 +++++++- scripts/store/getters/tvg_language.js | 12 +++++- scripts/store/getters/tvg_logo.js | 4 +- scripts/store/getters/tvg_url.js | 3 -- .../.gh-pages/categories/undefined.m3u | 10 +++-- .../expected/.gh-pages/countries/ad.m3u | 5 +++ .../expected/.gh-pages/countries/in.m3u | 5 +++ .../expected/.gh-pages/countries/uk.m3u | 2 + .../.gh-pages/countries/undefined.m3u | 2 - .../expected/.gh-pages/index.category.m3u | 10 +++-- .../expected/.gh-pages/index.country.m3u | 12 +++--- .../expected/.gh-pages/index.language.m3u | 10 +++-- tests/__data__/expected/.gh-pages/index.m3u | 10 +++-- .../expected/.gh-pages/index.nsfw.m3u | 10 +++-- .../expected/.gh-pages/index.region.m3u | 30 ++++++++++----- .../expected/.gh-pages/languages/cat.m3u | 3 -- .../expected/.gh-pages/languages/fra.m3u | 3 ++ .../.gh-pages/languages/undefined.m3u | 6 ++- .../expected/.gh-pages/regions/afr.m3u | 1 + .../expected/.gh-pages/regions/amer.m3u | 3 ++ .../expected/.gh-pages/regions/apac.m3u | 3 ++ .../expected/.gh-pages/regions/arab.m3u | 1 + .../expected/.gh-pages/regions/asia.m3u | 2 + .../expected/.gh-pages/regions/carib.m3u | 1 + .../expected/.gh-pages/regions/cas.m3u | 1 + .../expected/.gh-pages/regions/emea.m3u | 8 ++-- .../expected/.gh-pages/regions/eur.m3u | 8 ++-- .../expected/.gh-pages/regions/hispam.m3u | 1 + .../expected/.gh-pages/regions/int.m3u | 10 +++-- .../expected/.gh-pages/regions/lac.m3u | 1 + .../expected/.gh-pages/regions/latam.m3u | 1 + .../expected/.gh-pages/regions/maghreb.m3u | 1 + .../expected/.gh-pages/regions/mena.m3u | 1 + .../expected/.gh-pages/regions/mideast.m3u | 1 + .../expected/.gh-pages/regions/nam.m3u | 3 ++ .../expected/.gh-pages/regions/noram.m3u | 3 ++ .../expected/.gh-pages/regions/nord.m3u | 1 + .../expected/.gh-pages/regions/oce.m3u | 1 + .../expected/.gh-pages/regions/sas.m3u | 3 ++ .../expected/.gh-pages/regions/ssa.m3u | 1 + .../expected/.gh-pages/regions/undefined.m3u | 2 - .../expected/.gh-pages/regions/wafr.m3u | 1 + .../expected/logs/generators/categories.log | 2 +- .../expected/logs/generators/countries.log | 6 +-- .../logs/generators/index_category_m3u.log | 1 + .../logs/generators/index_country_m3u.log | 1 + .../logs/generators/index_language_m3u.log | 1 + .../expected/logs/generators/index_m3u.log | 1 + .../logs/generators/index_nsfw_m3u.log | 1 + .../logs/generators/index_region_m3u.log | 1 + .../expected/logs/generators/languages.log | 3 +- .../expected/logs/generators/regions.log | 14 +++---- 65 files changed, 246 insertions(+), 156 deletions(-) delete mode 100644 scripts/store/getters/tvg_url.js create mode 100644 tests/__data__/expected/.gh-pages/countries/ad.m3u create mode 100644 tests/__data__/expected/.gh-pages/countries/in.m3u delete mode 100644 tests/__data__/expected/.gh-pages/languages/cat.m3u create mode 100644 tests/__data__/expected/.gh-pages/languages/fra.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/afr.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/amer.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/apac.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/arab.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/carib.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/cas.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/hispam.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/lac.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/latam.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/maghreb.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/mena.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/mideast.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/nam.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/noram.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/nord.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/oce.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/sas.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/ssa.m3u create mode 100644 tests/__data__/expected/.gh-pages/regions/wafr.m3u create mode 100644 tests/__data__/expected/logs/generators/index_category_m3u.log create mode 100644 tests/__data__/expected/logs/generators/index_country_m3u.log create mode 100644 tests/__data__/expected/logs/generators/index_language_m3u.log create mode 100644 tests/__data__/expected/logs/generators/index_m3u.log create mode 100644 tests/__data__/expected/logs/generators/index_nsfw_m3u.log create mode 100644 tests/__data__/expected/logs/generators/index_region_m3u.log diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/generate-playlists.js index 0fa4a1960..2d9da565e 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/generate-playlists.js @@ -1,4 +1,4 @@ -const { db, generator, api, logger } = require('../core') +const { db, generator, api, logger, file } = require('../core') const _ = require('lodash') async function main() { @@ -30,7 +30,7 @@ main() async function loadStreams() { await db.streams.load() - let streams = await db.streams.find({}) + let streams = await db.streams.find({ is_broken: false }) await api.channels.load() let channels = await api.channels.all() @@ -50,31 +50,16 @@ async function loadStreams() { return streams.map(stream => { const channel = channels[stream.channel_id] || null + const filename = file.getFilename(stream.filepath) + const [_, code] = filename.match(/^([a-z]{2})(_|$)/) || [null, null] + const defaultBroadcastArea = code ? [`c/${code.toUpperCase()}`] : [] - if (channel) { - stream.group_title = channel.categories - .map(id => (categories[id] ? categories[id].name : null)) - .filter(i => i) - .sort() - .join(';') - stream.tvg_language = channel.languages - .map(code => (languages[code] ? languages[code].name : '')) - .filter(i => i) - .sort() - .join(';') - stream.tvg_country = channel.broadcast_area - .map(item => { - const [_, code] = item.split('/') - return code - }) - .filter(i => i) - .sort() - .join(';') - stream.tvg_logo = channel.logo - stream.tvg_url = - guides[channel.id] && guides[channel.id].length ? guides[channel.id][0].url : null - stream.channel = channel - } + stream.guides = channel && Array.isArray(guides[channel.id]) ? guides[channel.id] : [] + stream.categories = channel ? channel.categories.map(id => categories[id]) : [] + stream.languages = channel ? channel.languages.map(id => languages[id]) : [] + stream.broadcast_area = channel ? channel.broadcast_area : defaultBroadcastArea + stream.is_nsfw = channel ? channel.is_nsfw : false + stream.logo = channel ? channel.logo : null return stream }) diff --git a/scripts/core/playlist.js b/scripts/core/playlist.js index 4d6c90c47..ef8305da9 100644 --- a/scripts/core/playlist.js +++ b/scripts/core/playlist.js @@ -53,7 +53,7 @@ playlist.create = function (items = [], options = {}) { const header = {} if (options.public) { - let guides = items.map(item => item.tvg_url).filter(i => i) + let guides = items.map(item => (item.guides.length ? item.guides[0].url : null)).filter(i => i) header['x-tvg-url'] = _.uniq(guides).sort().join(',') } p.setHeader(header) diff --git a/scripts/generators/categories.js b/scripts/generators/categories.js index 0d95cd34a..abbfc0cd1 100644 --- a/scripts/generators/categories.js +++ b/scripts/generators/categories.js @@ -2,15 +2,16 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - const output = [] await api.categories.load() const categories = await api.categories.all() + + const output = [] for (const category of categories) { - let items = _.filter(streams, { channel: { categories: [category.id] } }) + let items = _.filter(streams, { categories: [{ id: category.id }] }) output.push({ filepath: `categories/${category.id}.m3u`, items }) } - let items = _.filter(streams, stream => !stream.channel || !stream.channel.categories.length) + let items = _.filter(streams, stream => !stream.categories.length) output.push({ filepath: 'categories/undefined.m3u', items }) return output diff --git a/scripts/generators/countries.js b/scripts/generators/countries.js index cb3829052..58d08b6f9 100644 --- a/scripts/generators/countries.js +++ b/scripts/generators/countries.js @@ -2,7 +2,7 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) + streams = _.filter(streams, stream => stream.is_nsfw === false) await api.countries.load() const countries = await api.countries.all() @@ -15,15 +15,15 @@ module.exports = async function (streams = []) { r => `r/${r.code}` ) countryAreaCodes.push(`c/${country.code}`) - let items = _.filter( - streams, - stream => - stream.channel && _.intersection(stream.channel.broadcast_area, countryAreaCodes).length - ) + + let items = _.filter(streams, stream => { + return _.intersection(stream.broadcast_area, countryAreaCodes).length + }) + output.push({ filepath: `countries/${country.code.toLowerCase()}.m3u`, items }) } - let items = _.filter(streams, stream => !stream.channel || !stream.channel.broadcast_area.length) + let items = _.filter(streams, stream => !stream.broadcast_area.length) output.push({ filepath: 'countries/undefined.m3u', items }) return output diff --git a/scripts/generators/index_category_m3u.js b/scripts/generators/index_category_m3u.js index 0e8b364a6..1794f8733 100644 --- a/scripts/generators/index_category_m3u.js +++ b/scripts/generators/index_category_m3u.js @@ -1,32 +1,27 @@ -const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) - - await api.categories.load() - let categories = await api.categories.all() - categories = _.keyBy(categories, 'id') + streams = _.filter(streams, stream => stream.is_nsfw === false) let items = [] streams.forEach(stream => { - if (!stream.channel || !stream.channel.categories.length) { + if (!stream.categories.length) { const item = _.cloneDeep(stream) - item.group_title = null + item.group_title = 'Undefined' items.push(item) return } - stream.channel.categories.forEach(id => { + stream.categories.forEach(category => { const item = _.cloneDeep(stream) - item.group_title = categories[id] ? categories[id].name : null + item.group_title = category.name items.push(item) }) }) items = _.sortBy(items, item => { - if (!item.group_title) return '' + if (item.group_title === 'Undefined') return '' return item.group_title }) diff --git a/scripts/generators/index_country_m3u.js b/scripts/generators/index_country_m3u.js index d7944bf5a..7f06ae84f 100644 --- a/scripts/generators/index_country_m3u.js +++ b/scripts/generators/index_country_m3u.js @@ -2,7 +2,7 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + streams = _.filter(streams, stream => stream.is_nsfw === false) await api.regions.load() let regions = await api.regions.all() @@ -14,14 +14,14 @@ module.exports = async function (streams = []) { let items = [] streams.forEach(stream => { - if (!stream.channel || !stream.channel.broadcast_area.length) { + if (!stream.broadcast_area.length) { const item = _.cloneDeep(stream) - item.group_title = null + item.group_title = 'Undefined' items.push(item) return } - getBroadcastCountries(stream.channel, { countries, regions }).forEach(country => { + getBroadcastCountries(stream, { countries, regions }).forEach(country => { const item = _.cloneDeep(stream) item.group_title = country.name items.push(item) @@ -29,15 +29,16 @@ module.exports = async function (streams = []) { }) items = _.sortBy(items, item => { - if (!item.group_title) return false + if (item.group_title === 'Undefined') return '' + return item.group_title }) return { filepath: 'index.country.m3u', items } } -function getBroadcastCountries(channel, { countries, regions }) { - let codes = channel.broadcast_area.reduce((acc, item) => { +function getBroadcastCountries(stream, { countries, regions }) { + let codes = stream.broadcast_area.reduce((acc, item) => { const [type, code] = item.split('/') switch (type) { case 'c': diff --git a/scripts/generators/index_language_m3u.js b/scripts/generators/index_language_m3u.js index c50c17a8e..a8bbd8d61 100644 --- a/scripts/generators/index_language_m3u.js +++ b/scripts/generators/index_language_m3u.js @@ -1,30 +1,27 @@ -const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) - - await api.languages.load() - let languages = await api.languages.all() - languages = _.keyBy(languages, 'code') + streams = _.filter(streams, stream => stream.is_nsfw === false) let items = [] streams.forEach(stream => { - if (!stream.channel || !stream.channel.languages.length) { + if (!stream.languages.length) { const item = _.cloneDeep(stream) - item.group_title = null + item.group_title = 'Undefined' items.push(stream) return } - stream.channel.languages.forEach(code => { + stream.languages.forEach(language => { const item = _.cloneDeep(stream) - item.group_title = languages[code] ? languages[code].name : null + item.group_title = language.name items.push(item) }) }) + items = _.sortBy(items, i => { - if (!i.group_title) return '' + if (i.group_title === 'Undefined') return '' + return i.group_title }) diff --git a/scripts/generators/index_m3u.js b/scripts/generators/index_m3u.js index d280ecf51..b236051a4 100644 --- a/scripts/generators/index_m3u.js +++ b/scripts/generators/index_m3u.js @@ -2,6 +2,6 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + streams = _.filter(streams, stream => stream.is_nsfw === false) return { filepath: 'index.m3u', items: streams } } diff --git a/scripts/generators/index_region_m3u.js b/scripts/generators/index_region_m3u.js index bafcb3fd6..e1d32a8b6 100644 --- a/scripts/generators/index_region_m3u.js +++ b/scripts/generators/index_region_m3u.js @@ -2,7 +2,7 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) + streams = _.filter(streams, stream => stream.is_nsfw === false) await api.regions.load() let regions = await api.regions.all() @@ -10,14 +10,14 @@ module.exports = async function (streams = []) { let items = [] streams.forEach(stream => { - if (!stream.channel || !stream.channel.broadcast_area.length) { + if (!stream.broadcast_area.length) { const item = _.cloneDeep(stream) - item.group_title = null + item.group_title = 'Undefined' items.push(item) return } - getChannelRegions(stream.channel, { regions }).forEach(region => { + getChannelRegions(stream, { regions }).forEach(region => { const item = _.cloneDeep(stream) item.group_title = region.name items.push(item) @@ -25,15 +25,16 @@ module.exports = async function (streams = []) { }) items = _.sortBy(items, i => { - if (!i.group_title) return '' + if (i.group_title === 'Undefined') return '' + return i.group_title }) return { filepath: 'index.region.m3u', items } } -function getChannelRegions(channel, { regions }) { - return channel.broadcast_area +function getChannelRegions(stream, { regions }) { + return stream.broadcast_area .reduce((acc, item) => { const [type, code] = item.split('/') switch (type) { diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index 51ca967d1..eba2d8a8b 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -2,7 +2,7 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false) + streams = _.filter(streams, stream => stream.is_nsfw === false) await api.languages.load() let languages = await api.languages.all() @@ -10,13 +10,13 @@ module.exports = async function (streams = []) { const output = [] for (const language of languages) { - let items = _.filter(streams, { channel: { languages: [language.code] } }) + let items = _.filter(streams, { languages: [{ code: language.code }] }) if (items.length) { output.push({ filepath: `languages/${language.code}.m3u`, items }) } } - let items = _.filter(streams, stream => !stream.channel || !stream.channel.languages.length) + let items = _.filter(streams, stream => !stream.languages.length) output.push({ filepath: 'languages/undefined.m3u', items }) return output diff --git a/scripts/generators/regions.js b/scripts/generators/regions.js index 6df03e852..61cc62144 100644 --- a/scripts/generators/regions.js +++ b/scripts/generators/regions.js @@ -2,21 +2,21 @@ const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { - const output = [] + streams = _.filter(streams, stream => stream.is_nsfw === false) + await api.regions.load() const regions = await api.regions.all() - streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false) + + const output = [] for (const region of regions) { const areaCodes = region.countries.map(code => `c/${code}`) areaCodes.push(`r/${region.code}`) - let items = _.filter( - streams, - stream => stream.channel && _.intersection(stream.channel.broadcast_area, areaCodes).length - ) + + let items = _.filter(streams, stream => _.intersection(stream.broadcast_area, areaCodes).length) output.push({ filepath: `regions/${region.code.toLowerCase()}.m3u`, items }) } - let items = _.filter(streams, stream => !stream.channel || !stream.channel.broadcast_area.length) + let items = _.filter(streams, stream => !stream.broadcast_area.length) output.push({ filepath: 'regions/undefined.m3u', items }) return output diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index c67c955de..78c0b944f 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -1,3 +1,12 @@ module.exports = function () { - return this.group_title || 'Undefined' + if (this.group_title) return this.group_title + + if (this.categories.length) { + return this.categories + .map(category => category.name) + .sort() + .join(';') + } + + return 'Undefined' } diff --git a/scripts/store/getters/index.js b/scripts/store/getters/index.js index 21f17b262..75fbe8be3 100644 --- a/scripts/store/getters/index.js +++ b/scripts/store/getters/index.js @@ -2,6 +2,5 @@ exports.group_title = require('./group_title') exports.title = require('./title') exports.tvg_id = require('./tvg_id') exports.tvg_logo = require('./tvg_logo') -exports.tvg_url = require('./tvg_url') exports.tvg_country = require('./tvg_country') exports.tvg_language = require('./tvg_language') diff --git a/scripts/store/getters/tvg_country.js b/scripts/store/getters/tvg_country.js index f3015d773..dd2f2c3cc 100644 --- a/scripts/store/getters/tvg_country.js +++ b/scripts/store/getters/tvg_country.js @@ -1,3 +1,16 @@ module.exports = function () { - return this.tvg_country || '' + if (this.tvg_country) return this.tvg_country + + if (this.broadcast_area.length) { + return this.broadcast_area + .map(item => { + const [_, code] = item.split('/') + return code + }) + .filter(i => i) + .sort() + .join(';') + } + + return '' } diff --git a/scripts/store/getters/tvg_language.js b/scripts/store/getters/tvg_language.js index ba4de84ed..a9b60a161 100644 --- a/scripts/store/getters/tvg_language.js +++ b/scripts/store/getters/tvg_language.js @@ -1,3 +1,13 @@ module.exports = function () { - return this.tvg_language || '' + if (this.tvg_language) return this.tvg_language + + if (this.languages.length) { + return this.languages + .map(language => (language ? language.name : null)) + .filter(l => l) + .sort() + .join(';') + } + + return '' } diff --git a/scripts/store/getters/tvg_logo.js b/scripts/store/getters/tvg_logo.js index 8b289fea0..7067ddabd 100644 --- a/scripts/store/getters/tvg_logo.js +++ b/scripts/store/getters/tvg_logo.js @@ -1,3 +1,5 @@ module.exports = function () { - return this.tvg_logo || '' + if (this.tvg_logo) return this.tvg_logo + + return this.logo || '' } diff --git a/scripts/store/getters/tvg_url.js b/scripts/store/getters/tvg_url.js deleted file mode 100644 index 2bb1bb1e4..000000000 --- a/scripts/store/getters/tvg_url.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function () { - return this.tvg_url || '' -} diff --git a/tests/__data__/expected/.gh-pages/categories/undefined.m3u b/tests/__data__/expected/.gh-pages/categories/undefined.m3u index b16d81e94..9c088466a 100644 --- a/tests/__data__/expected/.gh-pages/categories/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/categories/undefined.m3u @@ -1,7 +1,9 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/countries/ad.m3u b/tests/__data__/expected/.gh-pages/countries/ad.m3u new file mode 100644 index 000000000..89c352d71 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/countries/ad.m3u @@ -0,0 +1,5 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/countries/in.m3u b/tests/__data__/expected/.gh-pages/countries/in.m3u new file mode 100644 index 000000000..07c5a8be9 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/countries/in.m3u @@ -0,0 +1,5 @@ +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index 8bbcae29c..6f4ab4ca5 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,3 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/undefined.m3u b/tests/__data__/expected/.gh-pages/countries/undefined.m3u index f2393c589..a29324571 100644 --- a/tests/__data__/expected/.gh-pages/countries/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/countries/undefined.m3u @@ -1,5 +1,3 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u index 5478245cd..508c94701 100644 --- a/tests/__data__/expected/.gh-pages/index.category.m3u +++ b/tests/__data__/expected/.gh-pages/index.category.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) @@ -7,9 +7,11 @@ http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u index 78f959ce4..0a2dfa6a9 100644 --- a/tests/__data__/expected/.gh-pages/index.country.m3u +++ b/tests/__data__/expected/.gh-pages/index.country.m3u @@ -1,4 +1,4 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Not 24/7] @@ -7,10 +7,10 @@ http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Andorra",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Andorra",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD (720p) [Not 24/7] @@ -205,6 +205,8 @@ http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="India",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD (720p) [Not 24/7] @@ -477,6 +479,8 @@ http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="United Kingdom",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD (720p) [Not 24/7] @@ -505,7 +509,5 @@ http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u index 3a43dc07b..9430c747a 100644 --- a/tests/__data__/expected/.gh-pages/index.language.m3u +++ b/tests/__data__/expected/.gh-pages/index.language.m3u @@ -1,13 +1,15 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="French",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russian",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Valencian",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index defab9463..763b5ee26 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,13 +1,15 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u index 95db56354..27f908f75 100644 --- a/tests/__data__/expected/.gh-pages/index.nsfw.m3u +++ b/tests/__data__/expected/.gh-pages/index.nsfw.m3u @@ -1,9 +1,9 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 @@ -11,5 +11,7 @@ http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 #EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Flemish" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u index 2f40d87d1..d81e2f75c 100644 --- a/tests/__data__/expected/.gh-pages/index.region.m3u +++ b/tests/__data__/expected/.gh-pages/index.region.m3u @@ -1,31 +1,43 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Americas",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Asia",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Asia",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Asia-Pacific",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Commonwealth of Independent States",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Europe",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Europe",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Europe, the Middle East and Africa",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe, the Middle East and Africa",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Europe, the Middle East and Africa",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe, the Middle East and Africa",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="North America",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Northern America",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Worldwide",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="South Asia",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Worldwide",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Worldwide",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Worldwide",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Worldwide",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Worldwide",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/cat.m3u b/tests/__data__/expected/.gh-pages/languages/cat.m3u deleted file mode 100644 index 940072790..000000000 --- a/tests/__data__/expected/.gh-pages/languages/cat.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/tests/__data__/expected/.gh-pages/languages/fra.m3u b/tests/__data__/expected/.gh-pages/languages/fra.m3u new file mode 100644 index 000000000..1dfd5d41a --- /dev/null +++ b/tests/__data__/expected/.gh-pages/languages/fra.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/undefined.m3u b/tests/__data__/expected/.gh-pages/languages/undefined.m3u index f2393c589..9c088466a 100644 --- a/tests/__data__/expected/.gh-pages/languages/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/languages/undefined.m3u @@ -1,5 +1,9 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/regions/afr.m3u b/tests/__data__/expected/.gh-pages/regions/afr.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/afr.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/amer.m3u b/tests/__data__/expected/.gh-pages/regions/amer.m3u new file mode 100644 index 000000000..1dfd5d41a --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/amer.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/apac.m3u b/tests/__data__/expected/.gh-pages/regions/apac.m3u new file mode 100644 index 000000000..3195408c1 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/apac.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/arab.m3u b/tests/__data__/expected/.gh-pages/regions/arab.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/arab.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/asia.m3u b/tests/__data__/expected/.gh-pages/regions/asia.m3u index 0b77eed5a..548d25697 100644 --- a/tests/__data__/expected/.gh-pages/regions/asia.m3u +++ b/tests/__data__/expected/.gh-pages/regions/asia.m3u @@ -1,3 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/carib.m3u b/tests/__data__/expected/.gh-pages/regions/carib.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/carib.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/cas.m3u b/tests/__data__/expected/.gh-pages/regions/cas.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/cas.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/emea.m3u b/tests/__data__/expected/.gh-pages/regions/emea.m3u index 168033fc2..c580d531b 100644 --- a/tests/__data__/expected/.gh-pages/regions/emea.m3u +++ b/tests/__data__/expected/.gh-pages/regions/emea.m3u @@ -1,5 +1,7 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/eur.m3u b/tests/__data__/expected/.gh-pages/regions/eur.m3u index 168033fc2..c580d531b 100644 --- a/tests/__data__/expected/.gh-pages/regions/eur.m3u +++ b/tests/__data__/expected/.gh-pages/regions/eur.m3u @@ -1,5 +1,7 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/hispam.m3u b/tests/__data__/expected/.gh-pages/regions/hispam.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/hispam.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index 11a540bc9..b67457758 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,9 +1,13 @@ -#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml,https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="AndorraTV.ad" tvg-country="AD" tvg-language="Valencian" tvg-logo="" group-title="Undefined",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv +#EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) +https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/lac.m3u b/tests/__data__/expected/.gh-pages/regions/lac.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/lac.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/latam.m3u b/tests/__data__/expected/.gh-pages/regions/latam.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/latam.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/maghreb.m3u b/tests/__data__/expected/.gh-pages/regions/maghreb.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/maghreb.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/mena.m3u b/tests/__data__/expected/.gh-pages/regions/mena.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/mena.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/mideast.m3u b/tests/__data__/expected/.gh-pages/regions/mideast.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/mideast.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/nam.m3u b/tests/__data__/expected/.gh-pages/regions/nam.m3u new file mode 100644 index 000000000..1dfd5d41a --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/nam.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/noram.m3u b/tests/__data__/expected/.gh-pages/regions/noram.m3u new file mode 100644 index 000000000..1dfd5d41a --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/noram.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/nord.m3u b/tests/__data__/expected/.gh-pages/regions/nord.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/nord.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/oce.m3u b/tests/__data__/expected/.gh-pages/regions/oce.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/oce.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/sas.m3u b/tests/__data__/expected/.gh-pages/regions/sas.m3u new file mode 100644 index 000000000..3195408c1 --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/sas.m3u @@ -0,0 +1,3 @@ +#EXTM3U x-tvg-url="" +#EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/ssa.m3u b/tests/__data__/expected/.gh-pages/regions/ssa.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/ssa.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/.gh-pages/regions/undefined.m3u b/tests/__data__/expected/.gh-pages/regions/undefined.m3u index f2393c589..a29324571 100644 --- a/tests/__data__/expected/.gh-pages/regions/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/regions/undefined.m3u @@ -1,5 +1,3 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/wafr.m3u b/tests/__data__/expected/.gh-pages/regions/wafr.m3u new file mode 100644 index 000000000..275a498ee --- /dev/null +++ b/tests/__data__/expected/.gh-pages/regions/wafr.m3u @@ -0,0 +1 @@ +#EXTM3U x-tvg-url="" diff --git a/tests/__data__/expected/logs/generators/categories.log b/tests/__data__/expected/logs/generators/categories.log index af68b09a9..9e170e51c 100644 --- a/tests/__data__/expected/logs/generators/categories.log +++ b/tests/__data__/expected/logs/generators/categories.log @@ -26,4 +26,4 @@ {"filepath":"categories/travel.m3u","count":0} {"filepath":"categories/weather.m3u","count":1} {"filepath":"categories/xxx.m3u","count":1} -{"filepath":"categories/undefined.m3u","count":3} \ No newline at end of file +{"filepath":"categories/undefined.m3u","count":4} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/countries.log b/tests/__data__/expected/logs/generators/countries.log index 9d56d14b6..c2b3b1676 100644 --- a/tests/__data__/expected/logs/generators/countries.log +++ b/tests/__data__/expected/logs/generators/countries.log @@ -98,7 +98,7 @@ {"filepath":"countries/hk.m3u","count":1} {"filepath":"countries/hu.m3u","count":1} {"filepath":"countries/is.m3u","count":1} -{"filepath":"countries/in.m3u","count":1} +{"filepath":"countries/in.m3u","count":2} {"filepath":"countries/id.m3u","count":1} {"filepath":"countries/ir.m3u","count":1} {"filepath":"countries/iq.m3u","count":1} @@ -234,7 +234,7 @@ {"filepath":"countries/ug.m3u","count":1} {"filepath":"countries/ua.m3u","count":1} {"filepath":"countries/ae.m3u","count":1} -{"filepath":"countries/uk.m3u","count":1} +{"filepath":"countries/uk.m3u","count":2} {"filepath":"countries/us.m3u","count":1} {"filepath":"countries/uy.m3u","count":1} {"filepath":"countries/uz.m3u","count":1} @@ -248,4 +248,4 @@ {"filepath":"countries/zm.m3u","count":1} {"filepath":"countries/zw.m3u","count":1} {"filepath":"countries/ax.m3u","count":1} -{"filepath":"countries/undefined.m3u","count":2} \ No newline at end of file +{"filepath":"countries/undefined.m3u","count":1} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_category_m3u.log b/tests/__data__/expected/logs/generators/index_category_m3u.log new file mode 100644 index 000000000..fa8ba62b8 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_category_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.category.m3u","count":8} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_country_m3u.log b/tests/__data__/expected/logs/generators/index_country_m3u.log new file mode 100644 index 000000000..11d20bf36 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_country_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.country.m3u","count":256} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_language_m3u.log b/tests/__data__/expected/logs/generators/index_language_m3u.log new file mode 100644 index 000000000..c3d549c79 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_language_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.language.m3u","count":7} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_m3u.log b/tests/__data__/expected/logs/generators/index_m3u.log new file mode 100644 index 000000000..eb39be430 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.m3u","count":7} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_nsfw_m3u.log b/tests/__data__/expected/logs/generators/index_nsfw_m3u.log new file mode 100644 index 000000000..c44134e77 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_nsfw_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.nsfw.m3u","count":8} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/index_region_m3u.log b/tests/__data__/expected/logs/generators/index_region_m3u.log new file mode 100644 index 000000000..6b5c533f9 --- /dev/null +++ b/tests/__data__/expected/logs/generators/index_region_m3u.log @@ -0,0 +1 @@ +{"filepath":"index.region.m3u","count":21} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/languages.log b/tests/__data__/expected/logs/generators/languages.log index a11820504..2ad6ba59e 100644 --- a/tests/__data__/expected/logs/generators/languages.log +++ b/tests/__data__/expected/logs/generators/languages.log @@ -1,5 +1,4 @@ -{"filepath":"languages/cat.m3u","count":1} {"filepath":"languages/eng.m3u","count":1} {"filepath":"languages/fra.m3u","count":1} {"filepath":"languages/rus.m3u","count":1} -{"filepath":"languages/undefined.m3u","count":2} \ No newline at end of file +{"filepath":"languages/undefined.m3u","count":4} \ No newline at end of file diff --git a/tests/__data__/expected/logs/generators/regions.log b/tests/__data__/expected/logs/generators/regions.log index ddf9139e0..55cc847a0 100644 --- a/tests/__data__/expected/logs/generators/regions.log +++ b/tests/__data__/expected/logs/generators/regions.log @@ -1,13 +1,13 @@ {"filepath":"regions/afr.m3u","count":0} {"filepath":"regions/amer.m3u","count":1} {"filepath":"regions/arab.m3u","count":0} -{"filepath":"regions/asia.m3u","count":1} -{"filepath":"regions/apac.m3u","count":0} +{"filepath":"regions/asia.m3u","count":2} +{"filepath":"regions/apac.m3u","count":1} {"filepath":"regions/carib.m3u","count":0} {"filepath":"regions/cas.m3u","count":0} {"filepath":"regions/cis.m3u","count":1} -{"filepath":"regions/eur.m3u","count":2} -{"filepath":"regions/emea.m3u","count":2} +{"filepath":"regions/eur.m3u","count":3} +{"filepath":"regions/emea.m3u","count":3} {"filepath":"regions/hispam.m3u","count":0} {"filepath":"regions/latam.m3u","count":0} {"filepath":"regions/lac.m3u","count":0} @@ -18,8 +18,8 @@ {"filepath":"regions/noram.m3u","count":1} {"filepath":"regions/nam.m3u","count":1} {"filepath":"regions/oce.m3u","count":0} -{"filepath":"regions/sas.m3u","count":0} +{"filepath":"regions/sas.m3u","count":1} {"filepath":"regions/ssa.m3u","count":0} {"filepath":"regions/wafr.m3u","count":0} -{"filepath":"regions/int.m3u","count":4} -{"filepath":"regions/undefined.m3u","count":2} \ No newline at end of file +{"filepath":"regions/int.m3u","count":6} +{"filepath":"regions/undefined.m3u","count":1} \ No newline at end of file From c03095f7627913295e5031e283d9d1a2651190c5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 11 Feb 2022 21:07:16 +0300 Subject: [PATCH 058/157] Create subfolders for commands --- .github/workflows/auto-update.yml | 40 ++-- package.json | 7 +- scripts/.gitignore | 3 +- scripts/commands/.gitignore | 1 - scripts/commands/cleanup-database.js | 25 --- scripts/commands/create-database.js | 82 -------- scripts/commands/create-matrix.js | 16 -- .../generate.js} | 2 +- .../update.js} | 6 +- scripts/commands/{ => playlist}/validate.js | 2 +- .../{update-readme.js => readme/update.js} | 4 +- scripts/commands/save-results.js | 176 ------------------ .../{load-cluster.js => stream/load.js} | 4 +- .../load}/cluster_1.log | 0 .../load}/cluster_1.log | 0 tests/commands/cleanup-database.test.js | 37 ---- tests/commands/create-database.test.js | 47 ----- tests/commands/create-matrix.test.js | 16 -- .../generate.test.js} | 18 +- .../update.test.js} | 9 +- .../commands/{ => playlist}/validate.test.js | 11 +- .../update.test.js} | 4 +- tests/commands/save-results.test.js | 35 ---- .../load.test.js} | 8 +- 24 files changed, 60 insertions(+), 493 deletions(-) delete mode 100644 scripts/commands/.gitignore delete mode 100644 scripts/commands/cleanup-database.js delete mode 100644 scripts/commands/create-database.js delete mode 100644 scripts/commands/create-matrix.js rename scripts/commands/{generate-playlists.js => playlist/generate.js} (97%) rename scripts/commands/{update-playlists.js => playlist/update.js} (82%) rename scripts/commands/{ => playlist}/validate.js (96%) rename scripts/commands/{update-readme.js => readme/update.js} (96%) delete mode 100644 scripts/commands/save-results.js rename scripts/commands/{load-cluster.js => stream/load.js} (94%) rename tests/__data__/expected/logs/{load-cluster => stream/load}/cluster_1.log (100%) rename tests/__data__/input/logs/{load-cluster => stream/load}/cluster_1.log (100%) delete mode 100644 tests/commands/cleanup-database.test.js delete mode 100644 tests/commands/create-database.test.js delete mode 100644 tests/commands/create-matrix.test.js rename tests/commands/{generate-playlists.test.js => playlist/generate.test.js} (79%) rename tests/commands/{update-playlists.test.js => playlist/update.test.js} (83%) rename tests/commands/{ => playlist}/validate.test.js (70%) rename tests/commands/{update-readme.test.js => readme/update.test.js} (90%) delete mode 100644 tests/commands/save-results.test.js rename tests/commands/{load-cluster.test.js => stream/load.test.js} (72%) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 89dda0bb4..0dff5b7ea 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -8,7 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Download channels from API + - uses: actions/setup-node@v2 + if: ${{ !env.ACT }} + with: + node-version: '14' + cache: 'npm' + - name: Download data from API run: | mkdir -p scripts/data curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json @@ -17,23 +22,18 @@ jobs: curl -L -o scripts/data/languages.json https://iptv-org.github.io/api/languages.json curl -L -o scripts/data/regions.json https://iptv-org.github.io/api/regions.json curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.json - - uses: actions/setup-node@v2 - if: ${{ !env.ACT }} + - uses: actions/upload-artifact@v2 with: - node-version: '14' - cache: 'npm' + name: data + path: scripts/data - run: npm install - - run: node scripts/commands/create-database.js - - run: node scripts/commands/create-matrix.js + - run: node scripts/commands/database/create.js + - run: node scripts/commands/database/matrix.js id: create-matrix - uses: actions/upload-artifact@v2 with: name: database path: scripts/database - - uses: actions/upload-artifact@v2 - with: - name: data - path: scripts/data outputs: matrix: ${{ steps.create-matrix.outputs.matrix }} load: @@ -57,7 +57,7 @@ jobs: with: node-version: '14' - run: npm install - - run: node scripts/commands/load-cluster.js --cluster-id=${{ matrix.cluster_id }} + - run: node scripts/commands/stream/load.js --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 with: name: logs @@ -73,6 +73,10 @@ jobs: - run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' - run: git checkout -b ${{ steps.create-branch-name.outputs.branch_name }} - run: curl -L -o scripts/data/codes.json https://iptv-org.github.io/epg/codes.json + - uses: actions/setup-node@v2 + if: ${{ !env.ACT }} + with: + node-version: '14' - uses: actions/download-artifact@v2 with: name: database @@ -85,25 +89,21 @@ jobs: with: name: logs path: scripts/logs - - uses: actions/setup-node@v2 - if: ${{ !env.ACT }} - with: - node-version: '14' - run: npm install - - run: node scripts/commands/save-results.js + - run: node scripts/commands/database/update.js - uses: actions/upload-artifact@v2 with: name: database path: scripts/database - - run: node scripts/commands/update-playlists.js + - run: node scripts/commands/playlist/update.js - run: git add channels/* - run: git commit -m "[Bot] Update playlists" - - run: node scripts/commands/generate-playlists.js + - run: node scripts/commands/playlist/generate.js - uses: actions/upload-artifact@v2 with: name: logs path: scripts/logs - - run: node scripts/commands/update-readme.js + - run: node scripts/commands/readme/update.js - run: git add README.md - run: git commit -m "[Bot] Update README.md" - run: git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} diff --git a/package.json b/package.json index 65eb7539f..665a22030 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,12 @@ "scripts": { "validate": "node scripts/commands/validate.js", "lint": "npx m3u-linter -c m3u-linter.json", - "test": "jest --runInBand" + "test": "jest --runInBand", + "test:commands": "jest --runInBand -- commands", + "test:commands:database": "jest --runInBand -- database", + "test:commands:playlist": "jest --runInBand -- playlist", + "test:commands:readme": "jest --runInBand -- readme", + "test:commands:stream": "jest --runInBand -- stream" }, "jest": { "testRegex": "tests/(.*?/)?.*test.js$", diff --git a/scripts/.gitignore b/scripts/.gitignore index 001a2070d..5292519a2 100644 --- a/scripts/.gitignore +++ b/scripts/.gitignore @@ -1,2 +1 @@ -logs/ -channels.db \ No newline at end of file +logs/ \ No newline at end of file diff --git a/scripts/commands/.gitignore b/scripts/commands/.gitignore deleted file mode 100644 index 2d59da298..000000000 --- a/scripts/commands/.gitignore +++ /dev/null @@ -1 +0,0 @@ -export.js \ No newline at end of file diff --git a/scripts/commands/cleanup-database.js b/scripts/commands/cleanup-database.js deleted file mode 100644 index 2bc24f0d5..000000000 --- a/scripts/commands/cleanup-database.js +++ /dev/null @@ -1,25 +0,0 @@ -const { db, logger } = require('../core') - -async function main() { - logger.info(`loading streams...`) - await db.streams.load() - let streams = await db.streams.find({}) - - logger.info(`removing broken links...`) - let removed = 0 - const buffer = {} - for (const stream of streams) { - const duplicate = buffer[stream.channel_id] - if (duplicate && ['offline', 'timeout'].includes(stream.status.code)) { - await db.streams.remove({ _id: stream._id }) - removed++ - } else { - buffer[stream.channel_id] = stream - } - } - db.streams.compact() - - logger.info(`removed ${removed} links`) -} - -main() diff --git a/scripts/commands/create-database.js b/scripts/commands/create-database.js deleted file mode 100644 index 5d170ef05..000000000 --- a/scripts/commands/create-database.js +++ /dev/null @@ -1,82 +0,0 @@ -const { db, file, parser, store, logger, id } = require('../core') -const { program } = require('commander') -const _ = require('lodash') - -const options = program - .option( - '--max-clusters ', - 'Set maximum number of clusters', - parser.parseNumber, - 256 - ) - .option('--input-dir ', 'Set path to input directory', 'channels') - .parse(process.argv) - .opts() - -async function main() { - logger.info('starting...') - logger.info(`number of clusters: ${options.maxClusters}`) - - await saveToDatabase(await findStreams()) - - logger.info('done') -} - -main() - -async function findStreams() { - logger.info(`looking for streams...`) - - await db.streams.load() - const files = await file.list(`${options.inputDir}/**/*.m3u`) - const streams = [] - for (const filepath of files) { - const items = await parser.parsePlaylist(filepath) - for (const item of items) { - item.filepath = filepath - streams.push(item) - } - } - logger.info(`found ${streams.length} streams`) - - return streams -} - -async function saveToDatabase(streams = []) { - logger.info('saving to the database...') - - await db.streams.reset() - const chunks = split(_.shuffle(streams), options.maxClusters) - for (const [i, chunk] of chunks.entries()) { - for (const item of chunk) { - const stream = store.create() - stream.set('channel_id', { channel_id: item.tvg.id }) - stream.set('channel_name', { title: item.name }) - stream.set('filepath', { filepath: item.filepath }) - stream.set('resolution', { title: item.name }) - stream.set('status', { title: item.name }) - stream.set('url', { url: item.url }) - stream.set('http', { http: item.http }) - stream.set('is_broken', { status: stream.get('status') }) - stream.set('updated', { updated: false }) - stream.set('cluster_id', { cluster_id: i + 1 }) - - if (!stream.get('channel_id')) { - const channel_id = id.generate(item.name, item.filepath) - - stream.set('channel_id', { channel_id }) - stream.set('updated', { updated: true }) - } - - await db.streams.insert(stream.data()) - } - } -} - -function split(arr, n) { - let result = [] - for (let i = n; i > 0; i--) { - result.push(arr.splice(0, Math.ceil(arr.length / i))) - } - return result -} diff --git a/scripts/commands/create-matrix.js b/scripts/commands/create-matrix.js deleted file mode 100644 index 486111db6..000000000 --- a/scripts/commands/create-matrix.js +++ /dev/null @@ -1,16 +0,0 @@ -const { logger, db } = require('../core') - -async function main() { - await db.streams.load() - const docs = await db.streams.find({}).sort({ cluster_id: 1 }) - const cluster_id = docs.reduce((acc, curr) => { - if (!acc.includes(curr.cluster_id)) acc.push(curr.cluster_id) - return acc - }, []) - - const matrix = { cluster_id } - const output = `::set-output name=matrix::${JSON.stringify(matrix)}` - logger.info(output) -} - -main() diff --git a/scripts/commands/generate-playlists.js b/scripts/commands/playlist/generate.js similarity index 97% rename from scripts/commands/generate-playlists.js rename to scripts/commands/playlist/generate.js index 2d9da565e..7cb1e3441 100644 --- a/scripts/commands/generate-playlists.js +++ b/scripts/commands/playlist/generate.js @@ -1,4 +1,4 @@ -const { db, generator, api, logger, file } = require('../core') +const { db, generator, api, logger, file } = require('../../core') const _ = require('lodash') async function main() { diff --git a/scripts/commands/update-playlists.js b/scripts/commands/playlist/update.js similarity index 82% rename from scripts/commands/update-playlists.js rename to scripts/commands/playlist/update.js index 0196b4a76..d613eb5f5 100644 --- a/scripts/commands/update-playlists.js +++ b/scripts/commands/playlist/update.js @@ -1,7 +1,7 @@ -const _ = require('lodash') +const { create: createPlaylist } = require('../../core/playlist') +const { db, logger, file } = require('../../core') const { orderBy } = require('natural-orderby') -const { create: createPlaylist } = require('../core/playlist') -const { db, logger, file } = require('../core') +const _ = require('lodash') async function main() { await db.streams.load() diff --git a/scripts/commands/validate.js b/scripts/commands/playlist/validate.js similarity index 96% rename from scripts/commands/validate.js rename to scripts/commands/playlist/validate.js index 053f67068..825ea969a 100644 --- a/scripts/commands/validate.js +++ b/scripts/commands/playlist/validate.js @@ -1,4 +1,4 @@ -const { file, logger, api, parser, blocklist } = require('../core') +const { file, logger, api, parser, blocklist } = require('../../core') const { program } = require('commander') const chalk = require('chalk') diff --git a/scripts/commands/update-readme.js b/scripts/commands/readme/update.js similarity index 96% rename from scripts/commands/update-readme.js rename to scripts/commands/readme/update.js index a3560cac1..b197c5f9b 100644 --- a/scripts/commands/update-readme.js +++ b/scripts/commands/readme/update.js @@ -1,5 +1,5 @@ -const { file, markdown, parser, logger, api } = require('../core') -const { create: createTable } = require('../core/table') +const { file, markdown, parser, logger, api } = require('../../core') +const { create: createTable } = require('../../core/table') const { program } = require('commander') const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' diff --git a/scripts/commands/save-results.js b/scripts/commands/save-results.js deleted file mode 100644 index 93b2be85c..000000000 --- a/scripts/commands/save-results.js +++ /dev/null @@ -1,176 +0,0 @@ -const _ = require('lodash') -const statuses = require('../data/statuses') -const { db, store, parser, file, logger } = require('../core') - -const items = [] - -const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/load-cluster' - -async function main() { - let streams = await loadStreams() - const results = await loadResults() - const origins = await findOrigins(results) - streams = await updateStreams(streams, results, origins) - - await updateDatabase(streams) -} - -main() - -async function loadStreams() { - logger.info('loading streams...') - - await db.streams.load() - const streams = await db.streams.find({}) - - logger.info(`found ${streams.length} streams`) - - return streams -} - -async function loadResults() { - logger.info('loading results from logs...') - - const results = {} - const files = await file.list(`${LOGS_DIR}/cluster_*.log`) - for (const filepath of files) { - const parsed = await parser.parseLogs(filepath) - for (const item of parsed) { - results[item._id] = item - } - } - - logger.info(`found ${Object.values(results).length} results`) - - return results -} - -async function findOrigins(results = {}) { - logger.info('searching for stream origins...') - - const origins = {} - for (const { error, requests } of Object.values(results)) { - if (error || !Array.isArray(requests) || !requests.length) continue - - let origin = requests.shift() - origin = new URL(origin.url) - for (const request of requests) { - const curr = new URL(request.url) - const key = curr.href.replace(/(^\w+:|^)/, '') - if (!origins[key] && curr.host === origin.host) { - origins[key] = origin.href - } - } - } - - logger.info(`found ${_.uniq(Object.values(origins)).length} origins`) - - return origins -} - -async function updateStreams(items = [], results = {}, origins = {}) { - logger.info('updating streams...') - - let updated = 0 - const output = [] - for (const item of items) { - const stream = store.create(item) - const result = results[item._id] - - if (result) { - const { error, streams, requests } = result - const resolution = parseResolution(streams) - const origin = findOrigin(requests, origins) - let status = parseStatus(error) - - if (status) { - const prevStatus = item.status - if (prevStatus.code === 'not_247') - // not_247 -> * = not_247 - status = item.status - else if (prevStatus.code === 'geo_blocked') - // geo_blocked -> * = geo_blocked - status = item.status - else if (status.code === 'geo_blocked') - // * -> geo_blocked = * - status = item.status - else if (prevStatus.code === 'offline' && status.code === 'online') - // offline -> online = not_247 - status = statuses['not_247'] - - stream.set('status', { status }) - stream.set('is_broken', { status: stream.get('status') }) - } - - if (resolution) { - stream.set('resolution', { resolution }) - } - - if (origin) { - stream.set('url', { url: origin }) - } - } - - if (stream.changed) { - stream.set('updated', true) - output.push(stream.data()) - updated++ - } - } - - logger.info(`updated ${updated} streams`) - - return output -} - -async function updateDatabase(streams = []) { - logger.info('updating database...') - - for (const stream of streams) { - await db.streams.update({ _id: stream._id }, stream) - } - db.streams.compact() - - logger.info('done') -} - -function findOrigin(requests = [], origins = {}) { - if (origins && Array.isArray(requests)) { - requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) - for (const url of requests) { - if (origins[url]) { - return origins[url] - } - } - } - - return null -} - -function parseResolution(streams) { - const resolution = streams - .filter(s => s.codec_type === 'video') - .reduce( - (acc, curr) => { - if (curr.height > acc.height) return { width: curr.width, height: curr.height } - return acc - }, - { width: 0, height: 0 } - ) - - if (resolution.width > 0 && resolution.height > 0) return resolution - return null -} - -function parseStatus(error) { - if (error) { - if (error.includes('timed out')) { - return statuses['timeout'] - } else if (error.includes('403')) { - return statuses['geo_blocked'] - } - return statuses['offline'] - } - - return statuses['online'] -} diff --git a/scripts/commands/load-cluster.js b/scripts/commands/stream/load.js similarity index 94% rename from scripts/commands/load-cluster.js rename to scripts/commands/stream/load.js index 57629c4f1..de15bde44 100644 --- a/scripts/commands/load-cluster.js +++ b/scripts/commands/stream/load.js @@ -1,5 +1,5 @@ +const { db, logger, timer, checker, store, file, parser } = require('../../core') const { program } = require('commander') -const { db, logger, timer, checker, store, file, parser } = require('../core') const options = program .requiredOption('-c, --cluster-id ', 'The ID of cluster to load', parser.parseNumber) @@ -15,7 +15,7 @@ const config = { debug: options.debug } -const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/load-cluster' +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/stream/load' async function main() { logger.info('starting...') diff --git a/tests/__data__/expected/logs/load-cluster/cluster_1.log b/tests/__data__/expected/logs/stream/load/cluster_1.log similarity index 100% rename from tests/__data__/expected/logs/load-cluster/cluster_1.log rename to tests/__data__/expected/logs/stream/load/cluster_1.log diff --git a/tests/__data__/input/logs/load-cluster/cluster_1.log b/tests/__data__/input/logs/stream/load/cluster_1.log similarity index 100% rename from tests/__data__/input/logs/load-cluster/cluster_1.log rename to tests/__data__/input/logs/stream/load/cluster_1.log diff --git a/tests/commands/cleanup-database.test.js b/tests/commands/cleanup-database.test.js deleted file mode 100644 index 7bc6ff5e4..000000000 --- a/tests/commands/cleanup-database.test.js +++ /dev/null @@ -1,37 +0,0 @@ -const fs = require('fs-extra') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync( - 'tests/__data__/input/database/cleanup-database.streams.db', - 'tests/__data__/output/streams.db' - ) - - const stdout = execSync( - 'DB_DIR=tests/__data__/output node scripts/commands/cleanup-database.js', - { - encoding: 'utf8' - } - ) -}) - -it('can remove broken links from database', () => { - expect(content('tests/__data__/output/streams.db')).toEqual( - content('tests/__data__/expected/database/cleanup-database.streams.db') - ) -}) - -function content(filepath) { - const data = fs.readFileSync(path.resolve(filepath), { - encoding: 'utf8' - }) - - return data - .split('\n') - .filter(l => l) - .map(l => { - return JSON.parse(l) - }) -} diff --git a/tests/commands/create-database.test.js b/tests/commands/create-database.test.js deleted file mode 100644 index c5c1dca2c..000000000 --- a/tests/commands/create-database.test.js +++ /dev/null @@ -1,47 +0,0 @@ -const fs = require('fs-extra') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.emptyDirSync('tests/__data__/output') - - const stdout = execSync( - 'DB_DIR=tests/__data__/output/database node scripts/commands/create-database.js --input-dir=tests/__data__/input/channels --max-clusters=1', - { encoding: 'utf8' } - ) -}) - -it('can create database', () => { - let output = content('tests/__data__/output/database/streams.db') - let expected = content('tests/__data__/expected/database/streams.db') - - output = output.map(i => { - i._id = null - return i - }) - expected = expected.map(i => { - i._id = null - return i - }) - - expect(output).toEqual( - expect.arrayContaining([ - expect.objectContaining(expected[0]), - expect.objectContaining(expected[1]), - expect.objectContaining(expected[2]) - ]) - ) -}) - -function content(filepath) { - const data = fs.readFileSync(path.resolve(filepath), { - encoding: 'utf8' - }) - - return data - .split('\n') - .filter(l => l) - .map(l => { - return JSON.parse(l) - }) -} diff --git a/tests/commands/create-matrix.test.js b/tests/commands/create-matrix.test.js deleted file mode 100644 index 736e633a8..000000000 --- a/tests/commands/create-matrix.test.js +++ /dev/null @@ -1,16 +0,0 @@ -const fs = require('fs-extra') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.emptyDirSync('tests/__data__/output') - - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') -}) - -it('can create valid matrix', () => { - const result = execSync('DB_DIR=tests/__data__/output node scripts/commands/create-matrix.js', { - encoding: 'utf8' - }) - expect(result).toBe('::set-output name=matrix::{"cluster_id":[1,3]}\n') -}) diff --git a/tests/commands/generate-playlists.test.js b/tests/commands/playlist/generate.test.js similarity index 79% rename from tests/commands/generate-playlists.test.js rename to tests/commands/playlist/generate.test.js index b322a5750..055b84e0c 100644 --- a/tests/commands/generate-playlists.test.js +++ b/tests/commands/playlist/generate.test.js @@ -1,37 +1,35 @@ +const { execSync } = require('child_process') const fs = require('fs-extra') const path = require('path') const glob = require('glob') -const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( - 'tests/__data__/input/database/generate-playlists.streams.db', + 'tests/__data__/input/database/playlist-generate.streams.db', 'tests/__data__/output/streams.db' ) const stdout = execSync( - 'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/generate-playlists.js', + 'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/playlist/generate.js', { encoding: 'utf8' } ) }) -it('can generate playlists', () => { - const files = glob +it('can generate playlists and logs', () => { + const playlists = glob .sync('tests/__data__/expected/.gh-pages/**/*.m3u') .map(f => f.replace('tests/__data__/expected/', '')) - files.forEach(filepath => { + playlists.forEach(filepath => { expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`)) }) -}) -it('can generate logs', () => { - const files = glob + const logs = glob .sync('tests/__data__/expected/logs/generators/*.log') .map(f => f.replace('tests/__data__/expected/', '')) - files.forEach(filepath => { + logs.forEach(filepath => { expect(content(`output/${filepath}`), filepath).toBe(content(`expected/${filepath}`)) }) }) diff --git a/tests/commands/update-playlists.test.js b/tests/commands/playlist/update.test.js similarity index 83% rename from tests/commands/update-playlists.test.js rename to tests/commands/playlist/update.test.js index dbf8db085..3ed52ad64 100644 --- a/tests/commands/update-playlists.test.js +++ b/tests/commands/playlist/update.test.js @@ -7,12 +7,9 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') - const stdout = execSync( - 'DB_DIR=tests/__data__/output node scripts/commands/update-playlists.js', - { - encoding: 'utf8' - } - ) + const stdout = execSync('DB_DIR=tests/__data__/output node scripts/commands/playlist/update.js', { + encoding: 'utf8' + }) }) it('can update playlists', () => { diff --git a/tests/commands/validate.test.js b/tests/commands/playlist/validate.test.js similarity index 70% rename from tests/commands/validate.test.js rename to tests/commands/playlist/validate.test.js index e90acdb65..103a18363 100644 --- a/tests/commands/validate.test.js +++ b/tests/commands/playlist/validate.test.js @@ -2,9 +2,12 @@ const { execSync } = require('child_process') it('show error if channel name in the blocklist', () => { try { - execSync('node scripts/commands/validate.js tests/__data__/input/channels/us_blocked.m3u', { - encoding: 'utf8' - }) + execSync( + 'DATA_DIR=tests/__data__/input/data node scripts/commands/playlist/validate.js tests/__data__/input/channels/us_blocked.m3u', + { + encoding: 'utf8' + } + ) } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( @@ -15,7 +18,7 @@ it('show error if channel name in the blocklist', () => { it('show warning if channel has wrong id', () => { const stdout = execSync( - 'node scripts/commands/validate.js tests/__data__/input/channels/wrong_id.m3u', + 'DATA_DIR=tests/__data__/input/data node scripts/commands/playlist/validate.js tests/__data__/input/channels/wrong_id.m3u', { encoding: 'utf8' } diff --git a/tests/commands/update-readme.test.js b/tests/commands/readme/update.test.js similarity index 90% rename from tests/commands/update-readme.test.js rename to tests/commands/readme/update.test.js index 029e45fc7..0124e8e7f 100644 --- a/tests/commands/update-readme.test.js +++ b/tests/commands/readme/update.test.js @@ -1,12 +1,12 @@ +const { execSync } = require('child_process') const fs = require('fs-extra') const path = require('path') -const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') const stdout = execSync( - 'DATA_DIR=tests/__data__/input/data LOGS_DIR=tests/__data__/input/logs/generators node scripts/commands/update-readme.js --config=tests/__data__/input/_readme.json', + 'DATA_DIR=tests/__data__/input/data LOGS_DIR=tests/__data__/input/logs/generators node scripts/commands/readme/update.js --config=tests/__data__/input/_readme.json', { encoding: 'utf8' } ) }) diff --git a/tests/commands/save-results.test.js b/tests/commands/save-results.test.js deleted file mode 100644 index b5e374452..000000000 --- a/tests/commands/save-results.test.js +++ /dev/null @@ -1,35 +0,0 @@ -const fs = require('fs-extra') -const path = require('path') -const { execSync } = require('child_process') - -beforeEach(() => { - fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync( - 'tests/__data__/input/database/save-results.streams.db', - 'tests/__data__/output/streams.db' - ) - - const stdout = execSync( - 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/input/logs/load-cluster node scripts/commands/save-results.js', - { encoding: 'utf8' } - ) -}) - -it('can save results', () => { - expect(content('tests/__data__/output/streams.db')).toEqual( - content('tests/__data__/expected/database/save-results.streams.db') - ) -}) - -function content(filepath) { - const data = fs.readFileSync(path.resolve(filepath), { - encoding: 'utf8' - }) - - return data - .split('\n') - .filter(l => l) - .map(l => { - return JSON.parse(l) - }) -} diff --git a/tests/commands/load-cluster.test.js b/tests/commands/stream/load.test.js similarity index 72% rename from tests/commands/load-cluster.test.js rename to tests/commands/stream/load.test.js index be92dfa42..4c08b01a9 100644 --- a/tests/commands/load-cluster.test.js +++ b/tests/commands/stream/load.test.js @@ -1,20 +1,20 @@ +const { execSync } = require('child_process') const fs = require('fs-extra') const path = require('path') -const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') const stdout = execSync( - 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/load-cluster node scripts/commands/load-cluster.js --cluster-id=1 --timeout=1', + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/stream/load node scripts/commands/stream/load.js --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) it('return results', () => { - expect(content('tests/__data__/output/logs/load-cluster/cluster_1.log')).toEqual( - content('tests/__data__/expected/logs/load-cluster/cluster_1.log') + expect(content('tests/__data__/output/logs/stream/load/cluster_1.log')).toEqual( + content('tests/__data__/expected/logs/stream/load/cluster_1.log') ) }) From 97b9421cb1dd2c7a40c15712720f63b27b1280c6 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 01:58:11 +0300 Subject: [PATCH 059/157] Rename to cluster/load.js --- scripts/commands/{stream => cluster}/load.js | 2 +- .../expected/logs/{stream => cluster}/load/cluster_1.log | 0 .../input/logs/{stream => cluster}/load/cluster_1.log | 0 tests/commands/{stream => cluster}/load.test.js | 6 +++--- 4 files changed, 4 insertions(+), 4 deletions(-) rename scripts/commands/{stream => cluster}/load.js (95%) rename tests/__data__/expected/logs/{stream => cluster}/load/cluster_1.log (100%) rename tests/__data__/input/logs/{stream => cluster}/load/cluster_1.log (100%) rename tests/commands/{stream => cluster}/load.test.js (72%) diff --git a/scripts/commands/stream/load.js b/scripts/commands/cluster/load.js similarity index 95% rename from scripts/commands/stream/load.js rename to scripts/commands/cluster/load.js index de15bde44..9c58905b7 100644 --- a/scripts/commands/stream/load.js +++ b/scripts/commands/cluster/load.js @@ -15,7 +15,7 @@ const config = { debug: options.debug } -const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/stream/load' +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/cluster/load' async function main() { logger.info('starting...') diff --git a/tests/__data__/expected/logs/stream/load/cluster_1.log b/tests/__data__/expected/logs/cluster/load/cluster_1.log similarity index 100% rename from tests/__data__/expected/logs/stream/load/cluster_1.log rename to tests/__data__/expected/logs/cluster/load/cluster_1.log diff --git a/tests/__data__/input/logs/stream/load/cluster_1.log b/tests/__data__/input/logs/cluster/load/cluster_1.log similarity index 100% rename from tests/__data__/input/logs/stream/load/cluster_1.log rename to tests/__data__/input/logs/cluster/load/cluster_1.log diff --git a/tests/commands/stream/load.test.js b/tests/commands/cluster/load.test.js similarity index 72% rename from tests/commands/stream/load.test.js rename to tests/commands/cluster/load.test.js index 4c08b01a9..fa94b07b6 100644 --- a/tests/commands/stream/load.test.js +++ b/tests/commands/cluster/load.test.js @@ -7,14 +7,14 @@ beforeEach(() => { fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') const stdout = execSync( - 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/stream/load node scripts/commands/stream/load.js --cluster-id=1 --timeout=1', + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/cluster/load node scripts/commands/cluster/load.js --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) it('return results', () => { - expect(content('tests/__data__/output/logs/stream/load/cluster_1.log')).toEqual( - content('tests/__data__/expected/logs/stream/load/cluster_1.log') + expect(content('tests/__data__/output/logs/cluster/load/cluster_1.log')).toEqual( + content('tests/__data__/expected/logs/cluster/load/cluster_1.log') ) }) From 83f690b1578f6cf52d6742204421d9644596ca4f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 01:58:14 +0300 Subject: [PATCH 060/157] Update package.json --- package.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 665a22030..9efcfb825 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,21 @@ { "name": "iptv", "scripts": { - "validate": "node scripts/commands/validate.js", - "lint": "npx m3u-linter -c m3u-linter.json", + "db:create": "node scripts/commands/database/create.js", + "db:matrix": "node scripts/commands/database/matrix.js", + "db:update": "node scripts/commands/database/update.js", + "cluster:load": "node scripts/commands/cluster/load.js", + "playlist:validate": "node scripts/commands/playlist/validate.js", + "playlist:generate": "node scripts/commands/playlist/generate.js", + "playlist:update": "node scripts/commands/playlist/update.js", + "playlist:lint": "npx m3u-linter -c m3u-linter.json", + "readme:update": "node scripts/commands/readme/update.js", "test": "jest --runInBand", "test:commands": "jest --runInBand -- commands", "test:commands:database": "jest --runInBand -- database", "test:commands:playlist": "jest --runInBand -- playlist", - "test:commands:readme": "jest --runInBand -- readme", - "test:commands:stream": "jest --runInBand -- stream" + "test:commands:stream": "jest --runInBand -- stream", + "test:commands:readme": "jest --runInBand -- readme" }, "jest": { "testRegex": "tests/(.*?/)?.*test.js$", From 0d1ab5dfe9a66252f0d948096ee0228d88412060 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 02:13:28 +0300 Subject: [PATCH 061/157] Update group_title.js --- scripts/store/getters/group_title.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/store/getters/group_title.js b/scripts/store/getters/group_title.js index 78c0b944f..38592828c 100644 --- a/scripts/store/getters/group_title.js +++ b/scripts/store/getters/group_title.js @@ -3,6 +3,7 @@ module.exports = function () { if (this.categories.length) { return this.categories + .filter(c => c) .map(category => category.name) .sort() .join(';') From 081fcac929a3de26b2e06a6dcfee7d85b9d1b483 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 03:11:55 +0300 Subject: [PATCH 062/157] Update playlist/generate.js --- scripts/commands/playlist/generate.js | 7 + scripts/core/generator.js | 10 +- .../expected/.gh-pages/categories/general.m3u | 2 +- .../expected/.gh-pages/categories/news.m3u | 2 +- .../expected/.gh-pages/countries/ad.m3u | 2 +- .../expected/.gh-pages/countries/ca.m3u | 2 +- .../expected/.gh-pages/countries/in.m3u | 2 +- .../expected/.gh-pages/countries/ru.m3u | 2 +- .../expected/.gh-pages/countries/uk.m3u | 2 +- .../expected/.gh-pages/index.category.m3u | 4 +- .../expected/.gh-pages/index.country.m3u | 500 +++++++++--------- .../expected/.gh-pages/index.language.m3u | 2 +- tests/__data__/expected/.gh-pages/index.m3u | 2 +- .../expected/.gh-pages/index.nsfw.m3u | 2 +- .../expected/.gh-pages/index.region.m3u | 2 +- .../expected/.gh-pages/languages/eng.m3u | 2 +- .../expected/.gh-pages/regions/int.m3u | 2 +- 17 files changed, 273 insertions(+), 274 deletions(-) diff --git a/scripts/commands/playlist/generate.js b/scripts/commands/playlist/generate.js index 7cb1e3441..71d19da9b 100644 --- a/scripts/commands/playlist/generate.js +++ b/scripts/commands/playlist/generate.js @@ -1,4 +1,5 @@ const { db, generator, api, logger, file } = require('../../core') +const { orderBy } = require('natural-orderby') const _ = require('lodash') async function main() { @@ -31,6 +32,12 @@ main() async function loadStreams() { await db.streams.load() let streams = await db.streams.find({ is_broken: false }) + streams = _.orderBy( + streams, + ['channel_name', 'status.level', 'resolution.height', 'url'], + ['asc', 'asc', 'desc', 'asc'] + ) + streams = _.uniqBy(streams, stream => stream.channel_id || _.uniqueId()) await api.channels.load() let channels = await api.channels.all() diff --git a/scripts/core/generator.js b/scripts/core/generator.js index 52893589a..77a769162 100644 --- a/scripts/core/generator.js +++ b/scripts/core/generator.js @@ -1,9 +1,7 @@ const { create: createPlaylist } = require('./playlist') +const generators = require('../generators') const logger = require('./logger') const file = require('./file') -const generators = require('../generators') -const _ = require('lodash') -const { orderBy } = require('natural-orderby') const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/generators' @@ -13,12 +11,6 @@ const generator = {} generator.generate = async function (name, streams = []) { if (typeof generators[name] === 'function') { try { - streams = orderBy( - streams, - ['channel_name', 'status.level', 'resolution.height'], - ['asc', 'asc', 'desc'] - ) - streams = _.uniqBy(streams, stream => stream.channel_id || _.uniqueId()) let output = await generators[name].bind()(streams) output = Array.isArray(output) ? output : [output] for (const type of output) { diff --git a/tests/__data__/expected/.gh-pages/categories/general.m3u b/tests/__data__/expected/.gh-pages/categories/general.m3u index 1ca910b7c..912d752cc 100644 --- a/tests/__data__/expected/.gh-pages/categories/general.m3u +++ b/tests/__data__/expected/.gh-pages/categories/general.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/news.m3u b/tests/__data__/expected/.gh-pages/categories/news.m3u index 8bbcae29c..48b2f9042 100644 --- a/tests/__data__/expected/.gh-pages/categories/news.m3u +++ b/tests/__data__/expected/.gh-pages/categories/news.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ad.m3u b/tests/__data__/expected/.gh-pages/countries/ad.m3u index 89c352d71..71705b851 100644 --- a/tests/__data__/expected/.gh-pages/countries/ad.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ad.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/countries/ca.m3u b/tests/__data__/expected/.gh-pages/countries/ca.m3u index 0b41d029c..307d134f9 100644 --- a/tests/__data__/expected/.gh-pages/countries/ca.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ca.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/in.m3u b/tests/__data__/expected/.gh-pages/countries/in.m3u index 07c5a8be9..b15751131 100644 --- a/tests/__data__/expected/.gh-pages/countries/in.m3u +++ b/tests/__data__/expected/.gh-pages/countries/in.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 1ca910b7c..912d752cc 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index 6f4ab4ca5..af67bafa9 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u index 508c94701..3ee45410d 100644 --- a/tests/__data__/expected/.gh-pages/index.category.m3u +++ b/tests/__data__/expected/.gh-pages/index.category.m3u @@ -1,9 +1,9 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u index 0a2dfa6a9..e6eca3f77 100644 --- a/tests/__data__/expected/.gh-pages/index.country.m3u +++ b/tests/__data__/expected/.gh-pages/index.country.m3u @@ -1,513 +1,513 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Algeria",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Algeria",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Andorra",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antarctica",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antarctica",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antigua and Barbuda",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antigua and Barbuda",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Argentina",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Argentina",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Armenia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Armenia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Aruba",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Aruba",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Australia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Australia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Austria",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Austria",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Azerbaijan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Azerbaijan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahamas",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahamas",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahrain",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahrain",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bangladesh",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bangladesh",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Barbados",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Barbados",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belarus",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belarus",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belgium",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belgium",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belize",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belize",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Benin",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Benin",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bermuda",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bermuda",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bhutan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bhutan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bolivia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bolivia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bonaire",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bonaire",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bosnia and Herzegovina",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bosnia and Herzegovina",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Botswana",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Botswana",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bouvet Island",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bouvet Island",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brazil",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brazil",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Indian Ocean Territory",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Indian Ocean Territory",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Virgin Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Virgin Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brunei",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brunei",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bulgaria",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bulgaria",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burkina Faso",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burkina Faso",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burundi",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burundi",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cambodia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cambodia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cameroon",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cameroon",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Canada",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Canada",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Canada",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cape Verde",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cape Verde",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cayman Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cayman Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Central African Republic",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Central African Republic",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chad",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chad",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chile",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chile",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="China",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="China",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Christmas Island",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Christmas Island",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cocos (Keeling) Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cocos (Keeling) Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Colombia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Colombia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Comoros",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Comoros",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cook Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cook Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Costa Rica",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Costa Rica",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Croatia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Croatia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cuba",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cuba",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Curacao",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Curacao",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cyprus",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cyprus",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Czech Republic",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Czech Republic",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Democratic Republic of the Congo",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Democratic Republic of the Congo",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Denmark",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Denmark",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Djibouti",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Djibouti",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominica",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominica",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominican Republic",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominican Republic",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="East Timor",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="East Timor",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ecuador",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ecuador",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Egypt",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Egypt",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="El Salvador",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="El Salvador",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Equatorial Guinea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Equatorial Guinea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Eritrea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Eritrea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Estonia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Estonia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ethiopia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ethiopia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Falkland Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Falkland Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Faroe Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Faroe Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Fiji",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Fiji",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Finland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Finland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="France",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="France",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Guiana",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Guiana",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Polynesia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Polynesia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Southern Territories",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Southern Territories",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gabon",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gabon",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gambia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gambia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Georgia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Georgia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Germany",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Germany",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ghana",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ghana",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gibraltar",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gibraltar",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greece",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greece",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greenland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greenland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Grenada",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Grenada",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guadeloupe",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guadeloupe",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guam",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guam",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guatemala",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guatemala",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guernsey",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guernsey",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea-Bissau",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea-Bissau",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guyana",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guyana",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Haiti",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Haiti",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Heard Island and McDonald Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Heard Island and McDonald Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Honduras",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Honduras",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hong Kong",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hong Kong",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hungary",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hungary",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iceland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iceland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="India",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iraq",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iraq",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ireland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ireland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Isle of Man",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Isle of Man",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Israel",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Israel",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Italy",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Italy",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ivory Coast",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ivory Coast",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jamaica",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jamaica",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Japan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Japan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jersey",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jersey",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jordan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jordan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kazakhstan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kazakhstan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kenya",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kenya",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kiribati",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kiribati",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kosovo",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kosovo",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kuwait",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kuwait",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kyrgyzstan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kyrgyzstan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Laos",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Laos",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Latvia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Latvia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lebanon",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lebanon",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lesotho",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lesotho",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liberia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liberia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Libya",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Libya",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liechtenstein",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liechtenstein",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lithuania",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lithuania",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Luxembourg",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Luxembourg",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Macao",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Macao",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Madagascar",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Madagascar",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malawi",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malawi",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malaysia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malaysia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Maldives",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Maldives",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mali",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mali",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malta",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malta",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Marshall Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Marshall Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Martinique",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Martinique",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritania",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritania",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritius",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritius",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mayotte",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mayotte",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mexico",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mexico",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Micronesia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Micronesia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Moldova",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Moldova",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Monaco",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Monaco",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mongolia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mongolia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montenegro",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montenegro",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montserrat",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montserrat",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Morocco",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Morocco",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mozambique",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mozambique",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Myanmar (Burma)",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Myanmar (Burma)",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Namibia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Namibia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nauru",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nauru",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nepal",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nepal",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Netherlands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Netherlands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Caledonia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Caledonia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Zealand",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Zealand",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nicaragua",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nicaragua",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niger",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niger",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nigeria",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nigeria",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niue",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niue",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norfolk Island",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norfolk Island",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Korea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Korea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Macedonia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Macedonia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Northern Mariana Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Northern Mariana Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norway",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norway",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Oman",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Oman",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pakistan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pakistan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palau",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palau",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palestine",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palestine",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Panama",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Panama",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Papua New Guinea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Papua New Guinea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Paraguay",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Paraguay",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Peru",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Peru",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Philippines",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Philippines",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pitcairn Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pitcairn Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Poland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Poland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Portugal",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Portugal",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Puerto Rico",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Puerto Rico",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Qatar",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Qatar",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Republic of the Congo",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Republic of the Congo",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Romania",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Romania",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Russia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Russia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russia",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Rwanda",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Rwanda",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Réunion",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Réunion",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Barthélemy",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Barthélemy",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Helena",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Helena",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Kitts and Nevis",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Kitts and Nevis",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Lucia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Lucia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Martin",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Martin",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Pierre and Miquelon",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Pierre and Miquelon",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Vincent and the Grenadines",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Vincent and the Grenadines",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Samoa",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Samoa",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="San Marino",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="San Marino",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saudi Arabia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saudi Arabia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Senegal",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Senegal",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Serbia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Serbia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Seychelles",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Seychelles",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sierra Leone",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sierra Leone",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Singapore",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Singapore",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sint Maarten",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sint Maarten",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovakia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovakia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovenia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovenia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Solomon Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Solomon Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Somalia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Somalia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Africa",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Africa",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Georgia and the South Sandwich Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Georgia and the South Sandwich Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Korea",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Korea",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Sudan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Sudan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Spain",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Spain",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sri Lanka",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sri Lanka",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sudan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sudan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Suriname",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Suriname",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Svalbard and Jan Mayen",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Svalbard and Jan Mayen",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Swaziland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Swaziland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sweden",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sweden",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Switzerland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Switzerland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Syria",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Syria",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="São Tomé and Príncipe",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="São Tomé and Príncipe",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Taiwan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Taiwan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tajikistan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tajikistan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tanzania",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tanzania",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Thailand",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Thailand",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Togo",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Togo",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tokelau",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tokelau",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tonga",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tonga",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Trinidad and Tobago",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Trinidad and Tobago",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tunisia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tunisia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkey",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkey",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkmenistan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkmenistan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turks and Caicos Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turks and Caicos Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tuvalu",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tuvalu",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Minor Outlying Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Minor Outlying Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Virgin Islands",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Virgin Islands",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uganda",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uganda",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ukraine",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ukraine",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="United Kingdom",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uruguay",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uruguay",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uzbekistan",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uzbekistan",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vanuatu",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vanuatu",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vatican City",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vatican City",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Venezuela",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Venezuela",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vietnam",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vietnam",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Wallis and Futuna",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Wallis and Futuna",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Western Sahara",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Western Sahara",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Yemen",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Yemen",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zambia",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zambia",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zimbabwe",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zimbabwe",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u index 9430c747a..6e8416a56 100644 --- a/tests/__data__/expected/.gh-pages/index.language.m3u +++ b/tests/__data__/expected/.gh-pages/index.language.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="French",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index 763b5ee26..e8c9acfe9 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u index 27f908f75..e34404c7b 100644 --- a/tests/__data__/expected/.gh-pages/index.nsfw.m3u +++ b/tests/__data__/expected/.gh-pages/index.nsfw.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u index d81e2f75c..15cfc6f41 100644 --- a/tests/__data__/expected/.gh-pages/index.region.m3u +++ b/tests/__data__/expected/.gh-pages/index.region.m3u @@ -29,7 +29,7 @@ http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Worldwide",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Worldwide",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/eng.m3u b/tests/__data__/expected/.gh-pages/languages/eng.m3u index 8bbcae29c..48b2f9042 100644 --- a/tests/__data__/expected/.gh-pages/languages/eng.m3u +++ b/tests/__data__/expected/.gh-pages/languages/eng.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index b67457758..66f3da1e5 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,7 +1,7 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" #EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 From 0c3a1df90f7b973a93faba6fd9c0df69833afdc3 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 03:12:00 +0300 Subject: [PATCH 063/157] Update index_category_m3u.js --- scripts/generators/index_category_m3u.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/scripts/generators/index_category_m3u.js b/scripts/generators/index_category_m3u.js index 1794f8733..3ee1ce156 100644 --- a/scripts/generators/index_category_m3u.js +++ b/scripts/generators/index_category_m3u.js @@ -13,11 +13,13 @@ module.exports = async function (streams = []) { return } - stream.categories.forEach(category => { - const item = _.cloneDeep(stream) - item.group_title = category.name - items.push(item) - }) + stream.categories + .filter(c => c) + .forEach(category => { + const item = _.cloneDeep(stream) + item.group_title = category.name + items.push(item) + }) }) items = _.sortBy(items, item => { From 004a736297e701bddca93ee67555c106d9b6cef3 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 03:12:04 +0300 Subject: [PATCH 064/157] Update package.json --- package.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/package.json b/package.json index 9efcfb825..e81bfe8d2 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,7 @@ "playlist:update": "node scripts/commands/playlist/update.js", "playlist:lint": "npx m3u-linter -c m3u-linter.json", "readme:update": "node scripts/commands/readme/update.js", - "test": "jest --runInBand", - "test:commands": "jest --runInBand -- commands", - "test:commands:database": "jest --runInBand -- database", - "test:commands:playlist": "jest --runInBand -- playlist", - "test:commands:stream": "jest --runInBand -- stream", - "test:commands:readme": "jest --runInBand -- readme" + "test": "jest --runInBand" }, "jest": { "testRegex": "tests/(.*?/)?.*test.js$", From e2046899e98c652b88cd4f3ce670376031b6f607 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:05:31 +0300 Subject: [PATCH 065/157] Update playlist/update.js --- scripts/commands/playlist/update.js | 15 ++++++++------- tests/__data__/expected/channels/uk.m3u | 6 +++--- tests/commands/playlist/update.test.js | 9 ++++++--- 3 files changed, 17 insertions(+), 13 deletions(-) diff --git a/scripts/commands/playlist/update.js b/scripts/commands/playlist/update.js index d613eb5f5..a5ebf2a52 100644 --- a/scripts/commands/playlist/update.js +++ b/scripts/commands/playlist/update.js @@ -5,15 +5,16 @@ const _ = require('lodash') async function main() { await db.streams.load() - let items = await db.streams - .find({}) - .sort({ name: 1, 'status.level': 1, 'resolution.height': -1, url: 1 }) - const files = _.groupBy(items, 'filepath') + let streams = await db.streams.find({}) + streams = orderBy( + streams, + ['channel_name', i => i.status.level, i => i.resolution.height, 'url'], + ['asc', 'asc', 'desc', 'asc'] + ) + const files = _.groupBy(streams, 'filepath') for (const filepath in files) { - let items = files[filepath] - items = orderBy(items, ['channel_name'], ['asc']) - const playlist = createPlaylist(items, { public: false }) + const playlist = createPlaylist(files[filepath], { public: false }) await file.create(filepath, playlist.toString()) } } diff --git a/tests/__data__/expected/channels/uk.m3u b/tests/__data__/expected/channels/uk.m3u index bf1dc35a0..6bd67a0d7 100644 --- a/tests/__data__/expected/channels/uk.m3u +++ b/tests/__data__/expected/channels/uk.m3u @@ -1,5 +1,5 @@ #EXTM3U -#EXTINF:-1 tvg-id="AndorraTV.ad",Andorra TV (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (480p) [Geo-blocked] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 #EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/commands/playlist/update.test.js b/tests/commands/playlist/update.test.js index 3ed52ad64..65cd8d96b 100644 --- a/tests/commands/playlist/update.test.js +++ b/tests/commands/playlist/update.test.js @@ -1,13 +1,16 @@ +const { execSync } = require('child_process') const fs = require('fs-extra') const path = require('path') const glob = require('glob') -const { execSync } = require('child_process') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') + fs.copyFileSync( + 'tests/__data__/input/database/playlist_update.streams.db', + 'tests/__data__/output/streams.db' + ) - const stdout = execSync('DB_DIR=tests/__data__/output node scripts/commands/playlist/update.js', { + const stdout = execSync('DB_DIR=tests/__data__/output npm run playlist:update', { encoding: 'utf8' }) }) From 90aaf7f1c74580419c39c6c98e6623972bb98924 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:09:21 +0300 Subject: [PATCH 066/157] Update playlist/generate.js --- scripts/commands/playlist/generate.js | 4 ++-- tests/commands/playlist/generate.test.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/commands/playlist/generate.js b/scripts/commands/playlist/generate.js index 71d19da9b..d8e3a689c 100644 --- a/scripts/commands/playlist/generate.js +++ b/scripts/commands/playlist/generate.js @@ -32,9 +32,9 @@ main() async function loadStreams() { await db.streams.load() let streams = await db.streams.find({ is_broken: false }) - streams = _.orderBy( + streams = orderBy( streams, - ['channel_name', 'status.level', 'resolution.height', 'url'], + ['channel_name', i => i.status.level, i => i.resolution.height, 'url'], ['asc', 'asc', 'desc', 'asc'] ) streams = _.uniqBy(streams, stream => stream.channel_id || _.uniqueId()) diff --git a/tests/commands/playlist/generate.test.js b/tests/commands/playlist/generate.test.js index 055b84e0c..8582a9efb 100644 --- a/tests/commands/playlist/generate.test.js +++ b/tests/commands/playlist/generate.test.js @@ -6,12 +6,12 @@ const glob = require('glob') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( - 'tests/__data__/input/database/playlist-generate.streams.db', + 'tests/__data__/input/database/playlist_generate.streams.db', 'tests/__data__/output/streams.db' ) const stdout = execSync( - 'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators node --trace-warnings scripts/commands/playlist/generate.js', + 'DB_DIR=tests/__data__/output DATA_DIR=tests/__data__/input/data PUBLIC_DIR=tests/__data__/output/.gh-pages LOGS_DIR=tests/__data__/output/logs/generators npm run playlist:generate', { encoding: 'utf8' } ) }) From 34ddce6b93d5e6b8562b021fde3905ffc6b1720f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:10:18 +0300 Subject: [PATCH 067/157] Update load.test.js --- tests/commands/cluster/load.test.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/commands/cluster/load.test.js b/tests/commands/cluster/load.test.js index fa94b07b6..b545ac806 100644 --- a/tests/commands/cluster/load.test.js +++ b/tests/commands/cluster/load.test.js @@ -4,10 +4,13 @@ const path = require('path') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync('tests/__data__/input/database/streams.db', 'tests/__data__/output/streams.db') + fs.copyFileSync( + 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/output/streams.db' + ) const stdout = execSync( - 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/cluster/load node scripts/commands/cluster/load.js --cluster-id=1 --timeout=1', + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/output/logs/cluster/load npm run cluster:load -- --cluster-id=1 --timeout=1', { encoding: 'utf8' } ) }) From 3dd62a1eb1eda93a3e78d285902f3db9e53d7b99 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:25:19 +0300 Subject: [PATCH 068/157] Update validate.test.js --- tests/commands/playlist/validate.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/commands/playlist/validate.test.js b/tests/commands/playlist/validate.test.js index 103a18363..9e481bce2 100644 --- a/tests/commands/playlist/validate.test.js +++ b/tests/commands/playlist/validate.test.js @@ -3,7 +3,7 @@ const { execSync } = require('child_process') it('show error if channel name in the blocklist', () => { try { execSync( - 'DATA_DIR=tests/__data__/input/data node scripts/commands/playlist/validate.js tests/__data__/input/channels/us_blocked.m3u', + 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/us_blocked.m3u', { encoding: 'utf8' } @@ -11,20 +11,20 @@ it('show error if channel name in the blocklist', () => { } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( - `\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports" is on the blocklist due to claims of copyright holders (https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md)\n\n1 problems (1 errors, 0 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/us_blocked.m3u"\n\n\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports" is on the blocklist due to claims of copyright holders (https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md)\n\n1 problems (1 errors, 0 warnings)\n` ) } }) it('show warning if channel has wrong id', () => { const stdout = execSync( - 'DATA_DIR=tests/__data__/input/data node scripts/commands/playlist/validate.js tests/__data__/input/channels/wrong_id.m3u', + 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/wrong_id.m3u', { encoding: 'utf8' } ) expect(stdout).toBe( - `\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/wrong_id.m3u"\n\n\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` ) }) From 42d999dc427a62e3e444031658287bf8c3538ab5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:25:23 +0300 Subject: [PATCH 069/157] Update update.test.js --- tests/commands/readme/update.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/readme/update.test.js b/tests/commands/readme/update.test.js index 0124e8e7f..1e0308b61 100644 --- a/tests/commands/readme/update.test.js +++ b/tests/commands/readme/update.test.js @@ -6,7 +6,7 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') const stdout = execSync( - 'DATA_DIR=tests/__data__/input/data LOGS_DIR=tests/__data__/input/logs/generators node scripts/commands/readme/update.js --config=tests/__data__/input/_readme.json', + 'DATA_DIR=tests/__data__/input/data LOGS_DIR=tests/__data__/input/logs/generators npm run readme:update -- --config=tests/__data__/input/_readme.json', { encoding: 'utf8' } ) }) From 0380296ed79f9eef5ccbd0ebd7fcdf8d0f66b7ea Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:25:30 +0300 Subject: [PATCH 070/157] Update package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e81bfe8d2..ce19cab95 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "db:create": "node scripts/commands/database/create.js", "db:matrix": "node scripts/commands/database/matrix.js", "db:update": "node scripts/commands/database/update.js", + "db:cleanup": "node scripts/commands/database/cleanup.js", "cluster:load": "node scripts/commands/cluster/load.js", "playlist:validate": "node scripts/commands/playlist/validate.js", "playlist:generate": "node scripts/commands/playlist/generate.js", From 932dfee77d50b4e558b9b02a71389a3d5ac7b433 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:26:56 +0300 Subject: [PATCH 071/157] Update .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 91905e1fe..15e2cd72f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ node_modules -database .artifacts .secrets .actrc From f2d752efc4c561cd4d52f388b289763a52236c97 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:26:59 +0300 Subject: [PATCH 072/157] Update .gitignore --- scripts/.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/.gitignore b/scripts/.gitignore index 5292519a2..8c7b543b8 100644 --- a/scripts/.gitignore +++ b/scripts/.gitignore @@ -1 +1,2 @@ -logs/ \ No newline at end of file +logs/ +database/ \ No newline at end of file From fd7e805613ad02c9b29cdfb69d01ce1452bf2ca5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:07 +0300 Subject: [PATCH 073/157] Create db_cleanup.streams.db --- tests/__data__/expected/database/db_cleanup.streams.db | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/__data__/expected/database/db_cleanup.streams.db diff --git a/tests/__data__/expected/database/db_cleanup.streams.db b/tests/__data__/expected/database/db_cleanup.streams.db new file mode 100644 index 000000000..ffee4256c --- /dev/null +++ b/tests/__data__/expected/database/db_cleanup.streams.db @@ -0,0 +1,5 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From 3059d5aaa4f7d9732bb202650701ee0b25998a8d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:10 +0300 Subject: [PATCH 074/157] Create db_update.streams.db --- tests/__data__/expected/database/db_update.streams.db | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/__data__/expected/database/db_update.streams.db diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db new file mode 100644 index 000000000..b577e30cd --- /dev/null +++ b/tests/__data__/expected/database/db_update.streams.db @@ -0,0 +1,6 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From 8e672ed61e4e6f199ddc95ae9847f2ba01d6d821 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:13 +0300 Subject: [PATCH 075/157] Create streams.db --- tests/__data__/expected/database/streams.db | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/__data__/expected/database/streams.db diff --git a/tests/__data__/expected/database/streams.db b/tests/__data__/expected/database/streams.db new file mode 100644 index 000000000..6e51e48b4 --- /dev/null +++ b/tests/__data__/expected/database/streams.db @@ -0,0 +1,3 @@ +{"channel_id":null,"channel_name":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} +{"channel_id":"FoxSports2AsiaThai.us","channel_name":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} +{"channel_id":"ATV.ad","channel_name":"ATV","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} From b7f5f6173690febcad41fbcb16b08f5b8fc67afa Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:16 +0300 Subject: [PATCH 076/157] Create base_streams.db --- tests/__data__/input/database/base_streams.db | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/__data__/input/database/base_streams.db diff --git a/tests/__data__/input/database/base_streams.db b/tests/__data__/input/database/base_streams.db new file mode 100644 index 000000000..255f9935d --- /dev/null +++ b/tests/__data__/input/database/base_streams.db @@ -0,0 +1,4 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"Andorra TV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} From b48a0ed751eb303cad2ded103ed27b22c6d444ed Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:19 +0300 Subject: [PATCH 077/157] Create db_cleanup.streams.db --- tests/__data__/input/database/db_cleanup.streams.db | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/__data__/input/database/db_cleanup.streams.db diff --git a/tests/__data__/input/database/db_cleanup.streams.db b/tests/__data__/input/database/db_cleanup.streams.db new file mode 100644 index 000000000..d70163818 --- /dev/null +++ b/tests/__data__/input/database/db_cleanup.streams.db @@ -0,0 +1,6 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From cf5adfedb66ebe26a03cd25d01b4f493ab9ba28f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:22 +0300 Subject: [PATCH 078/157] Create db_update.streams.db --- tests/__data__/input/database/db_update.streams.db | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/__data__/input/database/db_update.streams.db diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db new file mode 100644 index 000000000..5c923f312 --- /dev/null +++ b/tests/__data__/input/database/db_update.streams.db @@ -0,0 +1,6 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From 5f8f8d1e8010211c70fe71e31f758bcd889bf5f9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:25 +0300 Subject: [PATCH 079/157] Create playlist_generate.streams.db --- .../input/database/playlist_generate.streams.db | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/__data__/input/database/playlist_generate.streams.db diff --git a/tests/__data__/input/database/playlist_generate.streams.db b/tests/__data__/input/database/playlist_generate.streams.db new file mode 100644 index 000000000..c7fbe4cc3 --- /dev/null +++ b/tests/__data__/input/database/playlist_generate.streams.db @@ -0,0 +1,11 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCId5"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"Andorra TV","channel_id":"ATV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Visit-X TV","channel_id":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF5"} +{"channel_name":"Tastemade","channel_id":"","filepath":"tests/__data__/output/channels/unsorted.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPAB"} +{"channel_name":"Daawah TV","channel_id":"","filepath":"tests/__data__/output/channels/in.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF9"} +{"channel_name":"Meteomedia","channel_id":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgP49"} +{"channel_name":"Zoo","channel_id":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":480,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} +{"channel_name":"Zoo","channel_id":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} From 3f19737f071d34d02b2ca00c670706a0c7940a26 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:28 +0300 Subject: [PATCH 080/157] Create playlist_update.streams.db --- tests/__data__/input/database/playlist_update.streams.db | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/__data__/input/database/playlist_update.streams.db diff --git a/tests/__data__/input/database/playlist_update.streams.db b/tests/__data__/input/database/playlist_update.streams.db new file mode 100644 index 000000000..4dec1b6de --- /dev/null +++ b/tests/__data__/input/database/playlist_update.streams.db @@ -0,0 +1,6 @@ +{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":480,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From be43a33a27d7ebd4a7b85d5c047b8e6fbc873748 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:31 +0300 Subject: [PATCH 081/157] Create cleanup.test.js --- tests/commands/database/cleanup.test.js | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tests/commands/database/cleanup.test.js diff --git a/tests/commands/database/cleanup.test.js b/tests/commands/database/cleanup.test.js new file mode 100644 index 000000000..e4f8948ce --- /dev/null +++ b/tests/commands/database/cleanup.test.js @@ -0,0 +1,34 @@ +const { execSync } = require('child_process') +const fs = require('fs-extra') +const path = require('path') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + fs.copyFileSync( + 'tests/__data__/input/database/db_cleanup.streams.db', + 'tests/__data__/output/streams.db' + ) + + const stdout = execSync('DB_DIR=tests/__data__/output npm run db:cleanup', { + encoding: 'utf8' + }) +}) + +it('can remove broken links from database', () => { + expect(content('tests/__data__/output/streams.db')).toEqual( + content('tests/__data__/expected/database/db_cleanup.streams.db') + ) +}) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From e35402b964b3518cbe94d42c59b9ff4f66c9f7ff Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:34 +0300 Subject: [PATCH 082/157] Create create.test.js --- tests/commands/database/create.test.js | 47 ++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 tests/commands/database/create.test.js diff --git a/tests/commands/database/create.test.js b/tests/commands/database/create.test.js new file mode 100644 index 000000000..614272ab4 --- /dev/null +++ b/tests/commands/database/create.test.js @@ -0,0 +1,47 @@ +const fs = require('fs-extra') +const path = require('path') +const { execSync } = require('child_process') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + + const stdout = execSync( + 'DB_DIR=tests/__data__/output/database npm run db:create -- --input-dir=tests/__data__/input/channels --max-clusters=1', + { encoding: 'utf8' } + ) +}) + +it('can create database', () => { + let output = content('tests/__data__/output/database/streams.db') + let expected = content('tests/__data__/expected/database/streams.db') + + output = output.map(i => { + i._id = null + return i + }) + expected = expected.map(i => { + i._id = null + return i + }) + + expect(output).toEqual( + expect.arrayContaining([ + expect.objectContaining(expected[0]), + expect.objectContaining(expected[1]), + expect.objectContaining(expected[2]) + ]) + ) +}) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From f027215f72e8a45a102237a2a2bc9301280d393f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:39 +0300 Subject: [PATCH 083/157] Create matrix.test.js --- tests/commands/database/matrix.test.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/commands/database/matrix.test.js diff --git a/tests/commands/database/matrix.test.js b/tests/commands/database/matrix.test.js new file mode 100644 index 000000000..7e46636fe --- /dev/null +++ b/tests/commands/database/matrix.test.js @@ -0,0 +1,21 @@ +const fs = require('fs-extra') +const path = require('path') +const { execSync } = require('child_process') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + + fs.copyFileSync( + 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/output/streams.db' + ) +}) + +it('can create valid matrix', () => { + const result = execSync('DB_DIR=tests/__data__/output npm run db:matrix', { + encoding: 'utf8' + }) + expect(result).toBe( + '\n> db:matrix\n> node scripts/commands/database/matrix.js\n\n::set-output name=matrix::{"cluster_id":[1,3]}\n' + ) +}) From 67985d5d991873d1684e6418e77c2822d11720de Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:27:41 +0300 Subject: [PATCH 084/157] Create update.test.js --- tests/commands/database/update.test.js | 35 ++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/commands/database/update.test.js diff --git a/tests/commands/database/update.test.js b/tests/commands/database/update.test.js new file mode 100644 index 000000000..6256a471c --- /dev/null +++ b/tests/commands/database/update.test.js @@ -0,0 +1,35 @@ +const { execSync } = require('child_process') +const fs = require('fs-extra') +const path = require('path') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + fs.copyFileSync( + 'tests/__data__/input/database/db_update.streams.db', + 'tests/__data__/output/streams.db' + ) + + const stdout = execSync( + 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/input/logs/cluster/load npm run db:update', + { encoding: 'utf8' } + ) +}) + +it('can save results', () => { + expect(content('tests/__data__/output/streams.db')).toEqual( + content('tests/__data__/expected/database/db_update.streams.db') + ) +}) + +function content(filepath) { + const data = fs.readFileSync(path.resolve(filepath), { + encoding: 'utf8' + }) + + return data + .split('\n') + .filter(l => l) + .map(l => { + return JSON.parse(l) + }) +} From dc2cc12cc253e7a7359170c22fcdc29a54201d27 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 04:28:39 +0300 Subject: [PATCH 085/157] Update auto-update.yml --- .github/workflows/auto-update.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 0dff5b7ea..8ed50eca2 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -27,8 +27,8 @@ jobs: name: data path: scripts/data - run: npm install - - run: node scripts/commands/database/create.js - - run: node scripts/commands/database/matrix.js + - run: npm run db:create + - run: npm run db:matrix id: create-matrix - uses: actions/upload-artifact@v2 with: @@ -57,7 +57,7 @@ jobs: with: node-version: '14' - run: npm install - - run: node scripts/commands/stream/load.js --cluster-id=${{ matrix.cluster_id }} + - run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 with: name: logs @@ -90,20 +90,20 @@ jobs: name: logs path: scripts/logs - run: npm install - - run: node scripts/commands/database/update.js + - run: npm run db:update - uses: actions/upload-artifact@v2 with: name: database path: scripts/database - - run: node scripts/commands/playlist/update.js + - run: npm run playlist:update - run: git add channels/* - run: git commit -m "[Bot] Update playlists" - - run: node scripts/commands/playlist/generate.js + - run: npm run playlist:generate - uses: actions/upload-artifact@v2 with: name: logs path: scripts/logs - - run: node scripts/commands/readme/update.js + - run: npm run readme:update - run: git add README.md - run: git commit -m "[Bot] Update README.md" - run: git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} From 0c7ff309bc8bb3c0a4aa0030969f2b4de3710083 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 07:01:12 +0300 Subject: [PATCH 086/157] Update languages.js --- scripts/generators/languages.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index eba2d8a8b..d6ea90e75 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -1,11 +1,12 @@ -const api = require('../core/api') const _ = require('lodash') module.exports = async function (streams = []) { streams = _.filter(streams, stream => stream.is_nsfw === false) - await api.languages.load() - let languages = await api.languages.all() + let languages = [] + streams.forEach(stream => { + languages = languages.concat(stream.languages) + }) languages = _.uniqBy(languages, 'code') const output = [] From 2dd1c4de8be0b2c924b551f814ecc0b6c8e3037a Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:35:37 +0300 Subject: [PATCH 087/157] Delete src_country.js --- scripts/store/setters/src_country.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 scripts/store/setters/src_country.js diff --git a/scripts/store/setters/src_country.js b/scripts/store/setters/src_country.js deleted file mode 100644 index 6eaa9d4d3..000000000 --- a/scripts/store/setters/src_country.js +++ /dev/null @@ -1,13 +0,0 @@ -const { file } = require('../../core') -const countries = require('../../data/countries') - -module.exports = function ({ filepath }) { - if (filepath) { - const basename = file.basename(filepath) - const [_, code] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null] - - return code ? countries[code.toUpperCase()] : null - } - - return null -} From a17c424387eacdd4f95744e2710c353a31295fd8 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:35:40 +0300 Subject: [PATCH 088/157] Update index.js --- scripts/store/setters/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 264b8e97a..612e6cc78 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -3,3 +3,4 @@ exports.resolution = require('./resolution') exports.status = require('./status') exports.url = require('./url') exports.channel_name = require('./channel_name') +exports.channel_id = require('./channel_id') From 90c8aca0e6fb3e0500f1c601c1ca23782ad75f84 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:37:02 +0300 Subject: [PATCH 089/157] Create channel_id.js --- scripts/store/setters/channel_id.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/store/setters/channel_id.js diff --git a/scripts/store/setters/channel_id.js b/scripts/store/setters/channel_id.js new file mode 100644 index 000000000..dc3c27d28 --- /dev/null +++ b/scripts/store/setters/channel_id.js @@ -0,0 +1,3 @@ +module.exports = function ({ channel_id }) { + return channel_id || null +} From b39dc83f8b207e86f36cea395c02567bb4ee1c84 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:38:07 +0300 Subject: [PATCH 090/157] Update .gitignore --- scripts/.gitignore | 4 +- scripts/commands/database/cleanup.js | 25 ++++ scripts/commands/database/create.js | 82 +++++++++++++ scripts/commands/database/matrix.js | 16 +++ scripts/commands/database/update.js | 176 +++++++++++++++++++++++++++ 5 files changed, 301 insertions(+), 2 deletions(-) create mode 100644 scripts/commands/database/cleanup.js create mode 100644 scripts/commands/database/create.js create mode 100644 scripts/commands/database/matrix.js create mode 100644 scripts/commands/database/update.js diff --git a/scripts/.gitignore b/scripts/.gitignore index 8c7b543b8..9becffee7 100644 --- a/scripts/.gitignore +++ b/scripts/.gitignore @@ -1,2 +1,2 @@ -logs/ -database/ \ No newline at end of file +/logs/ +/database/ \ No newline at end of file diff --git a/scripts/commands/database/cleanup.js b/scripts/commands/database/cleanup.js new file mode 100644 index 000000000..ede11d701 --- /dev/null +++ b/scripts/commands/database/cleanup.js @@ -0,0 +1,25 @@ +const { db, logger } = require('../../core') + +async function main() { + logger.info(`loading streams...`) + await db.streams.load() + let streams = await db.streams.find({}) + + logger.info(`removing broken links...`) + let removed = 0 + const buffer = {} + for (const stream of streams) { + const duplicate = buffer[stream.channel_id] + if (duplicate && ['offline', 'timeout'].includes(stream.status.code)) { + await db.streams.remove({ _id: stream._id }) + removed++ + } else { + buffer[stream.channel_id] = stream + } + } + db.streams.compact() + + logger.info(`removed ${removed} links`) +} + +main() diff --git a/scripts/commands/database/create.js b/scripts/commands/database/create.js new file mode 100644 index 000000000..7611872ad --- /dev/null +++ b/scripts/commands/database/create.js @@ -0,0 +1,82 @@ +const { db, file, parser, store, logger, id } = require('../../core') +const { program } = require('commander') +const _ = require('lodash') + +const options = program + .option( + '--max-clusters ', + 'Set maximum number of clusters', + parser.parseNumber, + 256 + ) + .option('--input-dir ', 'Set path to input directory', 'channels') + .parse(process.argv) + .opts() + +async function main() { + logger.info('starting...') + logger.info(`number of clusters: ${options.maxClusters}`) + + await saveToDatabase(await findStreams()) + + logger.info('done') +} + +main() + +async function findStreams() { + logger.info(`looking for streams...`) + + await db.streams.load() + const files = await file.list(`${options.inputDir}/**/*.m3u`) + const streams = [] + for (const filepath of files) { + const items = await parser.parsePlaylist(filepath) + for (const item of items) { + item.filepath = filepath + streams.push(item) + } + } + logger.info(`found ${streams.length} streams`) + + return streams +} + +async function saveToDatabase(streams = []) { + logger.info('saving to the database...') + + await db.streams.reset() + const chunks = split(_.shuffle(streams), options.maxClusters) + for (const [i, chunk] of chunks.entries()) { + for (const item of chunk) { + const stream = store.create() + stream.set('channel_id', { channel_id: item.tvg.id }) + stream.set('channel_name', { title: item.name }) + stream.set('filepath', { filepath: item.filepath }) + stream.set('resolution', { title: item.name }) + stream.set('status', { title: item.name }) + stream.set('url', { url: item.url }) + stream.set('http', { http: item.http }) + stream.set('is_broken', { status: stream.get('status') }) + stream.set('updated', { updated: false }) + stream.set('cluster_id', { cluster_id: i + 1 }) + + if (!stream.get('channel_id')) { + const channel_id = id.generate(item.name, item.filepath) + + stream.set('channel_id', { channel_id }) + stream.set('updated', { updated: true }) + } + + await db.streams.insert(stream.data()) + } + } +} + +function split(arr, n) { + let result = [] + for (let i = n; i > 0; i--) { + result.push(arr.splice(0, Math.ceil(arr.length / i))) + } + return result +} diff --git a/scripts/commands/database/matrix.js b/scripts/commands/database/matrix.js new file mode 100644 index 000000000..f51e37f0b --- /dev/null +++ b/scripts/commands/database/matrix.js @@ -0,0 +1,16 @@ +const { logger, db } = require('../../core') + +async function main() { + await db.streams.load() + const docs = await db.streams.find({}).sort({ cluster_id: 1 }) + const cluster_id = docs.reduce((acc, curr) => { + if (!acc.includes(curr.cluster_id)) acc.push(curr.cluster_id) + return acc + }, []) + + const matrix = { cluster_id } + const output = `::set-output name=matrix::${JSON.stringify(matrix)}` + logger.info(output) +} + +main() diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js new file mode 100644 index 000000000..c1786bc9a --- /dev/null +++ b/scripts/commands/database/update.js @@ -0,0 +1,176 @@ +const { db, store, parser, file, logger } = require('../../core') +const statuses = require('../../data/statuses') +const _ = require('lodash') + +const items = [] + +const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/cluster/load' + +async function main() { + let streams = await loadStreams() + const results = await loadResults() + const origins = await findOrigins(results) + streams = await updateStreams(streams, results, origins) + + await updateDatabase(streams) +} + +main() + +async function loadStreams() { + logger.info('loading streams...') + + await db.streams.load() + const streams = await db.streams.find({}) + + logger.info(`found ${streams.length} streams`) + + return streams +} + +async function loadResults() { + logger.info('loading results from logs...') + + const results = {} + const files = await file.list(`${LOGS_DIR}/cluster_*.log`) + for (const filepath of files) { + const parsed = await parser.parseLogs(filepath) + for (const item of parsed) { + results[item._id] = item + } + } + + logger.info(`found ${Object.values(results).length} results`) + + return results +} + +async function findOrigins(results = {}) { + logger.info('searching for stream origins...') + + const origins = {} + for (const { error, requests } of Object.values(results)) { + if (error || !Array.isArray(requests) || !requests.length) continue + + let origin = requests.shift() + origin = new URL(origin.url) + for (const request of requests) { + const curr = new URL(request.url) + const key = curr.href.replace(/(^\w+:|^)/, '') + if (!origins[key] && curr.host === origin.host) { + origins[key] = origin.href + } + } + } + + logger.info(`found ${_.uniq(Object.values(origins)).length} origins`) + + return origins +} + +async function updateStreams(items = [], results = {}, origins = {}) { + logger.info('updating streams...') + + let updated = 0 + const output = [] + for (const item of items) { + const stream = store.create(item) + const result = results[item._id] + + if (result) { + const { error, streams, requests } = result + const resolution = parseResolution(streams) + const origin = findOrigin(requests, origins) + let status = parseStatus(error) + + if (status) { + const prevStatus = item.status + if (prevStatus.code === 'not_247') + // not_247 -> * = not_247 + status = item.status + else if (prevStatus.code === 'geo_blocked') + // geo_blocked -> * = geo_blocked + status = item.status + else if (status.code === 'geo_blocked') + // * -> geo_blocked = * + status = item.status + else if (prevStatus.code === 'offline' && status.code === 'online') + // offline -> online = not_247 + status = statuses['not_247'] + + stream.set('status', { status }) + stream.set('is_broken', { status: stream.get('status') }) + } + + if (resolution) { + stream.set('resolution', { resolution }) + } + + if (origin) { + stream.set('url', { url: origin }) + } + } + + if (stream.changed) { + stream.set('updated', true) + output.push(stream.data()) + updated++ + } + } + + logger.info(`updated ${updated} streams`) + + return output +} + +async function updateDatabase(streams = []) { + logger.info('updating database...') + + for (const stream of streams) { + await db.streams.update({ _id: stream._id }, stream) + } + db.streams.compact() + + logger.info('done') +} + +function findOrigin(requests = [], origins = {}) { + if (origins && Array.isArray(requests)) { + requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) + for (const url of requests) { + if (origins[url]) { + return origins[url] + } + } + } + + return null +} + +function parseResolution(streams) { + const resolution = streams + .filter(s => s.codec_type === 'video') + .reduce( + (acc, curr) => { + if (curr.height > acc.height) return { width: curr.width, height: curr.height } + return acc + }, + { width: 0, height: 0 } + ) + + if (resolution.width > 0 && resolution.height > 0) return resolution + return null +} + +function parseStatus(error) { + if (error) { + if (error.includes('timed out')) { + return statuses['timeout'] + } else if (error.includes('403')) { + return statuses['geo_blocked'] + } + return statuses['offline'] + } + + return statuses['online'] +} From 32ac057cd2f3b52ee84f2172ffaa102a22df08aa Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:40:34 +0300 Subject: [PATCH 091/157] Update package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ce19cab95..d349271dc 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "db:create": "node scripts/commands/database/create.js", "db:matrix": "node scripts/commands/database/matrix.js", "db:update": "node scripts/commands/database/update.js", + "db:export": "node scripts/commands/database/export.js", "db:cleanup": "node scripts/commands/database/cleanup.js", "cluster:load": "node scripts/commands/cluster/load.js", "playlist:validate": "node scripts/commands/playlist/validate.js", From 2de12c90a62f8eb6164908c55c4768d435a2cccd Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:40:38 +0300 Subject: [PATCH 092/157] Create export.js --- scripts/commands/database/export.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scripts/commands/database/export.js diff --git a/scripts/commands/database/export.js b/scripts/commands/database/export.js new file mode 100644 index 000000000..e7a003624 --- /dev/null +++ b/scripts/commands/database/export.js @@ -0,0 +1,23 @@ +const { logger, db, file } = require('../../core') +const _ = require('lodash') + +const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' + +async function main() { + await db.streams.load() + let streams = await db.streams.find({}) + streams = _.sortBy(streams, 'channel_id') + streams = streams.map(stream => { + return { + channel: stream.channel_id, + display_name: stream.display_name, + url: stream.url, + http_referrer: stream.http['referrer'], + user_agent: stream.http['user-agent'] + } + }) + + await file.create(`${PUBLIC_DIR}/streams.json`, JSON.stringify(streams)) +} + +main() From 450258d1cfb612804d0ae6e9b467375d4e7726e7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:40:43 +0300 Subject: [PATCH 093/157] Update streams.json --- tests/__data__/expected/.gh-pages/streams.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/__data__/expected/.gh-pages/streams.json b/tests/__data__/expected/.gh-pages/streams.json index 6076b3626..42cf48c7d 100644 --- a/tests/__data__/expected/.gh-pages/streams.json +++ b/tests/__data__/expected/.gh-pages/streams.json @@ -1 +1 @@ -[{"name":"BBC News HD","logo":"https://i.imgur.com/eNPIQ9f.png","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","categories":[{"name":"News","slug":"news"}],"countries":[{"name":"United Kingdom","code":"UK"}],"languages":[{"name":"English","code":"eng"}],"tvg":{"id":"BBCNews.uk","name":"BBC News HD","url":""}},{"name":"BBC News HD","logo":"https://i.imgur.com/eNPIQ9f.png","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","categories":[{"name":"News","slug":"news"}],"countries":[{"name":"United Kingdom","code":"UK"}],"languages":[{"name":"English","code":"eng"}],"tvg":{"id":"BBCNews.uk","name":"BBC News HD","url":""}},{"name":"Daawah TV","logo":"","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","categories":[],"countries":[],"languages":[],"tvg":{"id":"","name":"Daawah TV","url":""}},{"name":"Tastemade","logo":"","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","categories":[{"name":"Cooking","slug":"cooking"}],"countries":[{"name":"Andorra","code":"AD"},{"name":"Russia","code":"RU"},{"name":"United Kingdom","code":"UK"}],"languages":[],"tvg":{"id":"","name":"Tastemade","url":""}},{"name":"Visit-X TV","logo":"","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","categories":[{"name":"XXX","slug":"xxx"}],"countries":[],"languages":[],"tvg":{"id":"","name":"Visit-X TV","url":""}},{"name":"ЛДПР ТВ","logo":"https://iptvx.one/icn/ldpr-tv.png","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","categories":[{"name":"General","slug":"general"},{"name":"Legislative","slug":"legislative"}],"countries":[{"name":"Russia","code":"RU"}],"languages":[{"name":"Russian","code":"rus"}],"tvg":{"id":"LDPRTV.ru","name":"ЛДПР ТВ","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"}}] \ No newline at end of file +[{"channel":"AndorraTV.ad","display_name":"ATV (720p) [Offline]","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":""},{"channel":"AndorraTV.ad","display_name":"Andorra TV (720p) [Not 24/7]","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":""},{"channel":"BBCNews.uk","display_name":"BBC News HD (720p) [Not 24/7]","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":"","user_agent":""},{"channel":"LDPRTV.ru","display_name":"ЛДПР ТВ (1080p)","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":""}] \ No newline at end of file From 9fe1e4a7a6781ce1eef01a31cba216a4bcd822a1 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 01:40:45 +0300 Subject: [PATCH 094/157] Create export.test.js --- tests/commands/database/export.test.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/commands/database/export.test.js diff --git a/tests/commands/database/export.test.js b/tests/commands/database/export.test.js new file mode 100644 index 000000000..a6ddb3285 --- /dev/null +++ b/tests/commands/database/export.test.js @@ -0,0 +1,25 @@ +const { execSync } = require('child_process') +const fs = require('fs-extra') + +beforeEach(() => { + fs.emptyDirSync('tests/__data__/output') + fs.copyFileSync( + 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/output/streams.db' + ) + + const stdout = execSync( + 'DB_DIR=tests/__data__/output PUBLIC_DIR=tests/__data__/output/.gh-pages npm run db:export', + { encoding: 'utf8' } + ) +}) + +it('can create streams.json', () => { + expect(content(`output/.gh-pages/streams.json`)).toBe(content(`expected/.gh-pages/streams.json`)) +}) + +function content(filepath) { + return fs.readFileSync(`tests/__data__/${filepath}`, { + encoding: 'utf8' + }) +} From e2e7c8b81c013693cc68caa8e48a8a43bbb6c474 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 03:04:25 +0300 Subject: [PATCH 095/157] Update database/create.js --- scripts/commands/database/create.js | 25 ++++++++----------- .../expected/database/db_create.streams.db | 4 +++ tests/commands/database/create.test.js | 5 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 tests/__data__/expected/database/db_create.streams.db diff --git a/scripts/commands/database/create.js b/scripts/commands/database/create.js index 7611872ad..e4095db97 100644 --- a/scripts/commands/database/create.js +++ b/scripts/commands/database/create.js @@ -1,4 +1,4 @@ -const { db, file, parser, store, logger, id } = require('../../core') +const { db, file, parser, store, logger, id, api } = require('../../core') const { program } = require('commander') const _ = require('lodash') @@ -27,7 +27,9 @@ main() async function findStreams() { logger.info(`looking for streams...`) + await api.channels.load() await db.streams.load() + const files = await file.list(`${options.inputDir}/**/*.m3u`) const streams = [] for (const filepath of files) { @@ -50,24 +52,17 @@ async function saveToDatabase(streams = []) { for (const [i, chunk] of chunks.entries()) { for (const item of chunk) { const stream = store.create() - stream.set('channel_id', { channel_id: item.tvg.id }) - stream.set('channel_name', { title: item.name }) + const channel = await api.channels.find({ id: item.tvg.id }) + const channel_id = channel ? channel.id : null + + stream.set('channel', { channel: channel_id }) + stream.set('title', { title: item.name }) stream.set('filepath', { filepath: item.filepath }) - stream.set('resolution', { title: item.name }) - stream.set('status', { title: item.name }) stream.set('url', { url: item.url }) - stream.set('http', { http: item.http }) - stream.set('is_broken', { status: stream.get('status') }) - stream.set('updated', { updated: false }) + stream.set('http_referrer', { http_referrer: item.http.referrer }) + stream.set('user_agent', { user_agent: item.http['user-agent'] }) stream.set('cluster_id', { cluster_id: i + 1 }) - if (!stream.get('channel_id')) { - const channel_id = id.generate(item.name, item.filepath) - - stream.set('channel_id', { channel_id }) - stream.set('updated', { updated: true }) - } - await db.streams.insert(stream.data()) } } diff --git a/tests/__data__/expected/database/db_create.streams.db b/tests/__data__/expected/database/db_create.streams.db new file mode 100644 index 000000000..c4fc74f15 --- /dev/null +++ b/tests/__data__/expected/database/db_create.streams.db @@ -0,0 +1,4 @@ +{"channel":null,"title":"ABC (720p)","filepath":"tests/__data__/input/channels/wrong_id.m3u","url":"https://example.com/playlist2.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"hrkAABqRIoVtOXd4"} +{"channel":null,"title":"Fox Sports 2 Asia (Thai) (720p)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"eeofJMxX7fOzDR9R"} +{"channel":null,"title":"1A Network (720p)","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"omQ1KYCOKqb5Lxyn"} +{"channel":"ATV.ad","title":"ATV (720p) [Offline]","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"v9O0SiMdhSh7wiKB"} diff --git a/tests/commands/database/create.test.js b/tests/commands/database/create.test.js index 614272ab4..d3f7e07da 100644 --- a/tests/commands/database/create.test.js +++ b/tests/commands/database/create.test.js @@ -13,7 +13,7 @@ beforeEach(() => { it('can create database', () => { let output = content('tests/__data__/output/database/streams.db') - let expected = content('tests/__data__/expected/database/streams.db') + let expected = content('tests/__data__/expected/database/db_create.streams.db') output = output.map(i => { i._id = null @@ -28,7 +28,8 @@ it('can create database', () => { expect.arrayContaining([ expect.objectContaining(expected[0]), expect.objectContaining(expected[1]), - expect.objectContaining(expected[2]) + expect.objectContaining(expected[2]), + expect.objectContaining(expected[3]) ]) ) }) From b9eb8095e437c572f6719c029599011eedcfe2bd Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 04:12:39 +0300 Subject: [PATCH 096/157] Update database/update.js --- scripts/commands/database/update.js | 77 ++++++++----------- .../expected/database/db_update.streams.db | 12 +-- .../input/database/db_update.streams.db | 12 +-- .../input/logs/cluster/load/cluster_1.log | 11 +-- 4 files changed, 48 insertions(+), 64 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index c1786bc9a..9cb79de38 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -75,47 +75,30 @@ async function updateStreams(items = [], results = {}, origins = {}) { const output = [] for (const item of items) { const stream = store.create(item) - const result = results[item._id] + const result = results[item._id] if (result) { const { error, streams, requests } = result - const resolution = parseResolution(streams) - const origin = findOrigin(requests, origins) - let status = parseStatus(error) - - if (status) { - const prevStatus = item.status - if (prevStatus.code === 'not_247') - // not_247 -> * = not_247 - status = item.status - else if (prevStatus.code === 'geo_blocked') - // geo_blocked -> * = geo_blocked - status = item.status - else if (status.code === 'geo_blocked') - // * -> geo_blocked = * - status = item.status - else if (prevStatus.code === 'offline' && status.code === 'online') - // offline -> online = not_247 - status = statuses['not_247'] - - stream.set('status', { status }) - stream.set('is_broken', { status: stream.get('status') }) - } - if (resolution) { - stream.set('resolution', { resolution }) + const { is_online } = parseError(error) + stream.set('is_online', { is_online }) + + if (streams.length) { + const { width, height, bitrate } = parseStreams(streams) + stream.set('width', { width }) + stream.set('height', { height }) + stream.set('bitrate', { bitrate }) } - if (origin) { - stream.set('url', { url: origin }) + if (requests.length) { + const origin = findOrigin(requests, origins) + if (origin) { + stream.set('url', { url: origin }) + } } } - if (stream.changed) { - stream.set('updated', true) - output.push(stream.data()) - updated++ - } + output.push(stream.data()) } logger.info(`updated ${updated} streams`) @@ -147,30 +130,30 @@ function findOrigin(requests = [], origins = {}) { return null } -function parseResolution(streams) { - const resolution = streams +function parseStreams(streams) { + const data = streams .filter(s => s.codec_type === 'video') .reduce( (acc, curr) => { - if (curr.height > acc.height) return { width: curr.width, height: curr.height } + if (curr.height > acc.height) + return { width: curr.width, height: curr.height, bitrate: curr.bitrate } return acc }, - { width: 0, height: 0 } + { width: 0, height: 0, bitrate: 0 } ) - if (resolution.width > 0 && resolution.height > 0) return resolution - return null + return data } -function parseStatus(error) { - if (error) { - if (error.includes('timed out')) { - return statuses['timeout'] - } else if (error.includes('403')) { - return statuses['geo_blocked'] - } - return statuses['offline'] +function parseError(error) { + const output = { + is_online: true, + message: error } - return statuses['online'] + if (error && !error.includes('403')) { + output.is_online = false + } + + return output } diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index b577e30cd..d0adf554a 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"width":1920,"height":1080},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db index 5c923f312..85e5cca50 100644 --- a/tests/__data__/input/database/db_update.streams.db +++ b/tests/__data__/input/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"BBC News HD","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":1226543,"width":1280,"height":720,"url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/__data__/input/logs/cluster/load/cluster_1.log b/tests/__data__/input/logs/cluster/load/cluster_1.log index 8f7d44b29..f8442f991 100644 --- a/tests/__data__/input/logs/cluster/load/cluster_1.log +++ b/tests/__data__/input/logs/cluster/load/cluster_1.log @@ -1,5 +1,6 @@ -{"_id":"I6cjG2xCBRFFP4sz","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"error":"Server returned 403 Forbidden","streams":[],"requests":[]} -{"_id":"3TbieV1ptnZVCIdn","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"error":"Server returned 404 Not Found","streams":[],"requests":[]} -{"_id":"2ST8btby3mmsgPF0","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"6527203"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Main","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1920,"height":1080,"coded_width":1920,"coded_height":1080,"closed_captions":0,"has_b_frames":0,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":40,"chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"50/1","avg_frame_rate":"50/1","time_base":"1/90000","start_pts":8171218184,"start_time":"90791.313156","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"6527203"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":8171229134,"start_time":"90791.434822","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"6527203"}}],"requests":[{"method":"GET","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"46.46.143.222:1935","Icy-MetaData":"1"}},{"method":"GET","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/chunklist_w1629502765.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"46.46.143.222:1935","Icy-MetaData":"1"}},{"method":"GET","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/media_w1629502765_1085323.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"46.46.143.222:1935","Icy-MetaData":"1"}},{"method":"GET","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/media_w1629502765_1085324.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"46.46.143.222:1935","Icy-MetaData":"1"}}]} -{"_id":"cFFpFVzSn6xFMUF3","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"error":"Operation timed out","streams":[],"requests":[]} -{"_id":"u7iyA6cjtf1iWWAZ","url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"error":"Server returned 404 Not Found","streams":[],"requests":[]} +{"_id":"2ST8btby3mmsgPF0","error":"Operation timed out","streams":[],"requests":[]} +{"_id":"I6cjG2xCBRFFP4sz","error":"No streams found","streams":[],"requests":[]} +{"_id":"3TbieV1ptnZVCIdn","error":"Server returned 403 Forbidden (access denied)","streams":[],"requests":[]} +{"_id":"cFFpFVzSn6xFMUF3","error":"Server returned 404 Not Found","streams":[],"requests":[]} +{"_id":"u7iyA6cjtf1iWWAZ","error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":5612806046,"start_time":"62364.511622","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}}],"requests":[{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/chunklist_w2083911960.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25312.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25313.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}}]} +{"_id":"WTbieV1ptnZVCIdn","error":null,"streams":[{"index":0,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1024,"height":576,"coded_width":1024,"coded_height":576,"closed_captions":0,"has_b_frames":0,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","color_space":"bt709","color_transfer":"bt709","color_primaries":"bt709","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":7878865078,"start_time":"87542.945311","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}},{"index":1,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"HE-AAC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":7878863698,"start_time":"87542.929978","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}}],"requests":[{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432343.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432344.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}}]} \ No newline at end of file From c49a99b3d3525681a443770e48abf9342368f437 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 04:15:37 +0300 Subject: [PATCH 097/157] Update cluster/load.js --- scripts/commands/cluster/load.js | 8 +++++++- tests/__data__/expected/logs/cluster/load/cluster_1.log | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/scripts/commands/cluster/load.js b/scripts/commands/cluster/load.js index 9c58905b7..e220aba70 100644 --- a/scripts/commands/cluster/load.js +++ b/scripts/commands/cluster/load.js @@ -42,7 +42,13 @@ async function main() { } else { logger.info(`${message} (${result.error})`) } - await file.append(clusterLog, JSON.stringify(result) + '\n') + const output = { + _id: result._id, + error: result.error, + streams: result.streams, + requests: result.requests + } + await file.append(clusterLog, JSON.stringify(output) + '\n') } logger.info(`done in ${timer.format('HH[h] mm[m] ss[s]')}`) diff --git a/tests/__data__/expected/logs/cluster/load/cluster_1.log b/tests/__data__/expected/logs/cluster/load/cluster_1.log index 68156ac32..c32879e93 100644 --- a/tests/__data__/expected/logs/cluster/load/cluster_1.log +++ b/tests/__data__/expected/logs/cluster/load/cluster_1.log @@ -1,2 +1,2 @@ -{"_id":"2ST8btby3mmsgPF0","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"error":"Operation timed out","streams":[],"requests":[]} -{"_id":"I6cjG2xCBRFFP4sz","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"error":"Operation timed out","streams":[],"requests":[]} +{"_id":"2ST8btby3mmsgPF0","error":"Operation timed out","streams":[],"requests":[]} +{"_id":"I6cjG2xCBRFFP4sz","error":"Operation timed out","streams":[],"requests":[]} From 8b6bee2ed3f8aec31dcdb33912665cfa88a84443 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 04:44:52 +0300 Subject: [PATCH 098/157] Update load.js --- scripts/commands/cluster/load.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/commands/cluster/load.js b/scripts/commands/cluster/load.js index e220aba70..9a0c90043 100644 --- a/scripts/commands/cluster/load.js +++ b/scripts/commands/cluster/load.js @@ -36,7 +36,15 @@ async function main() { const results = {} for (const [i, item] of items.entries()) { const message = `[${i + 1}/${total}] ${item.filepath}: ${item.url}` - const result = await checker.check(item, config) + const request = { + _id: item._id, + url: item.url, + http: { + referrer: item.http_referrer, + 'user-agent': item.user_agent + } + } + const result = await checker.check(request, config) if (!result.error) { logger.info(message) } else { From fd60c886fecef5a5bcebe07ef9e29e7b3c8fd6b5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 04:45:15 +0300 Subject: [PATCH 099/157] Update database/update.js --- scripts/commands/database/update.js | 6 ++++-- tests/__data__/expected/database/db_update.streams.db | 4 ++-- tests/__data__/input/database/db_update.streams.db | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index 9cb79de38..a0555c0ee 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -135,8 +135,10 @@ function parseStreams(streams) { .filter(s => s.codec_type === 'video') .reduce( (acc, curr) => { - if (curr.height > acc.height) - return { width: curr.width, height: curr.height, bitrate: curr.bitrate } + if (curr.height > acc.height) { + const bitrate = curr.tags.variant_bitrate ? parseInt(curr.tags.variant_bitrate) : 0 + return { width: curr.width, height: curr.height, bitrate } + } return acc }, { width: 0, height: 0, bitrate: 0 } diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index d0adf554a..67fb3946d 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -1,6 +1,6 @@ {"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} {"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} {"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"width":1024,"height":576} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":1226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db index 85e5cca50..9ba8279d5 100644 --- a/tests/__data__/input/database/db_update.streams.db +++ b/tests/__data__/input/database/db_update.streams.db @@ -2,5 +2,5 @@ {"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} {"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":1226543,"width":1280,"height":720,"url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} {"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} From 95ba14bbdd351aeb27971fa7e41e8aba8305615b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 04:48:29 +0300 Subject: [PATCH 100/157] Update update.js --- scripts/commands/database/update.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index a0555c0ee..55d768beb 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -98,6 +98,8 @@ async function updateStreams(items = [], results = {}, origins = {}) { } } + if (stream.changed) updated++ + output.push(stream.data()) } @@ -107,7 +109,7 @@ async function updateStreams(items = [], results = {}, origins = {}) { } async function updateDatabase(streams = []) { - logger.info('updating database...') + logger.info('saving to database...') for (const stream of streams) { await db.streams.update({ _id: stream._id }, stream) From 25cfecbbf94a3d32047c0c71ccaaf135de5560be Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 05:04:24 +0300 Subject: [PATCH 101/157] Update update.js --- scripts/commands/database/update.js | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index 55d768beb..07ae6a717 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -133,20 +133,16 @@ function findOrigin(requests = [], origins = {}) { } function parseStreams(streams) { - const data = streams - .filter(s => s.codec_type === 'video') - .reduce( - (acc, curr) => { - if (curr.height > acc.height) { - const bitrate = curr.tags.variant_bitrate ? parseInt(curr.tags.variant_bitrate) : 0 - return { width: curr.width, height: curr.height, bitrate } - } - return acc - }, - { width: 0, height: 0, bitrate: 0 } - ) + streams = streams.filter(s => s.codec_type === 'video') + streams = _.orderBy(streams, ['height', 'bitrate'], ['desc', 'desc']) + + const data = _.head(streams) + if (data) { + const bitrate = data.tags.variant_bitrate ? parseInt(data.tags.variant_bitrate) : 0 + return { width: data.width, height: data.height, bitrate } + } - return data + return {} } function parseError(error) { From b3132150d7d6317f00229ccbbbc25fdaf010b209 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 05:09:04 +0300 Subject: [PATCH 102/157] Update database/update.js --- scripts/commands/database/update.js | 2 +- tests/__data__/expected/database/db_update.streams.db | 2 +- tests/__data__/input/logs/cluster/load/cluster_1.log | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index 07ae6a717..e519092c4 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -134,7 +134,7 @@ function findOrigin(requests = [], origins = {}) { function parseStreams(streams) { streams = streams.filter(s => s.codec_type === 'video') - streams = _.orderBy(streams, ['height', 'bitrate'], ['desc', 'desc']) + streams = _.orderBy(streams, ['height', 'tags.variant_bitrate'], ['desc', 'desc']) const data = _.head(streams) if (data) { diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index 67fb3946d..dd6bfab50 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -3,4 +3,4 @@ {"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} {"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":1226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/__data__/input/logs/cluster/load/cluster_1.log b/tests/__data__/input/logs/cluster/load/cluster_1.log index f8442f991..02fff4aba 100644 --- a/tests/__data__/input/logs/cluster/load/cluster_1.log +++ b/tests/__data__/input/logs/cluster/load/cluster_1.log @@ -2,5 +2,5 @@ {"_id":"I6cjG2xCBRFFP4sz","error":"No streams found","streams":[],"requests":[]} {"_id":"3TbieV1ptnZVCIdn","error":"Server returned 403 Forbidden (access denied)","streams":[],"requests":[]} {"_id":"cFFpFVzSn6xFMUF3","error":"Server returned 404 Not Found","streams":[],"requests":[]} -{"_id":"u7iyA6cjtf1iWWAZ","error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":5612806046,"start_time":"62364.511622","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}}],"requests":[{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/chunklist_w2083911960.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25312.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25313.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}}]} +{"_id":"u7iyA6cjtf1iWWAZ","error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":5612806046,"start_time":"62364.511622","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":3,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"2226543"}}],"requests":[{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/chunklist_w2083911960.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25312.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25313.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}}]} {"_id":"WTbieV1ptnZVCIdn","error":null,"streams":[{"index":0,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1024,"height":576,"coded_width":1024,"coded_height":576,"closed_captions":0,"has_b_frames":0,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","color_space":"bt709","color_transfer":"bt709","color_primaries":"bt709","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":7878865078,"start_time":"87542.945311","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}},{"index":1,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"HE-AAC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":7878863698,"start_time":"87542.929978","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}}],"requests":[{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432343.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432344.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}}]} \ No newline at end of file From 4a0666122dd0bbfbb94ab96b313a246035b9d5d8 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 05:30:31 +0300 Subject: [PATCH 103/157] Update database/update.js --- scripts/commands/database/update.js | 6 +++++- tests/__data__/input/logs/cluster/load/cluster_1.log | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index e519092c4..5fadafeb0 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -134,7 +134,11 @@ function findOrigin(requests = [], origins = {}) { function parseStreams(streams) { streams = streams.filter(s => s.codec_type === 'video') - streams = _.orderBy(streams, ['height', 'tags.variant_bitrate'], ['desc', 'desc']) + streams = _.orderBy( + streams, + ['height', s => (s.tags.variant_bitrate ? parseInt(s.tags.variant_bitrate) : 0)], + ['desc', 'desc'] + ) const data = _.head(streams) if (data) { diff --git a/tests/__data__/input/logs/cluster/load/cluster_1.log b/tests/__data__/input/logs/cluster/load/cluster_1.log index 02fff4aba..78e8553b5 100644 --- a/tests/__data__/input/logs/cluster/load/cluster_1.log +++ b/tests/__data__/input/logs/cluster/load/cluster_1.log @@ -2,5 +2,5 @@ {"_id":"I6cjG2xCBRFFP4sz","error":"No streams found","streams":[],"requests":[]} {"_id":"3TbieV1ptnZVCIdn","error":"Server returned 403 Forbidden (access denied)","streams":[],"requests":[]} {"_id":"cFFpFVzSn6xFMUF3","error":"Server returned 404 Not Found","streams":[],"requests":[]} -{"_id":"u7iyA6cjtf1iWWAZ","error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":5612806046,"start_time":"62364.511622","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":3,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"2226543"}}],"requests":[{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/chunklist_w2083911960.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25312.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25313.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}}]} +{"_id":"u7iyA6cjtf1iWWAZ","error":null,"streams":[{"index":0,"codec_name":"timed_id3","codec_long_name":"timed ID3 metadata","codec_type":"data","codec_tag_string":"ID3 ","codec_tag":"0x20334449","r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":1,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"726543"}},{"index":2,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"LC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":5612806046,"start_time":"62364.511622","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"1226543"}},{"index":3,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Constrained Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1280,"height":720,"coded_width":1280,"coded_height":720,"closed_captions":0,"has_b_frames":3,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":5612807216,"start_time":"62364.524622","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"2226543"}}],"requests":[{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/chunklist_w2083911960.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25312.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/media_w2083911960_25313.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"forerunnerrtmp.livestreamingcdn.com","Icy-MetaData":"1"}}]} {"_id":"WTbieV1ptnZVCIdn","error":null,"streams":[{"index":0,"codec_name":"h264","codec_long_name":"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10","profile":"Baseline","codec_type":"video","codec_tag_string":"[27][0][0][0]","codec_tag":"0x001b","width":1024,"height":576,"coded_width":1024,"coded_height":576,"closed_captions":0,"has_b_frames":0,"sample_aspect_ratio":"1:1","display_aspect_ratio":"16:9","pix_fmt":"yuv420p","level":31,"color_range":"tv","color_space":"bt709","color_transfer":"bt709","color_primaries":"bt709","chroma_location":"left","refs":1,"is_avc":"false","nal_length_size":"0","r_frame_rate":"25/1","avg_frame_rate":"25/1","time_base":"1/90000","start_pts":7878865078,"start_time":"87542.945311","bits_per_raw_sample":"8","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}},{"index":1,"codec_name":"aac","codec_long_name":"AAC (Advanced Audio Coding)","profile":"HE-AAC","codec_type":"audio","codec_tag_string":"[15][0][0][0]","codec_tag":"0x000f","sample_fmt":"fltp","sample_rate":"48000","channels":2,"channel_layout":"stereo","bits_per_sample":0,"r_frame_rate":"0/0","avg_frame_rate":"0/0","time_base":"1/90000","start_pts":7878863698,"start_time":"87542.929978","disposition":{"default":0,"dub":0,"original":0,"comment":0,"lyrics":0,"karaoke":0,"forced":0,"hearing_impaired":0,"visual_impaired":0,"clean_effects":0,"attached_pic":0,"timed_thumbnails":0},"tags":{"variant_bitrate":"0"}}],"requests":[{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"close","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432343.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}},{"method":"GET","url":"https://master.starmena-cloud.com/hls/libyas-432344.ts","headers":{"User-Agent":"Lavf/58.76.100","Accept":"*/*","Range":"bytes=0-","Connection":"keep-alive","Host":"master.starmena-cloud.com","Icy-MetaData":"1"}}]} \ No newline at end of file From 8f6095d2df2f7000ff7bb4641e5e50ba7aeab5c1 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 05:42:39 +0300 Subject: [PATCH 104/157] Update database/export.js --- scripts/commands/database/export.js | 12 ++++++++---- tests/__data__/expected/.gh-pages/streams.json | 2 +- tests/__data__/input/database/db_export.streams.db | 6 ++++++ tests/commands/database/export.test.js | 2 +- 4 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 tests/__data__/input/database/db_export.streams.db diff --git a/scripts/commands/database/export.js b/scripts/commands/database/export.js index e7a003624..ddb53848c 100644 --- a/scripts/commands/database/export.js +++ b/scripts/commands/database/export.js @@ -9,11 +9,15 @@ async function main() { streams = _.sortBy(streams, 'channel_id') streams = streams.map(stream => { return { - channel: stream.channel_id, - display_name: stream.display_name, + channel: stream.channel, + title: stream.title, url: stream.url, - http_referrer: stream.http['referrer'], - user_agent: stream.http['user-agent'] + width: stream.width, + height: stream.height, + bitrate: stream.bitrate, + is_online: stream.is_online, + http_referrer: stream.http_referrer, + user_agent: stream.user_agent } }) diff --git a/tests/__data__/expected/.gh-pages/streams.json b/tests/__data__/expected/.gh-pages/streams.json index 42cf48c7d..7948d55d0 100644 --- a/tests/__data__/expected/.gh-pages/streams.json +++ b/tests/__data__/expected/.gh-pages/streams.json @@ -1 +1 @@ -[{"channel":"AndorraTV.ad","display_name":"ATV (720p) [Offline]","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":""},{"channel":"AndorraTV.ad","display_name":"Andorra TV (720p) [Not 24/7]","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":""},{"channel":"BBCNews.uk","display_name":"BBC News HD (720p) [Not 24/7]","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":"","user_agent":""},{"channel":"LDPRTV.ru","display_name":"ЛДПР ТВ (1080p)","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":""}] \ No newline at end of file +[{"channel":"LDPRTV.ru","title":"ЛДПР ТВ","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","is_online":false,"http_referrer":"","user_agent":""},{"channel":"BBCNews.uk","title":"BBC News HD","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","is_online":true,"http_referrer":"","user_agent":""},{"channel":"AndorraTV.ad","title":"ATV","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","is_online":false,"http_referrer":"","user_agent":""},{"channel":"BBCNewsHD.ad","title":"BBC News HD","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","width":1024,"height":576,"bitrate":0,"is_online":true,"http_referrer":"","user_agent":""},{"channel":"KayhanTV.af","title":"Kayhan TV","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","is_online":false,"http_referrer":"","user_agent":""},{"channel":"Sharq.af","title":"Sharq","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","width":1280,"height":720,"bitrate":2226543,"is_online":true,"http_referrer":"","user_agent":""}] \ No newline at end of file diff --git a/tests/__data__/input/database/db_export.streams.db b/tests/__data__/input/database/db_export.streams.db new file mode 100644 index 000000000..294185b27 --- /dev/null +++ b/tests/__data__/input/database/db_export.streams.db @@ -0,0 +1,6 @@ +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/commands/database/export.test.js b/tests/commands/database/export.test.js index a6ddb3285..ae7c00b56 100644 --- a/tests/commands/database/export.test.js +++ b/tests/commands/database/export.test.js @@ -4,7 +4,7 @@ const fs = require('fs-extra') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( - 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/input/database/db_export.streams.db', 'tests/__data__/output/streams.db' ) From 96038210d66a80daa3dd6593b36457a7402c41da Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 06:03:47 +0300 Subject: [PATCH 105/157] Update database/create.js --- scripts/store/setters/http_referrer.js | 3 +++ scripts/store/setters/index.js | 2 ++ scripts/store/setters/user_agent.js | 3 +++ tests/__data__/expected/database/db_create.streams.db | 8 ++++---- 4 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 scripts/store/setters/http_referrer.js create mode 100644 scripts/store/setters/user_agent.js diff --git a/scripts/store/setters/http_referrer.js b/scripts/store/setters/http_referrer.js new file mode 100644 index 000000000..fdbb31c46 --- /dev/null +++ b/scripts/store/setters/http_referrer.js @@ -0,0 +1,3 @@ +module.exports = function ({ http_referrer }) { + return http_referrer || null +} diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 612e6cc78..454bb19ca 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -4,3 +4,5 @@ exports.status = require('./status') exports.url = require('./url') exports.channel_name = require('./channel_name') exports.channel_id = require('./channel_id') +exports.http_referrer = require('./http_referrer') +exports.user_agent = require('./user_agent') diff --git a/scripts/store/setters/user_agent.js b/scripts/store/setters/user_agent.js new file mode 100644 index 000000000..ccc0c0599 --- /dev/null +++ b/scripts/store/setters/user_agent.js @@ -0,0 +1,3 @@ +module.exports = function ({ user_agent }) { + return user_agent || null +} diff --git a/tests/__data__/expected/database/db_create.streams.db b/tests/__data__/expected/database/db_create.streams.db index c4fc74f15..fb5069129 100644 --- a/tests/__data__/expected/database/db_create.streams.db +++ b/tests/__data__/expected/database/db_create.streams.db @@ -1,4 +1,4 @@ -{"channel":null,"title":"ABC (720p)","filepath":"tests/__data__/input/channels/wrong_id.m3u","url":"https://example.com/playlist2.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"hrkAABqRIoVtOXd4"} -{"channel":null,"title":"Fox Sports 2 Asia (Thai) (720p)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"eeofJMxX7fOzDR9R"} -{"channel":null,"title":"1A Network (720p)","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"omQ1KYCOKqb5Lxyn"} -{"channel":"ATV.ad","title":"ATV (720p) [Offline]","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"v9O0SiMdhSh7wiKB"} +{"channel":null,"title":"1A Network (720p)","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"ZJejfvbOVTyuf6Gk"} +{"channel":null,"title":"Fox Sports 2 Asia (Thai) (720p)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"gnjGLZU1CEz79gcp"} +{"channel":"ATV.ad","title":"ATV (720p) [Offline]","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"9r9qmYRa2kxiirl0"} +{"channel":null,"title":"ABC (720p)","filepath":"tests/__data__/input/channels/wrong_id.m3u","url":"https://example.com/playlist2.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"unOCFJtsDCbJupxR"} From d00e2e5e381b8818928f0478c5676f26ce54d752 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 07:03:39 +0300 Subject: [PATCH 106/157] Update playlist/generate.js --- scripts/commands/playlist/generate.js | 18 +- scripts/store/getters/index.js | 1 - scripts/store/getters/title.js | 13 - scripts/store/getters/tvg_id.js | 2 +- .../expected/.gh-pages/categories/general.m3u | 4 +- .../expected/.gh-pages/categories/news.m3u | 4 +- .../.gh-pages/categories/undefined.m3u | 2 +- .../expected/.gh-pages/countries/ad.m3u | 4 +- .../expected/.gh-pages/countries/ca.m3u | 4 +- .../expected/.gh-pages/countries/in.m3u | 4 +- .../expected/.gh-pages/countries/ru.m3u | 4 +- .../expected/.gh-pages/countries/uk.m3u | 6 +- .../expected/.gh-pages/index.category.m3u | 10 +- .../expected/.gh-pages/index.country.m3u | 1002 ++++++++--------- .../expected/.gh-pages/index.language.m3u | 6 +- tests/__data__/expected/.gh-pages/index.m3u | 6 +- .../expected/.gh-pages/index.nsfw.m3u | 6 +- .../expected/.gh-pages/index.region.m3u | 10 +- .../expected/.gh-pages/languages/eng.m3u | 4 +- .../.gh-pages/languages/undefined.m3u | 2 +- .../expected/.gh-pages/regions/emea.m3u | 2 +- .../expected/.gh-pages/regions/eur.m3u | 2 +- .../expected/.gh-pages/regions/int.m3u | 6 +- .../__data__/expected/.gh-pages/streams.json | 2 +- .../expected/database/db_cleanup.streams.db | 10 +- .../expected/database/db_update.streams.db | 12 +- tests/__data__/expected/database/streams.db | 6 +- tests/__data__/input/database/base_streams.db | 8 +- .../input/database/db_cleanup.streams.db | 12 +- .../input/database/db_export.streams.db | 12 +- .../input/database/db_update.streams.db | 12 +- .../database/playlist_generate.streams.db | 22 +- .../input/database/playlist_update.streams.db | 12 +- 33 files changed, 608 insertions(+), 622 deletions(-) delete mode 100644 scripts/store/getters/title.js diff --git a/scripts/commands/playlist/generate.js b/scripts/commands/playlist/generate.js index d8e3a689c..cb4e66523 100644 --- a/scripts/commands/playlist/generate.js +++ b/scripts/commands/playlist/generate.js @@ -31,13 +31,9 @@ main() async function loadStreams() { await db.streams.load() - let streams = await db.streams.find({ is_broken: false }) - streams = orderBy( - streams, - ['channel_name', i => i.status.level, i => i.resolution.height, 'url'], - ['asc', 'asc', 'desc', 'asc'] - ) - streams = _.uniqBy(streams, stream => stream.channel_id || _.uniqueId()) + let streams = await db.streams.find({ is_online: true }) + streams = orderBy(streams, ['channel', 'height', 'url'], ['asc', 'desc', 'asc']) + streams = _.uniqBy(streams, stream => stream.channel || _.uniqueId()) await api.channels.load() let channels = await api.channels.all() @@ -55,8 +51,8 @@ async function loadStreams() { let guides = await api.guides.all() guides = _.groupBy(guides, 'channel') - return streams.map(stream => { - const channel = channels[stream.channel_id] || null + streams = streams.map(stream => { + const channel = channels[stream.channel] || null const filename = file.getFilename(stream.filepath) const [_, code] = filename.match(/^([a-z]{2})(_|$)/) || [null, null] const defaultBroadcastArea = code ? [`c/${code.toUpperCase()}`] : [] @@ -70,4 +66,8 @@ async function loadStreams() { return stream }) + + streams = orderBy(streams, ['title'], ['asc']) + + return streams } diff --git a/scripts/store/getters/index.js b/scripts/store/getters/index.js index 75fbe8be3..8a1c3fa51 100644 --- a/scripts/store/getters/index.js +++ b/scripts/store/getters/index.js @@ -1,5 +1,4 @@ exports.group_title = require('./group_title') -exports.title = require('./title') exports.tvg_id = require('./tvg_id') exports.tvg_logo = require('./tvg_logo') exports.tvg_country = require('./tvg_country') diff --git a/scripts/store/getters/title.js b/scripts/store/getters/title.js deleted file mode 100644 index 69bb469d6..000000000 --- a/scripts/store/getters/title.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = function () { - let title = this.channel_name - - if (this.resolution.height) { - title += ` (${this.resolution.height}p)` - } - - if (this.status.label) { - title += ` [${this.status.label}]` - } - - return title -} diff --git a/scripts/store/getters/tvg_id.js b/scripts/store/getters/tvg_id.js index 1a09bbfbe..2cd3fda83 100644 --- a/scripts/store/getters/tvg_id.js +++ b/scripts/store/getters/tvg_id.js @@ -1,3 +1,3 @@ module.exports = function () { - return this.channel_id || '' + return this.channel || '' } diff --git a/tests/__data__/expected/.gh-pages/categories/general.m3u b/tests/__data__/expected/.gh-pages/categories/general.m3u index 912d752cc..a168206b3 100644 --- a/tests/__data__/expected/.gh-pages/categories/general.m3u +++ b/tests/__data__/expected/.gh-pages/categories/general.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/news.m3u b/tests/__data__/expected/.gh-pages/categories/news.m3u index 48b2f9042..e07769944 100644 --- a/tests/__data__/expected/.gh-pages/categories/news.m3u +++ b/tests/__data__/expected/.gh-pages/categories/news.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/__data__/expected/.gh-pages/categories/undefined.m3u b/tests/__data__/expected/.gh-pages/categories/undefined.m3u index 9c088466a..1433371ff 100644 --- a/tests/__data__/expected/.gh-pages/categories/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/categories/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ad.m3u b/tests/__data__/expected/.gh-pages/countries/ad.m3u index 71705b851..2b51d0362 100644 --- a/tests/__data__/expected/.gh-pages/countries/ad.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ad.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/countries/ca.m3u b/tests/__data__/expected/.gh-pages/countries/ca.m3u index 307d134f9..f77141e28 100644 --- a/tests/__data__/expected/.gh-pages/countries/ca.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ca.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/in.m3u b/tests/__data__/expected/.gh-pages/countries/in.m3u index b15751131..4e22fcf1b 100644 --- a/tests/__data__/expected/.gh-pages/countries/in.m3u +++ b/tests/__data__/expected/.gh-pages/countries/in.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/ru.m3u b/tests/__data__/expected/.gh-pages/countries/ru.m3u index 912d752cc..a168206b3 100644 --- a/tests/__data__/expected/.gh-pages/countries/ru.m3u +++ b/tests/__data__/expected/.gh-pages/countries/ru.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/countries/uk.m3u b/tests/__data__/expected/.gh-pages/countries/uk.m3u index af67bafa9..0ee2e9d16 100644 --- a/tests/__data__/expected/.gh-pages/countries/uk.m3u +++ b/tests/__data__/expected/.gh-pages/countries/uk.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.category.m3u b/tests/__data__/expected/.gh-pages/index.category.m3u index 3ee45410d..62bbe7332 100644 --- a/tests/__data__/expected/.gh-pages/index.category.m3u +++ b/tests/__data__/expected/.gh-pages/index.category.m3u @@ -1,13 +1,13 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.country.m3u b/tests/__data__/expected/.gh-pages/index.country.m3u index e6eca3f77..3f8aa2213 100644 --- a/tests/__data__/expected/.gh-pages/index.country.m3u +++ b/tests/__data__/expected/.gh-pages/index.country.m3u @@ -1,513 +1,513 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Algeria",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Afghanistan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Albania",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Algeria",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="American Samoa",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Andorra",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Andorra",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antarctica",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antigua and Barbuda",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Argentina",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Armenia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Aruba",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Australia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Austria",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Azerbaijan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahamas",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahrain",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bangladesh",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Barbados",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belarus",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belgium",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belize",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Benin",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bermuda",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bhutan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bolivia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bonaire",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bosnia and Herzegovina",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Botswana",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bouvet Island",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brazil",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Indian Ocean Territory",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Virgin Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brunei",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bulgaria",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burkina Faso",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burundi",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cambodia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cameroon",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Canada",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Angola",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Anguilla",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antarctica",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Antigua and Barbuda",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Argentina",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Armenia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Aruba",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Australia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Austria",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Azerbaijan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahamas",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bahrain",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bangladesh",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Barbados",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belarus",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belgium",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Belize",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Benin",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bermuda",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bhutan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bolivia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bonaire",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bosnia and Herzegovina",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Botswana",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bouvet Island",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brazil",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Indian Ocean Territory",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="British Virgin Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Brunei",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Bulgaria",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burkina Faso",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Burundi",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cambodia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cameroon",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Canada",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Canada",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cape Verde",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cayman Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Central African Republic",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chad",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chile",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="China",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Christmas Island",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cocos (Keeling) Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Colombia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Comoros",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cook Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Costa Rica",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Croatia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cuba",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Curacao",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cyprus",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Czech Republic",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Democratic Republic of the Congo",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Denmark",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Djibouti",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominica",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominican Republic",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="East Timor",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ecuador",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Egypt",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="El Salvador",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Equatorial Guinea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Eritrea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Estonia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ethiopia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Falkland Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Faroe Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Fiji",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Finland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="France",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Guiana",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Polynesia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Southern Territories",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gabon",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gambia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Georgia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Germany",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ghana",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gibraltar",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greece",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greenland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Grenada",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guadeloupe",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guam",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guatemala",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guernsey",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea-Bissau",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guyana",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Haiti",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Heard Island and McDonald Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Honduras",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hong Kong",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hungary",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iceland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cape Verde",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cayman Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Central African Republic",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chad",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Chile",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="China",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Christmas Island",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cocos (Keeling) Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Colombia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Comoros",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cook Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Costa Rica",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Croatia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cuba",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Curacao",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Cyprus",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Czech Republic",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Democratic Republic of the Congo",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Denmark",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Djibouti",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominica",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Dominican Republic",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="East Timor",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ecuador",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Egypt",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="El Salvador",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Equatorial Guinea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Eritrea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Estonia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ethiopia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Falkland Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Faroe Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Fiji",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Finland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="France",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Guiana",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Polynesia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="French Southern Territories",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gabon",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gambia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Georgia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Germany",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ghana",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Gibraltar",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greece",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Greenland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Grenada",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guadeloupe",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guam",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guatemala",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guernsey",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guinea-Bissau",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Guyana",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Haiti",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Heard Island and McDonald Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Honduras",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hong Kong",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Hungary",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iceland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="India",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="India",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iraq",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ireland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Isle of Man",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Israel",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Italy",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ivory Coast",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jamaica",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Japan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jersey",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jordan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kazakhstan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kenya",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kiribati",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kosovo",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kuwait",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kyrgyzstan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Laos",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Latvia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lebanon",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lesotho",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liberia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Libya",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liechtenstein",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lithuania",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Luxembourg",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Macao",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Madagascar",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malawi",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malaysia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Maldives",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mali",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malta",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Marshall Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Martinique",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritania",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritius",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mayotte",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mexico",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Micronesia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Moldova",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Monaco",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mongolia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montenegro",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montserrat",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Morocco",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mozambique",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Myanmar (Burma)",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Namibia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nauru",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nepal",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Netherlands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Caledonia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Zealand",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nicaragua",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niger",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nigeria",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niue",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norfolk Island",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Korea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Macedonia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Northern Mariana Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norway",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Oman",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pakistan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palau",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palestine",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Panama",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Papua New Guinea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Paraguay",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Peru",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Philippines",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pitcairn Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Poland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Portugal",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Puerto Rico",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Qatar",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Republic of the Congo",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Romania",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Russia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Indonesia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iran",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Iraq",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ireland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Isle of Man",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Israel",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Italy",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ivory Coast",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jamaica",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Japan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jersey",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Jordan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kazakhstan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kenya",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kiribati",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kosovo",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kuwait",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Kyrgyzstan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Laos",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Latvia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lebanon",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lesotho",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liberia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Libya",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Liechtenstein",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Lithuania",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Luxembourg",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Macao",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Madagascar",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malawi",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malaysia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Maldives",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mali",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Malta",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Marshall Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Martinique",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritania",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mauritius",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mayotte",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mexico",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Micronesia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Moldova",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Monaco",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mongolia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montenegro",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Montserrat",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Morocco",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Mozambique",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Myanmar (Burma)",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Namibia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nauru",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nepal",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Netherlands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Caledonia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="New Zealand",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nicaragua",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niger",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Nigeria",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Niue",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norfolk Island",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Korea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="North Macedonia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Northern Mariana Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Norway",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Oman",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pakistan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palau",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Palestine",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Panama",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Papua New Guinea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Paraguay",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Peru",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Philippines",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Pitcairn Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Poland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Portugal",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Puerto Rico",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Qatar",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Republic of the Congo",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Romania",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Russia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russia",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Rwanda",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Réunion",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Barthélemy",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Helena",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Kitts and Nevis",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Lucia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Martin",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Pierre and Miquelon",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Vincent and the Grenadines",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Samoa",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="San Marino",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saudi Arabia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Senegal",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Serbia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Seychelles",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sierra Leone",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Singapore",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sint Maarten",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovakia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovenia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Solomon Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Somalia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Africa",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Georgia and the South Sandwich Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Korea",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Sudan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Spain",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sri Lanka",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sudan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Suriname",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Svalbard and Jan Mayen",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Swaziland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sweden",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Switzerland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Syria",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="São Tomé and Príncipe",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Taiwan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tajikistan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tanzania",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Thailand",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Togo",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tokelau",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tonga",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Trinidad and Tobago",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tunisia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkey",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkmenistan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turks and Caicos Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tuvalu",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Minor Outlying Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Virgin Islands",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uganda",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ukraine",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="United Kingdom",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Rwanda",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Réunion",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Barthélemy",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Helena",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Kitts and Nevis",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Lucia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Martin",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Pierre and Miquelon",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saint Vincent and the Grenadines",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Samoa",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="San Marino",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Saudi Arabia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Senegal",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Serbia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Seychelles",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sierra Leone",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Singapore",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sint Maarten",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovakia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Slovenia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Solomon Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Somalia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Africa",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Georgia and the South Sandwich Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Korea",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="South Sudan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Spain",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sri Lanka",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sudan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Suriname",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Svalbard and Jan Mayen",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Swaziland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Sweden",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Switzerland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Syria",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="São Tomé and Príncipe",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Taiwan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tajikistan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tanzania",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Thailand",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Togo",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tokelau",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tonga",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Trinidad and Tobago",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tunisia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkey",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turkmenistan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Turks and Caicos Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Tuvalu",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Minor Outlying Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="U.S. Virgin Islands",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uganda",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Ukraine",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Arab Emirates",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="United Kingdom",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uruguay",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uzbekistan",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vanuatu",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vatican City",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Venezuela",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vietnam",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Wallis and Futuna",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Western Sahara",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Yemen",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zambia",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zimbabwe",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United Kingdom",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="United States",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uruguay",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Uzbekistan",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vanuatu",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vatican City",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Venezuela",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Vietnam",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Wallis and Futuna",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Western Sahara",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Yemen",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zambia",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Zimbabwe",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Åland",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="Undefined",Tastemade https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.language.m3u b/tests/__data__/expected/.gh-pages/index.language.m3u index 6e8416a56..b44a2c337 100644 --- a/tests/__data__/expected/.gh-pages/index.language.m3u +++ b/tests/__data__/expected/.gh-pages/index.language.m3u @@ -1,11 +1,11 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="English",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="French",Meteomedia http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Russian",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/index.m3u b/tests/__data__/expected/.gh-pages/index.m3u index e8c9acfe9..766dcdcf2 100644 --- a/tests/__data__/expected/.gh-pages/index.m3u +++ b/tests/__data__/expected/.gh-pages/index.m3u @@ -1,8 +1,8 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/index.nsfw.m3u b/tests/__data__/expected/.gh-pages/index.nsfw.m3u index e34404c7b..1b0b59f7c 100644 --- a/tests/__data__/expected/.gh-pages/index.nsfw.m3u +++ b/tests/__data__/expected/.gh-pages/index.nsfw.m3u @@ -1,8 +1,8 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/index.region.m3u b/tests/__data__/expected/.gh-pages/index.region.m3u index 15cfc6f41..2b79bec3d 100644 --- a/tests/__data__/expected/.gh-pages/index.region.m3u +++ b/tests/__data__/expected/.gh-pages/index.region.m3u @@ -9,13 +9,13 @@ http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Commonwealth of Independent States",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Europe",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo #EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="Europe",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe, the Middle East and Africa",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Europe, the Middle East and Africa",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Europe, the Middle East and Africa",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo @@ -27,10 +27,10 @@ http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="South Asia",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Worldwide",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Worldwide",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="Worldwide",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Worldwide",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Worldwide",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/languages/eng.m3u b/tests/__data__/expected/.gh-pages/languages/eng.m3u index 48b2f9042..e07769944 100644 --- a/tests/__data__/expected/.gh-pages/languages/eng.m3u +++ b/tests/__data__/expected/.gh-pages/languages/eng.m3u @@ -1,3 +1,3 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/__data__/expected/.gh-pages/languages/undefined.m3u b/tests/__data__/expected/.gh-pages/languages/undefined.m3u index 9c088466a..1433371ff 100644 --- a/tests/__data__/expected/.gh-pages/languages/undefined.m3u +++ b/tests/__data__/expected/.gh-pages/languages/undefined.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 diff --git a/tests/__data__/expected/.gh-pages/regions/emea.m3u b/tests/__data__/expected/.gh-pages/regions/emea.m3u index c580d531b..4a22fcabe 100644 --- a/tests/__data__/expected/.gh-pages/regions/emea.m3u +++ b/tests/__data__/expected/.gh-pages/regions/emea.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/regions/eur.m3u b/tests/__data__/expected/.gh-pages/regions/eur.m3u index c580d531b..4a22fcabe 100644 --- a/tests/__data__/expected/.gh-pages/regions/eur.m3u +++ b/tests/__data__/expected/.gh-pages/regions/eur.m3u @@ -1,5 +1,5 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 #EXTINF:-1 tvg-id="Zoo.ad" tvg-country="AD" tvg-language="" tvg-logo="" group-title="Undefined",Zoo (720p) https://iptv-all.lanesh4d0w.repl.co/andorra/zoo diff --git a/tests/__data__/expected/.gh-pages/regions/int.m3u b/tests/__data__/expected/.gh-pages/regions/int.m3u index 66f3da1e5..58ae9fccb 100644 --- a/tests/__data__/expected/.gh-pages/regions/int.m3u +++ b/tests/__data__/expected/.gh-pages/regions/int.m3u @@ -1,8 +1,8 @@ #EXTM3U x-tvg-url="https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml,https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml" -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="" tvg-country="UK" tvg-language="" tvg-logo="" group-title="Undefined",Andorra TV (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD (720p) [Geo-blocked] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="General;News",BBC News HD +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 #EXTINF:-1 tvg-id="" tvg-country="IN" tvg-language="" tvg-logo="" group-title="Undefined",Daawah TV http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 #EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia diff --git a/tests/__data__/expected/.gh-pages/streams.json b/tests/__data__/expected/.gh-pages/streams.json index 7948d55d0..4818bcd9c 100644 --- a/tests/__data__/expected/.gh-pages/streams.json +++ b/tests/__data__/expected/.gh-pages/streams.json @@ -1 +1 @@ -[{"channel":"LDPRTV.ru","title":"ЛДПР ТВ","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","is_online":false,"http_referrer":"","user_agent":""},{"channel":"BBCNews.uk","title":"BBC News HD","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","is_online":true,"http_referrer":"","user_agent":""},{"channel":"AndorraTV.ad","title":"ATV","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","is_online":false,"http_referrer":"","user_agent":""},{"channel":"BBCNewsHD.ad","title":"BBC News HD","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","width":1024,"height":576,"bitrate":0,"is_online":true,"http_referrer":"","user_agent":""},{"channel":"KayhanTV.af","title":"Kayhan TV","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","is_online":false,"http_referrer":"","user_agent":""},{"channel":"Sharq.af","title":"Sharq","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","width":1280,"height":720,"bitrate":2226543,"is_online":true,"http_referrer":"","user_agent":""}] \ No newline at end of file +[{"channel":"LDPRTV.ru","title":"ЛДПР ТВ","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"BBCNews.uk","title":"BBC News HD","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"is_online":true},{"channel":"AndorraTV.ad","title":"ATV","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"BBCNewsHD.ad","title":"BBC News HD","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"width":1024,"height":576,"bitrate":0},{"channel":"KayhanTV.af","title":"Kayhan TV","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"Sharq.af","title":"Sharq","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"width":1280,"height":720,"bitrate":2226543}] \ No newline at end of file diff --git a/tests/__data__/expected/database/db_cleanup.streams.db b/tests/__data__/expected/database/db_cleanup.streams.db index ffee4256c..3751ae9d3 100644 --- a/tests/__data__/expected/database/db_cleanup.streams.db +++ b/tests/__data__/expected/database/db_cleanup.streams.db @@ -1,5 +1,5 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index dd6bfab50..afcc449b5 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/__data__/expected/database/streams.db b/tests/__data__/expected/database/streams.db index 6e51e48b4..bb152cf0f 100644 --- a/tests/__data__/expected/database/streams.db +++ b/tests/__data__/expected/database/streams.db @@ -1,3 +1,3 @@ -{"channel_id":null,"channel_name":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} -{"channel_id":"FoxSports2AsiaThai.us","channel_name":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/channels/us_blocked.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://example.com/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":true,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} -{"channel_id":"ATV.ad","channel_name":"ATV","filepath":"tests/__data__/input/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} +{"channel":null,"title":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} +{"channel":"FoxSports2AsiaThai.us","title":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} +{"channel":"ATV.ad","title":"ATV","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} diff --git a/tests/__data__/input/database/base_streams.db b/tests/__data__/input/database/base_streams.db index 255f9935d..180ac7f3e 100644 --- a/tests/__data__/input/database/base_streams.db +++ b/tests/__data__/input/database/base_streams.db @@ -1,4 +1,4 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"Andorra TV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"Andorra TV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/__data__/input/database/db_cleanup.streams.db b/tests/__data__/input/database/db_cleanup.streams.db index d70163818..f000c6775 100644 --- a/tests/__data__/input/database/db_cleanup.streams.db +++ b/tests/__data__/input/database/db_cleanup.streams.db @@ -1,6 +1,6 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/database/db_export.streams.db b/tests/__data__/input/database/db_export.streams.db index 294185b27..3c66b1601 100644 --- a/tests/__data__/input/database/db_export.streams.db +++ b/tests/__data__/input/database/db_export.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db index 9ba8279d5..ee46f1d6e 100644 --- a/tests/__data__/input/database/db_update.streams.db +++ b/tests/__data__/input/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":"","user_agent":"","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":"","user_agent":"","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":"","user_agent":"","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/__data__/input/database/playlist_generate.streams.db b/tests/__data__/input/database/playlist_generate.streams.db index c7fbe4cc3..30989b187 100644 --- a/tests/__data__/input/database/playlist_generate.streams.db +++ b/tests/__data__/input/database/playlist_generate.streams.db @@ -1,11 +1,11 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCId5"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"Andorra TV","channel_id":"ATV.ad","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Visit-X TV","channel_id":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF5"} -{"channel_name":"Tastemade","channel_id":"","filepath":"tests/__data__/output/channels/unsorted.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPAB"} -{"channel_name":"Daawah TV","channel_id":"","filepath":"tests/__data__/output/channels/in.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF9"} -{"channel_name":"Meteomedia","channel_id":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","resolution":{},"status":{"label":"","code":"online","level":1},"url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgP49"} -{"channel_name":"Zoo","channel_id":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":480,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} -{"channel_name":"Zoo","channel_id":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"","code":"online","level":1},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"3TbieV1ptnZVCId5"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"height":720,"width":1280,"is_online":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP44z"} +{"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF5"} +{"title":"Tastemade","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPAB"} +{"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/channels/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF9"} +{"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgP49"} +{"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"is_online":true,"cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} +{"title":"Zoo (720p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} diff --git a/tests/__data__/input/database/playlist_update.streams.db b/tests/__data__/input/database/playlist_update.streams.db index 4dec1b6de..017c7ea3e 100644 --- a/tests/__data__/input/database/playlist_update.streams.db +++ b/tests/__data__/input/database/playlist_update.streams.db @@ -1,6 +1,6 @@ -{"channel_name":"ЛДПР ТВ","channel_id":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","resolution":{"height":1080,"width":null},"status":{"label":"","code":"online","level":1},"url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":720,"width":null},"status":{"label":"Not 24/7","code":"not_247","level":3},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"channel_name":"ATV","channel_id":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","resolution":{"height":720,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"channel_name":"BBC News HD","channel_id":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","resolution":{"height":480,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"channel_name":"Kayhan TV","channel_id":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","resolution":{"height":720,"width":null},"status":{"label":"Geo-blocked","code":"geo_blocked","level":2},"url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http":{"referrer":"","user-agent":""},"is_broken":false,"updated":false,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"channel_name":"Sharq","channel_id":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","resolution":{"height":576,"width":null},"status":{"label":"Offline","code":"offline","level":5},"url":"http://51.210.199.50/hls/stream.m3u8","http":{"referrer":"","user-agent":""},"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From 6a96f23040ea79deac461e9878470496e5399b65 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 07:16:15 +0300 Subject: [PATCH 107/157] Update cleanup.js --- scripts/commands/database/cleanup.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/commands/database/cleanup.js b/scripts/commands/database/cleanup.js index ede11d701..5b23f5233 100644 --- a/scripts/commands/database/cleanup.js +++ b/scripts/commands/database/cleanup.js @@ -9,12 +9,12 @@ async function main() { let removed = 0 const buffer = {} for (const stream of streams) { - const duplicate = buffer[stream.channel_id] - if (duplicate && ['offline', 'timeout'].includes(stream.status.code)) { + const duplicate = buffer[stream.channel] + if (duplicate && !stream.is_online) { await db.streams.remove({ _id: stream._id }) removed++ } else { - buffer[stream.channel_id] = stream + buffer[stream.channel] = stream } } db.streams.compact() From a7b02697ab396869a19805ab8a038ce0a3c7fc97 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 07:16:59 +0300 Subject: [PATCH 108/157] Update export.js --- scripts/commands/database/export.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/commands/database/export.js b/scripts/commands/database/export.js index ddb53848c..9e745d097 100644 --- a/scripts/commands/database/export.js +++ b/scripts/commands/database/export.js @@ -12,12 +12,12 @@ async function main() { channel: stream.channel, title: stream.title, url: stream.url, + http_referrer: stream.http_referrer, + user_agent: stream.user_agent, + is_online: stream.is_online, width: stream.width, height: stream.height, - bitrate: stream.bitrate, - is_online: stream.is_online, - http_referrer: stream.http_referrer, - user_agent: stream.user_agent + bitrate: stream.bitrate } }) From 395f40013ad3d3ffa0bd720bc5a1b264ea31b015 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 07:23:40 +0300 Subject: [PATCH 109/157] Update playlist/update.js --- scripts/commands/playlist/update.js | 6 +----- .../input/database/playlist_update.streams.db | 12 ++++++------ 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/scripts/commands/playlist/update.js b/scripts/commands/playlist/update.js index a5ebf2a52..3b72a31f2 100644 --- a/scripts/commands/playlist/update.js +++ b/scripts/commands/playlist/update.js @@ -6,11 +6,7 @@ const _ = require('lodash') async function main() { await db.streams.load() let streams = await db.streams.find({}) - streams = orderBy( - streams, - ['channel_name', i => i.status.level, i => i.resolution.height, 'url'], - ['asc', 'asc', 'desc', 'asc'] - ) + streams = orderBy(streams, ['title', 'height', 'url'], ['asc', 'desc', 'asc']) const files = _.groupBy(streams, 'filepath') for (const filepath in files) { diff --git a/tests/__data__/input/database/playlist_update.streams.db b/tests/__data__/input/database/playlist_update.streams.db index 017c7ea3e..b5fde3087 100644 --- a/tests/__data__/input/database/playlist_update.streams.db +++ b/tests/__data__/input/database/playlist_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Not 24/7]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV (720p) [Offline]","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD (480p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":480,"width":640,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From 9a95ff55a5a9b2fec0134be769873332757a2d66 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 10:22:50 +0300 Subject: [PATCH 110/157] Update db/cleanup.js --- scripts/commands/database/cleanup.js | 12 ++++++------ .../__data__/expected/database/db_cleanup.streams.db | 10 +++++----- tests/__data__/input/database/db_cleanup.streams.db | 12 ++++++------ 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/scripts/commands/database/cleanup.js b/scripts/commands/database/cleanup.js index 5b23f5233..cb527a3ad 100644 --- a/scripts/commands/database/cleanup.js +++ b/scripts/commands/database/cleanup.js @@ -1,4 +1,5 @@ const { db, logger } = require('../../core') +const _ = require('lodash') async function main() { logger.info(`loading streams...`) @@ -7,16 +8,15 @@ async function main() { logger.info(`removing broken links...`) let removed = 0 - const buffer = {} - for (const stream of streams) { - const duplicate = buffer[stream.channel] - if (duplicate && !stream.is_online) { + const failed = _.filter(streams, { status: 'error' }) + for (const stream of failed) { + const hasDuplicate = _.find(streams, s => s.channel === stream.channel && s.status !== 'error') + if (hasDuplicate) { await db.streams.remove({ _id: stream._id }) removed++ - } else { - buffer[stream.channel] = stream } } + db.streams.compact() logger.info(`removed ${removed} links`) diff --git a/tests/__data__/expected/database/db_cleanup.streams.db b/tests/__data__/expected/database/db_cleanup.streams.db index 3751ae9d3..9dac2dd73 100644 --- a/tests/__data__/expected/database/db_cleanup.streams.db +++ b/tests/__data__/expected/database/db_cleanup.streams.db @@ -1,5 +1,5 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"blocked","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"status":"timeout","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/database/db_cleanup.streams.db b/tests/__data__/input/database/db_cleanup.streams.db index f000c6775..492f66757 100644 --- a/tests/__data__/input/database/db_cleanup.streams.db +++ b/tests/__data__/input/database/db_cleanup.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"status":"error","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"blocked","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"status":"timeout","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} From ce46e88939c1759f35d24e5c967cd958fc769c47 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 10:29:11 +0300 Subject: [PATCH 111/157] Update database/export.js --- scripts/commands/database/export.js | 5 ++--- tests/__data__/expected/.gh-pages/streams.json | 2 +- tests/__data__/input/database/db_export.streams.db | 12 ++++++------ 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/scripts/commands/database/export.js b/scripts/commands/database/export.js index 9e745d097..50991df29 100644 --- a/scripts/commands/database/export.js +++ b/scripts/commands/database/export.js @@ -6,15 +6,14 @@ const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' async function main() { await db.streams.load() let streams = await db.streams.find({}) - streams = _.sortBy(streams, 'channel_id') + streams = _.sortBy(streams, 'channel') streams = streams.map(stream => { return { channel: stream.channel, - title: stream.title, url: stream.url, http_referrer: stream.http_referrer, user_agent: stream.user_agent, - is_online: stream.is_online, + status: stream.status, width: stream.width, height: stream.height, bitrate: stream.bitrate diff --git a/tests/__data__/expected/.gh-pages/streams.json b/tests/__data__/expected/.gh-pages/streams.json index 4818bcd9c..216a03eed 100644 --- a/tests/__data__/expected/.gh-pages/streams.json +++ b/tests/__data__/expected/.gh-pages/streams.json @@ -1 +1 @@ -[{"channel":"LDPRTV.ru","title":"ЛДПР ТВ","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"BBCNews.uk","title":"BBC News HD","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"is_online":true},{"channel":"AndorraTV.ad","title":"ATV","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"BBCNewsHD.ad","title":"BBC News HD","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"width":1024,"height":576,"bitrate":0},{"channel":"KayhanTV.af","title":"Kayhan TV","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":false},{"channel":"Sharq.af","title":"Sharq","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"width":1280,"height":720,"bitrate":2226543}] \ No newline at end of file +[{"channel":"AndorraTV.ad","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"status":"error"},{"channel":"BBCNews.uk","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"status":"blocked"},{"channel":"BBCNewsHD.ad","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"status":"online","width":1024,"height":576,"bitrate":0},{"channel":"KayhanTV.af","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"error"},{"channel":"LDPRTV.ru","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"error"},{"channel":"Sharq.af","url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","width":1280,"height":720,"bitrate":2226543}] \ No newline at end of file diff --git a/tests/__data__/input/database/db_export.streams.db b/tests/__data__/input/database/db_export.streams.db index 3c66b1601..1318fecae 100644 --- a/tests/__data__/input/database/db_export.streams.db +++ b/tests/__data__/input/database/db_export.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"error"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","status":"error"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","status":"online"} From 512885b251552a32c80c96e659f9a4f761a5afa0 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 10:33:16 +0300 Subject: [PATCH 112/157] Update database/update.js --- scripts/commands/database/update.js | 27 +++++++++---------- .../expected/database/db_update.streams.db | 12 ++++----- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index 5fadafeb0..6000e9b0f 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -1,5 +1,4 @@ const { db, store, parser, file, logger } = require('../../core') -const statuses = require('../../data/statuses') const _ = require('lodash') const items = [] @@ -80,8 +79,8 @@ async function updateStreams(items = [], results = {}, origins = {}) { if (result) { const { error, streams, requests } = result - const { is_online } = parseError(error) - stream.set('is_online', { is_online }) + const status = parseStatus(error) + stream.set('status', { status }) if (streams.length) { const { width, height, bitrate } = parseStreams(streams) @@ -136,28 +135,28 @@ function parseStreams(streams) { streams = streams.filter(s => s.codec_type === 'video') streams = _.orderBy( streams, - ['height', s => (s.tags.variant_bitrate ? parseInt(s.tags.variant_bitrate) : 0)], + ['height', s => (s.tags && s.tags.variant_bitrate ? parseInt(s.tags.variant_bitrate) : 0)], ['desc', 'desc'] ) const data = _.head(streams) if (data) { - const bitrate = data.tags.variant_bitrate ? parseInt(data.tags.variant_bitrate) : 0 + const bitrate = data.tags && data.tags.variant_bitrate ? parseInt(data.tags.variant_bitrate) : 0 return { width: data.width, height: data.height, bitrate } } return {} } -function parseError(error) { - const output = { - is_online: true, - message: error - } +function parseStatus(error) { + if (!error) return 'online' - if (error && !error.includes('403')) { - output.is_online = false + switch (error) { + case 'Operation timed out': + return 'timeout' + case 'Server returned 403 Forbidden (access denied)': + return 'blocked' + default: + return 'error' } - - return output } diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index afcc449b5..38ecd7198 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","is_online":false} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","is_online":true} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","is_online":false} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","is_online":true,"bitrate":0,"width":1024,"height":576} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","is_online":false} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","is_online":true} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"timeout"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","status":"error"} +{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","status":"online"} From a0eca2bebeeba77fe2c5143a90ec2df9399d5e3f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 10:33:44 +0300 Subject: [PATCH 113/157] Update playlist/generate.js --- scripts/commands/playlist/generate.js | 2 +- .../database/playlist_generate.streams.db | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/scripts/commands/playlist/generate.js b/scripts/commands/playlist/generate.js index cb4e66523..35ef0c450 100644 --- a/scripts/commands/playlist/generate.js +++ b/scripts/commands/playlist/generate.js @@ -31,7 +31,7 @@ main() async function loadStreams() { await db.streams.load() - let streams = await db.streams.find({ is_online: true }) + let streams = await db.streams.find({ status: { $in: ['online', 'timeout', 'blocked'] } }) streams = orderBy(streams, ['channel', 'height', 'url'], ['asc', 'desc', 'asc']) streams = _.uniqBy(streams, stream => stream.channel || _.uniqueId()) diff --git a/tests/__data__/input/database/playlist_generate.streams.db b/tests/__data__/input/database/playlist_generate.streams.db index 30989b187..ffb6efaf5 100644 --- a/tests/__data__/input/database/playlist_generate.streams.db +++ b/tests/__data__/input/database/playlist_generate.streams.db @@ -1,11 +1,11 @@ -{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD (720p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"3TbieV1ptnZVCId5"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"is_broken":true,"updated":false,"height":720,"width":1280,"is_online":false,"cluster_id":1,"_id":"I6cjG2xCBRFFP44z"} -{"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF5"} -{"title":"Tastemade","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPAB"} -{"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/channels/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgPF9"} -{"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"is_online":true,"cluster_id":1,"_id":"2ST8btby3mmsgP49"} -{"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"is_online":true,"cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} -{"title":"Zoo (720p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http_referrer":null,"user_agent":null,"height":720,"width":1280,"is_online":true,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCId5"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"error","cluster_id":1,"_id":"I6cjG2xCBRFFP44z"} +{"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF5"} +{"title":"Tastemade","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPAB"} +{"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/channels/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF9"} +{"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgP49"} +{"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} +{"title":"Zoo (720p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} From 8ac494f574fac7aa01e601a46b592f64b7f2ae7b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 11:50:57 +0300 Subject: [PATCH 114/157] Update database/export.js --- scripts/commands/database/export.js | 2 +- tests/__data__/expected/{.gh-pages => .api}/streams.json | 0 tests/commands/database/export.test.js | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/__data__/expected/{.gh-pages => .api}/streams.json (100%) diff --git a/scripts/commands/database/export.js b/scripts/commands/database/export.js index 50991df29..ccdfaa7d1 100644 --- a/scripts/commands/database/export.js +++ b/scripts/commands/database/export.js @@ -1,7 +1,7 @@ const { logger, db, file } = require('../../core') const _ = require('lodash') -const PUBLIC_DIR = process.env.PUBLIC_DIR || '.gh-pages' +const PUBLIC_DIR = process.env.PUBLIC_DIR || '.api' async function main() { await db.streams.load() diff --git a/tests/__data__/expected/.gh-pages/streams.json b/tests/__data__/expected/.api/streams.json similarity index 100% rename from tests/__data__/expected/.gh-pages/streams.json rename to tests/__data__/expected/.api/streams.json diff --git a/tests/commands/database/export.test.js b/tests/commands/database/export.test.js index ae7c00b56..b0ab866ed 100644 --- a/tests/commands/database/export.test.js +++ b/tests/commands/database/export.test.js @@ -9,13 +9,13 @@ beforeEach(() => { ) const stdout = execSync( - 'DB_DIR=tests/__data__/output PUBLIC_DIR=tests/__data__/output/.gh-pages npm run db:export', + 'DB_DIR=tests/__data__/output PUBLIC_DIR=tests/__data__/output/.api npm run db:export', { encoding: 'utf8' } ) }) it('can create streams.json', () => { - expect(content(`output/.gh-pages/streams.json`)).toBe(content(`expected/.gh-pages/streams.json`)) + expect(content(`output/.api/streams.json`)).toBe(content(`expected/.api/streams.json`)) }) function content(filepath) { From 7d666b5fecafb08ac7b32c6db4a72a1c86c4099f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 12:01:25 +0300 Subject: [PATCH 115/157] Add input/data --- tests/__data__/input/data/blocklist.json | 644 ++++++++++++++++++++++ tests/__data__/input/data/categories.json | 1 + tests/__data__/input/data/channels.json | 96 ++++ tests/__data__/input/data/countries.json | 1 + tests/__data__/input/data/guides.json | 1 + tests/__data__/input/data/languages.json | 1 + tests/__data__/input/data/regions.json | 1 + 7 files changed, 745 insertions(+) create mode 100644 tests/__data__/input/data/blocklist.json create mode 100644 tests/__data__/input/data/categories.json create mode 100644 tests/__data__/input/data/channels.json create mode 100644 tests/__data__/input/data/countries.json create mode 100644 tests/__data__/input/data/guides.json create mode 100644 tests/__data__/input/data/languages.json create mode 100644 tests/__data__/input/data/regions.json diff --git a/tests/__data__/input/data/blocklist.json b/tests/__data__/input/data/blocklist.json new file mode 100644 index 000000000..8a2514397 --- /dev/null +++ b/tests/__data__/input/data/blocklist.json @@ -0,0 +1,644 @@ +[ + { + "name": "Animal Planet", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Animal Planet\\b" + }, + { + "name": "Arena 4", + "country": "HU", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Arena( |)4\\b" + }, + { + "name": "Asian Food Network", + "country": "SG", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Asian Food Network\\b" + }, + { + "name": "Astro SuperSport", + "country": "MY", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Astro SuperSport\\b" + }, + { + "name": "Azteca 7", + "country": "MX", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Azteca 7\\b" + }, + { + "name": "beIN Sports", + "country": "QA", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^beIN Sports\\b" + }, + { + "name": "Canal+ Sport", + "country": "FR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Canal( |)+ Sport\\b" + }, + { + "name": "Cooking Channel", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Cooking Channel\\b" + }, + { + "name": "DAZN", + "country": "UK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^DAZN($| [1-4] .*)\\b" + }, + { + "name": "Diema Sport", + "country": "BG", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Diema Sport\\b" + }, + { + "name": "Digi Sport", + "country": "RO", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Digi Sport\\b" + }, + { + "name": "Discovery Asia", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Asia\\b" + }, + { + "name": "Discovery Channel", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Channel\\b" + }, + { + "name": "Discovery Civiliztion", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Civiliztion\\b" + }, + { + "name": "Discovery en Espanol", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery en Espanol\\b" + }, + { + "name": "Discovery Family", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Family\\b" + }, + { + "name": "Discovery Historia", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Historia\\b" + }, + { + "name": "Discovery History", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery History\\b" + }, + { + "name": "Discovery Home and Health", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Home and Health\\b" + }, + { + "name": "Discovery Life", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Life\\b" + }, + { + "name": "Discovery Science", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Science\\b" + }, + { + "name": "Discovery Shed", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Shed\\b" + }, + { + "name": "Discovery Theater", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Theater\\b" + }, + { + "name": "Discovery Travel and Living", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Travel and Living\\b" + }, + { + "name": "Discovery Turbo Xtra", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery Turbo Xtra\\b" + }, + { + "name": "Discovery World", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery World\\b" + }, + { + "name": "Discovery", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Discovery\\b" + }, + { + "name": "DIY Network", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^DIY Network\\b" + }, + { + "name": "DKiss", + "country": "ES", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^DKiss\\b" + }, + { + "name": "DMax", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^DMax\\b" + }, + { + "name": "Eleven Sports", + "country": "UK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Eleven Sports($| [1-6] .*)\\b" + }, + { + "name": "ESPN", + "country": "US", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^ESPN($|[1-3]| .*)\\b" + }, + { + "name": "Eurosport", + "country": "FR", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Eurosport($| [1-2])\\b" + }, + { + "name": "eve", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^eve\\b" + }, + { + "name": "Familia Discovery", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Familia Discovery\\b" + }, + { + "name": "Fatafeat", + "country": "EG", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Fatafeat\\b" + }, + { + "name": "FEM", + "country": "NO", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^FEM\\b" + }, + { + "name": "Fine Living", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Fine Living\\b" + }, + { + "name": "Flow Sports", + "country": "UK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Flow Sports\\b" + }, + { + "name": "Food Network", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Food Network\\b" + }, + { + "name": "food tv", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^food( |)tv\\b" + }, + { + "name": "Fox Sports", + "country": "US", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Fox Sports\\b" + }, + { + "name": "Frisbee", + "country": "IT", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Frisbee\\b" + }, + { + "name": "Futbol", + "country": "TJ", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^(Futbol|Football TV|ТВ Футбол|Футбол)\\b" + }, + { + "name": "GTV Sports", + "country": "GH", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^GTV Sports\\b" + }, + { + "name": "Giallo", + "country": "IT", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Giallo\\b" + }, + { + "name": "GolfTV", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Golf( |)TV\\b" + }, + { + "name": "HGTV", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^HGTV\\b" + }, + { + "name": "Investigation Discovery", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^(Investigation Discovery|ID Investigation Discovery|ID Investigation|ID)\\b" + }, + { + "name": "K2", + "country": "IT", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^K2\\b" + }, + { + "name": "Living Channel", + "country": "NZ", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Living Channel\\b" + }, + { + "name": "Local Now", + "country": "US", + "reference": "https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf", + "regex": "^Local( |)Now" + }, + { + "name": "LookSport", + "country": "RO", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Look( |)Sport\\b" + }, + { + "name": "Magnolia Network", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/5994", + "regex": "^Magnolia( |)Network\\b" + }, + { + "name": "Mango", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Mango\\b" + }, + { + "name": "Match!", + "country": "RU", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^(Match|Матч)\\b" + }, + { + "name": "Motortrend", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Motortrend\\b" + }, + { + "name": "Mola TV", + "country": "ID", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Mola TV($| .*)\\b" + }, + { + "name": "Movistar Liga de Campeones", + "country": "ES", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Movistar Liga de Campeones [1-8]\\b" + }, + { + "name": "Nova Sport", + "country": "CZ", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Nova Sport [1-3]\\b" + }, + { + "name": "Nova Sports", + "country": "GR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Nova Sports [1-6]\\b" + }, + { + "name": "Nove", + "country": "IT", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Nove($| .*)\\b" + }, + { + "name": "PPTV HD 36", + "country": "TH", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^PPTV($| HD)\\b" + }, + { + "name": "One", + "country": "IL", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^One\\b" + }, + { + "name": "OWN", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^(OWN|Oprah)\\b" + }, + { + "name": "Quest Red", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Quest Red\\b" + }, + { + "name": "Quest", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Quest\\b" + }, + { + "name": "Real Time", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Real Time\\b" + }, + { + "name": "SABC Sport ", + "country": "ZA", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^SABC Sport\\b" + }, + { + "name": "Setanta Sports", + "country": "IE", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Setanta Sports($| .*)\\b" + }, + { + "name": "Sky Sports", + "country": "UK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Sky Sports\\b" + }, + { + "name": "Sky Sport Bundesliga", + "country": "DE", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Sky Sport Bundesliga [0-9]+\\b" + }, + { + "name": "Sky TG24", + "country": "IT", + "reference": "https://github.com/iptv-org/iptv/pull/2294", + "regex": "^Sky TG24\\b" + }, + { + "name": "Sony Ten", + "country": "IN", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Sony Ten [1-4]\\b" + }, + { + "name": "Spíler TV", + "country": "HU", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Spíler( |[1-2] )TV\\b" + }, + { + "name": "Šport TV", + "country": "SI", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^(Šport|Sport) TV\\b" + }, + { + "name": "Sport Klub", + "country": "HU", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^(Sport Klub|SK[1-9])\\b" + }, + { + "name": "SportsNet", + "country": "CA", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^SportsNet\\b" + }, + { + "name": "StarHub TV", + "country": "SG", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^StarHub TV\\b" + }, + { + "name": "StarSat", + "country": "ZA", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^StarSat\\b" + }, + { + "name": "StarTimes TV", + "country": "MZ", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^StarTimes TV\\b" + }, + { + "name": "SuperSport", + "country": "AL", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^SuperSport [1-7]\\b" + }, + { + "name": "Tivibu Spor", + "country": "TR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Tivibu Spor\\b" + }, + { + "name": "TLC", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TLC\\b" + }, + { + "name": "Trvl Channel", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Trvl Channel\\b" + }, + { + "name": "TSN", + "country": "MT", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^TSN\\b" + }, + { + "name": "TTV", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TTV\\b" + }, + { + "name": "TV Norge", + "country": "NO", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TV Norge\\b" + }, + { + "name": "TV Varzish", + "country": "TJ", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^(TV Varzish|Varzish TV|Варзиш ТВ)\\b" + }, + { + "name": "TV3 Sport", + "country": "DK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^TV( |)3 Sport\\b" + }, + { + "name": "tvN Asia", + "country": "KR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^tvN($| Asia)\\b" + }, + { + "name": "Tvn 24 Bis", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Tvn(| )24 Bis\\b" + }, + { + "name": "TVN 24", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN 24\\b" + }, + { + "name": "Tvn 7", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Tvn 7\\b" + }, + { + "name": "TVN Extra", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Extra\\b" + }, + { + "name": "TVN Fabula", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Fabula\\b" + }, + { + "name": "TVN Meteo", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Meteo\\b" + }, + { + "name": "TVN Style", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Style\\b" + }, + { + "name": "TVN Turbo", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Turbo\\b" + }, + { + "name": "TVN Warszawa", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN Warszawa\\b" + }, + { + "name": "TVN", + "country": "PL", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^TVN\\b" + }, + { + "name": "V Sport", + "country": "NO", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^V Sport\\b" + }, + { + "name": "Vox", + "country": "NO", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^Vox\\b" + }, + { + "name": "VTV Cab", + "country": "KR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^VTV( |)Cab\\b" + }, + { + "name": "World Discovery", + "country": "US", + "reference": "https://github.com/iptv-org/iptv/issues/1831", + "regex": "^World Discovery\\b" + }, + { + "name": "Xee", + "country": "DK", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^Xee\\b" + }, + { + "name": "XtvN", + "country": "KR", + "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", + "regex": "^X( |)tvN\\b" + } +] diff --git a/tests/__data__/input/data/categories.json b/tests/__data__/input/data/categories.json new file mode 100644 index 000000000..c7feeffd9 --- /dev/null +++ b/tests/__data__/input/data/categories.json @@ -0,0 +1 @@ +[{"id":"auto","name":"Auto"},{"id":"animation","name":"Animation"},{"id":"business","name":"Business"},{"id":"classic","name":"Classic"},{"id":"comedy","name":"Comedy"},{"id":"cooking","name":"Cooking"},{"id":"culture","name":"Culture"},{"id":"documentary","name":"Documentary"},{"id":"education","name":"Education"},{"id":"entertainment","name":"Entertainment"},{"id":"family","name":"Family"},{"id":"general","name":"General"},{"id":"kids","name":"Kids"},{"id":"legislative","name":"Legislative"},{"id":"lifestyle","name":"Lifestyle"},{"id":"movies","name":"Movies"},{"id":"music","name":"Music"},{"id":"news","name":"News"},{"id":"outdoor","name":"Outdoor"},{"id":"relax","name":"Relax"},{"id":"religious","name":"Religious"},{"id":"series","name":"Series"},{"id":"science","name":"Science"},{"id":"shop","name":"Shop"},{"id":"sports","name":"Sports"},{"id":"travel","name":"Travel"},{"id":"weather","name":"Weather"},{"id":"xxx","name":"XXX"}] \ No newline at end of file diff --git a/tests/__data__/input/data/channels.json b/tests/__data__/input/data/channels.json new file mode 100644 index 000000000..b267e0e5c --- /dev/null +++ b/tests/__data__/input/data/channels.json @@ -0,0 +1,96 @@ +[ + { + "id": "AndorraTV.ad", + "name": "Andorra TV", + "network": null, + "country": "AD", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/AD" + ], + "languages": [ + "cat" + ], + "categories": [], + "is_nsfw": false, + "logo": null + }, + { + "id": "BBCNews.uk", + "name": "BBC News", + "network": null, + "country": "UK", + "subdivision": null, + "city": null, + "broadcast_area": [ + "r/INT" + ], + "languages": [ + "eng" + ], + "categories": [ + "news", + "general" + ], + "is_nsfw": false, + "logo": "https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" + }, + { + "id": "LDPRTV.ru", + "name": "LDPR TV", + "network": null, + "country": "RU", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/RU" + ], + "languages": [ + "rus" + ], + "categories": [ + "general" + ], + "is_nsfw": false, + "logo": "https://iptvx.one/icn/ldpr-tv.png" + }, + { + "id": "MeteoMedia.ca", + "name": "MétéoMédia", + "network": null, + "country": "CA", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/CA" + ], + "languages": [ + "fra" + ], + "categories": [ + "weather" + ], + "is_nsfw": false, + "logo": "https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" + }, + { + "id": "VisitXTV.nl", + "name": "Visit-X TV", + "network": null, + "country": "NL", + "subdivision": null, + "city": null, + "broadcast_area": [ + "r/INT" + ], + "languages": [ + "nld" + ], + "categories": [ + "xxx" + ], + "is_nsfw": true, + "logo": "https://i.imgur.com/RJ9wbNF.jpg" + } +] \ No newline at end of file diff --git a/tests/__data__/input/data/countries.json b/tests/__data__/input/data/countries.json new file mode 100644 index 000000000..543f8c685 --- /dev/null +++ b/tests/__data__/input/data/countries.json @@ -0,0 +1 @@ +[{"name":"Afghanistan","code":"AF","lang":"pus","flag":"🇦🇫"},{"name":"Albania","code":"AL","lang":"sqi","flag":"🇦🇱"},{"name":"Algeria","code":"DZ","lang":"ara","flag":"🇩🇿"},{"name":"American Samoa","code":"AS","lang":"eng","flag":"🇦🇸"},{"name":"Andorra","code":"AD","lang":"cat","flag":"🇦🇩"},{"name":"Angola","code":"AO","lang":"por","flag":"🇦🇴"},{"name":"Anguilla","code":"AI","lang":"eng","flag":"🇦🇮"},{"name":"Antarctica","code":"AQ","lang":"eng","flag":"🇦🇶"},{"name":"Antigua and Barbuda","code":"AG","lang":"eng","flag":"🇦🇬"},{"name":"Argentina","code":"AR","lang":"spa","flag":"🇦🇷"},{"name":"Armenia","code":"AM","lang":"hye","flag":"🇦🇲"},{"name":"Aruba","code":"AW","lang":"nld","flag":"🇦🇼"},{"name":"Australia","code":"AU","lang":"eng","flag":"🇦🇺"},{"name":"Austria","code":"AT","lang":"deu","flag":"🇦🇹"},{"name":"Azerbaijan","code":"AZ","lang":"aze","flag":"🇦🇿"},{"name":"Bahamas","code":"BS","lang":"eng","flag":"🇧🇸"},{"name":"Bahrain","code":"BH","lang":"ara","flag":"🇧🇭"},{"name":"Bangladesh","code":"BD","lang":"ben","flag":"🇧🇩"},{"name":"Barbados","code":"BB","lang":"eng","flag":"🇧🇧"},{"name":"Belarus","code":"BY","lang":"bel","flag":"🇧🇾"},{"name":"Belgium","code":"BE","lang":"nld","flag":"🇧🇪"},{"name":"Belize","code":"BZ","lang":"eng","flag":"🇧🇿"},{"name":"Benin","code":"BJ","lang":"fra","flag":"🇧🇯"},{"name":"Bermuda","code":"BM","lang":"eng","flag":"🇧🇲"},{"name":"Bhutan","code":"BT","lang":"dzo","flag":"🇧🇹"},{"name":"Bolivia","code":"BO","lang":"spa","flag":"🇧🇴"},{"name":"Bonaire","code":"BQ","lang":"nld","flag":"🇧🇶"},{"name":"Bosnia and Herzegovina","code":"BA","lang":"bos","flag":"🇧🇦"},{"name":"Botswana","code":"BW","lang":"eng","flag":"🇧🇼"},{"name":"Bouvet Island","code":"BV","lang":"nor","flag":"🇧🇻"},{"name":"Brazil","code":"BR","lang":"por","flag":"🇧🇷"},{"name":"British Indian Ocean Territory","code":"IO","lang":"eng","flag":"🇮🇴"},{"name":"British Virgin Islands","code":"VG","lang":"eng","flag":"🇻🇬"},{"name":"Brunei","code":"BN","lang":"msa","flag":"🇧🇳"},{"name":"Bulgaria","code":"BG","lang":"bul","flag":"🇧🇬"},{"name":"Burkina Faso","code":"BF","lang":"fra","flag":"🇧🇫"},{"name":"Burundi","code":"BI","lang":"fra","flag":"🇧🇮"},{"name":"Cambodia","code":"KH","lang":"khm","flag":"🇰🇭"},{"name":"Cameroon","code":"CM","lang":"eng","flag":"🇨🇲"},{"name":"Canada","code":"CA","lang":"eng","flag":"🇨🇦"},{"name":"Cape Verde","code":"CV","lang":"por","flag":"🇨🇻"},{"name":"Cayman Islands","code":"KY","lang":"eng","flag":"🇰🇾"},{"name":"Central African Republic","code":"CF","lang":"fra","flag":"🇨🇫"},{"name":"Chad","code":"TD","lang":"fra","flag":"🇹🇩"},{"name":"Chile","code":"CL","lang":"spa","flag":"🇨🇱"},{"name":"China","code":"CN","lang":"zho","flag":"🇨🇳"},{"name":"Christmas Island","code":"CX","lang":"eng","flag":"🇨🇽"},{"name":"Cocos (Keeling) Islands","code":"CC","lang":"eng","flag":"🇨🇨"},{"name":"Colombia","code":"CO","lang":"spa","flag":"🇨🇴"},{"name":"Comoros","code":"KM","lang":"ara","flag":"🇰🇲"},{"name":"Cook Islands","code":"CK","lang":"eng","flag":"🇨🇰"},{"name":"Costa Rica","code":"CR","lang":"spa","flag":"🇨🇷"},{"name":"Croatia","code":"HR","lang":"hrv","flag":"🇭🇷"},{"name":"Cuba","code":"CU","lang":"spa","flag":"🇨🇺"},{"name":"Curacao","code":"CW","lang":"nld","flag":"🇨🇼"},{"name":"Cyprus","code":"CY","lang":"ell","flag":"🇨🇾"},{"name":"Czech Republic","code":"CZ","lang":"ces","flag":"🇨🇿"},{"name":"Democratic Republic of the Congo","code":"CD","lang":"fra","flag":"🇨🇩"},{"name":"Denmark","code":"DK","lang":"dan","flag":"🇩🇰"},{"name":"Djibouti","code":"DJ","lang":"fra","flag":"🇩🇯"},{"name":"Dominica","code":"DM","lang":"eng","flag":"🇩🇲"},{"name":"Dominican Republic","code":"DO","lang":"spa","flag":"🇩🇴"},{"name":"East Timor","code":"TL","lang":"por","flag":"🇹🇱"},{"name":"Ecuador","code":"EC","lang":"spa","flag":"🇪🇨"},{"name":"Egypt","code":"EG","lang":"ara","flag":"🇪🇬"},{"name":"El Salvador","code":"SV","lang":"spa","flag":"🇸🇻"},{"name":"Equatorial Guinea","code":"GQ","lang":"spa","flag":"🇬🇶"},{"name":"Eritrea","code":"ER","lang":"tir","flag":"🇪🇷"},{"name":"Estonia","code":"EE","lang":"est","flag":"🇪🇪"},{"name":"Ethiopia","code":"ET","lang":"amh","flag":"🇪🇹"},{"name":"Falkland Islands","code":"FK","lang":"eng","flag":"🇫🇰"},{"name":"Faroe Islands","code":"FO","lang":"fao","flag":"🇫🇴"},{"name":"Fiji","code":"FJ","lang":"eng","flag":"🇫🇯"},{"name":"Finland","code":"FI","lang":"fin","flag":"🇫🇮"},{"name":"France","code":"FR","lang":"fra","flag":"🇫🇷"},{"name":"French Guiana","code":"GF","lang":"fra","flag":"🇬🇫"},{"name":"French Polynesia","code":"PF","lang":"fra","flag":"🇵🇫"},{"name":"French Southern Territories","code":"TF","lang":"fra","flag":"🇹🇫"},{"name":"Gabon","code":"GA","lang":"fra","flag":"🇬🇦"},{"name":"Gambia","code":"GM","lang":"eng","flag":"🇬🇲"},{"name":"Georgia","code":"GE","lang":"kat","flag":"🇬🇪"},{"name":"Germany","code":"DE","lang":"deu","flag":"🇩🇪"},{"name":"Ghana","code":"GH","lang":"eng","flag":"🇬🇭"},{"name":"Gibraltar","code":"GI","lang":"eng","flag":"🇬🇮"},{"name":"Greece","code":"GR","lang":"ell","flag":"🇬🇷"},{"name":"Greenland","code":"GL","lang":"kal","flag":"🇬🇱"},{"name":"Grenada","code":"GD","lang":"eng","flag":"🇬🇩"},{"name":"Guadeloupe","code":"GP","lang":"fra","flag":"🇬🇵"},{"name":"Guam","code":"GU","lang":"eng","flag":"🇬🇺"},{"name":"Guatemala","code":"GT","lang":"spa","flag":"🇬🇹"},{"name":"Guernsey","code":"GG","lang":"eng","flag":"🇬🇬"},{"name":"Guinea","code":"GN","lang":"fra","flag":"🇬🇳"},{"name":"Guinea-Bissau","code":"GW","lang":"por","flag":"🇬🇼"},{"name":"Guyana","code":"GY","lang":"eng","flag":"🇬🇾"},{"name":"Haiti","code":"HT","lang":"fra","flag":"🇭🇹"},{"name":"Heard Island and McDonald Islands","code":"HM","lang":"eng","flag":"🇭🇲"},{"name":"Honduras","code":"HN","lang":"spa","flag":"🇭🇳"},{"name":"Hong Kong","code":"HK","lang":"zho","flag":"🇭🇰"},{"name":"Hungary","code":"HU","lang":"hun","flag":"🇭🇺"},{"name":"Iceland","code":"IS","lang":"isl","flag":"🇮🇸"},{"name":"India","code":"IN","lang":"hin","flag":"🇮🇳"},{"name":"Indonesia","code":"ID","lang":"ind","flag":"🇮🇩"},{"name":"Iran","code":"IR","lang":"fas","flag":"🇮🇷"},{"name":"Iraq","code":"IQ","lang":"ara","flag":"🇮🇶"},{"name":"Ireland","code":"IE","lang":"gle","flag":"🇮🇪"},{"name":"Isle of Man","code":"IM","lang":"eng","flag":"🇮🇲"},{"name":"Israel","code":"IL","lang":"heb","flag":"🇮🇱"},{"name":"Italy","code":"IT","lang":"ita","flag":"🇮🇹"},{"name":"Ivory Coast","code":"CI","lang":"fra","flag":"🇨🇮"},{"name":"Jamaica","code":"JM","lang":"eng","flag":"🇯🇲"},{"name":"Japan","code":"JP","lang":"jpn","flag":"🇯🇵"},{"name":"Jersey","code":"JE","lang":"eng","flag":"🇯🇪"},{"name":"Jordan","code":"JO","lang":"ara","flag":"🇯🇴"},{"name":"Kazakhstan","code":"KZ","lang":"kaz","flag":"🇰🇿"},{"name":"Kenya","code":"KE","lang":"eng","flag":"🇰🇪"},{"name":"Kiribati","code":"KI","lang":"eng","flag":"🇰🇮"},{"name":"Kosovo","code":"XK","lang":"sqi","flag":"🇽🇰"},{"name":"Kuwait","code":"KW","lang":"ara","flag":"🇰🇼"},{"name":"Kyrgyzstan","code":"KG","lang":"kir","flag":"🇰🇬"},{"name":"Laos","code":"LA","lang":"lao","flag":"🇱🇦"},{"name":"Latvia","code":"LV","lang":"lav","flag":"🇱🇻"},{"name":"Lebanon","code":"LB","lang":"ara","flag":"🇱🇧"},{"name":"Lesotho","code":"LS","lang":"eng","flag":"🇱🇸"},{"name":"Liberia","code":"LR","lang":"eng","flag":"🇱🇷"},{"name":"Libya","code":"LY","lang":"ara","flag":"🇱🇾"},{"name":"Liechtenstein","code":"LI","lang":"deu","flag":"🇱🇮"},{"name":"Lithuania","code":"LT","lang":"lit","flag":"🇱🇹"},{"name":"Luxembourg","code":"LU","lang":"fra","flag":"🇱🇺"},{"name":"Macao","code":"MO","lang":"zho","flag":"🇲🇴"},{"name":"Madagascar","code":"MG","lang":"fra","flag":"🇲🇬"},{"name":"Malawi","code":"MW","lang":"eng","flag":"🇲🇼"},{"name":"Malaysia","code":"MY","lang":"msa","flag":"🇲🇾"},{"name":"Maldives","code":"MV","lang":"div","flag":"🇲🇻"},{"name":"Mali","code":"ML","lang":"fra","flag":"🇲🇱"},{"name":"Malta","code":"MT","lang":"mlt","flag":"🇲🇹"},{"name":"Marshall Islands","code":"MH","lang":"eng","flag":"🇲🇭"},{"name":"Martinique","code":"MQ","lang":"fra","flag":"🇲🇶"},{"name":"Mauritania","code":"MR","lang":"ara","flag":"🇲🇷"},{"name":"Mauritius","code":"MU","lang":"eng","flag":"🇲🇺"},{"name":"Mayotte","code":"YT","lang":"fra","flag":"🇾🇹"},{"name":"Mexico","code":"MX","lang":"spa","flag":"🇲🇽"},{"name":"Micronesia","code":"FM","lang":"eng","flag":"🇫🇲"},{"name":"Moldova","code":"MD","lang":"ron","flag":"🇲🇩"},{"name":"Monaco","code":"MC","lang":"fra","flag":"🇲🇨"},{"name":"Mongolia","code":"MN","lang":"mon","flag":"🇲🇳"},{"name":"Montenegro","code":"ME","lang":"srp","flag":"🇲🇪"},{"name":"Montserrat","code":"MS","lang":"eng","flag":"🇲🇸"},{"name":"Morocco","code":"MA","lang":"ara","flag":"🇲🇦"},{"name":"Mozambique","code":"MZ","lang":"por","flag":"🇲🇿"},{"name":"Myanmar (Burma)","code":"MM","lang":"mya","flag":"🇲🇲"},{"name":"Namibia","code":"NA","lang":"eng","flag":"🇳🇦"},{"name":"Nauru","code":"NR","lang":"eng","flag":"🇳🇷"},{"name":"Nepal","code":"NP","lang":"nep","flag":"🇳🇵"},{"name":"Netherlands","code":"NL","lang":"nld","flag":"🇳🇱"},{"name":"New Caledonia","code":"NC","lang":"fra","flag":"🇳🇨"},{"name":"New Zealand","code":"NZ","lang":"eng","flag":"🇳🇿"},{"name":"Nicaragua","code":"NI","lang":"spa","flag":"🇳🇮"},{"name":"Niger","code":"NE","lang":"fra","flag":"🇳🇪"},{"name":"Nigeria","code":"NG","lang":"eng","flag":"🇳🇬"},{"name":"Niue","code":"NU","lang":"eng","flag":"🇳🇺"},{"name":"Norfolk Island","code":"NF","lang":"eng","flag":"🇳🇫"},{"name":"North Korea","code":"KP","lang":"kor","flag":"🇰🇵"},{"name":"North Macedonia","code":"MK","lang":"mkd","flag":"🇲🇰"},{"name":"Northern Mariana Islands","code":"MP","lang":"eng","flag":"🇲🇵"},{"name":"Norway","code":"NO","lang":"nor","flag":"🇳🇴"},{"name":"Oman","code":"OM","lang":"ara","flag":"🇴🇲"},{"name":"Pakistan","code":"PK","lang":"eng","flag":"🇵🇰"},{"name":"Palau","code":"PW","lang":"eng","flag":"🇵🇼"},{"name":"Palestine","code":"PS","lang":"ara","flag":"🇵🇸"},{"name":"Panama","code":"PA","lang":"spa","flag":"🇵🇦"},{"name":"Papua New Guinea","code":"PG","lang":"eng","flag":"🇵🇬"},{"name":"Paraguay","code":"PY","lang":"spa","flag":"🇵🇾"},{"name":"Peru","code":"PE","lang":"spa","flag":"🇵🇪"},{"name":"Philippines","code":"PH","lang":"eng","flag":"🇵🇭"},{"name":"Pitcairn Islands","code":"PN","lang":"eng","flag":"🇵🇳"},{"name":"Poland","code":"PL","lang":"pol","flag":"🇵🇱"},{"name":"Portugal","code":"PT","lang":"por","flag":"🇵🇹"},{"name":"Puerto Rico","code":"PR","lang":"spa","flag":"🇵🇷"},{"name":"Qatar","code":"QA","lang":"ara","flag":"🇶🇦"},{"name":"Republic of the Congo","code":"CG","lang":"fra","flag":"🇨🇬"},{"name":"Romania","code":"RO","lang":"ron","flag":"🇷🇴"},{"name":"Russia","code":"RU","lang":"rus","flag":"🇷🇺"},{"name":"Rwanda","code":"RW","lang":"kin","flag":"🇷🇼"},{"name":"Réunion","code":"RE","lang":"fra","flag":"🇷🇪"},{"name":"Saint Barthélemy","code":"BL","lang":"fra","flag":"🇧🇱"},{"name":"Saint Helena","code":"SH","lang":"eng","flag":"🇸🇭"},{"name":"Saint Kitts and Nevis","code":"KN","lang":"eng","flag":"🇰🇳"},{"name":"Saint Lucia","code":"LC","lang":"eng","flag":"🇱🇨"},{"name":"Saint Martin","code":"MF","lang":"eng","flag":"🇲🇫"},{"name":"Saint Pierre and Miquelon","code":"PM","lang":"fra","flag":"🇵🇲"},{"name":"Saint Vincent and the Grenadines","code":"VC","lang":"eng","flag":"🇻🇨"},{"name":"Samoa","code":"WS","lang":"smo","flag":"🇼🇸"},{"name":"San Marino","code":"SM","lang":"ita","flag":"🇸🇲"},{"name":"Saudi Arabia","code":"SA","lang":"ara","flag":"🇸🇦"},{"name":"Senegal","code":"SN","lang":"fra","flag":"🇸🇳"},{"name":"Serbia","code":"RS","lang":"srp","flag":"🇷🇸"},{"name":"Seychelles","code":"SC","lang":"fra","flag":"🇸🇨"},{"name":"Sierra Leone","code":"SL","lang":"eng","flag":"🇸🇱"},{"name":"Singapore","code":"SG","lang":"eng","flag":"🇸🇬"},{"name":"Sint Maarten","code":"SX","lang":"nld","flag":"🇸🇽"},{"name":"Slovakia","code":"SK","lang":"slk","flag":"🇸🇰"},{"name":"Slovenia","code":"SI","lang":"slv","flag":"🇸🇮"},{"name":"Solomon Islands","code":"SB","lang":"eng","flag":"🇸🇧"},{"name":"Somalia","code":"SO","lang":"som","flag":"🇸🇴"},{"name":"South Africa","code":"ZA","lang":"afr","flag":"🇿🇦"},{"name":"South Georgia and the South Sandwich Islands","code":"GS","lang":"eng","flag":"🇬🇸"},{"name":"South Korea","code":"KR","lang":"kor","flag":"🇰🇷"},{"name":"South Sudan","code":"SS","lang":"eng","flag":"🇸🇸"},{"name":"Spain","code":"ES","lang":"spa","flag":"🇪🇸"},{"name":"Sri Lanka","code":"LK","lang":"sin","flag":"🇱🇰"},{"name":"Sudan","code":"SD","lang":"ara","flag":"🇸🇩"},{"name":"Suriname","code":"SR","lang":"nld","flag":"🇸🇷"},{"name":"Svalbard and Jan Mayen","code":"SJ","lang":"nor","flag":"🇸🇯"},{"name":"Swaziland","code":"SZ","lang":"eng","flag":"🇸🇿"},{"name":"Sweden","code":"SE","lang":"swe","flag":"🇸🇪"},{"name":"Switzerland","code":"CH","lang":"deu","flag":"🇨🇭"},{"name":"Syria","code":"SY","lang":"ara","flag":"🇸🇾"},{"name":"São Tomé and Príncipe","code":"ST","lang":"por","flag":"🇸🇹"},{"name":"Taiwan","code":"TW","lang":"zho","flag":"🇹🇼"},{"name":"Tajikistan","code":"TJ","lang":"tgk","flag":"🇹🇯"},{"name":"Tanzania","code":"TZ","lang":"swa","flag":"🇹🇿"},{"name":"Thailand","code":"TH","lang":"tha","flag":"🇹🇭"},{"name":"Togo","code":"TG","lang":"fra","flag":"🇹🇬"},{"name":"Tokelau","code":"TK","lang":"eng","flag":"🇹🇰"},{"name":"Tonga","code":"TO","lang":"eng","flag":"🇹🇴"},{"name":"Trinidad and Tobago","code":"TT","lang":"eng","flag":"🇹🇹"},{"name":"Tunisia","code":"TN","lang":"ara","flag":"🇹🇳"},{"name":"Turkey","code":"TR","lang":"tur","flag":"🇹🇷"},{"name":"Turkmenistan","code":"TM","lang":"tuk","flag":"🇹🇲"},{"name":"Turks and Caicos Islands","code":"TC","lang":"eng","flag":"🇹🇨"},{"name":"Tuvalu","code":"TV","lang":"eng","flag":"🇹🇻"},{"name":"U.S. Minor Outlying Islands","code":"UM","lang":"eng","flag":"🇺🇲"},{"name":"U.S. Virgin Islands","code":"VI","lang":"eng","flag":"🇻🇮"},{"name":"Uganda","code":"UG","lang":"eng","flag":"🇺🇬"},{"name":"Ukraine","code":"UA","lang":"ukr","flag":"🇺🇦"},{"name":"United Arab Emirates","code":"AE","lang":"ara","flag":"🇦🇪"},{"name":"United Kingdom","code":"UK","lang":"eng","flag":"🇬🇧"},{"name":"United States","code":"US","lang":"eng","flag":"🇺🇸"},{"name":"Uruguay","code":"UY","lang":"spa","flag":"🇺🇾"},{"name":"Uzbekistan","code":"UZ","lang":"uzb","flag":"🇺🇿"},{"name":"Vanuatu","code":"VU","lang":"bis","flag":"🇻🇺"},{"name":"Vatican City","code":"VA","lang":"ita","flag":"🇻🇦"},{"name":"Venezuela","code":"VE","lang":"spa","flag":"🇻🇪"},{"name":"Vietnam","code":"VN","lang":"vie","flag":"🇻🇳"},{"name":"Wallis and Futuna","code":"WF","lang":"fra","flag":"🇼🇫"},{"name":"Western Sahara","code":"EH","lang":"spa","flag":"🇪🇭"},{"name":"Yemen","code":"YE","lang":"ara","flag":"🇾🇪"},{"name":"Zambia","code":"ZM","lang":"eng","flag":"🇿🇲"},{"name":"Zimbabwe","code":"ZW","lang":"eng","flag":"🇿🇼"},{"name":"Åland","code":"AX","lang":"swe","flag":"🇦🇽"}] \ No newline at end of file diff --git a/tests/__data__/input/data/guides.json b/tests/__data__/input/data/guides.json new file mode 100644 index 000000000..1a2900611 --- /dev/null +++ b/tests/__data__/input/data/guides.json @@ -0,0 +1 @@ +[{"channel":"0.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"0.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"01TV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"100NLTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"101TV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"101TV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"10Bold.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"10Peach.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"10Shake.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"10Sydney.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"10emeRueTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"123TV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"13C.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"13Ulica.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"13emeRue.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"13emeRue.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"13emeRue.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"13thStreetDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"13thStreetDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"13thStreetDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"192TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"1HDMusicTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"1KZNTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"1KZNTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"1MagicAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"1Plus1.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"1Plus2.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"1Plus2.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"1Plus2.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"1Sports.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"1TV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"20Mediaset.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"20Mediaset.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"20Mediaset.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"21TV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"247CanaldeNoticias.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"24Horas.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"24Kanal.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"24KitchenAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"24KitchenBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"24KitchenHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"24KitchenNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"24KitchenPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"24KitchenPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"24KitchenSrbija.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"24KitchenSrbija.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"24KitchenSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"24KitchenTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"24KitchenTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"24Krim.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"24TV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"24TV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"24TV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"2MMonde.ma","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"2MMonde.ma","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"2MMonde.ma","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"2MMonde.ma","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"2Plus2.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"2STV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"2TV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"31Kanal.kz","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"34Telekanal.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"360.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"360.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"360.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"360.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"360TuneBox.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"360TuneBox.us","site":"magticom.ge","lang":"en","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"360TuneBox.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"360TuneBox.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"360TuneBox.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"360TuneBox.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"365dneiTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"3ABNEnglish.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"3ABNLatino.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"3Plus.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"3PlusLatvija.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"3TV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"3sat.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"3sat.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"3sat.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"3sat.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"3sat.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"3sat.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"3sat.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"3sat.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"3sat.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"3sat.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"4E.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"4FunDance.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"4FunDance.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"4FunKids.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"4FunTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"4FunTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"4Music.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"4Music.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"4Plus.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"4Seven.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"4Seven.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"4Seven.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"5Kanal.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"5Kanal.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"5Kanal.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"5Plus.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"5Select.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"5Select.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"5Select.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"5Star.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"5Star.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"5Star.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"5StarMax.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"5StarMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"5StarMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"5TV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"5USA.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"5USA.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"5USA.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"6Plus.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"6eren.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"6ter.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"6ter.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"6ter.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"6ter.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"6terSuisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"78TV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"7Central.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"7D7.ee","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"7Gold.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"7Info.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"7TV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"7TelevisionRegiondeMurcia.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"7Two.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"7flix.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"7mate.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"88Films.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"88TV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"8Kanal.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"8KanalInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"8TV.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"8kanal.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"92News.pk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"92News.pk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"9Go.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"9Life.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"9RushPerth.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"9Volna.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"9XJhakaas.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"9XM.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"9XTashan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"A1.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"A1.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"A1TV.me","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"A1TV.me","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"A2.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"A2.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"A2.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"A2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"A24.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AAVISIE.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AB1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"AB1.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"AB1.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AB3.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"AB3.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ABCAustraliaAsia.au","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"ABCAustraliaAsia.au","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"ABCAustraliaAsia.au","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ABCAustraliaAsia.au","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ABCEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ABCEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ABCKidsNSW.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ABCMe.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ABCNews.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"ABCNews.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ABCNews.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ABCTV.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ABPAnanda.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ABPAsmita.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ABPGanga.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ABPMajha.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ABPNewsIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ABolaTV.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ABolaTV.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ACCNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ADN40.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AEAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"AEAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"AEBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AEChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"AEChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"AEEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AEEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AEEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"AEEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AELatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"AELatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AEWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AHaber.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"AHaber.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"AHaber.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AITInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AITInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AITInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AMCAndina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"AMCAndina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"AMCBalkan.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AMCBalkan.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AMCBalkan.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AMCBalkan.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"AMCBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AMCCesko.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AMCColombia.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"AMCEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AMCEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AMCEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"AMCEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AMCEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"AMCEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"AMCLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AMCMagyarorszag.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"AMCMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"AMCMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AMCMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"AMCPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AMCPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"AMCRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AMCRussia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"AMCRussia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"AMCRussia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"AMCRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"AMCRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"AMCWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AMItvWest.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"AMP2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ANC.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ANTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"ANews.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"APara.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"APara.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"APlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"APlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"APlus.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"APlusIvoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"APlusKidsTV.uk","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ARBGunes.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"ARDAlpha.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ARDAlpha.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ARDAlpha.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ARDAlpha.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ARTAflam1.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ARTAflam1.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ARTAflam2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ARTAmerica.sa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ARTCinema.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ARTCinema.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ARTCinema.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ARTEDeutsch.fr","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ARTEFrancais.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ARTEFrancais.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ARTEFrancais.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ARTEFrancais.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ARTEFrancais.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ARTEFrancais.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ARTEFrancais.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ARTEFrancais.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ARTHekayat.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ARTHekayat.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"ARTHekayat2.sa","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ARTSTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ARTV.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ARYZauq.pk","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ASpor.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"ASpor.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"ASpor.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AT5.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ATB.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ATGLive.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"ATMTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ATNColorsRishtey.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATNIBCTamil.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATNMovies.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATNPunjabi5.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATNPunjabiPlus.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATNZoom.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"ATOSTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ATTSportsNetPittsburgh.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ATTSportsNetRockyMountain.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ATTSportsNetRockyMountain.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ATTSportsNetRockyMountainUtah.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ATTSportsNetRockyMountainWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ATTSportsNetRockyMountainWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ATV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATV.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ATV.at","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ATV.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ATV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ATV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ATV.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ATV.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"ATV2.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ATV2.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ATVAvrupa.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ATVBazmocTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVFilmzone.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVHayTV.us","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVKhaghaliqTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVKinoman.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVPlus.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"ATVSur.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"ATVTavaTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ATVTurkiye.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"ATVTurkiye.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"ATVTurkiye.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ATVTurkiye.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"ATX.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AWE.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AWE.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AWE.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AXNAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AXNAndina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"AXNBlack.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AXNBlack.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AXNBlack.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AXNBlackPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AXNBrazil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AXNBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AXNCentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AXNCentralEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"AXNCentro.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"AXNCzechRepublic.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AXNDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"AXNDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AXNEastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AXNEastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"AXNEastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AXNEastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AXNEastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"AXNEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"AXNEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AXNJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"AXNLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"AXNMovies.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AXNMovies.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AXNMovies.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AXNMystery.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AXNPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AXNPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AXNPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AXNPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"AXNPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AXNRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AXNSpinAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AXNSpinPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AXNSpinRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AXNWhite.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AXNWhite.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AXNWhite.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AXNWhiteEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"AXNWhiteEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AXNWhitePolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AXNWhitePortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"AXSTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AXSTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AXSTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AYVTV.sl","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AajTak.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AajTak.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AakaashAath.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AasthaIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AbkhaziaHD.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AbolTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AbolTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AbolTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AbuDhabiDrama.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AbuDhabiDrama.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AbuDhabiTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AbuDhabiTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AbyaYalaTV.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AccuWeather.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AccuWeatherNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Action.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Action.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Action.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Action.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Action24.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ActionMaxEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ActionMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ActionMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ActiveFamily.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AdaTV.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AddisMediaNetwork.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AdithyaTV.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"Adjarasport1.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Adjarasport2.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AdomTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AdrenalinaSportsNetwork.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AdultChannel.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AdultChannel1.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel3.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel4.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel5.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel6.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultChannel7.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AdultSwimWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Adventure.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Adventure.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AdventureCzechia.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Africa24.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AfricaMagicEpic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AfricaMagicFamily.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"AfricaMagicHausa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicIgbo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AfricaMagicShowcaseAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AfricaMagicUrban.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"AfricaMagicYoruba.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AfricableTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"Africanews.cg","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AfroMusicChannel.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AfroMusicChannel.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AfroMusicChannel.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"AfroMusicChannel.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AfroMusicPop.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AghaniAghaniTV.lb","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AgroPlus.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AgroTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AgroTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AgroTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AgroTV.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"AhaduTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AhlulbaytTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"AhlulbaytTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"AigaioTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"AjaraTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AjaraTV.ge","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"AjaraTV.ge","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"AjoieTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AjwaTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"AkaalChannelUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"AkaalChannelUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"AkiliKids.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AkilliTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AkitTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AksyonTVInternational.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlAanTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlAoulaMiddleEast.ma","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlAoulaMiddleEast.ma","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlDafrahTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlHayat.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlHayat.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlJadeed.lb","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlJadeed.lb","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlKaheraWalNas.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlKaheraWalNas.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlKaheraWalNas.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlKaheraWalNas.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlMajlisTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlMamlakaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlManarTV.lb","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlManarTV.lb","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlMasriyah.eg","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AlNaharDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlNaharDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlNaharTV.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlNaharTV.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlQurainTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlRasheedTV.iq","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlRasheedTV.iq","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlResalah.sa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AlSaeedah.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlSaeedah.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlSafwa.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlSafwa.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlSafwa.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlWoustaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlYawm.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlYawm.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AlafiaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AlankarTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Alarabiya.ae","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Alarabiya.ae","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AlbrandswaardTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AleKinoPlus.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AlephNews.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AlfaOmegaTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AlfaOmegaVision.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"AlfaTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AlfaTV.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"AlhurraTV.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"AlibiIreland.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AlibiUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"AlientoVision.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Alizes.gp","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AljazeeraBalkans.qa","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AljazeeraChannel.qa","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"AljazeeraEnglish.qa","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"AlmaTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AlmatyTV.kz","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"AloTV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"AloTV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"AloTV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"AlpenlandTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AlphaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"AlraiTV.kw","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlraiTV.kw","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Alsace20.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AlsatM.al","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"AlsatM.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"AlsharqiyaTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AlsharqiyaTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Alsumaria.iq","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Alsumaria.iq","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AltenaTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AlternativnaTV.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AlticeStudio.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"AltitudeSports.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AmariTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Amarin34HD.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"AmazonSat.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AmediaHit.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AmediaHit.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"AmediaPremium.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AmediaPremium.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"America.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"AmericaSports.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AmericaSports.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"AmericaTV.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"AmericaTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AmericanHeroesChannelUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AmericasAuctionChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AmericasValueChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AmharaTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AmmanTV.jo","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"AmmanTV.jo","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"AndorraTV.ad","site":"andorradifusio.ad","lang":"ca","url":"https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml"},{"channel":"AnekdotTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"AnhuiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"AnimalPlanetAfrica.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"AnimalPlanetBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AnimalPlanetEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AnimalPlanetEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"AnimalPlanetEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"AnimalPlanetEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"AnimalPlanetEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"AnimalPlanetHDWorldIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AnimalPlanetIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AnimalPlanetJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AnimalPlanetLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"AnimalPlanetPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"AnimalPlanetRossiya.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"AnimalPlanetRossiya.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"AnimalPlanetRossiya.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"AnimalPlanetRossiya.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"AnimalPlanetSoutheastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AnimalPlanetSoutheastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"AnimalPlanetSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AnimalPlanetSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AnimalPlanetSoutheastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"AnimalPlanetUK.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AnimalPlanetUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"AnimalPlanetWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Animaux.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Animaux.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Animaux.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Animaux.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"AnimaxAsia.jp","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AnimaxAsia.jp","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"AnimaxAsia.jp","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AnimaxAsia.jp","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AnimaxJapan.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AnixeHDSerie.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"AnixeHDSerie.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AnixeHDSerie.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AnixeHDSerie.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Ant1.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Ant1Satellite.gr","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Ant1Satellite.gr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Antena1.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Antena3.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Antena3.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Antena3.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Antena3Internacional.es","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Antena7.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"AntenaInternational.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AntenaStars.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AntennaTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AntenneA.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AntenneReunionTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"AntenneReunionTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"AntenneReunionTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"AprendeTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Aqui.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AragonTV.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AragonTVInternacional.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ArenaEsport.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaEsport.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaEsport.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaFight.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaFight.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaFight.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaFight.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaPremium1.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaPremium1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaPremium1.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaPremium2.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaPremium2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaPremium2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaPremium3.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaPremium3.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaPremium3.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport1.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaSport1.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaSport1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport1.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaSport1.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml"},{"channel":"ArenaSport1.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport1.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ArenaSport10Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport10Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport1Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport1Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport1x2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaSport1x2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport1x2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport2.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaSport2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaSport2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport2.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaSport2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml"},{"channel":"ArenaSport2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml"},{"channel":"ArenaSport2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml"},{"channel":"ArenaSport2.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport2.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ArenaSport2Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport2Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport3.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaSport3.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaSport3.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport3.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaSport3.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml"},{"channel":"ArenaSport3.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml"},{"channel":"ArenaSport3.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml"},{"channel":"ArenaSport3.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport3Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport3Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport4.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaSport4.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ArenaSport4.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport4.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ArenaSport4.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml"},{"channel":"ArenaSport4.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml"},{"channel":"ArenaSport4.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml"},{"channel":"ArenaSport4.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport4Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport4Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport5.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ArenaSport5.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport5.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml"},{"channel":"ArenaSport5.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml"},{"channel":"ArenaSport5.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport5Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport5Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport6.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport6Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport6Hrvatska.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport6Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport7.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport7Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport7Hrvatska.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport7Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport8.rs","site":"tvarenasport.com","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml"},{"channel":"ArenaSport8Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport8Hrvatska.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ArenaSport8Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"ArenaSport9Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ArenaSport9Hrvatska.rs","site":"tvarenasport.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/tvarenasport.hr.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Arewa24.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ArgentinisimaSatelital.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ArgusNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ArianaAfghanistanInternationalTV.us","site":"arianaafgtv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/af/arianaafgtv.com.epg.xml"},{"channel":"ArianaTVNational.af","site":"arianatelevision.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/af/arianatelevision.com.epg.xml"},{"channel":"ArihantTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ArirangWorld.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ArirangWorld.kr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ArirangWorld.kr","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"ArirangWorld.kr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ArirangWorld.kr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ArirangWorld.kr","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"AriseNews.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"AriseNews.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Arkhyz24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ArmNews.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"Armenia1TV.am","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ArmeniaTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"Arta.rs","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Arta.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Arte1.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AsfiyahiTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AshamTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"AsiaDramaticTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"AsianFoodNetwork.sg","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AsianFoodNetwork.sg","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"AsianFoodNetwork.sg","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AsianFoodNetwork.sg","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AsianFoodNetwork.sg","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"Asianet.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AsianetNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AsongaTV.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AspireTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AspireTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"AssamTalks.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"AssenTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"AstroAEC.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAOD311.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAOD352.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAOD353.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAOD354.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAOD355.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroArena.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAura.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroAwani.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroBollyOneHD.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroCeria.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroCitra.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroCricket.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroCricket.my","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"AstroCricket.my","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"AstroHuaHeeDai.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroOasis.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroPrima.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroQuanJiaHD.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroRania.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroRia.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroShuangXing.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroSuperSport.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroSuperSport2.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroSuperSport3.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroSuperSport4.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"AstroTVIQ.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroTutorTVPT3.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroTutorTVSPM.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroTutorTVUPSR.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroUHD.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroVaanavil.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroVellithirai.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroVinmeenHD.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroWarna.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AstroXiaoTaiYang.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AtamekenBusiness.kz","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"Atrecine.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Atreseries.es","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Atreseries.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Atreseries.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Atreseries.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"AuftankenTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AugsburgTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"AuroraTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"AustralianChristianChannel.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"AuthenticTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"AutoMotorogSportTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AutoMotorundSport.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"AutoMotorundSport.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"AutoMotorundSport.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"AutoPlus.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Automotolachaine.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Automotolachaine.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Automotolachaine.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Automotolachaine.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Automotolachaine.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Avto24.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AwesomeTV.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"AyMSports.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AzCinema.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AzCinema.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"AzClic.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AzCorazon.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AzCorazon.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"AzMundo.mx","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"AzMundo.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AzMundo.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"AzTV.az","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"AzTV.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"AzarbayjaneGharbiTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"Azteca7.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Azteca7MexicoCity.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AztecaGuatemala.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"AztecaUSEste.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"AztecaUno.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AztecaUno.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"AztecaUnoPlus1.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"AztecaUnoPlus2.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"B1.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"B1.ro","site":"tv.blue.ch","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"B4UAflam.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"B4UBhojpuri.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"B4UKadak.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"B4UMoviesIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"B4UMoviesUK.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"B4UMusicIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"B4UMusicUK.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"B4UMusicUSA.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"B4UPlus.in","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"B92.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"B92.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"B92.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BBCAmericaEast.uk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BBCAmericaEast.uk","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BBCAmericaEast.uk","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"BBCAmericaEast.uk","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BBCAmericaWest.uk","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"BBCArabic.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"BBCBritPolska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BBCBritSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"BBCEarthAsia.uk","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BBCEarthGreece.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BBCEarthPolska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BBCEarthRomania.uk","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BBCEarthRomania.uk","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BBCEarthRomania.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BBCEarthRomania.uk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BBCEarthRomania.uk","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"BBCEarthSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BBCEarthSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BBCEarthTurkiye.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BBCEarthTurkiye.uk","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BBCEntertainmentEurope.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BBCFirstNederland.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCFirstPolska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BBCFirstPolska.uk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BBCFirstTurkiye.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BBCFour.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCFour.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BBCFour.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCFour.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BBCFour.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCFour.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCLifestyleAsia.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BBCLifestyleAsia.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BBCLifestyleAsia.uk","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BBCLifestylePolska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BBCLifestyleSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BBCNews.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCNews.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCNews.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCNews.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BBCOne.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCOne.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BBCOne.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCOne.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BBCOne.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCOne.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCOneLondon.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCOneLondon.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCOneScotland.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCOneScotland.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCParliament.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCParliament.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCParliament.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCRedButton1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCRedButton1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCTwo.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCTwo.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BBCTwo.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BBCTwo.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BBCTwo.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BBCTwo.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCWorldNews.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BBCWorldNewsAfrica.uk","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BBCWorldNewsAmericas.uk","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BBCWorldNewsAsiaPacific.uk","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"magticom.ge","lang":"en","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"BBCWorldNewsEurope.uk","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"BBCWorldNewsMiddleEast.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"BBCWorldNewsSouthAsia.uk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BBTVChannel7.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BCNTV.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BETAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BETEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BETEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"BETEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BETFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BETFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BETFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BETGospel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETGospel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BETHerEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BETHerEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETHerEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BETJams.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETJams.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BETSoul.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BETSoul.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BETWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BF1.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BFCForbes.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BFMBusiness.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BFMBusiness.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BFMBusiness.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BFMLyon.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BFMParis.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BFMTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BFMTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BFMTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BHT1.ba","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BHT1.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BHT1.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BKTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BN.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BN.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BN2.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BNMusic.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BNMusic.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BNMusic.ba","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BNMusic.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BNT1.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BNT2.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BNT3.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BNT4.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BNTVSatelitski.ba","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BNTVSatelitski.ba","site":"tv.blue.ch","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BOneTV.cd","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BR6TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BRT1.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"BRT2.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"BS11.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BS12.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSAsahi.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSAsahi4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSFuji.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSFuji4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSNipponTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSNipponTV4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSTBS.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSTBS4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSTVTokyo.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BSTVTokyo4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BTNTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BTSport1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTSport2.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTSport3.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTSportBoxOffice2UK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTSportBoxOfficeIreland.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTSportESPN.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BTVAction.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BTVCinema.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BTVComedy.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BTVLady.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BVNEuropa.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BVNTVEuropa.nl","site":"tv.blue.ch","lang":"nl","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BYUTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BYUTV.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"BabaTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BabesTV.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BabesTV.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BabyFirstTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BabyFirstTV.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BabyFirstTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BabyFirstTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BabyTVAsia.uk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BabyTVAsia.uk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BabyTVAsia.uk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BabyTVBrasil.uk","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BabyTVEurope.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BabyTVEurope.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BabyTVEurope.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BabyTVEurope.uk","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BabyTVEurope.uk","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BabyTVEurope.uk","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BabyTVEurope.uk","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BabyTVEurope.uk","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"BabyTVEurope.uk","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BabyTVEurope.uk","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BabyTVEurope.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BabyTVEurope.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BabyTVEurope.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BabyTVEurope.uk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BabyTVEurope.uk","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"BabyTVEurope.uk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"BabyTVEurope.uk","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BabyTVLatinAmerica.uk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BabyTVLatinAmerica.uk","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"BabyTVLatinAmerica.uk","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"BahrainTV.bh","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"BalageruTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"BalkanMusicTV.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"BalkanTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BalkanTrip.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BalkanTrip.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BalkanTrip.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BalkanikaMusicTV.bg","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BalkanikaMusicTV.bg","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"BalkanikaMusicTV.bg","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BalkanikaMusicTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BalkanikaMusicTV.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BalleBalle.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BallySportsArizona.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsArizonaPlus.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsDetroit.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsFlorida.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsGreatLakes.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsIndiana.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsMidwest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsMidwestKansasCity.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsMidwestPlusStLouis.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsNewOrleans.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsNorth.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsOhio.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsOhioPlus.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsOklahoma.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSanDiego.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoCal.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSouth.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastGeorgia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastNashville.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastNorthCarolina.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastSouthCarolina.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastTennessee.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSoutheastTennesseeEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSouthwest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSouthwestDallas.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSouthwestOklahoma2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsSun.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BallySportsWisconsin.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BandAmazonas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandBahia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandCuritiba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandInternacional.br","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BandNews.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandNews.br","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BandSaoPaulo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandSports.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BandaTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"BandaTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"Bandamax.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Bandamax.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"BandamaxEstadosUnidos.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BangBang.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"BangBang.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"BangU.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BangU.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BantambaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BarcaTV.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"BarcaTV.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BarelyLegalTV.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BarrandovKrimi.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BayerischesFernsehenNord.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"BayerischesFernsehenSud.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BayerischesFernsehenSud.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BblackCaribbean.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"BeIn4K.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInBoxOffice1Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInBoxOffice2Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInBoxOffice3Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInDrama1.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInDrama1.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInGurme.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInHE.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInIz.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesAction.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesAction.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInMoviesAction.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInMoviesAction2.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesFamily.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesFamily.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInMoviesFamily.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInMoviesPremiere.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesPremiere.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInMoviesPremiere.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInMoviesPremiere2.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesStars.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInMoviesTurk.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInNBA.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSeries1.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInSeries1.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInSeries2.qa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"BeInSeries2.qa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"BeInSeriesComedy.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSeriesDrama.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSeriesSciFi.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSeriesVice.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSports.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports1.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports1.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports1France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSports1HongKong.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BeInSports1HongKong.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BeInSports1Indonesia.qa","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BeInSports1Indonesia.qa","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"BeInSports1Thailand.qa","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BeInSports1Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSports2.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports2.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports2France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSports2HongKong.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BeInSports2HongKong.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BeInSports2Indonesia.qa","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BeInSports2Indonesia.qa","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"BeInSports2Thailand.qa","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"BeInSports2Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSports3.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports3.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"BeInSports3France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSports3Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSports4.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports4Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSports5.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports6.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSports7.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsEnglish1.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsEnglish2.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsEnglish3.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsFrench1.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsFrench2.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsFrench3.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsHaber.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSportsMalaysiaSingapore.qa","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BeInSportsMax1.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax1.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax10France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax10France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax1Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSportsMax2.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax2.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax2Turkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeInSportsMax3.qa","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax3.qa","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax4France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax5France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax6France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax6France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax7France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax7France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax8France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax8France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMax9France.qa","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BeInSportsMax9France.qa","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BeInSportsMaxMalaysiaSingapore.qa","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BeInSportsNews.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsPremium1.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsPremium2.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsPremium3.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsUSA.qa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BeInSportsXtra1.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsXtra2.qa","site":"beinsports.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa/beinsports.com.epg.xml"},{"channel":"BeInSportsenEspanol.qa","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"BeInSportsenEspanol.qa","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BeInSportsenEspanol.qa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BeInSportsenEspanol.qa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BeInTurkiye.qa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeKuduro.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BeMad.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"BeMad.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BeateUhseTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BeekTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BeijingSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVArtsChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVFinanceChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVInternationalChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVKaku.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVLifestyleChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVNewsChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVScienceandEducationChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVSportsChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVWinterOlympicDocChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BeijingTVYouthChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"BelBiznesChenel.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"BelMUZTV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"BelRos.ru","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"BelRos.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Belarus1.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Belarus2.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Belarus24.by","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Belarus24.by","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Belarus24.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Belarus24.by","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Belarus24.by","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Belarus3.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Belarus4.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Belarus5.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"BelsatTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BelsatTV.pl","site":"tv.mail.ru","lang":"by","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"BenficaTV.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"BenficaTV.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BenguTurk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Bergblick.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BeritaSatuHD.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"BeritaSatuNewsChannel.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BernamaTV.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"Besmart.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BestBrasil.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"BestBrasil.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"BestChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BethelTV.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"BeyazTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BeyazTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BeyazTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"BflixMovies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BhojpuriCinema.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BibelTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"BibelTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BibelTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BigBrotherMzansi.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BigGanga.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BigMagic.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BigTenNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BigTenNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BigTenNetworkAlternate.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BigTenNetworkOverflow2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BigTenNetworkOverflow3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BigTenNetworkOverflow4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Biggs.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Biggs.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Bigudi.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Bild.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Bindass.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Bis.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BitMe.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"BizimevTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Biznes24.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Blast.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Blaze.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BlazeEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"BlazeEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BlazePortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BlazeUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BlazeUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BloombergHT.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BloombergHT.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BloombergHT.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"BloombergTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BloombergTVAfrica.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"BloombergTVAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BloombergTVAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BloombergTVAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BloombergTVAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BloombergTVBrazil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BloombergTVBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BloombergTVEurope.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BloombergTVEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BloombergTVEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BloombergTVEurope.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BloombergTVEurope.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BloombergTVEurope.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"BloombergTVEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BloombergTVEurope.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"BloombergTVEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"BloombergTVEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BloombergTVEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BloombergTVEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"BloombergTVEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"BloombergTVEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"BloombergTVEurope.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BloombergTVEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BloombergTVLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"BloombergTVUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BloombergTVUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BlueAction.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueCity.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueHustlerEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BlueHustlerEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BlueHustlerEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BlueHustlerEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BlueHustlerEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BluePrime.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueRetro.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueSport1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueSport2.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueStars.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BlueZoomD.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BoaVontadeTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BoasNovas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Bober.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BoberInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BodenseeTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BodyinBalanceGreece.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"BodyinBalanceUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BoingEspana.it","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"BoingEspana.it","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"BoingFrance.it","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BoingFrance.it","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BoingFrance.it","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BoingItalia.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BoingItalia.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"BoingItalia.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BoksTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BoliviaTV.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"BoliviaTV72Deportes.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"Bolivision.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"BollywoodHD.ru","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BollywoodHD.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BollywoodHD.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BollywoodTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BollywoodTVRossiya.il","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"BolshayaAziya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BonGusto.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Bonferey.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Boo.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BoomTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BoomTV.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"BoomTV.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"BoomerangAtlanticoSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"BoomerangBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"BoomerangCentralEasternEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"BoomerangDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"BoomerangDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BoomerangEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BoomerangFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BoomerangFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"BoomerangFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"BoomerangFrancePlus1.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"BoomerangItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BoomerangItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"BoomerangLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"BoomerangMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"BoomerangMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"BoomerangNordic.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"BoomerangNordic.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"BoomerangNordic.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"BoomerangPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BoomerangPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"BoomerangPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"BoomerangSouthEastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"BoomerangSouthEastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"BoomerangSouthEastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"BoomerangSouthEastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"BoomerangTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"BoomerangTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"BoomerangUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BoomerangUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BoomerangUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BotswanaTV.bw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Bounce.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Bounce.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BoxCinema.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"BoxHits.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BoxHits.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BoxNation.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Bravo.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"BravoEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BravoEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"BravoEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BravoMusic.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"BravoWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BrazzersTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"BrazzersTVEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"BrazzersTVMonthlyOffer.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BrazzersTVXX.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"BrazzersTVXX.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"BredaNuTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"BridgeTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"BridgeTVRusskiyHit.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Brio.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"BritAsiaTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"BritAsiaTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"BukeddeTV1.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"BulgariaOnAir.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"BurkinaInfoTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Business24Africa.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"BusinessDayTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"BuzzTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Buzzr.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"C5N.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"C8.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"C8.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"C8.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"C8.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"C9N.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"CBBC.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CBBC.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CBBC.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CBBC.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CBC.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"CBC.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"CBCDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"CBCDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"CBCSofra.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"CBCSofra.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"CBCToronto.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CBHT.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CBLT.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CBN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CBSDramaUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CBSDramaUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CBSEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CBSEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CBSEuropa.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CBSJusticeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CBSJusticeUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CBSJusticeUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CBSRealityAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CBSRealityEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CBSRealityEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CBSRealityEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CBSRealityEurope.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CBSRealityEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CBSRealityEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CBSRealityEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CBSRealityEurope.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CBSRealityEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"CBSRealityEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"CBSRealityEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CBSRealityEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"CBSRealityPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CBSRealityUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CBSRealityUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CBSSportsNetworkCanada.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"CBSSportsNetworkUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CBeebiesAsia.uk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CBeebiesAsia.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CBeebiesAsia.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CBeebiesPolska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CBeebiesSouthAfrica.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CBeebiesTurkiye.uk","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CBeebiesUK.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CBeebiesUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CBeebiesUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CBeebiesUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CCIChannel.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"CCTV1.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CCTV1.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CCTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV10.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV11.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV11.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV12.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV13.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV14.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV15.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV2.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV3.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV4America.cn","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CCTV4America.cn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CCTV4America.cn","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CCTV4America.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV4Asia.cn","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CCTV4Asia.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CCTV4Asia.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CCTV4Asia.cn","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CCTV4Europe.cn","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CCTV4Europe.cn","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CCTV4Europe.cn","site":"tv.blue.ch","lang":"zh","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CCTV4Europe.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV4Europe.cn","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CCTV5.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV5Plus.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV6.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV7.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV8.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTV9.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CCTV9.cn","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CCTV9.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVBilliards.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVClassic.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVDaifu.cn","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CCTVEntertainment.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVFashionMusic.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVFashionableWoman.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVGolfTennis.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVHealth.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVHomeShopping.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVNostalgiaTheater.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVOldStories.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVShincoAnimation.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVSoccer.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVStormMusic.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVTVGuide.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVTheFirstTheater.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CCTVWorldGeography.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CDFBasico.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDFHD.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDFPremium.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDMInternacional.pr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"CDN.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"CDNDeportes.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"CDOBasico.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDOHD.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDOPremium.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CDTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CDTV2.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CDirect.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CETV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CETV2.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CETV3.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CETVEarlyEducation.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CFHDDT.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"CFTO.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CGTN.cn","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CGTN.cn","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CGTN.cn","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CGTN.cn","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CGTN.cn","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CGTN.cn","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CGTN.cn","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CGTN.cn","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CGTN.cn","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CGTN.cn","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CGTN.cn","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CGTN.cn","site":"tv.blue.ch","lang":"zh","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CGTN.cn","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CGTNAmerica.cn","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CGTNAmerica.cn","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CGTNArabic.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CGTNArabic.cn","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CGTNDocumentary.cn","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CGTNEspanol.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CGTNEspanol.cn","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CGTNFrancais.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CGTNRusskij.cn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CHBCDT2.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"CHKM.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CISTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CITV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CITV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CITV.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CMCTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CMCTV.hr","site":"tv.blue.ch","lang":"hr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CMCTV.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CMElCanaldelaMusica.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CMTEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CMTEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CMTEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CMTMusic.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CMTMusic.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CMTV.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CMTV.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CMoreFirst.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CMoreFirst.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreFirst.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreFotboll.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreGolf.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreHits.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CMoreHits.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreHits.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreHockey.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreJuniori.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreLive.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreLive2.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreLive3.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreLive4.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreMax.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreSeries.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CMoreSeries.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreSeries.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreSport1.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreSport2.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMoreStars.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CMoreStars.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CMoreStars.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"CMusicTV.uk","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"CMusicTV.uk","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"CMusicTV.uk","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"CN23.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CNA.sg","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CNA.sg","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CNA.sg","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CNA.sg","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CNA.sg","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"CNBC.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CNBCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CNBCArabiya.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CNBCAsiaPacific.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CNBCAsiaPacific.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CNBCAsiaPacific.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CNBCAsiaPacific.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"CNBCAwaaz.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CNBCBajar.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CNBCEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CNBCEurope.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"CNBCEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"CNBCEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CNBCEurope.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CNBCEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CNBCEurope.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CNBCEurope.us","site":"magticom.ge","lang":"en","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"CNBCEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CNBCEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CNBCEurope.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CNBCEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CNBCEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"CNBCEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"CNBCEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"CNBCEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"CNBCTV18.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CNBCUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CNBCUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CNBCUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CNBCUS.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CNBCWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNBCWorld.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CNBCWorld.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNLEvropa.kz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CNN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNNBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CNNChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CNNInternationalAsia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CNNInternationalAsiaPacific.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CNNInternationalEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CNNInternationalLatinAmerica.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNNInternationalNorthAmerica.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNNInternationalSouthAsia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CNNJ.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"CNNNews18.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CNNPrimaNews.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CNNTurk.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CNNTurk.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"CNNTurk.us","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CNNTurk.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"CNNUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CNNUSA.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CNNUSA.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CNNUSA.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"CNNenEspanol.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CNNenEspanol.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CNNenEspanol.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CNNenEspanol.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CNews.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CNews.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CNews.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CNews.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CQTVAutomobiles.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CRTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CRTVNews.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CRTVSportsandEntertainment.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CSFilm.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CSHistory.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CSHorror.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CSMystery.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CSPAN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CSPAN2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CStar.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CStar.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CStar.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CStar.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CT1.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CT1.cz","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CT2.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CT2.cz","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CT24.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CT24.cz","site":"tv.blue.ch","lang":"cs","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CT3.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CTD.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CTITVAsia.tw","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CTITVAsia.tw","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CTITVAsia.tw","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CTITVInternational.tw","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CTIZhongTianChannel.cn","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CTN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CTN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CTS.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CTSport.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CTVNAKDPlus.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CTVToronto.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CTart.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CVK.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CWEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Cable4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Cablenoticias.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"Cablenoticias.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Cacavision.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Caccia.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CadenaA.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CafeClub.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CafeClub.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CalaClassics.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CalaWeather.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Calle13.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Calle13.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CameradeiDeputati.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CamnetTV.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Canal1.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Canal1.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Canal1.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Canal10.gp","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Canal10.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"Canal10Cordoba.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Canal11.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"Canal11.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Canal12.sv","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"Canal12.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"Canal13.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"Canal13.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Canal2.ni","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"Canal2.sv","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"Canal2.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"Canal20VillaMaria.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Canal22Internacional.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Canal22MetropolitanayNacional.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"Canal22Nacional.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Canal24Horas.es","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"Canal24Horas.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Canal24Horas.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Canal24Horas.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Canal24Horas.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Canal24Horas.es","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Canal24Horas.es","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Canal24Horas.es","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Canal24Horas.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Canal26.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Canal27.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Canal2International.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Canal2Movies.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Canal3.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Canal3Benin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Canal4.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"Canal4.sv","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"Canal4.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"Canal4.uy","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Canal5.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Canal5.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"Canal5ElLider.hn","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"Canal6.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"Canal6.sv","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"Canal6.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"Canal6Nacional.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Canal7Jujuy.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Canal9.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"Canal9BioBioTelevision.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CanalAlphaJU.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalAlphaNE.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalAntigua.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"CanalAntigua.gt","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"CanalBrasil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CanalC.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalCaliTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalCapital.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CanalCapital.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalCapital.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CanalCaribe.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalCartagena.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalCatorce.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CanalClaro.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"CanalClaro.cl","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CanalClave.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalCocina.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"CanalCocina.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalCongreso.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CanalCongreso.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CanalDHE.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanalEcool.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CanalEducativo.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalEducativo2.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalExtremaduraSatelite.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalExtremaduraSatelite.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalFutura.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CanalHabana.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalHollywoodEspana.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"CanalHollywoodEspana.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalHollywoodPortugal.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CanalHollywoodPortugal.es","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CanalISB.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CanalInstitucional.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CanalInstitucional.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CanalJ.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalJ.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalJ.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalJ.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalJ.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalJ.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalJ.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalJ.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalLuz.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanalMultivision.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CanalOff.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CanalOrbe21.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanalPandaEspana.pt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"CanalPandaEspana.pt","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalPandaPortugal.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CanalPandaPortugal.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CanalPandaPortugal.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CanalPandaPortugal.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CanalParlamento.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalPlus1.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlus4KUltraHD.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusActionOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCaraibes.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCaraibes.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCaraibes.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCaraibes.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCaraibes.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusCinemaFrance.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusCinemaReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusCinemaReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusCinemaReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusDecale.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusDocs.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalPlusDokument.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusDomo.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CanalPlusDomo.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusEllesOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusFamilyPolska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusFilm.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusFrance.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalPlusFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusFrance.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusHaiti.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusKids.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusKuchnia.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPopOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereCentre.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremiereOuest.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusPremium.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSeriale.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusSeriesFrance.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusSeriesReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSeriesReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSeriesReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport2Polska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport3Polska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport4Polska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSport5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CanalPlusSportFrance.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalPlusSportPolska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CanalPlusSportReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSportReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CanalPlusSportReunion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CanalProgramacao.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CanalQ.pt","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CanalQ.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CanalRural.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanalRural.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CanalSur.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalSurAndalucia.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"CanalSurAndalucia.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CanalSurAndalucia.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanalTRO.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CanalTRO.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalTRO.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CanalU.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanalU.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CanalUno.ec","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"CanalVasco.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CanalViva.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Canala.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanaldelSur.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CanaldelaCiudad.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CanaldoBoi.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Canale5.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Canale5.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Canale5.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CanaleItalia.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Canvas.be","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Canvas.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CapeTownTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CapeTownTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CapitalSanteTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CaracolTV.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CaracolTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"CaracolTV.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CaracolTVInternacional.co","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CaracolTVInternacional.co","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CaracolTVInternacional.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CaracolTVInternacional.co","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CaribVision.bb","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CaribVision.bb","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CarsTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CartoonNetworkArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CartoonNetworkAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CartoonNetworkAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CartoonNetworkAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CartoonNetworkAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"CartoonNetworkBrasil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CartoonNetworkBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"CartoonNetworkCanada.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"CartoonNetworkCentralEasternEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CartoonNetworkCentralEasternEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CartoonNetworkCentralEasternEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CartoonNetworkCentralEasternEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CartoonNetworkCentralEasternEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"CartoonNetworkChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"CartoonNetworkDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"CartoonNetworkDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CartoonNetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CartoonNetworkEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CartoonNetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CartoonNetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CartoonNetworkFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CartoonNetworkIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"CartoonNetworkIndia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CartoonNetworkItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CartoonNetworkJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"CartoonNetworkLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CartoonNetworkMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CartoonNetworkMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CartoonNetworkMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CartoonNetworkNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CartoonNetworkNordic.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"CartoonNetworkNordic.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"CartoonNetworkNordic.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"CartoonNetworkNordic.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"CartoonNetworkPolska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CartoonNetworkPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CartoonNetworkPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CartoonNetworkRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"CartoonNetworkRussiaSouthEastEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"CartoonNetworkTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"CartoonNetworkTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"CartoonNetworkTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"CartoonNetworkWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CartoonNetworkWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CartoonitoItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CartoonitoItalia.us","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"CartoonitoItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Cash.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CastricumTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CatholicFaithNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CazayPesca.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CelebrityShoppingTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CelestialClassicMovies.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CelestialClassicMovies.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CelestialMoviesIndonesia.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CelestialMoviesMalaysia.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CemTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"CentraalTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CentroamericaTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ChallengeUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ChallengeUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ChallengeUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ChampionsTV1.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"ChampionsTV2.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"ChampionsTV3.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"Channel2.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"Channel21.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Channel3.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"Channel4.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Channel44.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Channel4London.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Channel5.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Channel5.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Channel5.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Channel5.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Channel5Plus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Channel5Plus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ChannelAdult.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ChannelAdult.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ChannelDivya.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ChannelGinga.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ChannelI.bd","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ChannelNeco.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ChannelNecoInternational.jp","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ChannelNineSydney.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ChannelO.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ChannelWIN.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ChannelsTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ChardiklaTimeTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Charge.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CharmingChina.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ChassePeche.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ChassePeche.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ChassePeche.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Che.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Che.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ChePeInfo.ua","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ChePeInfo.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Cheddar.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ChefTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Cherie25.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Cherie25.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Cherie25.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CheriflaTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ChileVision.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ChileVision.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ChinaWeatherTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ChongqingTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ChuttiTVMalaysia.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"ChveniMagti.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Cielo.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Cielo.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CiftciTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Cima.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Cima.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Cine34.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Cine34.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CineBrasilTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CineEstelar.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CineLatino.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CineLatino.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CineLatino.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CineLatino.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CineMexicano.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"CineMexicano.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CineMo.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CineMundo.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"CineMundo.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"CineMundo.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CineNostalgia.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClassic.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusClassic.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusClassic.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusClub.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusClub.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusClub.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusEmotion.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusFamiz.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusFrisson.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"CinePlusPremier.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CinePlusPremier.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CinePlusPremier.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CineSony.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CineSony.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"CineStarTV1Hrvatska.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CineStarTV1Srbija.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CineStarTV1Srbija.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CineStarTV1Srbija.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CineStarTVActionHrvatska.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CineStarTVActionSrbija.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CineStarTVActionSrbija.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CineStarTVActionSrbija.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CineStarTVComedy.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CineStarTVComedy.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CineStarTVComedy.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CineStarTVFantasy.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CineStarTVFantasy.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CineStarTVFantasy.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CineStarTVFantasy.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CineStarTVPremiere1.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CineStarTVPremiere1.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CineStarTVPremiere2.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CineStarTVPremiere2.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Cinear.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CinecanalChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CinecanalEste.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CinecanalEste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CinecanalEste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"CinecanalOeste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Cinema.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Cinema1.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Cinema1.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"Cinema1.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Cinema2.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"Cinema2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CinemaDinamita.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CinemaOneGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CinemaPlatino.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CinemaPlus.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CinemaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Cinemax2CentralEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CinemaxAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CinemaxAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"CinemaxAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"CinemaxAsiaPlus1.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CinemaxBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CinemaxCentralEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"CinemaxEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CinemaxEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CinemaxEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"CinemaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CinemaxLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CinemaxWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CinemaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CitizenTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CitizenTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CitizenTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CitizenTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CityTV.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"CityTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"CityTV.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CitytvToronto.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CiudadMagazine.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ClanTVE.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"ClanTVE.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ClaroCinema.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ClaroSportsChile.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ClaromusicaTV.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ClaromusicaTV.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ClassCNBC.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"ClassTVModa.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ClassicArtsShowcase.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ClassicaHD.de","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CleoTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CleoTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CliqueTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CliqueTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ClubMTV.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ClubMTV.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ClubMTV.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ClubMTV.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ClubMTV.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ClubMTV.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ClubMTV.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ClubMTV.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ClubMTV.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ClubMTV.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ClubMTV.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ClubRTL.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ClubbingTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ClubbingTV.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ClublandTV.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CocukSmart.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"ColmaxTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ColmaxTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ColmaxTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ColorVision9.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"Colors.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"Colors.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Colors.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Colors.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Colors.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Colors.in","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ColorsAsiaPacific.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ColorsAsiaPacific.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ColorsBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsBangla.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ColorsCineplex.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsCineplexBollywood.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsGujarati.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsGujaratiCinema.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsInfinity.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsMarathi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsOdia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsRishteyAsia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ColorsTamil.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ComediePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ComediePlus.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ComediePlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ComediePlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ComedyCentralAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ComedyCentralBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ComedyCentralDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ComedyCentralEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ComedyCentralEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ComedyCentralEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ComedyCentralEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ComedyCentralEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"ComedyCentralEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ComedyCentralExtraUK.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ComedyCentralExtraUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ComedyCentralFamilyHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ComedyCentralFamilyHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ComedyCentralFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ComedyCentralFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ComedyCentralHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ComedyCentralHungary.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ComedyCentralHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ComedyCentralIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ComedyCentralItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"ComedyCentralItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaNorte.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"ComedyCentralLatinoamericaSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"ComedyCentralLatinoamericaSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ComedyCentralLatinoamericaSur.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ComedyCentralNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ComedyCentralPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ComedyCentralRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ComedyCentralUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ComedyCentralWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ComedyTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ComedyTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ComedyTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ComedyTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Comet.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ConcertChannel.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ConexionEducativa.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ConmebolTV1.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ConmebolTV2.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ConmebolTV3.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ConmebolTV4.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ConstruirTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"CookingChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CookingChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CookingChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CoolTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CoolTV.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CoolTV.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CoolTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"CornerStoreTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CosmopolitanTVEspana.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"CosmopolitanTVEspana.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CosmoteCinema1.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteCinema2.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteCinema3.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteHistory.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSeriesMarathon.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport1.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport2.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport3.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport4.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport5.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport6.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport7.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport8.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSport9.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CosmoteSportHighlights.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Cosmovision.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Cosmovision.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CourtTVMystery.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CourtTVMystery.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CourtTVUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CoziTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CraftExtra.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CreaTVClassrooms.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Create.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"CreateandCraft.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"CreateandCraft.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CredoTV.ro","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CredoTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"CrimeDistrict.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"CrimeDistrict.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"CrimeDistrict.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CrimeInvestigationUK.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"CrimeInvestigationUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"CrimePlusInvestigationAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"CrimePlusInvestigationAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"CrimePlusInvestigationDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"CrimePlusInvestigationNetworkItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"CrimePlusInvestigationNetworkUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"CrimePlusInvestigationPolsat.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"CrimePlusInvestigationUK.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"CrimenPlusInvestigacion.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Cristovision.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Cristovision.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"CronicaTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Cruise1stTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Cruise1stTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Cuatro.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Cuatro.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CubavisionInternacional.cu","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"CubavisionNacional.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"CubavisionPlus.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"Cubayo.uk","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Cufo.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Cufo.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Cuisines.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"CuriosityChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"CuriosityChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Curta.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DAZN1Deutschland.uk","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DAZN1Deutschland.uk","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"DDArunPrabha.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDAssam.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDBharati.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDBihar.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDChandana.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDChhattisgarh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDGirnar.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDHimachalPradesh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDHissar.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDJharkhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDKashir.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDKisan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDMadhyaPradesh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDMalayalam.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDManipur.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDMeghalaya.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDMizoram.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDNagaland.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDNational.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDOdia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDPodhigai.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDPunjabi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDRajasthan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDRetro.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDSahyadri.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDSaptagiri.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDSports.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDTripura.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDUrdu.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDUttarPradesh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDUttarakhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DDYadagiri.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DIYNetworkUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DIYNetworkUSA.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DIYNetworkUSA.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"DK4.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DMAXAustria.us","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"DMAXDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DMAXDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DMAXDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DMAXItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DMAXItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DMAXSoutheastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"DMAXSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DMAXSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DMAXTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DMAXTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DMAXTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DMAXUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"DMAXUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DMAXUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DMC.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DMC.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DMCDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DMCDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DMSat.rs","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DMSat.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"DMSat.rs","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"DMSat.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DMSat.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DMSat.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DMSat.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DR1.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DR1.dk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DR2.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DR2.dk","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"DR2.dk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DRRamasjang.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DRRamasjang.dk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DRTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DRTVInternational.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DSTVPipoca.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"DSTVPipoca.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"DTV.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"DTVOssBernheze.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DTXEastEurope.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"DTXEastEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DTXEastEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DTXEastEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DTXEastEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DTXEastEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DTXPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DTXPolska.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DTXRossiya.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DTXRossiya.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DTXRossiya.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DTXRossiya.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DTXRossiya.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DWDeutsch.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DWDeutsch.de","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DWDeutsch.de","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DWDeutsch.de","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DWDeutsch.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DWDeutsch.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DWDeutsch.de","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DWDeutschPlus.de","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"DWDeutschPlus.de","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DWEnglish.de","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"DWEnglish.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DWEnglish.de","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"DWEnglish.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"DWEnglish.de","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"DWEnglish.de","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"DWEnglish.de","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DWEnglish.de","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DWEnglish.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DWEnglish.de","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DWEnglish.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DWEnglish.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DWEnglish.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DWEnglish.de","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DWEnglish.de","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DWEnglish.de","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DWEnglish.de","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"DWEspanol.de","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DY36.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DaAiTV.tw","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"DaVinci.de","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DaVinci.de","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DaVinci.de","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DaVinci.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"DaVinci.de","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"DaVinci.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DaVinci.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DaVinci.de","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DaVinci.de","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DaVinci.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DaVinci.de","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DaVinciAsia.de","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DaVinciAsia.de","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DaVinciHungary.de","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DaVinciPolska.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Dajto.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DanceChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"DangalTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Dardimandi.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Dark.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DasErste.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DasErste.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DasErste.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DasErste.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DasErste.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"DasErste.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DasErste.de","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DasErste.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DasErste.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DasErste.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DasErste.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"DaveUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DaveUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"DaveUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DaveUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Davejavu.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Davejavu.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DaystarTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DaystarTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DaystarTV.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DeAJunior.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DeAKids.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DeAKidsPlus1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DePelicula.mx","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DePelicula.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DePelicula.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DePeliculaClasico.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DePeliculaClasico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DePeliculaEstadosUnidos.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DePeliculaEuropaAustralia.mx","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DePeliculaMultiplex.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Decades.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Decasa.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Decasa.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DecijaTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DecijaTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DeejayTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DeejayTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DeltaTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DeluxeLounge.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DeluxeMusic.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DeluxeMusic.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DeluxeMusic.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DemainTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DenHaagTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DeporTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DestinationAmerica.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DestinationAmerica.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DetskiMir.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DeutschesMusikFernsehen.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DeutschesMusikFernsehen.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DeutschesMusikFernsehen.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DexyTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DexyTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Dhinchaak.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Dhinchaak2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DhoomMusic.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DiamondTV.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DieNeueZeitTV.ch","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Diema.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiemaFamily.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiemaSport.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiemaSport2.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiemaSport3.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Digi24.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Digi24.ro","site":"tv.blue.ch","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DigiAnimalWorld.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiAnimalWorld.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DigiLifeHungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DigiLifeRomania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiShala.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DigiSport1Hungary.ro","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DigiSport1Hungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DigiSport1Romania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiSport2Hungary.ro","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DigiSport2Hungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DigiSport2Romania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiSport3Romania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiSport4Romania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DigiWorldHungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DigiWorldRomania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Digital15.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DigitalCongoTV.cd","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Digiturk4K.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DiputadosTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"DiscoPoloMusic.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"DiscoveryAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"DiscoveryChannelBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryChannelBulgaria.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"DiscoveryChannelBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiscoveryChannelCentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DiscoveryChannelCentralEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DiscoveryChannelChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"DiscoveryChannelDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DiscoveryChannelDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryChannelDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DiscoveryChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DiscoveryChannelEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryChannelEast.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DiscoveryChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"DiscoveryChannelEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DiscoveryChannelEurope.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"DiscoveryChannelFinland.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DiscoveryChannelFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DiscoveryChannelHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DiscoveryChannelIberia.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DiscoveryChannelItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DiscoveryChannelItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DiscoveryChannelItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DiscoveryChannelJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryChannelLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DiscoveryChannelMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DiscoveryChannelMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DiscoveryChannelNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DiscoveryChannelNorge.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"DiscoveryChannelPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryChannelRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DiscoveryChannelRossiya.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DiscoveryChannelRossiya.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DiscoveryChannelRossiya.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DiscoveryChannelRossiya.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DiscoveryChannelSoutheastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"DiscoveryChannelSoutheastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"DiscoveryChannelSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryChannelSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryChannelSoutheastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"DiscoveryChannelSrbija.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DiscoveryChannelSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DiscoveryChannelSrbija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DiscoveryChannelSverige.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DiscoveryChannelTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DiscoveryChannelTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DiscoveryChannelTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DiscoveryChannelUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DiscoveryChannelWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DiscoveryCivilization.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryFamilia.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DiscoveryFamily.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DiscoveryFamily.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DiscoveryFamily.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DiscoveryFamilyAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DiscoveryHDWorldIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DiscoveryHDWorldLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryHDWorldLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryHistoria.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryHistory.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DiscoveryHomeHealthBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryKidsAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DiscoveryKidsBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryKidsChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"DiscoveryKidsChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"DiscoveryKidsColombia.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"DiscoveryKidsColombia.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryKidsIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DiscoveryLifeChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DiscoveryLifeChannel.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"DiscoveryLifeChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DiscoveryLifePolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryScience.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DiscoveryScience.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"DiscoveryScience.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DiscoveryScience.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DiscoveryScience.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DiscoveryScience.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DiscoveryScience.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DiscoveryScience.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DiscoveryScience.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DiscoveryScienceBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DiscoveryScienceFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DiscoveryScienceItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"DiscoveryScienceItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DiscoveryScienceLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryScienceLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DiscoveryScienceMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DiscoverySciencePolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DiscoveryScienceRossiya.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DiscoveryScienceRossiya.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DiscoveryScienceRossiya.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DiscoveryScienceRossiya.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DiscoveryScienceRossiya.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DiscoveryScienceSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryScienceSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DiscoveryScienceTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DiscoveryScienceTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DiscoveryScienceTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DiscoveryScienceUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DiscoveryTheater.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryTheater.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryTheater.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryTurboAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DiscoveryTurboAmericaLatina.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DiscoveryTurboAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DiscoveryTurboBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryTurboIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DiscoveryTurboUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DiscoveryWorldBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DiscoveryenEspanol.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DiscoveryenEspanol.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DishBuzz.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DishBuzz2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DisneyChannelBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DisneyChannelBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DisneyChannelCanadaWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"DisneyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"DisneyChannelDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"DisneyChannelDeutschland.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DisneyChannelDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DisneyChannelDeutschland.us","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"DisneyChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DisneyChannelEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DisneyChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"DisneyChannelEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DisneyChannelEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"DisneyChannelEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DisneyChannelFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DisneyChannelFrancePlus1.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DisneyChannelHungaryCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DisneyChannelHungaryCzechia.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DisneyChannelIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DisneyChannelJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"DisneyChannelLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DisneyChannelLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"DisneyChannelMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DisneyChannelMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DisneyChannelMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DisneyChannelNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DisneyChannelPolska.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DisneyChannelPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DisneyChannelPolska.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DisneyChannelPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"DisneyChannelPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"DisneyChannelRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DisneyChannelScandinavia.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DisneyChannelSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DisneyChannelSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"DisneyChannelSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"DisneyChannelSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"DisneyChannelSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DisneyChannelSurPlus1.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DisneyChannelTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DisneyChannelTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DisneyChannelTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DisneyChannelWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DisneyChannelWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DisneyInternationalHD.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DisneyJuniorBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DisneyJuniorEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DisneyJuniorEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DisneyJuniorEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DisneyJuniorEspana.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DisneyJuniorEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"DisneyJuniorEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"DisneyJuniorFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DisneyJuniorGreece.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"DisneyJuniorIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DisneyJuniorJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"DisneyJuniorMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DisneyJuniorMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DisneyJuniorPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"DisneyJuniorPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"DisneyJuniorPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"DisneyJuniorPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"DisneyJuniorRomaniaBulgaria.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DisneyJuniorRomaniaBulgaria.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DisneyJuniorRomaniaBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DisneyJuniorRomaniaBulgaria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DisneyJuniorScandinavia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"DisneyJuniorSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"DisneyJuniorSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"DisneyJuniorSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DisneyJuniorSurPlus1.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"DisneyJuniorSurPlus1.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DisneyJuniorTurkiyePolska.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DisneyJuniorTurkiyePolska.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DisneyJuniorTurkiyePolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DisneyJuniorTurkiyePolska.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DisneyJuniorWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DisneyPlusFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DisneyXDBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DisneyXDEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DisneyXDEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"DisneyXDEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"DisneyXDEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DisneyXDMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DisneyXDMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"DisneyXDNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"DisneyXDPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DisneyXDSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"DisneyXDSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"DisneyXDSurPlus1.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"DisneyXDSurPlus1.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"DisneyXDWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DistritoComedia.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"DistritoComedia.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"DivaAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DivaRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Divinity.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"DiyanetTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"DiyanetTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DiyanetTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Dizi.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Dizi.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Dizi.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DiziSmartMax.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DiziSmartPremium.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DjomaTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DocTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"DocuBoxHD.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"DocuBoxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DocuBoxHD.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DocuBoxHD.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DocuBoxHD.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DocuBoxHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DocuBoxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DocuBoxHD.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"DocuBoxHD.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DocuBoxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DocuBoxHD.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DogTV.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"DogTV.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"DomKino.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"DomKino.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DomKino.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DomKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DomKinoInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DomKinoInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DomKinoInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DomKinoInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DomKinoPremium.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DomKinoPremium.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DomKinoPremiumInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DomaHrvatska.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DomaHrvatska.sk","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"DomashnieZhivotnye.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Domashniy.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Domashniy.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Domashniy.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DominionTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Donbass.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"DorcelTV.nl","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"DorcelTV.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DorcelTV.nl","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DorcelTV.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"DorcelTVAfrica.nl","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DorcelTVPlus1.nl","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DorcelXXX.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DorcelXXX.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DorcelXXX.nl","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"DouniaTV.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"DoveTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"DoxTV.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"DoxTV.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Dozhd.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Dozhd.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Dozhd.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Dozhd.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DrFit.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DrShuddhi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"DragonTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Draiv.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"DramaUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"DramaUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"DramaUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DramaUKPlus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"DramaUKPlus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Dream2.eg","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"DreamTurk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DreamWorksTVAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"DreamWorksTVAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"DreamWorksTVAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"DubaiOne.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DubaiOne.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DubaiRacing.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"DubaiRacing3.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"DubaiTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DubaiTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DubaiTV.ae","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DubaiZaman.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"DubaiZaman.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"DuckTVHD.sk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DuckTVHD.sk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"DuckTVPlus.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DuckTVSD.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DuckTVSD.sk","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"DuckTVSD.sk","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DuckTVSD.sk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DuckTVSD.sk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"DuckTVSD.sk","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"DuckTVSD.sk","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"DuckTVSD.sk","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"DuckTVSD.sk","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DuckTVSD.sk","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DumisaTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"DumisaTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"DunaTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DunaTV.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DunaTV.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DunaTV.hu","site":"tv.blue.ch","lang":"hu","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DunaTV.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DunaTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DunaWorld.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"DunaWorld.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"DunaWorld.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"DunaWorld.hu","site":"tv.blue.ch","lang":"hu","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"DunaWorld.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"DunaWorld.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"DunavTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Duo3.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Duo3.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Duo3.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Duo4.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Duo4.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Duo4.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Duo5.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Duo5.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Duo5.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Duo6.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Duo6.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Duo6.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Duo7.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Duo7.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Duo7.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Dusk.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Dusk.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Dusk.nl","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Dusk.nl","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Dusk.nl","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Dusk.nl","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"E4UK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"E4UK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"E4UK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"E4UK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"E4UKPlus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"E4UKPlus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"EAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"EBATVIlkokul.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"EBATVIlkokul.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EBATVLise.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"EBATVLise.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EBATVOrtaokul.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"EBATVOrtaokul.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EBCNewsAsia.tw","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"EBCNewsAsia.tw","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"EBS.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EBSAmerica.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"EBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EDAN.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"EEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"EEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"EEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"EEurope.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"EEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"EEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"EEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"EEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"EEurope.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"EEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"EEurope.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"EEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"EEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EEurope.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EExtra.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EExtra.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"EFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"EFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"EFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EGMelody.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EKids.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ELatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"ELatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ELatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EMCITVAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EMiddleEast.us","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"EMiddleEast.us","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"EMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"EMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EMoviesExtra.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EMoviesExtra.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ENewsChannelAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"EPTVSuldeMinas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ERT1.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ERT2.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ERT3.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ERTWorld.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ERTWorld.gr","site":"tv.blue.ch","lang":"el","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ES1.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ES1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ES1.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ESNETV.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ESPN.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ESPN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPN2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ESPN2Africa.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"ESPN2AmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ESPN2Andino.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ESPN2Brasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ESPN2Caribbean.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ESPN2Colombia.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ESPN2Colombia.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ESPN2Nederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ESPN2US.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ESPN2US.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ESPN2West.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"ESPN3AmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ESPN3Andino.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ESPN3Nederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ESPN3Sur.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ESPN4Nederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ESPNAfrica.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ESPNAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ESPNAustralia.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"ESPNBasesLoaded.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ESPNBuzzerBeater.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ESPNCaribbean.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ESPNChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ESPNChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ESPNClassicUSA.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ESPNCollegeExtra1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNCollegeExtra8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNDeportes.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ESPNDeportes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"ESPNDeportes.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNExtraAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ESPNExtraBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ESPNMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ESPNNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ESPNU.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ESPNU.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ESPNU.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ESPNU.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ESPNUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ESPNews.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ESports1.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ETB1.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"ETB1.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ETB2.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"ETB3.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ETCTV.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ETNow.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ETTVAmerica.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETTVAsiaNews.tw","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ETTVAsiaNews.tw","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ETTVChina.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETTVDrama.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETTVGlobal.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETTVNews.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETTVYOYO.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ETV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ETV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ETV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ETV.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ETV.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ETV.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ETV.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ETV.gp","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ETV.gp","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ETV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ETV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ETV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ETV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ETV2.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ETV2.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ETV2.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ETVAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ETVNews.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ETVNews.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ETVNews.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ETVPlus.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ETVPlus.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ETVPlus.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ETeleBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EToonz.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EToonz.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EVidya6.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"EWTNAfricaAsia.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EWTNEspanaLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"EWTNEspanaLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"EWTNEspanaLatinoamerica.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"EWTNEspanaLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"EWTNEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EWTNEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EWTNEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EWTNUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"EWTNUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"EWTNaufDeutsch.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"EXYUMelody.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EZMall.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EcclesiaTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EchoroukTV.dz","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"EchoroukTV.dz","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"EcuadorTV.ec","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"EcuadorTV.ec","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"Ecuavisa.ec","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"EcuavisaInternacional.ec","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Eda.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"EdaPremium.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Eden.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EdgeSport.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"EdgeSport.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EdgeSport.uk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EduChannel.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EduChannel.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EducationChannel.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"Een.be","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Een.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Een.be","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EestiKanal.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"EestiKanal.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"EestiKanal.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"EggNetwork.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"EiseiGekijo.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Ekoturk.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Ekoturk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"ElFinancieroBloomberg.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"ElGourmetNorte.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ElGourmetNorte.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ElGourmetNorte.ar","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ElGourmetSur.ar","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ElGourmetSur.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ElMehwarChannel.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ElMehwarChannel.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ElNueve.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ElTiempoTV.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ElTrece.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ElTrece.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ElTreceInternacional.ar","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"ElTreceInternacional.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ElTreceInternacional.ar","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ElectronTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ElevenSports1Polska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ElevenSports2Polska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ElevenSports3Polska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ElevenSports4Polska.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ElevenSportsUSA.uk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"Ellaycom.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Elmouritania.mr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Elta2.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EltaTV.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EmanChannel.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"EmanChannel.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"EmaratTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"EmaratTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"EmiliaRomagna24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"EmmanuelTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"EnaChannel.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Encuentro.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Energy.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"EnglishClubTV.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EnglishClubTV.uk","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EnglishClubTV.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EnglishClubTV.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EnglishClubTV.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"EnglishClubTV.uk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EnkiBenki.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Enlace.cr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Enlace.cr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Enlace.cr","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Enlace.cr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EnlaceJuvenil.cr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Ent.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"EnterFilm.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EnterFilm.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"EntermeiTele.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Enterr10Movies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"EntusiastTV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"EntusiastTV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"EntusiastTV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"EpicDrama.se","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EpicDrama.se","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"EpicDrama.se","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"EpicDrama.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EpicDrama.se","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EpicDrama.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"EpicDrama.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"EpicDrama.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"EpicDrama.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"EpicDrama.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"EpicDrama.se","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EpicDrama.se","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EpicTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Epix2East.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EpixDriveIn.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EpixEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EpixHits.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EpixWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EpsilonTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Equidia.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Equidia.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Equidia.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Equidia.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EquinoxeTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ErdelyTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Erotic.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Erotic2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Erotic3.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Erotic4.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Erotic7.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Erotic8.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EroxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EroxHD.us","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"EroxHD.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EroxHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EroxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EroxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EroxxxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EroxxxHD.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"EroxxxHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EroxxxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EroxxxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Ertsulovneba.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"EsTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"EsTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EskaRockTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EskaTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EskaTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EskaTVExtra.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EspaceTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EspansioneTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EsperanzaTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EspresoTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"EstrellaTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EstrellaTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"EstrellaTVEast.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"EtnoTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EuMusic.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"EuroD.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"EuroNewsAlbania.fr","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"EuroNewsDeutsch.fr","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuroNewsEllinika.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"EuroNewsEllinika.fr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EuroNewsEnglish.fr","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"EuroNewsEspanol.fr","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"EuroNewsEspanol.fr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"EuroNewsEspanol.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuroNewsFrancais.fr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"EuroNewsItaliano.fr","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"EuroNewsItaliano.fr","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuroNewsMagyar.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"EuroNewsPortugues.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"EuroNewsRusskiy.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"EuroNewsRusskiy.fr","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"EuroNewsRusskiy.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"EuroNewsRusskiy.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"EuroNewsRusskiy.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"EuroNewsSerbia.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"EuroStar.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurochannel.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Eurochannel.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Eurochannel.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Eurochannel.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Eurochannel.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Eurochannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Eurochannel.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Eurochannel.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Eurochannel.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Eurochannel.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"EuropaEuropa.uk","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"EuropaEuropa.uk","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"EuropaPlusTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport1.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Eurosport1.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Eurosport1.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Eurosport1.fr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Eurosport1.fr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Eurosport1.fr","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Eurosport1.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Eurosport1.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Eurosport1.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Eurosport1.fr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"Eurosport1.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Eurosport1.fr","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport1.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Eurosport1.fr","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"Eurosport1.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Eurosport1.fr","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"Eurosport1.fr","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Eurosport1.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Eurosport1Finland.fr","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport1France.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Eurosport1France.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport1Germany.fr","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Eurosport1Germany.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Eurosport1Germany.fr","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport1Germany.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Eurosport1Germany.fr","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"Eurosport1Italia.fr","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Eurosport1Italia.fr","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport1Norge.fr","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"Eurosport1Polska.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Eurosport1Romania.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Eurosport1Rossiya.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Eurosport1Rossiya.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Eurosport1Rossiya.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Eurosport1Rossiya.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Eurosport1Rossiya.fr","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Eurosport1Sverige.fr","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Eurosport1Sverige.fr","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"Eurosport1UK.fr","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Eurosport2.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Eurosport2.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Eurosport2.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Eurosport2.fr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Eurosport2.fr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Eurosport2.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Eurosport2.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Eurosport2.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Eurosport2.fr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"Eurosport2.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Eurosport2.fr","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport2.fr","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"Eurosport2.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Eurosport2.fr","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Eurosport2.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Eurosport2Danmark.fr","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Eurosport2France.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Eurosport2France.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport2Italia.fr","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Eurosport2Italia.fr","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Eurosport2NorthEast.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Eurosport2Polska.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Eurosport2Romania.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Eurosport2Rossiya.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Eurosport2Rossiya.fr","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Eurosport2Sverige.fr","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Eurosport2UK.fr","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Eurosport4K.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Eurosport4K.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"EurosportAsia.fr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"EurosportIndia.fr","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"EurosportNorge.fr","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"EvasionGuinee.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Evrokino.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Evrokino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Evrokino.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Evrokom.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ExaTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ExcelsiorTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ExodusTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ExplorerHistori.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"ExplorerHistori.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"ExplorerNatyra.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"ExplorerNatyra.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"ExplorerShkence.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"ExplorerShkence.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"ExtasyTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ExtraTV42.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ExtremeSportsChannel.nl","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ExtremeSportsChannelPolska.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FBC2.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"FBCSports.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"FBCTV.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"FBTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"FBTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FBTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"FEM.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"FETV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FM.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FMN.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"FMTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"FS1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FS2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FS2.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FXAndina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FXBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FXChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"FXChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FXChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FXEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FXEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FXEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FXEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FXMChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"FXMChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FXMChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FXMEste.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"FXMEste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"FXMEste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"FXMEste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"FXMOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"FXMovieChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FXMovieChannel.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"FXNorte.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"FXSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"FXTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FXTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"FXWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FXXEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FXXEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FXXEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FXXWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FYIEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FYIEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FYIEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FYIEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FYIWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FaceTV.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FactoriadeFiccion.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"FairchildTV2.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"FaithAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"FaktMarathi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Family7.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"FamilyChrgd.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FamilyEntertainmentTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FamilyGekijyo.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FamilyHD.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"FanaTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Fann.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Fann.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"Fann.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"FarinWata.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"FashionAfricaTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"FashionBoxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FashionBoxHD.us","site":"magticom.ge","lang":"en","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FashionBoxHD.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FashionBoxHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FashionBoxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FashionBoxHD.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FashionBoxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FashionOneEurope.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FashionOneEurope.uk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"FashionOneLatinAmerica.uk","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"FashionTVAsia.fr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"FashionTVBrazil.fr","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FashionTVEurope.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"FashionTVEurope.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"FashionTVEurope.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"FashionTVEurope.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FashionTVEurope.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FashionTVEurope.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FashionTVEurope.fr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FashionTVEurope.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FashionTVEurope.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FashionTVEurope.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"FashionTVEurope.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FashionTVEurope.fr","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FashionTVEurope.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FashionTVEurope.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FashionTVHDEurope.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FashionTVRussia.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FashionTVRussia.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FashionTVRussia.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FashionTVRussia.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FastFunBoxHD.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FastFunBoxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FastFunBoxHD.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FastFunBoxHD.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FastFunBoxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FastFunBoxHD.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FastFunBoxHD.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FastFunBoxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FavorietTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"FavoritTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FaxNews.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FeTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FeTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FederalnaTV.ba","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FederalnaTV.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FederalnaTV.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FeelGoodTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Fem3.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Fem3.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FenFolk.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FenFolk.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FenTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FenTV.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FeniksplusKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FightBoxHD.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FightBoxHD.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FightBoxHD.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FightBoxHD.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FightBoxHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FightBoxHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FightBoxHD.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FightBoxHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FightBoxHD.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FightChannel.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FightKlub.hu","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FightNetwork.ca","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FightNetwork.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FightNetwork.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"FightSports.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"FightSports.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"FightSports.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"FightSports.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FightSports.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FightSports.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FightingTVSamurai.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FijiOne.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"Filamchi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Film1Action.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Film1Drama.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Film1Family.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Film1Premiere.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Film24h.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Film4.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Film4.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Film4UK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Film4UK.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Film4UK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Film4UK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Film4UKPlus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Film4UKPlus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"FilmAksion.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"FilmAksion.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"FilmArtsAmericaLatina.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FilmArtsBrasil.ar","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FilmBoxAction.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxAction.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FilmBoxArthouseWorldwide.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FilmBoxCentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxCentralEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FilmBoxCentralEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FilmBoxExtraHDAdria.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FilmBoxExtraHDAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmBoxExtraHDAdria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FilmBoxExtraHDAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FilmBoxExtraHDCzechiaHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxExtraHDPolska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxExtraHDPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FilmBoxExtraHDRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmBoxFamily.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxFamily.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmBoxFamily.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FilmBoxNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"FilmBoxPremiumAdria.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FilmBoxPremiumAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmBoxPremiumAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FilmBoxPremiumCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxPremiumPolska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxPremiumPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FilmBoxPremiumRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmBoxRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FilmBoxStarsAdria.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FilmBoxStarsAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmBoxStarsAdria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FilmBoxStarsAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FilmBoxStarsHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmBoxTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FilmCafeHungary.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmCafeHungary.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FilmCafeRomania.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmDrame.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"FilmEurope.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmEuropePlus.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmHits.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"FilmKlub.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FilmKlub.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmKlubExtra.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmKomedi.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"FilmKomedi.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"FilmMania.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmMania.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FilmNow.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FilmNowHungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FilmPlusCzechia.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmPlusHungary.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FilmPlusHungary.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FilmPlusHungary.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FilmThriller.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Filmzone.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Filmzone.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Filmzone.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FilmzonePlus.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FilmzonePlus.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FilmzonePlus.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FirstChannel.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FishTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FishingVision.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FixFoxi.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"FlashTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"FliekNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"FlixEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FlixEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FlixEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FlixWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FlowersTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Focus.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Focus.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Focus.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FokusTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FokusTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FolkMelody.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FolkTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Folklorika.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Folx.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Folx.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FoodNetworkAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"FoodNetworkAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"FoodNetworkAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"FoodNetworkAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"FoodNetworkBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"FoodNetworkEMEA.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoodNetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FoodNetworkEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FoodNetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FoodNetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoodNetworkItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"FoodNetworkItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FoodNetworkLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FoodNetworkLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FoodNetworkPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FoodNetworkRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FoodNetworkUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"FoodNetworkUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"FoodNetworkUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FoodNetworkWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ForcesTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ForcesTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Formula.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ForoTV.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"ForoTVEstadosUnidos.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Fox8.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxArena.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FoxBusiness.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FoxBusiness.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"FoxBusiness.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FoxBusiness.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxClassicsAustralia.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxComedy.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxComedyPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FoxComedyPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoxComedyPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoxComedyPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FoxComedyPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoxCrimeAustralia.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxCrimeBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FoxCrimeHrvatska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FoxCrimeHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FoxCrimePortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoxCrimePortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoxCrimePortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FoxCrimePortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoxCrimeSrbija.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"FoxCrimeSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoxCrimeSrbija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FoxCrimeTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FoxCrimeTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"FoxDeportes.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FoxDeportes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"FoxDeportes.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxDocos.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FoxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"FoxEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"FoxFunny.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxGreece.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"FoxGreece.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"FoxHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FoxItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"FoxItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"FoxJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FoxLifeBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FoxLifeEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"FoxLifeEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"FoxLifeGreece.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"FoxLifeGreece.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"FoxLifeHrvatska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FoxLifeHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FoxLifeIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"FoxLifePortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoxLifePortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoxLifePortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FoxLifePortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoxLifeRegional.us","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"FoxLifeRussia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FoxLifeRussia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FoxLifeRussia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FoxLifeRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FoxLifeRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"FoxLifeSrbija.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"FoxLifeSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoxLifeSrbija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FoxLifeUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FoxMovies.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxMoviesHrvatska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FoxMoviesHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"FoxMoviesPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoxMoviesPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoxMoviesPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FoxMoviesPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoxMoviesSlovenija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FoxMoviesSrbija.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"FoxMoviesSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoxNL.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"FoxNewsChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FoxNewsChannel.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"FoxNewsChannel.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FoxNewsChannel.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoxNewsChannel.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxNewsChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FoxNewsChannel.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FoxNewsChannel.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FoxOne.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FoxPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"FoxPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"FoxPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"FoxPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"FoxRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"FoxRussia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FoxRussia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FoxRussia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FoxRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FoxRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"FoxSciFi.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxShowcase.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxSleuth.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxSoccerPlus.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FoxSoccerPlus.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxSports1.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FoxSports1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxSports1Chile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FoxSports2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxSports2Argentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FoxSports2Brasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FoxSports2Chile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"FoxSports2Chile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"FoxSports2LatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FoxSports2Mexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FoxSports3LatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FoxSports3Mexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"FoxSportsArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FoxSportsBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"FoxSportsChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"FoxSportsChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"FoxSportsLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"FoxSportsMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"FoxSportsPremium.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"FoxSportsRacing.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"FoxSportsRacing.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FoxSrbija.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"FoxSrbija.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"FoxSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"FoxSrbija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FoxSrbija.us","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"FoxTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"FoxTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"FoxTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Foxtel4K.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesAction.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesComedy.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesDrama.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesFamily.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesGreats.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesKids.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesPremiere.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesRomance.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"FoxtelMoviesThriller.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"France2.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"France2.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France2.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"France2.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"France2.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France2.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"France2.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"France2.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"France2.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"France2.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France2.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"France2.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"France24Arabic.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"France24English.fr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"France24English.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France24English.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"France24English.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"France24English.fr","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"France24English.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"France24English.fr","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"France24English.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"France24English.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"France24English.fr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"France24English.fr","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"France24English.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"France24English.fr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"France24English.fr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"France24English.fr","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"France24English.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"France24English.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"France24English.fr","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"France24English.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"France24English.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"France24English.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"France24English.fr","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France24English.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"France24English.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"France24English.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"France24English.fr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"France24Espanol.fr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"France24Espanol.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"France24Francais.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"France24Francais.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France24Francais.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"France24Francais.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"France24Francais.fr","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"France24Francais.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"France24Francais.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"France24Francais.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"France24Francais.fr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"France24Francais.fr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"France24Francais.fr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"France24Francais.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"France24Francais.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France24Francais.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"France24Francais.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France24Francais.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"France24Francais.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"France3.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"France3.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"France3.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"France3.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"France3.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France3.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"France3Alpes.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Alpes.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Alsace.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Alsace.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Aquitaine.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Aquitaine.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Auvergne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Auvergne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3BasseNormandie.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Bourgogne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Bourgogne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Bretagne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Bretagne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3CentreValdeLoire.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3CentreValdeLoire.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3ChampagneArdenne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3ChampagneArdenne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3CorseViaStella.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3CorseViaStella.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3CotedAzur.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3CotedAzur.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3FrancheComte.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3FrancheComte.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3HauteNormandie.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3LanguedocRoussillon.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3LanguedocRoussillon.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Limousin.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Limousin.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Lorraine.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Lorraine.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3MidiPyrenees.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3MidiPyrenees.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3NordPasdeCalais.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3NordPasdeCalais.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3ParisIledeFrance.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3ParisIledeFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3PaysdelaLoire.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3PaysdelaLoire.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3Picardie.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3Picardie.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3PoitouCharentes.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3PoitouCharentes.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3ProvenceAlpes.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3ProvenceAlpes.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France3RhoneAlpes.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France3RhoneAlpes.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France4.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"France4.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"France4.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France4.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France4.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"France5.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"France5.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"France5.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"France5.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"France5.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"France5.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Franceinfo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Franceinfo.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Franceinfo.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FrankenFernsehen.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"FrankenFernsehen.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FreeSpeechTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FreeSpeechTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FreeSports.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"FreeSports.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"FreeSports.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FreeformEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FreeformEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FreeformEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FreeformWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Frikanalen.no","site":"frikanalen.no","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/frikanalen.no.epg.xml"},{"channel":"Frisbee.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Frisbee.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FrissonsTV.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"FuelTV.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"FuelTV.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FuelTV.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"FuelTV.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"FuelTV.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"FuelTV.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"FuelTV.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"FujiTVNext.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FujiTVOne.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FujiTVTwo.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"FujianSouthEastTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"FunBox.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"FunBoxUHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"FunBoxUHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"FunBoxUHD.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"FunBoxUHD.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"FuseEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"FuseEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"FuseEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"FuseWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Fusion.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Futbol1.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Futbol2.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"GBNews.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GBNews.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GDSTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"GEB.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GL8.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"GMALifeTV.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"GMALifeTV.ph","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"GMANews.ph","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GMANewsTVInternational.ph","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"GMANewsTVInternational.ph","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"GMAPinoyTV.ph","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GMAPinoyTVAsiaPacific.ph","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"GMAPinoyTVAsiaPacific.ph","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"GMAPinoyTVMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"GMAPinoyTVUSACanada.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GMM25.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"GNT.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"GOTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"GOTVCanale163.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GSTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"GSTV.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"GTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"GTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"GTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"GVAXTV.ch","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Gabon1ere.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Gabon24.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"GabonCulture.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GalavisionEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GalavisionEste.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GalavisionOeste.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Galaxy4.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Galaxy4.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"GalaxyTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"GaliciaTVAmerica.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GaliciaTVEuropa.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"GaliciaTVEuropa.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"GaliciaTVEuropa.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"GaliciaTVEuropa.es","site":"tv.blue.ch","lang":"gl","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Gamavision.ec","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"GamberoRossoChannel.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"GameOne.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"GameOne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"GameOne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"GameOne.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GameOnePlus1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"GamePlus.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GameShowNetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GameShowNetworkEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GameShowNetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"GameShowNetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GameShowNetworkWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GameTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Gametoon.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Gametoon.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Gametoon.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Gametoon.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Gametoon.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"GansuTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"GaoraSports.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"GarageTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GarageTV.ar","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"GauTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"GauTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"GeaTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Gem.in","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"GemShoppingNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GemShoppingNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GemeenteWestlandTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"GeminiTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"GemsTV.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"GemsTV.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"GenesisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GeneveRegionTelevision.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Genteve.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"GeoTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GetItInfomercial.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GetTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GhOneTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"GhanaLearningTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"GhanaTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Giallo.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Giallo.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GinxeSportsTVGreece.uk","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"GinxeSportsTVInternational.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GlitzLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GlitzLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"GlobalNewsBC1.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"GlobalTV.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"GloboNews.br","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"GloboNews.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"GloboOn.br","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Gloob.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Gloobinho.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"GloomChannel.mz","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Go4It.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Go4It.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GoShopChinese.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"GoShopMalay111.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"GoShopMalay118.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"GoTV.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"GoTV.at","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"GoTV.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GodTVScandinavia.uk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"GodTVScandinavia.uk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"GodTVUK.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"GodTVUS.uk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Godare.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Gol.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Gol.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"GolTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GolTV.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"GolTV.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GolTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GolTVLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"GoldHD.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GoldTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"GoldTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"GoldTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"GoldUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Golden.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldenEdge.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldenEdge.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GoldenLatinoamerica.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"GoldenMultiplex.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldenPlus.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldenPremier.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldenPremier.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"GoldenPremier2.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"GoldstarTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GolfChannelCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"GolfChannelFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"GolfChannelFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"GolfChannelFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GolfChannelLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"GolfChannelMalaysia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"GolfChannelPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"GolfChannelUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GolfChannelUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GolfChannelUS.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"GolfNetwork.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"GolfPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"GolfPlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"GolfPlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"GolfeTVAfrica.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GolicaTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"GoneViralMusic.bb","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GoneViralTV.bb","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GoneViralVogue.bb","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GoneViralXtreme.bb","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"GospelBroadcastingNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"GospelMusicTV.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"GouwestadTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"GradskaMTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Grand.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"GrandGeneveTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"GrapheTV.mq","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"GreatAmericanCountry.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"GreatMovies.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GreatMovies.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GreatMoviesAction.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GreatMoviesAction.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GreatMoviesClassic.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GreatMoviesClassic.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GreatTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"GreenChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"GreenChannel2.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Grit.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Grit.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Guadeloupe1ere.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"GuangdongSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"GuangxiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"GuangzhouTV.cn","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Guatevision.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"Guatevision.gt","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"Gubbare.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"GuizhouTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Gulli.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Gulli.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Gulli.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Gulli.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"GulliAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"GulliBrasil.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"GulliGirl.fr","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"GurjaaniTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Guyane1ere.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Gyandarshan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"H1.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"HAPSATV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBO2Brasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HBO2CentralEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HBO2East.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBO2East.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HBO2East.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBO2Latinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBO2Latinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBO2Polska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HBO2West.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBO2West.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HBO3CentralEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HBO3Polska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HBOAdria.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HBOAdria.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HBOAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HBOAdria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HBOAdria.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HBOAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HBOAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HBOAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HBOBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOCaribbean.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"HBOChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"HBOComedyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOComedyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOComedyWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HBOEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HBOEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOFamilyAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HBOFamilyAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HBOFamilyAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HBOFamilyBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOFamilyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOFamilyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOFamilyLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOFamilyLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOFamilyLatinoamerica.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOFamilyWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOFamilyWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOHDLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"HBOHits.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HBOHits.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HBOHits.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HBOHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HBOLatinoEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"HBOLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"HBOMalaysia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"HBOMundiBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOMundiLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOMundiLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOMundiWest.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOPlusLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"HBOPlusLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOPlusLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HBOPopBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOPopLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOPopLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBORomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HBOSignatureAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HBOSignatureAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HBOSignatureAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HBOSignatureBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOSignatureEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOSignatureEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HBOSignatureEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOSignatureLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOSignatureLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOSignatureWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOXtremeBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HBOXtremeLatinoamerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HBOZoneEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HBOZoneEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HBOZoneWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HCH.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"HDL.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"HDNetMovies.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HDNetMovies.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HGTVAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"HGTVAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HGTVAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HGTVAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HGTVBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HGTVDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HGTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HGTVEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HGTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HGTVEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HGTVItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"HGTVItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HGTVLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HGTVPanRegional.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HGTVPanRegional.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HGTVPanRegional.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HGTVPanRegional.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HGTVPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HGTVSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"HGTVSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"HGTVUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"HGTVUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"HGTVWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HITN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HITN.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"HITN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HITV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"HKSTV.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HKSTV.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HLN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HLN.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HLN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HNTV.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HNTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HOiTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"HRFernsehen.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"HRFernsehen.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRFernsehen.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HRFernsehen.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HRFernsehen.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"HRT1.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRT1.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HRT1.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HRT1.hr","site":"tv.blue.ch","lang":"hr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HRT1.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HRT2.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRT2.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HRT2.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HRT2.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HRT3.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRT3.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HRT4.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRT4.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HRTInternational.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HRTInternational.hr","site":"tv.blue.ch","lang":"hr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HSE.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"HSE.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HSEExtra.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"HSN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HSN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HSN2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HTV.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"HTV.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HTV.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"HTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HaHa.rs","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HaHa.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HaberGlobal.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"HaberGlobal.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"HaberGlobal.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Haberturk.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Haberturk.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Haberturk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"HainanSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"HaitiSportsTV1.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"HaitiSportsTV2.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"HalkTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"HalkTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"HalkTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"HallmarkChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HallmarkChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HallmarkChannelEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HallmarkChannelWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HallmarkDrama.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HallmarkDrama.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HallmarkMoviesMysteriesEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HallmarkMoviesMysteriesEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HallmarkMoviesMysteriesWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HamedanTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"Happy.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Happy.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Happy.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HappyChannel.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HappyReality1.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HappyReality1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HappyReality2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HappyReality2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HareKrsnaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Hatoscsatorna.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Hayat.ba","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Hayat.ba","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Hayat.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Hayat.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HayatFolk.ba","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"HayatFolk.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HayatFolk.ba","site":"tv.blue.ch","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HayatFolk.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HayatMusic.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HayatPlus.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HayatPlus.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HayatPlus.ba","site":"tv.blue.ch","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Hayatovci.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Hayatovci.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Heartland.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HebeiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"HeilongjiangTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Heimatkanal.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Heimatkanal.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Heimatkanal.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HelvetiaOneTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HemaTV.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HenanTVSatellite.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"HeroesIcons.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HeroesIconsEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HillsongChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HillsongChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"HipTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"HirTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HirTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HispanTV.ir","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"HistoireTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"HistoireTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"HistoireTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"HistoireTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HistoireTV.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"HistoriaEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"HistoriaEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"HistoriaPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"HistoriaPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"History2Asia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"History2Asia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"History2Asia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"History2Asia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"History2Asia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"History2Brasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"History2Latinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"History2Latinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"History2MiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"History2Polska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"History2Polska.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"History2Polska.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"History2Polska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"History2Polska.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"HistoryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"HistoryAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"HistoryAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HistoryAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"HistoryAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"HistoryAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"HistoryBenelux.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"HistoryBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"HistoryDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"HistoryDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HistoryEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HistoryEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HistoryEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"HistoryEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HistoryEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HistoryEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HistoryEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HistoryEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HistoryEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HistoryEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HistoryEurope.us","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"HistoryEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HistoryEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HistoryHDDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HistoryItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"HistoryItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"HistoryItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HistoryLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"HistoryMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"HistoryPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HistoryRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HistoryRussia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"HistoryRussia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"HistoryRussia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"HistoryRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"HistorySverige.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"HistoryTV18.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"HistoryWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HistoryenEspanol.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HistoryenEspanol.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"HistoryenEspanol.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HitExpressTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Hits.sg","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"Hits.sg","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HitsMelody.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HitsMovies.sg","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"HitsMoviesPlus1.sg","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"HobbyTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"HobbyTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HofstreekTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"HolaTVAmericaLatina.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"HolaTVEstadosUnidos.es","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HollywoodHD.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"HollywoodHD.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"HollywoodSuite00sMovies.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"HollywoodSuite70sMovies.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"HollywoodSuite80sMovies.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"HollywoodSuite90sMovies.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"HomeDramaChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"HomeTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HomeTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Honey.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"Honvietv.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HopeChannelFiji.us","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"HopeChannelNorthAmerica.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HopeChannelNorthAmerica.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"HopeTVDeutsch.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"HopeTVDeutsch.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"HorrorChannelUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"HorrorChannelUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"HorseCountryTV.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"HorseCountryTVSverige.uk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"HorseTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Hot.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"HtMusicChannelHungary.ro","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HtMusicChannelHungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"HtMusicChannelRomania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HubeiSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"HumTV.pk","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"HumanaTVPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"HunanTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"HungamaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"HustlerHDEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"HustlerHDEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HustlerHDEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HustlerHDEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HustlerHDEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HustlerHDUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HustlerTVEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"HustlerTVEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"HustlerTVEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"HustlerTVEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"HustlerTVEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"HustlerTVEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"HustlerTVEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"HustlerTVEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"HustlerTVEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"HustlerTVMonthlyOffer.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"HypeTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"HypeTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"I24NewsEnglish.il","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"I24NewsEnglish.il","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"I24NewsEnglish.il","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"I24NewsEnglish.il","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"I24NewsFrancais.il","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"I24NewsFrancais.il","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"I24NewsFrancais.il","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"I24NewsFrancais.il","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ICTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ICableFinanceInfoChannel.hk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ICableNewsChannel.hk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IDXChannel.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"IFCEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IFCEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"IFCEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IFCWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IFilmArabic.ir","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"IFilmArabic.ir","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ILove.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"INSP.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"INSP.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"INews.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"INews.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"IONPlusEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"IONTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IONTVEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"IONTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"IONTVWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IONTelevisionEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"IOTV.sx","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"IRIB1.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IRIB2.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IRIB3.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IRIB4.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IRIB5.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IRINN.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"ISat.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ISat.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ISat.ar","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ISatBrasil.ar","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ITV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ITV2.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ITV2.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV2.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITV2.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ITV2Plus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV2Plus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITV3.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ITV3.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV3.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITV3.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ITV3Plus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV3Plus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITV4.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ITV4.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV4.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITV4.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ITV4Plus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITV4Plus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITVBe.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITVBe.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITVBe.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ITVLondon.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ITVLondon.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ITVLondon.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ITVLondon.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ITVNetworks.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"IVC.ve","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IVC.ve","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IVCInternacional.ve","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"IberaliaTV.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"IberaliaTV.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"IceFire.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"IceFire.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"IciRadioCanadaTeleMontreal.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"IciRadioCanadaTeleQuebec.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"IctimaiTV.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"IdeaChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IdeaalTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"IdealExtra.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"IdealExtra.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"IdealTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"IdealWorld.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"IdealWorld.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"IdmanTV.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"Ie.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Ignition.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"IgoShogiChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"IjsselmondTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"IllusionPlus.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"IllusionPlus.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ImediTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ImpacTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ImpactNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ImpactNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"InDemandenEspanol.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IndiaNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IndiaNewsHaryana.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IndiaNewsUttarPradesh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IndiaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IndiaToday.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IndiePlexEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IndiePlexWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"IndigoTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"IndijskoeKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Indosiar.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"Indosiar.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"Indradhanu.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IneditTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"InfoSportPlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"InfoSportPlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"InfoTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Informercial1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Informercial77.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Informercial82.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Informercial87.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Informercial91.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"InformercialSecret.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"IngenioTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"InooroTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"InsightHD.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"InsightHD.nl","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"InsightHD.nl","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"InsightHD.nl","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"InsightUHD.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"InsightUHD.nl","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"InsightUHD.nl","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Inspira.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Inspira.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Inspira.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"InspirationTV.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"InspirationTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Inter.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Inter.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"InterPlus.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"InterTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"InterTVAltoLitoral.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"InterTVCabugi.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"InterTVGrandeMinas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"InterTVSerramar.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"InvestigacaoDiscoveryBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Investigation.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"InvestigationDiscoveryEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"InvestigationDiscoveryEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"InvestigationDiscoveryEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"InvestigationDiscoveryEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"InvestigationDiscoveryEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"InvestigationDiscoveryIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"InvestigationDiscoveryLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"InvestigationDiscoveryLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"InvestigationDiscoveryLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"InvestigationDiscoveryLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"InvestigationDiscoveryPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"InvestigationDiscoveryRossiya.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"InvestigationDiscoveryRossiya.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"InvestigationDiscoveryRossiya.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"InvestigationDiscoveryRossiya.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"InvestigationDiscoverySur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"InvestigationDiscoveryUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"InvestigationDiscoveryWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Iqiyi.cn","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"IqraaAfricaEurope.sa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"IranInternational.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Iris.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Iris.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Iris.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Iris.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"IrkalaTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"IsangoTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"IsharaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"IslamChannel.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"IslandLuckTV.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"IslandTV.ht","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"IstoriyaTelekanal.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"IstoriyaTelekanal.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Italia1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Italia1.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Italia1.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Italia1.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Italia2.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Italia2.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Italia2.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Italia2.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ItaliaChannel.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ItalianFishingTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"IvoireTVMusic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"IzauraTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"IzauraTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"IzvestiaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"JBS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"JCNChannel14.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"JCOMHigashiKanto.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JCOMPremierChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JCOMTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JKN18.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"JMLDirect.uk","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"JMLDirect.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"JOCXDTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JOMXDTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JORXDTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JOTXDTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"JOne.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"JOne.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"JOne.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"JPNews.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"JSports1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JSports2.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JSports3.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JSports4.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JakTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"JakTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"JalshaMovies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"JameJamTVNetwork1.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"JapanLeisureChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JayaPlus.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Jeka.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Jeka.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"JenZ.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"JewelleryMaker.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"JewelleryMaker.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"JewelryTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"JewelryTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"JiangsuLiangMakeUp.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"JiangsuSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"JiangsuTV.cn","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"JiangxiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"JidaigekiSenmonChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"JilinTVStation.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Jim.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"JimJamEurope.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JimJamEurope.uk","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"JimJamEurope.uk","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"JimJamEurope.uk","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"JimJamEurope.uk","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"JimJamEurope.uk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"JimJamHungary.uk","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"JimJamPolsat.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"JimJamRomania.uk","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"JimJamRossiya.uk","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"JimJamRossiya.uk","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"JinvaniChannel.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"JojCinema.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JojFamily.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JojPlus.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JojSport.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Jojko.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"JolibaTVNews.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Jonack.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"JoyNews.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"JoyPrime.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"JugotonTV.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JugotonTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"JugotonTV.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Junior.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Junior.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Junior.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"JuniorTV.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"JuniorTV.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"JurnalTV.md","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"JusticeCentralTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"JusticeCentralTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"JusticiaTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Juwelo.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"JyotishDuniya.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"K05FWD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K08MMD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"K1.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"K11LCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K11LCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K11LCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K13AVD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K13AVD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K13AVD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14HCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14HCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14JSD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14JSD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14JSD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14JSD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K14JSD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K15HJD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K17JID1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K17JID2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K17JID3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K17JID4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K18DRD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K18HDD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K19KVD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K19KVD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K2.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"K2.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"K2.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"K2.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"K21DOD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K21DOD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K21DOD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K21LCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K23DTD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K23TV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"K24.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"K25OMD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K25OMD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K25OMD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26CID3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26CID5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26CID7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26GSD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26GSD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K26GSD8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K28CWD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K28CWD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K28CWD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K3.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"K3.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"K30JDD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K31NFD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K31NFD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K32LOD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K38IZD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K38IZD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K38IZD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K38JPD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K43LWD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K46LGD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K46LGD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K46LGD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K46LGD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"K48MND2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAAPLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAAPLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAAPLD8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KABCDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KABCDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KABCDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KABCDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KABECD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KABECD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KACALP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAEFDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAEFDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAEFDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAHCLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAILDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAILDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAILDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAKZLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAKZLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAKZLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KATV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KAXTCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAYUDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"KAZADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAZADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAZADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAZADT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAZTCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KAZTCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBABLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBABLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBABLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBABLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBAKDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBAKDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBAKDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBBVCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBCChannel1.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"KBCChannel1.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KBCChannel1.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"KBCChannel1.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"KBCWDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBCWDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBCWDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBCWDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBCWDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBEHDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFKLP9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFXCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFXCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBFXCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBIDLP8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBN.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"KBNTCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBNTCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBNTCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBNTCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBSKorea.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KBSWorld.kr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"KBSWorld.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KBSWorld.kr","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"KBSWorld.kr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KBSWorld.kr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"KBSWorld.kr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"KBSWorld.kr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"KBSWorld.kr","site":"tv.blue.ch","lang":"ko","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KBSWorld.kr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"KBSWorldJapan.kr","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"KBTFCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTFCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTFCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBTVCD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBVUDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBVUDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBVUDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KBVUDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"KC2.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"KCALDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCALDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCALDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCALDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCALDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBSDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KCBSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCBTLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCETDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCETDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCETDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCN1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCN1.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KCN2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCN2.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KCN3.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"KCN3.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCN3.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KCN3.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KCNIstok.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCNK.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCNRaska.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCNSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNSDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNSDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNZCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNZCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNZCD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNZCD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCNZapad.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KCOPDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOPDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOPDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOPDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOYDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOYDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCOYDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCRADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCRADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCSMDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCSOLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCSOLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCSOLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCSOLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCVUDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCVUDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCVUDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCVUDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCVUDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KCWQLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDBKLP2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDEOLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDFXCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDJTCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDOCDT8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDPHLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDPHLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTFLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTSLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KDTVDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEBKLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KECALD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KECALD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KECYDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEETDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEETDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEETDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEETDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEETDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEJRLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KERODT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KERODT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KERODT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KESQDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KESQDT8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEUVLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEVCCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEVCCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEVCCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEXTCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEYTDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEYTDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEYTDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KEZTCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFAZCA2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFFSCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFLALD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFLALD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFLALD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFLALD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFLALD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMBDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMBDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMBDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMBDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMBDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMSLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMSLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMSLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMSLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFMSLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFPBLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFPBLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFPBLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFPHCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFPHCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFREDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFREDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFREDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSFDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSNDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFSNDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTRDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTRDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTUDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTVDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFTVDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KFULLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGECLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGECLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGECLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGECLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGETDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGETDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGMCDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGPEDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGPEDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTFDT1.us","site":"pbsguam.org","lang":"en","url":"https://iptv-org.github.io/epg/guides/gu/pbsguam.org.epg.xml"},{"channel":"KGTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTVDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTVDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTVDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KGTVDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHDTLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHIZLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHL.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KHL.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KHSCLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHSCLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHSCLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHSCLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHSLDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHSLDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHTVCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KHTVCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KICUDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KICUDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KICUDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KICUDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIEMDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIIOLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIKA.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"KIKA.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"KIKA.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KIKA.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"KIKA.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"KIKA.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"KIKA.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"KIKA.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"KIKA.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"KIKA.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KIKA.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"KILMDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIONDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIONDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIONDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIRODT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"KIXEDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIXEDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KIXEDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJEOLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJEOLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJEOLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJEOLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJEOLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJHPLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJHPLP3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJHPLP4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJLADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJLADT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KJLADT9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKAFCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKEYLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKFXCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKFXCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD10.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPMCD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKPXDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KKTFLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLCSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLCSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLFBLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLFBLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLFBLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLPDLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLPDLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLPDLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KLRACD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMAXDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMAXDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMAXDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMAXDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMAXDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMBYLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMBYLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMEXDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMEXDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMEXDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMEXDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMIRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMIRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMIRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMCLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMDCD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMMWLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMPHCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMPHCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMPHDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMPHDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMSGLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMSGLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMSGLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMT.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"KMT.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"KMT.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"KMT.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"KMT.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"KMT.mq","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"KMTPDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMTPDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMTPDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMTPDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMTVAsia.kr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"KMUMCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMUVLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KMYADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNBCDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KNBCDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNBCDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNBCDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNETCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNLACD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNLACD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNRTV.gl","site":"knr.gl","lang":"kl","url":"https://iptv-org.github.io/epg/guides/gl/knr.gl.epg.xml"},{"channel":"KNSDDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNSDDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNSODT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNSODT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNSODT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"KNTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNTVDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNTVDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNVNDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNVNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNVNDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KNXTDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOCEDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOCEDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOCEDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOCEDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KODGLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOFYDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOFYDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOTRLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOVRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOVRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOVRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KOVRDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPBSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPBSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPBSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPBSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPDFCA6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPHELD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPIXDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPIXDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPIXDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPIXDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPJKDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPJKDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPJKDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPJKDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPMFLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPMRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPMRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPMRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSELD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSELD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSELD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSNLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSNLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPSPDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPXNDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KPlus.kr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"KQCADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQCADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQCADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEDDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEDDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEDDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEDDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEHDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEHDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEHDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQEHDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQETDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQETDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQETDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQETDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQMMCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQRMLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQROLD9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KQSLDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRAHCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCADT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCADT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCBDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCBDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCBDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRCRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRDTCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRDTCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRETCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRETCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRETCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRETCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRHTLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRONDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRONDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRONDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRONDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KRT.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"KRT.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KRVULD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSAOLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBBCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBOCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBSCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBSCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBTLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBWDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBWDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBWDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBYDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBYDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBYDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSBYDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSCIDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSCIDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSDILD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSDXLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSDYLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSDYLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSEEDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSEEDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSFVCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSFVCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSKJCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSKJCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSKJCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSKJCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSKJCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMVLD10.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMVLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMVLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMVLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSMVLD9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSPXDT9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTSDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSTVLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSWBDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSWBDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSWBDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KSWBDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTASDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTAVLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTAVLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTAVLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTBNDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTBNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTBNDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTBNDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTBNDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFFDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFFDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFFDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFFLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFKDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFKDT13.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFKDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTFKDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLADT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"KTLADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLADT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLNDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLNDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTLNDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTNCDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTNCDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTNHome.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KTNHome.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"KTNNews.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"KTO.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"KTO.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"KTO.fr","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"KTO.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"KTO.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KTSBCD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTSBCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTSBCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTSFDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTSFDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTSFDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTTVDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KTTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTTVDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTV.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"KTV.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTV1.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTV2.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTVAlQurain.kw","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"KTVAlQurain.kw","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTVArabe.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTVEthraa.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"KTVGuyane.gf","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"KTVKhallikBilbait.kw","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"KTVKhallikBilbait.kw","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"KTVPLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTVSport.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"KTVSportPlus.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"KTVUDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVUDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVUDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVUDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVWDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTVXDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"KTXLDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTXLDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTXLDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KTXLDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUANLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUANLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUCOLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUKRLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUNALP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KURKLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KURKLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KURKLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUSIDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVECD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVEDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVIDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVIDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVIDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVIDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVSDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVSDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVSDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KUVSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVBCLP9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVCRDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVCRDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVCRDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVCRDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVEADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVEADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVEADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVESLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVFSjonvarp.fo","site":"kvf.fo","lang":"fo","url":"https://iptv-org.github.io/epg/guides/fo/kvf.fo.epg.xml"},{"channel":"KVHFLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD13.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVHFLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVIEDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVIEDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVIEDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVIQLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT10.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMDDT9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMEDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVMMCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVNTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KVPALD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVPTDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVPTDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVPTDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVPTDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVSNDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KVVGLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWHYDT7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KWMOLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXBFLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT10.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT12.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXLADT7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTULD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTULD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTULD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTVDT1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTVDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTVDT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTVDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXTVDT5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KXVULP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYAVLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMADT3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KYMBLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZDFLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZDNLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZGNLD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZGNLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZKCLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZMMCD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZMMCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZMMCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZSDLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZTCLP1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KZVULD1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KabelEinsAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"KabelEinsClassics.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"KabelEinsClassics.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"KabelEinsDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KabelEinsDokuDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KabelEinsSchweiz.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KadirgaTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"KalacTV.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"KaleidoskopTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KalingaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"KamemeTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KanakNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Kanal11.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Kanal2.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Kanal2.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Kanal2.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Kanal23.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Kanal26.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Kanal33.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Kanal4.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"Kanal5.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"Kanal5.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"Kanal5.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Kanal5.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Kanal7.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Kanal7.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Kanal7.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Kanal9.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Kanal9.se","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KanalA.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KanalAustralTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"KanalAustralTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"KanalAustralTV.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"KanalD.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"KanalD.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"KanalD.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KanalD.tr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"KanalDRomania.tr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"KanalDisney.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KanalSim.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KanalV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Kanali7.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KanshiTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"KanshiTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"KapatidTV5.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KapitanFantastika.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Karusel.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KaruselInternational.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"KaruselInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KaruselInternational.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"KaruselInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"KaruselInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"KaruselInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"KaruselInternational.ru","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KaruselInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KassTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KavkasiaTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"KayoPops.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Kazbuka.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KentronTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"Kerrang.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Ketnet.be","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Ketnet.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Khabar24.kz","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KhorasanRazaviTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"KhushbooTVBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"KibrisGencTV.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KibrisKanalT.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KibrisTV.cy","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KidZoneTV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"KidZoneTV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"KidZoneTV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"KidsStation.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"KidsTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"KidzonePlus.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"KidzonePlus.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"KidzonePlus.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Kino.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KinoBarrandov.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KinoNova.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"KinoPolska.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KinoPolska.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"KinoPolskaMuzyka.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"KinoTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"KinoTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KinoTV.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"KinoTV.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Kinohit.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinohit.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Kinokomedija.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinomiks.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinomiks.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Kinopokaz.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinopremyera.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinopremyera.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Kinosemja.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinoserija.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kinosvidanie.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KinoweltTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"KinoweltTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KissTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"KissTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"KissTV.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KitchenTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"KitchenTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Kix.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"Kix.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"Kix.hk","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"KlanMacedonia.al","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"KlasikTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"KlasikTV.hr","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"KlasikTV.hr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KlasikTV.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Kohavision.rs","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Kohavision.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Kohavision.rs","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"KoloTV.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"KoloTV.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"KoloTV.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Komediynoe.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KompasTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"KompasTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"KonTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"KonniyMir.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KontaktTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"KoroskaTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"KrasnayaLiniya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KreatorTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"KrikTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KritiTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"Ktoestkto.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kuban24Orbita.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KuhnyaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Kunskapskanalen.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"Kunskapskanalen.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"KuraiTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"KurdistanTV.iq","site":"tv.blue.ch","lang":"ku","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"KurirTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"KurirTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KuvoTV.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"KuvoTV.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"KuwaitTV.kw","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"KuwaitTV.kw","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"KvartalTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"KweziTV.yt","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"KweziTV.yt","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"KweziTV.yt","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"KyivTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"KykNet.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"KykNetKie.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"KykNetNou.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"L1TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LBCInternational.lb","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"LBCInternational.lb","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LCA.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"LCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"LCI.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"LCI.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"LCI.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LCI.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"LCPAssembleeNationale.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"LCPPublicSenat.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"LDPRTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"LEquipe.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"LEquipe.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"LEquipe.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"LEquipe.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LFCTV.uk","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"LFCTV.uk","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"LFCTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"LFMTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LMTVFrancais.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LNPlus.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"LOETV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LOKTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LONTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LOSTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LTMTV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"LTV1.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"LTV7.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"La5.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"La5.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"La5.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"La5.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"La7.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"La7.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"La7d.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"La7d.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LaChaineMeteo.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"LaChaineMeteo.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LaF.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"LaLaTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"LaLigaTV.es","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"LaLiganaZap.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"LaMinor.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LaNouvelleChaineIvorienne.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LaOtra.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"LaRed.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"LaRed.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"LaSexta.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"LaSexta.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"LaTele.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LabelTV.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Laff.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LagosTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"LalaTV.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LampFallTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LanaTV.lb","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"LanaTV.lb","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"LansingerlandTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LasEstrellasEuropa.mx","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LasEstrellasLatinoamerica.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"LasEstrellasLatinoamerica.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"LasEstrellasMexico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"LasEstrellasMexicoPlus1.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"LasEstrellasMexicoPlus2.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Latele.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"Latina.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"Latina.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"Latinos1TV.ch","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LaudatoTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"LawCrime.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"LazioStyleTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"LeafsNationNetwork.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"LemanBleu.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LenTV24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"LeoTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LeoTVGold.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LiaoningTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"LiderTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Life.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LifeTV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"LifeTV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"LifeTV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"LifeTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"LifestyleFashion.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"LifetimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"LifetimeAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"LifetimeAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"LifetimeAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"LifetimeAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"LifetimeBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"LifetimeEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LifetimeEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"LifetimeEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"LifetimeEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"LifetimeLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"LifetimeMoviesEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LifetimeMoviesEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"LifetimeMoviesEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"LifetimePolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"LifetimeRealWomen.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"LifetimeRealWomen.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"LifetimeRealWomenEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LifetimeWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LinkTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LinkTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Liv.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"LivingFaithTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LiyuanTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"LjubljanaTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Loading.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"LocoTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"LogoEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LogoEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LogoWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LokSabhaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"LokshahiNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Lol.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"LoloTV.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"LoloTV.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"LoloTV.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"LolyTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LondonLive.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"LondonLive.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"LonghornNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LonghornNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"LookNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"LookSport.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LookSport2.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LookSport3.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LookSportPlus.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LoungeTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LoveNature.ca","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"LoveNature.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LoveNature.ca","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LoveNature.ca","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"LoveNature.ca","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"LoveNature.ca","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"LoveNature.ca","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Loviribolov.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"LubimoeKino.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"LuckyJacktv.lu","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Ludikids.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"LumenChristiTVNetwork.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"LutaPelaFama.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"LutaPelaFama.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"LuxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"LuxeTV.lu","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"LuxeTV.lu","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"LuxeTV.lu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"LuxeTV.lu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"LuxeTV.lu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"LuxeTV.lu","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"LuxeTV.lu","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Luxury.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Lyubimoe.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"M1.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"M1.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"M1.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"M1.hu","site":"tv.blue.ch","lang":"hu","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"M1.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"M1.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"M1.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"M1Film.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"M1Film.hr","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"M1GlobalTV.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"M1Gold.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"M1Gold.hr","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"M2.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"M2.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"M2.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"M2.hu","site":"tv.blue.ch","lang":"hu","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"M2.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"M2.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"M4Sport.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"M4Sport.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"M4Sport.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"M4Sport.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"M5.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"M5.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"M5.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"M5.hu","site":"tv.blue.ch","lang":"hu","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"M5.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"M5.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"M6.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"M6.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"M6.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"M6.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"M6Music.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"M6Music.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"M6Suisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MASN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MASN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MASN2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MBC.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBC.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBC.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MBC.mw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MBC2.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBC2.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBC3.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBC3.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBC4.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBC4.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBC5.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBC5.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCAction.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCAction.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCAmerica.kr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MBCBollywood.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCBollywood.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCDrama.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCDrama.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCDramaPlus.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCDramaPlus.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCMaser.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCMaser.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCMax.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MBCMax.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MBCTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MBNPlus.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MBS.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"MBS.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"MBS.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"MCAETTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"MCMFrance.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"MCMFrance.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MCMFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MCMFrance.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MCMPop.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"MCMTop.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"MCMTop.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"MCMTop.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MCMTop.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MCMTop.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MCMTop.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MCMTop.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"MCMTopRussia.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MCMTopRussia.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MCMTopRussia.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MCMTopRussia.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MCOTHD.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MCRTVNF.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MDRFernsehenSachsen.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MDRFernsehenSachsenAnhalt.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"MGMHDUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MITV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ML5TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MLATV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MLBNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MLBNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MLBNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MLBStrikeZone.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MNCNews.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MNCSports.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MNCTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MNCTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"MNTEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MNX.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MNetEast.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MNetMovies1EastAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MNetMovies1WestAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MNetMovies2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MNetMovies3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MNetMovies4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MNetMoviesMenofAction.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetSouthAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MNetSouthAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MNetWest.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MOOVConcertMV.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"MOOVConcertMV.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"MRT1.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MRT1.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MRT2.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MRT2.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MRT3.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MRT4.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MRT5.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MRTSobraniskikanal.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MSG.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MSG.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MSG2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MSNBC.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MSNBC.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MSNBC.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"MSNBC.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MShopSignature.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MShopSuperSale.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MTV00s.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"MTV00s.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"MTV00s.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MTV00s.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"MTV00s.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MTV00s.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"MTV00s.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"MTV00s.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTV00s.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MTV00s.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MTV00s.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"MTV00s.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MTV00s.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTV00s.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTV00s.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTV00s.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTV2East.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MTV2East.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MTV2East.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MTV2West.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MTV3.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"MTV80s.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"MTV80s.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MTV80s.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MTV80s.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTV80s.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MTV80s.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MTV80s.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MTV80s.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"MTV80s.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MTV80s.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MTV80s.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTV80s.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTV80s.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTV80s.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTV80s.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTV90s.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTV90s.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MTV90s.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MTV90s.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MTV90s.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTV90s.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTV90s.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTV90s.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTV90s.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MTVAlloubnaniya.lb","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MTVAlloubnaniya.lb","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MTVBaseAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MTVBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MTVClassicEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MTVClassicEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MTVClassicWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MTVEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"MTVEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MTVEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"MTVEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"MTVFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"MTVFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MTVFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MTVGermany.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MTVGermany.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTVGermany.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MTVGlobal.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MTVGlobal.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"MTVGlobal.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MTVGlobal.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTVGlobal.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTVGlobal.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTVGlobal.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTVGlobal.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"MTVHitsEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"MTVHitsEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MTVHitsEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"MTVHitsEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MTVHitsEurope.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"MTVHitsEurope.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MTVHitsEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTVHitsEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MTVHitsEurope.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"MTVHitsEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"MTVHitsEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MTVHitsEurope.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MTVHitsEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MTVHitsEurope.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MTVHitsEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTVHitsEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTVHitsEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTVHitsEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTVHitsEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MTVHitsEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"MTVHitsFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MTVHitsFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MTVHitsUK.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MTVHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTVIndia.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"MTVIndia.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"MTVIndia.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"MTVIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MTVIndia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"MTVIndia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"MTVJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MTVLatino.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"MTVLatino.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"MTVLatinoNorte.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"MTVLatinoSud.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"MTVLatinoSud.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"MTVLive.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"MTVLive.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"MTVLive.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MTVLive.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"MTVLive.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MTVLive.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MTVLiveHD.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MTVLiveHD.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MTVLiveHD.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MTVLiveHD.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MTVLiveHD.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MTVLiveHD.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MTVLiveHD.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTVLiveHD.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MTVLiveHD.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MTVLiveHD.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MTVLiveHD.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MTVLiveUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MTVMusic24.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MTVMusic24.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MTVMusicItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"MTVMusicItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"MTVNL.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MTVNordic.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"MTVNordic.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"MTVNordic.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MTVNordic.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"MTVNordic.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"MTVPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MTVPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"MTVRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MTVRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MTVSouthEastAsiaPlus1.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"MTVTr3sEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MTVUK.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MUTV.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"MUTV.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"MUTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MabokeTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MacauAsiaSatelliteTV.mo","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"MacauAsiaSatelliteTV.mo","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"MadGreekz.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"MadTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MadTV.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"MadViral.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MadaniTV.id","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MadiTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Maestro.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MagicTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MagtiHiti.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MagtiKino.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MaiTV.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"Maiboli.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MaishaMagicBongo.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MaishaMagicMovies.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MaishaMagicPlus.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MaishaMagicPoa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MaisnaTela.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MaisonTravauxTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MakedoniaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MakkalTV.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"MallTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MalyatkoTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MalyshTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Mama.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MamboMotoTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MamboMotoTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MandeTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Mangas.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Mangas.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Mangas.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ManjariTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ManoranjanGrand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ManoranjanMovies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ManoranjanTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MaraoTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MarcoPoloTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MariaPlusVision.mx","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"MariaPlusVision.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"MariaPlusVision.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"MariaPlusVisionMedjugorje.mx","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MarinaTV.kw","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MarkizaInternational.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MarqueeSportsNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MartialArtsWorld.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Martinique1ere.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"MarvelHQ.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MasChicEstadosUnidos.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"MasChicEstadosUnidos.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"MasChicLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"MasChicLatinoamerica.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"MasChicLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"MasperoZaman.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MasperoZaman.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Mastiii.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Match.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Match.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MatchArena.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchArena.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MatchBoets.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchBoets.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MatchFutbol1.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchFutbol2.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchFutbol3.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchIgra.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MatchIgra.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MatchPlaneta.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Matkanalen.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MavTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MavTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MavTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Max.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"MaxLatino.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MaxSport1.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MaxSport2.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MaxSport3.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MaxSport4.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MaxTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Mayotte1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Mayotte1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Mayotte1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"MazhavilManorama.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Me.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MeGusta.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"MeTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MeTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MedeniyyetTV.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Medi1TVArabic.ma","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MediaMaisTV.mz","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"MediasetExtra.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"MediasetExtra.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MediasetExtra.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"MediasetExtra.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MediasetItalia.it","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MediasetItalia.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MediasetItalia.it","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MediasetItalia.it","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Mega.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"Mega.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Mega.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MegaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MegaTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MegaTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Meganoticias.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Megapix.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MegavisionCanal19.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"MegavisionCanal21.sv","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"MegavisionCanal21.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"MeidenvanHollandHard.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MelodieTV.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Melody.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Melody.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Melody.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MelodyAflam.eg","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MelodyDrama.eg","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MelodyHits.eg","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MelodydAfrique.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MelosTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"MeltemTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"MeppelTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"MercuryMediaChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Metro.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Metro.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MetroTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MetroTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Metropole.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Mezzo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Mezzo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Mezzo.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Mezzo.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Mezzo.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Mezzo.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Mezzo.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Mezzo.fr","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Mezzo.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Mezzo.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Mezzo.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Mezzo.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Mezzo.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Mezzo.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Mezzo.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Mezzo.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Mezzo.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Mezzo.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Mezzo.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MezzoLiveHD.fr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Mh1Music.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MiGenteTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"MiaoMi.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MibawaTV.mw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MidnightBlue.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MikubaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MilanTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"MilenioTV.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MindsetLearn.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MiniMiniPlus.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MiniTV.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MiniTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MinikaCocuk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"MinikaGo.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"MinikaGo.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"MinimaxCzechia.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MinimaxHungary.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MinimaxHungary.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"MinimaxRomania.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MinimaxRomania.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MinimaxSerbia.hu","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"MinimaxSerbia.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Mir.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Mir.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Mir24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MirBelogoryaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MirSeriala.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MirrorNow.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MishapiVoiceTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MixBelAraby.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MixBelAraby.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MixHollywood.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"MixHollywood.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"MnamTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MnauTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MnetJapan.kr","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MojaLove.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MoliereTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MondoTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Mono29.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"MoozDance.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MoozHits.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MoozRo.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"More4UK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"More4UK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"More4UK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"More4UK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MoreMaxEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MoreMaxEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"MoreMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MoreMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MoreThanSportsTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Moskva24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MoskvaTelekanal.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Mostnet.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MotorTrend.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"MotorTrend.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Motortrend.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MotorvisionTV.de","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"MotorvisionTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MotorvisionTV.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MotorvisionTV.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MotorvisionTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MotorvisionTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MotorvisionTV.de","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"MotorvisionTV.de","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Motowizja.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MovieMax.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MovieMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MovieMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MovieMovie.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"MovieMovie.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"MoviePlexEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MoviePlexWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MoviePlus.jp","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MoviePlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MovieSmartClassic.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"MovieSmartPremium.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"MovieSmartPremium2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"MovieSmartTurk.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Movies.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Movies.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Movies24.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"MoviesNow.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MoviesNowPlus.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"MovistarAccion.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarAccion.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MovistarCineEspanol.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MovistarComedia.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarComedia.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MovistarDeportes.pe","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarDeportes.pe","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MovistarDrama.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarEstrenos.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarEstrenos.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MovistarGolf.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MovistarSeries.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"MoyaPlaneta.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MoyaPlaneta.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MoyaPlaneta.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MoyaPlaneta.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MoyaPlaneta.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MoziPlus.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"MpumaKapaTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MpumaKapaTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MrezaTV.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MtavariArkhi.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"MuchArgentina.ca","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Mult.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Mult.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MultiPremier.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"MultiPremier.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Multilandia.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MultimediosPlus.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Multishow.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MunchenTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"MunchenTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MundoFox.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"MundoFox.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"Musalsalat.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MusalsalatPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"Musawa.ps","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Musawa.ps","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Museum.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Museum.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Museum.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MuseumInternational.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MusicAir.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MusicBoxBrazil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"MusicBoxRussia.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MusicBoxUkraina.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MusicBoxUkraina.ua","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MusicChannelHungary.ro","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"MusicChannelRomania.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MusicChoice90s.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MusicChoicePopCountry.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MusicNow.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MusicOnTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"MusicTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MusicTop.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Musig24TV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MuslimTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"MuzSoyuz.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuzTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuzTV.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"MuzhskoeKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuzhskoeKino.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Muzhskoy.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuzikaPervogo.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MuzikaPervogo.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MuzikaPervogo.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MuzikaPervogoInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MuzsikaTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MuzsikaTV.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MuzsikaTV.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MuzsikaTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Muzzik.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Muzzik.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"MyChannelAfrica.ao","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MyDestinationTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"MyHits.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MyHits.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MyHits.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"MyMediaPrime.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"MyMusic.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"MyNetworkTV.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"MySports2.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports2Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports3.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports3Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports4.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports4Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports5.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports5Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports6.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports6Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports7.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports7Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports8.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports8Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports9.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySports9Francais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySportsOne.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MySportsOneFrancais.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"MyTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"MyZenMusic.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"MyZenNature.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"MyZenTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"MyZenTV.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MyZenTV.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"MyZenTV.fr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"MyZenTV.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"MyZenTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"MyZenTV.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"MyZenTV.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"MyZenTV.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"MyZenTV.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"MyZenTV.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"MyZenTV.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MyZenTV.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"MyZenTV4K.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"MyZenTV4K.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"MyxMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"MyxUSA.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MzansiBioskop.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MzansiMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MzansiMagicMusic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"MzansiWethu.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"N1Hrvatska.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"N24Doku.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NASATVPublic.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NASATVPublic.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NASATVPublic.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NASATVUHD.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass10.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBALeaguePass9.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NBATV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NBATV.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"NBATV.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NBATV.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"NBATV.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NBATV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NBATV.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"NBATV.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NBATV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBATV.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"NBATVLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NBC2.na","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NBCEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"NBCEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSN.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NBCSN.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"NBCSports.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsBayArea.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NBCSportsBayArea.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsBoston.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsCalifornia.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NBCSportsCalifornia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsChicago.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsChicagoPlus.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsChicagoPlus2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsPhiladelphia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsPhiladelphiaPlus.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCSportsWashington.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NBCSportsWashington.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBCUniversoEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NBCUniversoEste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"NBCUniversoWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NBSTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NBT2.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"NBTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NBTV2.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NBTV3.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NBTV4.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NBTV5.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NDRFernsehenHamburg.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NDRFernsehenHamburg.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NDRFernsehenNiedersachsen.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"NDTV24x7.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NDTV24x7.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NDTVGoodTimes.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NDTVIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NESN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NESN.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NET.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NET.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"NFLNetwork.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NFLNetwork.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NFLNetwork.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"NFLNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NFLNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NFLRedZone.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NHKBS1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKBS4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKBSPremium.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKEducationalTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKGeneralTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NHKWorldJapan.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NHKWorldPremium.jp","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"NHLNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NHTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NITV.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"NLOTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NOOSTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO1.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO1.nl","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NPO1.nl","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NPO1.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NPO1Extra.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO2.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO2.nl","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NPO2.nl","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NPO2.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NPO2Extra.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO3.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPO3.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NPONieuws.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPOPolitiek.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NPOZappelinExtra.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NRBTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NRBTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NRJ12.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NRJ12.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NRJ12.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NRJ12.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NRJHits.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NRJHits.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NRK1.no","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NRK1.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NRK1.no","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NRK2.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NRK2.no","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NRK3.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NRK3.no","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NRTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NSCTVBlumenau.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NSCTVChapeco.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NSCTVCriciuma.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NSCTVFlorianopolis.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NSCTVJoinville.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NST.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NST.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NSportPlus.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NTA2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NTAInternational.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NTANews24.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NTAParliament.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NTDTVEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NTN.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NTN24.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"NTN24.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NTN24USA.co","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NTV.bd","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NTV.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NTV.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NTV.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NTV.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NTV.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NTV.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NTV.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"NTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NTV7.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NTVAmerica.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NTVAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"NTVBelarus.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"NTVICKakanj.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NTVMir.ru","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NTVMir.ru","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NTVMirBaltic.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NTVMirBaltic.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NTVMirBaltic.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NTVNews24.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NTVPravo.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NTVSerial.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NTVSerial.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NTVSerial.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NTVSerial.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NTVStyl.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NTVUganda.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NTVUganda.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NTVUganda.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NaaptolTamil.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NahooTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NamayeshTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"NandighoshaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NanoTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NarodnaTV.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Narodni.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NasaTV.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"Nash.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NashKinomir.de","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NashKinoroman.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NasheNovoeKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NasheNovoeKino.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NasheTV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Nasim.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"NastoyashcheyeVremya.cz","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NasulTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NatGeoKids.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"NatGeoKids.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NatGeoKids.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NatGeoKidsBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NatGeoMundo.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NatGeoMundo.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NatGeoPeople.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NatGeoWildEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NathanTV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NationTV.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"National24Plus.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NationalGeographicAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NationalGeographicAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NationalGeographicAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NationalGeographicAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NationalGeographicBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NationalGeographicBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"NationalGeographicCentro.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NationalGeographicChannelHDEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NationalGeographicChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"NationalGeographicChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NationalGeographicDanmark.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NationalGeographicDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NationalGeographicDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NationalGeographicEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NationalGeographicEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"NationalGeographicEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NationalGeographicEllada.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"NationalGeographicEllada.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NationalGeographicEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"NationalGeographicEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NationalGeographicFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicHrvatska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NationalGeographicHrvatska.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NationalGeographicHungaryCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NationalGeographicHungaryCzechia.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"NationalGeographicIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NationalGeographicItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NationalGeographicItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NationalGeographicJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NationalGeographicKorea.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NationalGeographicMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NationalGeographicNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NationalGeographicNorge.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NationalGeographicNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"NationalGeographicPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NationalGeographicPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"NationalGeographicPortugal.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"NationalGeographicPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"NationalGeographicPortugal.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"NationalGeographicRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NationalGeographicRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NationalGeographicRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NationalGeographicRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NationalGeographicScandinavia.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"NationalGeographicScandinavia.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NationalGeographicScandinavia.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NationalGeographicSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NationalGeographicSrbija.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"NationalGeographicSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NationalGeographicSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"NationalGeographicSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"NationalGeographicTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NationalGeographicTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"NationalGeographicTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NationalGeographicUK.us","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"NationalGeographicUK.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NationalGeographicUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"NationalGeographicWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NationalGeographicWild.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NationalGeographicWild.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NationalGeographicWild.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NationalGeographicWildAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NationalGeographicWildAsia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NationalGeographicWildAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NationalGeographicWildAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NationalGeographicWildAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NationalGeographicWildBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NationalGeographicWildBulgaria.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NationalGeographicWildDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NationalGeographicWildDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicWildEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"NationalGeographicWildEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NationalGeographicWildEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NationalGeographicWildFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicWildHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"NationalGeographicWildItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NationalGeographicWildItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NationalGeographicWildLatin.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NationalGeographicWildLatin.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NationalGeographicWildMiddleEast.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NationalGeographicWildPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NationalGeographicWildRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NationalGeographicWildRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NationalGeographicWildRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NationalGeographicWildRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NationalGeographicWildSouthAfrica.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"NationalGeographicWildTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NationalGeographicWildTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"NationalGeographicWildTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NationalGeographicWildUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"NationalTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Nauka.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Nauka.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Naura.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NauticalChannel.it","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"NauticalChannel.it","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NauticalChannel.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NauticalChannel.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NauticalChannel.it","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NauticalChannel.it","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NauticalChannel.it","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NaxatraNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NeaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"NeiMonggolChineseTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Nelonen.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"Neox.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Neox.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Nepal1.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Nessma.tn","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Nessma.tn","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Net5.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NetTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NetTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"News18AssamNorthEast.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Bengali.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18BiharJharkhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Gujarati.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18India.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Lokmat.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18MadhyaPradeshChhattisgarh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Odia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18PunjabHaryanaHimachalPradesh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Rajasthan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18Urdu.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News18UttarPradeshUttarakhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"News24.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"News24.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsDaily24.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsIndia24x7.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsLive.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsNation.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsNationEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NewsNationEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"NewsNationEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NewsStateUPUK.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsTimeBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NewsmaxTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NewsmaxTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Newsy.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NewzroomAfrika.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NickHDPlus.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NickJrAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NickJrArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NickJrAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NickJrAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NickJrAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NickJrAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NickJrAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"NickJrBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NickJrCIS.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NickJrCIS.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NickJrCentralEasternEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"NickJrCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NickJrEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NickJrEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NickJrEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"NickJrEurope.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"NickJrIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NickJrItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NickJrItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NickJrLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NickJrRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NickJrScandinavia.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NickJrScandinavia.us","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"NickJrScandinavia.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NickJrScandinavia.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NickJrScandinavia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NickJrScandinavia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NickJrScandinavia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NickJrTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NickJrWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NickMusic.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NickMusic.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NickMusic.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NickMusic.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NickMusic.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NickMusicUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NickToonsAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NickToonsArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NickToonsUK.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NickToonsUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NickelodeonAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"NickelodeonArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"NickelodeonAustria.us","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"NickelodeonBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"NickelodeonCIS.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"NickelodeonCIS.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NickelodeonCIS.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NickelodeonCIS.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NickelodeonCIS.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NickelodeonCIS.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"NickelodeonCentro.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"NickelodeonCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NickelodeonDanmark.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NickelodeonDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NickelodeonDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NickelodeonEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NickelodeonEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"NickelodeonEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"NickelodeonEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NickelodeonEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NickelodeonEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NickelodeonEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NickelodeonEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NickelodeonFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NickelodeonFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NickelodeonFrancePlus1.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NickelodeonGreece.us","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NickelodeonHD.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NickelodeonHD.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NickelodeonHD.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"NickelodeonIberia.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"NickelodeonIberia.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"NickelodeonIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"NickelodeonItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NickelodeonItaliaPlus1.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NickelodeonJuniorFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NickelodeonMagyarorszag.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"NickelodeonNederlandBelgie.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"NickelodeonNorge.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NickelodeonNorte.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"NickelodeonPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NickelodeonRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NickelodeonSouthEastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NickelodeonSouthEastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"NickelodeonSouthEastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NickelodeonSouthEastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NickelodeonSouthEastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"NickelodeonSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"NickelodeonSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NickelodeonSverige.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NickelodeonTeen.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NickelodeonTeen.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NickelodeonTeen.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NickelodeonTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"NickelodeonWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NickelodeonWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NicktoonsAdria.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"NicktoonsAdria.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NicktoonsCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NicktoonsDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NicktoonsEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NicktoonsEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NicktoonsLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"NicktoonsPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NicktoonsRomania.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NicktoonsRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"NicktoonsScandinavia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"NicktoonsTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NicktoonsWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"NihonEigaSenmonChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NihonJidai4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NikaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NikkeiCNBC.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NileComedy.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"NileComedy.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"NileDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"NileDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"NingxiaTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"NipponTV.jp","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"NipponTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NitroAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"NitroDeutschland.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NitroDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"NitroDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NitroDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"NitroDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NitroDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NitteleGPlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NittelePlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"NjoiTV.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NollywoodTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NollywoodTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NollywoodTVEpic.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NonStopPeopleFrance.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NorHayastanTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"Nostalgia.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Nova.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Nova.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Nova24TV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Nova24TV2.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"NovaAction.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaCinema.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaCinema1.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaCinema2.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaCinema3.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaCinema4.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaFun.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaGold.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaInternational.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaLady.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaLife.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaNews.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NovaSport.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NovaSport1.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaSport2.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaSport3.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaSport4.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaSports2.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaSports3.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaSports4.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaSports5.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"NovaTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"NovaTV.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovaTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"NovaTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Nove.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Nove.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Novegasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Novegasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Novegasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"NovelaMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"NovelaTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NovelaTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"NovelasTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"NovelasTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"NovelasTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"NovelasTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NoviyMir.de","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NovoeRadio.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"NovosadskaTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"NovyKanal.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Now668.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"Now668.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"Now70s.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Now70s.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Now80s.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Now80s.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Now80s.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Now90s.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Now90s.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"NowBaoguMovies.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowBaoguMovies.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowBaoguSuperstars.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowBaoguSuperstars.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowBusinessNewsChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowBusinessNewsChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowChineseDramaChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowChineseDramaChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowDataChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowDataChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowDirect.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowDirect.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowDramaChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowDramaChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowGolf2.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowGolf2.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowGolf3.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowGolf3.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowJelli.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowJelli.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowNews.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowNews.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowNewsChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowNewsChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports1.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports1.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports2.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports2.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports3.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports3.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports4.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports4.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports4K.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports4K.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports5.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports5.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports6.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports6.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSports7.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSports7.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPlus.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPlus.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague1.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague1.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague2.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague2.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague3.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague3.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague4.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague4.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague5.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague5.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague6.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeague6.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeagueTV.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPremierLeagueTV.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPrime.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowSportsPrime.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowTV.bw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"NowVideoExpress.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"NowVideoExpress.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"NowaTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NuMusic.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"Nueve.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Number1Ask.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Number1Damar.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Number1Dance.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Number1TV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Number1TV.tr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"Number1TV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Number1Turk.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Number1Turk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"NusantaraTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"NutaTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"NutaTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"NyotaTV.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"O2.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"O2TVFotbal.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"O2TVSport.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"O2TVTenis.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"OBN.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"OBN.ba","site":"tv.blue.ch","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OBN.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"OBN.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"OCSCity.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"OCSCity.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"OCSCity.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"OCSCitygenerationHBO.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"OCSchoc.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"OCSchoc.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"OCSchoc.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"OCSchoc.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"OCSgeants.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"OCSgeants.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"OCSgeants.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"OCSgeants.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"OCSmax.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"OCSmax.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"OCSmax.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"OCSmax.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OChannel.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"OKK.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"OKTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"OKanal.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"OLTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ONS.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ONT.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"ONTVMax.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"OPENRotterdamTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OPMTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ORF1.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ORF1.at","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ORF1.at","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ORF1.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ORF1.at","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ORF1.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ORF2.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ORF2.at","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ORF2.at","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ORF2.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ORF2.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ORF2Europe.at","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ORFIII.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ORFIII.at","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ORFIII.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ORFIII.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ORFSportPlus.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ORFSportPlus.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ORFSportPlus.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ORTBTV.bj","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ORTCTV.km","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ORTCTV.km","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ORTCTV.km","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ORTM1.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ORTM2.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"OSNAction.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNAction.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNAction.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNComedy.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNComedy.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNEnigma.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNFamily.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNKidZone.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNKids.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNKids.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNLiving.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNMezze.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNMovies.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNMovies.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNMoviesDisney.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNMoviesDisney.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNMoviesFirstPlus2.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNNews.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNSeries.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNSeries.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNSeriesFirst.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNWoman.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNYaHala.ae","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaAlOula.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"OSNYaHalaCinema.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"OTBGalychyna.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"OTR.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"OTV.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"OTVValentino.ba","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"OTVValentino.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"OTVValentino.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ObieqtiviTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ObozrevatelTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Oce.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"OceanTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Ocko.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"OckoBlack.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"OckoExpres.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"OckoStar.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Odisea.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Odisea.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"OdishaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Odisseia.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Odisseia.es","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Oe24TV.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"OgunStateTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"OhK.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"OhotnikiRybolov.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"OhotnikiRybolov.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"OhotnikiRybolov.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"OireachtasTV.ie","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ie/ontvtonight.com.epg.xml"},{"channel":"OkhotaiRybalka.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"OkhotaiRybalka.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"OkhotaiRybalka.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"OkhotaiRybalka.ru","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"OkhotaiRybalka.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"OlympiaTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"OlympiaTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OlympicChannel.es","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OlympicChannelUSA.es","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"OmegaTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"OmidTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"OmroepBrabantTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepFlevolandTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepHulstTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepMeierijstadTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepTilburgTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepVenloTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmroepZeelandTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OmropFryslanTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"On6.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"OnDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OnDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OnE.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"OnE.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"OnTV4U.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OnceMexico.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OnceMexico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"OnceMexico.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"One.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"One.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"One.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"One.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"One.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"One.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"One.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"One.in","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"One1MusicTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"One31.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"OneAfricaTV.na","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"OneAmericaNewsNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OneAmericaNewsNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"OneAmericaNewsNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OneCaribbeanTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"OneCaribbeanTelevision.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OneChannel.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"OneChannel.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"OneGospel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"OneTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OneZed.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"OneZed.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"OnsWestBrabantTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OpenBeyondTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"OprahWinfreyNetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OprahWinfreyNetworkEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"OprahWinfreyNetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"OprahWinfreyNetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Ora.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"OronTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"OrsentTV.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"OrsentTV.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"OrsentTV.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Oruzhie.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"OstWest.de","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Ostrosyuzhetnoye.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"OtkritiyMir.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Oto.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"OurTV.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"OutTV.ca","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"OutdoorChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OutdoorChannel.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"OutdoorChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"OutdoorChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OutdoorChannelInternational.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"OutdoorChannelInternational.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"OutdoorChannelInternational.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"OuterMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OuterMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Ovation.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Ovation.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OxygenEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"OxygenEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"OxygenEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OxygenWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"OzoneTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"PAT.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"PAT.bo","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"PBSAmerica.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"PBSAmerica.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PBSAmerica.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PBSEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PBSEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"PBSKids.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"PBSKids.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"PMTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"POTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"PPTVHD36.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"PPVChoice940.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"PPVChoice941.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PSTVHD.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PTCMusic.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PTCNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PTCPunjabi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PTCPunjabiGold.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PTCSimran.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Pac12Arizona.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12BayArea.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12LosAngeles.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12Mountain.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12Networks.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12Oregon.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pac12Washington.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PachinkoPachisloTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PacisTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Pakapaka.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"Pakapaka.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"PalancaTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"PalancaTV.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"PalitraNews.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"PanamericanaTV.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"PanamericanaTV.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"Panico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"PannonTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ParadiseTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ParaguayTV.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ParamountChannelDecale.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ParamountChannelEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"ParamountChannelEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ParamountChannelFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ParamountChannelPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ParamountChannelRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ParamountChannelRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ParamountComedyRussia.us","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ParamountComedyRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ParamountComedyUkraina.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ParamountNetworkAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"ParamountNetworkBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ParamountNetworkCzechia.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ParamountNetworkDanmark.us","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"ParamountNetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ParamountNetworkEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ParamountNetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ParamountNetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ParamountNetworkHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ParamountNetworkItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"ParamountNetworkItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ParamountNetworkLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"ParamountNetworkSverige.us","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"ParamountNetworkSverige.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"ParamountNetworkUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ParamountNetworkUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ParamountNetworkUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ParasGold.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Paravision.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ParisPremiere.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ParisPremiere.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ParkTV.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ParliamentTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ParliamentTV.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ParliamentofFiji.fj","site":"walesi.com.fj","lang":"fj","url":"https://iptv-org.github.io/epg/guides/fj/walesi.com.fj.epg.xml"},{"channel":"PasionesEstadosUnidos.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PasionesEstadosUnidos.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"PasionesLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"PasionesLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"PassionXXX.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"PassionXXX.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PaxTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PeTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PeaceTVEnglish.ae","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"PeaceofMindTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PearlMagicPrime.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"PearlMagicPrime.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"PearlMagicPrime.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"PearlTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"PebbleTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"PenthouseBlack.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"PenthouseGold.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"PenthouseGold.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"PenthouseTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PenthouseTVLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"PenthouseTVMonthlyOffer.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"PeoplesWeather.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"PeretzInternational.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"PershiyDiloviy.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"PeruMagico.pe","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PeruMagico.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"PeruMagico.pe","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PerviyBaltijskyiKanal.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"PerviyBaltijskyiKanal.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"PerviyBaltijskyiKanal.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Perviykanal.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Perviykanal.ru","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Perviykanal.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"PerviykanalAmerica.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PerviykanalCIS.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"PerviykanalEurasia.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"PerviykanalEuropa.ru","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"PerviykanalEuropa.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PerviykanalEuropa.ru","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PerviykanalEuropa.ru","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"PerviykanalEuropa.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Pesca.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PetsTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Phoenix.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Phoenix.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Phoenix.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Phoenix.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Phoenix.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"PhoenixCNE.hk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"PhoenixCNE.hk","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"PhoenixChineseChannel.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"PhoenixChineseChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"PhoenixChineseChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"PhoenixHongKong.hk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PhoenixHongKong.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"PhoenixHongKong.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"tv.blue.ch","lang":"zh","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PhoenixInfoNewsChannel.hk","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"PhoenixNorthAmericaChineseChannel.hk","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PhoenixTV.cn","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PickUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PickUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"PickUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PickUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PickboxTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Pikaboo.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PikselTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"PinkAction.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkAction.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkBH.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkBH.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkClassic.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkClassic.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkComedy.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkComedy.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkCrimeMystery.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkCrimeMystery.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkExtra.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkExtra.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkExtra.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkExtra.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkExtra.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkFamily.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkFamily.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkFashion.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkFashion.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkFilm.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkFilm.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkFilm.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkFilm.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkFilm.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkFolk1.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkFolk1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkFolk1.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkFolk1.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkFolk2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkHits.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkHits.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkHits2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkHorror.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkHorror.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkKids.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkKids.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkKoncert.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkKoncert.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkKoncert.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkKoncert.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkKuvar.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkKuvar.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkM.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkM.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkMovies.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkMovies.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkMusic.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkMusic.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkMusic.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkMusic.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkMusic2.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkMusic2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkPedia.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkPedia.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkPlus.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkPlus.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkPlus.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkPremium.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkReality.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkReality.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkReality.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkReality.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkRomance.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSI.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkSciFiFantasy.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkSciFiFantasy.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSerije.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkSerije.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSerije.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkShow.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkShow.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSoap.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkSoap.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSrbija.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkSrbija.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkStyle.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkStyle.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkSuperKids.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PinkTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PinkTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PinkTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PinkTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PinkTV.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PinkThriller.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkThriller.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkWestern.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkWestern.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkWorld.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PinkWorld.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkWorld.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkWorld.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PinkWorld.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinkZabava.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PinkZabava.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinkZabava.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PinknRoll.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PinoyBoxOfficeGlobal.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Pitaara.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"PiwiPlus.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"PiwiPlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PiwiPlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PixLTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PixLTVenEspanol.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PlanetEarth.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PlanetEva.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PlanetTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PlanetTV2.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PlanetaFolk.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"PlanetaHD.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlus.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"PlanetePlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PlanetePlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"PlanetePlusAE.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PlanetePlusCI.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PlanetePlusPolska.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Play4.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Play5.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PlayboyChannelJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"PlayboyTVBrazil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"PlayboyTVEurope.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"PlayboyTVEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PlayboyTVEurope.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"PlayboyTVEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"PlayboyTVEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PlayboyTVLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"PlayboyTVLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"PlayboyTVLatinAmerica.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PlayboyTVMonthlyOffer.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PlayboyTVUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PlayboyTVUSAHD.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PlugRTL.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PlusPlus.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"PlusTVAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Pobeda.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Poehali.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"PoehaliInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Pogo.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PolarPlus.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"PolarPlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"PolarPlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PoloTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PoloTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Polonia1.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Polsat.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Polsat.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Polsat.pl","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Polsat1.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Polsat2.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Polsat2.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatCafe.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatCafe.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatDoku.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatFilm.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatGames.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatMusic.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatNews.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatNews.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatNews2.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatNews2.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatPlay.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatPlay.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatRodzina.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSeriale.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSport.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatSport.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportExtra.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PolsatSportExtra.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportFight.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportNews.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium1.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium2.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium3.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium4.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium5.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PolsatSportPremium6.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Polynesie1ere.fr","site":"programme-tv.vini.pf","lang":"fr","url":"https://iptv-org.github.io/epg/guides/pf/programme-tv.vini.pf.epg.xml"},{"channel":"Pop.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Pop.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PopCentral.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"PopEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PopEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"PopEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PopMax.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PopMelody.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PopTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PopWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"PortoCanal.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"PortoCanal.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"PosTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"PowerTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PowerTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PowerTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"PowerTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"PowerTV.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"PowerTurkTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"PragNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PrameyaNews7.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PrarthanaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PratidinTime.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PremierSport.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PremierSport2.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PremierSports1.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PremierSports2.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"PremiereClubes.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"PremiumAction.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumAction.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"PremiumCinema1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumCinema1Plus24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumCinema2.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumCinema3.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumCrime.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"PremiumCrime.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"PremiumShoppingTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PremiumStories.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Priklyucheniya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Prima.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaCool.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaKrimi.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaLove.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaMax.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaPlus.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaShow.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaStar.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrimaTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"PrimaZoom.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Prime.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"PrimeAsiaTV.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"PrimeBoxBrazil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"PrimeTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"PrivateTV.nl","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"PrivateTV.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"PrivateTV.nl","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"PrivateTV.nl","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"PrivateTV.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"PrivateTV.nl","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"PrivateTV.nl","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"PrivateTV.nl","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Pro2.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProCinema.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProGold.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProSiebenAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ProSiebenDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ProSiebenFun.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ProSiebenMaxxAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ProSiebenMaxxDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ProSiebenMaxxDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ProSiebenSchweiz.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ProTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProTVInternational.ro","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ProTVInternational.ro","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"ProTVInternational.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProTVInternational.ro","site":"tv.blue.ch","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ProX.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ProdvizhenieMoskva.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ProfitTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"PrvaFiles.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaFiles.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaKick.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaKick.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaLife.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaLife.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaMax.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaMax.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaSrpskaTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaSrpskaTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaSrpskaTV.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"PrvaTVCrnaGora.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"PrvaWorld.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"PrvaWorld.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Pryamyy.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Psikhologiya21.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"PublikaTV.md","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Puls2.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Puls2.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Puls4.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Puls4.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"PulsAcht.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"PunjabiHits.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"PureBabes.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"PursuitChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"PursuitChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Pyatnitsa.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Pyatnitsa.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"PyatnitsaInternational.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"PyatnitsaInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"PyatnitsaInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"PyatnitsaInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"QVC2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"QVC2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"QVC3.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"QVC3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"QVCBeauty.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QVCBeauty.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QVCDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"QVCDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"QVCExtra.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QVCItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"QVCJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"QVCJapan4K.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"QVCStyleUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QVCStyleUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QVCUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QVCUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QVCUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"QVCUS.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"QVCZwei.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"QartuliArkhi.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"QazaqTV.kz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"QinghaiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"QmusicVlaanderen.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"QualityChannel.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Quest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"QuestRedUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QuestRedUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QuestRedUKPlus1.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QuestRedUKPlus1.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QuestUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QuestUK.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"QuestUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"QuestUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"QuestUKPlus1.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"QuieroMusicaenmiIdioma.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"QuranTV.sa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"QuranTV.sa","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"QuranTV.sa","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"R9.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RBATV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RBBBerlin.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RBBBerlin.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RBBBerlin.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RBBBerlin.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"RBITV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RBKTV.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RBKTV.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"RBKTV.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"RBKTV.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"RBKTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RBSTVPortoAlegre.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RBSTVRS.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RBSTVSantaMaria.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RCNNovelas.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"RCNNovelas.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"RCNNuestraTeleInternacional.co","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RCNTV.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"RCNTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"RCNTV.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"RCTI.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"RENTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RENTVBaltic.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"RENTVBaltic.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"RENTVBaltic.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"RENTVBaltic.ru","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"RFDTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RFMTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"RFMTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"RFMTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"RFMTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RFMTV.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RFMTV.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"RFMTV.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"RFMTV.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"RFMTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RFMTV.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RFO.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RGVKDagestan.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RIKSat.cy","site":"tv.blue.ch","lang":"el","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RMCDecouverte.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RMCDecouverte.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RMCDecouverte.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RMCSport1.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RMCSport1.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RMCSport2.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RMCSport2.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RMCStory.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RMCStory.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RMCStory.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RMS.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"RMTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"RN7.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RPCTV.pa","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"RPCTVCuritiba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RPCTVFozdoIguacu.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RPCTVMaringa.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RPCTVParanavai.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RPCTVPontaGrossa.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RPlus.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RSILa1.ch","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RSILa2.ch","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTA.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"RTA.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"RTA.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"RTAmerica.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"RTArabic.ru","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"RTBFLaUne.be","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTBFLaUne.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTBTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTDSDeltaTV.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTDoc.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTDocumentary.ru","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RTDocumentary.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTDocumentary.ru","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTDocumentary.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTDocumentary.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTE2.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RTEJr.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RTENews.ie","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ie/ontvtonight.com.epg.xml"},{"channel":"RTENews.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RTEOne.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RTEspanol.ru","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"RTEspanol.ru","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"RTEspanol.ru","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"RTFrance.ru","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTG.gn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTGHD.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTGInternational.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTGTV.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTGTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTI1.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTI2.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTILa3.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTK1.rs","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"RTK1.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTK1.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTL.lu","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTL1025RadioVisione.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RTL1025RadioVisione.it","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTL1025RadioVisione.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTL2Hrvatska.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTL2Hrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTL2Hrvatska.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTL4.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTL4.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTL5.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTL5.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTL7.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTL8.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"RTL9.lu","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"RTL9.lu","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RTL9.lu","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTL9.lu","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLAdriaHrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"RTLCrimeDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RTLCrimeDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLCrimeDeutschland.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"RTLCrimeHrvatska.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLCrimeHrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLCrimeNederland.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTLCroatiaWorld.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLDeutschland.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTLDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RTLDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLDeutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLDeutschland.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTLDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTLDeutschland.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"RTLDeutschland.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"RTLDeutschland.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"RTLDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTLGold.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLGold.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLGold.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLGold.de","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"RTLHrvatska.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLHrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLHrvatska.de","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTLHrvatska.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLHrvatska.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTLII.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLII.de","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTLII.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLII.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLII.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTLII.de","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"RTLKlub.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLKlub.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLKlub.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLKlub.de","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"RTLKockica.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLKockica.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLKockica.de","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTLKockica.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLKockica.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTLLivingDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RTLLivingDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLLivingDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTLLivingDeutschland.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"RTLLivingHrvatska.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLLivingHrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLLivingHrvatska.de","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTLLounge.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTLPassionHrvatska.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLPassionHrvatska.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLPassionHrvatska.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLPlus.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLPlus.de","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTLPlus.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLPlus.de","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"RTLSchweiz.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLTVI.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTLTelekids.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTLUHD.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLUp.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTLZ.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTLZweiAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTLZweiDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTLZweiSchweiz.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTMTV1.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"RTMTVOkey.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTNBTV.bi","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTNC.cd","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RTNews.ru","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"RTNews.ru","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"RTNews.ru","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RTNews.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RTNews.ru","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTNews.ru","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTNews.ru","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTNews.ru","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"RTNews.ru","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"RTNews.ru","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"RTNews.ru","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RTNews.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTNews.ru","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTNews.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RTNews.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTNews.ru","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RTP.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"RTP.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTP1.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTP2.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTP3.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTP3.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTPAcores.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTPAfrica.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"RTPAfrica.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"RTPAfrica.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTPAfrica.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RTPInternacionalAmerica.pt","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTPInternacionalEuropa.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RTPMadeira.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTPMemoria.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RTRBelarus.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"RTRPlaneta.ru","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"RTRPlaneta.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTRPlaneta.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RTRPlaneta.ru","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTRPlaneta.ru","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTRPlaneta.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTRPlaneta.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"RTRPlaneta.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"RTRPlaneta.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"RTRPlaneta.ru","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTRPlaneta.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"RTRPlaneta.ru","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RTRPlaneta.ru","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RTRPlanetaUSA.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RTRSTV.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTRSTV.ba","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTRSTV.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTS1.ch","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTS1.ch","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTS1.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTS1.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTS1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTS1.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTS1.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.ch","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"RTS2.ch","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RTS2.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTS2.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTS2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTS2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTS2.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RTS2.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RTS3.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTS3.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSDrama.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSH3.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTSKlasika.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTSKlasika.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSKlasika.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTSKolo.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTSKolo.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSMuzika.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSNauka.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTSNauka.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSPoletarac.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTSPoletarac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSSvet.rs","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RTSSvet.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTSSvet.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTSTrezor.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTSZivot.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTUK.ru","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"RTUK.ru","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RTV1.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTV1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTV2.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RTV2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTV21Sat.rs","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"RTV21Sat.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RTVArnhemTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVBap.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVBosphorus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVFocusTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVHorizon.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVMelos.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVPurmerend.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVRijnstreekTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVS1.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTVS2.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTVS3.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTVSLOS.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVSP.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVScheldemond.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVSlingeland.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVSrece.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVSubotica.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVSumadija.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RTVUtrecht.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVVeluwezoomTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RTVVikom.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTViEurope.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RTViEurope.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RTViEurope.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"RTViUSA.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RUV.is","site":"ruv.is","lang":"is","url":"https://iptv-org.github.io/epg/guides/is/ruv.is.epg.xml"},{"channel":"RUV2.is","site":"ruv.is","lang":"is","url":"https://iptv-org.github.io/epg/guides/is/ruv.is.epg.xml"},{"channel":"RZDTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Racing240.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"RacingTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"RacingTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RacingTVInternational.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Racingcom.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"RadioAalsmeerTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RadioFrecciaTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RadioItaliaTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RadioMonteCarloTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RadioPilatusTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RadioTicinoChannel.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RadionorbaTV.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RadionorbaTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RadostMoya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rai1.it","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Rai1.it","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Rai1.it","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Rai1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rai1.it","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Rai1.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rai1.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Rai1.it","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Rai1.it","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Rai1.it","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Rai1.it","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Rai1.it","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Rai1.it","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Rai1.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Rai1.it","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Rai2.it","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Rai2.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rai2.it","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Rai2.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rai2.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Rai2.it","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Rai2.it","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Rai2.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Rai2.it","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Rai3.it","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Rai3.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rai3.it","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"Rai3.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rai3.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Rai3.it","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Rai3.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Rai3.it","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Rai4.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rai4.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Rai5.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rai5.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rai5.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiGulp.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiGulp.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiGulp.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"RaiItaliaAfrica.it","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RaiItaliaNordAmerica.it","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RaiItaliaNordAmerica.it","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RaiItaliaNordAmerica.it","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"RaiItaliaSudAmerica.it","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"RaiMovie.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiMovie.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiMovie.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiNews24.it","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"RaiNews24.it","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RaiNews24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiNews24.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiNews24.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiNews24.it","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RaiPremium.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiPremium.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiPremium.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiScuola.it","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"RaiScuola.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiSport.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiSport.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiSport1.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiSport2.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiSportPlusHD.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiStoria.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiStoria.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiStoria.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RaiWorldPremium.it","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RaiYoyo.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RaiYoyo.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RaiYoyo.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RajyaSabhaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RamaChannel.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"Rang.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Ratnik.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RealMadridTVEspanol.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"RealMadridTVEspanol.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"RealTimeAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"RealTimeItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"RealTimeItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RealitateaPlus.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RealityKingsTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"RealityKingsTV.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RealityKingsTV.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RealityKingsTV.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ReallyUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"ReallyUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RebaTV1.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Rebel.rs","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RecTV.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"RecipeTV.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"RecordBelem.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordCabralia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordGoias.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordItapoan.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordMinas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordNacional.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordNews.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"RecordNews.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"RecordNews.br","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RecordNews.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordPaulista.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordRio.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordRioGrandedoSul.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordSaoPaulo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RecordTVAmericas.br","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"RecordTVEuropa.br","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"RecordTVEuropa.br","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"RecordTVEuropa.br","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RecordTVEuropa.br","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RedCarpet.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RedCarpet.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RedCherry.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"RedPlus.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"RedTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RedTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RedUno.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"Rede21.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeAmazonica.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeAmazonicaManaus.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeBrasil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeCNTRiodeJaneiro.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeFamilia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeGenesis.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeGlobo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeGospel.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeInternacionaldeTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeMassa.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeMeioNorte.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeMinas.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeSeculo21.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeSuper.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeTVRondonia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedeVida.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"RedlightHD.nl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RedlightHD.nl","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RedlightHD.nl","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RedlightHD.nl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Reelz.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Reelz.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"Reelz.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Regio8TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Regio90TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RegioTVSatellit.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RegioTVplus.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RegionalniTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Relax.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Relax.cz","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Rengoni.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RenouveauTV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"RepublicBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RepublicBharat.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RepublicTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Rete4.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Rete4.it","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rete4.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"Rete4.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Retro.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RetroMusicTV.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"RetroPlexEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RetroPlexWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Reunion1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Reunion1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Reunion1ere.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"RevenueFrontier.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RevnTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Revolt.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Revolt.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Revolt.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RheinMainTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RheinMainTV.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RheinweltenTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RiC.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RiC.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Ring.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"RioniTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RishteyCineplex.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RockEntertainment.sg","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"RockEntertainment.sg","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"RockEntertainment.sg","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"RockExtreme.sg","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"RockRoll.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"RockRoll.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"RockTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RodnoeKino.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Rok.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Rok2.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"RokGH.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"RomanceTVDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"RomanceTVDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RomanceTVPolska.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"RomaniaTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"RomedyNow.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RondeVenenTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"RongeenTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RootSportsNorthwest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Rossiya1.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rossiya24.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Rossiya24.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Rossiya24.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Rossiya24.ru","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Rossiya24.ru","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Rossiya24.ru","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Rossiya24.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Rossiya24.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Rossiya24.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Rossiya24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rossiya24.ru","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"RossiyaK.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RossiyaK.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RossiyaK.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"RotanaCinemaKSA.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"RotanaCinemaKSA.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"RotanaClassic.sa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RotanaDrama.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"RotanaDrama.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"RotanaKhalijia.sa","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"RougeTV.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"RoyaTV.jo","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"RuTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rudaw.iq","site":"tv.blue.ch","lang":"ku","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"RugbyPassTV.uk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"RugbyPassTV.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"RugbyPassTV.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"RugbyTV.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RumbaTV.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"RupasiBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"RusskijExtrem.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RusskiyBestseller.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RusskiyDetektiv.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RusskiyIllusion.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RusskiyIllusion.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"RusskiyRoman.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Rustavi2.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"RwandaTV.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Rybolov.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Ryzhiy.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Ryzhiy.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"S1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SABC1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SABC1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SABC2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SABC2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SABC3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SABC3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SABCNews.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SATTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SBC.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SBC.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SBNDomestic.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SBNInternational.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SBNInternational.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SBNInternational.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SBS.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SBS.kr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SBS6.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SBS9.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SBSFoodNSW.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"SBSNSW.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"SBSPlus.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SBSWorldMovies.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"SBTInternacionalAmerica.br","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"SBTMS.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SBTN.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SBTNacional.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SBTPara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SBTRio.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SCTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"SCTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"SChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SEAToday.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"SECNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"SECNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SESCTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SETAsia.in","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SETAsia.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SETIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SETIndia.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"SETIndia.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"SETInternational.tw","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SFkanalen.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"SFkanalen.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SFkanalen.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"SIC.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SICCaras.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SICInternacional.pt","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SICInternacional.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SICK.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"SICMulher.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SICMulher.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"SICNoticias.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SICNoticias.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SICRadical.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SICRadical.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"SICTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SIPTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SKAI.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"SKAT.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"SLOGOTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SLOSTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SOSKanalPlus.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"SOSKanalPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SRF1.ch","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SRF1.ch","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SRF1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SRFInfo.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SRFZwei.ch","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SRFZwei.ch","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SRFZwei.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SRFernsehen.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SRFernsehen.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SSBCTV.ss","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SSMTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SSport.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SSport.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SSport2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SSport2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"STN.so","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"STN.so","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"STN.so","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"STN.so","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"STN.so","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"STS.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"STS.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"STSBaltic.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"STSBaltic.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"STSBaltic.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"STSInternational.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"STSInternational.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"STSLove.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"STV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"STV.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"STVNoticias.mz","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"STVS81.sr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"STVSkledar.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SVT1.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"SVT1.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"SVT1.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SVT2.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"SVT2.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SVT24.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"SVT24.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SVTBarn.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"SVTBarn.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SWRFernsehenBadenWurttemberg.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SWRFernsehenBadenWurttemberg.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SWRFernsehenBadenWurttemberg.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SaamTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SadaElbalad.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SadaElbalad.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SadaElbalad2.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SadaElbalad2.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SadaElbaladDrama.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SadaElbaladDrama.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SadhnaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SaharaTV.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SaisonsCanada.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SalaamTV.us","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"SaleNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SaltTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SamaDubai.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SamaDubai.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SamaTV.sy","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SamaTV.sy","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"Samen1TV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SanMarinoRTV.sm","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SanMarinoRTV.sm","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SandeshNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SandzackaTVMreza.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SandzakTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SangatTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SangatTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SangeetBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SangeetBhojpuri.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SanktPeterburg.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SanshaTV.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"SanshaTV.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"SanskarTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SantvaniChannel.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SaperaviTVHD.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Sarafan.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"Sarafan.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SariSariChannel.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Sat1Deutschland.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Sat1Deutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Sat1Deutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sat1Deutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Sat1Deutschland.de","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Sat1Deutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Sat1Deutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Sat1Deutschland.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Sat1Deutschland.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Sat1Deutschland.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Sat1Deutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sat1Deutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Sat1Emotions.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Sat1GoldDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Sat1GoldDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sat1GoldDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sat1GoldOsterreich.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"Sat1Osterreich.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SatsangTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SaudiTV.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SaudiTV.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SavaneTV.bf","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SchaffhauserFernsehen.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SchieTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SchlagerDeluxe.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SchlagerTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SchlagerTV.nl","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Science.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Science.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"Science.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ScienceVieTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ScienceVieTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ScienceVieTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ScientologyNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ScifiPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ScifiSrbija.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ScifiSrbija.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ScreenPix.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ScreenPixAction.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ScreenPixVoices.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ScreenPixWesterns.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Seasons.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Seasons.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Seasons.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SemerkandTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SenTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SenalColombia.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"SenalColombia.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"SenatoTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Senzi.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sepehr.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"SerieClub.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"SerieClub.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"SerieClub.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ServusTVDeutschland.at","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ServusTVDeutschland.at","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ServusTVOsterreich.at","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ServusTVOsterreich.at","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SetantaSports1Evraziya.ie","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"SetantaSports1Evraziya.ie","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"SetantaSports1Evraziya.ie","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"SetantaSportsGeorgia.ie","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"SetantaSportsPlusGeorgia.ie","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"SetantaSportsUkraine.ie","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"SetantaSportsUkraine.ie","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"SexationTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Sextreme.br","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Sextreme.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Sextreme.br","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"SexyHot.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ShandongEducationTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ShandongTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ShansonTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ShantMusic.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ShantSerial.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ShantTV.am","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"ShanxiTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"SharjahSports.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"SharjahTV.ae","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SharjahTV.ae","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"SharqiyaTV.ae","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"ShemarooMarathiBana.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ShemarooTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ShenzhenSatelliteTV.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ShenzhenSatelliteTV.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ShenzhenTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ShepherdsChapel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShopChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ShopChannel4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ShopChannelPlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"ShopHQ.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShopHQ.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShopLC.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShopLC.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShopTV.ph","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShortsTV.uk","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ShotTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ShowMax.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ShowTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"ShowTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"ShowTV.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ShowTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Showtime2East.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Showtime2East.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"Showtime2East.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"ShowtimeEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeExtremeEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeExtremeEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeExtremeWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeNextEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeNextEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeNextWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeShowcaseEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeShowcaseEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeShowcaseWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeWomenEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShowtimeWomenEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShowtimeWomenWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShoxBetEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ShoxBetEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShoxBetWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ShubhTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SichuanTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"SilkUniversal.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SilverbirdTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SinLimites.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Sinema1001.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Sinema1001.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Sinema1002.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Sinema1002.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Sinema2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Sinema2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaAile.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaAile.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaAile2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaAile2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaAksiyon.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaAksiyon.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaAksiyon2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaAksiyon2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaKomedi.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaKomedi.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaKomedi2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SinemaTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaYerli.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SinemaYerli2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SirinaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"SirisTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SitelTV.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"SitelTV.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SixxAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SixxDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SixxDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SixxDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"SixxDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SixxDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sjuan.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"Sjuan.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"SkyA.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"SkyArte.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyArte.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyArtsUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyArtsUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SkyArtsUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyAtlantic.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyAtlantic.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyAtlanticHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyAtlanticPlus1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyAtlanticUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaAction.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyCinemaAction.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyCinemaAction.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaAction.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaActionHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaAnimationHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaComedy.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyCinemaComedy.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaComedyHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaDrama.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaDrama.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaDramaHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaDue.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaDuePlus24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaFamily.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaFamily.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaFamilyHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaFeelGoodHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaGreats.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaGreatsHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaHits.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyCinemaHits.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyCinemaHits.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaHitsHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaNostalgie.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyCinemaNostalgie.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyCinemaPlus24.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyCinemaPremiere.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaPremiereHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaPremieren.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SkyCinemaRomance.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaSciFiHorrorHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaScifiHorror.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaScifiHorror.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaSelect.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCinemaSuspense.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaThrillerHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyCinemaUno.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyCinemaUnoPlus24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyComedy.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyComedyHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyComedyUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCrime.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyCrime.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyDocumentariesUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyHistory.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyHistory2.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyHistory2.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyKrimi.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkyKrimi.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyLinkTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SkyMaxHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyMeteo24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyNatureUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SkyNewsArabia.uk","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SkyNewsInternational.uk","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SkyNewsUK.uk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"SkyNewsUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyNewsUK.uk","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SkyNewsUK.uk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"SkyNewsUK.uk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"SkyNewsUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyOne.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"SkyOneUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkyOneUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SkyPrimafila1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyPrimafila18.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyPrimafila2.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyPrimafila4.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyPrimafila6.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyReplayUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyShowcaseHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySport1.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySport1.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkySport1.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SkySport2.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySport2.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkySport2.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SkySport24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportArena.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportAustria1.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportAustria1.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SkySportAustria1.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SkySportBundesliga1.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportBundesliga1.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SkySportBundesliga2.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportBundesliga3.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportBundesliga4.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportF1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportFootball.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportMotoGP.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportNBA.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportNews.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SkySportSerieA.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySportUno.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkySports1.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"SkySportsArena.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsBoxOffice.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsCricket.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsCricket.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsF1.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsF1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsFootballUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsFootballUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsGolfUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsGolfUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsMainEventUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsMainEventUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsMix.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsNFL.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsNewsUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsNewsUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsPremierLeagueUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SkySportsPremierLeagueUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkySportsRacingUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyTG24.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SkyUno.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyUnoPlus1.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SkyWitnessHD.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SkyWitnessUK.uk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SlagerTV.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SlagerTV.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Slagr2.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SlagrMuzika.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SlagrPremium.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Slam.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SlotstadTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SmartLifeStyleTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Smartzone.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Smartzone.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Smartzone.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"SmileTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"SmileTV.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"SmithsonianChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SmithsonianChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"SmithsonianChannelLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"SmithsonianChannelUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SmithsonianChannelUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SmithsonianChannelUK.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SoccerChannel.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"SoicoTV.mz","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SolMusica.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Somos.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"SonLifeBroadcastingNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Sonce.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"SongdewTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonicNickelodeon.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonnenklarTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SonyAath.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyBBCEarth.uk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"SonyChannelAndes.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"SonyChannelAndes.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"SonyChannelBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"SonyChannelCentro.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"SonyChannelDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SonyChannelRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SonyChannelRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SonyChannelSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"SonyChannelSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"SonyChannelUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SonyMarathi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyMax2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyMax2.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SonyMaxAsia.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"SonyMaxAsia.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"SonyMaxHungary.in","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SonyMaxHungary.in","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SonyMaxIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyMaxUK.in","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SonyMaxUK.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SonyMix.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SonyMovieChannelHungary.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SonyMovieChannelHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SonyMovies.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SonyMoviesAction.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SonyMoviesClassic.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SonyMoviesUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SonyMoviesUKPlus1.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SonyMoviesUSA.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SonyPal.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyPix.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonySABTVAsia.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"SonySABTVAsia.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"SonySABTVAsia.in","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SonySABTVIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonySABTVUSA.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SonySciFiRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SonySciFiRussia.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"SonySix.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyTen1.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyTen2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyTen3.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyTurbo.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SonyWah.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SonyYay.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SorozatPlus.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SorozatPlus.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SorozatPlus.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"SorozatPlus.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SoundcityAfrica.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SovershennoSekretnoTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SowetoTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SowetoTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Soyuz.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"SpaceBrasil.ar","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SpaceChile.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"SpaceChile.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"SpaceChile.ar","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"SpaceMexico.ar","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"SpaceMexico.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"SpaceMexico.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"SpaceMexico.ar","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"SpaceShowerTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"SpaceShowerTVPlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"SpaceSur.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"SpectrumOC16.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SpectrumSportsNet.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SpectrumSportsNet.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SpectrumSportsNetLA.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SpeedChannel1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Spektrum.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Spektrum.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SpektrumHome.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SperantaTV.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Spice.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SpiegelGeschichte.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SpiegelGeschichte.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SpiegelTVWissen.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SpikeItalia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SpikeItalia.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SpikeNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"SpilerTV1.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SpoTV2.kr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"SporSmart.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SporSmart2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"SporTV.br","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SporTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SporTV2.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SporTV3.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Sport1.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Sport1.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Sport1.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Sport1.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sport1.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Sport1.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"Sport1Czechia.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sport1Hungary.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sport1Hungary.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Sport1Plus.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Sport1Plus.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sport2Czechia.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sport2Hungary.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Sport2Hungary.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Sport5.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SportExtra.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"SportKlub1Hrvatska.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlub2Srbija.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlub3.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlub4.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlub5.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlub6.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlubEsports.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlubGolf.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportKlubPolska.hu","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SportKlubStart.hu","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportTV1.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportTV1.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SportTV2.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportTV2.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SportTV3.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportTV3.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SportTV4.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportTV5.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportTVAfrica1.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"SportTVPlus.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportdigitalFussball.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SportdigitalFussball.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SportenFrance.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"SportingTV.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SportingTV.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Sportitalia.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Sportkanalen.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"SportsLivePlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"SportsMax.jm","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"SportsMax2.jm","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"SportsNetCanucks.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetEast.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetFlames.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetNewYork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SportsNetOilers.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetOne.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetPacific.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetWest.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsNetWorld.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportsTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SportskaTV.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SportsmanChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SportsmanChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SportsmanChannelCanada.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"SportyStuffTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SpotlightTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"SpotlightTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SpreeTV.au","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml"},{"channel":"SremskaTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Stadium.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Star1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Star2.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"Star3.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"StarAction.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"StarAction.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarActionPlus3.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarBS10.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"StarBharat.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarBharatIndia.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarBharatIndia.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"StarBharatIndia.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"StarChannel.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"StarChannelBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"StarChannelChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"StarChannelChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"StarChannelLatinAmerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"StarChannelMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"StarChannelMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"StarChineseChannel.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"StarChineseMoviesSouthEastAsia.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"StarChineseMoviesSouthEastAsia.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"StarChineseMoviesSouthEastAsia.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"StarCinema.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"StarCinema.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarCinema.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarClassics.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarClassics.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarComedy.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarComedy.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarFamily.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"StarFun.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"StarFun.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarFunPlus3.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarGold.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"StarGold.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"StarGold2.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarGoldHDIndia.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarGoldSelect.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarHits.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarHits.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarHitsBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"StarJalsha.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarKentrikisElladas.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"StarLife.hk","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"StarLifeBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"StarLifeChile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"StarLifeChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarLifeLatin.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"StarLifeLatin.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"StarLifeLatin.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"StarLifeMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"StarLifeMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"StarLifeSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"StarMaa.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarMaaMovies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarMoviesHDIndia.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"StarMoviesMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"StarMoviesSelect.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarPlusHDIndia.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarPlusSoutheastAsia.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"StarPlusSoutheastAsia.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"StarPravah.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSeries.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"StarSeries.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"StarSeriesPlus3.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StarSports1.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSports1Hindi.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSports2.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSports3.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSportsFirst.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSportsSelectHD1.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarSportsSelectHD2.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"StarTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"StarTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"StarTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"StarUtsav.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarUtsavMovies.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarVijayMalaysia.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"StarWorldHDIndia.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"StarWorldMiddleEast.hk","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"StarWorldPremiereHD.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"StarsTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StarsTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StartTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Starz1East.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"Starz1West.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"Starz2East.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"Starz2West.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StarzCinemaEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzCinemaEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzCinemaWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzComedyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzComedyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzComedyWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"StarzEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEdgeEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEdgeEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEdgeWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreActionEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreActionEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreActionWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreBlackEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreBlackEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreBlackWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreClassicEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreClassicEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreClassicWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"StarzEncoreEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreEspanolEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreFamilyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreFamilyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreFamilyWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreSuspenseEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreSuspenseEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreSuspenseWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreWesternsEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzEncoreWesternsEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzEncoreWesternsWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzInBlackEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzInBlackEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzInBlackWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzKidsFamilyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzKidsFamilyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"StarzWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"StarzWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Stinet.al","site":"ipko.com","lang":"hr","url":"https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml"},{"channel":"StingrayBroadway.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayCMusic.ca","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"StingrayCMusic.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StingrayCMusic.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayCMusic.ca","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"StingrayCMusic.ca","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"StingrayClassicRB.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayClassica.ca","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"StingrayClassica.ca","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StingrayClassica.ca","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"StingrayClassica.ca","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"StingrayClassica.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StingrayClassica.ca","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"StingrayClassica.ca","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"StingrayClassica.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayClassica.ca","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"StingrayClassica.ca","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"StingrayClassica.ca","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"StingrayClassica.ca","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"StingrayClassica.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayCountry.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayDjazz.ca","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StingrayDjazz.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StingrayDjazz.ca","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"StingrayDjazz.ca","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"StingrayDjazz.ca","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"StingrayDjazz.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayDjazz.ca","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"StingrayDjazz.ca","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"StingrayDjazz.ca","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"StingrayDjazz.ca","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"StingrayFestival4K.ca","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"StingrayFestival4K.ca","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"StingrayFestival4K.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayFrancoFetes.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayGospel.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"StingrayIConcerts.ca","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"StingrayJuicebox.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayLiteTV.ca","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StingrayLoud.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayNaturescape.ca","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"StingrayNoFences.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingrayRetro.ca","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"StingrayRomanceLatino.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StingraySoulStorm.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"StopklatkaTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"StopklatkaTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Story4.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Story4.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Story4.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Story4.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Story5.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"StranaFMTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"StreekTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StrongLive.mz","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"StudioAlphenTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"StudioB.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"StudioUniversalAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"StudioUniversalAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"StudioUniversalArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"StudioUniversalBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"StudioUniversalChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"StudioUniversalChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"StudioUniversalMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"StudioUniversalMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"Studiocanal.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Studiocanal.fr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Sub.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Sud1ere.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SudarshanNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Sudostschweiz.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SunBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SunChannel.ve","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"SunMusic.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"SunTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SunTVMalaysia.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"SundanceTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"SundanceTVEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"SundanceTVEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"SundanceTVEurope.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.ng","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SunnaTV.sa","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"SunnaTV.sa","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SunnaTV.sa","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SunuYeuf.sn","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Super.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"Super.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SuperChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"SuperDPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SuperDramaTV.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"SuperOneHD.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SuperOneHD.hu","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SuperPolsat.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SuperPolsat.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SuperRTLAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SuperRTLDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"SuperSat.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"SuperSat.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SuperSport2.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSport3.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSport4.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSport5.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSport6.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportActionAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportBlitzAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportCricketAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportFootballAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportFootballPlusAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportGolfAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportGrandstandAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportKosova1.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSportKosova2.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSportKosova3.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportLaLigaAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportMaximo1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportMaximo2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportMaximo360.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportMaximo360.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportMotorsportAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportOTT.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT2.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT3.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT4.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT5.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT6.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT7.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportOTT8.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportPSL.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportPlay.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportPlay.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportPremierLeagueAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportRugbyAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportTennisAfrica.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportVariety1Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportVariety2Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportVariety3Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"SuperSportVariety4Africa.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"SuperTV2.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SuperTV2.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SuperTV2.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"SuperTennis.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"SuperTennis.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Superstacja.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Superstar2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SuperstarTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"SuperstarTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"SuperyachtTV.mc","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SurPeru.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SvetloeTV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"SwayamPrabha1.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha10.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha11.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha12.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha13.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha14.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha15.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha16.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha17.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha18.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha19.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha20.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha21.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha22.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha3.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha4.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha5.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha6.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha7.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha8.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"SwayamPrabha9.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Swiss1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SwissSportTV.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SyfyBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"SyfyDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"SyfyDeutschland.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"SyfyDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SyfyEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"SyfyEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"SyfyEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"SyfyEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SyfyEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"SyfyEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"SyfyFrance.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"SyfyFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"SyfyFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"SyfyLatin.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"SyfyPortugal.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"SyfyUK.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"SyfyUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"SyfyWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"SyriTV.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"SyriaDrama.sy","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SyriaDrama.sy","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"SyriaTV.tr","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"SyriaTV.tr","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"T.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"T1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"T24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"T2Info.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"T7.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"T7.rs","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"TA3.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TANTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TAYTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TBNAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TBNArmenia.us","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"TBNBaltia.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TBNBaltia.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TBNBaltia.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TBNEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TBNPolska.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TBNPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TBNRossiya.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TBNUK.us","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TBNUK.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"TBNUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TBNUS.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TBSAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TBSAtlanticoSur.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TBSAtlanticoSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TBSBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TBSChannel1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TBSChannel2.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TBSEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TBSEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TBSEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TBSEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TBSNews.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TBSWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TCMAmericaLatina.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TCMArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TCMBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TCMCentralEasternEurope.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"TCMCentralEasternEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TCMCinema.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TCMCinema.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TCMEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TCMEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TCMMovies.us","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"TCMUS.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TCMUS.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TCT.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TCT.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TCVInternacional.cv","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TDK.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TDNMexico.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"TET.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TF1.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TF1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TF1.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TF1.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TF1.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TF1Plus1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TF1SeriesFilms.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TF1Suisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TFCAsiaPacific.ph","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TFCAsiaPacific.ph","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"TFCMiddleEast.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"TFCUSAWest.ph","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TFM.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TFX.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TFX.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TFX.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TFXSuisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TG4.ie","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ie/ontvtonight.com.epg.xml"},{"channel":"TG4.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TGB.gw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TGCom24.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"TGCom24.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TGNorba24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"TGRTEU.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TGRTHaber.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TGRTHaber.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TGRTHaber.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TJC.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TJC.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"TJKTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TJKTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TLCAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"TLCArabia.us","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"TLCArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TLCBalkan.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TLCBalkan.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TLCBalkan.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TLCBalkan.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TLCBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TLCEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TLCEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TLCEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TLCEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TLCGermany.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"TLCGermany.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TLCIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"TLCLatinoamerica.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TLCMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TLCNederland.us","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TLCPanRegional.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TLCPanRegional.us","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TLCPanRegional.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TLCPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TLCRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TLCRussia.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TLCRussia.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TLCRussia.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TLCRussia.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TLCSoutheastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TLCSoutheastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TLCSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TLCSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TLCSoutheastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TLCSverige.us","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"TLCTurkiye.us","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TLCTurkiye.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TLCTurkiye.us","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TLCWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TLNNetwork.mx","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TLNNetwork.mx","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TLNNetwork.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TLSAfrica.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TM1TV.ml","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TMB.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TMB.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TMC.mc","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TMC.mc","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TMC.mc","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TMC.mc","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TMCPlus1.mc","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TMCSuisse.mc","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TMSTelevizijaTelemark.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TN.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TN23.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TNH.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TNN16.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TNN2.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TNT.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TNT4.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TNTAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"TNTAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"TNTArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TNTBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TNTChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TNTChile.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TNTComedy.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TNTComedy.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TNTComedy.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TNTComedy.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TNTEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TNTEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TNTEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TNTEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TNTEspana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TNTEspana.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TNTFilm.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"TNTInternational.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml"},{"channel":"TNTMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TNTMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"TNTMusic.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TNTMusic.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TNTMusic.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TNTPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TNTSerie.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TNTSeriesArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TNTSeriesBrasil.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TNTSeriesBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TNTSeriesColombia.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"TNTSeriesColombia.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TNTSeriesMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TNTSeriesMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TNTSports2Chile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TNTSports3Chile.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TNTSportsArgentina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TNTWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TNVPlaneta.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TNVTatarstan.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TPA1.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TPA1.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TPA2.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TPAInternacional.ao","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TR35.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRMh24.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"TRT1.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRT1.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRT1.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRT2.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRT2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRT2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRT3.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRT3.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRT3.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRT4K.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTArabi.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTArabi.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTAvaz.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTAvaz.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTAvaz.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTBelgesel.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTBelgesel.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTBelgesel.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTBelgesel.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTCocuk.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTCocuk.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTCocuk.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTCocuk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTHaber.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTHaber.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTHaber.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTKurdi.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTKurdi.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTKurdi.tr","site":"tv.blue.ch","lang":"ku","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTKurdi.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTMuzik.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTMuzik.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTMuzik.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTMuzik.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTSpor.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTSpor.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTSpor.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTSporYildiz.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTSporYildiz.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTSporYildiz.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTTurk.tr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TRTTurk.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTTurk.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TRTTurk.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TRTTurk.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TRTWorld.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TRTWorld.tr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TRTWorld.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TSN1.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TSN1.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSN2.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSN3.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSN4.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSN4KLeafs.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSN5.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TSi.hn","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TUDNEstadosUnidos.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TUDNEstadosUnidos.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"TUDNMexico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TV1.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TV1.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TV1.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TV1.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TV10.rw","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TV10.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV100.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TV100.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TV100.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TV1000Action.se","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TV1000Action.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV1000Action.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV1000Action.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV1000Action.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TV1000Action.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV1000Balkan.se","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV1000Balkan.se","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TV1000Balkan.se","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TV1000Balkan.se","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TV1000Balkan.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TV1000Balkan.se","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TV1000East.se","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TV1000East.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV1000East.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV1000East.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV1000East.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TV1000East.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV1000East.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TV1000East.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV1000RusskoeKino.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TV1000WorldKino.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV12.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV2.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV2.dk","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2.dk","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV2.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV2.hu","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TV2.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TV2.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2000.va","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"TV2000.va","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV2000.va","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV21Macedonia.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV24.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV24.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TV24.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TV25.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV25.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TV2Charlie.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV2Fri.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV2Kids.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TV2Livsstil.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2News.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV2Nyhetskanalen.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2Sef.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV2Sef.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TV2Sport.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV2Sport1.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2Sport2.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2SportPremium.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2Zebra.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV2Zulu.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV3.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV3.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TV3.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TV3.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TV3.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TV3.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV3.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TV3CAT.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV3CAT.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TV3Danmark.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV3Danmark.dk","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV3Eesti.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV3Eesti.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV3Eesti.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV3Film.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV3Film.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV3Film.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV3Film.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Latvija.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Life.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Max.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV3Mini.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Norge.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV3Plus.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV3Plus.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV3Plus.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV3Puls.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV3Sport.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV3Sport.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV3Sport.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV3Sport.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV3Sport.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Sport2.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV3Sport2.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV3Sport2.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV3Sport2.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV3Sverige.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"TV3Sverige.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV3Sverige.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV4.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV4.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TV4.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV4.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TV4.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"TV4.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV4.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"TV4.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TV4.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV47.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TV47.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TV47.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TV4Fakta.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV4Film.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV4Guld.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV4S.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TV4TNG.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV5.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"TV5.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TV538.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TV5MondeAfrique.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TV5MondeAmeriqueLatine.fr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TV5MondeAsie.fr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TV5MondeAsie.fr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TV5MondeAsie.fr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TV5MondeEtatsUnis.fr","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TV5MondeEurope.fr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TV5MondeFranceBelgiqueSuisse.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TV5MondeFranceBelgiqueSuisse.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TV5MondeFranceBelgiqueSuisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV5MondePacifique.fr","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TV5MondeStyleHD.fr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TV5MondeStyleHD.fr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TV5Uzice.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TV6.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV6.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TV6Eesti.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TV6Eesti.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TV6Eesti.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TV6Latvija.lv","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"TV6Norge.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV6Sverige.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"TV6Sverige.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TV6Sverige.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV7.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TV7.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TV8.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"TV8.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV8.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TV8.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TV8.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TV8.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TV85.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TV85.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TV8International.tr","site":"tv.blue.ch","lang":"tr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV8MontBlanc.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TV8Sverige.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"TV9.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TV9Bangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TV9Gujarati.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TV9Kannada.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TV9Marathi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TVA1.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVA2.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVAAvand.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVABourse.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVACritica.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAFilm.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVAKids.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVALESP.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAMahfel.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVANava.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVAOstbayern.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"TVAS.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVAS.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVASport.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVASport2.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TVASports3.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TVAfrica.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TVAgro.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"TVAgro.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TVAlBayane.ci","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TVAlhijrah.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVAmapa.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAntena10.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAparecida.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVApatin.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVAratu.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVArena.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TVArena.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVAsahi.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TVAsahiChannel1.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TVAsahiChannel2.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TVAssembleiaCeara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAssembleiaMinasGerais.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVAtalaia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVB1.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVBClassic.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBEntertainmentNews.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBJadeMalaysia.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBS.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVBSAsia.tw","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBSAsia.tw","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TVBSAsia.tw","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TVBSNews.tw","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVBXingHe.hk","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVBXingHe.hk","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TVBacka.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVBahia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVBanat.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVBarrandov.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVBecej.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVBelleAmie.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVBerghem.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVBolt.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TVBor.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVBrasil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TVBreizh.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TVBreizh.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TVBreizh.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TVBreizh.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVBujanovac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVC.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TVCBenin.bj","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TVCGSat.me","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVCGSat.me","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TVCGSat.me","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVCGSat.me","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVCNews.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TVCaboBranco.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCamara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCanaria.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TVCancaoNova.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCancaoNovaPortugal.br","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVCapixaba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCaraibes.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TVCaribrod.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVCastillaLaMancha.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TVCeara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCelje.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVCentr.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TVCentrInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TVCentrInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TVCentrInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TVCentrInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVCentral.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVCentroAmericaCuiaba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVChile.cl","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TVChile.cl","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVChile.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TVChile.cl","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVCidadeSaoLuiz.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCidadeVerdeCuiaba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCineAction.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVCineAction.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVCineEdition.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVCineEdition.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVCineEmotion.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVCineEmotion.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVCineTop.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVCineTop.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVCink.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVCity.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVCiudad.uy","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVClube.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCorreio.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCortos.uk","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVCulturaNacional.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVCulturas.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TVDR.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVDelta.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVDiario.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVDifusoraSaoLuis.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVDiskos.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVDoma.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVDominicana.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TVDrenthe.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVDugaPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVDugaPlus.rs","site":"tv.blue.ch","lang":"sr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVDugaPlus.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVDukagjini.rs","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVE.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVE.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TVE.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TVE.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TVEBahia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVEInternacionalAmerica.es","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TVEInternacionalAmerica.es","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVEInternacionalAmerica.es","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVEInternacionalAmerica1.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVEInternacionalAsia.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVEInternacionalEuropa.es","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVELa1Madrid.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TVELa1Madrid.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVELa1Madrid.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVELa2.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"TVELa2.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TVEdo.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TVEmTempo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVEscola.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVEvropa.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TVFamilia.ve","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TVFruskaGora.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVG.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVG.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TVG.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVG2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TVGE.gq","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TVGMPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVGalaksija32.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVGaleja.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVGazeta.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGelderland.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVGem.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVGloboBrasilia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGloboInternacionalAfrica.br","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVGloboInternacionalAmericas.br","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TVGloboInternacionalAmericas.br","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVGloboInternacionalAmericas.br","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVGloboNordeste.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGloboRiodeJaneiro.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGloboSaoPaulo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGuara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVGuberniya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TVGuide.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVHitPlusBatocina.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVHorizonte.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVHram.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVI.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVI24.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVI24.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVIDEA.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVIFiccao.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TVIFiccao.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVIFiccao.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVIInternacional.pt","site":"tv.blue.ch","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVIInternacional.pt","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TVIguacu.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVInfo24Plus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVIris.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TVIstok.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVJadran.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVJangadeiro.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVJapan.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVJapan.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVJasenica.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVJoj.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVJornalCaruaru.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVJustica.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVK1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVK2.kr","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVK9.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKanagawa.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TVKanal25.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKanalM.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKikinda.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKladovo.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKlan.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVKoha.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TVKomenda.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVKoperCapodistria.si","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TVKoperCapodistria.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVKoreni.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKragujevac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKraljevo.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVKrimpenerwaard.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVKrusevac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVLandEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVLandEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TVLandEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVLandWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVLav.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVLavPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVLeskovac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVLesotho.ls","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TVLesotho.ls","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TVLiberal.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVLotelPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVLux.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVM.mz","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TVM3.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVMChannel.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TVMInternacional.mz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TVMag.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVMalagasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TVMalagasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TVMalagasy.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TVMaribor.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVMarkiza.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVMars.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVMax.pa","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TVMexiquense.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TVMiklavz.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVMiramar.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TVMiramar.br","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TVMix.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVMost.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVN.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TVN.ee","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TVN.ee","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TVN.ee","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TVN.pa","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TVN.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVN.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVN24.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVN24.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVN24BiS.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVN7.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVN7.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVNAsia.kr","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TVNAsia.kr","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TVNAsia.kr","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TVNFabula.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVNMovies.kr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVNMoviesIndonesia.kr","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TVNPremium.kr","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVNPremiumIndonesia.kr","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TVNStyle.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVNTurbo.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVNTurbo.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVNacionalUruguay.uy","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVNet.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"TVNet.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TVNet.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"TVNiksic.me","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TVNoe.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVNoord.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVNorge.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"TVNova.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVNova.cz","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVNova.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVNoviBecej.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVNoviPazar.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVNovoTempoBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVNuevoTiempo.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TVNunspeet.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVO.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TVO.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVOCanal23.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"TVOberfranken.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"TVOberwallis.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVOkazje.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVOne.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TVOne.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TVOne.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TVOne.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TVOne.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVOnex.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVOost.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVOranje.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVOsem.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVP1.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVP1.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVP1.pl","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TVP2.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVP2.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVP2.pl","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TVP3Warszawa.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPABC.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPABC.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPCanal.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPHD.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPHD.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPHistoria.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPHistoria.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPInfo.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPInfo.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPKultura.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPKultura.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPPolonia.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPPolonia.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPPolonia.pl","site":"tv.blue.ch","lang":"pl","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVPPolonia.pl","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TVPPolonia.pl","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVPRozrywka.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPRozrywka.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPSeriale.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPSeriale.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPSport.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPSport.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVPajucara.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVPalmaPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPampa.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVPancevo.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPaprika.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPaprika.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TVPaprikaCzechRepublic.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPaprikaRomania.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVParanaTurismo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVParanaiba.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVPartizan.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TVPartizan.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPeru.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"TVPeruInternacional.pe","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TVPetrovec.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPirot.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPirveli.ge","site":"magticom.ge","lang":"ka","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TVPitchoun.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TVPlusMadagascar.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TVPlusMadagascar.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TVPlusMadagascar.mg","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TVPodrinje.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPontaNegra.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVPovazie.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPozega.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPriboj.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVPublica.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"TVPublica.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TVPuls.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVPuls.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVQ.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVR1.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVR2.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVR3.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRCluj.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRCraiova.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRINasional.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TVRINasional.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"TVRIasi.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRInternational.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRInternational.ro","site":"tv.blue.ch","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVRMoldova.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRTarguMures.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRTimisoara.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TVRaTimBum.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVRaca.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVRaj.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVRas.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVRecordMadagascar.br","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TVRecordMadagascar.br","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TVRecordMadagascar.br","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TVRepublika.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVRepublika.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVRheintal.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVRijnmond.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVRioSul.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVRitam.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVRomana.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVRondonia.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVS.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TVS.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVS.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVS2SouthernTV.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TVS2SouthernTV.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TVSA.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVSabac.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVSaitama.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TVSantaCruz.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVSantos.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVSenado.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVSenado.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TVSergipe.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVSerraDourada.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVSeverka.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVSeznam.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVShenja.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TVSimic.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TVSkay.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVSlonExtra.ba","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVSlovenija1.si","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVSlovenija1.si","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TVSlovenija1.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVSlovenija2.si","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVSlovenija2.si","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"TVSlovenija2.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVSlovenija3.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVSonce.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TVStart.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TVStichtseVecht.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVSuissePlus.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TVSunce.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVT.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TVT.tg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TVTRWAM.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVTRWAM.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TVTourism.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TVTrans.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVTribuna.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVTropical.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVTrstenik.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVU.bo","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"TVUNAM.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TVUniaoFortaleza.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVVega.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVVerdesMares.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TVVijesti.me","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TVVraca.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TVVranje.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVVrnjackaBanja.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVVujic.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVVychod.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TVW.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TVWest.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TVWest.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TVX.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"TVXXI.lv","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TVXXI.lv","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TVXXI.lv","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TVXXI.lv","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TVXXI.lv","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TVXXI.lv","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TVYUEco.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVZimbo.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TVZimbo.ao","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TVZlatar.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVZonaPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TVietNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TaDaa.my","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"TabanTV.ir","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"TabiChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TaevasTV7.fi","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TaevasTV7.fi","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TaevasTV7.fi","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Tagesschau24.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Tagesschau24.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Tagesschau24.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TahitiNuiTV.pf","site":"programme-tv.vini.pf","lang":"fr","url":"https://iptv-org.github.io/epg/guides/pf/programme-tv.vini.pf.epg.xml"},{"channel":"TakarazukaSkyStage.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TalkingPicturesTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TalkingPicturesTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"TanjugTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TanjugTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TanzaniaSafariChannel.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TanzaniaSafariChannel.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TanzaniaSafariChannel.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TarafTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TarangTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TarimTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Taroteame.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TawafTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TaynyGalaktiki.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Tb1.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"Teach.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TecTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TeenNickEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TeenNickEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TeenNickHungary.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TeenNickRomania.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Tele1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Tele1.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Tele1.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Tele1.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Tele20.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Tele5.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Tele5.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Tele5.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Tele5.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"Tele5.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Tele50.cd","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TeleAfrica.ga","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TeleAmazonas.ec","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TeleAmiga.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TeleAntillas.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TeleBarn.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleBielingue.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleCentro.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TeleCongo.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TeleD.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleFormula.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TeleHit.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TeleHit.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TeleKreol.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TeleKreol.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TeleKreol.re","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TeleM1.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleNostalgia.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"TeleOnce.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TelePacific.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TelePacific.ht","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml"},{"channel":"TeleRadyoGlobal.ph","site":"osn.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml"},{"channel":"TeleRebelde.cu","site":"tvcubana.icrt.cu","lang":"es","url":"https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TeleSahel.ne","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TeleSoleil.ht","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TeleSwizz.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TeleTchad.td","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TeleTicino.ch","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonAfrica.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TeleToonPlus.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TeleToonPlus.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TeleToonPlus.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleToonPlus1.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TeleTop.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleVid.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"TeleXitos.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TeleZ.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleZentralschweiz.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TeleZuri.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Teleantioquia.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Teleantioquia.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Teleantioquia.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Telebasel.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Telebet.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Telebimbi.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TelebomTeledom.de","site":"tv.blue.ch","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Telecadena7y4.hn","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"Telecadena7y4.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Telecafe.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Telecafe.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Telecafe.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelecafeInternational.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TelecafeInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TelecafeInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TelecafeInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TelecafeInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Telecaribe.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Telecaribe.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Teleceiba.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Telecentro.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"Telecinco.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Telecinco.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"TelecineAction.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelecineCult.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelecineFun.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelecinePipoca.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelecinePremium.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelecineTouch.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Teledeporte.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Teledeporte.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Teledeporte.es","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TelediarioTV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Telefe.ar","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"Telefe.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TelefeCordoba.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TelefeInternacional.ar","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TelefeInternacional.ar","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TelefeInternacional.ar","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TelefeRosario.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TelefeSantaFe.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Telefuturo.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"Telefuturo.py","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"TelehitMusica.mx","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Teleislas.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Teleislas.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Telekanal2x2.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Telekanal360deg.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalDoktor.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalFutbol.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TelekanalFutbol.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TelekanalFutbol.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TelekanalFutbol.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalNadezhda.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalO.ru","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TelekanalO.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TelekanalO.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalSTB.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TelekanalSpas.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalSpas.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TelekanalTeatr.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekanalUkraina.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TelekanalZvezda.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TelekomSport1.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TelekomSport2.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TelekomSport3.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TelekomSport4.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Telelombardia.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Telemadrid.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Telemax.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Telemedellin.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Telemedia.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Telemetro.pa","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"Telemicro5.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TelemicroInternacional.do","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Telemundo.mx","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tz/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TelemundoAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TelemundoEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TelemundoEste.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"TelemundoInternacional.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TelemundoInternacional.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TelemundoOeste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Telenova.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Telepacifico.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Telepacifico.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Teleputeshestviya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Telesistema.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"Telesistema3y7.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Telesud.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Telesur.ve","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Telesur.ve","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Telesur.ve","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TelesurEnglish.ve","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"Teletica7.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TeletoonPlusHDPolska.fr","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Teletrak.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Teleunion.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"Teleuniverso.do","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"Televen.ve","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"Televicentro.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"Televisiete.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TelevisionDominicana.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Televista.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"Televista.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TelevizijaFokus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TelevizijaPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Tellytrack1.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"Telma.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"Telma.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TempoNetworks.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Ten.eg","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"Ten.eg","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"TennisChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TennisChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TeraTV.mk","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TerraViva.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Teva.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Teva.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Teva.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Teva.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Teve2.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"Teve2.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"Teve2.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"ThaiChannel8.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"ThaiPBS3.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"ThaiTV5HD1.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"ThaiTVGlobalNetwork.th","site":"tv.blue.ch","lang":"th","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ThairathTV32.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TheAfricaChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TheAfricaChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheBoxUK.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TheBoxUK.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TheCWEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TheCinema.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TheCinema4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TheCountryNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheCowboyChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheFamilyChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheFishingHuntingChannel.hu","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TheFishingHuntingChannel.hu","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TheFishingHuntingChannel.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TheHistoryChannelJapan.us","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TheHistoryChannelTurkey.us","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TheHomeChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TheIsraeliNetwork.il","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"TheIsraeliNetwork.il","site":"tv.blue.ch","lang":"he","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TheIsraeliNetwork.il","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheMovieChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TheMovieChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TheMovieChannelEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheMovieChannelWest.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TheMovieChannelWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheMovieChannelXtraEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TheParliamentaryChannel.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TheQIndia.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TheRuralChannel.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"TheWeatherChannel.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TheWeatherChannel.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TheWeatherChannel.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TheWordNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TheWordNetwork.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TheWordNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ThikrayatTV.sa","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"ThikrayatTV.sa","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"ThisTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TholenTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Thrill.hk","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"Thrill.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"Thrill.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ThrillerMaxEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ThrillerMaxEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ThrillerMaxWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TianjinTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"TianyuanIGoChannel.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Tiji.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Tiji.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Tiji.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Tiji.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TijiRussia.fr","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"TimesNowWorld.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TinyPop.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TinyPop.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Tipik.be","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Tipik.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Tivi5Monde.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TlnovelasAmerica.mx","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TlnovelasAmerica.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TlnovelasAmerica.mx","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"tv.blue.ch","lang":"es","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TlnovelasEuropa.mx","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TlnovelasMexico.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"TlnovelasMexico.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"TochkaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ToeiChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"TogetherTV.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"TogetherTV.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"ToggoPlus.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Toku.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ToonamiFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ToonamiFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ToonamiFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Tooncast.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"Tooncast.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TopCalcio24.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TopChannel.al","site":"tv.blue.ch","lang":"sq","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TopChannel.al","site":"tvim.tv","lang":"sq","url":"https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml"},{"channel":"TopCrime.it","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"TopCrime.it","site":"mediaset.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml"},{"channel":"TopCrime.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TopTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TopperTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"TorosTV.pt","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ToutelHistoire.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ToutelHistoire.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ToutelHistoire.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ToxicFolk.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ToxicFolk.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ToxicRap.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ToxicTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ToxicTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ToxicTV.rs","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfricaFrancais.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceAfrikora.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TraceAyiti.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TraceBrazuca.fr","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TraceCaribbean.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TraceCaribbean.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TraceGospel.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TraceGospelEnglishSpeakingAfrica.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TraceHits.fr","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TraceJama.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceKitoko.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TraceLatina.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TraceMuzika.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TraceMziki.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TraceNaija.fr","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TraceSportStars.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TraceSportStars.fr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TraceSportStars.fr","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"TraceSportStars.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TraceSportStars.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TraceSportStars.fr","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TraceSportStars.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TraceToca.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"TraceToca.fr","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"TraceToca.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"TraceUrban.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"TraceUrban.fr","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TraceUrban.fr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"TraceUrban.fr","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"TraceUrban.fr","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TraceUrban.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"TraceUrban.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TraceUrban.fr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TraceUrbanAfrique.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"TraceVanillaIslands.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"TraceVanillaIslands.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"TraceVanillaIslands.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Trans7.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"Trans7.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"TransTV.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"TransTV.id","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"TravelBoxBrazil.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TravelChannelAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"TravelChannelAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"TravelChannelEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TravelChannelEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TravelChannelEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"TravelChannelEurope.us","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TravelChannelEurope.us","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TravelChannelEurope.us","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TravelChannelEurope.us","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TravelChannelEurope.us","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"TravelChannelEurope.us","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"TravelChannelEurope.us","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"TravelChannelEurope.us","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"TravelChannelEurope.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TravelChannelEurope.us","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TravelChannelEurope.us","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"TravelChannelEurope.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"TravelChannelEurope.us","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"TravelChannelPolska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TravelMix.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TravelPlusAdventure.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TravelTV.bg","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"Travelxp4KEurope.in","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Travelxp4KEurope.in","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Travelxp4KNorthAmerica.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TravelxpHDEurope.in","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TravelxpHDEurope.in","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"TravelxpHDEurope.in","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Trece.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Trece.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"Trece.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Trece.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"TreceCostaRicaTV.cr","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"TreceVision.gt","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"TreehouseTV.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Trek.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Trek.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Trek.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"TriAngela.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"TringAction.al","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TringAction.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TringFantasy.al","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"TringShqip.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TringTring.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TrinitasTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"TropikTV.ba","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"TruTVAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TruTVAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"TruTVBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"TruTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TruTVEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"TruTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"True4U.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueCrimeNetwork.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TrueExploreLife.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueExploreSci.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueExploreWild.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueFilmHD.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueFilmHD2.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueMovieHits.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TruePlookpanya.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSelect.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSeries.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueShopping.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSparkJump.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSparkPlay.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSport5.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSport7.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSportHD.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSportHD2.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSportHD3.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueSportHD4.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueTennis.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueThaiFilm.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrueXZyte.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"TrybeTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"TrzicTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"TshwaneTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"TshwaneTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"TukiTV.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"TurismoVisionArgentina.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TurizamTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"TwenteTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"TyCSports.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TyCSports.ar","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"TyCSports2.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"TyCSportsInternacional.ar","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"TyCSportsInternacional.ar","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"TyCSportsInternacional.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"U.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"U.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"UAKultura.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"UAPershiy.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"UATV.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"UATV.ua","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"UATV.ua","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"UAZakarpattya.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"UBCTV.ug","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"UCVTV.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"UHD1.lu","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"USANetworkEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"USANetworkEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"USANetworkEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"USANetworkWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UTV.iq","site":"elcinema.com","lang":"ar","url":"https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml"},{"channel":"UTV.iq","site":"elcinema.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml"},{"channel":"UTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"UTVAction.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"UTVMovies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"UcanKusTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"UcanKusTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"UdayaTV.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Udmurtiya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Ufrovision.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"UgraTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Ukraina24.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"UlkeTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"UlkeTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"UlkeTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"UltraFamilia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UltraNature.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"UltraNature.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"UlusalKanal.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"UlusalKanal.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"UniMasCentral.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UniMasEste.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UniMasOeste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UnianTV.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Unicable.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Unicable.mx","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Unicanal.py","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"UninettunoUniversityTV.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"UnitedTV.gh","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"UnitelSantaCruz.bo","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"UnitelSantaCruz.bo","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"UniversalKids.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UniversalKidsEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UniversalLivingFaithNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"UniversalTVAfrica.us","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"UniversalTVAmericaLatina.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"UniversalTVAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatina.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatina.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"UniversalTVAmericaLatina.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"UniversalTVAmericaLatinaEste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml"},{"channel":"UniversalTVAmericaLatinaOeste.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"UniversalTVBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"UniversalTVChile.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"UniversalTVDeutschland.us","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"UniversalTVDeutschland.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"UniversalTVMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"UniversalTVMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"UnivespTV.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"UnivisionEste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UnivisionEste.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"UnivisionEste.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"UnivisionLatinoamerica.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"UnivisionOeste.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UnivisionTlnovelas.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UpNetwork.cz","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"UpTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"UpTV.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"UrbanTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"UrbanTV.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"UruguayNaturalTV.uy","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Usadba.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"UsadbaInternational.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"UsadbaInternational.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"UsadbaInternational.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"UshuaiaTV.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"UshuaiaTV.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"UshuaiaTV.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"UshuaiaTV.fr","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"Uspeh.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"UtsavGold.hk","site":"tv.blue.ch","lang":"hi","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"UtsavPlus.hk","site":"tv.blue.ch","lang":"hi","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"V4.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VANDEGujarat1.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat10.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat11.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat12.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat13.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat14.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat15.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat16.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat2.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat3.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat4.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat5.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat6.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat7.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat8.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VANDEGujarat9.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VAPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"VFilmAction.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VFilmAction.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VFilmAction.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VFilmAction.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VFilmAction.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VFilmFamily.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VFilmFamily.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VFilmFamily.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VFilmFamily.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VFilmFamily.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VFilmHits.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VFilmHits.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VFilmHits.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VFilmHits.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VFilmHits.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VFilmPremiere.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VFilmPremiere.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VFilmPremiere.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VFilmPremiere.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VFilmPremiere.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VGNTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VH1East.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"VH1East.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VH1East.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"VH1East.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"VH1East.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"VH1Europe.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"VH1Europe.us","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"VH1Europe.us","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"VH1Europe.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"VH1Europe.us","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VH1Europe.us","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"VH1India.us","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VH1Italia.us","site":"guidatv.sky.it","lang":"it","url":"https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml"},{"channel":"VH1Italy.us","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VH1Polska.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"VH1West.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"VIPComedy.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"VIPComedy.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"VIPComedy.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"VIPComedy.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VIPComedy.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"VIPMegahit.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VIPPremiere.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VParadise.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"VSeries.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VSeries.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSeries.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSport1Norge.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSport1Suomi.fi","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSport1Sverige.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSport1Sverige.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSport2.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSport2Suomi.fi","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSport3.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportExtra.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportFootball.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportFootball.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportFootball.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VSportGolf.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VSportGolf.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportGolf.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportGolf.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportGolf.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VSportHockey.se","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"VSportLive1.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportLive1.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportLive1.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportLive2.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportLive2.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportLive2.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportLive3.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportLive3.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportLive3.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportLive4.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportLive4.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportLive4.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportLive5.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportLive5.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportLive5.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportMotor.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportPlus.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportPlusSuomi.fi","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportPremium.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportPremium.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportUltraHD.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"VSportUltraHD.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportUltraHD.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VSportUltraHD.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VSportVinter.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"VSportVinter.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"VTM.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"VTM.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTM2.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"VTM2.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTM3.be","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"VTM3.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTM4.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTMGold.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTMKids.be","site":"vtm.be","lang":"nl","url":"https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml"},{"channel":"VTV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"VTV.hn","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"VTV.hn","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml"},{"channel":"VTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"VTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"VTV.uy","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"VTV1.vn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"VTV2.vn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"VTV3.vn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"VTV4.vn","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"VTVCanal35.sv","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml"},{"channel":"VTVNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Valu.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Valu.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Varyag.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"VasKanal.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"VavTV.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"VavTV.tr","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"VavTV.tr","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"Vavoom.ch","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"VePlusPanregional.ve","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"VePlusPanregional.ve","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"VePlusPanregional.ve","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"VePlusPanregional.ve","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"VechtdalTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"VelayatTVNetwork.us","site":"tva.tv","lang":"fa","url":"https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml"},{"channel":"Venevision.ve","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VenevisionPlus.ve","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Venus.ar","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"Venus.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Venus.ar","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"VerginaTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"VernierVisions.ch","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Veronica.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"VeseljakTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Vesti.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Vetta24.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"Via.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ViaATV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ViaX.cl","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"ViaX.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"Viajar.es","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml"},{"channel":"Viajar.es","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"Viajar.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Viasat3.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"Viasat6.hu","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ViasatExplore.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"ViasatExplore.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"ViasatExplore.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"ViasatExplore.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"ViasatExplore.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ViasatExplore.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ViasatExplore.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ViasatExplore.se","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"ViasatExploreEast.se","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ViasatExploreEast.se","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ViasatExploreEast.se","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ViasatExploreEast.se","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ViasatExploreEast.se","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ViasatExploreEast.se","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ViasatExploreEast.se","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ViasatExploreEast.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ViasatExploreEast.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ViasatExploreEast.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"ViasatExploreEast.se","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ViasatExploreEast.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ViasatExploreEast.se","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ViasatExplorePolsat.se","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ViasatExploreRussia.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ViasatHistory.se","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ViasatHistory.se","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ViasatHistory.se","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ViasatHistory.se","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ViasatHistory.se","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ViasatHistory.se","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ViasatHistory.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ViasatHistory.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ViasatHistory.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ViasatHistory.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ViasatHistory.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"ViasatHistory.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ViasatHistory.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ViasatHistory.se","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"dsmart.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ViasatHistoryHD.se","site":"tvplus.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml"},{"channel":"ViasatHistoryPolsat.se","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ViasatNature.se","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"ViasatNature.se","site":"allente.se","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml"},{"channel":"ViasatNature.se","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"ViasatNature.se","site":"allente.se","lang":"sv","url":"https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml"},{"channel":"ViasatNatureEast.se","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"ViasatNatureEast.se","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ViasatNatureEast.se","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ViasatNatureEast.se","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ViasatNatureEast.se","site":"maxtvgo.mk","lang":"mk","url":"https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml"},{"channel":"ViasatNatureEast.se","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ViasatNatureEast.se","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ViasatNatureEast.se","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ViasatNatureEast.se","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"ViasatNatureEast.se","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"ViasatNatureEast.se","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tv.dir.bg","lang":"bg","url":"https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tv.lv","lang":"lv","url":"https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ViasatNatureEast.se","site":"tvmusor.hu","lang":"hu","url":"https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml"},{"channel":"ViasatNaturePolsat.se","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ViasatSportEast.se","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ViasatSportEast.se","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ViasatSportEast.se","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"VibraTV.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"Vice.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ViceEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ViceEast.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"VideoItalia.it","site":"tv.blue.ch","lang":"it","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VideoRola.mx","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VideoRola.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"VienThaoTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ViendoMovies.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ViendoMovies.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"VietfaceTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VietvNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VijayTV.hk","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"VijayTV.hk","site":"tv.blue.ch","lang":"ta","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VillageCinemas.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"VirginMediaOne.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"VirginMediaThree.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"VirginMediaTwo.ie","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Vision4.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Vision4RCA.cm","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"VisionPrime.id","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"VisionTV.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"Vitel.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ViuTV.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ViuTV.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ViuTVsix.hk","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ViuTVsix.hk","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"VivaNicaraguaCanal13.ni","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"VividRed.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"VividRed.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"VividTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VividTVEurope.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"VividTVMonthlyOffer.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"VividTouch.us","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"VividTouch.us","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"Vixen.us","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"VizionPlus.al","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Vme.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Vme.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"Vme.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"VmeKids.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"VmesteRF.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Vmirezhivotnykh.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VoATVGlobal.us","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"VoirPlus.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"VolksmusikTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Volver.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"VoprosyiOtvety.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VouliTV.gr","site":"cosmote.gr","lang":"el","url":"https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml"},{"channel":"VouliTV.gr","site":"novacyprus.com","lang":"el","url":"https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml"},{"channel":"Vox.no","site":"allente.se","lang":"no","url":"https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml"},{"channel":"VoxAustria.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"VoxDeutschland.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"VoxDeutschland.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"VoxDeutschland.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"VoxDeutschland.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"VoxDeutschland.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"VoxDeutschland.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"VoxDeutschland.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VoxDeutschland.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"VoxMusicTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"VoxTV.cg","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"VoxafricaAfrique.uk","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"Voxup.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"VranjskaPlus.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Vremya.ru","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Vremya.ru","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"Vremya.ru","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"Vremya.ru","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"Vremya.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"VremyaInternational.ru","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"W34EYD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"W34EYD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"W9.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"W9.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"W9.fr","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"W9.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"W9Suisse.fr","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WABCDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WAGVDT2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WALELD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WALELD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WAPADT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WAPADT1.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WAPADT2.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WATEDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WATNDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WBCFLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBGTCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBGTCD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBIRDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WBXXDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WBXZLP11.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBXZLP12.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBXZLP3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WBXZLP7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WCBSDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WDR1Live.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"WDRFernsehenKoln.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"WDRFernsehenKoln.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WDRFernsehenKoln.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"WFORDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WGCECD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WGCECD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WGNDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WHBQDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WION.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"WJFBDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WKAQDT1.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WKAQDT2.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WKNODT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WKNXDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WKOBLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WKOPDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WKRNDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WLIIDT1.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WLMTDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WMBQCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WMCDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WMJNLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNBCDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WNPIDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNPTDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WNXYLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNXYLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNYNLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNYNLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WNYWDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WNYXLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WOBITV.ar","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"WORODT1.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WOS.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"WPBSDT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WPBTDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WPIXDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WPLGDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WPTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"WPTVDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WPXKDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WPXXDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WPolscePL.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"WPolscePL.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"WREGDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WRTDLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WRTDLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WRUADT1.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml"},{"channel":"WSFGLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSFGLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSFGLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSFGLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSMVDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WSSFLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSSFLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSSFLD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WSVNDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WTNZDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WTVFDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WTVJDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WTVUCD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WTVUCD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WTVUCD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUCBLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUK.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"WUOALD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUOALD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUOALD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUOALD6.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUOALD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WUXPDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WVLTDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WVLTDT2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WVTTCD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WVVCLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"WWEChannel.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"WWENetworkPlus1.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"WWORDT1.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WXNYLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WXNYLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WXNYLD4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WXNYLD5.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WXXADT4.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WYAMLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WYBNLD2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WYBNLD3.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WYBNLD7.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WYBNLD8.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WZTVDT1.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WZTVDT2.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"WalfTV.sn","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"WaltaTV.et","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"WapTV.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"WarnerChannelAtlanticoSur.us","site":"comteco.com.bo","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml"},{"channel":"WarnerChannelAtlanticoSur.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"WarnerChannelBrasil.us","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"WarnerChannelMexico.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"WarnerChannelMexico.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"WarnerChannelPanregional.us","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"WarnerTVComedy.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WarnerTVFilm.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WarnerTVFrance.us","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"WarnerTVFrance.us","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"WarnerTVFrance.us","site":"tv.blue.ch","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WarnerTVSerie.us","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WarnerTVSoutheastAsia.us","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"WarnerTVSoutheastAsia.us","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"WarnerTVSoutheastAsia.us","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"WarnerTVSoutheastAsia.us","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"WarnerTVSoutheastAsia.us","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"WasafiTV.tz","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"WataaaTV.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"Watania1.tn","site":"tv.blue.ch","lang":"ar","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WaterPlanet.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"WaterPlanet.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"WaterTelevisionNetwork.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"WauTV.sk","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"WazobiaMaxTVNigeria.ng","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"WeTVEast.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WeTVEast.us","site":"tvguide.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml"},{"channel":"WeTVEast.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WeTVWest.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WeatherNow.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Welt.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"Welt.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Welt.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"Welt.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"Welt.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Welt.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Welt.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"WeltderWunderTV.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"WeltderWunderTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WettercomTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"WildEarth.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"WildTV.ca","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"WillaxTV.pe","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml"},{"channel":"WillaxTV.pe","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml"},{"channel":"Willow.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WillowCricket.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"WinSports.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"WinSports.co","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml"},{"channel":"WinSports.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Woman.bg","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"Woman.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"WooHoo.br","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"Workpoint23.th","site":"tv.trueid.net","lang":"th","url":"https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml"},{"channel":"WorldFashionChannelRussia.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"WorldHarvestTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"WorldWildMuzzik.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"WorldWildMuzzik.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"WowCinemaOne.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"WowTV.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Wowow4K.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"WowowCinema.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"WowowLive.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"WowowPlus.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"WowowPrime.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"XEFBTDT.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"XHASDT2.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"XHGTDT.mx","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml"},{"channel":"XSport.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"XTimeChannel.us","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"XXL.fr","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"XXL.fr","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"Xee.dk","site":"allente.se","lang":"da","url":"https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml"},{"channel":"XezerTV.az","site":"tv.mail.ru","lang":"az","url":"https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml"},{"channel":"XiamenStarTVChina.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"XizangTVChinese.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"XizangTVTibetan.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"Xtra.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Xtrm.es","site":"programacion-tv.elpais.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml"},{"channel":"Y254.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"Y254.ke","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"YES2Overflow.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"YLETV1.fi","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"YLETV1.fi","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"YLETV1.fi","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"YLETV1.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"YLETV2.fi","site":"teliatv.ee","lang":"en","url":"https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml"},{"channel":"YLETV2.fi","site":"teliatv.ee","lang":"et","url":"https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml"},{"channel":"YLETV2.fi","site":"teliatv.ee","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml"},{"channel":"YLETV2.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"YLETeemaFem.fi","site":"telkussa.fi","lang":"fi","url":"https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml"},{"channel":"YTN.kr","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"YTV.ca","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"YaSNAeTV.by","site":"tv.mail.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml"},{"channel":"Yaban.tr","site":"digiturk.com.tr","lang":"tr","url":"https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml"},{"channel":"YadahTV.zw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"YamalRegion.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"YanbianTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"YerkirMediaTV.am","site":"tv.mail.ru","lang":"hy","url":"https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml"},{"channel":"YesNetwork.us","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"Yesterday.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"Yesterday.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"Yesterday.uk","site":"tv.blue.ch","lang":"en","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"YesterdayPlus1.uk","site":"ontvtonight.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml"},{"channel":"YesterdayPlus1.uk","site":"sky.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml"},{"channel":"YicaiTV.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"YicaiTV.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"YoseChannel.jp","site":"tvguide.myjcom.jp","lang":"jp","url":"https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml"},{"channel":"YourTVMilton.ca","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml"},{"channel":"YunnanTV1.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"YurViewArizona.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"YurViewCalifornia.us","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"Yurgan.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Z1.hr","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Z1.hr","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"Z1.hr","site":"tv.blue.ch","lang":"hr","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"Z1.hr","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ZBCTV.zw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ZBCTV.zw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ZBCTV.zw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ZBCTV.zw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ZDF.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ZDF.de","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZDF.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ZDF.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ZDF.de","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ZDF.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ZDF.de","site":"programme-tv.net","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml"},{"channel":"ZDF.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ZDF.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ZDF.de","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ZDF.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ZDFInfo.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ZDFInfo.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ZDFInfo.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ZDFInfo.de","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ZDFInfo.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ZDFInfo.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ZDFNeo.de","site":"chaines-tv.orange.fr","lang":"fr","url":"https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml"},{"channel":"ZDFNeo.de","site":"hd-plus.de","lang":"de","url":"https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml"},{"channel":"ZDFNeo.de","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ZDFNeo.de","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ZDFNeo.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ZDFNeo.de","site":"tvheute.at","lang":"de","url":"https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml"},{"channel":"ZNBCTV1.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ZNBCTV1.zm","site":"znbc.co.zm","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml"},{"channel":"ZNBCTV2.zm","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ZNBCTV2.zm","site":"znbc.co.zm","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml"},{"channel":"ZNBCTV3.zm","site":"znbc.co.zm","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml"},{"channel":"ZNBCTV4.zm","site":"znbc.co.zm","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml"},{"channel":"ZNSTV.bs","site":"rev.bs","lang":"en","url":"https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml"},{"channel":"ZVTAVS.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"Zadruga1.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Zadruga2.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Zadruga3.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Zadruga4.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"ZagorodnayaZhizn.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Zagorodny.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZagorodnyInternational.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ZambeziMagic.za","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ZapFilmes1.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZapFilmes2.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZapFilmes3.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZapFilmesHD.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZapNovelas.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZapViva.ao","site":"zap.co.ao","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml"},{"channel":"ZdorovoeTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZdravaTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ZdravaTV7Hrvatska.mk","site":"maxtv.hrvatskitelekom.hr","lang":"hr","url":"https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml"},{"channel":"ZdravaTV7Hrvatska.mk","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"ZdravljeTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ZdravljeTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Zee24Ghanta.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Zee24Kalak.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Zee24Taas.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeAction.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeAlem.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ZeeAnmol.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeAnmolCinema.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBangla.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBangla.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZeeBanglaCinema.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBiharJharkhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBioskop.in","site":"mncvision.id","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/mncvision.id.epg.xml"},{"channel":"ZeeBioskop.in","site":"vidio.com","lang":"id","url":"https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml"},{"channel":"ZeeBiskope.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBollywood.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeBusiness.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeCafe.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeChitramandir.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeCinemaAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ZeeCinemaAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ZeeCinemaAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ZeeCinemaAsia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeCinemaAsia.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ZeeCinemaAsia.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ZeeCinemaUK.in","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ZeeClassic.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeKannada.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeKeralam.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeMadhyaPradeshChhattisgarh.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMagic.in","site":"canalplus-afrique.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml"},{"channel":"ZeeMarathi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeMarathi.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZeeNews.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeNews.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ZeeNews.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ZeeOdisha.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeePunjabHaryanaHimachal.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeePunjabi.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeRajasthan.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeSalaam.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeSalaam.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZeeSarthak.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeTVAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ZeeTVAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ZeeTVAfrica.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ZeeTVAsiaPacific.in","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ZeeTVAsiaPacific.in","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ZeeTVIndia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeTVRussia.in","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZeeTVUK.in","site":"meo.pt","lang":"pt","url":"https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml"},{"channel":"ZeeTVUSA.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZeeTalkies.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeTamil.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeTamil.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZeeTamilMalaysia.in","site":"astro.com.my","lang":"ms","url":"https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml"},{"channel":"ZeeTelugu.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeUttarPradeshUttarakhand.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeVajwa.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/ao/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bf/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bi/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bj/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/bw/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cd/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cf/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cg/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ci/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cm/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/cv/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/dj/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/er/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/et/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ga/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gh/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gm/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gn/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gq/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/gw/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ke/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/lr/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ls/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mg/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ml/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mr/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mu/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"pt","url":"https://iptv-org.github.io/epg/guides/mz/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/na/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ne/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/rw/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sc/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sd/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sl/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sn/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/so/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ss/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/st/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/sz/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/td/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/tg/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/ug/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zm/dstv.com.epg.xml"},{"channel":"ZeeWorld.in","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/zw/dstv.com.epg.xml"},{"channel":"ZeeYuva.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeZest.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZeeZest.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZharPtitsa.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZharaTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZhejiangSatelliteTV.cn","site":"nowplayer.now.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml"},{"channel":"ZhejiangSatelliteTV.cn","site":"nowplayer.now.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml"},{"channel":"ZhejiangSatelliteTV.cn","site":"tv.cctv.com","lang":"zh","url":"https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml"},{"channel":"ZhivayaPlaneta.ru","site":"magticom.ge","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml"},{"channel":"ZhivayaPlaneta.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZhivayaPriroda.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Zhivi.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"Zhivi.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ZiggoSportDocu.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZiggoSportGolf.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZiggoSportRacing.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZiggoSportSelect.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZiggoSportTennis.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZiggoSportVoetbal.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZingAsia.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZingHome.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"ZingUK.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml"},{"channel":"ZingUK.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml"},{"channel":"ZingUK.in","site":"canalplus-reunion.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml"},{"channel":"ZingUSA.in","site":"tvtv.us","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ZitataTV.mq","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ZodiakTV.mw","site":"dstv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/mw/dstv.com.epg.xml"},{"channel":"ZonaLatina.cl","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml"},{"channel":"ZooMooBrasil.nz","site":"mi.tv","lang":"pt","url":"https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml"},{"channel":"ZooMooLatinoamerica.nz","site":"directv.com","lang":"en","url":"https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml"},{"channel":"ZooMooLatinoamerica.nz","site":"mi.tv","lang":"es","url":"https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml"},{"channel":"ZooPark.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZooPark.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ZooTV.ru","site":"tv.yandex.ru","lang":"ru","url":"https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml"},{"channel":"ZooTV.ru","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"Zoom.co","site":"gatotv.com","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml"},{"channel":"Zoom.co","site":"siba.com.co","lang":"es","url":"https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml"},{"channel":"Zoom.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"Zoom.ua","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"Zoom.ua","site":"tvgid.ua","lang":"uk","url":"https://iptv-org.github.io/epg/guides/ua/tvgid.ua.epg.xml"},{"channel":"ZoomTV.pl","site":"m.tv.sms.cz","lang":"cz","url":"https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml"},{"channel":"ZoomTV.pl","site":"programtv.onet.pl","lang":"pl","url":"https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-caraibes.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml"},{"channel":"ZoukTV.mq","site":"canalplus-haiti.com","lang":"fr","url":"https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml"},{"channel":"ZuTV.ro","site":"programetv.ro","lang":"ro","url":"https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml"},{"channel":"ZuidWestTV.nl","site":"delta.nl","lang":"nl","url":"https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml"},{"channel":"ZvezdaTV.rs","site":"mtel.ba","lang":"bs","url":"https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml"},{"channel":"ZvezdaTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"Zwei2MusicTV.de","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"ePosavjeTV.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"},{"channel":"eduTV.rs","site":"mts.rs","lang":"sr","url":"https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml"},{"channel":"flix.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"pictures.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"priveHD.in","site":"dishtv.in","lang":"en","url":"https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml"},{"channel":"rrotv.ch","site":"tv.blue.ch","lang":"de","url":"https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml"},{"channel":"vZIVOsi.si","site":"tv2go.t-2.net","lang":"sl","url":"https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml"}] \ No newline at end of file diff --git a/tests/__data__/input/data/languages.json b/tests/__data__/input/data/languages.json new file mode 100644 index 000000000..6b2570a79 --- /dev/null +++ b/tests/__data__/input/data/languages.json @@ -0,0 +1 @@ +[{"name":"Ghotuo","code":"aaa"},{"name":"Alumu-Tesu","code":"aab"},{"name":"Ari","code":"aac"},{"name":"Amal","code":"aad"},{"name":"Arbëreshë Albanian","code":"aae"},{"name":"Aranadan","code":"aaf"},{"name":"Ambrak","code":"aag"},{"name":"Abu' Arapesh","code":"aah"},{"name":"Arifama-Miniafia","code":"aai"},{"name":"Ankave","code":"aak"},{"name":"Afade","code":"aal"},{"name":"Anambé","code":"aan"},{"name":"Algerian Saharan Arabic","code":"aao"},{"name":"Pará Arára","code":"aap"},{"name":"Eastern Abnaki","code":"aaq"},{"name":"Afar","code":"aar"},{"name":"Aasáx","code":"aas"},{"name":"Arvanitika Albanian","code":"aat"},{"name":"Abau","code":"aau"},{"name":"Solong","code":"aaw"},{"name":"Mandobo Atas","code":"aax"},{"name":"Amarasi","code":"aaz"},{"name":"Abé","code":"aba"},{"name":"Bankon","code":"abb"},{"name":"Ambala Ayta","code":"abc"},{"name":"Manide","code":"abd"},{"name":"Western Abnaki","code":"abe"},{"name":"Abai Sungai","code":"abf"},{"name":"Abaga","code":"abg"},{"name":"Tajiki Arabic","code":"abh"},{"name":"Abidji","code":"abi"},{"name":"Aka-Bea","code":"abj"},{"name":"Abkhazian","code":"abk"},{"name":"Lampung Nyo","code":"abl"},{"name":"Abanyom","code":"abm"},{"name":"Abua","code":"abn"},{"name":"Abon","code":"abo"},{"name":"Abellen Ayta","code":"abp"},{"name":"Abaza","code":"abq"},{"name":"Abron","code":"abr"},{"name":"Ambonese Malay","code":"abs"},{"name":"Ambulas","code":"abt"},{"name":"Abure","code":"abu"},{"name":"Baharna Arabic","code":"abv"},{"name":"Pal","code":"abw"},{"name":"Inabaknon","code":"abx"},{"name":"Aneme Wake","code":"aby"},{"name":"Abui","code":"abz"},{"name":"Achagua","code":"aca"},{"name":"Áncá","code":"acb"},{"name":"Gikyode","code":"acd"},{"name":"Achinese","code":"ace"},{"name":"Saint Lucian Creole French","code":"acf"},{"name":"Acoli","code":"ach"},{"name":"Aka-Cari","code":"aci"},{"name":"Aka-Kora","code":"ack"},{"name":"Akar-Bale","code":"acl"},{"name":"Mesopotamian Arabic","code":"acm"},{"name":"Achang","code":"acn"},{"name":"Eastern Acipa","code":"acp"},{"name":"Ta'izzi-Adeni Arabic","code":"acq"},{"name":"Achi","code":"acr"},{"name":"Acroá","code":"acs"},{"name":"Achterhoeks","code":"act"},{"name":"Achuar-Shiwiar","code":"acu"},{"name":"Achumawi","code":"acv"},{"name":"Hijazi Arabic","code":"acw"},{"name":"Omani Arabic","code":"acx"},{"name":"Cypriot Arabic","code":"acy"},{"name":"Acheron","code":"acz"},{"name":"Adangme","code":"ada"},{"name":"Atauran","code":"adb"},{"name":"Dzodinka","code":"add"},{"name":"Lidzonka","code":"add"},{"name":"Adele","code":"ade"},{"name":"Dhofari Arabic","code":"adf"},{"name":"Andegerebinha","code":"adg"},{"name":"Adhola","code":"adh"},{"name":"Adi","code":"adi"},{"name":"Adioukrou","code":"adj"},{"name":"Galo","code":"adl"},{"name":"Adang","code":"adn"},{"name":"Abu","code":"ado"},{"name":"Adangbe","code":"adq"},{"name":"Adonara","code":"adr"},{"name":"Adamorobe Sign Language","code":"ads"},{"name":"Adnyamathanha","code":"adt"},{"name":"Aduge","code":"adu"},{"name":"Amundava","code":"adw"},{"name":"Amdo Tibetan","code":"adx"},{"name":"Adygei","code":"ady"},{"name":"Adyghe","code":"ady"},{"name":"Adzera","code":"adz"},{"name":"Areba","code":"aea"},{"name":"Tunisian Arabic","code":"aeb"},{"name":"Saidi Arabic","code":"aec"},{"name":"Argentine Sign Language","code":"aed"},{"name":"Northeast Pashai","code":"aee"},{"name":"Northeast Pashayi","code":"aee"},{"name":"Haeke","code":"aek"},{"name":"Ambele","code":"ael"},{"name":"Arem","code":"aem"},{"name":"Armenian Sign Language","code":"aen"},{"name":"Aer","code":"aeq"},{"name":"Eastern Arrernte","code":"aer"},{"name":"Alsea","code":"aes"},{"name":"Akeu","code":"aeu"},{"name":"Ambakich","code":"aew"},{"name":"Amele","code":"aey"},{"name":"Aeka","code":"aez"},{"name":"Gulf Arabic","code":"afb"},{"name":"Andai","code":"afd"},{"name":"Putukwam","code":"afe"},{"name":"Afghan Sign Language","code":"afg"},{"name":"Afrihili","code":"afh"},{"name":"Akrukay","code":"afi"},{"name":"Chini","code":"afi"},{"name":"Nanubae","code":"afk"},{"name":"Defaka","code":"afn"},{"name":"Eloyi","code":"afo"},{"name":"Tapei","code":"afp"},{"name":"Afrikaans","code":"afr"},{"name":"Afro-Seminole Creole","code":"afs"},{"name":"Afitti","code":"aft"},{"name":"Awutu","code":"afu"},{"name":"Obokuitai","code":"afz"},{"name":"Aguano","code":"aga"},{"name":"Legbo","code":"agb"},{"name":"Agatu","code":"agc"},{"name":"Agarabi","code":"agd"},{"name":"Angal","code":"age"},{"name":"Arguni","code":"agf"},{"name":"Angor","code":"agg"},{"name":"Ngelima","code":"agh"},{"name":"Agariya","code":"agi"},{"name":"Argobba","code":"agj"},{"name":"Isarog Agta","code":"agk"},{"name":"Fembe","code":"agl"},{"name":"Angaataha","code":"agm"},{"name":"Agutaynen","code":"agn"},{"name":"Tainae","code":"ago"},{"name":"Aghem","code":"agq"},{"name":"Aguaruna","code":"agr"},{"name":"Esimbi","code":"ags"},{"name":"Central Cagayan Agta","code":"agt"},{"name":"Aguacateco","code":"agu"},{"name":"Remontado Dumagat","code":"agv"},{"name":"Kahua","code":"agw"},{"name":"Aghul","code":"agx"},{"name":"Southern Alta","code":"agy"},{"name":"Mt. Iriga Agta","code":"agz"},{"name":"Ahanta","code":"aha"},{"name":"Axamb","code":"ahb"},{"name":"Qimant","code":"ahg"},{"name":"Aghu","code":"ahh"},{"name":"Tiagbamrin Aizi","code":"ahi"},{"name":"Akha","code":"ahk"},{"name":"Igo","code":"ahl"},{"name":"Mobumrin Aizi","code":"ahm"},{"name":"Àhàn","code":"ahn"},{"name":"Ahom","code":"aho"},{"name":"Aproumu Aizi","code":"ahp"},{"name":"Ahirani","code":"ahr"},{"name":"Ashe","code":"ahs"},{"name":"Ahtena","code":"aht"},{"name":"Arosi","code":"aia"},{"name":"Ainu (China)","code":"aib"},{"name":"Ainbai","code":"aic"},{"name":"Alngith","code":"aid"},{"name":"Amara","code":"aie"},{"name":"Agi","code":"aif"},{"name":"Antigua and Barbuda Creole English","code":"aig"},{"name":"Ai-Cham","code":"aih"},{"name":"Assyrian Neo-Aramaic","code":"aii"},{"name":"Lishanid Noshan","code":"aij"},{"name":"Ake","code":"aik"},{"name":"Aimele","code":"ail"},{"name":"Aimol","code":"aim"},{"name":"Ainu (Japan)","code":"ain"},{"name":"Aiton","code":"aio"},{"name":"Burumakok","code":"aip"},{"name":"Aimaq","code":"aiq"},{"name":"Airoran","code":"air"},{"name":"Arikem","code":"ait"},{"name":"Aari","code":"aiw"},{"name":"Aighon","code":"aix"},{"name":"Ali","code":"aiy"},{"name":"Aja (South Sudan)","code":"aja"},{"name":"Aja (Benin)","code":"ajg"},{"name":"Ajië","code":"aji"},{"name":"Andajin","code":"ajn"},{"name":"South Levantine Arabic","code":"ajp"},{"name":"Judeo-Tunisian Arabic","code":"ajt"},{"name":"Judeo-Moroccan Arabic","code":"aju"},{"name":"Ajawa","code":"ajw"},{"name":"Amri Karbi","code":"ajz"},{"name":"Akan","code":"aka"},{"name":"Batak Angkola","code":"akb"},{"name":"Mpur","code":"akc"},{"name":"Ukpet-Ehom","code":"akd"},{"name":"Akawaio","code":"ake"},{"name":"Akpa","code":"akf"},{"name":"Anakalangu","code":"akg"},{"name":"Angal Heneng","code":"akh"},{"name":"Aiome","code":"aki"},{"name":"Aka-Jeru","code":"akj"},{"name":"Akkadian","code":"akk"},{"name":"Aklanon","code":"akl"},{"name":"Aka-Bo","code":"akm"},{"name":"Akurio","code":"ako"},{"name":"Siwu","code":"akp"},{"name":"Ak","code":"akq"},{"name":"Araki","code":"akr"},{"name":"Akaselem","code":"aks"},{"name":"Akolet","code":"akt"},{"name":"Akum","code":"aku"},{"name":"Akhvakh","code":"akv"},{"name":"Akwa","code":"akw"},{"name":"Aka-Kede","code":"akx"},{"name":"Aka-Kol","code":"aky"},{"name":"Alabama","code":"akz"},{"name":"Alago","code":"ala"},{"name":"Qawasqar","code":"alc"},{"name":"Alladian","code":"ald"},{"name":"Aleut","code":"ale"},{"name":"Alege","code":"alf"},{"name":"Alawa","code":"alh"},{"name":"Amaimon","code":"ali"},{"name":"Alangan","code":"alj"},{"name":"Alak","code":"alk"},{"name":"Allar","code":"all"},{"name":"Amblong","code":"alm"},{"name":"Gheg Albanian","code":"aln"},{"name":"Larike-Wakasihu","code":"alo"},{"name":"Alune","code":"alp"},{"name":"Algonquin","code":"alq"},{"name":"Alutor","code":"alr"},{"name":"Tosk Albanian","code":"als"},{"name":"Southern Altai","code":"alt"},{"name":"'Are'are","code":"alu"},{"name":"Alaba-K’abeena","code":"alw"},{"name":"Wanbasana","code":"alw"},{"name":"Amol","code":"alx"},{"name":"Alyawarr","code":"aly"},{"name":"Alur","code":"alz"},{"name":"Amanayé","code":"ama"},{"name":"Ambo","code":"amb"},{"name":"Amahuaca","code":"amc"},{"name":"Yanesha'","code":"ame"},{"name":"Hamer-Banna","code":"amf"},{"name":"Amurdak","code":"amg"},{"name":"Amharic","code":"amh"},{"name":"Amis","code":"ami"},{"name":"Amdang","code":"amj"},{"name":"Ambai","code":"amk"},{"name":"War-Jaintia","code":"aml"},{"name":"Ama (Papua New Guinea)","code":"amm"},{"name":"Amanab","code":"amn"},{"name":"Amo","code":"amo"},{"name":"Alamblak","code":"amp"},{"name":"Amahai","code":"amq"},{"name":"Amarakaeri","code":"amr"},{"name":"Southern Amami-Oshima","code":"ams"},{"name":"Amto","code":"amt"},{"name":"Guerrero Amuzgo","code":"amu"},{"name":"Ambelau","code":"amv"},{"name":"Western Neo-Aramaic","code":"amw"},{"name":"Anmatyerre","code":"amx"},{"name":"Ami","code":"amy"},{"name":"Atampaya","code":"amz"},{"name":"Andaqui","code":"ana"},{"name":"Andoa","code":"anb"},{"name":"Ngas","code":"anc"},{"name":"Ansus","code":"and"},{"name":"Xârâcùù","code":"ane"},{"name":"Animere","code":"anf"},{"name":"Old English (ca. 450-1100)","code":"ang"},{"name":"Nend","code":"anh"},{"name":"Andi","code":"ani"},{"name":"Anor","code":"anj"},{"name":"Goemai","code":"ank"},{"name":"Anu-Hkongso Chin","code":"anl"},{"name":"Anal","code":"anm"},{"name":"Obolo","code":"ann"},{"name":"Andoque","code":"ano"},{"name":"Angika","code":"anp"},{"name":"Jarawa (India)","code":"anq"},{"name":"Andh","code":"anr"},{"name":"Anserma","code":"ans"},{"name":"Antakarinya","code":"ant"},{"name":"Antikarinya","code":"ant"},{"name":"Anuak","code":"anu"},{"name":"Denya","code":"anv"},{"name":"Anaang","code":"anw"},{"name":"Andra-Hus","code":"anx"},{"name":"Anyin","code":"any"},{"name":"Anem","code":"anz"},{"name":"Angolar","code":"aoa"},{"name":"Abom","code":"aob"},{"name":"Pemon","code":"aoc"},{"name":"Andarum","code":"aod"},{"name":"Angal Enen","code":"aoe"},{"name":"Bragat","code":"aof"},{"name":"Angoram","code":"aog"},{"name":"Anindilyakwa","code":"aoi"},{"name":"Mufian","code":"aoj"},{"name":"Arhö","code":"aok"},{"name":"Alor","code":"aol"},{"name":"Ömie","code":"aom"},{"name":"Bumbita Arapesh","code":"aon"},{"name":"Aore","code":"aor"},{"name":"Taikat","code":"aos"},{"name":"A'tong","code":"aot"},{"name":"Atong (India)","code":"aot"},{"name":"A'ou","code":"aou"},{"name":"Atorada","code":"aox"},{"name":"Uab Meto","code":"aoz"},{"name":"Sa'a","code":"apb"},{"name":"North Levantine Arabic","code":"apc"},{"name":"Sudanese Arabic","code":"apd"},{"name":"Bukiyip","code":"ape"},{"name":"Pahanan Agta","code":"apf"},{"name":"Ampanang","code":"apg"},{"name":"Athpariya","code":"aph"},{"name":"Apiaká","code":"api"},{"name":"Jicarilla Apache","code":"apj"},{"name":"Kiowa Apache","code":"apk"},{"name":"Lipan Apache","code":"apl"},{"name":"Mescalero-Chiricahua Apache","code":"apm"},{"name":"Apinayé","code":"apn"},{"name":"Ambul","code":"apo"},{"name":"Apma","code":"app"},{"name":"A-Pucikwar","code":"apq"},{"name":"Arop-Lokep","code":"apr"},{"name":"Arop-Sissano","code":"aps"},{"name":"Apatani","code":"apt"},{"name":"Apurinã","code":"apu"},{"name":"Alapmunte","code":"apv"},{"name":"Western Apache","code":"apw"},{"name":"Aputai","code":"apx"},{"name":"Apalaí","code":"apy"},{"name":"Safeyoka","code":"apz"},{"name":"Archi","code":"aqc"},{"name":"Ampari Dogon","code":"aqd"},{"name":"Arigidi","code":"aqg"},{"name":"Aninka","code":"aqk"},{"name":"Atohwaim","code":"aqm"},{"name":"Northern Alta","code":"aqn"},{"name":"Atakapa","code":"aqp"},{"name":"Arhâ","code":"aqr"},{"name":"Angaité","code":"aqt"},{"name":"Akuntsu","code":"aqz"},{"name":"Arabic","code":"ara"},{"name":"Standard Arabic","code":"arb"},{"name":"Imperial Aramaic (700-300 BCE)","code":"arc"},{"name":"Official Aramaic (700-300 BCE)","code":"arc"},{"name":"Arabana","code":"ard"},{"name":"Western Arrarnta","code":"are"},{"name":"Aragonese","code":"arg"},{"name":"Arhuaco","code":"arh"},{"name":"Arikara","code":"ari"},{"name":"Arapaso","code":"arj"},{"name":"Arikapú","code":"ark"},{"name":"Arabela","code":"arl"},{"name":"Mapuche","code":"arn"},{"name":"Mapudungun","code":"arn"},{"name":"Araona","code":"aro"},{"name":"Arapaho","code":"arp"},{"name":"Algerian Arabic","code":"arq"},{"name":"Karo (Brazil)","code":"arr"},{"name":"Najdi Arabic","code":"ars"},{"name":"Arawá","code":"aru"},{"name":"Aruá (Amazonas State)","code":"aru"},{"name":"Arbore","code":"arv"},{"name":"Arawak","code":"arw"},{"name":"Aruá (Rodonia State)","code":"arx"},{"name":"Moroccan Arabic","code":"ary"},{"name":"Egyptian Arabic","code":"arz"},{"name":"Asu (Tanzania)","code":"asa"},{"name":"Assiniboine","code":"asb"},{"name":"Casuarina Coast Asmat","code":"asc"},{"name":"American Sign Language","code":"ase"},{"name":"Auslan","code":"asf"},{"name":"Australian Sign Language","code":"asf"},{"name":"Cishingini","code":"asg"},{"name":"Abishira","code":"ash"},{"name":"Buruwai","code":"asi"},{"name":"Sari","code":"asj"},{"name":"Ashkun","code":"ask"},{"name":"Asilulu","code":"asl"},{"name":"Assamese","code":"asm"},{"name":"Xingú Asuriní","code":"asn"},{"name":"Dano","code":"aso"},{"name":"Algerian Sign Language","code":"asp"},{"name":"Austrian Sign Language","code":"asq"},{"name":"Asuri","code":"asr"},{"name":"Ipulo","code":"ass"},{"name":"Asturian","code":"ast"},{"name":"Asturleonese","code":"ast"},{"name":"Bable","code":"ast"},{"name":"Leonese","code":"ast"},{"name":"Tocantins Asurini","code":"asu"},{"name":"Asoa","code":"asv"},{"name":"Australian Aborigines Sign Language","code":"asw"},{"name":"Muratayak","code":"asx"},{"name":"Yaosakor Asmat","code":"asy"},{"name":"As","code":"asz"},{"name":"Pele-Ata","code":"ata"},{"name":"Zaiwa","code":"atb"},{"name":"Atsahuaca","code":"atc"},{"name":"Ata Manobo","code":"atd"},{"name":"Atemble","code":"ate"},{"name":"Ivbie North-Okpela-Arhe","code":"atg"},{"name":"Attié","code":"ati"},{"name":"Atikamekw","code":"atj"},{"name":"Ati","code":"atk"},{"name":"Mt. Iraya Agta","code":"atl"},{"name":"Ata","code":"atm"},{"name":"Ashtiani","code":"atn"},{"name":"Atong (Cameroon)","code":"ato"},{"name":"Pudtol Atta","code":"atp"},{"name":"Aralle-Tabulahan","code":"atq"},{"name":"Waimiri-Atroari","code":"atr"},{"name":"Gros Ventre","code":"ats"},{"name":"Pamplona Atta","code":"att"},{"name":"Reel","code":"atu"},{"name":"Northern Altai","code":"atv"},{"name":"Atsugewi","code":"atw"},{"name":"Arutani","code":"atx"},{"name":"Aneityum","code":"aty"},{"name":"Arta","code":"atz"},{"name":"Asumboa","code":"aua"},{"name":"Alugu","code":"aub"},{"name":"Waorani","code":"auc"},{"name":"Anuta","code":"aud"},{"name":"Aguna","code":"aug"},{"name":"Aushi","code":"auh"},{"name":"Anuki","code":"aui"},{"name":"Awjilah","code":"auj"},{"name":"Heyo","code":"auk"},{"name":"Aulua","code":"aul"},{"name":"Asu (Nigeria)","code":"aum"},{"name":"Molmo One","code":"aun"},{"name":"Auyokawa","code":"auo"},{"name":"Makayam","code":"aup"},{"name":"Anus","code":"auq"},{"name":"Korur","code":"auq"},{"name":"Aruek","code":"aur"},{"name":"Austral","code":"aut"},{"name":"Auye","code":"auu"},{"name":"Awyi","code":"auw"},{"name":"Aurá","code":"aux"},{"name":"Awiyaana","code":"auy"},{"name":"Uzbeki Arabic","code":"auz"},{"name":"Avaric","code":"ava"},{"name":"Avau","code":"avb"},{"name":"Alviri-Vidari","code":"avd"},{"name":"Avestan","code":"ave"},{"name":"Avikam","code":"avi"},{"name":"Kotava","code":"avk"},{"name":"Eastern Egyptian Bedawi Arabic","code":"avl"},{"name":"Angkamuthi","code":"avm"},{"name":"Avatime","code":"avn"},{"name":"Agavotaguerra","code":"avo"},{"name":"Aushiri","code":"avs"},{"name":"Au","code":"avt"},{"name":"Avokaya","code":"avu"},{"name":"Avá-Canoeiro","code":"avv"},{"name":"Awadhi","code":"awa"},{"name":"Awa (Papua New Guinea)","code":"awb"},{"name":"Cicipu","code":"awc"},{"name":"Awetí","code":"awe"},{"name":"Anguthimri","code":"awg"},{"name":"Awbono","code":"awh"},{"name":"Aekyom","code":"awi"},{"name":"Awabakal","code":"awk"},{"name":"Arawum","code":"awm"},{"name":"Awngi","code":"awn"},{"name":"Awak","code":"awo"},{"name":"Awera","code":"awr"},{"name":"South Awyu","code":"aws"},{"name":"Araweté","code":"awt"},{"name":"Central Awyu","code":"awu"},{"name":"Jair Awyu","code":"awv"},{"name":"Awun","code":"aww"},{"name":"Awara","code":"awx"},{"name":"Edera Awyu","code":"awy"},{"name":"Abipon","code":"axb"},{"name":"Ayerrerenge","code":"axe"},{"name":"Mato Grosso Arára","code":"axg"},{"name":"Yaka (Central African Republic)","code":"axk"},{"name":"Lower Southern Aranda","code":"axl"},{"name":"Middle Armenian","code":"axm"},{"name":"Xârâgurè","code":"axx"},{"name":"Awar","code":"aya"},{"name":"Ayizo Gbe","code":"ayb"},{"name":"Southern Aymara","code":"ayc"},{"name":"Ayabadhu","code":"ayd"},{"name":"Ayere","code":"aye"},{"name":"Ginyanga","code":"ayg"},{"name":"Hadrami Arabic","code":"ayh"},{"name":"Leyigha","code":"ayi"},{"name":"Akuku","code":"ayk"},{"name":"Libyan Arabic","code":"ayl"},{"name":"Aymara","code":"aym"},{"name":"Sanaani Arabic","code":"ayn"},{"name":"Ayoreo","code":"ayo"},{"name":"North Mesopotamian Arabic","code":"ayp"},{"name":"Ayi (Papua New Guinea)","code":"ayq"},{"name":"Central Aymara","code":"ayr"},{"name":"Sorsogon Ayta","code":"ays"},{"name":"Magbukun Ayta","code":"ayt"},{"name":"Ayu","code":"ayu"},{"name":"Mai Brat","code":"ayz"},{"name":"Azha","code":"aza"},{"name":"South Azerbaijani","code":"azb"},{"name":"Eastern Durango Nahuatl","code":"azd"},{"name":"Azerbaijani","code":"aze"},{"name":"San Pedro Amuzgos Amuzgo","code":"azg"},{"name":"North Azerbaijani","code":"azj"},{"name":"Ipalapa Amuzgo","code":"azm"},{"name":"Western Durango Nahuatl","code":"azn"},{"name":"Awing","code":"azo"},{"name":"Faire Atta","code":"azt"},{"name":"Highland Puebla Nahuatl","code":"azz"},{"name":"Babatana","code":"baa"},{"name":"Bainouk-Gunyuño","code":"bab"},{"name":"Badui","code":"bac"},{"name":"Baré","code":"bae"},{"name":"Nubaca","code":"baf"},{"name":"Tuki","code":"bag"},{"name":"Bahamas Creole English","code":"bah"},{"name":"Barakai","code":"baj"},{"name":"Bashkir","code":"bak"},{"name":"Baluchi","code":"bal"},{"name":"Bambara","code":"bam"},{"name":"Balinese","code":"ban"},{"name":"Waimaha","code":"bao"},{"name":"Bantawa","code":"bap"},{"name":"Bavarian","code":"bar"},{"name":"Basa (Cameroon)","code":"bas"},{"name":"Bada (Nigeria)","code":"bau"},{"name":"Vengo","code":"bav"},{"name":"Bambili-Bambui","code":"baw"},{"name":"Bamun","code":"bax"},{"name":"Batuley","code":"bay"},{"name":"Baatonum","code":"bba"},{"name":"Barai","code":"bbb"},{"name":"Batak Toba","code":"bbc"},{"name":"Bau","code":"bbd"},{"name":"Bangba","code":"bbe"},{"name":"Baibai","code":"bbf"},{"name":"Barama","code":"bbg"},{"name":"Bugan","code":"bbh"},{"name":"Barombi","code":"bbi"},{"name":"Ghomálá'","code":"bbj"},{"name":"Babanki","code":"bbk"},{"name":"Bats","code":"bbl"},{"name":"Babango","code":"bbm"},{"name":"Uneapa","code":"bbn"},{"name":"Konabéré","code":"bbo"},{"name":"Northern Bobo Madaré","code":"bbo"},{"name":"West Central Banda","code":"bbp"},{"name":"Bamali","code":"bbq"},{"name":"Girawa","code":"bbr"},{"name":"Bakpinka","code":"bbs"},{"name":"Mburku","code":"bbt"},{"name":"Kulung (Nigeria)","code":"bbu"},{"name":"Karnai","code":"bbv"},{"name":"Baba","code":"bbw"},{"name":"Bubia","code":"bbx"},{"name":"Befang","code":"bby"},{"name":"Central Bai","code":"bca"},{"name":"Bainouk-Samik","code":"bcb"},{"name":"Southern Balochi","code":"bcc"},{"name":"North Babar","code":"bcd"},{"name":"Bamenyam","code":"bce"},{"name":"Bamu","code":"bcf"},{"name":"Baga Pokur","code":"bcg"},{"name":"Bariai","code":"bch"},{"name":"Baoulé","code":"bci"},{"name":"Bardi","code":"bcj"},{"name":"Bunuba","code":"bck"},{"name":"Central Bikol","code":"bcl"},{"name":"Bannoni","code":"bcm"},{"name":"Bali (Nigeria)","code":"bcn"},{"name":"Kaluli","code":"bco"},{"name":"Bali (Democratic Republic of Congo)","code":"bcp"},{"name":"Bench","code":"bcq"},{"name":"Babine","code":"bcr"},{"name":"Kohumono","code":"bcs"},{"name":"Bendi","code":"bct"},{"name":"Awad Bing","code":"bcu"},{"name":"Shoo-Minda-Nye","code":"bcv"},{"name":"Bana","code":"bcw"},{"name":"Bacama","code":"bcy"},{"name":"Bainouk-Gunyaamolo","code":"bcz"},{"name":"Bayot","code":"bda"},{"name":"Basap","code":"bdb"},{"name":"Emberá-Baudó","code":"bdc"},{"name":"Bunama","code":"bdd"},{"name":"Bade","code":"bde"},{"name":"Biage","code":"bdf"},{"name":"Bonggi","code":"bdg"},{"name":"Baka (South Sudan)","code":"bdh"},{"name":"Burun","code":"bdi"},{"name":"Bai","code":"bdj"},{"name":"Bai (South Sudan)","code":"bdj"},{"name":"Budukh","code":"bdk"},{"name":"Indonesian Bajau","code":"bdl"},{"name":"Buduma","code":"bdm"},{"name":"Baldemu","code":"bdn"},{"name":"Morom","code":"bdo"},{"name":"Bende","code":"bdp"},{"name":"Bahnar","code":"bdq"},{"name":"West Coast Bajau","code":"bdr"},{"name":"Burunge","code":"bds"},{"name":"Bokoto","code":"bdt"},{"name":"Oroko","code":"bdu"},{"name":"Bodo Parja","code":"bdv"},{"name":"Baham","code":"bdw"},{"name":"Budong-Budong","code":"bdx"},{"name":"Bandjalang","code":"bdy"},{"name":"Badeshi","code":"bdz"},{"name":"Beaver","code":"bea"},{"name":"Bebele","code":"beb"},{"name":"Iceve-Maci","code":"bec"},{"name":"Bedoanas","code":"bed"},{"name":"Byangsi","code":"bee"},{"name":"Benabena","code":"bef"},{"name":"Belait","code":"beg"},{"name":"Biali","code":"beh"},{"name":"Bekati'","code":"bei"},{"name":"Bedawiyet","code":"bej"},{"name":"Beja","code":"bej"},{"name":"Bebeli","code":"bek"},{"name":"Belarusian","code":"bel"},{"name":"Bemba (Zambia)","code":"bem"},{"name":"Bengali","code":"ben"},{"name":"Beami","code":"beo"},{"name":"Besoa","code":"bep"},{"name":"Beembe","code":"beq"},{"name":"Besme","code":"bes"},{"name":"Guiberoua Béte","code":"bet"},{"name":"Blagar","code":"beu"},{"name":"Daloa Bété","code":"bev"},{"name":"Betawi","code":"bew"},{"name":"Jur Modo","code":"bex"},{"name":"Beli (Papua New Guinea)","code":"bey"},{"name":"Bena (Tanzania)","code":"bez"},{"name":"Bari","code":"bfa"},{"name":"Pauri Bareli","code":"bfb"},{"name":"Northern Bai","code":"bfc"},{"name":"Panyi Bai","code":"bfc"},{"name":"Bafut","code":"bfd"},{"name":"Betaf","code":"bfe"},{"name":"Tena","code":"bfe"},{"name":"Bofi","code":"bff"},{"name":"Busang Kayan","code":"bfg"},{"name":"Blafe","code":"bfh"},{"name":"British Sign Language","code":"bfi"},{"name":"Bafanji","code":"bfj"},{"name":"Ban Khor Sign Language","code":"bfk"},{"name":"Banda-Ndélé","code":"bfl"},{"name":"Mmen","code":"bfm"},{"name":"Bunak","code":"bfn"},{"name":"Malba Birifor","code":"bfo"},{"name":"Beba","code":"bfp"},{"name":"Badaga","code":"bfq"},{"name":"Bazigar","code":"bfr"},{"name":"Southern Bai","code":"bfs"},{"name":"Balti","code":"bft"},{"name":"Gahri","code":"bfu"},{"name":"Bondo","code":"bfw"},{"name":"Bantayanon","code":"bfx"},{"name":"Bagheli","code":"bfy"},{"name":"Mahasu Pahari","code":"bfz"},{"name":"Gwamhi-Wuri","code":"bga"},{"name":"Bobongko","code":"bgb"},{"name":"Haryanvi","code":"bgc"},{"name":"Rathwi Bareli","code":"bgd"},{"name":"Bauria","code":"bge"},{"name":"Bangandu","code":"bgf"},{"name":"Bugun","code":"bgg"},{"name":"Giangan","code":"bgi"},{"name":"Bangolan","code":"bgj"},{"name":"Bit","code":"bgk"},{"name":"Buxinhua","code":"bgk"},{"name":"Bo (Laos)","code":"bgl"},{"name":"Western Balochi","code":"bgn"},{"name":"Baga Koga","code":"bgo"},{"name":"Eastern Balochi","code":"bgp"},{"name":"Bagri","code":"bgq"},{"name":"Bawm Chin","code":"bgr"},{"name":"Tagabawa","code":"bgs"},{"name":"Bughotu","code":"bgt"},{"name":"Mbongno","code":"bgu"},{"name":"Warkay-Bipim","code":"bgv"},{"name":"Bhatri","code":"bgw"},{"name":"Balkan Gagauz Turkish","code":"bgx"},{"name":"Benggoi","code":"bgy"},{"name":"Banggai","code":"bgz"},{"name":"Bharia","code":"bha"},{"name":"Bhili","code":"bhb"},{"name":"Biga","code":"bhc"},{"name":"Bhadrawahi","code":"bhd"},{"name":"Bhaya","code":"bhe"},{"name":"Odiai","code":"bhf"},{"name":"Binandere","code":"bhg"},{"name":"Bukharic","code":"bhh"},{"name":"Bhilali","code":"bhi"},{"name":"Bahing","code":"bhj"},{"name":"Bimin","code":"bhl"},{"name":"Bathari","code":"bhm"},{"name":"Bohtan Neo-Aramaic","code":"bhn"},{"name":"Bhojpuri","code":"bho"},{"name":"Bima","code":"bhp"},{"name":"Tukang Besi South","code":"bhq"},{"name":"Bara Malagasy","code":"bhr"},{"name":"Buwal","code":"bhs"},{"name":"Bhattiyali","code":"bht"},{"name":"Bhunjia","code":"bhu"},{"name":"Bahau","code":"bhv"},{"name":"Biak","code":"bhw"},{"name":"Bhalay","code":"bhx"},{"name":"Bhele","code":"bhy"},{"name":"Bada (Indonesia)","code":"bhz"},{"name":"Badimaya","code":"bia"},{"name":"Bisa","code":"bib"},{"name":"Bissa","code":"bib"},{"name":"Bidiyo","code":"bid"},{"name":"Bepour","code":"bie"},{"name":"Biafada","code":"bif"},{"name":"Biangai","code":"big"},{"name":"Bikol","code":"bik"},{"name":"Bile","code":"bil"},{"name":"Bimoba","code":"bim"},{"name":"Bini","code":"bin"},{"name":"Edo","code":"bin"},{"name":"Nai","code":"bio"},{"name":"Bila","code":"bip"},{"name":"Bipi","code":"biq"},{"name":"Bisorio","code":"bir"},{"name":"Bislama","code":"bis"},{"name":"Berinomo","code":"bit"},{"name":"Biete","code":"biu"},{"name":"Southern Birifor","code":"biv"},{"name":"Kol (Cameroon)","code":"biw"},{"name":"Bijori","code":"bix"},{"name":"Birhor","code":"biy"},{"name":"Baloi","code":"biz"},{"name":"Budza","code":"bja"},{"name":"Banggarla","code":"bjb"},{"name":"Bariji","code":"bjc"},{"name":"Biao-Jiao Mien","code":"bje"},{"name":"Barzani Jewish Neo-Aramaic","code":"bjf"},{"name":"Bidyogo","code":"bjg"},{"name":"Bahinemo","code":"bjh"},{"name":"Burji","code":"bji"},{"name":"Kanauji","code":"bjj"},{"name":"Barok","code":"bjk"},{"name":"Bulu (Papua New Guinea)","code":"bjl"},{"name":"Bajelani","code":"bjm"},{"name":"Banjar","code":"bjn"},{"name":"Mid-Southern Banda","code":"bjo"},{"name":"Fanamaket","code":"bjp"},{"name":"Binumarien","code":"bjr"},{"name":"Bajan","code":"bjs"},{"name":"Balanta-Ganja","code":"bjt"},{"name":"Busuu","code":"bju"},{"name":"Bedjond","code":"bjv"},{"name":"Bakwé","code":"bjw"},{"name":"Banao Itneg","code":"bjx"},{"name":"Bayali","code":"bjy"},{"name":"Baruga","code":"bjz"},{"name":"Kyak","code":"bka"},{"name":"Baka (Cameroon)","code":"bkc"},{"name":"Binukid","code":"bkd"},{"name":"Talaandig","code":"bkd"},{"name":"Beeke","code":"bkf"},{"name":"Buraka","code":"bkg"},{"name":"Bakoko","code":"bkh"},{"name":"Baki","code":"bki"},{"name":"Pande","code":"bkj"},{"name":"Brokskat","code":"bkk"},{"name":"Berik","code":"bkl"},{"name":"Kom (Cameroon)","code":"bkm"},{"name":"Bukitan","code":"bkn"},{"name":"Kwa'","code":"bko"},{"name":"Boko (Democratic Republic of Congo)","code":"bkp"},{"name":"Bakairí","code":"bkq"},{"name":"Bakumpai","code":"bkr"},{"name":"Northern Sorsoganon","code":"bks"},{"name":"Boloki","code":"bkt"},{"name":"Buhid","code":"bku"},{"name":"Bekwarra","code":"bkv"},{"name":"Bekwel","code":"bkw"},{"name":"Baikeno","code":"bkx"},{"name":"Bokyi","code":"bky"},{"name":"Bungku","code":"bkz"},{"name":"Siksika","code":"bla"},{"name":"Bilua","code":"blb"},{"name":"Bella Coola","code":"blc"},{"name":"Bolango","code":"bld"},{"name":"Balanta-Kentohe","code":"ble"},{"name":"Buol","code":"blf"},{"name":"Kuwaa","code":"blh"},{"name":"Bolia","code":"bli"},{"name":"Bolongan","code":"blj"},{"name":"Pa'O","code":"blk"},{"name":"Pa'o Karen","code":"blk"},{"name":"Biloxi","code":"bll"},{"name":"Beli (South Sudan)","code":"blm"},{"name":"Southern Catanduanes Bikol","code":"bln"},{"name":"Anii","code":"blo"},{"name":"Blablanga","code":"blp"},{"name":"Baluan-Pam","code":"blq"},{"name":"Blang","code":"blr"},{"name":"Balaesang","code":"bls"},{"name":"Tai Dam","code":"blt"},{"name":"Bolo","code":"blv"},{"name":"Kibala","code":"blv"},{"name":"Balangao","code":"blw"},{"name":"Mag-Indi Ayta","code":"blx"},{"name":"Notre","code":"bly"},{"name":"Balantak","code":"blz"},{"name":"Lame","code":"bma"},{"name":"Bembe","code":"bmb"},{"name":"Biem","code":"bmc"},{"name":"Baga Manduri","code":"bmd"},{"name":"Limassa","code":"bme"},{"name":"Bom-Kim","code":"bmf"},{"name":"Bamwe","code":"bmg"},{"name":"Kein","code":"bmh"},{"name":"Bagirmi","code":"bmi"},{"name":"Bote-Majhi","code":"bmj"},{"name":"Ghayavi","code":"bmk"},{"name":"Bomboli","code":"bml"},{"name":"Northern Betsimisaraka Malagasy","code":"bmm"},{"name":"Bina (Papua New Guinea)","code":"bmn"},{"name":"Bambalang","code":"bmo"},{"name":"Bulgebi","code":"bmp"},{"name":"Bomu","code":"bmq"},{"name":"Muinane","code":"bmr"},{"name":"Bilma Kanuri","code":"bms"},{"name":"Biao Mon","code":"bmt"},{"name":"Somba-Siawari","code":"bmu"},{"name":"Bum","code":"bmv"},{"name":"Bomwali","code":"bmw"},{"name":"Baimak","code":"bmx"},{"name":"Baramu","code":"bmz"},{"name":"Bonerate","code":"bna"},{"name":"Bookan","code":"bnb"},{"name":"Bontok","code":"bnc"},{"name":"Banda (Indonesia)","code":"bnd"},{"name":"Bintauna","code":"bne"},{"name":"Masiwang","code":"bnf"},{"name":"Benga","code":"bng"},{"name":"Bangi","code":"bni"},{"name":"Eastern Tawbuid","code":"bnj"},{"name":"Bierebo","code":"bnk"},{"name":"Boon","code":"bnl"},{"name":"Batanga","code":"bnm"},{"name":"Bunun","code":"bnn"},{"name":"Bantoanon","code":"bno"},{"name":"Bola","code":"bnp"},{"name":"Bantik","code":"bnq"},{"name":"Butmas-Tur","code":"bnr"},{"name":"Bundeli","code":"bns"},{"name":"Bentong","code":"bnu"},{"name":"Beneraf","code":"bnv"},{"name":"Bonerif","code":"bnv"},{"name":"Edwas","code":"bnv"},{"name":"Bisis","code":"bnw"},{"name":"Bangubangu","code":"bnx"},{"name":"Bintulu","code":"bny"},{"name":"Beezen","code":"bnz"},{"name":"Bora","code":"boa"},{"name":"Aweer","code":"bob"},{"name":"Tibetan","code":"bod"},{"name":"Mundabli","code":"boe"},{"name":"Bolon","code":"bof"},{"name":"Bamako Sign Language","code":"bog"},{"name":"Boma","code":"boh"},{"name":"Barbareño","code":"boi"},{"name":"Anjam","code":"boj"},{"name":"Bonjo","code":"bok"},{"name":"Bole","code":"bol"},{"name":"Berom","code":"bom"},{"name":"Bine","code":"bon"},{"name":"Tiemacèwè Bozo","code":"boo"},{"name":"Bonkiman","code":"bop"},{"name":"Bogaya","code":"boq"},{"name":"Borôro","code":"bor"},{"name":"Bosnian","code":"bos"},{"name":"Bongo","code":"bot"},{"name":"Bondei","code":"bou"},{"name":"Tuwuli","code":"bov"},{"name":"Rema","code":"bow"},{"name":"Buamu","code":"box"},{"name":"Bodo (Central African Republic)","code":"boy"},{"name":"Tiéyaxo Bozo","code":"boz"},{"name":"Daakaka","code":"bpa"},{"name":"Banda-Banda","code":"bpd"},{"name":"Bauni","code":"bpe"},{"name":"Bonggo","code":"bpg"},{"name":"Botlikh","code":"bph"},{"name":"Bagupi","code":"bpi"},{"name":"Binji","code":"bpj"},{"name":"'Ôrôê","code":"bpk"},{"name":"Orowe","code":"bpk"},{"name":"Broome Pearling Lugger Pidgin","code":"bpl"},{"name":"Biyom","code":"bpm"},{"name":"Dzao Min","code":"bpn"},{"name":"Anasi","code":"bpo"},{"name":"Kaure","code":"bpp"},{"name":"Banda Malay","code":"bpq"},{"name":"Koronadal Blaan","code":"bpr"},{"name":"Sarangani Blaan","code":"bps"},{"name":"Barrow Point","code":"bpt"},{"name":"Bongu","code":"bpu"},{"name":"Bian Marind","code":"bpv"},{"name":"Bo (Papua New Guinea)","code":"bpw"},{"name":"Palya Bareli","code":"bpx"},{"name":"Bishnupriya","code":"bpy"},{"name":"Bilba","code":"bpz"},{"name":"Tchumbuli","code":"bqa"},{"name":"Bagusa","code":"bqb"},{"name":"Boko (Benin)","code":"bqc"},{"name":"Boo","code":"bqc"},{"name":"Bung","code":"bqd"},{"name":"Baga Kaloum","code":"bqf"},{"name":"Bago-Kusuntu","code":"bqg"},{"name":"Baima","code":"bqh"},{"name":"Bakhtiari","code":"bqi"},{"name":"Bandial","code":"bqj"},{"name":"Banda-Mbrès","code":"bqk"},{"name":"Bilakura","code":"bql"},{"name":"Wumboko","code":"bqm"},{"name":"Bulgarian Sign Language","code":"bqn"},{"name":"Balo","code":"bqo"},{"name":"Busa","code":"bqp"},{"name":"Biritai","code":"bqq"},{"name":"Burusu","code":"bqr"},{"name":"Bosngun","code":"bqs"},{"name":"Bamukumbit","code":"bqt"},{"name":"Boguru","code":"bqu"},{"name":"Begbere-Ejar","code":"bqv"},{"name":"Koro Wachi","code":"bqv"},{"name":"Buru (Nigeria)","code":"bqw"},{"name":"Baangi","code":"bqx"},{"name":"Bengkala Sign Language","code":"bqy"},{"name":"Bakaka","code":"bqz"},{"name":"Braj","code":"bra"},{"name":"Lave","code":"brb"},{"name":"Berbice Creole Dutch","code":"brc"},{"name":"Baraamu","code":"brd"},{"name":"Breton","code":"bre"},{"name":"Bira","code":"brf"},{"name":"Baure","code":"brg"},{"name":"Brahui","code":"brh"},{"name":"Mokpwe","code":"bri"},{"name":"Bieria","code":"brj"},{"name":"Birked","code":"brk"},{"name":"Birwa","code":"brl"},{"name":"Barambu","code":"brm"},{"name":"Boruca","code":"brn"},{"name":"Brokkat","code":"bro"},{"name":"Barapasi","code":"brp"},{"name":"Breri","code":"brq"},{"name":"Birao","code":"brr"},{"name":"Baras","code":"brs"},{"name":"Bitare","code":"brt"},{"name":"Eastern Bru","code":"bru"},{"name":"Western Bru","code":"brv"},{"name":"Bellari","code":"brw"},{"name":"Bodo (India)","code":"brx"},{"name":"Burui","code":"bry"},{"name":"Bilbil","code":"brz"},{"name":"Abinomn","code":"bsa"},{"name":"Brunei Bisaya","code":"bsb"},{"name":"Bassari","code":"bsc"},{"name":"Oniyan","code":"bsc"},{"name":"Wushi","code":"bse"},{"name":"Bauchi","code":"bsf"},{"name":"Bashkardi","code":"bsg"},{"name":"Kati","code":"bsh"},{"name":"Bassossi","code":"bsi"},{"name":"Bangwinji","code":"bsj"},{"name":"Burushaski","code":"bsk"},{"name":"Basa-Gumna","code":"bsl"},{"name":"Busami","code":"bsm"},{"name":"Barasana-Eduria","code":"bsn"},{"name":"Buso","code":"bso"},{"name":"Baga Sitemu","code":"bsp"},{"name":"Bassa","code":"bsq"},{"name":"Bassa-Kontagora","code":"bsr"},{"name":"Akoose","code":"bss"},{"name":"Basketo","code":"bst"},{"name":"Bahonsuai","code":"bsu"},{"name":"Baga Sobané","code":"bsv"},{"name":"Baiso","code":"bsw"},{"name":"Yangkam","code":"bsx"},{"name":"Sabah Bisaya","code":"bsy"},{"name":"Bata","code":"bta"},{"name":"Bati (Cameroon)","code":"btc"},{"name":"Batak Dairi","code":"btd"},{"name":"Gamo-Ningi","code":"bte"},{"name":"Birgit","code":"btf"},{"name":"Gagnoa Bété","code":"btg"},{"name":"Biatah Bidayuh","code":"bth"},{"name":"Burate","code":"bti"},{"name":"Bacanese Malay","code":"btj"},{"name":"Batak Mandailing","code":"btm"},{"name":"Ratagnon","code":"btn"},{"name":"Rinconada Bikol","code":"bto"},{"name":"Budibud","code":"btp"},{"name":"Batek","code":"btq"},{"name":"Baetora","code":"btr"},{"name":"Batak Simalungun","code":"bts"},{"name":"Bete-Bendi","code":"btt"},{"name":"Batu","code":"btu"},{"name":"Bateri","code":"btv"},{"name":"Butuanon","code":"btw"},{"name":"Batak Karo","code":"btx"},{"name":"Bobot","code":"bty"},{"name":"Batak Alas-Kluet","code":"btz"},{"name":"Buriat","code":"bua"},{"name":"Bua","code":"bub"},{"name":"Bushi","code":"buc"},{"name":"Ntcham","code":"bud"},{"name":"Beothuk","code":"bue"},{"name":"Bushoong","code":"buf"},{"name":"Buginese","code":"bug"},{"name":"Younuo Bunu","code":"buh"},{"name":"Bongili","code":"bui"},{"name":"Basa-Gurmana","code":"buj"},{"name":"Bugawac","code":"buk"},{"name":"Bulgarian","code":"bul"},{"name":"Bulu (Cameroon)","code":"bum"},{"name":"Sherbro","code":"bun"},{"name":"Terei","code":"buo"},{"name":"Busoa","code":"bup"},{"name":"Brem","code":"buq"},{"name":"Bokobaru","code":"bus"},{"name":"Bungain","code":"but"},{"name":"Budu","code":"buu"},{"name":"Bun","code":"buv"},{"name":"Bubi","code":"buw"},{"name":"Boghom","code":"bux"},{"name":"Bullom So","code":"buy"},{"name":"Bukwen","code":"buz"},{"name":"Barein","code":"bva"},{"name":"Bube","code":"bvb"},{"name":"Baelelea","code":"bvc"},{"name":"Baeggu","code":"bvd"},{"name":"Berau Malay","code":"bve"},{"name":"Boor","code":"bvf"},{"name":"Bonkeng","code":"bvg"},{"name":"Bure","code":"bvh"},{"name":"Belanda Viri","code":"bvi"},{"name":"Baan","code":"bvj"},{"name":"Bukat","code":"bvk"},{"name":"Bolivian Sign Language","code":"bvl"},{"name":"Bamunka","code":"bvm"},{"name":"Buna","code":"bvn"},{"name":"Bolgo","code":"bvo"},{"name":"Bumang","code":"bvp"},{"name":"Birri","code":"bvq"},{"name":"Burarra","code":"bvr"},{"name":"Bati (Indonesia)","code":"bvt"},{"name":"Bukit Malay","code":"bvu"},{"name":"Baniva","code":"bvv"},{"name":"Boga","code":"bvw"},{"name":"Dibole","code":"bvx"},{"name":"Baybayanon","code":"bvy"},{"name":"Bauzi","code":"bvz"},{"name":"Bwatoo","code":"bwa"},{"name":"Namosi-Naitasiri-Serua","code":"bwb"},{"name":"Bwile","code":"bwc"},{"name":"Bwaidoka","code":"bwd"},{"name":"Bwe Karen","code":"bwe"},{"name":"Boselewa","code":"bwf"},{"name":"Barwe","code":"bwg"},{"name":"Bishuo","code":"bwh"},{"name":"Baniwa","code":"bwi"},{"name":"Láá Láá Bwamu","code":"bwj"},{"name":"Bauwaki","code":"bwk"},{"name":"Bwela","code":"bwl"},{"name":"Biwat","code":"bwm"},{"name":"Wunai Bunu","code":"bwn"},{"name":"Borna (Ethiopia)","code":"bwo"},{"name":"Boro (Ethiopia)","code":"bwo"},{"name":"Mandobo Bawah","code":"bwp"},{"name":"Southern Bobo Madaré","code":"bwq"},{"name":"Bura-Pabir","code":"bwr"},{"name":"Bomboma","code":"bws"},{"name":"Bafaw-Balong","code":"bwt"},{"name":"Buli (Ghana)","code":"bwu"},{"name":"Bwa","code":"bww"},{"name":"Bu-Nao Bunu","code":"bwx"},{"name":"Cwi Bwamu","code":"bwy"},{"name":"Bwisi","code":"bwz"},{"name":"Tairaha","code":"bxa"},{"name":"Belanda Bor","code":"bxb"},{"name":"Molengue","code":"bxc"},{"name":"Pela","code":"bxd"},{"name":"Birale","code":"bxe"},{"name":"Bilur","code":"bxf"},{"name":"Minigir","code":"bxf"},{"name":"Bangala","code":"bxg"},{"name":"Buhutu","code":"bxh"},{"name":"Pirlatapa","code":"bxi"},{"name":"Bayungu","code":"bxj"},{"name":"Bukusu","code":"bxk"},{"name":"Lubukusu","code":"bxk"},{"name":"Jalkunan","code":"bxl"},{"name":"Mongolia Buriat","code":"bxm"},{"name":"Burduna","code":"bxn"},{"name":"Barikanchi","code":"bxo"},{"name":"Bebil","code":"bxp"},{"name":"Beele","code":"bxq"},{"name":"Russia Buriat","code":"bxr"},{"name":"Busam","code":"bxs"},{"name":"China Buriat","code":"bxu"},{"name":"Berakou","code":"bxv"},{"name":"Bankagooma","code":"bxw"},{"name":"Binahari","code":"bxz"},{"name":"Batak","code":"bya"},{"name":"Bikya","code":"byb"},{"name":"Ubaghara","code":"byc"},{"name":"Benyadu'","code":"byd"},{"name":"Pouye","code":"bye"},{"name":"Bete","code":"byf"},{"name":"Baygo","code":"byg"},{"name":"Bhujel","code":"byh"},{"name":"Buyu","code":"byi"},{"name":"Bina (Nigeria)","code":"byj"},{"name":"Biao","code":"byk"},{"name":"Bayono","code":"byl"},{"name":"Bidjara","code":"bym"},{"name":"Bilin","code":"byn"},{"name":"Blin","code":"byn"},{"name":"Biyo","code":"byo"},{"name":"Bumaji","code":"byp"},{"name":"Basay","code":"byq"},{"name":"Baruya","code":"byr"},{"name":"Yipma","code":"byr"},{"name":"Burak","code":"bys"},{"name":"Berti","code":"byt"},{"name":"Medumba","code":"byv"},{"name":"Belhariya","code":"byw"},{"name":"Qaqet","code":"byx"},{"name":"Banaro","code":"byz"},{"name":"Bandi","code":"bza"},{"name":"Andio","code":"bzb"},{"name":"Southern Betsimisaraka Malagasy","code":"bzc"},{"name":"Bribri","code":"bzd"},{"name":"Jenaama Bozo","code":"bze"},{"name":"Boikin","code":"bzf"},{"name":"Babuza","code":"bzg"},{"name":"Mapos Buang","code":"bzh"},{"name":"Bisu","code":"bzi"},{"name":"Belize Kriol English","code":"bzj"},{"name":"Nicaragua Creole English","code":"bzk"},{"name":"Boano (Sulawesi)","code":"bzl"},{"name":"Bolondo","code":"bzm"},{"name":"Boano (Maluku)","code":"bzn"},{"name":"Bozaba","code":"bzo"},{"name":"Kemberano","code":"bzp"},{"name":"Buli (Indonesia)","code":"bzq"},{"name":"Biri","code":"bzr"},{"name":"Brazilian Sign Language","code":"bzs"},{"name":"Brithenig","code":"bzt"},{"name":"Burmeso","code":"bzu"},{"name":"Naami","code":"bzv"},{"name":"Basa (Nigeria)","code":"bzw"},{"name":"Kɛlɛngaxo Bozo","code":"bzx"},{"name":"Obanliku","code":"bzy"},{"name":"Evant","code":"bzz"},{"name":"Chortí","code":"caa"},{"name":"Garifuna","code":"cab"},{"name":"Chuj","code":"cac"},{"name":"Caddo","code":"cad"},{"name":"Laalaa","code":"cae"},{"name":"Lehar","code":"cae"},{"name":"Southern Carrier","code":"caf"},{"name":"Nivaclé","code":"cag"},{"name":"Cahuarano","code":"cah"},{"name":"Chané","code":"caj"},{"name":"Cakchiquel","code":"cak"},{"name":"Kaqchikel","code":"cak"},{"name":"Carolinian","code":"cal"},{"name":"Cemuhî","code":"cam"},{"name":"Chambri","code":"can"},{"name":"Chácobo","code":"cao"},{"name":"Chipaya","code":"cap"},{"name":"Car Nicobarese","code":"caq"},{"name":"Galibi Carib","code":"car"},{"name":"Tsimané","code":"cas"},{"name":"Catalan","code":"cat"},{"name":"Valencian","code":"cat"},{"name":"Cavineña","code":"cav"},{"name":"Callawalla","code":"caw"},{"name":"Chiquitano","code":"cax"},{"name":"Cayuga","code":"cay"},{"name":"Canichana","code":"caz"},{"name":"Cabiyarí","code":"cbb"},{"name":"Carapana","code":"cbc"},{"name":"Carijona","code":"cbd"},{"name":"Chimila","code":"cbg"},{"name":"Chachi","code":"cbi"},{"name":"Ede Cabe","code":"cbj"},{"name":"Chavacano","code":"cbk"},{"name":"Bualkhaw Chin","code":"cbl"},{"name":"Nyahkur","code":"cbn"},{"name":"Izora","code":"cbo"},{"name":"Cuba","code":"cbq"},{"name":"Tsucuba","code":"cbq"},{"name":"Cashibo-Cacataibo","code":"cbr"},{"name":"Cashinahua","code":"cbs"},{"name":"Chayahuita","code":"cbt"},{"name":"Candoshi-Shapra","code":"cbu"},{"name":"Cacua","code":"cbv"},{"name":"Kinabalian","code":"cbw"},{"name":"Carabayo","code":"cby"},{"name":"Chamicuro","code":"ccc"},{"name":"Cafundo Creole","code":"ccd"},{"name":"Chopi","code":"cce"},{"name":"Samba Daka","code":"ccg"},{"name":"Atsam","code":"cch"},{"name":"Kasanga","code":"ccj"},{"name":"Cutchi-Swahili","code":"ccl"},{"name":"Malaccan Creole Malay","code":"ccm"},{"name":"Comaltepec Chinantec","code":"cco"},{"name":"Chakma","code":"ccp"},{"name":"Cacaopera","code":"ccr"},{"name":"Choni","code":"cda"},{"name":"Chenchu","code":"cde"},{"name":"Chiru","code":"cdf"},{"name":"Chambeali","code":"cdh"},{"name":"Chodri","code":"cdi"},{"name":"Churahi","code":"cdj"},{"name":"Chepang","code":"cdm"},{"name":"Chaudangsi","code":"cdn"},{"name":"Min Dong Chinese","code":"cdo"},{"name":"Cinda-Regi-Tiyal","code":"cdr"},{"name":"Chadian Sign Language","code":"cds"},{"name":"Chadong","code":"cdy"},{"name":"Koda","code":"cdz"},{"name":"Lower Chehalis","code":"cea"},{"name":"Cebuano","code":"ceb"},{"name":"Chamacoco","code":"ceg"},{"name":"Eastern Khumi Chin","code":"cek"},{"name":"Cen","code":"cen"},{"name":"Czech","code":"ces"},{"name":"Centúúm","code":"cet"},{"name":"Ekai Chin","code":"cey"},{"name":"Dijim-Bwilim","code":"cfa"},{"name":"Cara","code":"cfd"},{"name":"Como Karim","code":"cfg"},{"name":"Falam Chin","code":"cfm"},{"name":"Changriwa","code":"cga"},{"name":"Kagayanen","code":"cgc"},{"name":"Chiga","code":"cgg"},{"name":"Chocangacakha","code":"cgk"},{"name":"Chamorro","code":"cha"},{"name":"Chibcha","code":"chb"},{"name":"Catawba","code":"chc"},{"name":"Highland Oaxaca Chontal","code":"chd"},{"name":"Chechen","code":"che"},{"name":"Tabasco Chontal","code":"chf"},{"name":"Chagatai","code":"chg"},{"name":"Chinook","code":"chh"},{"name":"Ojitlán Chinantec","code":"chj"},{"name":"Chuukese","code":"chk"},{"name":"Cahuilla","code":"chl"},{"name":"Mari (Russia)","code":"chm"},{"name":"Chinook jargon","code":"chn"},{"name":"Choctaw","code":"cho"},{"name":"Chipewyan","code":"chp"},{"name":"Dene Suline","code":"chp"},{"name":"Quiotepec Chinantec","code":"chq"},{"name":"Cherokee","code":"chr"},{"name":"Cholón","code":"cht"},{"name":"Church Slavic","code":"chu"},{"name":"Church Slavonic","code":"chu"},{"name":"Old Bulgarian","code":"chu"},{"name":"Old Church Slavonic","code":"chu"},{"name":"Old Slavonic","code":"chu"},{"name":"Chuvash","code":"chv"},{"name":"Chuwabu","code":"chw"},{"name":"Chantyal","code":"chx"},{"name":"Cheyenne","code":"chy"},{"name":"Ozumacín Chinantec","code":"chz"},{"name":"Cia-Cia","code":"cia"},{"name":"Ci Gbe","code":"cib"},{"name":"Chickasaw","code":"cic"},{"name":"Chimariko","code":"cid"},{"name":"Cineni","code":"cie"},{"name":"Chinali","code":"cih"},{"name":"Chitkuli Kinnauri","code":"cik"},{"name":"Cimbrian","code":"cim"},{"name":"Cinta Larga","code":"cin"},{"name":"Chiapanec","code":"cip"},{"name":"Haméa","code":"cir"},{"name":"Méa","code":"cir"},{"name":"Tiri","code":"cir"},{"name":"Chippewa","code":"ciw"},{"name":"Chaima","code":"ciy"},{"name":"Western Cham","code":"cja"},{"name":"Chru","code":"cje"},{"name":"Upper Chehalis","code":"cjh"},{"name":"Chamalal","code":"cji"},{"name":"Chokwe","code":"cjk"},{"name":"Eastern Cham","code":"cjm"},{"name":"Chenapian","code":"cjn"},{"name":"Ashéninka Pajonal","code":"cjo"},{"name":"Cabécar","code":"cjp"},{"name":"Shor","code":"cjs"},{"name":"Chuave","code":"cjv"},{"name":"Jinyu Chinese","code":"cjy"},{"name":"Central Kurdish","code":"ckb"},{"name":"Chak","code":"ckh"},{"name":"Cibak","code":"ckl"},{"name":"Chakavian","code":"ckm"},{"name":"Kaang Chin","code":"ckn"},{"name":"Anufo","code":"cko"},{"name":"Kajakse","code":"ckq"},{"name":"Kairak","code":"ckr"},{"name":"Tayo","code":"cks"},{"name":"Chukot","code":"ckt"},{"name":"Koasati","code":"cku"},{"name":"Kavalan","code":"ckv"},{"name":"Caka","code":"ckx"},{"name":"Cakfem-Mushere","code":"cky"},{"name":"Cakchiquel-Quiché Mixed Language","code":"ckz"},{"name":"Ron","code":"cla"},{"name":"Chilcotin","code":"clc"},{"name":"Chaldean Neo-Aramaic","code":"cld"},{"name":"Lealao Chinantec","code":"cle"},{"name":"Chilisso","code":"clh"},{"name":"Chakali","code":"cli"},{"name":"Laitu Chin","code":"clj"},{"name":"Idu-Mishmi","code":"clk"},{"name":"Chala","code":"cll"},{"name":"Clallam","code":"clm"},{"name":"Lowland Oaxaca Chontal","code":"clo"},{"name":"Lautu Chin","code":"clt"},{"name":"Caluyanun","code":"clu"},{"name":"Chulym","code":"clw"},{"name":"Eastern Highland Chatino","code":"cly"},{"name":"Maa","code":"cma"},{"name":"Cerma","code":"cme"},{"name":"Classical Mongolian","code":"cmg"},{"name":"Emberá-Chamí","code":"cmi"},{"name":"Campalagian","code":"cml"},{"name":"Michigamea","code":"cmm"},{"name":"Mandarin Chinese","code":"cmn"},{"name":"Central Mnong","code":"cmo"},{"name":"Mro-Khimi Chin","code":"cmr"},{"name":"Messapic","code":"cms"},{"name":"Camtho","code":"cmt"},{"name":"Changthang","code":"cna"},{"name":"Chinbon Chin","code":"cnb"},{"name":"Côông","code":"cnc"},{"name":"Northern Qiang","code":"cng"},{"name":"Haka Chin","code":"cnh"},{"name":"Hakha Chin","code":"cnh"},{"name":"Asháninka","code":"cni"},{"name":"Khumi Chin","code":"cnk"},{"name":"Lalana Chinantec","code":"cnl"},{"name":"Con","code":"cno"},{"name":"Northern Ping Chinese","code":"cnp"},{"name":"Northern Pinghua","code":"cnp"},{"name":"Montenegrin","code":"cnr"},{"name":"Central Asmat","code":"cns"},{"name":"Tepetotutla Chinantec","code":"cnt"},{"name":"Chenoua","code":"cnu"},{"name":"Ngawn Chin","code":"cnw"},{"name":"Middle Cornish","code":"cnx"},{"name":"Cocos Islands Malay","code":"coa"},{"name":"Chicomuceltec","code":"cob"},{"name":"Cocopa","code":"coc"},{"name":"Cocama-Cocamilla","code":"cod"},{"name":"Koreguaje","code":"coe"},{"name":"Colorado","code":"cof"},{"name":"Chong","code":"cog"},{"name":"Chichonyi-Chidzihana-Chikauma","code":"coh"},{"name":"Chonyi-Dzihana-Kauma","code":"coh"},{"name":"Cochimi","code":"coj"},{"name":"Santa Teresa Cora","code":"cok"},{"name":"Columbia-Wenatchi","code":"col"},{"name":"Comanche","code":"com"},{"name":"Cofán","code":"con"},{"name":"Comox","code":"coo"},{"name":"Coptic","code":"cop"},{"name":"Coquille","code":"coq"},{"name":"Cornish","code":"cor"},{"name":"Corsican","code":"cos"},{"name":"Caquinte","code":"cot"},{"name":"Wamey","code":"cou"},{"name":"Cao Miao","code":"cov"},{"name":"Cowlitz","code":"cow"},{"name":"Nanti","code":"cox"},{"name":"Chochotec","code":"coz"},{"name":"Palantla Chinantec","code":"cpa"},{"name":"Ucayali-Yurúa Ashéninka","code":"cpb"},{"name":"Ajyíninka Apurucayali","code":"cpc"},{"name":"Cappadocian Greek","code":"cpg"},{"name":"Chinese Pidgin English","code":"cpi"},{"name":"Cherepon","code":"cpn"},{"name":"Kpeego","code":"cpo"},{"name":"Capiznon","code":"cps"},{"name":"Pichis Ashéninka","code":"cpu"},{"name":"Pu-Xian Chinese","code":"cpx"},{"name":"South Ucayali Ashéninka","code":"cpy"},{"name":"Chuanqiandian Cluster Miao","code":"cqd"},{"name":"Chara","code":"cra"},{"name":"Island Carib","code":"crb"},{"name":"Lonwolwol","code":"crc"},{"name":"Coeur d'Alene","code":"crd"},{"name":"Cree","code":"cre"},{"name":"Caramanta","code":"crf"},{"name":"Michif","code":"crg"},{"name":"Crimean Tatar","code":"crh"},{"name":"Crimean Turkish","code":"crh"},{"name":"Sãotomense","code":"cri"},{"name":"Southern East Cree","code":"crj"},{"name":"Plains Cree","code":"crk"},{"name":"Northern East Cree","code":"crl"},{"name":"Moose Cree","code":"crm"},{"name":"El Nayar Cora","code":"crn"},{"name":"Crow","code":"cro"},{"name":"Iyo'wujwa Chorote","code":"crq"},{"name":"Carolina Algonquian","code":"crr"},{"name":"Seselwa Creole French","code":"crs"},{"name":"Iyojwa'ja Chorote","code":"crt"},{"name":"Chaura","code":"crv"},{"name":"Chrau","code":"crw"},{"name":"Carrier","code":"crx"},{"name":"Cori","code":"cry"},{"name":"Cruzeño","code":"crz"},{"name":"Chiltepec Chinantec","code":"csa"},{"name":"Kashubian","code":"csb"},{"name":"Catalan Sign Language","code":"csc"},{"name":"Lengua de señas catalana","code":"csc"},{"name":"Llengua de Signes Catalana","code":"csc"},{"name":"Chiangmai Sign Language","code":"csd"},{"name":"Czech Sign Language","code":"cse"},{"name":"Cuba Sign Language","code":"csf"},{"name":"Chilean Sign Language","code":"csg"},{"name":"Asho Chin","code":"csh"},{"name":"Coast Miwok","code":"csi"},{"name":"Songlai Chin","code":"csj"},{"name":"Jola-Kasa","code":"csk"},{"name":"Chinese Sign Language","code":"csl"},{"name":"Central Sierra Miwok","code":"csm"},{"name":"Colombian Sign Language","code":"csn"},{"name":"Sochiapam Chinantec","code":"cso"},{"name":"Sochiapan Chinantec","code":"cso"},{"name":"Southern Ping Chinese","code":"csp"},{"name":"Southern Pinghua","code":"csp"},{"name":"Croatia Sign Language","code":"csq"},{"name":"Costa Rican Sign Language","code":"csr"},{"name":"Southern Ohlone","code":"css"},{"name":"Northern Ohlone","code":"cst"},{"name":"Sumtu Chin","code":"csv"},{"name":"Swampy Cree","code":"csw"},{"name":"Cambodian Sign Language","code":"csx"},{"name":"Siyin Chin","code":"csy"},{"name":"Coos","code":"csz"},{"name":"Tataltepec Chatino","code":"cta"},{"name":"Chetco","code":"ctc"},{"name":"Tedim Chin","code":"ctd"},{"name":"Tepinapa Chinantec","code":"cte"},{"name":"Chittagonian","code":"ctg"},{"name":"Thaiphum Chin","code":"cth"},{"name":"Tlacoatzintepec Chinantec","code":"ctl"},{"name":"Chitimacha","code":"ctm"},{"name":"Chhintange","code":"ctn"},{"name":"Emberá-Catío","code":"cto"},{"name":"Western Highland Chatino","code":"ctp"},{"name":"Northern Catanduanes Bikol","code":"cts"},{"name":"Wayanad Chetti","code":"ctt"},{"name":"Chol","code":"ctu"},{"name":"Moundadan Chetty","code":"cty"},{"name":"Zacatepec Chatino","code":"ctz"},{"name":"Cua","code":"cua"},{"name":"Cubeo","code":"cub"},{"name":"Usila Chinantec","code":"cuc"},{"name":"Chungmboko","code":"cug"},{"name":"Cung","code":"cug"},{"name":"Chuka","code":"cuh"},{"name":"Gichuka","code":"cuh"},{"name":"Cuiba","code":"cui"},{"name":"Mashco Piro","code":"cuj"},{"name":"San Blas Kuna","code":"cuk"},{"name":"Culina","code":"cul"},{"name":"Kulina","code":"cul"},{"name":"Cumanagoto","code":"cuo"},{"name":"Cupeño","code":"cup"},{"name":"Cun","code":"cuq"},{"name":"Chhulung","code":"cur"},{"name":"Teutila Cuicatec","code":"cut"},{"name":"Tai Ya","code":"cuu"},{"name":"Cuvok","code":"cuv"},{"name":"Chukwa","code":"cuw"},{"name":"Tepeuxila Cuicatec","code":"cux"},{"name":"Cuitlatec","code":"cuy"},{"name":"Chug","code":"cvg"},{"name":"Valle Nacional Chinantec","code":"cvn"},{"name":"Kabwa","code":"cwa"},{"name":"Maindo","code":"cwb"},{"name":"Woods Cree","code":"cwd"},{"name":"Kwere","code":"cwe"},{"name":"Cheq Wong","code":"cwg"},{"name":"Chewong","code":"cwg"},{"name":"Kuwaataay","code":"cwt"},{"name":"Nopala Chatino","code":"cya"},{"name":"Cayubaba","code":"cyb"},{"name":"Welsh","code":"cym"},{"name":"Cuyonon","code":"cyo"},{"name":"Huizhou Chinese","code":"czh"},{"name":"Knaanic","code":"czk"},{"name":"Zenzontepec Chatino","code":"czn"},{"name":"Min Zhong Chinese","code":"czo"},{"name":"Zotung Chin","code":"czt"},{"name":"Dangaléat","code":"daa"},{"name":"Dambi","code":"dac"},{"name":"Marik","code":"dad"},{"name":"Duupa","code":"dae"},{"name":"Dagbani","code":"dag"},{"name":"Gwahatike","code":"dah"},{"name":"Day","code":"dai"},{"name":"Dar Fur Daju","code":"daj"},{"name":"Dakota","code":"dak"},{"name":"Dahalo","code":"dal"},{"name":"Damakawa","code":"dam"},{"name":"Danish","code":"dan"},{"name":"Daai Chin","code":"dao"},{"name":"Dandami Maria","code":"daq"},{"name":"Dargwa","code":"dar"},{"name":"Daho-Doo","code":"das"},{"name":"Dar Sila Daju","code":"dau"},{"name":"Dawida","code":"dav"},{"name":"Taita","code":"dav"},{"name":"Davawenyo","code":"daw"},{"name":"Dayi","code":"dax"},{"name":"Dao","code":"daz"},{"name":"Bangime","code":"dba"},{"name":"Deno","code":"dbb"},{"name":"Dadiya","code":"dbd"},{"name":"Dabe","code":"dbe"},{"name":"Edopi","code":"dbf"},{"name":"Dogul Dom Dogon","code":"dbg"},{"name":"Doka","code":"dbi"},{"name":"Ida'an","code":"dbj"},{"name":"Dyirbal","code":"dbl"},{"name":"Duguri","code":"dbm"},{"name":"Duriankere","code":"dbn"},{"name":"Dulbu","code":"dbo"},{"name":"Duwai","code":"dbp"},{"name":"Daba","code":"dbq"},{"name":"Dabarre","code":"dbr"},{"name":"Ben Tey Dogon","code":"dbt"},{"name":"Bondum Dom Dogon","code":"dbu"},{"name":"Dungu","code":"dbv"},{"name":"Bankan Tey Dogon","code":"dbw"},{"name":"Dibiyaso","code":"dby"},{"name":"Deccan","code":"dcc"},{"name":"Negerhollands","code":"dcr"},{"name":"Dadi Dadi","code":"dda"},{"name":"Dongotono","code":"ddd"},{"name":"Doondo","code":"dde"},{"name":"Fataluku","code":"ddg"},{"name":"West Goodenough","code":"ddi"},{"name":"Jaru","code":"ddj"},{"name":"Dendi (Benin)","code":"ddn"},{"name":"Dido","code":"ddo"},{"name":"Dhudhuroa","code":"ddr"},{"name":"Donno So Dogon","code":"dds"},{"name":"Dawera-Daweloor","code":"ddw"},{"name":"Dagik","code":"dec"},{"name":"Dedua","code":"ded"},{"name":"Dewoin","code":"dee"},{"name":"Dezfuli","code":"def"},{"name":"Degema","code":"deg"},{"name":"Dehwari","code":"deh"},{"name":"Demisa","code":"dei"},{"name":"Dek","code":"dek"},{"name":"Delaware","code":"del"},{"name":"Dem","code":"dem"},{"name":"Slave (Athapascan)","code":"den"},{"name":"Pidgin Delaware","code":"dep"},{"name":"Dendi (Central African Republic)","code":"deq"},{"name":"Deori","code":"der"},{"name":"Desano","code":"des"},{"name":"German","code":"deu"},{"name":"Domung","code":"dev"},{"name":"Dengese","code":"dez"},{"name":"Southern Dagaare","code":"dga"},{"name":"Bunoge Dogon","code":"dgb"},{"name":"Casiguran Dumagat Agta","code":"dgc"},{"name":"Dagaari Dioula","code":"dgd"},{"name":"Degenan","code":"dge"},{"name":"Doga","code":"dgg"},{"name":"Dghwede","code":"dgh"},{"name":"Northern Dagara","code":"dgi"},{"name":"Dagba","code":"dgk"},{"name":"Andaandi","code":"dgl"},{"name":"Dongolawi","code":"dgl"},{"name":"Dagoman","code":"dgn"},{"name":"Dogri (individual language)","code":"dgo"},{"name":"Dogrib","code":"dgr"},{"name":"Tłı̨chǫ","code":"dgr"},{"name":"Dogoso","code":"dgs"},{"name":"Ndra'ngith","code":"dgt"},{"name":"Daungwurrung","code":"dgw"},{"name":"Doghoro","code":"dgx"},{"name":"Daga","code":"dgz"},{"name":"Dhundari","code":"dhd"},{"name":"Dhangu","code":"dhg"},{"name":"Dhangu-Djangu","code":"dhg"},{"name":"Djangu","code":"dhg"},{"name":"Dhimal","code":"dhi"},{"name":"Dhalandji","code":"dhl"},{"name":"Zemba","code":"dhm"},{"name":"Dhanki","code":"dhn"},{"name":"Dhodia","code":"dho"},{"name":"Dhargari","code":"dhr"},{"name":"Dhaiso","code":"dhs"},{"name":"Dhurga","code":"dhu"},{"name":"Dehu","code":"dhv"},{"name":"Drehu","code":"dhv"},{"name":"Dhanwar (Nepal)","code":"dhw"},{"name":"Dhungaloo","code":"dhx"},{"name":"Dia","code":"dia"},{"name":"South Central Dinka","code":"dib"},{"name":"Lakota Dida","code":"dic"},{"name":"Didinga","code":"did"},{"name":"Dieri","code":"dif"},{"name":"Diyari","code":"dif"},{"name":"Chidigo","code":"dig"},{"name":"Digo","code":"dig"},{"name":"Kumiai","code":"dih"},{"name":"Dimbong","code":"dii"},{"name":"Dai","code":"dij"},{"name":"Southwestern Dinka","code":"dik"},{"name":"Dilling","code":"dil"},{"name":"Dime","code":"dim"},{"name":"Dinka","code":"din"},{"name":"Dibo","code":"dio"},{"name":"Northeastern Dinka","code":"dip"},{"name":"Dimli (individual language)","code":"diq"},{"name":"Dirim","code":"dir"},{"name":"Dimasa","code":"dis"},{"name":"Diriku","code":"diu"},{"name":"Dhivehi","code":"div"},{"name":"Divehi","code":"div"},{"name":"Maldivian","code":"div"},{"name":"Northwestern Dinka","code":"diw"},{"name":"Dixon Reef","code":"dix"},{"name":"Diuwe","code":"diy"},{"name":"Ding","code":"diz"},{"name":"Djadjawurrung","code":"dja"},{"name":"Djinba","code":"djb"},{"name":"Dar Daju Daju","code":"djc"},{"name":"Djamindjung","code":"djd"},{"name":"Ngaliwurru","code":"djd"},{"name":"Zarma","code":"dje"},{"name":"Djangun","code":"djf"},{"name":"Djinang","code":"dji"},{"name":"Djeebbana","code":"djj"},{"name":"Businenge Tongo","code":"djk"},{"name":"Eastern Maroon Creole","code":"djk"},{"name":"Nenge","code":"djk"},{"name":"Jamsay Dogon","code":"djm"},{"name":"Djauan","code":"djn"},{"name":"Jawoyn","code":"djn"},{"name":"Jangkang","code":"djo"},{"name":"Djambarrpuyngu","code":"djr"},{"name":"Kapriman","code":"dju"},{"name":"Djawi","code":"djw"},{"name":"Dakpakha","code":"dka"},{"name":"Kadung","code":"dkg"},{"name":"Dakka","code":"dkk"},{"name":"Kuijau","code":"dkr"},{"name":"Southeastern Dinka","code":"dks"},{"name":"Mazagway","code":"dkx"},{"name":"Dolgan","code":"dlg"},{"name":"Dahalik","code":"dlk"},{"name":"Dalmatian","code":"dlm"},{"name":"Darlong","code":"dln"},{"name":"Duma","code":"dma"},{"name":"Mombo Dogon","code":"dmb"},{"name":"Gavak","code":"dmc"},{"name":"Madhi Madhi","code":"dmd"},{"name":"Dugwor","code":"dme"},{"name":"Medefaidrin","code":"dmf"},{"name":"Upper Kinabatangan","code":"dmg"},{"name":"Domaaki","code":"dmk"},{"name":"Dameli","code":"dml"},{"name":"Dama","code":"dmm"},{"name":"Kemedzung","code":"dmo"},{"name":"East Damar","code":"dmr"},{"name":"Dampelas","code":"dms"},{"name":"Dubu","code":"dmu"},{"name":"Tebi","code":"dmu"},{"name":"Dumpas","code":"dmv"},{"name":"Mudburra","code":"dmw"},{"name":"Dema","code":"dmx"},{"name":"Demta","code":"dmy"},{"name":"Sowari","code":"dmy"},{"name":"Upper Grand Valley Dani","code":"dna"},{"name":"Daonda","code":"dnd"},{"name":"Ndendeule","code":"dne"},{"name":"Dungan","code":"dng"},{"name":"Lower Grand Valley Dani","code":"dni"},{"name":"Dan","code":"dnj"},{"name":"Dengka","code":"dnk"},{"name":"Dzùùngoo","code":"dnn"},{"name":"Ndrulo","code":"dno"},{"name":"Northern Lendu","code":"dno"},{"name":"Danaru","code":"dnr"},{"name":"Mid Grand Valley Dani","code":"dnt"},{"name":"Danau","code":"dnu"},{"name":"Danu","code":"dnv"},{"name":"Western Dani","code":"dnw"},{"name":"Dení","code":"dny"},{"name":"Dom","code":"doa"},{"name":"Dobu","code":"dob"},{"name":"Northern Dong","code":"doc"},{"name":"Doe","code":"doe"},{"name":"Domu","code":"dof"},{"name":"Dong","code":"doh"},{"name":"Dogri (macrolanguage)","code":"doi"},{"name":"Dondo","code":"dok"},{"name":"Doso","code":"dol"},{"name":"Toura (Papua New Guinea)","code":"don"},{"name":"Dongo","code":"doo"},{"name":"Lukpa","code":"dop"},{"name":"Dominican Sign Language","code":"doq"},{"name":"Dori'o","code":"dor"},{"name":"Dogosé","code":"dos"},{"name":"Dass","code":"dot"},{"name":"Dombe","code":"dov"},{"name":"Doyayo","code":"dow"},{"name":"Bussa","code":"dox"},{"name":"Dompo","code":"doy"},{"name":"Dorze","code":"doz"},{"name":"Papar","code":"dpp"},{"name":"Dair","code":"drb"},{"name":"Minderico","code":"drc"},{"name":"Darmiya","code":"drd"},{"name":"Dolpo","code":"dre"},{"name":"Rungus","code":"drg"},{"name":"C'Lela","code":"dri"},{"name":"Paakantyi","code":"drl"},{"name":"West Damar","code":"drn"},{"name":"Daro-Matu Melanau","code":"dro"},{"name":"Dura","code":"drq"},{"name":"Gedeo","code":"drs"},{"name":"Drents","code":"drt"},{"name":"Rukai","code":"dru"},{"name":"Darai","code":"dry"},{"name":"Lower Sorbian","code":"dsb"},{"name":"Dutch Sign Language","code":"dse"},{"name":"Daasanach","code":"dsh"},{"name":"Disa","code":"dsi"},{"name":"Danish Sign Language","code":"dsl"},{"name":"Dusner","code":"dsn"},{"name":"Desiya","code":"dso"},{"name":"Tadaksahak","code":"dsq"},{"name":"Daur","code":"dta"},{"name":"Labuk-Kinabatangan Kadazan","code":"dtb"},{"name":"Ditidaht","code":"dtd"},{"name":"Adithinngithigh","code":"dth"},{"name":"Ana Tinga Dogon","code":"dti"},{"name":"Tene Kan Dogon","code":"dtk"},{"name":"Tomo Kan Dogon","code":"dtm"},{"name":"Daatsʼíin","code":"dtn"},{"name":"Tommo So Dogon","code":"dto"},{"name":"Central Dusun","code":"dtp"},{"name":"Kadazan Dusun","code":"dtp"},{"name":"Lotud","code":"dtr"},{"name":"Toro So Dogon","code":"dts"},{"name":"Toro Tegu Dogon","code":"dtt"},{"name":"Tebul Ure Dogon","code":"dtu"},{"name":"Dotyali","code":"dty"},{"name":"Duala","code":"dua"},{"name":"Dubli","code":"dub"},{"name":"Duna","code":"duc"},{"name":"Umiray Dumaget Agta","code":"due"},{"name":"Drubea","code":"duf"},{"name":"Dumbea","code":"duf"},{"name":"Chiduruma","code":"dug"},{"name":"Duruma","code":"dug"},{"name":"Dungra Bhil","code":"duh"},{"name":"Dumun","code":"dui"},{"name":"Uyajitaya","code":"duk"},{"name":"Alabat Island Agta","code":"dul"},{"name":"Middle Dutch (ca. 1050-1350)","code":"dum"},{"name":"Dusun Deyah","code":"dun"},{"name":"Dupaninan Agta","code":"duo"},{"name":"Duano","code":"dup"},{"name":"Dusun Malang","code":"duq"},{"name":"Dii","code":"dur"},{"name":"Dumi","code":"dus"},{"name":"Drung","code":"duu"},{"name":"Duvle","code":"duv"},{"name":"Dusun Witu","code":"duw"},{"name":"Duungooma","code":"dux"},{"name":"Dicamay Agta","code":"duy"},{"name":"Duli-Gey","code":"duz"},{"name":"Duau","code":"dva"},{"name":"Diri","code":"dwa"},{"name":"Dawik Kui","code":"dwk"},{"name":"Dawro","code":"dwr"},{"name":"Dutton World Speedwords","code":"dws"},{"name":"Dhuwal","code":"dwu"},{"name":"Dawawa","code":"dww"},{"name":"Dhuwaya","code":"dwy"},{"name":"Dewas Rai","code":"dwz"},{"name":"Dyan","code":"dya"},{"name":"Dyaberdyaber","code":"dyb"},{"name":"Dyugun","code":"dyd"},{"name":"Villa Viciosa Agta","code":"dyg"},{"name":"Djimini Senoufo","code":"dyi"},{"name":"Yanda Dom Dogon","code":"dym"},{"name":"Dhanggatti","code":"dyn"},{"name":"Dyangadi","code":"dyn"},{"name":"Jola-Fonyi","code":"dyo"},{"name":"Dyula","code":"dyu"},{"name":"Djabugay","code":"dyy"},{"name":"Dyaabugay","code":"dyy"},{"name":"Tunzu","code":"dza"},{"name":"Djiwarli","code":"dze"},{"name":"Dazaga","code":"dzg"},{"name":"Dzalakha","code":"dzl"},{"name":"Dzando","code":"dzn"},{"name":"Dzongkha","code":"dzo"},{"name":"Karenggapa","code":"eaa"},{"name":"Beginci","code":"ebc"},{"name":"Ebughu","code":"ebg"},{"name":"Eastern Bontok","code":"ebk"},{"name":"Teke-Ebo","code":"ebo"},{"name":"Ebrié","code":"ebr"},{"name":"Embu","code":"ebu"},{"name":"Kiembu","code":"ebu"},{"name":"Eteocretan","code":"ecr"},{"name":"Ecuadorian Sign Language","code":"ecs"},{"name":"Eteocypriot","code":"ecy"},{"name":"E","code":"eee"},{"name":"Efai","code":"efa"},{"name":"Efe","code":"efe"},{"name":"Efik","code":"efi"},{"name":"Ega","code":"ega"},{"name":"Emilian","code":"egl"},{"name":"Eggon","code":"ego"},{"name":"Egyptian (Ancient)","code":"egy"},{"name":"Miyakubo Sign Language","code":"ehs"},{"name":"Ehueun","code":"ehu"},{"name":"Eipomek","code":"eip"},{"name":"Eitiep","code":"eit"},{"name":"Askopan","code":"eiv"},{"name":"Ejamat","code":"eja"},{"name":"Ekajuk","code":"eka"},{"name":"Ekit","code":"eke"},{"name":"Ekari","code":"ekg"},{"name":"Eki","code":"eki"},{"name":"Standard Estonian","code":"ekk"},{"name":"Kol","code":"ekl"},{"name":"Kol (Bangladesh)","code":"ekl"},{"name":"Elip","code":"ekm"},{"name":"Koti","code":"eko"},{"name":"Ekpeye","code":"ekp"},{"name":"Yace","code":"ekr"},{"name":"Eastern Kayah","code":"eky"},{"name":"Elepi","code":"ele"},{"name":"El Hugeirat","code":"elh"},{"name":"Nding","code":"eli"},{"name":"Elkei","code":"elk"},{"name":"Greek","code":"ell"},{"name":"Modern Greek (1453-)","code":"ell"},{"name":"Eleme","code":"elm"},{"name":"El Molo","code":"elo"},{"name":"Elu","code":"elu"},{"name":"Elamite","code":"elx"},{"name":"Emai-Iuleha-Ora","code":"ema"},{"name":"Embaloh","code":"emb"},{"name":"Emerillon","code":"eme"},{"name":"Eastern Meohang","code":"emg"},{"name":"Mussau-Emira","code":"emi"},{"name":"Eastern Maninkakan","code":"emk"},{"name":"Mamulique","code":"emm"},{"name":"Eman","code":"emn"},{"name":"Northern Emberá","code":"emp"},{"name":"Eastern Minyag","code":"emq"},{"name":"Pacific Gulf Yupik","code":"ems"},{"name":"Eastern Muria","code":"emu"},{"name":"Emplawas","code":"emw"},{"name":"Erromintxela","code":"emx"},{"name":"Epigraphic Mayan","code":"emy"},{"name":"Mbessa","code":"emz"},{"name":"Apali","code":"ena"},{"name":"Markweeta","code":"enb"},{"name":"En","code":"enc"},{"name":"Ende","code":"end"},{"name":"Forest Enets","code":"enf"},{"name":"English","code":"eng"},{"name":"Tundra Enets","code":"enh"},{"name":"Enlhet","code":"enl"},{"name":"Middle English (1100-1500)","code":"enm"},{"name":"Engenni","code":"enn"},{"name":"Enggano","code":"eno"},{"name":"Enga","code":"enq"},{"name":"Emem","code":"enr"},{"name":"Emumu","code":"enr"},{"name":"Enu","code":"enu"},{"name":"Enwan (Edu State)","code":"env"},{"name":"Enwan (Akwa Ibom State)","code":"enw"},{"name":"Enxet","code":"enx"},{"name":"Beti (Côte d'Ivoire)","code":"eot"},{"name":"Epie","code":"epi"},{"name":"Esperanto","code":"epo"},{"name":"Eravallan","code":"era"},{"name":"Sie","code":"erg"},{"name":"Eruwa","code":"erh"},{"name":"Ogea","code":"eri"},{"name":"South Efate","code":"erk"},{"name":"Horpa","code":"ero"},{"name":"Erre","code":"err"},{"name":"Ersu","code":"ers"},{"name":"Eritai","code":"ert"},{"name":"Erokwanas","code":"erw"},{"name":"Ese Ejja","code":"ese"},{"name":"Aheri Gondi","code":"esg"},{"name":"Eshtehardi","code":"esh"},{"name":"North Alaskan Inupiatun","code":"esi"},{"name":"Northwest Alaska Inupiatun","code":"esk"},{"name":"Egypt Sign Language","code":"esl"},{"name":"Esuma","code":"esm"},{"name":"Salvadoran Sign Language","code":"esn"},{"name":"Estonian Sign Language","code":"eso"},{"name":"Esselen","code":"esq"},{"name":"Central Siberian Yupik","code":"ess"},{"name":"Estonian","code":"est"},{"name":"Central Yupik","code":"esu"},{"name":"Eskayan","code":"esy"},{"name":"Etebi","code":"etb"},{"name":"Etchemin","code":"etc"},{"name":"Ethiopian Sign Language","code":"eth"},{"name":"Eton (Vanuatu)","code":"etn"},{"name":"Eton (Cameroon)","code":"eto"},{"name":"Edolo","code":"etr"},{"name":"Yekhee","code":"ets"},{"name":"Etruscan","code":"ett"},{"name":"Ejagham","code":"etu"},{"name":"Eten","code":"etx"},{"name":"Semimi","code":"etz"},{"name":"Basque","code":"eus"},{"name":"Even","code":"eve"},{"name":"Uvbie","code":"evh"},{"name":"Evenki","code":"evn"},{"name":"Ewe","code":"ewe"},{"name":"Ewondo","code":"ewo"},{"name":"Extremaduran","code":"ext"},{"name":"Eyak","code":"eya"},{"name":"Keiyo","code":"eyo"},{"name":"Ezaa","code":"eza"},{"name":"Uzekwe","code":"eze"},{"name":"Fasu","code":"faa"},{"name":"Fa d'Ambu","code":"fab"},{"name":"Wagi","code":"fad"},{"name":"Fagani","code":"faf"},{"name":"Finongan","code":"fag"},{"name":"Baissa Fali","code":"fah"},{"name":"Faiwol","code":"fai"},{"name":"Faita","code":"faj"},{"name":"Fang (Cameroon)","code":"fak"},{"name":"South Fali","code":"fal"},{"name":"Fam","code":"fam"},{"name":"Fang (Equatorial Guinea)","code":"fan"},{"name":"Faroese","code":"fao"},{"name":"Paloor","code":"fap"},{"name":"Fataleka","code":"far"},{"name":"Persian","code":"fas"},{"name":"Fanti","code":"fat"},{"name":"Fayu","code":"fau"},{"name":"Fala","code":"fax"},{"name":"Southwestern Fars","code":"fay"},{"name":"Northwestern Fars","code":"faz"},{"name":"West Albay Bikol","code":"fbl"},{"name":"Quebec Sign Language","code":"fcs"},{"name":"Feroge","code":"fer"},{"name":"Foia Foia","code":"ffi"},{"name":"Maasina Fulfulde","code":"ffm"},{"name":"Fongoro","code":"fgr"},{"name":"Nobiin","code":"fia"},{"name":"Fyer","code":"fie"},{"name":"Faifi","code":"fif"},{"name":"Fijian","code":"fij"},{"name":"Filipino","code":"fil"},{"name":"Pilipino","code":"fil"},{"name":"Finnish","code":"fin"},{"name":"Fipa","code":"fip"},{"name":"Firan","code":"fir"},{"name":"Tornedalen Finnish","code":"fit"},{"name":"Fiwaga","code":"fiw"},{"name":"Kirya-Konzəl","code":"fkk"},{"name":"Kven Finnish","code":"fkv"},{"name":"Kalispel-Pend d'Oreille","code":"fla"},{"name":"Foau","code":"flh"},{"name":"Fali","code":"fli"},{"name":"North Fali","code":"fll"},{"name":"Flinders Island","code":"fln"},{"name":"Fuliiru","code":"flr"},{"name":"Flaaitaal","code":"fly"},{"name":"Tsotsitaal","code":"fly"},{"name":"Fe'fe'","code":"fmp"},{"name":"Far Western Muria","code":"fmu"},{"name":"Fanbak","code":"fnb"},{"name":"Fanagalo","code":"fng"},{"name":"Fania","code":"fni"},{"name":"Foodo","code":"fod"},{"name":"Foi","code":"foi"},{"name":"Foma","code":"fom"},{"name":"Fon","code":"fon"},{"name":"Fore","code":"for"},{"name":"Siraya","code":"fos"},{"name":"Fernando Po Creole English","code":"fpe"},{"name":"Fas","code":"fqs"},{"name":"French","code":"fra"},{"name":"Cajun French","code":"frc"},{"name":"Fordata","code":"frd"},{"name":"Frankish","code":"frk"},{"name":"Middle French (ca. 1400-1600)","code":"frm"},{"name":"Old French (842-ca. 1400)","code":"fro"},{"name":"Arpitan","code":"frp"},{"name":"Francoprovençal","code":"frp"},{"name":"Forak","code":"frq"},{"name":"Northern Frisian","code":"frr"},{"name":"Eastern Frisian","code":"frs"},{"name":"Fortsenal","code":"frt"},{"name":"Western Frisian","code":"fry"},{"name":"Finnish Sign Language","code":"fse"},{"name":"French Sign Language","code":"fsl"},{"name":"finlandssvenskt teckenspråk","code":"fss"},{"name":"Finland-Swedish Sign Language","code":"fss"},{"name":"suomenruotsalainen viittomakieli","code":"fss"},{"name":"Adamawa Fulfulde","code":"fub"},{"name":"Pulaar","code":"fuc"},{"name":"East Futuna","code":"fud"},{"name":"Borgu Fulfulde","code":"fue"},{"name":"Pular","code":"fuf"},{"name":"Western Niger Fulfulde","code":"fuh"},{"name":"Bagirmi Fulfulde","code":"fui"},{"name":"Ko","code":"fuj"},{"name":"Fulah","code":"ful"},{"name":"Fum","code":"fum"},{"name":"Fulniô","code":"fun"},{"name":"Central-Eastern Niger Fulfulde","code":"fuq"},{"name":"Friulian","code":"fur"},{"name":"Futuna-Aniwa","code":"fut"},{"name":"Furu","code":"fuu"},{"name":"Nigerian Fulfulde","code":"fuv"},{"name":"Fuyug","code":"fuy"},{"name":"Fur","code":"fvr"},{"name":"Fwâi","code":"fwa"},{"name":"Fwe","code":"fwe"},{"name":"Ga","code":"gaa"},{"name":"Gabri","code":"gab"},{"name":"Mixed Great Andamanese","code":"gac"},{"name":"Gaddang","code":"gad"},{"name":"Guarequena","code":"gae"},{"name":"Gende","code":"gaf"},{"name":"Gagauz","code":"gag"},{"name":"Alekano","code":"gah"},{"name":"Borei","code":"gai"},{"name":"Gadsup","code":"gaj"},{"name":"Gamkonora","code":"gak"},{"name":"Galolen","code":"gal"},{"name":"Kandawo","code":"gam"},{"name":"Gan Chinese","code":"gan"},{"name":"Gants","code":"gao"},{"name":"Gal","code":"gap"},{"name":"Gata'","code":"gaq"},{"name":"Galeya","code":"gar"},{"name":"Adiwasi Garasia","code":"gas"},{"name":"Kenati","code":"gat"},{"name":"Mudhili Gadaba","code":"gau"},{"name":"Nobonob","code":"gaw"},{"name":"Borana-Arsi-Guji Oromo","code":"gax"},{"name":"Gayo","code":"gay"},{"name":"West Central Oromo","code":"gaz"},{"name":"Gbaya (Central African Republic)","code":"gba"},{"name":"Kaytetye","code":"gbb"},{"name":"Karajarri","code":"gbd"},{"name":"Niksek","code":"gbe"},{"name":"Gaikundi","code":"gbf"},{"name":"Gbanziri","code":"gbg"},{"name":"Defi Gbe","code":"gbh"},{"name":"Galela","code":"gbi"},{"name":"Bodo Gadaba","code":"gbj"},{"name":"Gaddi","code":"gbk"},{"name":"Gamit","code":"gbl"},{"name":"Garhwali","code":"gbm"},{"name":"Mo'da","code":"gbn"},{"name":"Northern Grebo","code":"gbo"},{"name":"Gbaya-Bossangoa","code":"gbp"},{"name":"Gbaya-Bozoum","code":"gbq"},{"name":"Gbagyi","code":"gbr"},{"name":"Gbesi Gbe","code":"gbs"},{"name":"Gagadu","code":"gbu"},{"name":"Gbanu","code":"gbv"},{"name":"Gabi-Gabi","code":"gbw"},{"name":"Eastern Xwla Gbe","code":"gbx"},{"name":"Gbari","code":"gby"},{"name":"Zoroastrian Dari","code":"gbz"},{"name":"Mali","code":"gcc"},{"name":"Ganggalida","code":"gcd"},{"name":"Galice","code":"gce"},{"name":"Guadeloupean Creole French","code":"gcf"},{"name":"Grenadian Creole English","code":"gcl"},{"name":"Gaina","code":"gcn"},{"name":"Guianese Creole French","code":"gcr"},{"name":"Colonia Tovar German","code":"gct"},{"name":"Gade Lohar","code":"gda"},{"name":"Pottangi Ollar Gadaba","code":"gdb"},{"name":"Gugu Badhun","code":"gdc"},{"name":"Gedaged","code":"gdd"},{"name":"Gude","code":"gde"},{"name":"Guduf-Gava","code":"gdf"},{"name":"Ga'dang","code":"gdg"},{"name":"Gadjerawang","code":"gdh"},{"name":"Gajirrabeng","code":"gdh"},{"name":"Gundi","code":"gdi"},{"name":"Gurdjar","code":"gdj"},{"name":"Gadang","code":"gdk"},{"name":"Dirasha","code":"gdl"},{"name":"Laal","code":"gdm"},{"name":"Umanakaina","code":"gdn"},{"name":"Ghodoberi","code":"gdo"},{"name":"Mehri","code":"gdq"},{"name":"Wipi","code":"gdr"},{"name":"Ghandruk Sign Language","code":"gds"},{"name":"Kungardutyi","code":"gdt"},{"name":"Gudu","code":"gdu"},{"name":"Godwari","code":"gdx"},{"name":"Geruma","code":"gea"},{"name":"Kire","code":"geb"},{"name":"Gboloo Grebo","code":"gec"},{"name":"Gade","code":"ged"},{"name":"Gerai","code":"gef"},{"name":"Gengle","code":"geg"},{"name":"Hutterisch","code":"geh"},{"name":"Hutterite German","code":"geh"},{"name":"Gebe","code":"gei"},{"name":"Gen","code":"gej"},{"name":"Ywom","code":"gek"},{"name":"ut-Ma'in","code":"gel"},{"name":"Geme","code":"geq"},{"name":"Geser-Gorom","code":"ges"},{"name":"Eviya","code":"gev"},{"name":"Gera","code":"gew"},{"name":"Garre","code":"gex"},{"name":"Enya","code":"gey"},{"name":"Geez","code":"gez"},{"name":"Patpatar","code":"gfk"},{"name":"Gafat","code":"gft"},{"name":"Gao","code":"gga"},{"name":"Gbii","code":"ggb"},{"name":"Gugadj","code":"ggd"},{"name":"Gurr-goni","code":"gge"},{"name":"Gurgula","code":"ggg"},{"name":"Kungarakany","code":"ggk"},{"name":"Ganglau","code":"ggl"},{"name":"Gitua","code":"ggt"},{"name":"Gagu","code":"ggu"},{"name":"Gban","code":"ggu"},{"name":"Gogodala","code":"ggw"},{"name":"Ghadamès","code":"gha"},{"name":"Hiberno-Scottish Gaelic","code":"ghc"},{"name":"Southern Ghale","code":"ghe"},{"name":"Northern Ghale","code":"ghh"},{"name":"Geko Karen","code":"ghk"},{"name":"Ghulfan","code":"ghl"},{"name":"Ghanongga","code":"ghn"},{"name":"Ghomara","code":"gho"},{"name":"Ghera","code":"ghr"},{"name":"Guhu-Samane","code":"ghs"},{"name":"Kuke","code":"ght"},{"name":"Kutang Ghale","code":"ght"},{"name":"Kija","code":"gia"},{"name":"Gibanawa","code":"gib"},{"name":"Gail","code":"gic"},{"name":"Gidar","code":"gid"},{"name":"Gaɓogbo","code":"gie"},{"name":"Guébie","code":"gie"},{"name":"Goaria","code":"gig"},{"name":"Githabul","code":"gih"},{"name":"Girirra","code":"gii"},{"name":"Gilbertese","code":"gil"},{"name":"Gimi (Eastern Highlands)","code":"gim"},{"name":"Hinukh","code":"gin"},{"name":"Gimi (West New Britain)","code":"gip"},{"name":"Green Gelao","code":"giq"},{"name":"Red Gelao","code":"gir"},{"name":"North Giziga","code":"gis"},{"name":"Gitxsan","code":"git"},{"name":"Mulao","code":"giu"},{"name":"White Gelao","code":"giw"},{"name":"Gilima","code":"gix"},{"name":"Giyug","code":"giy"},{"name":"South Giziga","code":"giz"},{"name":"Kachi Koli","code":"gjk"},{"name":"Gunditjmara","code":"gjm"},{"name":"Gonja","code":"gjn"},{"name":"Gurindji Kriol","code":"gjr"},{"name":"Gujari","code":"gju"},{"name":"Guya","code":"gka"},{"name":"Magɨ (Madang Province)","code":"gkd"},{"name":"Ndai","code":"gke"},{"name":"Gokana","code":"gkn"},{"name":"Kok-Nar","code":"gko"},{"name":"Guinea Kpelle","code":"gkp"},{"name":"ǂUngkue","code":"gku"},{"name":"Gaelic","code":"gla"},{"name":"Scottish Gaelic","code":"gla"},{"name":"Belning","code":"glb"},{"name":"Bon Gula","code":"glc"},{"name":"Nanai","code":"gld"},{"name":"Irish","code":"gle"},{"name":"Galician","code":"glg"},{"name":"Northwest Pashai","code":"glh"},{"name":"Northwest Pashayi","code":"glh"},{"name":"Gula Iro","code":"glj"},{"name":"Gilaki","code":"glk"},{"name":"Garlali","code":"gll"},{"name":"Galambu","code":"glo"},{"name":"Glaro-Twabo","code":"glr"},{"name":"Gula (Chad)","code":"glu"},{"name":"Manx","code":"glv"},{"name":"Glavda","code":"glw"},{"name":"Gule","code":"gly"},{"name":"Gambera","code":"gma"},{"name":"Gula'alaa","code":"gmb"},{"name":"Mághdì","code":"gmd"},{"name":"Magɨyi","code":"gmg"},{"name":"Middle High German (ca. 1050-1500)","code":"gmh"},{"name":"Middle Low German","code":"gml"},{"name":"Gbaya-Mbodomo","code":"gmm"},{"name":"Gimnime","code":"gmn"},{"name":"Mirning","code":"gmr"},{"name":"Mirniny","code":"gmr"},{"name":"Gumalu","code":"gmu"},{"name":"Gamo","code":"gmv"},{"name":"Magoma","code":"gmx"},{"name":"Mycenaean Greek","code":"gmy"},{"name":"Mgbolizhia","code":"gmz"},{"name":"Kaansa","code":"gna"},{"name":"Gangte","code":"gnb"},{"name":"Guanche","code":"gnc"},{"name":"Zulgo-Gemzek","code":"gnd"},{"name":"Ganang","code":"gne"},{"name":"Ngangam","code":"gng"},{"name":"Lere","code":"gnh"},{"name":"Gooniyandi","code":"gni"},{"name":"Ngen","code":"gnj"},{"name":"ǁGana","code":"gnk"},{"name":"Gangulu","code":"gnl"},{"name":"Ginuman","code":"gnm"},{"name":"Gumatj","code":"gnn"},{"name":"Northern Gondi","code":"gno"},{"name":"Gana","code":"gnq"},{"name":"Gureng Gureng","code":"gnr"},{"name":"Guntai","code":"gnt"},{"name":"Gnau","code":"gnu"},{"name":"Western Bolivian Guaraní","code":"gnw"},{"name":"Ganzi","code":"gnz"},{"name":"Guro","code":"goa"},{"name":"Playero","code":"gob"},{"name":"Gorakor","code":"goc"},{"name":"Godié","code":"god"},{"name":"Gongduk","code":"goe"},{"name":"Gofa","code":"gof"},{"name":"Gogo","code":"gog"},{"name":"Old High German (ca. 750-1050)","code":"goh"},{"name":"Gobasi","code":"goi"},{"name":"Gowlan","code":"goj"},{"name":"Gowli","code":"gok"},{"name":"Gola","code":"gol"},{"name":"Goan Konkani","code":"gom"},{"name":"Gondi","code":"gon"},{"name":"Gone Dau","code":"goo"},{"name":"Yeretuar","code":"gop"},{"name":"Gorap","code":"goq"},{"name":"Gorontalo","code":"gor"},{"name":"Gronings","code":"gos"},{"name":"Gothic","code":"got"},{"name":"Gavar","code":"gou"},{"name":"Gorowa","code":"gow"},{"name":"Gobu","code":"gox"},{"name":"Goundo","code":"goy"},{"name":"Gozarkhani","code":"goz"},{"name":"Gupa-Abawa","code":"gpa"},{"name":"Ghanaian Pidgin English","code":"gpe"},{"name":"Taiap","code":"gpn"},{"name":"Ga'anda","code":"gqa"},{"name":"Guiqiong","code":"gqi"},{"name":"Guana (Brazil)","code":"gqn"},{"name":"Gor","code":"gqr"},{"name":"Qau","code":"gqu"},{"name":"Rajput Garasia","code":"gra"},{"name":"Grebo","code":"grb"},{"name":"Ancient Greek (to 1453)","code":"grc"},{"name":"Guruntum-Mbaaru","code":"grd"},{"name":"Madi","code":"grg"},{"name":"Gbiri-Niragu","code":"grh"},{"name":"Ghari","code":"gri"},{"name":"Southern Grebo","code":"grj"},{"name":"Kota Marudu Talantang","code":"grm"},{"name":"Guarani","code":"grn"},{"name":"Groma","code":"gro"},{"name":"Gorovu","code":"grq"},{"name":"Taznatit","code":"grr"},{"name":"Gresi","code":"grs"},{"name":"Garo","code":"grt"},{"name":"Kistane","code":"gru"},{"name":"Central Grebo","code":"grv"},{"name":"Gweda","code":"grw"},{"name":"Guriaso","code":"grx"},{"name":"Barclayville Grebo","code":"gry"},{"name":"Guramalum","code":"grz"},{"name":"Ghanaian Sign Language","code":"gse"},{"name":"German Sign Language","code":"gsg"},{"name":"Gusilay","code":"gsl"},{"name":"Guatemalan Sign Language","code":"gsm"},{"name":"Gusan","code":"gsn"},{"name":"Nema","code":"gsn"},{"name":"Southwest Gbaya","code":"gso"},{"name":"Wasembo","code":"gsp"},{"name":"Greek Sign Language","code":"gss"},{"name":"Alemannic","code":"gsw"},{"name":"Alsatian","code":"gsw"},{"name":"Swiss German","code":"gsw"},{"name":"Guató","code":"gta"},{"name":"Aghu-Tharnggala","code":"gtu"},{"name":"Shiki","code":"gua"},{"name":"Guajajára","code":"gub"},{"name":"Wayuu","code":"guc"},{"name":"Yocoboué Dida","code":"gud"},{"name":"Gurindji","code":"gue"},{"name":"Gupapuyngu","code":"guf"},{"name":"Paraguayan Guaraní","code":"gug"},{"name":"Guahibo","code":"guh"},{"name":"Eastern Bolivian Guaraní","code":"gui"},{"name":"Gujarati","code":"guj"},{"name":"Gumuz","code":"guk"},{"name":"Sea Island Creole English","code":"gul"},{"name":"Guambiano","code":"gum"},{"name":"Mbyá Guaraní","code":"gun"},{"name":"Guayabero","code":"guo"},{"name":"Gunwinggu","code":"gup"},{"name":"Aché","code":"guq"},{"name":"Farefare","code":"gur"},{"name":"Guinean Sign Language","code":"gus"},{"name":"Maléku Jaíka","code":"gut"},{"name":"Yanomamö","code":"guu"},{"name":"Gun","code":"guw"},{"name":"Gourmanchéma","code":"gux"},{"name":"Ekegusii","code":"guz"},{"name":"Gusii","code":"guz"},{"name":"Guana (Paraguay)","code":"gva"},{"name":"Guanano","code":"gvc"},{"name":"Duwet","code":"gve"},{"name":"Golin","code":"gvf"},{"name":"Guajá","code":"gvj"},{"name":"Gulay","code":"gvl"},{"name":"Gurmana","code":"gvm"},{"name":"Kuku-Yalanji","code":"gvn"},{"name":"Gavião Do Jiparaná","code":"gvo"},{"name":"Pará Gavião","code":"gvp"},{"name":"Gurung","code":"gvr"},{"name":"Gumawana","code":"gvs"},{"name":"Guyani","code":"gvy"},{"name":"Mbato","code":"gwa"},{"name":"Gwa","code":"gwb"},{"name":"Gawri","code":"gwc"},{"name":"Kalami","code":"gwc"},{"name":"Gawwada","code":"gwd"},{"name":"Gweno","code":"gwe"},{"name":"Gowro","code":"gwf"},{"name":"Moo","code":"gwg"},{"name":"Gwichʼin","code":"gwi"},{"name":"ǀGwi","code":"gwj"},{"name":"Awngthim","code":"gwm"},{"name":"Gwandara","code":"gwn"},{"name":"Gwere","code":"gwr"},{"name":"Gawar-Bati","code":"gwt"},{"name":"Guwamu","code":"gwu"},{"name":"Kwini","code":"gww"},{"name":"Gua","code":"gwx"},{"name":"Wè Southern","code":"gxx"},{"name":"Northwest Gbaya","code":"gya"},{"name":"Garus","code":"gyb"},{"name":"Kayardild","code":"gyd"},{"name":"Gyem","code":"gye"},{"name":"Gungabula","code":"gyf"},{"name":"Gbayi","code":"gyg"},{"name":"Gyele","code":"gyi"},{"name":"Gayil","code":"gyl"},{"name":"Ngäbere","code":"gym"},{"name":"Guyanese Creole English","code":"gyn"},{"name":"Gyalsumdo","code":"gyo"},{"name":"Guarayu","code":"gyr"},{"name":"Gunya","code":"gyy"},{"name":"Geji","code":"gyz"},{"name":"Gyaazi","code":"gyz"},{"name":"Ganza","code":"gza"},{"name":"Gazi","code":"gzi"},{"name":"Gane","code":"gzn"},{"name":"Han","code":"haa"},{"name":"Hanoi Sign Language","code":"hab"},{"name":"Gurani","code":"hac"},{"name":"Hatam","code":"had"},{"name":"Eastern Oromo","code":"hae"},{"name":"Haiphong Sign Language","code":"haf"},{"name":"Hanga","code":"hag"},{"name":"Hahon","code":"hah"},{"name":"Haida","code":"hai"},{"name":"Hajong","code":"haj"},{"name":"Hakka Chinese","code":"hak"},{"name":"Halang","code":"hal"},{"name":"Hewa","code":"ham"},{"name":"Hangaza","code":"han"},{"name":"Hakö","code":"hao"},{"name":"Hupla","code":"hap"},{"name":"Ha","code":"haq"},{"name":"Harari","code":"har"},{"name":"Haisla","code":"has"},{"name":"Haitian","code":"hat"},{"name":"Haitian Creole","code":"hat"},{"name":"Hausa","code":"hau"},{"name":"Havu","code":"hav"},{"name":"Hawaiian","code":"haw"},{"name":"Southern Haida","code":"hax"},{"name":"Haya","code":"hay"},{"name":"Hazaragi","code":"haz"},{"name":"Hamba","code":"hba"},{"name":"Huba","code":"hbb"},{"name":"Heiban","code":"hbn"},{"name":"Ancient Hebrew","code":"hbo"},{"name":"Serbo-Croatian","code":"hbs"},{"name":"Habu","code":"hbu"},{"name":"Andaman Creole Hindi","code":"hca"},{"name":"Huichol","code":"hch"},{"name":"Northern Haida","code":"hdn"},{"name":"Honduras Sign Language","code":"hds"},{"name":"Hadiyya","code":"hdy"},{"name":"Northern Qiandong Miao","code":"hea"},{"name":"Hebrew","code":"heb"},{"name":"Herdé","code":"hed"},{"name":"Helong","code":"heg"},{"name":"Hehe","code":"heh"},{"name":"Heiltsuk","code":"hei"},{"name":"Hemba","code":"hem"},{"name":"Herero","code":"her"},{"name":"Haiǁom","code":"hgm"},{"name":"Haigwai","code":"hgw"},{"name":"Hoia Hoia","code":"hhi"},{"name":"Kerak","code":"hhr"},{"name":"Hoyahoya","code":"hhy"},{"name":"Lamang","code":"hia"},{"name":"Hibito","code":"hib"},{"name":"Hidatsa","code":"hid"},{"name":"Fiji Hindi","code":"hif"},{"name":"Kamwe","code":"hig"},{"name":"Pamosu","code":"hih"},{"name":"Hinduri","code":"hii"},{"name":"Hijuk","code":"hij"},{"name":"Seit-Kaitetu","code":"hik"},{"name":"Hiligaynon","code":"hil"},{"name":"Hindi","code":"hin"},{"name":"Tsoa","code":"hio"},{"name":"Himarimã","code":"hir"},{"name":"Hittite","code":"hit"},{"name":"Hiw","code":"hiw"},{"name":"Hixkaryána","code":"hix"},{"name":"Haji","code":"hji"},{"name":"Kahe","code":"hka"},{"name":"Hunde","code":"hke"},{"name":"Khah","code":"hkh"},{"name":"Poguli","code":"hkh"},{"name":"Hunjara-Kaina Ke","code":"hkk"},{"name":"Mel-Khaonh","code":"hkn"},{"name":"Heung Kong Sau Yue","code":"hks"},{"name":"Hong Kong Sign Language","code":"hks"},{"name":"Halia","code":"hla"},{"name":"Halbi","code":"hlb"},{"name":"Halang Doan","code":"hld"},{"name":"Hlersu","code":"hle"},{"name":"Matu Chin","code":"hlt"},{"name":"Hieroglyphic Luwian","code":"hlu"},{"name":"Southern Mashan Hmong","code":"hma"},{"name":"Southern Mashan Miao","code":"hma"},{"name":"Humburi Senni Songhay","code":"hmb"},{"name":"Central Huishui Hmong","code":"hmc"},{"name":"Central Huishui Miao","code":"hmc"},{"name":"A-hmaos","code":"hmd"},{"name":"Da-Hua Miao","code":"hmd"},{"name":"Large Flowery Miao","code":"hmd"},{"name":"Eastern Huishui Hmong","code":"hme"},{"name":"Eastern Huishui Miao","code":"hme"},{"name":"Hmong Don","code":"hmf"},{"name":"Southwestern Guiyang Hmong","code":"hmg"},{"name":"Southwestern Huishui Hmong","code":"hmh"},{"name":"Southwestern Huishui Miao","code":"hmh"},{"name":"Northern Huishui Hmong","code":"hmi"},{"name":"Northern Huishui Miao","code":"hmi"},{"name":"Ge","code":"hmj"},{"name":"Gejia","code":"hmj"},{"name":"Maek","code":"hmk"},{"name":"Luopohe Hmong","code":"hml"},{"name":"Luopohe Miao","code":"hml"},{"name":"Central Mashan Hmong","code":"hmm"},{"name":"Central Mashan Miao","code":"hmm"},{"name":"Hmong","code":"hmn"},{"name":"Mong","code":"hmn"},{"name":"Hiri Motu","code":"hmo"},{"name":"Northern Mashan Hmong","code":"hmp"},{"name":"Northern Mashan Miao","code":"hmp"},{"name":"Eastern Qiandong Miao","code":"hmq"},{"name":"Hmar","code":"hmr"},{"name":"Southern Qiandong Miao","code":"hms"},{"name":"Hamtai","code":"hmt"},{"name":"Hamap","code":"hmu"},{"name":"Hmong Dô","code":"hmv"},{"name":"Western Mashan Hmong","code":"hmw"},{"name":"Western Mashan Miao","code":"hmw"},{"name":"Southern Guiyang Hmong","code":"hmy"},{"name":"Southern Guiyang Miao","code":"hmy"},{"name":"Hmong Shua","code":"hmz"},{"name":"Sinicized Miao","code":"hmz"},{"name":"Mina (Cameroon)","code":"hna"},{"name":"Southern Hindko","code":"hnd"},{"name":"Chhattisgarhi","code":"hne"},{"name":"Hungu","code":"hng"},{"name":"ǁAni","code":"hnh"},{"name":"Hani","code":"hni"},{"name":"Hmong Njua","code":"hnj"},{"name":"Mong Leng","code":"hnj"},{"name":"Mong Njua","code":"hnj"},{"name":"Hanunoo","code":"hnn"},{"name":"Northern Hindko","code":"hno"},{"name":"Caribbean Hindustani","code":"hns"},{"name":"Hung","code":"hnu"},{"name":"Hoava","code":"hoa"},{"name":"Mari (Madang Province)","code":"hob"},{"name":"Ho","code":"hoc"},{"name":"Holma","code":"hod"},{"name":"Horom","code":"hoe"},{"name":"Hobyót","code":"hoh"},{"name":"Holikachuk","code":"hoi"},{"name":"Hadothi","code":"hoj"},{"name":"Haroti","code":"hoj"},{"name":"Holu","code":"hol"},{"name":"Homa","code":"hom"},{"name":"Holoholo","code":"hoo"},{"name":"Hopi","code":"hop"},{"name":"Horo","code":"hor"},{"name":"Ho Chi Minh City Sign Language","code":"hos"},{"name":"Hote","code":"hot"},{"name":"Malê","code":"hot"},{"name":"Hovongan","code":"hov"},{"name":"Honi","code":"how"},{"name":"Holiya","code":"hoy"},{"name":"Hozo","code":"hoz"},{"name":"Hpon","code":"hpo"},{"name":"Hawai'i Pidgin Sign Language","code":"hps"},{"name":"Hawai'i Sign Language (HSL)","code":"hps"},{"name":"Hrangkhol","code":"hra"},{"name":"Niwer Mil","code":"hrc"},{"name":"Hre","code":"hre"},{"name":"Haruku","code":"hrk"},{"name":"Horned Miao","code":"hrm"},{"name":"Haroi","code":"hro"},{"name":"Nhirrpi","code":"hrp"},{"name":"Hértevin","code":"hrt"},{"name":"Hruso","code":"hru"},{"name":"Croatian","code":"hrv"},{"name":"Warwar Feni","code":"hrw"},{"name":"Hunsrik","code":"hrx"},{"name":"Harzani","code":"hrz"},{"name":"Upper Sorbian","code":"hsb"},{"name":"Hungarian Sign Language","code":"hsh"},{"name":"Hausa Sign Language","code":"hsl"},{"name":"Xiang Chinese","code":"hsn"},{"name":"Harsusi","code":"hss"},{"name":"Hoti","code":"hti"},{"name":"Minica Huitoto","code":"hto"},{"name":"Hadza","code":"hts"},{"name":"Hitu","code":"htu"},{"name":"Middle Hittite","code":"htx"},{"name":"Huambisa","code":"hub"},{"name":"ǂ'Amkhoe","code":"huc"},{"name":"ǂHua","code":"huc"},{"name":"Huaulu","code":"hud"},{"name":"San Francisco Del Mar Huave","code":"hue"},{"name":"Humene","code":"huf"},{"name":"Huachipaeri","code":"hug"},{"name":"Huilliche","code":"huh"},{"name":"Huli","code":"hui"},{"name":"Northern Guiyang Hmong","code":"huj"},{"name":"Northern Guiyang Miao","code":"huj"},{"name":"Hulung","code":"huk"},{"name":"Hula","code":"hul"},{"name":"Hungana","code":"hum"},{"name":"Hungarian","code":"hun"},{"name":"Hu","code":"huo"},{"name":"Hupa","code":"hup"},{"name":"Tsat","code":"huq"},{"name":"Halkomelem","code":"hur"},{"name":"Huastec","code":"hus"},{"name":"Humla","code":"hut"},{"name":"Murui Huitoto","code":"huu"},{"name":"San Mateo Del Mar Huave","code":"huv"},{"name":"Hukumina","code":"huw"},{"name":"Nüpode Huitoto","code":"hux"},{"name":"Hulaulá","code":"huy"},{"name":"Hunzib","code":"huz"},{"name":"Haitian Vodoun Culture Language","code":"hvc"},{"name":"San Dionisio Del Mar Huave","code":"hve"},{"name":"Haveke","code":"hvk"},{"name":"Sabu","code":"hvn"},{"name":"Santa María Del Mar Huave","code":"hvv"},{"name":"Wané","code":"hwa"},{"name":"Hawai'i Creole English","code":"hwc"},{"name":"Hawai'i Pidgin","code":"hwc"},{"name":"Hwana","code":"hwo"},{"name":"Hya","code":"hya"},{"name":"Armenian","code":"hye"},{"name":"Western Armenian","code":"hyw"},{"name":"Iaai","code":"iai"},{"name":"Iatmul","code":"ian"},{"name":"Purari","code":"iar"},{"name":"Iban","code":"iba"},{"name":"Ibibio","code":"ibb"},{"name":"Iwaidja","code":"ibd"},{"name":"Akpes","code":"ibe"},{"name":"Ibanag","code":"ibg"},{"name":"Bih","code":"ibh"},{"name":"Ibaloi","code":"ibl"},{"name":"Agoi","code":"ibm"},{"name":"Ibino","code":"ibn"},{"name":"Igbo","code":"ibo"},{"name":"Ibuoro","code":"ibr"},{"name":"Ibu","code":"ibu"},{"name":"Ibani","code":"iby"},{"name":"Ede Ica","code":"ica"},{"name":"Etkywan","code":"ich"},{"name":"Icelandic Sign Language","code":"icl"},{"name":"Islander Creole English","code":"icr"},{"name":"Idakho-Isukha-Tiriki","code":"ida"},{"name":"Luidakho-Luisukha-Lutirichi","code":"ida"},{"name":"Indo-Portuguese","code":"idb"},{"name":"Ajiya","code":"idc"},{"name":"Idon","code":"idc"},{"name":"Ede Idaca","code":"idd"},{"name":"Idere","code":"ide"},{"name":"Idi","code":"idi"},{"name":"Ido","code":"ido"},{"name":"Indri","code":"idr"},{"name":"Idesa","code":"ids"},{"name":"Idaté","code":"idt"},{"name":"Idoma","code":"idu"},{"name":"Amganad Ifugao","code":"ifa"},{"name":"Ayangan Ifugao","code":"ifb"},{"name":"Batad Ifugao","code":"ifb"},{"name":"Ifè","code":"ife"},{"name":"Ifo","code":"iff"},{"name":"Tuwali Ifugao","code":"ifk"},{"name":"Teke-Fuumu","code":"ifm"},{"name":"Mayoyao Ifugao","code":"ifu"},{"name":"Keley-I Kallahan","code":"ify"},{"name":"Ebira","code":"igb"},{"name":"Igede","code":"ige"},{"name":"Igana","code":"igg"},{"name":"Igala","code":"igl"},{"name":"Kanggape","code":"igm"},{"name":"Ignaciano","code":"ign"},{"name":"Isebe","code":"igo"},{"name":"Interglossa","code":"igs"},{"name":"Igwe","code":"igw"},{"name":"Iha Based Pidgin","code":"ihb"},{"name":"Ihievbe","code":"ihi"},{"name":"Iha","code":"ihp"},{"name":"Bidhawal","code":"ihw"},{"name":"Nuosu","code":"iii"},{"name":"Sichuan Yi","code":"iii"},{"name":"Thiin","code":"iin"},{"name":"Izon","code":"ijc"},{"name":"Biseni","code":"ije"},{"name":"Ede Ije","code":"ijj"},{"name":"Kalabari","code":"ijn"},{"name":"Southeast Ijo","code":"ijs"},{"name":"Eastern Canadian Inuktitut","code":"ike"},{"name":"Iko","code":"iki"},{"name":"Ika","code":"ikk"},{"name":"Ikulu","code":"ikl"},{"name":"Olulumo-Ikom","code":"iko"},{"name":"Ikpeshi","code":"ikp"},{"name":"Ikaranggal","code":"ikr"},{"name":"Inuit Sign Language","code":"iks"},{"name":"Inuinnaqtun","code":"ikt"},{"name":"Western Canadian Inuktitut","code":"ikt"},{"name":"Inuktitut","code":"iku"},{"name":"Iku-Gora-Ankwa","code":"ikv"},{"name":"Ikwere","code":"ikw"},{"name":"Ik","code":"ikx"},{"name":"Ikizu","code":"ikz"},{"name":"Ile Ape","code":"ila"},{"name":"Ila","code":"ilb"},{"name":"Interlingue","code":"ile"},{"name":"Occidental","code":"ile"},{"name":"Garig-Ilgar","code":"ilg"},{"name":"Ili Turki","code":"ili"},{"name":"Ilongot","code":"ilk"},{"name":"Iranun (Malaysia)","code":"ilm"},{"name":"Iloko","code":"ilo"},{"name":"Iranun (Philippines)","code":"ilp"},{"name":"International Sign","code":"ils"},{"name":"Ili'uun","code":"ilu"},{"name":"Ilue","code":"ilv"},{"name":"Mala Malasar","code":"ima"},{"name":"Anamgura","code":"imi"},{"name":"Miluk","code":"iml"},{"name":"Imonda","code":"imn"},{"name":"Imbongu","code":"imo"},{"name":"Imroing","code":"imr"},{"name":"Marsian","code":"ims"},{"name":"Milyan","code":"imy"},{"name":"Interlingua (International Auxiliary Language Association)","code":"ina"},{"name":"Inga","code":"inb"},{"name":"Indonesian","code":"ind"},{"name":"Degexit'an","code":"ing"},{"name":"Ingush","code":"inh"},{"name":"Jungle Inga","code":"inj"},{"name":"Indonesian Sign Language","code":"inl"},{"name":"Minaean","code":"inm"},{"name":"Isinai","code":"inn"},{"name":"Inoke-Yate","code":"ino"},{"name":"Iñapari","code":"inp"},{"name":"Indian Sign Language","code":"ins"},{"name":"Intha","code":"int"},{"name":"Ineseño","code":"inz"},{"name":"Inor","code":"ior"},{"name":"Tuma-Irumu","code":"iou"},{"name":"Iowa-Oto","code":"iow"},{"name":"Ipili","code":"ipi"},{"name":"Inupiaq","code":"ipk"},{"name":"Ipiko","code":"ipo"},{"name":"Iquito","code":"iqu"},{"name":"Ikwo","code":"iqw"},{"name":"Iresim","code":"ire"},{"name":"Irarutu","code":"irh"},{"name":"Irigwe","code":"iri"},{"name":"Rigwe","code":"iri"},{"name":"Iraqw","code":"irk"},{"name":"Irántxe","code":"irn"},{"name":"Ir","code":"irr"},{"name":"Irula","code":"iru"},{"name":"Kamberau","code":"irx"},{"name":"Iraya","code":"iry"},{"name":"Isabi","code":"isa"},{"name":"Isconahua","code":"isc"},{"name":"Isnag","code":"isd"},{"name":"Italian Sign Language","code":"ise"},{"name":"Irish Sign Language","code":"isg"},{"name":"Esan","code":"ish"},{"name":"Nkem-Nkum","code":"isi"},{"name":"Ishkashimi","code":"isk"},{"name":"Icelandic","code":"isl"},{"name":"Masimasi","code":"ism"},{"name":"Isanzu","code":"isn"},{"name":"Isoko","code":"iso"},{"name":"Israeli Sign Language","code":"isr"},{"name":"Istriot","code":"ist"},{"name":"Isu (Menchum Division)","code":"isu"},{"name":"Italian","code":"ita"},{"name":"Binongan Itneg","code":"itb"},{"name":"Southern Tidung","code":"itd"},{"name":"Itene","code":"ite"},{"name":"Inlaod Itneg","code":"iti"},{"name":"Judeo-Italian","code":"itk"},{"name":"Itelmen","code":"itl"},{"name":"Itu Mbon Uzo","code":"itm"},{"name":"Itonama","code":"ito"},{"name":"Iteri","code":"itr"},{"name":"Isekiri","code":"its"},{"name":"Maeng Itneg","code":"itt"},{"name":"Itawit","code":"itv"},{"name":"Ito","code":"itw"},{"name":"Itik","code":"itx"},{"name":"Moyadan Itneg","code":"ity"},{"name":"Itzá","code":"itz"},{"name":"Iu Mien","code":"ium"},{"name":"Ibatan","code":"ivb"},{"name":"Ivatan","code":"ivv"},{"name":"I-Wak","code":"iwk"},{"name":"Iwam","code":"iwm"},{"name":"Iwur","code":"iwo"},{"name":"Sepik Iwam","code":"iws"},{"name":"Ixcatec","code":"ixc"},{"name":"Ixil","code":"ixl"},{"name":"Iyayu","code":"iya"},{"name":"Mesaka","code":"iyo"},{"name":"Yaka (Congo)","code":"iyx"},{"name":"Ingrian","code":"izh"},{"name":"Izere","code":"izr"},{"name":"Izii","code":"izz"},{"name":"Jamamadí","code":"jaa"},{"name":"Hyam","code":"jab"},{"name":"Jakalteko","code":"jac"},{"name":"Popti'","code":"jac"},{"name":"Jahanka","code":"jad"},{"name":"Yabem","code":"jae"},{"name":"Jara","code":"jaf"},{"name":"Jah Hut","code":"jah"},{"name":"Zazao","code":"jaj"},{"name":"Jakun","code":"jak"},{"name":"Yalahatan","code":"jal"},{"name":"Jamaican Creole English","code":"jam"},{"name":"Jandai","code":"jan"},{"name":"Yanyuwa","code":"jao"},{"name":"Yaqay","code":"jaq"},{"name":"New Caledonian Javanese","code":"jas"},{"name":"Jakati","code":"jat"},{"name":"Yaur","code":"jau"},{"name":"Javanese","code":"jav"},{"name":"Jambi Malay","code":"jax"},{"name":"Nhangu","code":"jay"},{"name":"Yan-nhangu","code":"jay"},{"name":"Jawe","code":"jaz"},{"name":"Judeo-Berber","code":"jbe"},{"name":"Badjiri","code":"jbi"},{"name":"Arandai","code":"jbj"},{"name":"Barikewa","code":"jbk"},{"name":"Bijim","code":"jbm"},{"name":"Nafusi","code":"jbn"},{"name":"Lojban","code":"jbo"},{"name":"Jofotek-Bromnya","code":"jbr"},{"name":"Jabutí","code":"jbt"},{"name":"Jukun Takum","code":"jbu"},{"name":"Yawijibaya","code":"jbw"},{"name":"Jamaican Country Sign Language","code":"jcs"},{"name":"Krymchak","code":"jct"},{"name":"Jad","code":"jda"},{"name":"Jadgali","code":"jdg"},{"name":"Judeo-Tat","code":"jdt"},{"name":"Jebero","code":"jeb"},{"name":"Jerung","code":"jee"},{"name":"Jeh","code":"jeh"},{"name":"Yei","code":"jei"},{"name":"Jeri Kuo","code":"jek"},{"name":"Yelmek","code":"jel"},{"name":"Dza","code":"jen"},{"name":"Jere","code":"jer"},{"name":"Manem","code":"jet"},{"name":"Jonkor Bourmataguil","code":"jeu"},{"name":"Ngbee","code":"jgb"},{"name":"Judeo-Georgian","code":"jge"},{"name":"Gwak","code":"jgk"},{"name":"Ngomba","code":"jgo"},{"name":"Jehai","code":"jhi"},{"name":"Jhankot Sign Language","code":"jhs"},{"name":"Jina","code":"jia"},{"name":"Jibu","code":"jib"},{"name":"Tol","code":"jic"},{"name":"Bu (Kaduna State)","code":"jid"},{"name":"Jilbe","code":"jie"},{"name":"Djingili","code":"jig"},{"name":"Jingulu","code":"jig"},{"name":"Shangzhai","code":"jih"},{"name":"sTodsde","code":"jih"},{"name":"Jiiddu","code":"jii"},{"name":"Jilim","code":"jil"},{"name":"Jimi (Cameroon)","code":"jim"},{"name":"Jiamao","code":"jio"},{"name":"Guanyinqiao","code":"jiq"},{"name":"Lavrung","code":"jiq"},{"name":"Jita","code":"jit"},{"name":"Youle Jinuo","code":"jiu"},{"name":"Shuar","code":"jiv"},{"name":"Buyuan Jinuo","code":"jiy"},{"name":"Jejueo","code":"jje"},{"name":"Bankal","code":"jjr"},{"name":"Kaera","code":"jka"},{"name":"Mobwa Karen","code":"jkm"},{"name":"Kubo","code":"jko"},{"name":"Paku Karen","code":"jkp"},{"name":"Koro (India)","code":"jkr"},{"name":"Amami Koniya Sign Language","code":"jks"},{"name":"Labir","code":"jku"},{"name":"Ngile","code":"jle"},{"name":"Jamaican Sign Language","code":"jls"},{"name":"Dima","code":"jma"},{"name":"Zumbun","code":"jmb"},{"name":"Machame","code":"jmc"},{"name":"Yamdena","code":"jmd"},{"name":"Jimi (Nigeria)","code":"jmi"},{"name":"Jumli","code":"jml"},{"name":"Makuri Naga","code":"jmn"},{"name":"Kamara","code":"jmr"},{"name":"Mashi (Nigeria)","code":"jms"},{"name":"Mouwase","code":"jmw"},{"name":"Western Juxtlahuaca Mixtec","code":"jmx"},{"name":"Jangshung","code":"jna"},{"name":"Jandavra","code":"jnd"},{"name":"Yangman","code":"jng"},{"name":"Janji","code":"jni"},{"name":"Yemsa","code":"jnj"},{"name":"Rawat","code":"jnl"},{"name":"Jaunsari","code":"jns"},{"name":"Joba","code":"job"},{"name":"Wojenaka","code":"jod"},{"name":"Jogi","code":"jog"},{"name":"Jorá","code":"jor"},{"name":"Jordanian Sign Language","code":"jos"},{"name":"Jowulu","code":"jow"},{"name":"Jewish Palestinian Aramaic","code":"jpa"},{"name":"Japanese","code":"jpn"},{"name":"Judeo-Persian","code":"jpr"},{"name":"Jaqaru","code":"jqr"},{"name":"Jarai","code":"jra"},{"name":"Judeo-Arabic","code":"jrb"},{"name":"Jiru","code":"jrr"},{"name":"Jakattoe","code":"jrt"},{"name":"Japrería","code":"jru"},{"name":"Japanese Sign Language","code":"jsl"},{"name":"Júma","code":"jua"},{"name":"Wannu","code":"jub"},{"name":"Jurchen","code":"juc"},{"name":"Worodougou","code":"jud"},{"name":"Hõne","code":"juh"},{"name":"Ngadjuri","code":"jui"},{"name":"Wapan","code":"juk"},{"name":"Jirel","code":"jul"},{"name":"Jumjum","code":"jum"},{"name":"Juang","code":"jun"},{"name":"Jiba","code":"juo"},{"name":"Hupdë","code":"jup"},{"name":"Jurúna","code":"jur"},{"name":"Jumla Sign Language","code":"jus"},{"name":"Jutish","code":"jut"},{"name":"Ju","code":"juu"},{"name":"Wãpha","code":"juw"},{"name":"Juray","code":"juy"},{"name":"Javindo","code":"jvd"},{"name":"Caribbean Javanese","code":"jvn"},{"name":"Jwira-Pepesa","code":"jwi"},{"name":"Jiarong","code":"jya"},{"name":"Judeo-Yemeni Arabic","code":"jye"},{"name":"Jaya","code":"jyy"},{"name":"Karakalpak","code":"kaa"},{"name":"Kara-Kalpak","code":"kaa"},{"name":"Kabyle","code":"kab"},{"name":"Jingpho","code":"kac"},{"name":"Kachin","code":"kac"},{"name":"Adara","code":"kad"},{"name":"Ketangalan","code":"kae"},{"name":"Katso","code":"kaf"},{"name":"Kajaman","code":"kag"},{"name":"Kara (Central African Republic)","code":"kah"},{"name":"Karekare","code":"kai"},{"name":"Jju","code":"kaj"},{"name":"Kalanguya","code":"kak"},{"name":"Kayapa Kallahan","code":"kak"},{"name":"Greenlandic","code":"kal"},{"name":"Kalaallisut","code":"kal"},{"name":"Kamba (Kenya)","code":"kam"},{"name":"Kannada","code":"kan"},{"name":"Xaasongaxango","code":"kao"},{"name":"Bezhta","code":"kap"},{"name":"Capanahua","code":"kaq"},{"name":"Kashmiri","code":"kas"},{"name":"Georgian","code":"kat"},{"name":"Kanuri","code":"kau"},{"name":"Katukína","code":"kav"},{"name":"Kawi","code":"kaw"},{"name":"Kao","code":"kax"},{"name":"Kamayurá","code":"kay"},{"name":"Kazakh","code":"kaz"},{"name":"Kalarko","code":"kba"},{"name":"Kaxuiâna","code":"kbb"},{"name":"Kadiwéu","code":"kbc"},{"name":"Kabardian","code":"kbd"},{"name":"Kanju","code":"kbe"},{"name":"Khamba","code":"kbg"},{"name":"Camsá","code":"kbh"},{"name":"Kaptiau","code":"kbi"},{"name":"Kari","code":"kbj"},{"name":"Grass Koiari","code":"kbk"},{"name":"Kanembu","code":"kbl"},{"name":"Iwal","code":"kbm"},{"name":"Kare (Central African Republic)","code":"kbn"},{"name":"Keliko","code":"kbo"},{"name":"Kabiyè","code":"kbp"},{"name":"Kamano","code":"kbq"},{"name":"Kafa","code":"kbr"},{"name":"Kande","code":"kbs"},{"name":"Abadi","code":"kbt"},{"name":"Kabutra","code":"kbu"},{"name":"Dera (Indonesia)","code":"kbv"},{"name":"Kaiep","code":"kbw"},{"name":"Ap Ma","code":"kbx"},{"name":"Manga Kanuri","code":"kby"},{"name":"Duhwa","code":"kbz"},{"name":"Khanty","code":"kca"},{"name":"Kawacha","code":"kcb"},{"name":"Lubila","code":"kcc"},{"name":"Ngkâlmpw Kanum","code":"kcd"},{"name":"Kaivi","code":"kce"},{"name":"Ukaan","code":"kcf"},{"name":"Tyap","code":"kcg"},{"name":"Vono","code":"kch"},{"name":"Kamantan","code":"kci"},{"name":"Kobiana","code":"kcj"},{"name":"Kalanga","code":"kck"},{"name":"Kala","code":"kcl"},{"name":"Kela (Papua New Guinea)","code":"kcl"},{"name":"Gula (Central African Republic)","code":"kcm"},{"name":"Nubi","code":"kcn"},{"name":"Kinalakna","code":"kco"},{"name":"Kanga","code":"kcp"},{"name":"Kamo","code":"kcq"},{"name":"Katla","code":"kcr"},{"name":"Koenoem","code":"kcs"},{"name":"Kaian","code":"kct"},{"name":"Kami (Tanzania)","code":"kcu"},{"name":"Kete","code":"kcv"},{"name":"Kabwari","code":"kcw"},{"name":"Kachama-Ganjule","code":"kcx"},{"name":"Korandje","code":"kcy"},{"name":"Konongo","code":"kcz"},{"name":"Worimi","code":"kda"},{"name":"Kutu","code":"kdc"},{"name":"Yankunytjatjara","code":"kdd"},{"name":"Makonde","code":"kde"},{"name":"Mamusi","code":"kdf"},{"name":"Seba","code":"kdg"},{"name":"Tem","code":"kdh"},{"name":"Kumam","code":"kdi"},{"name":"Karamojong","code":"kdj"},{"name":"Kwényi","code":"kdk"},{"name":"Numèè","code":"kdk"},{"name":"Tsikimba","code":"kdl"},{"name":"Kagoma","code":"kdm"},{"name":"Kunda","code":"kdn"},{"name":"Kaningdon-Nindem","code":"kdp"},{"name":"Koch","code":"kdq"},{"name":"Karaim","code":"kdr"},{"name":"Kuy","code":"kdt"},{"name":"Kadaru","code":"kdu"},{"name":"Koneraw","code":"kdw"},{"name":"Kam","code":"kdx"},{"name":"Keder","code":"kdy"},{"name":"Keijar","code":"kdy"},{"name":"Kwaja","code":"kdz"},{"name":"Kabuverdianu","code":"kea"},{"name":"Kélé","code":"keb"},{"name":"Keiga","code":"kec"},{"name":"Kerewe","code":"ked"},{"name":"Eastern Keres","code":"kee"},{"name":"Kpessi","code":"kef"},{"name":"Tese","code":"keg"},{"name":"Keak","code":"keh"},{"name":"Kei","code":"kei"},{"name":"Kadar","code":"kej"},{"name":"Kekchí","code":"kek"},{"name":"Kela (Democratic Republic of Congo)","code":"kel"},{"name":"Kemak","code":"kem"},{"name":"Kenyang","code":"ken"},{"name":"Kakwa","code":"keo"},{"name":"Kaikadi","code":"kep"},{"name":"Kamar","code":"keq"},{"name":"Kera","code":"ker"},{"name":"Kugbo","code":"kes"},{"name":"Ket","code":"ket"},{"name":"Akebu","code":"keu"},{"name":"Kanikkaran","code":"kev"},{"name":"West Kewa","code":"kew"},{"name":"Kukna","code":"kex"},{"name":"Kupia","code":"key"},{"name":"Kukele","code":"kez"},{"name":"Kodava","code":"kfa"},{"name":"Northwestern Kolami","code":"kfb"},{"name":"Konda-Dora","code":"kfc"},{"name":"Korra Koraga","code":"kfd"},{"name":"Kota (India)","code":"kfe"},{"name":"Koya","code":"kff"},{"name":"Kudiya","code":"kfg"},{"name":"Kurichiya","code":"kfh"},{"name":"Kannada Kurumba","code":"kfi"},{"name":"Kemiehua","code":"kfj"},{"name":"Kinnauri","code":"kfk"},{"name":"Kung","code":"kfl"},{"name":"Khunsari","code":"kfm"},{"name":"Kuk","code":"kfn"},{"name":"Koro (Côte d'Ivoire)","code":"kfo"},{"name":"Korwa","code":"kfp"},{"name":"Korku","code":"kfq"},{"name":"Kachhi","code":"kfr"},{"name":"Kutchi","code":"kfr"},{"name":"Bilaspuri","code":"kfs"},{"name":"Kanjari","code":"kft"},{"name":"Katkari","code":"kfu"},{"name":"Kurmukar","code":"kfv"},{"name":"Kharam Naga","code":"kfw"},{"name":"Kullu Pahari","code":"kfx"},{"name":"Kumaoni","code":"kfy"},{"name":"Koromfé","code":"kfz"},{"name":"Koyaga","code":"kga"},{"name":"Kawe","code":"kgb"},{"name":"Komering","code":"kge"},{"name":"Kube","code":"kgf"},{"name":"Kusunda","code":"kgg"},{"name":"Selangor Sign Language","code":"kgi"},{"name":"Gamale Kham","code":"kgj"},{"name":"Kaiwá","code":"kgk"},{"name":"Kunggari","code":"kgl"},{"name":"Karipúna","code":"kgm"},{"name":"Karingani","code":"kgn"},{"name":"Krongo","code":"kgo"},{"name":"Kaingang","code":"kgp"},{"name":"Kamoro","code":"kgq"},{"name":"Abun","code":"kgr"},{"name":"Kumbainggar","code":"kgs"},{"name":"Somyev","code":"kgt"},{"name":"Kobol","code":"kgu"},{"name":"Karas","code":"kgv"},{"name":"Karon Dori","code":"kgw"},{"name":"Kamaru","code":"kgx"},{"name":"Kyerung","code":"kgy"},{"name":"Khasi","code":"kha"},{"name":"Lü","code":"khb"},{"name":"Tukang Besi North","code":"khc"},{"name":"Bädi Kanum","code":"khd"},{"name":"Korowai","code":"khe"},{"name":"Khuen","code":"khf"},{"name":"Khams Tibetan","code":"khg"},{"name":"Kehu","code":"khh"},{"name":"Kuturmi","code":"khj"},{"name":"Halh Mongolian","code":"khk"},{"name":"Lusi","code":"khl"},{"name":"Khmer","code":"khm"},{"name":"Central Khmer","code":"khm"},{"name":"Khandesi","code":"khn"},{"name":"Khotanese","code":"kho"},{"name":"Sakan","code":"kho"},{"name":"Kapauri","code":"khp"},{"name":"Kapori","code":"khp"},{"name":"Koyra Chiini Songhay","code":"khq"},{"name":"Kharia","code":"khr"},{"name":"Kasua","code":"khs"},{"name":"Khamti","code":"kht"},{"name":"Nkhumbi","code":"khu"},{"name":"Khvarshi","code":"khv"},{"name":"Khowar","code":"khw"},{"name":"Kanu","code":"khx"},{"name":"Kele (Democratic Republic of Congo)","code":"khy"},{"name":"Keapara","code":"khz"},{"name":"Kim","code":"kia"},{"name":"Koalib","code":"kib"},{"name":"Kickapoo","code":"kic"},{"name":"Koshin","code":"kid"},{"name":"Kibet","code":"kie"},{"name":"Eastern Parbate Kham","code":"kif"},{"name":"Kimaama","code":"kig"},{"name":"Kimaghima","code":"kig"},{"name":"Kilmeri","code":"kih"},{"name":"Kitsai","code":"kii"},{"name":"Kilivila","code":"kij"},{"name":"Gikuyu","code":"kik"},{"name":"Kikuyu","code":"kik"},{"name":"Kariya","code":"kil"},{"name":"Karagas","code":"kim"},{"name":"Kinyarwanda","code":"kin"},{"name":"Kiowa","code":"kio"},{"name":"Sheshi Kham","code":"kip"},{"name":"Kosadle","code":"kiq"},{"name":"Kosare","code":"kiq"},{"name":"Kirghiz","code":"kir"},{"name":"Kyrgyz","code":"kir"},{"name":"Kis","code":"kis"},{"name":"Agob","code":"kit"},{"name":"Kirmanjki (individual language)","code":"kiu"},{"name":"Kimbu","code":"kiv"},{"name":"Northeast Kiwai","code":"kiw"},{"name":"Khiamniungan Naga","code":"kix"},{"name":"Kirikiri","code":"kiy"},{"name":"Kisi","code":"kiz"},{"name":"Mlap","code":"kja"},{"name":"Kanjobal","code":"kjb"},{"name":"Q'anjob'al","code":"kjb"},{"name":"Coastal Konjo","code":"kjc"},{"name":"Southern Kiwai","code":"kjd"},{"name":"Kisar","code":"kje"},{"name":"Khmu","code":"kjg"},{"name":"Khakas","code":"kjh"},{"name":"Zabana","code":"kji"},{"name":"Khinalugh","code":"kjj"},{"name":"Highland Konjo","code":"kjk"},{"name":"Western Parbate Kham","code":"kjl"},{"name":"Kháng","code":"kjm"},{"name":"Kunjen","code":"kjn"},{"name":"Harijan Kinnauri","code":"kjo"},{"name":"Pwo Eastern Karen","code":"kjp"},{"name":"Western Keres","code":"kjq"},{"name":"Kurudu","code":"kjr"},{"name":"East Kewa","code":"kjs"},{"name":"Phrae Pwo Karen","code":"kjt"},{"name":"Kashaya","code":"kju"},{"name":"Kaikavian Literary Language","code":"kjv"},{"name":"Ramopa","code":"kjx"},{"name":"Erave","code":"kjy"},{"name":"Bumthangkha","code":"kjz"},{"name":"Kakanda","code":"kka"},{"name":"Kwerisa","code":"kkb"},{"name":"Odoodee","code":"kkc"},{"name":"Kinuku","code":"kkd"},{"name":"Kakabe","code":"kke"},{"name":"Kalaktang Monpa","code":"kkf"},{"name":"Mabaka Valley Kalinga","code":"kkg"},{"name":"Khün","code":"kkh"},{"name":"Kagulu","code":"kki"},{"name":"Kako","code":"kkj"},{"name":"Kokota","code":"kkk"},{"name":"Kosarek Yale","code":"kkl"},{"name":"Kiong","code":"kkm"},{"name":"Kon Keu","code":"kkn"},{"name":"Karko","code":"kko"},{"name":"Gugubera","code":"kkp"},{"name":"Koko-Bera","code":"kkp"},{"name":"Kaeku","code":"kkq"},{"name":"Kir-Balar","code":"kkr"},{"name":"Giiwo","code":"kks"},{"name":"Koi","code":"kkt"},{"name":"Tumi","code":"kku"},{"name":"Kangean","code":"kkv"},{"name":"Teke-Kukuya","code":"kkw"},{"name":"Kohin","code":"kkx"},{"name":"Guguyimidjir","code":"kky"},{"name":"Guugu Yimidhirr","code":"kky"},{"name":"Kaska","code":"kkz"},{"name":"Klamath-Modoc","code":"kla"},{"name":"Kiliwa","code":"klb"},{"name":"Kolbila","code":"klc"},{"name":"Gamilaraay","code":"kld"},{"name":"Kulung (Nepal)","code":"kle"},{"name":"Kendeje","code":"klf"},{"name":"Tagakaulo","code":"klg"},{"name":"Weliki","code":"klh"},{"name":"Kalumpang","code":"kli"},{"name":"Khalaj","code":"klj"},{"name":"Kono (Nigeria)","code":"klk"},{"name":"Kagan Kalagan","code":"kll"},{"name":"Migum","code":"klm"},{"name":"Kalenjin","code":"kln"},{"name":"Kapya","code":"klo"},{"name":"Kamasa","code":"klp"},{"name":"Rumu","code":"klq"},{"name":"Khaling","code":"klr"},{"name":"Kalasha","code":"kls"},{"name":"Nukna","code":"klt"},{"name":"Klao","code":"klu"},{"name":"Maskelynes","code":"klv"},{"name":"Lindu","code":"klw"},{"name":"Tado","code":"klw"},{"name":"Koluwawa","code":"klx"},{"name":"Kalao","code":"kly"},{"name":"Kabola","code":"klz"},{"name":"Konni","code":"kma"},{"name":"Kimbundu","code":"kmb"},{"name":"Southern Dong","code":"kmc"},{"name":"Majukayang Kalinga","code":"kmd"},{"name":"Bakole","code":"kme"},{"name":"Kare (Papua New Guinea)","code":"kmf"},{"name":"Kâte","code":"kmg"},{"name":"Kalam","code":"kmh"},{"name":"Kami (Nigeria)","code":"kmi"},{"name":"Kumarbhag Paharia","code":"kmj"},{"name":"Limos Kalinga","code":"kmk"},{"name":"Tanudan Kalinga","code":"kml"},{"name":"Kom (India)","code":"kmm"},{"name":"Awtuw","code":"kmn"},{"name":"Kwoma","code":"kmo"},{"name":"Gimme","code":"kmp"},{"name":"Kwama","code":"kmq"},{"name":"Northern Kurdish","code":"kmr"},{"name":"Kamasau","code":"kms"},{"name":"Kemtuik","code":"kmt"},{"name":"Kanite","code":"kmu"},{"name":"Karipúna Creole French","code":"kmv"},{"name":"Komo (Democratic Republic of Congo)","code":"kmw"},{"name":"Waboda","code":"kmx"},{"name":"Koma","code":"kmy"},{"name":"Khorasani Turkish","code":"kmz"},{"name":"Dera (Nigeria)","code":"kna"},{"name":"Lubuagan Kalinga","code":"knb"},{"name":"Central Kanuri","code":"knc"},{"name":"Konda","code":"knd"},{"name":"Kankanaey","code":"kne"},{"name":"Mankanya","code":"knf"},{"name":"Koongo","code":"kng"},{"name":"Kanufi","code":"kni"},{"name":"Western Kanjobal","code":"knj"},{"name":"Kuranko","code":"knk"},{"name":"Keninjal","code":"knl"},{"name":"Kanamarí","code":"knm"},{"name":"Konkani (individual language)","code":"knn"},{"name":"Kono (Sierra Leone)","code":"kno"},{"name":"Kwanja","code":"knp"},{"name":"Kintaq","code":"knq"},{"name":"Kaningra","code":"knr"},{"name":"Kensiu","code":"kns"},{"name":"Panoan Katukína","code":"knt"},{"name":"Kono (Guinea)","code":"knu"},{"name":"Tabo","code":"knv"},{"name":"Kung-Ekoka","code":"knw"},{"name":"Kendayan","code":"knx"},{"name":"Salako","code":"knx"},{"name":"Kanyok","code":"kny"},{"name":"Kalamsé","code":"knz"},{"name":"Konomala","code":"koa"},{"name":"Kpati","code":"koc"},{"name":"Kodi","code":"kod"},{"name":"Kacipo-Bale Suri","code":"koe"},{"name":"Kubi","code":"kof"},{"name":"Cogui","code":"kog"},{"name":"Kogi","code":"kog"},{"name":"Koyo","code":"koh"},{"name":"Komi-Permyak","code":"koi"},{"name":"Konkani (macrolanguage)","code":"kok"},{"name":"Kol (Papua New Guinea)","code":"kol"},{"name":"Komi","code":"kom"},{"name":"Kongo","code":"kon"},{"name":"Konzo","code":"koo"},{"name":"Waube","code":"kop"},{"name":"Kota (Gabon)","code":"koq"},{"name":"Korean","code":"kor"},{"name":"Kosraean","code":"kos"},{"name":"Lagwan","code":"kot"},{"name":"Koke","code":"kou"},{"name":"Kudu-Camo","code":"kov"},{"name":"Kugama","code":"kow"},{"name":"Koyukon","code":"koy"},{"name":"Korak","code":"koz"},{"name":"Kutto","code":"kpa"},{"name":"Mullu Kurumba","code":"kpb"},{"name":"Curripaco","code":"kpc"},{"name":"Koba","code":"kpd"},{"name":"Kpelle","code":"kpe"},{"name":"Komba","code":"kpf"},{"name":"Kapingamarangi","code":"kpg"},{"name":"Kplang","code":"kph"},{"name":"Kofei","code":"kpi"},{"name":"Karajá","code":"kpj"},{"name":"Kpan","code":"kpk"},{"name":"Kpala","code":"kpl"},{"name":"Koho","code":"kpm"},{"name":"Kepkiriwát","code":"kpn"},{"name":"Ikposo","code":"kpo"},{"name":"Korupun-Sela","code":"kpq"},{"name":"Korafe-Yegha","code":"kpr"},{"name":"Tehit","code":"kps"},{"name":"Karata","code":"kpt"},{"name":"Kafoa","code":"kpu"},{"name":"Komi-Zyrian","code":"kpv"},{"name":"Kobon","code":"kpw"},{"name":"Mountain Koiali","code":"kpx"},{"name":"Koryak","code":"kpy"},{"name":"Kupsabiny","code":"kpz"},{"name":"Mum","code":"kqa"},{"name":"Kovai","code":"kqb"},{"name":"Doromu-Koki","code":"kqc"},{"name":"Koy Sanjaq Surat","code":"kqd"},{"name":"Kalagan","code":"kqe"},{"name":"Kakabai","code":"kqf"},{"name":"Khe","code":"kqg"},{"name":"Kisankasa","code":"kqh"},{"name":"Koitabu","code":"kqi"},{"name":"Koromira","code":"kqj"},{"name":"Kotafon Gbe","code":"kqk"},{"name":"Kyenele","code":"kql"},{"name":"Khisa","code":"kqm"},{"name":"Kaonde","code":"kqn"},{"name":"Eastern Krahn","code":"kqo"},{"name":"Kimré","code":"kqp"},{"name":"Krenak","code":"kqq"},{"name":"Kimaragang","code":"kqr"},{"name":"Northern Kissi","code":"kqs"},{"name":"Klias River Kadazan","code":"kqt"},{"name":"Seroa","code":"kqu"},{"name":"Okolod","code":"kqv"},{"name":"Kandas","code":"kqw"},{"name":"Mser","code":"kqx"},{"name":"Koorete","code":"kqy"},{"name":"Korana","code":"kqz"},{"name":"Kumhali","code":"kra"},{"name":"Karkin","code":"krb"},{"name":"Karachay-Balkar","code":"krc"},{"name":"Kairui-Midiki","code":"krd"},{"name":"Panará","code":"kre"},{"name":"Koro (Vanuatu)","code":"krf"},{"name":"Kurama","code":"krh"},{"name":"Krio","code":"kri"},{"name":"Kinaray-A","code":"krj"},{"name":"Kerek","code":"krk"},{"name":"Karelian","code":"krl"},{"name":"Sapo","code":"krn"},{"name":"Korop","code":"krp"},{"name":"Krung","code":"krr"},{"name":"Gbaya (Sudan)","code":"krs"},{"name":"Tumari Kanuri","code":"krt"},{"name":"Kurukh","code":"kru"},{"name":"Kavet","code":"krv"},{"name":"Western Krahn","code":"krw"},{"name":"Karon","code":"krx"},{"name":"Kryts","code":"kry"},{"name":"Sota Kanum","code":"krz"},{"name":"Shuwa-Zamani","code":"ksa"},{"name":"Shambala","code":"ksb"},{"name":"Southern Kalinga","code":"ksc"},{"name":"Kuanua","code":"ksd"},{"name":"Kuni","code":"kse"},{"name":"Bafia","code":"ksf"},{"name":"Kusaghe","code":"ksg"},{"name":"Kölsch","code":"ksh"},{"name":"I'saka","code":"ksi"},{"name":"Krisa","code":"ksi"},{"name":"Uare","code":"ksj"},{"name":"Kansa","code":"ksk"},{"name":"Kumalu","code":"ksl"},{"name":"Kumba","code":"ksm"},{"name":"Kasiguranin","code":"ksn"},{"name":"Kofa","code":"kso"},{"name":"Kaba","code":"ksp"},{"name":"Kwaami","code":"ksq"},{"name":"Borong","code":"ksr"},{"name":"Southern Kisi","code":"kss"},{"name":"Winyé","code":"kst"},{"name":"Khamyang","code":"ksu"},{"name":"Kusu","code":"ksv"},{"name":"S'gaw Karen","code":"ksw"},{"name":"Kedang","code":"ksx"},{"name":"Kharia Thar","code":"ksy"},{"name":"Kodaku","code":"ksz"},{"name":"Katua","code":"kta"},{"name":"Kambaata","code":"ktb"},{"name":"Kholok","code":"ktc"},{"name":"Kokata","code":"ktd"},{"name":"Kukatha","code":"ktd"},{"name":"Nubri","code":"kte"},{"name":"Kwami","code":"ktf"},{"name":"Kalkutung","code":"ktg"},{"name":"Karanga","code":"kth"},{"name":"North Muyu","code":"kti"},{"name":"Plapo Krumen","code":"ktj"},{"name":"Kaniet","code":"ktk"},{"name":"Koroshi","code":"ktl"},{"name":"Kurti","code":"ktm"},{"name":"Karitiâna","code":"ktn"},{"name":"Kuot","code":"kto"},{"name":"Kaduo","code":"ktp"},{"name":"Katabaga","code":"ktq"},{"name":"South Muyu","code":"kts"},{"name":"Ketum","code":"ktt"},{"name":"Kituba (Democratic Republic of Congo)","code":"ktu"},{"name":"Eastern Katu","code":"ktv"},{"name":"Kato","code":"ktw"},{"name":"Kaxararí","code":"ktx"},{"name":"Kango (Bas-Uélé District)","code":"kty"},{"name":"Juǀʼhoan","code":"ktz"},{"name":"Juǀʼhoansi","code":"ktz"},{"name":"Kuanyama","code":"kua"},{"name":"Kwanyama","code":"kua"},{"name":"Kutep","code":"kub"},{"name":"Kwinsu","code":"kuc"},{"name":"'Auhelawa","code":"kud"},{"name":"Kuman (Papua New Guinea)","code":"kue"},{"name":"Western Katu","code":"kuf"},{"name":"Kupa","code":"kug"},{"name":"Kushi","code":"kuh"},{"name":"Kalapalo","code":"kui"},{"name":"Kuikúro-Kalapálo","code":"kui"},{"name":"Kuria","code":"kuj"},{"name":"Kepo'","code":"kuk"},{"name":"Kulere","code":"kul"},{"name":"Kumyk","code":"kum"},{"name":"Kunama","code":"kun"},{"name":"Kumukio","code":"kuo"},{"name":"Kunimaipa","code":"kup"},{"name":"Karipuna","code":"kuq"},{"name":"Kurdish","code":"kur"},{"name":"Kusaal","code":"kus"},{"name":"Kutenai","code":"kut"},{"name":"Upper Kuskokwim","code":"kuu"},{"name":"Kur","code":"kuv"},{"name":"Kpagua","code":"kuw"},{"name":"Kukatja","code":"kux"},{"name":"Kuuku-Ya'u","code":"kuy"},{"name":"Kunza","code":"kuz"},{"name":"Bagvalal","code":"kva"},{"name":"Kubu","code":"kvb"},{"name":"Kove","code":"kvc"},{"name":"Kui (Indonesia)","code":"kvd"},{"name":"Kalabakan","code":"kve"},{"name":"Kabalai","code":"kvf"},{"name":"Kuni-Boazi","code":"kvg"},{"name":"Komodo","code":"kvh"},{"name":"Kwang","code":"kvi"},{"name":"Psikye","code":"kvj"},{"name":"Korean Sign Language","code":"kvk"},{"name":"Kayaw","code":"kvl"},{"name":"Kendem","code":"kvm"},{"name":"Border Kuna","code":"kvn"},{"name":"Dobel","code":"kvo"},{"name":"Kompane","code":"kvp"},{"name":"Geba Karen","code":"kvq"},{"name":"Kerinci","code":"kvr"},{"name":"Lahta","code":"kvt"},{"name":"Lahta Karen","code":"kvt"},{"name":"Yinbaw Karen","code":"kvu"},{"name":"Kola","code":"kvv"},{"name":"Wersing","code":"kvw"},{"name":"Parkari Koli","code":"kvx"},{"name":"Yintale","code":"kvy"},{"name":"Yintale Karen","code":"kvy"},{"name":"Tsakwambo","code":"kvz"},{"name":"Tsaukambo","code":"kvz"},{"name":"Dâw","code":"kwa"},{"name":"Kwa","code":"kwb"},{"name":"Likwala","code":"kwc"},{"name":"Kwaio","code":"kwd"},{"name":"Kwerba","code":"kwe"},{"name":"Kwara'ae","code":"kwf"},{"name":"Sara Kaba Deme","code":"kwg"},{"name":"Kowiai","code":"kwh"},{"name":"Awa-Cuaiquer","code":"kwi"},{"name":"Kwanga","code":"kwj"},{"name":"Kwakiutl","code":"kwk"},{"name":"Kofyar","code":"kwl"},{"name":"Kwambi","code":"kwm"},{"name":"Kwangali","code":"kwn"},{"name":"Kwomtari","code":"kwo"},{"name":"Kodia","code":"kwp"},{"name":"Kwer","code":"kwr"},{"name":"Kwese","code":"kws"},{"name":"Kwesten","code":"kwt"},{"name":"Kwakum","code":"kwu"},{"name":"Sara Kaba Náà","code":"kwv"},{"name":"Kwinti","code":"kww"},{"name":"Khirwar","code":"kwx"},{"name":"San Salvador Kongo","code":"kwy"},{"name":"Kwadi","code":"kwz"},{"name":"Kairiru","code":"kxa"},{"name":"Krobu","code":"kxb"},{"name":"Khonso","code":"kxc"},{"name":"Konso","code":"kxc"},{"name":"Brunei","code":"kxd"},{"name":"Manumanaw","code":"kxf"},{"name":"Manumanaw Karen","code":"kxf"},{"name":"Karo (Ethiopia)","code":"kxh"},{"name":"Keningau Murut","code":"kxi"},{"name":"Kulfa","code":"kxj"},{"name":"Zayein Karen","code":"kxk"},{"name":"Northern Khmer","code":"kxm"},{"name":"Kanowit-Tanjong Melanau","code":"kxn"},{"name":"Kanoé","code":"kxo"},{"name":"Wadiyara Koli","code":"kxp"},{"name":"Smärky Kanum","code":"kxq"},{"name":"Koro (Papua New Guinea)","code":"kxr"},{"name":"Kangjia","code":"kxs"},{"name":"Koiwat","code":"kxt"},{"name":"Kuvi","code":"kxv"},{"name":"Konai","code":"kxw"},{"name":"Likuba","code":"kxx"},{"name":"Kayong","code":"kxy"},{"name":"Kerewo","code":"kxz"},{"name":"Kwaya","code":"kya"},{"name":"Butbut Kalinga","code":"kyb"},{"name":"Kyaka","code":"kyc"},{"name":"Karey","code":"kyd"},{"name":"Krache","code":"kye"},{"name":"Kouya","code":"kyf"},{"name":"Keyagana","code":"kyg"},{"name":"Karok","code":"kyh"},{"name":"Kiput","code":"kyi"},{"name":"Karao","code":"kyj"},{"name":"Kamayo","code":"kyk"},{"name":"Kalapuya","code":"kyl"},{"name":"Kpatili","code":"kym"},{"name":"Northern Binukidnon","code":"kyn"},{"name":"Kelon","code":"kyo"},{"name":"Kang","code":"kyp"},{"name":"Kenga","code":"kyq"},{"name":"Kuruáya","code":"kyr"},{"name":"Baram Kayan","code":"kys"},{"name":"Kayagar","code":"kyt"},{"name":"Western Kayah","code":"kyu"},{"name":"Kayort","code":"kyv"},{"name":"Kudmali","code":"kyw"},{"name":"Rapoisi","code":"kyx"},{"name":"Kambaira","code":"kyy"},{"name":"Kayabí","code":"kyz"},{"name":"Western Karaboro","code":"kza"},{"name":"Kaibobo","code":"kzb"},{"name":"Bondoukou Kulango","code":"kzc"},{"name":"Kadai","code":"kzd"},{"name":"Kosena","code":"kze"},{"name":"Da'a Kaili","code":"kzf"},{"name":"Kikai","code":"kzg"},{"name":"Kelabit","code":"kzi"},{"name":"Kazukuru","code":"kzk"},{"name":"Kayeli","code":"kzl"},{"name":"Kais","code":"kzm"},{"name":"Kokola","code":"kzn"},{"name":"Kaningi","code":"kzo"},{"name":"Kaidipang","code":"kzp"},{"name":"Kaike","code":"kzq"},{"name":"Karang","code":"kzr"},{"name":"Sugut Dusun","code":"kzs"},{"name":"Kayupulau","code":"kzu"},{"name":"Komyandaret","code":"kzv"},{"name":"Karirí-Xocó","code":"kzw"},{"name":"Kamarian","code":"kzx"},{"name":"Kango (Tshopo District)","code":"kzy"},{"name":"Kalabra","code":"kzz"},{"name":"Southern Subanen","code":"laa"},{"name":"Linear A","code":"lab"},{"name":"Lacandon","code":"lac"},{"name":"Ladino","code":"lad"},{"name":"Pattani","code":"lae"},{"name":"Lafofa","code":"laf"},{"name":"Langi","code":"lag"},{"name":"Lahnda","code":"lah"},{"name":"Lambya","code":"lai"},{"name":"Lango (Uganda)","code":"laj"},{"name":"Laka (Nigeria)","code":"lak"},{"name":"Lalia","code":"lal"},{"name":"Lamba","code":"lam"},{"name":"Laru","code":"lan"},{"name":"Lao","code":"lao"},{"name":"Laka (Chad)","code":"lap"},{"name":"Qabiao","code":"laq"},{"name":"Larteh","code":"lar"},{"name":"Lama (Togo)","code":"las"},{"name":"Latin","code":"lat"},{"name":"Laba","code":"lau"},{"name":"Latvian","code":"lav"},{"name":"Lauje","code":"law"},{"name":"Tiwa","code":"lax"},{"name":"Lama Bai","code":"lay"},{"name":"Aribwatsa","code":"laz"},{"name":"Label","code":"lbb"},{"name":"Lakkia","code":"lbc"},{"name":"Lak","code":"lbe"},{"name":"Tinani","code":"lbf"},{"name":"Laopang","code":"lbg"},{"name":"La'bi","code":"lbi"},{"name":"Ladakhi","code":"lbj"},{"name":"Central Bontok","code":"lbk"},{"name":"Libon Bikol","code":"lbl"},{"name":"Lodhi","code":"lbm"},{"name":"Rmeet","code":"lbn"},{"name":"Laven","code":"lbo"},{"name":"Wampar","code":"lbq"},{"name":"Lohorung","code":"lbr"},{"name":"Libyan Sign Language","code":"lbs"},{"name":"Lachi","code":"lbt"},{"name":"Labu","code":"lbu"},{"name":"Lavatbura-Lamusong","code":"lbv"},{"name":"Tolaki","code":"lbw"},{"name":"Lawangan","code":"lbx"},{"name":"Lamalama","code":"lby"},{"name":"Lamu-Lamu","code":"lby"},{"name":"Lardil","code":"lbz"},{"name":"Legenyem","code":"lcc"},{"name":"Lola","code":"lcd"},{"name":"Loncong","code":"lce"},{"name":"Sekak","code":"lce"},{"name":"Lubu","code":"lcf"},{"name":"Luchazi","code":"lch"},{"name":"Lisela","code":"lcl"},{"name":"Tungag","code":"lcm"},{"name":"Western Lawa","code":"lcp"},{"name":"Luhu","code":"lcq"},{"name":"Lisabata-Nuniali","code":"lcs"},{"name":"Kla-Dan","code":"lda"},{"name":"Dũya","code":"ldb"},{"name":"Luri","code":"ldd"},{"name":"Lenyima","code":"ldg"},{"name":"Lamja-Dengsa-Tola","code":"ldh"},{"name":"Laari","code":"ldi"},{"name":"Lemoro","code":"ldj"},{"name":"Leelau","code":"ldk"},{"name":"Kaan","code":"ldl"},{"name":"Landoma","code":"ldm"},{"name":"Láadan","code":"ldn"},{"name":"Loo","code":"ldo"},{"name":"Tso","code":"ldp"},{"name":"Lufu","code":"ldq"},{"name":"Lega-Shabunda","code":"lea"},{"name":"Lala-Bisa","code":"leb"},{"name":"Leco","code":"lec"},{"name":"Lendu","code":"led"},{"name":"Lyélé","code":"lee"},{"name":"Lelemi","code":"lef"},{"name":"Lenje","code":"leh"},{"name":"Lemio","code":"lei"},{"name":"Lengola","code":"lej"},{"name":"Leipon","code":"lek"},{"name":"Lele (Democratic Republic of Congo)","code":"lel"},{"name":"Nomaande","code":"lem"},{"name":"Lenca","code":"len"},{"name":"Leti (Cameroon)","code":"leo"},{"name":"Lepcha","code":"lep"},{"name":"Lembena","code":"leq"},{"name":"Lenkau","code":"ler"},{"name":"Lese","code":"les"},{"name":"Amio-Gelimi","code":"let"},{"name":"Lesing-Gelimi","code":"let"},{"name":"Kara (Papua New Guinea)","code":"leu"},{"name":"Lamma","code":"lev"},{"name":"Ledo Kaili","code":"lew"},{"name":"Luang","code":"lex"},{"name":"Lemolang","code":"ley"},{"name":"Lezghian","code":"lez"},{"name":"Lefa","code":"lfa"},{"name":"Lingua Franca Nova","code":"lfn"},{"name":"Lungga","code":"lga"},{"name":"Laghu","code":"lgb"},{"name":"Lugbara","code":"lgg"},{"name":"Laghuu","code":"lgh"},{"name":"Lengilu","code":"lgi"},{"name":"Lingarak","code":"lgk"},{"name":"Neverver","code":"lgk"},{"name":"Wala","code":"lgl"},{"name":"Lega-Mwenga","code":"lgm"},{"name":"Opuuo","code":"lgn"},{"name":"T'apo","code":"lgn"},{"name":"Logba","code":"lgq"},{"name":"Lengo","code":"lgr"},{"name":"Pahi","code":"lgt"},{"name":"Longgu","code":"lgu"},{"name":"Ligenza","code":"lgz"},{"name":"Laha (Viet Nam)","code":"lha"},{"name":"Laha (Indonesia)","code":"lhh"},{"name":"Lahu Shi","code":"lhi"},{"name":"Lahul Lohar","code":"lhl"},{"name":"Lhomi","code":"lhm"},{"name":"Lahanan","code":"lhn"},{"name":"Lhokpu","code":"lhp"},{"name":"Mlahsö","code":"lhs"},{"name":"Lo-Toga","code":"lht"},{"name":"Lahu","code":"lhu"},{"name":"West-Central Limba","code":"lia"},{"name":"Likum","code":"lib"},{"name":"Hlai","code":"lic"},{"name":"Nyindrou","code":"lid"},{"name":"Likila","code":"lie"},{"name":"Limbu","code":"lif"},{"name":"Ligbi","code":"lig"},{"name":"Lihir","code":"lih"},{"name":"Ligurian","code":"lij"},{"name":"Lika","code":"lik"},{"name":"Lillooet","code":"lil"},{"name":"Limburgan","code":"lim"},{"name":"Limburger","code":"lim"},{"name":"Limburgish","code":"lim"},{"name":"Lingala","code":"lin"},{"name":"Liki","code":"lio"},{"name":"Sekpele","code":"lip"},{"name":"Libido","code":"liq"},{"name":"Liberian English","code":"lir"},{"name":"Lisu","code":"lis"},{"name":"Lithuanian","code":"lit"},{"name":"Logorik","code":"liu"},{"name":"Liv","code":"liv"},{"name":"Col","code":"liw"},{"name":"Liabuku","code":"lix"},{"name":"Banda-Bambari","code":"liy"},{"name":"Libinza","code":"liz"},{"name":"Golpa","code":"lja"},{"name":"Rampi","code":"lje"},{"name":"Laiyolo","code":"lji"},{"name":"Li'o","code":"ljl"},{"name":"Lampung Api","code":"ljp"},{"name":"Yirandali","code":"ljw"},{"name":"Yuru","code":"ljx"},{"name":"Lakalei","code":"lka"},{"name":"Kabras","code":"lkb"},{"name":"Lukabaras","code":"lkb"},{"name":"Kucong","code":"lkc"},{"name":"Lakondê","code":"lkd"},{"name":"Kenyi","code":"lke"},{"name":"Lakha","code":"lkh"},{"name":"Laki","code":"lki"},{"name":"Remun","code":"lkj"},{"name":"Laeko-Libuat","code":"lkl"},{"name":"Kalaamaya","code":"lkm"},{"name":"Lakon","code":"lkn"},{"name":"Vure","code":"lkn"},{"name":"Khayo","code":"lko"},{"name":"Olukhayo","code":"lko"},{"name":"Päri","code":"lkr"},{"name":"Kisa","code":"lks"},{"name":"Olushisa","code":"lks"},{"name":"Lakota","code":"lkt"},{"name":"Kungkari","code":"lku"},{"name":"Lokoya","code":"lky"},{"name":"Lala-Roba","code":"lla"},{"name":"Lolo","code":"llb"},{"name":"Lele (Guinea)","code":"llc"},{"name":"Ladin","code":"lld"},{"name":"Lele (Papua New Guinea)","code":"lle"},{"name":"Hermit","code":"llf"},{"name":"Lole","code":"llg"},{"name":"Lamu","code":"llh"},{"name":"Teke-Laali","code":"lli"},{"name":"Ladji Ladji","code":"llj"},{"name":"Lelak","code":"llk"},{"name":"Lilau","code":"lll"},{"name":"Lasalimu","code":"llm"},{"name":"Lele (Chad)","code":"lln"},{"name":"North Efate","code":"llp"},{"name":"Lolak","code":"llq"},{"name":"Lithuanian Sign Language","code":"lls"},{"name":"Lau","code":"llu"},{"name":"Lauan","code":"llx"},{"name":"East Limba","code":"lma"},{"name":"Merei","code":"lmb"},{"name":"Limilngan","code":"lmc"},{"name":"Lumun","code":"lmd"},{"name":"Pévé","code":"lme"},{"name":"South Lembata","code":"lmf"},{"name":"Lamogai","code":"lmg"},{"name":"Lambichhong","code":"lmh"},{"name":"Lombi","code":"lmi"},{"name":"West Lembata","code":"lmj"},{"name":"Lamkang","code":"lmk"},{"name":"Hano","code":"lml"},{"name":"Lambadi","code":"lmn"},{"name":"Lombard","code":"lmo"},{"name":"Limbum","code":"lmp"},{"name":"Lamatuka","code":"lmq"},{"name":"Lamalera","code":"lmr"},{"name":"Lamenu","code":"lmu"},{"name":"Lomaiviti","code":"lmv"},{"name":"Lake Miwok","code":"lmw"},{"name":"Laimbue","code":"lmx"},{"name":"Lamboya","code":"lmy"},{"name":"Langbashe","code":"lna"},{"name":"Mbalanhu","code":"lnb"},{"name":"Lun Bawang","code":"lnd"},{"name":"Lundayeh","code":"lnd"},{"name":"Langobardic","code":"lng"},{"name":"Lanoh","code":"lnh"},{"name":"Daantanai'","code":"lni"},{"name":"Leningitij","code":"lnj"},{"name":"South Central Banda","code":"lnl"},{"name":"Langam","code":"lnm"},{"name":"Lorediakarkar","code":"lnn"},{"name":"Lango (South Sudan)","code":"lno"},{"name":"Lamnso'","code":"lns"},{"name":"Longuda","code":"lnu"},{"name":"Lanima","code":"lnw"},{"name":"Lonzo","code":"lnz"},{"name":"Loloda","code":"loa"},{"name":"Lobi","code":"lob"},{"name":"Inonhan","code":"loc"},{"name":"Saluan","code":"loe"},{"name":"Logol","code":"lof"},{"name":"Logo","code":"log"},{"name":"Narim","code":"loh"},{"name":"Loma (Côte d'Ivoire)","code":"loi"},{"name":"Lou","code":"loj"},{"name":"Loko","code":"lok"},{"name":"Mongo","code":"lol"},{"name":"Loma (Liberia)","code":"lom"},{"name":"Malawi Lomwe","code":"lon"},{"name":"Lombo","code":"loo"},{"name":"Lopa","code":"lop"},{"name":"Lobala","code":"loq"},{"name":"Téén","code":"lor"},{"name":"Loniu","code":"los"},{"name":"Otuho","code":"lot"},{"name":"Louisiana Creole","code":"lou"},{"name":"Lopi","code":"lov"},{"name":"Tampias Lobu","code":"low"},{"name":"Loun","code":"lox"},{"name":"Loke","code":"loy"},{"name":"Lozi","code":"loz"},{"name":"Lelepa","code":"lpa"},{"name":"Lepki","code":"lpe"},{"name":"Long Phuri Naga","code":"lpn"},{"name":"Lipo","code":"lpo"},{"name":"Lopit","code":"lpx"},{"name":"Rara Bakati'","code":"lra"},{"name":"Northern Luri","code":"lrc"},{"name":"Laurentian","code":"lre"},{"name":"Laragia","code":"lrg"},{"name":"Marachi","code":"lri"},{"name":"Olumarachi","code":"lri"},{"name":"Loarki","code":"lrk"},{"name":"Lari","code":"lrl"},{"name":"Marama","code":"lrm"},{"name":"Olumarama","code":"lrm"},{"name":"Lorang","code":"lrn"},{"name":"Laro","code":"lro"},{"name":"Southern Yamphu","code":"lrr"},{"name":"Larantuka Malay","code":"lrt"},{"name":"Larevat","code":"lrv"},{"name":"Lemerig","code":"lrz"},{"name":"Lasgerdi","code":"lsa"},{"name":"Burundian Sign Language","code":"lsb"},{"name":"Langue des Signes Burundaise","code":"lsb"},{"name":"Lishana Deni","code":"lsd"},{"name":"Lusengo","code":"lse"},{"name":"Lish","code":"lsh"},{"name":"Lashi","code":"lsi"},{"name":"Latvian Sign Language","code":"lsl"},{"name":"Olusamia","code":"lsm"},{"name":"Saamia","code":"lsm"},{"name":"Tibetan Sign Language","code":"lsn"},{"name":"Laos Sign Language","code":"lso"},{"name":"Lengua de Señas Panameñas","code":"lsp"},{"name":"Panamanian Sign Language","code":"lsp"},{"name":"Aruop","code":"lsr"},{"name":"Lasi","code":"lss"},{"name":"Trinidad and Tobago Sign Language","code":"lst"},{"name":"Sivia Sign Language","code":"lsv"},{"name":"Mauritian Sign Language","code":"lsy"},{"name":"Late Middle Chinese","code":"ltc"},{"name":"Latgalian","code":"ltg"},{"name":"Thur","code":"lth"},{"name":"Leti (Indonesia)","code":"lti"},{"name":"Latundê","code":"ltn"},{"name":"Olutsotso","code":"lto"},{"name":"Tsotso","code":"lto"},{"name":"Lutachoni","code":"lts"},{"name":"Tachoni","code":"lts"},{"name":"Latu","code":"ltu"},{"name":"Letzeburgesch","code":"ltz"},{"name":"Luxembourgish","code":"ltz"},{"name":"Luba-Lulua","code":"lua"},{"name":"Luba-Katanga","code":"lub"},{"name":"Aringa","code":"luc"},{"name":"Ludian","code":"lud"},{"name":"Luvale","code":"lue"},{"name":"Laua","code":"luf"},{"name":"Ganda","code":"lug"},{"name":"Luiseno","code":"lui"},{"name":"Luna","code":"luj"},{"name":"Lunanakha","code":"luk"},{"name":"Olu'bo","code":"lul"},{"name":"Luimbi","code":"lum"},{"name":"Lunda","code":"lun"},{"name":"Dholuo","code":"luo"},{"name":"Luo (Kenya and Tanzania)","code":"luo"},{"name":"Lumbu","code":"lup"},{"name":"Lucumi","code":"luq"},{"name":"Laura","code":"lur"},{"name":"Lushai","code":"lus"},{"name":"Lushootseed","code":"lut"},{"name":"Lumba-Yakkha","code":"luu"},{"name":"Luwati","code":"luv"},{"name":"Luo (Cameroon)","code":"luw"},{"name":"Luyia","code":"luy"},{"name":"Oluluyia","code":"luy"},{"name":"Southern Luri","code":"luz"},{"name":"Maku'a","code":"lva"},{"name":"Lavi","code":"lvi"},{"name":"Lavukaleve","code":"lvk"},{"name":"Standard Latvian","code":"lvs"},{"name":"Levuka","code":"lvu"},{"name":"Lwalu","code":"lwa"},{"name":"Lewo Eleng","code":"lwe"},{"name":"Oluwanga","code":"lwg"},{"name":"Wanga","code":"lwg"},{"name":"White Lachi","code":"lwh"},{"name":"Eastern Lawa","code":"lwl"},{"name":"Laomian","code":"lwm"},{"name":"Luwo","code":"lwo"},{"name":"Malawian Sign Language","code":"lws"},{"name":"Lewotobi","code":"lwt"},{"name":"Lawu","code":"lwu"},{"name":"Lewo","code":"lww"},{"name":"Lakurumau","code":"lxm"},{"name":"Layakha","code":"lya"},{"name":"Lyngngam","code":"lyg"},{"name":"Luyana","code":"lyn"},{"name":"Literary Chinese","code":"lzh"},{"name":"Litzlitz","code":"lzl"},{"name":"Leinong Naga","code":"lzn"},{"name":"Laz","code":"lzz"},{"name":"San Jerónimo Tecóatl Mazatec","code":"maa"},{"name":"Yutanduchi Mixtec","code":"mab"},{"name":"Madurese","code":"mad"},{"name":"Bo-Rukul","code":"mae"},{"name":"Mafa","code":"maf"},{"name":"Magahi","code":"mag"},{"name":"Marshallese","code":"mah"},{"name":"Maithili","code":"mai"},{"name":"Jalapa De Díaz Mazatec","code":"maj"},{"name":"Makasar","code":"mak"},{"name":"Malayalam","code":"mal"},{"name":"Mam","code":"mam"},{"name":"Manding","code":"man"},{"name":"Mandingo","code":"man"},{"name":"Chiquihuitlán Mazatec","code":"maq"},{"name":"Marathi","code":"mar"},{"name":"Masai","code":"mas"},{"name":"San Francisco Matlatzinca","code":"mat"},{"name":"Huautla Mazatec","code":"mau"},{"name":"Sateré-Mawé","code":"mav"},{"name":"Mampruli","code":"maw"},{"name":"North Moluccan Malay","code":"max"},{"name":"Central Mazahua","code":"maz"},{"name":"Higaonon","code":"mba"},{"name":"Western Bukidnon Manobo","code":"mbb"},{"name":"Macushi","code":"mbc"},{"name":"Dibabawon Manobo","code":"mbd"},{"name":"Molale","code":"mbe"},{"name":"Baba Malay","code":"mbf"},{"name":"Mangseng","code":"mbh"},{"name":"Ilianen Manobo","code":"mbi"},{"name":"Nadëb","code":"mbj"},{"name":"Malol","code":"mbk"},{"name":"Maxakalí","code":"mbl"},{"name":"Ombamba","code":"mbm"},{"name":"Macaguán","code":"mbn"},{"name":"Mbo (Cameroon)","code":"mbo"},{"name":"Malayo","code":"mbp"},{"name":"Maisin","code":"mbq"},{"name":"Nukak Makú","code":"mbr"},{"name":"Sarangani Manobo","code":"mbs"},{"name":"Matigsalug Manobo","code":"mbt"},{"name":"Mbula-Bwazza","code":"mbu"},{"name":"Mbulungish","code":"mbv"},{"name":"Maring","code":"mbw"},{"name":"Mari (East Sepik Province)","code":"mbx"},{"name":"Memoni","code":"mby"},{"name":"Amoltepec Mixtec","code":"mbz"},{"name":"Maca","code":"mca"},{"name":"Machiguenga","code":"mcb"},{"name":"Bitur","code":"mcc"},{"name":"Sharanahua","code":"mcd"},{"name":"Itundujia Mixtec","code":"mce"},{"name":"Matsés","code":"mcf"},{"name":"Mapoyo","code":"mcg"},{"name":"Maquiritari","code":"mch"},{"name":"Mese","code":"mci"},{"name":"Mvanip","code":"mcj"},{"name":"Mbunda","code":"mck"},{"name":"Macaguaje","code":"mcl"},{"name":"Malaccan Creole Portuguese","code":"mcm"},{"name":"Masana","code":"mcn"},{"name":"Coatlán Mixe","code":"mco"},{"name":"Makaa","code":"mcp"},{"name":"Ese","code":"mcq"},{"name":"Menya","code":"mcr"},{"name":"Mambai","code":"mcs"},{"name":"Mengisa","code":"mct"},{"name":"Cameroon Mambila","code":"mcu"},{"name":"Minanibai","code":"mcv"},{"name":"Mawa (Chad)","code":"mcw"},{"name":"Mpiemo","code":"mcx"},{"name":"South Watut","code":"mcy"},{"name":"Mawan","code":"mcz"},{"name":"Mada (Nigeria)","code":"mda"},{"name":"Morigi","code":"mdb"},{"name":"Male (Papua New Guinea)","code":"mdc"},{"name":"Mbum","code":"mdd"},{"name":"Maba (Chad)","code":"mde"},{"name":"Moksha","code":"mdf"},{"name":"Massalat","code":"mdg"},{"name":"Maguindanaon","code":"mdh"},{"name":"Mamvu","code":"mdi"},{"name":"Mangbetu","code":"mdj"},{"name":"Mangbutu","code":"mdk"},{"name":"Maltese Sign Language","code":"mdl"},{"name":"Mayogo","code":"mdm"},{"name":"Mbati","code":"mdn"},{"name":"Mbala","code":"mdp"},{"name":"Mbole","code":"mdq"},{"name":"Mandar","code":"mdr"},{"name":"Maria (Papua New Guinea)","code":"mds"},{"name":"Mbere","code":"mdt"},{"name":"Mboko","code":"mdu"},{"name":"Santa Lucía Monteverde Mixtec","code":"mdv"},{"name":"Mbosi","code":"mdw"},{"name":"Dizin","code":"mdx"},{"name":"Male (Ethiopia)","code":"mdy"},{"name":"Suruí Do Pará","code":"mdz"},{"name":"Menka","code":"mea"},{"name":"Ikobi","code":"meb"},{"name":"Marra","code":"mec"},{"name":"Melpa","code":"med"},{"name":"Mengen","code":"mee"},{"name":"Megam","code":"mef"},{"name":"Southwestern Tlaxiaco Mixtec","code":"meh"},{"name":"Midob","code":"mei"},{"name":"Meyah","code":"mej"},{"name":"Mekeo","code":"mek"},{"name":"Central Melanau","code":"mel"},{"name":"Mangala","code":"mem"},{"name":"Mende (Sierra Leone)","code":"men"},{"name":"Kedah Malay","code":"meo"},{"name":"Miriwoong","code":"mep"},{"name":"Merey","code":"meq"},{"name":"Meru","code":"mer"},{"name":"Masmaje","code":"mes"},{"name":"Mato","code":"met"},{"name":"Motu","code":"meu"},{"name":"Mano","code":"mev"},{"name":"Maaka","code":"mew"},{"name":"Hassaniyya","code":"mey"},{"name":"Menominee","code":"mez"},{"name":"Pattani Malay","code":"mfa"},{"name":"Bangka","code":"mfb"},{"name":"Mba","code":"mfc"},{"name":"Mendankwe-Nkwen","code":"mfd"},{"name":"Morisyen","code":"mfe"},{"name":"Naki","code":"mff"},{"name":"Mogofin","code":"mfg"},{"name":"Matal","code":"mfh"},{"name":"Wandala","code":"mfi"},{"name":"Mefele","code":"mfj"},{"name":"North Mofu","code":"mfk"},{"name":"Putai","code":"mfl"},{"name":"Marghi South","code":"mfm"},{"name":"Cross River Mbembe","code":"mfn"},{"name":"Mbe","code":"mfo"},{"name":"Makassar Malay","code":"mfp"},{"name":"Moba","code":"mfq"},{"name":"Marrithiyel","code":"mfr"},{"name":"Mexican Sign Language","code":"mfs"},{"name":"Mokerang","code":"mft"},{"name":"Mbwela","code":"mfu"},{"name":"Mandjak","code":"mfv"},{"name":"Mulaha","code":"mfw"},{"name":"Melo","code":"mfx"},{"name":"Mayo","code":"mfy"},{"name":"Mabaan","code":"mfz"},{"name":"Middle Irish (900-1200)","code":"mga"},{"name":"Mararit","code":"mgb"},{"name":"Morokodo","code":"mgc"},{"name":"Moru","code":"mgd"},{"name":"Mango","code":"mge"},{"name":"Maklew","code":"mgf"},{"name":"Mpumpong","code":"mgg"},{"name":"Makhuwa-Meetto","code":"mgh"},{"name":"Lijili","code":"mgi"},{"name":"Abureni","code":"mgj"},{"name":"Mawes","code":"mgk"},{"name":"Maleu-Kilenge","code":"mgl"},{"name":"Mambae","code":"mgm"},{"name":"Mbangi","code":"mgn"},{"name":"Meta'","code":"mgo"},{"name":"Eastern Magar","code":"mgp"},{"name":"Malila","code":"mgq"},{"name":"Mambwe-Lungu","code":"mgr"},{"name":"Manda (Tanzania)","code":"mgs"},{"name":"Mongol","code":"mgt"},{"name":"Mailu","code":"mgu"},{"name":"Matengo","code":"mgv"},{"name":"Matumbi","code":"mgw"},{"name":"Mbunga","code":"mgy"},{"name":"Mbugwe","code":"mgz"},{"name":"Manda (India)","code":"mha"},{"name":"Mahongwe","code":"mhb"},{"name":"Mocho","code":"mhc"},{"name":"Mbugu","code":"mhd"},{"name":"Besisi","code":"mhe"},{"name":"Mah Meri","code":"mhe"},{"name":"Mamaa","code":"mhf"},{"name":"Margu","code":"mhg"},{"name":"Ma'di","code":"mhi"},{"name":"Mogholi","code":"mhj"},{"name":"Mungaka","code":"mhk"},{"name":"Mauwake","code":"mhl"},{"name":"Makhuwa-Moniga","code":"mhm"},{"name":"Mócheno","code":"mhn"},{"name":"Mashi (Zambia)","code":"mho"},{"name":"Balinese Malay","code":"mhp"},{"name":"Mandan","code":"mhq"},{"name":"Eastern Mari","code":"mhr"},{"name":"Buru (Indonesia)","code":"mhs"},{"name":"Mandahuaca","code":"mht"},{"name":"Darang Deng","code":"mhu"},{"name":"Digaro-Mishmi","code":"mhu"},{"name":"Mbukushu","code":"mhw"},{"name":"Lhaovo","code":"mhx"},{"name":"Maru","code":"mhx"},{"name":"Ma'anyan","code":"mhy"},{"name":"Mor (Mor Islands)","code":"mhz"},{"name":"Miami","code":"mia"},{"name":"Atatláhuca Mixtec","code":"mib"},{"name":"Micmac","code":"mic"},{"name":"Mi'kmaq","code":"mic"},{"name":"Mandaic","code":"mid"},{"name":"Ocotepec Mixtec","code":"mie"},{"name":"Mofu-Gudur","code":"mif"},{"name":"San Miguel El Grande Mixtec","code":"mig"},{"name":"Chayuco Mixtec","code":"mih"},{"name":"Chigmecatitlán Mixtec","code":"mii"},{"name":"Abar","code":"mij"},{"name":"Mungbam","code":"mij"},{"name":"Mikasuki","code":"mik"},{"name":"Peñoles Mixtec","code":"mil"},{"name":"Alacatlatzala Mixtec","code":"mim"},{"name":"Minangkabau","code":"min"},{"name":"Pinotepa Nacional Mixtec","code":"mio"},{"name":"Apasco-Apoala Mixtec","code":"mip"},{"name":"Mískito","code":"miq"},{"name":"Isthmus Mixe","code":"mir"},{"name":"Uncoded languages","code":"mis"},{"name":"Southern Puebla Mixtec","code":"mit"},{"name":"Cacaloxtepec Mixtec","code":"miu"},{"name":"Akoye","code":"miw"},{"name":"Mixtepec Mixtec","code":"mix"},{"name":"Ayutla Mixtec","code":"miy"},{"name":"Coatzospan Mixtec","code":"miz"},{"name":"Makalero","code":"mjb"},{"name":"San Juan Colorado Mixtec","code":"mjc"},{"name":"Northwest Maidu","code":"mjd"},{"name":"Muskum","code":"mje"},{"name":"Tu","code":"mjg"},{"name":"Mwera (Nyasa)","code":"mjh"},{"name":"Kim Mun","code":"mji"},{"name":"Mawak","code":"mjj"},{"name":"Matukar","code":"mjk"},{"name":"Mandeali","code":"mjl"},{"name":"Medebur","code":"mjm"},{"name":"Ma (Papua New Guinea)","code":"mjn"},{"name":"Malankuravan","code":"mjo"},{"name":"Malapandaram","code":"mjp"},{"name":"Malaryan","code":"mjq"},{"name":"Malavedan","code":"mjr"},{"name":"Miship","code":"mjs"},{"name":"Sauria Paharia","code":"mjt"},{"name":"Manna-Dora","code":"mju"},{"name":"Mannan","code":"mjv"},{"name":"Karbi","code":"mjw"},{"name":"Mahali","code":"mjx"},{"name":"Mahican","code":"mjy"},{"name":"Majhi","code":"mjz"},{"name":"Mbre","code":"mka"},{"name":"Mal Paharia","code":"mkb"},{"name":"Siliput","code":"mkc"},{"name":"Macedonian","code":"mkd"},{"name":"Mawchi","code":"mke"},{"name":"Miya","code":"mkf"},{"name":"Mak (China)","code":"mkg"},{"name":"Dhatki","code":"mki"},{"name":"Mokilese","code":"mkj"},{"name":"Byep","code":"mkk"},{"name":"Mokole","code":"mkl"},{"name":"Moklen","code":"mkm"},{"name":"Kupang Malay","code":"mkn"},{"name":"Mingang Doso","code":"mko"},{"name":"Moikodi","code":"mkp"},{"name":"Bay Miwok","code":"mkq"},{"name":"Malas","code":"mkr"},{"name":"Silacayoapan Mixtec","code":"mks"},{"name":"Vamale","code":"mkt"},{"name":"Konyanka Maninka","code":"mku"},{"name":"Mafea","code":"mkv"},{"name":"Kituba (Congo)","code":"mkw"},{"name":"Kinamiging Manobo","code":"mkx"},{"name":"East Makian","code":"mky"},{"name":"Makasae","code":"mkz"},{"name":"Malo","code":"mla"},{"name":"Mbule","code":"mlb"},{"name":"Cao Lan","code":"mlc"},{"name":"Manambu","code":"mle"},{"name":"Mal","code":"mlf"},{"name":"Malagasy","code":"mlg"},{"name":"Mape","code":"mlh"},{"name":"Malimpung","code":"mli"},{"name":"Miltu","code":"mlj"},{"name":"Ilwana","code":"mlk"},{"name":"Kiwilwana","code":"mlk"},{"name":"Malua Bay","code":"mll"},{"name":"Mulam","code":"mlm"},{"name":"Malango","code":"mln"},{"name":"Mlomp","code":"mlo"},{"name":"Bargam","code":"mlp"},{"name":"Western Maninkakan","code":"mlq"},{"name":"Vame","code":"mlr"},{"name":"Masalit","code":"mls"},{"name":"Maltese","code":"mlt"},{"name":"To'abaita","code":"mlu"},{"name":"Motlav","code":"mlv"},{"name":"Mwotlap","code":"mlv"},{"name":"Moloko","code":"mlw"},{"name":"Malfaxal","code":"mlx"},{"name":"Naha'ai","code":"mlx"},{"name":"Malaynon","code":"mlz"},{"name":"Mama","code":"mma"},{"name":"Momina","code":"mmb"},{"name":"Michoacán Mazahua","code":"mmc"},{"name":"Maonan","code":"mmd"},{"name":"Mae","code":"mme"},{"name":"Mundat","code":"mmf"},{"name":"North Ambrym","code":"mmg"},{"name":"Mehináku","code":"mmh"},{"name":"Musar","code":"mmi"},{"name":"Majhwar","code":"mmj"},{"name":"Mukha-Dora","code":"mmk"},{"name":"Man Met","code":"mml"},{"name":"Maii","code":"mmm"},{"name":"Mamanwa","code":"mmn"},{"name":"Mangga Buang","code":"mmo"},{"name":"Siawi","code":"mmp"},{"name":"Musak","code":"mmq"},{"name":"Western Xiangxi Miao","code":"mmr"},{"name":"Malalamai","code":"mmt"},{"name":"Mmaala","code":"mmu"},{"name":"Miriti","code":"mmv"},{"name":"Emae","code":"mmw"},{"name":"Madak","code":"mmx"},{"name":"Migaama","code":"mmy"},{"name":"Mabaale","code":"mmz"},{"name":"Mbula","code":"mna"},{"name":"Muna","code":"mnb"},{"name":"Manchu","code":"mnc"},{"name":"Mondé","code":"mnd"},{"name":"Naba","code":"mne"},{"name":"Mundani","code":"mnf"},{"name":"Eastern Mnong","code":"mng"},{"name":"Mono (Democratic Republic of Congo)","code":"mnh"},{"name":"Manipuri","code":"mni"},{"name":"Munji","code":"mnj"},{"name":"Mandinka","code":"mnk"},{"name":"Tiale","code":"mnl"},{"name":"Mapena","code":"mnm"},{"name":"Southern Mnong","code":"mnn"},{"name":"Min Bei Chinese","code":"mnp"},{"name":"Minriq","code":"mnq"},{"name":"Mono (USA)","code":"mnr"},{"name":"Mansi","code":"mns"},{"name":"Mer","code":"mnu"},{"name":"Rennell-Bellona","code":"mnv"},{"name":"Mon","code":"mnw"},{"name":"Manikion","code":"mnx"},{"name":"Manyawa","code":"mny"},{"name":"Moni","code":"mnz"},{"name":"Mwan","code":"moa"},{"name":"Mocoví","code":"moc"},{"name":"Mobilian","code":"mod"},{"name":"Innu","code":"moe"},{"name":"Montagnais","code":"moe"},{"name":"Mongondow","code":"mog"},{"name":"Mohawk","code":"moh"},{"name":"Mboi","code":"moi"},{"name":"Monzombo","code":"moj"},{"name":"Morori","code":"mok"},{"name":"Mangue","code":"mom"},{"name":"Mongolian","code":"mon"},{"name":"Monom","code":"moo"},{"name":"Mopán Maya","code":"mop"},{"name":"Mor (Bomberai Peninsula)","code":"moq"},{"name":"Moro","code":"mor"},{"name":"Mossi","code":"mos"},{"name":"Barí","code":"mot"},{"name":"Mogum","code":"mou"},{"name":"Mohave","code":"mov"},{"name":"Moi (Congo)","code":"mow"},{"name":"Molima","code":"mox"},{"name":"Shekkacho","code":"moy"},{"name":"Gergiko","code":"moz"},{"name":"Mukulu","code":"moz"},{"name":"Mpoto","code":"mpa"},{"name":"Malak Malak","code":"mpb"},{"name":"Mullukmulluk","code":"mpb"},{"name":"Mangarrayi","code":"mpc"},{"name":"Machinere","code":"mpd"},{"name":"Majang","code":"mpe"},{"name":"Marba","code":"mpg"},{"name":"Maung","code":"mph"},{"name":"Mpade","code":"mpi"},{"name":"Martu Wangka","code":"mpj"},{"name":"Wangkajunga","code":"mpj"},{"name":"Mbara (Chad)","code":"mpk"},{"name":"Middle Watut","code":"mpl"},{"name":"Yosondúa Mixtec","code":"mpm"},{"name":"Mindiri","code":"mpn"},{"name":"Miu","code":"mpo"},{"name":"Migabac","code":"mpp"},{"name":"Matís","code":"mpq"},{"name":"Vangunu","code":"mpr"},{"name":"Dadibi","code":"mps"},{"name":"Mian","code":"mpt"},{"name":"Makuráp","code":"mpu"},{"name":"Mungkip","code":"mpv"},{"name":"Mapidian","code":"mpw"},{"name":"Misima-Panaeati","code":"mpx"},{"name":"Mapia","code":"mpy"},{"name":"Mpi","code":"mpz"},{"name":"Maba (Indonesia)","code":"mqa"},{"name":"Mbuko","code":"mqb"},{"name":"Mangole","code":"mqc"},{"name":"Matepi","code":"mqe"},{"name":"Momuna","code":"mqf"},{"name":"Kota Bangun Kutai Malay","code":"mqg"},{"name":"Tlazoyaltepec Mixtec","code":"mqh"},{"name":"Mariri","code":"mqi"},{"name":"Mamasa","code":"mqj"},{"name":"Rajah Kabunsuwan Manobo","code":"mqk"},{"name":"Mbelime","code":"mql"},{"name":"South Marquesan","code":"mqm"},{"name":"Moronene","code":"mqn"},{"name":"Modole","code":"mqo"},{"name":"Manipa","code":"mqp"},{"name":"Minokok","code":"mqq"},{"name":"Mander","code":"mqr"},{"name":"West Makian","code":"mqs"},{"name":"Mok","code":"mqt"},{"name":"Mandari","code":"mqu"},{"name":"Mosimo","code":"mqv"},{"name":"Murupi","code":"mqw"},{"name":"Mamuju","code":"mqx"},{"name":"Manggarai","code":"mqy"},{"name":"Pano","code":"mqz"},{"name":"Mlabri","code":"mra"},{"name":"Marino","code":"mrb"},{"name":"Maricopa","code":"mrc"},{"name":"Western Magar","code":"mrd"},{"name":"Martha's Vineyard Sign Language","code":"mre"},{"name":"Elseng","code":"mrf"},{"name":"Mising","code":"mrg"},{"name":"Mara Chin","code":"mrh"},{"name":"Maori","code":"mri"},{"name":"Western Mari","code":"mrj"},{"name":"Hmwaveke","code":"mrk"},{"name":"Mortlockese","code":"mrl"},{"name":"Merlav","code":"mrm"},{"name":"Mwerlap","code":"mrm"},{"name":"Cheke Holo","code":"mrn"},{"name":"Mru","code":"mro"},{"name":"Morouas","code":"mrp"},{"name":"North Marquesan","code":"mrq"},{"name":"Maria (India)","code":"mrr"},{"name":"Maragus","code":"mrs"},{"name":"Marghi Central","code":"mrt"},{"name":"Mono (Cameroon)","code":"mru"},{"name":"Mangareva","code":"mrv"},{"name":"Maranao","code":"mrw"},{"name":"Dineor","code":"mrx"},{"name":"Maremgi","code":"mrx"},{"name":"Mandaya","code":"mry"},{"name":"Marind","code":"mrz"},{"name":"Malay","code":"msa"},{"name":"Malay (macrolanguage)","code":"msa"},{"name":"Masbatenyo","code":"msb"},{"name":"Sankaran Maninka","code":"msc"},{"name":"Yucatec Maya Sign Language","code":"msd"},{"name":"Musey","code":"mse"},{"name":"Mekwei","code":"msf"},{"name":"Moraid","code":"msg"},{"name":"Masikoro Malagasy","code":"msh"},{"name":"Sabah Malay","code":"msi"},{"name":"Ma (Democratic Republic of Congo)","code":"msj"},{"name":"Mansaka","code":"msk"},{"name":"Molof","code":"msl"},{"name":"Poule","code":"msl"},{"name":"Agusan Manobo","code":"msm"},{"name":"Vurës","code":"msn"},{"name":"Mombum","code":"mso"},{"name":"Maritsauá","code":"msp"},{"name":"Caac","code":"msq"},{"name":"Mongolian Sign Language","code":"msr"},{"name":"West Masela","code":"mss"},{"name":"Musom","code":"msu"},{"name":"Maslam","code":"msv"},{"name":"Mansoanka","code":"msw"},{"name":"Moresada","code":"msx"},{"name":"Aruamu","code":"msy"},{"name":"Momare","code":"msz"},{"name":"Cotabato Manobo","code":"mta"},{"name":"Anyin Morofo","code":"mtb"},{"name":"Munit","code":"mtc"},{"name":"Mualang","code":"mtd"},{"name":"Mono (Solomon Islands)","code":"mte"},{"name":"Murik (Papua New Guinea)","code":"mtf"},{"name":"Una","code":"mtg"},{"name":"Munggui","code":"mth"},{"name":"Maiwa (Papua New Guinea)","code":"mti"},{"name":"Moskona","code":"mtj"},{"name":"Mbe'","code":"mtk"},{"name":"Montol","code":"mtl"},{"name":"Mator","code":"mtm"},{"name":"Matagalpa","code":"mtn"},{"name":"Totontepec Mixe","code":"mto"},{"name":"Wichí Lhamtés Nocten","code":"mtp"},{"name":"Muong","code":"mtq"},{"name":"Mewari","code":"mtr"},{"name":"Yora","code":"mts"},{"name":"Mota","code":"mtt"},{"name":"Tututepec Mixtec","code":"mtu"},{"name":"Asaro'o","code":"mtv"},{"name":"Southern Binukidnon","code":"mtw"},{"name":"Tidaá Mixtec","code":"mtx"},{"name":"Nabi","code":"mty"},{"name":"Mundang","code":"mua"},{"name":"Mubi","code":"mub"},{"name":"Ajumbu","code":"muc"},{"name":"Mednyj Aleut","code":"mud"},{"name":"Media Lengua","code":"mue"},{"name":"Musgu","code":"mug"},{"name":"Mündü","code":"muh"},{"name":"Musi","code":"mui"},{"name":"Mabire","code":"muj"},{"name":"Mugom","code":"muk"},{"name":"Multiple languages","code":"mul"},{"name":"Maiwala","code":"mum"},{"name":"Nyong","code":"muo"},{"name":"Malvi","code":"mup"},{"name":"Eastern Xiangxi Miao","code":"muq"},{"name":"Murle","code":"mur"},{"name":"Creek","code":"mus"},{"name":"Western Muria","code":"mut"},{"name":"Yaaku","code":"muu"},{"name":"Muthuvan","code":"muv"},{"name":"Bo-Ung","code":"mux"},{"name":"Muyang","code":"muy"},{"name":"Mursi","code":"muz"},{"name":"Manam","code":"mva"},{"name":"Mattole","code":"mvb"},{"name":"Mamboru","code":"mvd"},{"name":"Marwari (Pakistan)","code":"mve"},{"name":"Peripheral Mongolian","code":"mvf"},{"name":"Yucuañe Mixtec","code":"mvg"},{"name":"Mulgi","code":"mvh"},{"name":"Miyako","code":"mvi"},{"name":"Mekmek","code":"mvk"},{"name":"Mbara (Australia)","code":"mvl"},{"name":"Minaveha","code":"mvn"},{"name":"Marovo","code":"mvo"},{"name":"Duri","code":"mvp"},{"name":"Moere","code":"mvq"},{"name":"Marau","code":"mvr"},{"name":"Massep","code":"mvs"},{"name":"Mpotovoro","code":"mvt"},{"name":"Marfa","code":"mvu"},{"name":"Tagal Murut","code":"mvv"},{"name":"Machinga","code":"mvw"},{"name":"Meoswar","code":"mvx"},{"name":"Indus Kohistani","code":"mvy"},{"name":"Mesqan","code":"mvz"},{"name":"Mwatebu","code":"mwa"},{"name":"Juwal","code":"mwb"},{"name":"Are","code":"mwc"},{"name":"Mwera (Chimwera)","code":"mwe"},{"name":"Murrinh-Patha","code":"mwf"},{"name":"Aiklep","code":"mwg"},{"name":"Mouk-Aria","code":"mwh"},{"name":"Labo","code":"mwi"},{"name":"Ninde","code":"mwi"},{"name":"Kita Maninkakan","code":"mwk"},{"name":"Mirandese","code":"mwl"},{"name":"Sar","code":"mwm"},{"name":"Nyamwanga","code":"mwn"},{"name":"Central Maewo","code":"mwo"},{"name":"Kala Lagaw Ya","code":"mwp"},{"name":"Mün Chin","code":"mwq"},{"name":"Marwari","code":"mwr"},{"name":"Mwimbi-Muthambi","code":"mws"},{"name":"Moken","code":"mwt"},{"name":"Mittu","code":"mwu"},{"name":"Mentawai","code":"mwv"},{"name":"Hmong Daw","code":"mww"},{"name":"Moingi","code":"mwz"},{"name":"Northwest Oaxaca Mixtec","code":"mxa"},{"name":"Tezoatlán Mixtec","code":"mxb"},{"name":"Manyika","code":"mxc"},{"name":"Modang","code":"mxd"},{"name":"Mele-Fila","code":"mxe"},{"name":"Malgbe","code":"mxf"},{"name":"Mbangala","code":"mxg"},{"name":"Mvuba","code":"mxh"},{"name":"Mozarabic","code":"mxi"},{"name":"Geman Deng","code":"mxj"},{"name":"Miju-Mishmi","code":"mxj"},{"name":"Monumbo","code":"mxk"},{"name":"Maxi Gbe","code":"mxl"},{"name":"Meramera","code":"mxm"},{"name":"Moi (Indonesia)","code":"mxn"},{"name":"Mbowe","code":"mxo"},{"name":"Tlahuitoltepec Mixe","code":"mxp"},{"name":"Juquila Mixe","code":"mxq"},{"name":"Murik (Malaysia)","code":"mxr"},{"name":"Huitepec Mixtec","code":"mxs"},{"name":"Jamiltepec Mixtec","code":"mxt"},{"name":"Mada (Cameroon)","code":"mxu"},{"name":"Metlatónoc Mixtec","code":"mxv"},{"name":"Namo","code":"mxw"},{"name":"Mahou","code":"mxx"},{"name":"Mawukakan","code":"mxx"},{"name":"Southeastern Nochixtlán Mixtec","code":"mxy"},{"name":"Central Masela","code":"mxz"},{"name":"Burmese","code":"mya"},{"name":"Mbay","code":"myb"},{"name":"Mayeka","code":"myc"},{"name":"Myene","code":"mye"},{"name":"Bambassi","code":"myf"},{"name":"Manta","code":"myg"},{"name":"Makah","code":"myh"},{"name":"Mangayat","code":"myj"},{"name":"Mamara Senoufo","code":"myk"},{"name":"Moma","code":"myl"},{"name":"Me'en","code":"mym"},{"name":"Anfillo","code":"myo"},{"name":"Pirahã","code":"myp"},{"name":"Muniche","code":"myr"},{"name":"Mesmes","code":"mys"},{"name":"Mundurukú","code":"myu"},{"name":"Erzya","code":"myv"},{"name":"Muyuw","code":"myw"},{"name":"Masaaba","code":"myx"},{"name":"Macuna","code":"myy"},{"name":"Classical Mandaic","code":"myz"},{"name":"Santa María Zacatepec Mixtec","code":"mza"},{"name":"Tumzabt","code":"mzb"},{"name":"Madagascar Sign Language","code":"mzc"},{"name":"Malimba","code":"mzd"},{"name":"Morawa","code":"mze"},{"name":"Monastic Sign Language","code":"mzg"},{"name":"Wichí Lhamtés Güisnay","code":"mzh"},{"name":"Ixcatlán Mazatec","code":"mzi"},{"name":"Manya","code":"mzj"},{"name":"Nigeria Mambila","code":"mzk"},{"name":"Mazatlán Mixe","code":"mzl"},{"name":"Mumuye","code":"mzm"},{"name":"Mazanderani","code":"mzn"},{"name":"Matipuhy","code":"mzo"},{"name":"Movima","code":"mzp"},{"name":"Mori Atas","code":"mzq"},{"name":"Marúbo","code":"mzr"},{"name":"Macanese","code":"mzs"},{"name":"Mintil","code":"mzt"},{"name":"Inapang","code":"mzu"},{"name":"Manza","code":"mzv"},{"name":"Deg","code":"mzw"},{"name":"Mawayana","code":"mzx"},{"name":"Mozambican Sign Language","code":"mzy"},{"name":"Maiadomu","code":"mzz"},{"name":"Namla","code":"naa"},{"name":"Southern Nambikuára","code":"nab"},{"name":"Narak","code":"nac"},{"name":"Naka'ela","code":"nae"},{"name":"Nabak","code":"naf"},{"name":"Naga Pidgin","code":"nag"},{"name":"Nalu","code":"naj"},{"name":"Nakanai","code":"nak"},{"name":"Nalik","code":"nal"},{"name":"Ngan'gityemerri","code":"nam"},{"name":"Min Nan Chinese","code":"nan"},{"name":"Naaba","code":"nao"},{"name":"Neapolitan","code":"nap"},{"name":"Khoekhoe","code":"naq"},{"name":"Nama (Namibia)","code":"naq"},{"name":"Iguta","code":"nar"},{"name":"Naasioi","code":"nas"},{"name":"Ca̱hungwa̱rya̱","code":"nat"},{"name":"Hungworo","code":"nat"},{"name":"Nauru","code":"nau"},{"name":"Navaho","code":"nav"},{"name":"Navajo","code":"nav"},{"name":"Nawuri","code":"naw"},{"name":"Nakwi","code":"nax"},{"name":"Ngarrindjeri","code":"nay"},{"name":"Coatepec Nahuatl","code":"naz"},{"name":"Nyemba","code":"nba"},{"name":"Ndoe","code":"nbb"},{"name":"Chang Naga","code":"nbc"},{"name":"Ngbinda","code":"nbd"},{"name":"Konyak Naga","code":"nbe"},{"name":"Nagarchal","code":"nbg"},{"name":"Ngamo","code":"nbh"},{"name":"Mao Naga","code":"nbi"},{"name":"Ngarinyman","code":"nbj"},{"name":"Nake","code":"nbk"},{"name":"South Ndebele","code":"nbl"},{"name":"Ngbaka Ma'bo","code":"nbm"},{"name":"Kuri","code":"nbn"},{"name":"Nkukoli","code":"nbo"},{"name":"Nnam","code":"nbp"},{"name":"Nggem","code":"nbq"},{"name":"Numana","code":"nbr"},{"name":"Namibian Sign Language","code":"nbs"},{"name":"Na","code":"nbt"},{"name":"Rongmei Naga","code":"nbu"},{"name":"Ngamambo","code":"nbv"},{"name":"Southern Ngbandi","code":"nbw"},{"name":"Ningera","code":"nby"},{"name":"Iyo","code":"nca"},{"name":"Central Nicobarese","code":"ncb"},{"name":"Ponam","code":"ncc"},{"name":"Nachering","code":"ncd"},{"name":"Yale","code":"nce"},{"name":"Notsi","code":"ncf"},{"name":"Nisga'a","code":"ncg"},{"name":"Central Huasteca Nahuatl","code":"nch"},{"name":"Classical Nahuatl","code":"nci"},{"name":"Northern Puebla Nahuatl","code":"ncj"},{"name":"Na-kara","code":"nck"},{"name":"Michoacán Nahuatl","code":"ncl"},{"name":"Nambo","code":"ncm"},{"name":"Nauna","code":"ncn"},{"name":"Sibe","code":"nco"},{"name":"Northern Katang","code":"ncq"},{"name":"Ncane","code":"ncr"},{"name":"Nicaraguan Sign Language","code":"ncs"},{"name":"Chothe Naga","code":"nct"},{"name":"Chumburung","code":"ncu"},{"name":"Central Puebla Nahuatl","code":"ncx"},{"name":"Natchez","code":"ncz"},{"name":"Ndasa","code":"nda"},{"name":"Kenswei Nsei","code":"ndb"},{"name":"Ndau","code":"ndc"},{"name":"Nde-Nsele-Nta","code":"ndd"},{"name":"North Ndebele","code":"nde"},{"name":"Nadruvian","code":"ndf"},{"name":"Ndengereko","code":"ndg"},{"name":"Ndali","code":"ndh"},{"name":"Samba Leko","code":"ndi"},{"name":"Ndamba","code":"ndj"},{"name":"Ndaka","code":"ndk"},{"name":"Ndolo","code":"ndl"},{"name":"Ndam","code":"ndm"},{"name":"Ngundi","code":"ndn"},{"name":"Ndonga","code":"ndo"},{"name":"Ndo","code":"ndp"},{"name":"Ndombe","code":"ndq"},{"name":"Ndoola","code":"ndr"},{"name":"Low German","code":"nds"},{"name":"Low Saxon","code":"nds"},{"name":"Ndunga","code":"ndt"},{"name":"Dugun","code":"ndu"},{"name":"Ndut","code":"ndv"},{"name":"Ndobo","code":"ndw"},{"name":"Nduga","code":"ndx"},{"name":"Lutos","code":"ndy"},{"name":"Ndogo","code":"ndz"},{"name":"Eastern Ngad'a","code":"nea"},{"name":"Toura (Côte d'Ivoire)","code":"neb"},{"name":"Nedebang","code":"nec"},{"name":"Nde-Gbite","code":"ned"},{"name":"Nêlêmwa-Nixumwak","code":"nee"},{"name":"Nefamese","code":"nef"},{"name":"Negidal","code":"neg"},{"name":"Nyenkha","code":"neh"},{"name":"Neo-Hittite","code":"nei"},{"name":"Neko","code":"nej"},{"name":"Neku","code":"nek"},{"name":"Nemi","code":"nem"},{"name":"Nengone","code":"nen"},{"name":"Ná-Meo","code":"neo"},{"name":"Nepali","code":"nep"},{"name":"Nepali (macrolanguage)","code":"nep"},{"name":"North Central Mixe","code":"neq"},{"name":"Yahadian","code":"ner"},{"name":"Bhoti Kinnauri","code":"nes"},{"name":"Nete","code":"net"},{"name":"Neo","code":"neu"},{"name":"Nyaheun","code":"nev"},{"name":"Nepal Bhasa","code":"new"},{"name":"Newari","code":"new"},{"name":"Neme","code":"nex"},{"name":"Neyo","code":"ney"},{"name":"Nez Perce","code":"nez"},{"name":"Dhao","code":"nfa"},{"name":"Ahwai","code":"nfd"},{"name":"Äiwoo","code":"nfl"},{"name":"Ayiwo","code":"nfl"},{"name":"Nafaanra","code":"nfr"},{"name":"Mfumte","code":"nfu"},{"name":"Ngbaka","code":"nga"},{"name":"Northern Ngbandi","code":"ngb"},{"name":"Ngombe (Democratic Republic of Congo)","code":"ngc"},{"name":"Ngando (Central African Republic)","code":"ngd"},{"name":"Ngemba","code":"nge"},{"name":"Ngbaka Manza","code":"ngg"},{"name":"Nǁng","code":"ngh"},{"name":"Ngizim","code":"ngi"},{"name":"Ngie","code":"ngj"},{"name":"Dalabon","code":"ngk"},{"name":"Lomwe","code":"ngl"},{"name":"Ngatik Men's Creole","code":"ngm"},{"name":"Ngwo","code":"ngn"},{"name":"Ngulu","code":"ngp"},{"name":"Ngoreme","code":"ngq"},{"name":"Ngurimi","code":"ngq"},{"name":"Engdewu","code":"ngr"},{"name":"Gvoko","code":"ngs"},{"name":"Kriang","code":"ngt"},{"name":"Ngeq","code":"ngt"},{"name":"Guerrero Nahuatl","code":"ngu"},{"name":"Nagumi","code":"ngv"},{"name":"Ngwaba","code":"ngw"},{"name":"Nggwahyi","code":"ngx"},{"name":"Tibea","code":"ngy"},{"name":"Ngungwel","code":"ngz"},{"name":"Nhanda","code":"nha"},{"name":"Beng","code":"nhb"},{"name":"Tabasco Nahuatl","code":"nhc"},{"name":"Ava Guaraní","code":"nhd"},{"name":"Chiripá","code":"nhd"},{"name":"Eastern Huasteca Nahuatl","code":"nhe"},{"name":"Nhuwala","code":"nhf"},{"name":"Tetelcingo Nahuatl","code":"nhg"},{"name":"Nahari","code":"nhh"},{"name":"Zacatlán-Ahuacatlán-Tepetzintla Nahuatl","code":"nhi"},{"name":"Isthmus-Cosoleacaque Nahuatl","code":"nhk"},{"name":"Morelos Nahuatl","code":"nhm"},{"name":"Central Nahuatl","code":"nhn"},{"name":"Takuu","code":"nho"},{"name":"Isthmus-Pajapan Nahuatl","code":"nhp"},{"name":"Huaxcaleca Nahuatl","code":"nhq"},{"name":"Naro","code":"nhr"},{"name":"Ometepec Nahuatl","code":"nht"},{"name":"Noone","code":"nhu"},{"name":"Temascaltepec Nahuatl","code":"nhv"},{"name":"Western Huasteca Nahuatl","code":"nhw"},{"name":"Isthmus-Mecayapan Nahuatl","code":"nhx"},{"name":"Northern Oaxaca Nahuatl","code":"nhy"},{"name":"Santa María La Alta Nahuatl","code":"nhz"},{"name":"Nias","code":"nia"},{"name":"Nakame","code":"nib"},{"name":"Ngandi","code":"nid"},{"name":"Niellim","code":"nie"},{"name":"Nek","code":"nif"},{"name":"Ngalakgan","code":"nig"},{"name":"Nyiha (Tanzania)","code":"nih"},{"name":"Nii","code":"nii"},{"name":"Ngaju","code":"nij"},{"name":"Southern Nicobarese","code":"nik"},{"name":"Nila","code":"nil"},{"name":"Nilamba","code":"nim"},{"name":"Ninzo","code":"nin"},{"name":"Nganasan","code":"nio"},{"name":"Nandi","code":"niq"},{"name":"Nimboran","code":"nir"},{"name":"Nimi","code":"nis"},{"name":"Southeastern Kolami","code":"nit"},{"name":"Niuean","code":"niu"},{"name":"Gilyak","code":"niv"},{"name":"Nimo","code":"niw"},{"name":"Hema","code":"nix"},{"name":"Ngiti","code":"niy"},{"name":"Ningil","code":"niz"},{"name":"Nzanyi","code":"nja"},{"name":"Nocte Naga","code":"njb"},{"name":"Ndonde Hamba","code":"njd"},{"name":"Lotha Naga","code":"njh"},{"name":"Gudanji","code":"nji"},{"name":"Njen","code":"njj"},{"name":"Njalgulgule","code":"njl"},{"name":"Angami Naga","code":"njm"},{"name":"Liangmai Naga","code":"njn"},{"name":"Ao Naga","code":"njo"},{"name":"Njerep","code":"njr"},{"name":"Nisa","code":"njs"},{"name":"Ndyuka-Trio Pidgin","code":"njt"},{"name":"Ngadjunmaya","code":"nju"},{"name":"Kunyi","code":"njx"},{"name":"Njyem","code":"njy"},{"name":"Nyishi","code":"njz"},{"name":"Nkoya","code":"nka"},{"name":"Khoibu Naga","code":"nkb"},{"name":"Nkongho","code":"nkc"},{"name":"Koireng","code":"nkd"},{"name":"Duke","code":"nke"},{"name":"Inpui Naga","code":"nkf"},{"name":"Nekgini","code":"nkg"},{"name":"Khezha Naga","code":"nkh"},{"name":"Thangal Naga","code":"nki"},{"name":"Nakai","code":"nkj"},{"name":"Nokuku","code":"nkk"},{"name":"Namat","code":"nkm"},{"name":"Nkangala","code":"nkn"},{"name":"Nkonya","code":"nko"},{"name":"Niuatoputapu","code":"nkp"},{"name":"Nkami","code":"nkq"},{"name":"Nukuoro","code":"nkr"},{"name":"North Asmat","code":"nks"},{"name":"Nyika (Tanzania)","code":"nkt"},{"name":"Bouna Kulango","code":"nku"},{"name":"Nyika (Malawi and Zambia)","code":"nkv"},{"name":"Nkutu","code":"nkw"},{"name":"Nkoroo","code":"nkx"},{"name":"Nkari","code":"nkz"},{"name":"Ngombale","code":"nla"},{"name":"Nalca","code":"nlc"},{"name":"Dutch","code":"nld"},{"name":"Flemish","code":"nld"},{"name":"East Nyala","code":"nle"},{"name":"Gela","code":"nlg"},{"name":"Grangali","code":"nli"},{"name":"Nyali","code":"nlj"},{"name":"Ninia Yali","code":"nlk"},{"name":"Nihali","code":"nll"},{"name":"Mankiyali","code":"nlm"},{"name":"Ngul","code":"nlo"},{"name":"Lao Naga","code":"nlq"},{"name":"Nchumbulu","code":"nlu"},{"name":"Orizaba Nahuatl","code":"nlv"},{"name":"Walangama","code":"nlw"},{"name":"Nahali","code":"nlx"},{"name":"Nyamal","code":"nly"},{"name":"Nalögo","code":"nlz"},{"name":"Maram Naga","code":"nma"},{"name":"Big Nambas","code":"nmb"},{"name":"V'ënen Taut","code":"nmb"},{"name":"Ngam","code":"nmc"},{"name":"Ndumu","code":"nmd"},{"name":"Mzieme Naga","code":"nme"},{"name":"Tangkhul Naga (India)","code":"nmf"},{"name":"Kwasio","code":"nmg"},{"name":"Monsang Naga","code":"nmh"},{"name":"Nyam","code":"nmi"},{"name":"Ngombe (Central African Republic)","code":"nmj"},{"name":"Namakura","code":"nmk"},{"name":"Ndemli","code":"nml"},{"name":"Manangba","code":"nmm"},{"name":"ǃXóõ","code":"nmn"},{"name":"Moyon Naga","code":"nmo"},{"name":"Nimanbur","code":"nmp"},{"name":"Nambya","code":"nmq"},{"name":"Nimbari","code":"nmr"},{"name":"Letemboi","code":"nms"},{"name":"Namonuito","code":"nmt"},{"name":"Northeast Maidu","code":"nmu"},{"name":"Ngamini","code":"nmv"},{"name":"Nimoa","code":"nmw"},{"name":"Rifao","code":"nmw"},{"name":"Nama (Papua New Guinea)","code":"nmx"},{"name":"Namuyi","code":"nmy"},{"name":"Nawdm","code":"nmz"},{"name":"Nyangumarta","code":"nna"},{"name":"Nande","code":"nnb"},{"name":"Nancere","code":"nnc"},{"name":"West Ambae","code":"nnd"},{"name":"Ngandyera","code":"nne"},{"name":"Ngaing","code":"nnf"},{"name":"Maring Naga","code":"nng"},{"name":"Ngiemboon","code":"nnh"},{"name":"North Nuaulu","code":"nni"},{"name":"Nyangatom","code":"nnj"},{"name":"Nankina","code":"nnk"},{"name":"Northern Rengma Naga","code":"nnl"},{"name":"Namia","code":"nnm"},{"name":"Ngete","code":"nnn"},{"name":"Norwegian Nynorsk","code":"nno"},{"name":"Wancho Naga","code":"nnp"},{"name":"Ngindo","code":"nnq"},{"name":"Narungga","code":"nnr"},{"name":"Nanticoke","code":"nnt"},{"name":"Dwang","code":"nnu"},{"name":"Nugunu (Australia)","code":"nnv"},{"name":"Southern Nuni","code":"nnw"},{"name":"Nyangga","code":"nny"},{"name":"Nda'nda'","code":"nnz"},{"name":"Woun Meu","code":"noa"},{"name":"Norwegian Bokmål","code":"nob"},{"name":"Nuk","code":"noc"},{"name":"Northern Thai","code":"nod"},{"name":"Nimadi","code":"noe"},{"name":"Nomane","code":"nof"},{"name":"Nogai","code":"nog"},{"name":"Nomu","code":"noh"},{"name":"Noiri","code":"noi"},{"name":"Nonuya","code":"noj"},{"name":"Nooksack","code":"nok"},{"name":"Nomlaki","code":"nol"},{"name":"Nocamán","code":"nom"},{"name":"Old Norse","code":"non"},{"name":"Numanggang","code":"nop"},{"name":"Ngongo","code":"noq"},{"name":"Norwegian","code":"nor"},{"name":"Eastern Nisu","code":"nos"},{"name":"Nomatsiguenga","code":"not"},{"name":"Ewage-Notu","code":"nou"},{"name":"Novial","code":"nov"},{"name":"Nyambo","code":"now"},{"name":"Noy","code":"noy"},{"name":"Nayi","code":"noz"},{"name":"Nar Phu","code":"npa"},{"name":"Nupbikha","code":"npb"},{"name":"Ponyo-Gongwang Naga","code":"npg"},{"name":"Phom Naga","code":"nph"},{"name":"Nepali (individual language)","code":"npi"},{"name":"Southeastern Puebla Nahuatl","code":"npl"},{"name":"Mondropolon","code":"npn"},{"name":"Pochuri Naga","code":"npo"},{"name":"Nipsan","code":"nps"},{"name":"Puimei Naga","code":"npu"},{"name":"Noipx","code":"npx"},{"name":"Napu","code":"npy"},{"name":"Southern Nago","code":"nqg"},{"name":"Kura Ede Nago","code":"nqk"},{"name":"Ngendelengo","code":"nql"},{"name":"Ndom","code":"nqm"},{"name":"Nen","code":"nqn"},{"name":"N'Ko","code":"nqo"},{"name":"Kyan-Karyaw Naga","code":"nqq"},{"name":"Nteng","code":"nqt"},{"name":"Akyaung Ari Naga","code":"nqy"},{"name":"Ngom","code":"nra"},{"name":"Nara","code":"nrb"},{"name":"Noric","code":"nrc"},{"name":"Southern Rengma Naga","code":"nre"},{"name":"Guernésiais","code":"nrf"},{"name":"Jèrriais","code":"nrf"},{"name":"Narango","code":"nrg"},{"name":"Chokri Naga","code":"nri"},{"name":"Ngarla","code":"nrk"},{"name":"Ngarluma","code":"nrl"},{"name":"Narom","code":"nrm"},{"name":"Norn","code":"nrn"},{"name":"North Picene","code":"nrp"},{"name":"Nora","code":"nrr"},{"name":"Norra","code":"nrr"},{"name":"Northern Kalapuya","code":"nrt"},{"name":"Narua","code":"nru"},{"name":"Ngurmbur","code":"nrx"},{"name":"Lala","code":"nrz"},{"name":"Sangtam Naga","code":"nsa"},{"name":"Lower Nossob","code":"nsb"},{"name":"Nshi","code":"nsc"},{"name":"Southern Nisu","code":"nsd"},{"name":"Nsenga","code":"nse"},{"name":"Northwestern Nisu","code":"nsf"},{"name":"Ngasa","code":"nsg"},{"name":"Ngoshie","code":"nsh"},{"name":"Nigerian Sign Language","code":"nsi"},{"name":"Naskapi","code":"nsk"},{"name":"Norwegian Sign Language","code":"nsl"},{"name":"Sumi Naga","code":"nsm"},{"name":"Nehan","code":"nsn"},{"name":"Northern Sotho","code":"nso"},{"name":"Pedi","code":"nso"},{"name":"Sepedi","code":"nso"},{"name":"Nepalese Sign Language","code":"nsp"},{"name":"Northern Sierra Miwok","code":"nsq"},{"name":"Maritime Sign Language","code":"nsr"},{"name":"Nali","code":"nss"},{"name":"Tase Naga","code":"nst"},{"name":"Sierra Negra Nahuatl","code":"nsu"},{"name":"Southwestern Nisu","code":"nsv"},{"name":"Navut","code":"nsw"},{"name":"Nsongo","code":"nsx"},{"name":"Nasal","code":"nsy"},{"name":"Nisenan","code":"nsz"},{"name":"Northern Tidung","code":"ntd"},{"name":"Nathembo","code":"nte"},{"name":"Ngantangarra","code":"ntg"},{"name":"Natioro","code":"nti"},{"name":"Ngaanyatjarra","code":"ntj"},{"name":"Ikoma-Nata-Isenye","code":"ntk"},{"name":"Nateni","code":"ntm"},{"name":"Ntomba","code":"nto"},{"name":"Northern Tepehuan","code":"ntp"},{"name":"Delo","code":"ntr"},{"name":"Natügu","code":"ntu"},{"name":"Nottoway","code":"ntw"},{"name":"Tangkhul Naga (Myanmar)","code":"ntx"},{"name":"Mantsi","code":"nty"},{"name":"Natanzi","code":"ntz"},{"name":"Yuanga","code":"nua"},{"name":"Nukuini","code":"nuc"},{"name":"Ngala","code":"nud"},{"name":"Ngundu","code":"nue"},{"name":"Nusu","code":"nuf"},{"name":"Nungali","code":"nug"},{"name":"Ndunda","code":"nuh"},{"name":"Ngumbi","code":"nui"},{"name":"Nyole","code":"nuj"},{"name":"Nuuchahnulth","code":"nuk"},{"name":"Nuu-chah-nulth","code":"nuk"},{"name":"Nusa Laut","code":"nul"},{"name":"Niuafo'ou","code":"num"},{"name":"Anong","code":"nun"},{"name":"Nguôn","code":"nuo"},{"name":"Nupe-Nupe-Tako","code":"nup"},{"name":"Nukumanu","code":"nuq"},{"name":"Nukuria","code":"nur"},{"name":"Nuer","code":"nus"},{"name":"Nung (Viet Nam)","code":"nut"},{"name":"Ngbundu","code":"nuu"},{"name":"Northern Nuni","code":"nuv"},{"name":"Nguluwan","code":"nuw"},{"name":"Mehek","code":"nux"},{"name":"Nunggubuyu","code":"nuy"},{"name":"Tlamacazapa Nahuatl","code":"nuz"},{"name":"Nasarian","code":"nvh"},{"name":"Namiae","code":"nvm"},{"name":"Nyokon","code":"nvo"},{"name":"Nawathinehena","code":"nwa"},{"name":"Nyabwa","code":"nwb"},{"name":"Classical Nepal Bhasa","code":"nwc"},{"name":"Classical Newari","code":"nwc"},{"name":"Old Newari","code":"nwc"},{"name":"Ngwe","code":"nwe"},{"name":"Ngayawung","code":"nwg"},{"name":"Southwest Tanna","code":"nwi"},{"name":"Nyamusa-Molo","code":"nwm"},{"name":"Nauo","code":"nwo"},{"name":"Nawaru","code":"nwr"},{"name":"Middle Newar","code":"nwx"},{"name":"Nottoway-Meherrin","code":"nwy"},{"name":"Nauete","code":"nxa"},{"name":"Ngando (Democratic Republic of Congo)","code":"nxd"},{"name":"Nage","code":"nxe"},{"name":"Ngad'a","code":"nxg"},{"name":"Nindi","code":"nxi"},{"name":"Koki Naga","code":"nxk"},{"name":"South Nuaulu","code":"nxl"},{"name":"Numidian","code":"nxm"},{"name":"Ngawun","code":"nxn"},{"name":"Ndambomo","code":"nxo"},{"name":"Naxi","code":"nxq"},{"name":"Ninggerum","code":"nxr"},{"name":"Nafri","code":"nxx"},{"name":"Chewa","code":"nya"},{"name":"Chichewa","code":"nya"},{"name":"Nyanja","code":"nya"},{"name":"Nyangbo","code":"nyb"},{"name":"Nyanga-li","code":"nyc"},{"name":"Nyore","code":"nyd"},{"name":"Olunyole","code":"nyd"},{"name":"Nyengo","code":"nye"},{"name":"Giryama","code":"nyf"},{"name":"Kigiryama","code":"nyf"},{"name":"Nyindu","code":"nyg"},{"name":"Nyikina","code":"nyh"},{"name":"Ama (Sudan)","code":"nyi"},{"name":"Nyanga","code":"nyj"},{"name":"Nyaneka","code":"nyk"},{"name":"Nyeu","code":"nyl"},{"name":"Nyamwezi","code":"nym"},{"name":"Nyankole","code":"nyn"},{"name":"Nyoro","code":"nyo"},{"name":"Nyang'i","code":"nyp"},{"name":"Nayini","code":"nyq"},{"name":"Nyiha (Malawi)","code":"nyr"},{"name":"Nyungar","code":"nys"},{"name":"Nyawaygi","code":"nyt"},{"name":"Nyungwe","code":"nyu"},{"name":"Nyulnyul","code":"nyv"},{"name":"Nyaw","code":"nyw"},{"name":"Nganyaywana","code":"nyx"},{"name":"Nyakyusa-Ngonde","code":"nyy"},{"name":"Tigon Mbembe","code":"nza"},{"name":"Njebi","code":"nzb"},{"name":"Nzadi","code":"nzd"},{"name":"Nzima","code":"nzi"},{"name":"Nzakara","code":"nzk"},{"name":"Zeme Naga","code":"nzm"},{"name":"New Zealand Sign Language","code":"nzs"},{"name":"Teke-Nzikou","code":"nzu"},{"name":"Nzakambay","code":"nzy"},{"name":"Nanga Dama Dogon","code":"nzz"},{"name":"Orok","code":"oaa"},{"name":"Oroch","code":"oac"},{"name":"Ancient Aramaic (up to 700 BCE)","code":"oar"},{"name":"Old Aramaic (up to 700 BCE)","code":"oar"},{"name":"Old Avar","code":"oav"},{"name":"Obispeño","code":"obi"},{"name":"Southern Bontok","code":"obk"},{"name":"Oblo","code":"obl"},{"name":"Moabite","code":"obm"},{"name":"Obo Manobo","code":"obo"},{"name":"Old Burmese","code":"obr"},{"name":"Old Breton","code":"obt"},{"name":"Obulom","code":"obu"},{"name":"Ocaina","code":"oca"},{"name":"Old Chinese","code":"och"},{"name":"Occitan (post 1500)","code":"oci"},{"name":"Old Cham","code":"ocm"},{"name":"Old Cornish","code":"oco"},{"name":"Atzingo Matlatzinca","code":"ocu"},{"name":"Odut","code":"oda"},{"name":"Od","code":"odk"},{"name":"Old Dutch","code":"odt"},{"name":"Odual","code":"odu"},{"name":"Ofo","code":"ofo"},{"name":"Old Frisian","code":"ofs"},{"name":"Efutop","code":"ofu"},{"name":"Ogbia","code":"ogb"},{"name":"Ogbah","code":"ogc"},{"name":"Old Georgian","code":"oge"},{"name":"Ogbogolo","code":"ogg"},{"name":"Khana","code":"ogo"},{"name":"Ogbronuagum","code":"ogu"},{"name":"Old Hittite","code":"oht"},{"name":"Old Hungarian","code":"ohu"},{"name":"Oirata","code":"oia"},{"name":"Inebu One","code":"oin"},{"name":"Northwestern Ojibwa","code":"ojb"},{"name":"Central Ojibwa","code":"ojc"},{"name":"Eastern Ojibwa","code":"ojg"},{"name":"Ojibwa","code":"oji"},{"name":"Old Japanese","code":"ojp"},{"name":"Severn Ojibwa","code":"ojs"},{"name":"Ontong Java","code":"ojv"},{"name":"Western Ojibwa","code":"ojw"},{"name":"Okanagan","code":"oka"},{"name":"Okobo","code":"okb"},{"name":"Kobo","code":"okc"},{"name":"Okodia","code":"okd"},{"name":"Okpe (Southwestern Edo)","code":"oke"},{"name":"Koko Babangk","code":"okg"},{"name":"Koresh-e Rostam","code":"okh"},{"name":"Okiek","code":"oki"},{"name":"Oko-Juwoi","code":"okj"},{"name":"Kwamtim One","code":"okk"},{"name":"Old Kentish Sign Language","code":"okl"},{"name":"Middle Korean (10th-16th cent.)","code":"okm"},{"name":"Oki-No-Erabu","code":"okn"},{"name":"Old Korean (3rd-9th cent.)","code":"oko"},{"name":"Kirike","code":"okr"},{"name":"Oko-Eni-Osayen","code":"oks"},{"name":"Oku","code":"oku"},{"name":"Orokaiva","code":"okv"},{"name":"Okpe (Northwestern Edo)","code":"okx"},{"name":"Old Khmer","code":"okz"},{"name":"Walungge","code":"ola"},{"name":"Mochi","code":"old"},{"name":"Olekha","code":"ole"},{"name":"Olkol","code":"olk"},{"name":"Oloma","code":"olm"},{"name":"Livvi","code":"olo"},{"name":"Olrat","code":"olr"},{"name":"Old Lithuanian","code":"olt"},{"name":"Kuvale","code":"olu"},{"name":"Omaha-Ponca","code":"oma"},{"name":"East Ambae","code":"omb"},{"name":"Mochica","code":"omc"},{"name":"Omagua","code":"omg"},{"name":"Omi","code":"omi"},{"name":"Omok","code":"omk"},{"name":"Ombo","code":"oml"},{"name":"Minoan","code":"omn"},{"name":"Utarmbung","code":"omo"},{"name":"Old Manipuri","code":"omp"},{"name":"Old Marathi","code":"omr"},{"name":"Omotik","code":"omt"},{"name":"Omurano","code":"omu"},{"name":"South Tairora","code":"omw"},{"name":"Old Mon","code":"omx"},{"name":"Old Malay","code":"omy"},{"name":"Ona","code":"ona"},{"name":"Lingao","code":"onb"},{"name":"Oneida","code":"one"},{"name":"Olo","code":"ong"},{"name":"Onin","code":"oni"},{"name":"Onjob","code":"onj"},{"name":"Kabore One","code":"onk"},{"name":"Onobasulu","code":"onn"},{"name":"Onondaga","code":"ono"},{"name":"Sartang","code":"onp"},{"name":"Northern One","code":"onr"},{"name":"Ono","code":"ons"},{"name":"Ontenu","code":"ont"},{"name":"Unua","code":"onu"},{"name":"Old Nubian","code":"onw"},{"name":"Onin Based Pidgin","code":"onx"},{"name":"Tohono O'odham","code":"ood"},{"name":"Ong","code":"oog"},{"name":"Önge","code":"oon"},{"name":"Oorlams","code":"oor"},{"name":"Old Ossetic","code":"oos"},{"name":"Okpamheri","code":"opa"},{"name":"Kopkaka","code":"opk"},{"name":"Oksapmin","code":"opm"},{"name":"Opao","code":"opo"},{"name":"Opata","code":"opt"},{"name":"Ofayé","code":"opy"},{"name":"Oroha","code":"ora"},{"name":"Orma","code":"orc"},{"name":"Orejón","code":"ore"},{"name":"Oring","code":"org"},{"name":"Oroqen","code":"orh"},{"name":"Oriya (macrolanguage)","code":"ori"},{"name":"Oromo","code":"orm"},{"name":"Orang Kanaq","code":"orn"},{"name":"Orokolo","code":"oro"},{"name":"Oruma","code":"orr"},{"name":"Orang Seletar","code":"ors"},{"name":"Adivasi Oriya","code":"ort"},{"name":"Ormuri","code":"oru"},{"name":"Old Russian","code":"orv"},{"name":"Oro Win","code":"orw"},{"name":"Oro","code":"orx"},{"name":"Odia","code":"ory"},{"name":"Oriya (individual language)","code":"ory"},{"name":"Ormu","code":"orz"},{"name":"Osage","code":"osa"},{"name":"Oscan","code":"osc"},{"name":"Osing","code":"osi"},{"name":"Old Sundanese","code":"osn"},{"name":"Ososo","code":"oso"},{"name":"Old Spanish","code":"osp"},{"name":"Ossetian","code":"oss"},{"name":"Ossetic","code":"oss"},{"name":"Osatu","code":"ost"},{"name":"Southern One","code":"osu"},{"name":"Old Saxon","code":"osx"},{"name":"Ottoman Turkish (1500-1928)","code":"ota"},{"name":"Old Tibetan","code":"otb"},{"name":"Ot Danum","code":"otd"},{"name":"Mezquital Otomi","code":"ote"},{"name":"Oti","code":"oti"},{"name":"Old Turkish","code":"otk"},{"name":"Tilapa Otomi","code":"otl"},{"name":"Eastern Highland Otomi","code":"otm"},{"name":"Tenango Otomi","code":"otn"},{"name":"Querétaro Otomi","code":"otq"},{"name":"Otoro","code":"otr"},{"name":"Estado de México Otomi","code":"ots"},{"name":"Temoaya Otomi","code":"ott"},{"name":"Otuke","code":"otu"},{"name":"Ottawa","code":"otw"},{"name":"Texcatepec Otomi","code":"otx"},{"name":"Old Tamil","code":"oty"},{"name":"Ixtenco Otomi","code":"otz"},{"name":"Tagargrent","code":"oua"},{"name":"Glio-Oubi","code":"oub"},{"name":"Oune","code":"oue"},{"name":"Old Uighur","code":"oui"},{"name":"Ouma","code":"oum"},{"name":"Elfdalian","code":"ovd"},{"name":"Övdalian","code":"ovd"},{"name":"Owiniga","code":"owi"},{"name":"Old Welsh","code":"owl"},{"name":"Oy","code":"oyb"},{"name":"Oyda","code":"oyd"},{"name":"Wayampi","code":"oym"},{"name":"Oya'oya","code":"oyy"},{"name":"Koonzime","code":"ozm"},{"name":"Parecís","code":"pab"},{"name":"Pacoh","code":"pac"},{"name":"Paumarí","code":"pad"},{"name":"Pagibete","code":"pae"},{"name":"Paranawát","code":"paf"},{"name":"Pangasinan","code":"pag"},{"name":"Tenharim","code":"pah"},{"name":"Pe","code":"pai"},{"name":"Parakanã","code":"pak"},{"name":"Pahlavi","code":"pal"},{"name":"Kapampangan","code":"pam"},{"name":"Pampanga","code":"pam"},{"name":"Panjabi","code":"pan"},{"name":"Punjabi","code":"pan"},{"name":"Northern Paiute","code":"pao"},{"name":"Papiamento","code":"pap"},{"name":"Parya","code":"paq"},{"name":"Panamint","code":"par"},{"name":"Timbisha","code":"par"},{"name":"Papasena","code":"pas"},{"name":"Palauan","code":"pau"},{"name":"Pakaásnovos","code":"pav"},{"name":"Pawnee","code":"paw"},{"name":"Pankararé","code":"pax"},{"name":"Pech","code":"pay"},{"name":"Pankararú","code":"paz"},{"name":"Páez","code":"pbb"},{"name":"Patamona","code":"pbc"},{"name":"Mezontla Popoloca","code":"pbe"},{"name":"Coyotepec Popoloca","code":"pbf"},{"name":"Paraujano","code":"pbg"},{"name":"E'ñapa Woromaipu","code":"pbh"},{"name":"Parkwa","code":"pbi"},{"name":"Mak (Nigeria)","code":"pbl"},{"name":"Puebla Mazatec","code":"pbm"},{"name":"Kpasam","code":"pbn"},{"name":"Papel","code":"pbo"},{"name":"Badyara","code":"pbp"},{"name":"Pangwa","code":"pbr"},{"name":"Central Pame","code":"pbs"},{"name":"Southern Pashto","code":"pbt"},{"name":"Northern Pashto","code":"pbu"},{"name":"Pnar","code":"pbv"},{"name":"Pyu (Papua New Guinea)","code":"pby"},{"name":"Santa Inés Ahuatempan Popoloca","code":"pca"},{"name":"Pear","code":"pcb"},{"name":"Bouyei","code":"pcc"},{"name":"Picard","code":"pcd"},{"name":"Ruching Palaung","code":"pce"},{"name":"Paliyan","code":"pcf"},{"name":"Paniya","code":"pcg"},{"name":"Pardhan","code":"pch"},{"name":"Duruwa","code":"pci"},{"name":"Parenga","code":"pcj"},{"name":"Paite Chin","code":"pck"},{"name":"Pardhi","code":"pcl"},{"name":"Nigerian Pidgin","code":"pcm"},{"name":"Piti","code":"pcn"},{"name":"Pacahuara","code":"pcp"},{"name":"Pyapun","code":"pcw"},{"name":"Anam","code":"pda"},{"name":"Pennsylvania German","code":"pdc"},{"name":"Pa Di","code":"pdi"},{"name":"Fedan","code":"pdn"},{"name":"Podena","code":"pdn"},{"name":"Padoe","code":"pdo"},{"name":"Plautdietsch","code":"pdt"},{"name":"Kayan","code":"pdu"},{"name":"Peranakan Indonesian","code":"pea"},{"name":"Eastern Pomo","code":"peb"},{"name":"Mala (Papua New Guinea)","code":"ped"},{"name":"Taje","code":"pee"},{"name":"Northeastern Pomo","code":"pef"},{"name":"Pengo","code":"peg"},{"name":"Bonan","code":"peh"},{"name":"Chichimeca-Jonaz","code":"pei"},{"name":"Northern Pomo","code":"pej"},{"name":"Penchal","code":"pek"},{"name":"Pekal","code":"pel"},{"name":"Phende","code":"pem"},{"name":"Old Persian (ca. 600-400 B.C.)","code":"peo"},{"name":"Kunja","code":"pep"},{"name":"Southern Pomo","code":"peq"},{"name":"Iranian Persian","code":"pes"},{"name":"Pémono","code":"pev"},{"name":"Petats","code":"pex"},{"name":"Petjo","code":"pey"},{"name":"Eastern Penan","code":"pez"},{"name":"Pááfang","code":"pfa"},{"name":"Pere","code":"pfe"},{"name":"Pfaelzisch","code":"pfl"},{"name":"Sudanese Creole Arabic","code":"pga"},{"name":"Gāndhārī","code":"pgd"},{"name":"Pangwali","code":"pgg"},{"name":"Pagi","code":"pgi"},{"name":"Rerep","code":"pgk"},{"name":"Primitive Irish","code":"pgl"},{"name":"Paelignian","code":"pgn"},{"name":"Pangseng","code":"pgs"},{"name":"Pagu","code":"pgu"},{"name":"Papua New Guinean Sign Language","code":"pgz"},{"name":"Pa-Hng","code":"pha"},{"name":"Phudagi","code":"phd"},{"name":"Phuong","code":"phg"},{"name":"Phukha","code":"phh"},{"name":"Phake","code":"phk"},{"name":"Palula","code":"phl"},{"name":"Phalura","code":"phl"},{"name":"Phimbi","code":"phm"},{"name":"Phoenician","code":"phn"},{"name":"Phunoi","code":"pho"},{"name":"Phana'","code":"phq"},{"name":"Pahari-Potwari","code":"phr"},{"name":"Phu Thai","code":"pht"},{"name":"Phuan","code":"phu"},{"name":"Pahlavani","code":"phv"},{"name":"Phangduwali","code":"phw"},{"name":"Pima Bajo","code":"pia"},{"name":"Yine","code":"pib"},{"name":"Pinji","code":"pic"},{"name":"Piaroa","code":"pid"},{"name":"Piro","code":"pie"},{"name":"Pingelapese","code":"pif"},{"name":"Pisabo","code":"pig"},{"name":"Pitcairn-Norfolk","code":"pih"},{"name":"Pini","code":"pii"},{"name":"Pijao","code":"pij"},{"name":"Yom","code":"pil"},{"name":"Powhatan","code":"pim"},{"name":"Piame","code":"pin"},{"name":"Piapoco","code":"pio"},{"name":"Pero","code":"pip"},{"name":"Piratapuyo","code":"pir"},{"name":"Pijin","code":"pis"},{"name":"Pitta Pitta","code":"pit"},{"name":"Pintupi-Luritja","code":"piu"},{"name":"Pileni","code":"piv"},{"name":"Vaeakau-Taumako","code":"piv"},{"name":"Pimbwe","code":"piw"},{"name":"Piu","code":"pix"},{"name":"Piya-Kwonci","code":"piy"},{"name":"Pije","code":"piz"},{"name":"Pitjantjatjara","code":"pjt"},{"name":"Ardhamāgadhī Prākrit","code":"pka"},{"name":"Kipfokomo","code":"pkb"},{"name":"Pokomo","code":"pkb"},{"name":"Paekche","code":"pkc"},{"name":"Pak-Tong","code":"pkg"},{"name":"Pankhu","code":"pkh"},{"name":"Pakanha","code":"pkn"},{"name":"Pökoot","code":"pko"},{"name":"Pukapuka","code":"pkp"},{"name":"Attapady Kurumba","code":"pkr"},{"name":"Pakistan Sign Language","code":"pks"},{"name":"Maleng","code":"pkt"},{"name":"Paku","code":"pku"},{"name":"Miani","code":"pla"},{"name":"Polonombauk","code":"plb"},{"name":"Central Palawano","code":"plc"},{"name":"Polari","code":"pld"},{"name":"Palu'e","code":"ple"},{"name":"Pilagá","code":"plg"},{"name":"Paulohi","code":"plh"},{"name":"Pali","code":"pli"},{"name":"Polci","code":"plj"},{"name":"Kohistani Shina","code":"plk"},{"name":"Shwe Palaung","code":"pll"},{"name":"Palenquero","code":"pln"},{"name":"Oluta Popoluca","code":"plo"},{"name":"Palaic","code":"plq"},{"name":"Palaka Senoufo","code":"plr"},{"name":"San Marcos Tlacoyalco Popoloca","code":"pls"},{"name":"San Marcos Tlalcoyalco Popoloca","code":"pls"},{"name":"Plateau Malagasy","code":"plt"},{"name":"Palikúr","code":"plu"},{"name":"Southwest Palawano","code":"plv"},{"name":"Brooke's Point Palawano","code":"plw"},{"name":"Bolyu","code":"ply"},{"name":"Paluan","code":"plz"},{"name":"Paama","code":"pma"},{"name":"Pambia","code":"pmb"},{"name":"Pallanganmiddang","code":"pmd"},{"name":"Pwaamei","code":"pme"},{"name":"Pamona","code":"pmf"},{"name":"Māhārāṣṭri Prākrit","code":"pmh"},{"name":"Northern Pumi","code":"pmi"},{"name":"Southern Pumi","code":"pmj"},{"name":"Pamlico","code":"pmk"},{"name":"Lingua Franca","code":"pml"},{"name":"Pomo","code":"pmm"},{"name":"Pam","code":"pmn"},{"name":"Pom","code":"pmo"},{"name":"Northern Pame","code":"pmq"},{"name":"Paynamar","code":"pmr"},{"name":"Piemontese","code":"pms"},{"name":"Tuamotuan","code":"pmt"},{"name":"Plains Miwok","code":"pmw"},{"name":"Poumei Naga","code":"pmx"},{"name":"Papuan Malay","code":"pmy"},{"name":"Southern Pame","code":"pmz"},{"name":"Punan Bah-Biau","code":"pna"},{"name":"Western Panjabi","code":"pnb"},{"name":"Pannei","code":"pnc"},{"name":"Mpinda","code":"pnd"},{"name":"Western Penan","code":"pne"},{"name":"Pangu","code":"png"},{"name":"Pongu","code":"png"},{"name":"Penrhyn","code":"pnh"},{"name":"Aoheng","code":"pni"},{"name":"Pinjarup","code":"pnj"},{"name":"Paunaka","code":"pnk"},{"name":"Paleni","code":"pnl"},{"name":"Punan Batu 1","code":"pnm"},{"name":"Pinai-Hagahai","code":"pnn"},{"name":"Panobo","code":"pno"},{"name":"Pancana","code":"pnp"},{"name":"Pana (Burkina Faso)","code":"pnq"},{"name":"Panim","code":"pnr"},{"name":"Ponosakan","code":"pns"},{"name":"Pontic","code":"pnt"},{"name":"Jiongnai Bunu","code":"pnu"},{"name":"Pinigura","code":"pnv"},{"name":"Banyjima","code":"pnw"},{"name":"Panytyima","code":"pnw"},{"name":"Phong-Kniang","code":"pnx"},{"name":"Pinyin","code":"pny"},{"name":"Pana (Central African Republic)","code":"pnz"},{"name":"Poqomam","code":"poc"},{"name":"San Juan Atzingo Popoloca","code":"poe"},{"name":"Poke","code":"pof"},{"name":"Potiguára","code":"pog"},{"name":"Poqomchi'","code":"poh"},{"name":"Highland Popoluca","code":"poi"},{"name":"Pokangá","code":"pok"},{"name":"Polish","code":"pol"},{"name":"Southeastern Pomo","code":"pom"},{"name":"Pohnpeian","code":"pon"},{"name":"Central Pomo","code":"poo"},{"name":"Pwapwâ","code":"pop"},{"name":"Texistepec Popoluca","code":"poq"},{"name":"Portuguese","code":"por"},{"name":"Sayula Popoluca","code":"pos"},{"name":"Potawatomi","code":"pot"},{"name":"Upper Guinea Crioulo","code":"pov"},{"name":"San Felipe Otlaltepec Popoloca","code":"pow"},{"name":"Polabian","code":"pox"},{"name":"Pogolo","code":"poy"},{"name":"Papi","code":"ppe"},{"name":"Paipai","code":"ppi"},{"name":"Uma","code":"ppk"},{"name":"Nicarao","code":"ppl"},{"name":"Pipil","code":"ppl"},{"name":"Papuma","code":"ppm"},{"name":"Papapana","code":"ppn"},{"name":"Folopa","code":"ppo"},{"name":"Pelende","code":"ppp"},{"name":"Pei","code":"ppq"},{"name":"San Luís Temalacayuca Popoloca","code":"pps"},{"name":"Pare","code":"ppt"},{"name":"Papora","code":"ppu"},{"name":"Pa'a","code":"pqa"},{"name":"Malecite-Passamaquoddy","code":"pqm"},{"name":"Parachi","code":"prc"},{"name":"Parsi-Dari","code":"prd"},{"name":"Principense","code":"pre"},{"name":"Paranan","code":"prf"},{"name":"Prussian","code":"prg"},{"name":"Porohanon","code":"prh"},{"name":"Paicî","code":"pri"},{"name":"Parauk","code":"prk"},{"name":"Peruvian Sign Language","code":"prl"},{"name":"Kibiri","code":"prm"},{"name":"Prasuni","code":"prn"},{"name":"Old Occitan (to 1500)","code":"pro"},{"name":"Old Provençal (to 1500)","code":"pro"},{"name":"Parsi","code":"prp"},{"name":"Ashéninka Perené","code":"prq"},{"name":"Puri","code":"prr"},{"name":"Afghan Persian","code":"prs"},{"name":"Dari","code":"prs"},{"name":"Phai","code":"prt"},{"name":"Puragi","code":"pru"},{"name":"Parawen","code":"prw"},{"name":"Purik","code":"prx"},{"name":"Providencia Sign Language","code":"prz"},{"name":"Asue Awyu","code":"psa"},{"name":"Persian Sign Language","code":"psc"},{"name":"Plains Indian Sign Language","code":"psd"},{"name":"Central Malay","code":"pse"},{"name":"Penang Sign Language","code":"psg"},{"name":"Southwest Pashai","code":"psh"},{"name":"Southwest Pashayi","code":"psh"},{"name":"Southeast Pashai","code":"psi"},{"name":"Southeast Pashayi","code":"psi"},{"name":"Puerto Rican Sign Language","code":"psl"},{"name":"Pauserna","code":"psm"},{"name":"Panasuan","code":"psn"},{"name":"Polish Sign Language","code":"pso"},{"name":"Philippine Sign Language","code":"psp"},{"name":"Pasi","code":"psq"},{"name":"Portuguese Sign Language","code":"psr"},{"name":"Kaulong","code":"pss"},{"name":"Central Pashto","code":"pst"},{"name":"Sauraseni Prākrit","code":"psu"},{"name":"Port Sandwich","code":"psw"},{"name":"Piscataway","code":"psy"},{"name":"Pai Tavytera","code":"pta"},{"name":"Pataxó Hã-Ha-Hãe","code":"pth"},{"name":"Pindiini","code":"pti"},{"name":"Wangkatha","code":"pti"},{"name":"Patani","code":"ptn"},{"name":"Zo'é","code":"pto"},{"name":"Patep","code":"ptp"},{"name":"Pattapu","code":"ptq"},{"name":"Piamatsina","code":"ptr"},{"name":"Enrekang","code":"ptt"},{"name":"Bambam","code":"ptu"},{"name":"Port Vato","code":"ptv"},{"name":"Pentlatch","code":"ptw"},{"name":"Pathiya","code":"pty"},{"name":"Western Highland Purepecha","code":"pua"},{"name":"Purum","code":"pub"},{"name":"Punan Merap","code":"puc"},{"name":"Punan Aput","code":"pud"},{"name":"Puelche","code":"pue"},{"name":"Punan Merah","code":"puf"},{"name":"Phuie","code":"pug"},{"name":"Puinave","code":"pui"},{"name":"Punan Tubu","code":"puj"},{"name":"Puma","code":"pum"},{"name":"Puoc","code":"puo"},{"name":"Pulabu","code":"pup"},{"name":"Puquina","code":"puq"},{"name":"Puruborá","code":"pur"},{"name":"Pushto","code":"pus"},{"name":"Pashto","code":"pus"},{"name":"Putoh","code":"put"},{"name":"Punu","code":"puu"},{"name":"Puluwatese","code":"puw"},{"name":"Puare","code":"pux"},{"name":"Purisimeño","code":"puy"},{"name":"Pawaia","code":"pwa"},{"name":"Panawa","code":"pwb"},{"name":"Gapapaiwa","code":"pwg"},{"name":"Patwin","code":"pwi"},{"name":"Molbog","code":"pwm"},{"name":"Paiwan","code":"pwn"},{"name":"Pwo Western Karen","code":"pwo"},{"name":"Powari","code":"pwr"},{"name":"Pwo Northern Karen","code":"pww"},{"name":"Quetzaltepec Mixe","code":"pxm"},{"name":"Pye Krumen","code":"pye"},{"name":"Fyam","code":"pym"},{"name":"Poyanáwa","code":"pyn"},{"name":"Lengua de Señas del Paraguay","code":"pys"},{"name":"Paraguayan Sign Language","code":"pys"},{"name":"Puyuma","code":"pyu"},{"name":"Pyu (Myanmar)","code":"pyx"},{"name":"Pyen","code":"pyy"},{"name":"Para Naga","code":"pzn"},{"name":"Quapaw","code":"qua"},{"name":"Huallaga Huánuco Quechua","code":"qub"},{"name":"K'iche'","code":"quc"},{"name":"Quiché","code":"quc"},{"name":"Calderón Highland Quichua","code":"qud"},{"name":"Quechua","code":"que"},{"name":"Lambayeque Quechua","code":"quf"},{"name":"Chimborazo Highland Quichua","code":"qug"},{"name":"South Bolivian Quechua","code":"quh"},{"name":"Quileute","code":"qui"},{"name":"Chachapoyas Quechua","code":"quk"},{"name":"North Bolivian Quechua","code":"qul"},{"name":"Sipacapense","code":"qum"},{"name":"Quinault","code":"qun"},{"name":"Southern Pastaza Quechua","code":"qup"},{"name":"Quinqui","code":"quq"},{"name":"Yanahuanca Pasco Quechua","code":"qur"},{"name":"Santiago del Estero Quichua","code":"qus"},{"name":"Sacapulteco","code":"quv"},{"name":"Tena Lowland Quichua","code":"quw"},{"name":"Yauyos Quechua","code":"qux"},{"name":"Ayacucho Quechua","code":"quy"},{"name":"Cusco Quechua","code":"quz"},{"name":"Ambo-Pasco Quechua","code":"qva"},{"name":"Cajamarca Quechua","code":"qvc"},{"name":"Eastern Apurímac Quechua","code":"qve"},{"name":"Huamalíes-Dos de Mayo Huánuco Quechua","code":"qvh"},{"name":"Imbabura Highland Quichua","code":"qvi"},{"name":"Loja Highland Quichua","code":"qvj"},{"name":"Cajatambo North Lima Quechua","code":"qvl"},{"name":"Margos-Yarowilca-Lauricocha Quechua","code":"qvm"},{"name":"North Junín Quechua","code":"qvn"},{"name":"Napo Lowland Quechua","code":"qvo"},{"name":"Pacaraos Quechua","code":"qvp"},{"name":"San Martín Quechua","code":"qvs"},{"name":"Huaylla Wanca Quechua","code":"qvw"},{"name":"Queyu","code":"qvy"},{"name":"Northern Pastaza Quichua","code":"qvz"},{"name":"Corongo Ancash Quechua","code":"qwa"},{"name":"Classical Quechua","code":"qwc"},{"name":"Huaylas Ancash Quechua","code":"qwh"},{"name":"Kuman (Russia)","code":"qwm"},{"name":"Sihuas Ancash Quechua","code":"qws"},{"name":"Kwalhioqua-Tlatskanai","code":"qwt"},{"name":"Chiquián Ancash Quechua","code":"qxa"},{"name":"Chincha Quechua","code":"qxc"},{"name":"Panao Huánuco Quechua","code":"qxh"},{"name":"Salasaca Highland Quichua","code":"qxl"},{"name":"Northern Conchucos Ancash Quechua","code":"qxn"},{"name":"Southern Conchucos Ancash Quechua","code":"qxo"},{"name":"Puno Quechua","code":"qxp"},{"name":"Qashqa'i","code":"qxq"},{"name":"Cañar Highland Quichua","code":"qxr"},{"name":"Southern Qiang","code":"qxs"},{"name":"Santa Ana de Tusi Pasco Quechua","code":"qxt"},{"name":"Arequipa-La Unión Quechua","code":"qxu"},{"name":"Jauja Wanca Quechua","code":"qxw"},{"name":"Quenya","code":"qya"},{"name":"Quiripi","code":"qyp"},{"name":"Dungmali","code":"raa"},{"name":"Camling","code":"rab"},{"name":"Rasawa","code":"rac"},{"name":"Rade","code":"rad"},{"name":"Western Meohang","code":"raf"},{"name":"Logooli","code":"rag"},{"name":"Lulogooli","code":"rag"},{"name":"Rabha","code":"rah"},{"name":"Ramoaaina","code":"rai"},{"name":"Rajasthani","code":"raj"},{"name":"Tulu-Bohuai","code":"rak"},{"name":"Ralte","code":"ral"},{"name":"Canela","code":"ram"},{"name":"Riantana","code":"ran"},{"name":"Rao","code":"rao"},{"name":"Rapanui","code":"rap"},{"name":"Saam","code":"raq"},{"name":"Cook Islands Maori","code":"rar"},{"name":"Rarotongan","code":"rar"},{"name":"Tegali","code":"ras"},{"name":"Razajerdi","code":"rat"},{"name":"Raute","code":"rau"},{"name":"Sampang","code":"rav"},{"name":"Rawang","code":"raw"},{"name":"Rang","code":"rax"},{"name":"Rapa","code":"ray"},{"name":"Rahambuu","code":"raz"},{"name":"Rumai Palaung","code":"rbb"},{"name":"Northern Bontok","code":"rbk"},{"name":"Miraya Bikol","code":"rbl"},{"name":"Barababaraba","code":"rbp"},{"name":"Réunion Creole French","code":"rcf"},{"name":"Rudbari","code":"rdb"},{"name":"Rerau","code":"rea"},{"name":"Rembong","code":"reb"},{"name":"Rejang Kayan","code":"ree"},{"name":"Kara (Tanzania)","code":"reg"},{"name":"Reli","code":"rei"},{"name":"Rejang","code":"rej"},{"name":"Rendille","code":"rel"},{"name":"Remo","code":"rem"},{"name":"Rengao","code":"ren"},{"name":"Rer Bare","code":"rer"},{"name":"Reshe","code":"res"},{"name":"Retta","code":"ret"},{"name":"Reyesano","code":"rey"},{"name":"Roria","code":"rga"},{"name":"Romano-Greek","code":"rge"},{"name":"Rangkas","code":"rgk"},{"name":"Romagnol","code":"rgn"},{"name":"Resígaro","code":"rgr"},{"name":"Southern Roglai","code":"rgs"},{"name":"Ringgou","code":"rgu"},{"name":"Rohingya","code":"rhg"},{"name":"Yahang","code":"rhp"},{"name":"Riang (India)","code":"ria"},{"name":"Tarifit","code":"rif"},{"name":"Riang (Myanmar)","code":"ril"},{"name":"Riang Lang","code":"ril"},{"name":"Nyaturu","code":"rim"},{"name":"Nungu","code":"rin"},{"name":"Ribun","code":"rir"},{"name":"Ritharrngu","code":"rit"},{"name":"Riung","code":"riu"},{"name":"Rajong","code":"rjg"},{"name":"Raji","code":"rji"},{"name":"Rajbanshi","code":"rjs"},{"name":"Kraol","code":"rka"},{"name":"Rikbaktsa","code":"rkb"},{"name":"Rakahanga-Manihiki","code":"rkh"},{"name":"Rakhine","code":"rki"},{"name":"Marka","code":"rkm"},{"name":"Kamta","code":"rkt"},{"name":"Rangpuri","code":"rkt"},{"name":"Arakwal","code":"rkw"},{"name":"Rama","code":"rma"},{"name":"Rembarrnga","code":"rmb"},{"name":"Carpathian Romani","code":"rmc"},{"name":"Traveller Danish","code":"rmd"},{"name":"Angloromani","code":"rme"},{"name":"Kalo Finnish Romani","code":"rmf"},{"name":"Traveller Norwegian","code":"rmg"},{"name":"Murkim","code":"rmh"},{"name":"Lomavren","code":"rmi"},{"name":"Romkun","code":"rmk"},{"name":"Baltic Romani","code":"rml"},{"name":"Roma","code":"rmm"},{"name":"Balkan Romani","code":"rmn"},{"name":"Sinte Romani","code":"rmo"},{"name":"Rempi","code":"rmp"},{"name":"Caló","code":"rmq"},{"name":"Romanian Sign Language","code":"rms"},{"name":"Domari","code":"rmt"},{"name":"Tavringer Romani","code":"rmu"},{"name":"Romanova","code":"rmv"},{"name":"Welsh Romani","code":"rmw"},{"name":"Romam","code":"rmx"},{"name":"Vlax Romani","code":"rmy"},{"name":"Marma","code":"rmz"},{"name":"Ruund","code":"rnd"},{"name":"Ronga","code":"rng"},{"name":"Ranglong","code":"rnl"},{"name":"Roon","code":"rnn"},{"name":"Rongpo","code":"rnp"},{"name":"Nari Nari","code":"rnr"},{"name":"Rungwa","code":"rnw"},{"name":"Tae'","code":"rob"},{"name":"Cacgia Roglai","code":"roc"},{"name":"Rogo","code":"rod"},{"name":"Ronji","code":"roe"},{"name":"Rombo","code":"rof"},{"name":"Northern Roglai","code":"rog"},{"name":"Romansh","code":"roh"},{"name":"Romblomanon","code":"rol"},{"name":"Romany","code":"rom"},{"name":"Romanian","code":"ron"},{"name":"Moldavian","code":"ron"},{"name":"Moldovan","code":"ron"},{"name":"Rotokas","code":"roo"},{"name":"Kriol","code":"rop"},{"name":"Rongga","code":"ror"},{"name":"Runga","code":"rou"},{"name":"Dela-Oenale","code":"row"},{"name":"Repanbitip","code":"rpn"},{"name":"Rapting","code":"rpt"},{"name":"Ririo","code":"rri"},{"name":"Waima","code":"rro"},{"name":"Arritinngithigh","code":"rrt"},{"name":"Romano-Serbian","code":"rsb"},{"name":"Russian Sign Language","code":"rsl"},{"name":"Miriwoong Sign Language","code":"rsm"},{"name":"Rungtu Chin","code":"rtc"},{"name":"Ratahan","code":"rth"},{"name":"Rotuman","code":"rtm"},{"name":"Yurats","code":"rts"},{"name":"Rathawi","code":"rtw"},{"name":"Gungu","code":"rub"},{"name":"Ruuli","code":"ruc"},{"name":"Rusyn","code":"rue"},{"name":"Luguru","code":"ruf"},{"name":"Roviana","code":"rug"},{"name":"Ruga","code":"ruh"},{"name":"Rufiji","code":"rui"},{"name":"Che","code":"ruk"},{"name":"Rundi","code":"run"},{"name":"Istro Romanian","code":"ruo"},{"name":"Aromanian","code":"rup"},{"name":"Arumanian","code":"rup"},{"name":"Macedo-Romanian","code":"rup"},{"name":"Megleno Romanian","code":"ruq"},{"name":"Russian","code":"rus"},{"name":"Rutul","code":"rut"},{"name":"Lanas Lobu","code":"ruu"},{"name":"Mala (Nigeria)","code":"ruy"},{"name":"Ruma","code":"ruz"},{"name":"Rawo","code":"rwa"},{"name":"Rwa","code":"rwk"},{"name":"Ruwila","code":"rwl"},{"name":"Amba (Uganda)","code":"rwm"},{"name":"Rawa","code":"rwo"},{"name":"Marwari (India)","code":"rwr"},{"name":"Ngardi","code":"rxd"},{"name":"Garuwali","code":"rxw"},{"name":"Karuwali","code":"rxw"},{"name":"Northern Amami-Oshima","code":"ryn"},{"name":"Yaeyama","code":"rys"},{"name":"Central Okinawan","code":"ryu"},{"name":"Rāziḥī","code":"rzh"},{"name":"Saba","code":"saa"},{"name":"Buglere","code":"sab"},{"name":"Meskwaki","code":"sac"},{"name":"Sandawe","code":"sad"},{"name":"Sabanê","code":"sae"},{"name":"Safaliba","code":"saf"},{"name":"Sango","code":"sag"},{"name":"Yakut","code":"sah"},{"name":"Sahu","code":"saj"},{"name":"Sake","code":"sak"},{"name":"Samaritan Aramaic","code":"sam"},{"name":"Sanskrit","code":"san"},{"name":"Sause","code":"sao"},{"name":"Samburu","code":"saq"},{"name":"Saraveca","code":"sar"},{"name":"Sasak","code":"sas"},{"name":"Santali","code":"sat"},{"name":"Saleman","code":"sau"},{"name":"Saafi-Saafi","code":"sav"},{"name":"Sawi","code":"saw"},{"name":"Sa","code":"sax"},{"name":"Saya","code":"say"},{"name":"Saurashtra","code":"saz"},{"name":"Ngambay","code":"sba"},{"name":"Simbo","code":"sbb"},{"name":"Kele (Papua New Guinea)","code":"sbc"},{"name":"Southern Samo","code":"sbd"},{"name":"Saliba","code":"sbe"},{"name":"Chabu","code":"sbf"},{"name":"Shabo","code":"sbf"},{"name":"Seget","code":"sbg"},{"name":"Sori-Harengan","code":"sbh"},{"name":"Seti","code":"sbi"},{"name":"Surbakhal","code":"sbj"},{"name":"Safwa","code":"sbk"},{"name":"Botolan Sambal","code":"sbl"},{"name":"Sagala","code":"sbm"},{"name":"Sindhi Bhil","code":"sbn"},{"name":"Sabüm","code":"sbo"},{"name":"Sangu (Tanzania)","code":"sbp"},{"name":"Sileibi","code":"sbq"},{"name":"Sembakung Murut","code":"sbr"},{"name":"Subiya","code":"sbs"},{"name":"Kimki","code":"sbt"},{"name":"Stod Bhoti","code":"sbu"},{"name":"Sabine","code":"sbv"},{"name":"Simba","code":"sbw"},{"name":"Seberuang","code":"sbx"},{"name":"Soli","code":"sby"},{"name":"Sara Kaba","code":"sbz"},{"name":"Chut","code":"scb"},{"name":"Dongxiang","code":"sce"},{"name":"San Miguel Creole French","code":"scf"},{"name":"Sanggau","code":"scg"},{"name":"Sakachep","code":"sch"},{"name":"Sri Lankan Creole Malay","code":"sci"},{"name":"Sadri","code":"sck"},{"name":"Shina","code":"scl"},{"name":"Sicilian","code":"scn"},{"name":"Scots","code":"sco"},{"name":"Helambu Sherpa","code":"scp"},{"name":"Hyolmo","code":"scp"},{"name":"Sa'och","code":"scq"},{"name":"North Slavey","code":"scs"},{"name":"Southern Katang","code":"sct"},{"name":"Shumcho","code":"scu"},{"name":"Sheni","code":"scv"},{"name":"Sha","code":"scw"},{"name":"Sicel","code":"scx"},{"name":"Toraja-Sa'dan","code":"sda"},{"name":"Shabak","code":"sdb"},{"name":"Sassarese Sardinian","code":"sdc"},{"name":"Surubu","code":"sde"},{"name":"Sarli","code":"sdf"},{"name":"Savi","code":"sdg"},{"name":"Southern Kurdish","code":"sdh"},{"name":"Suundi","code":"sdj"},{"name":"Sos Kundi","code":"sdk"},{"name":"Saudi Arabian Sign Language","code":"sdl"},{"name":"Gallurese Sardinian","code":"sdn"},{"name":"Bukar-Sadung Bidayuh","code":"sdo"},{"name":"Sherdukpen","code":"sdp"},{"name":"Semandang","code":"sdq"},{"name":"Oraon Sadri","code":"sdr"},{"name":"Sened","code":"sds"},{"name":"Shuadit","code":"sdt"},{"name":"Sarudu","code":"sdu"},{"name":"Sibu Melanau","code":"sdx"},{"name":"Sallands","code":"sdz"},{"name":"Semai","code":"sea"},{"name":"Shempire Senoufo","code":"seb"},{"name":"Sechelt","code":"sec"},{"name":"Sedang","code":"sed"},{"name":"Seneca","code":"see"},{"name":"Cebaara Senoufo","code":"sef"},{"name":"Segeju","code":"seg"},{"name":"Sena","code":"seh"},{"name":"Seri","code":"sei"},{"name":"Sene","code":"sej"},{"name":"Sekani","code":"sek"},{"name":"Selkup","code":"sel"},{"name":"Nanerigé Sénoufo","code":"sen"},{"name":"Suarmin","code":"seo"},{"name":"Sìcìté Sénoufo","code":"sep"},{"name":"Senara Sénoufo","code":"seq"},{"name":"Serrano","code":"ser"},{"name":"Koyraboro Senni Songhai","code":"ses"},{"name":"Sentani","code":"set"},{"name":"Serui-Laut","code":"seu"},{"name":"Nyarafolo Senoufo","code":"sev"},{"name":"Sewa Bay","code":"sew"},{"name":"Secoya","code":"sey"},{"name":"Senthang Chin","code":"sez"},{"name":"French Belgian Sign Language","code":"sfb"},{"name":"Langue des signes de Belgique Francophone","code":"sfb"},{"name":"Eastern Subanen","code":"sfe"},{"name":"Small Flowery Miao","code":"sfm"},{"name":"South African Sign Language","code":"sfs"},{"name":"Sehwi","code":"sfw"},{"name":"Old Irish (to 900)","code":"sga"},{"name":"Mag-antsi Ayta","code":"sgb"},{"name":"Kipsigis","code":"sgc"},{"name":"Surigaonon","code":"sgd"},{"name":"Segai","code":"sge"},{"name":"Swiss-German Sign Language","code":"sgg"},{"name":"Shughni","code":"sgh"},{"name":"Suga","code":"sgi"},{"name":"Surgujia","code":"sgj"},{"name":"Sangkong","code":"sgk"},{"name":"Singa","code":"sgm"},{"name":"Singpho","code":"sgp"},{"name":"Sangisari","code":"sgr"},{"name":"Samogitian","code":"sgs"},{"name":"Brokpake","code":"sgt"},{"name":"Salas","code":"sgu"},{"name":"Sebat Bet Gurage","code":"sgw"},{"name":"Sierra Leone Sign Language","code":"sgx"},{"name":"Sanglechi","code":"sgy"},{"name":"Sursurunga","code":"sgz"},{"name":"Shall-Zwall","code":"sha"},{"name":"Ninam","code":"shb"},{"name":"Sonde","code":"shc"},{"name":"Kundal Shahi","code":"shd"},{"name":"Sheko","code":"she"},{"name":"Shua","code":"shg"},{"name":"Shoshoni","code":"shh"},{"name":"Tachelhit","code":"shi"},{"name":"Shatt","code":"shj"},{"name":"Shilluk","code":"shk"},{"name":"Shendu","code":"shl"},{"name":"Shahrudi","code":"shm"},{"name":"Shan","code":"shn"},{"name":"Shanga","code":"sho"},{"name":"Shipibo-Conibo","code":"shp"},{"name":"Sala","code":"shq"},{"name":"Shi","code":"shr"},{"name":"Shuswap","code":"shs"},{"name":"Shasta","code":"sht"},{"name":"Chadian Arabic","code":"shu"},{"name":"Shehri","code":"shv"},{"name":"Shwai","code":"shw"},{"name":"She","code":"shx"},{"name":"Tachawit","code":"shy"},{"name":"Syenara Senoufo","code":"shz"},{"name":"Akkala Sami","code":"sia"},{"name":"Sebop","code":"sib"},{"name":"Sidamo","code":"sid"},{"name":"Simaa","code":"sie"},{"name":"Siamou","code":"sif"},{"name":"Paasaal","code":"sig"},{"name":"Sîshëë","code":"sih"},{"name":"Zire","code":"sih"},{"name":"Shom Peng","code":"sii"},{"name":"Numbami","code":"sij"},{"name":"Sikiana","code":"sik"},{"name":"Tumulung Sisaala","code":"sil"},{"name":"Mende (Papua New Guinea)","code":"sim"},{"name":"Sinhala","code":"sin"},{"name":"Sinhalese","code":"sin"},{"name":"Sikkimese","code":"sip"},{"name":"Sonia","code":"siq"},{"name":"Siri","code":"sir"},{"name":"Siuslaw","code":"sis"},{"name":"Sinagen","code":"siu"},{"name":"Sumariup","code":"siv"},{"name":"Siwai","code":"siw"},{"name":"Sumau","code":"six"},{"name":"Sivandi","code":"siy"},{"name":"Siwi","code":"siz"},{"name":"Epena","code":"sja"},{"name":"Sajau Basap","code":"sjb"},{"name":"Kildin Sami","code":"sjd"},{"name":"Pite Sami","code":"sje"},{"name":"Assangori","code":"sjg"},{"name":"Kemi Sami","code":"sjk"},{"name":"Miji","code":"sjl"},{"name":"Sajalong","code":"sjl"},{"name":"Mapun","code":"sjm"},{"name":"Sindarin","code":"sjn"},{"name":"Xibe","code":"sjo"},{"name":"Surjapuri","code":"sjp"},{"name":"Siar-Lak","code":"sjr"},{"name":"Senhaja De Srair","code":"sjs"},{"name":"Ter Sami","code":"sjt"},{"name":"Ume Sami","code":"sju"},{"name":"Shawnee","code":"sjw"},{"name":"Skagit","code":"ska"},{"name":"Saek","code":"skb"},{"name":"Ma Manda","code":"skc"},{"name":"Southern Sierra Miwok","code":"skd"},{"name":"Seke (Vanuatu)","code":"ske"},{"name":"Sakirabiá","code":"skf"},{"name":"Sakalava Malagasy","code":"skg"},{"name":"Sikule","code":"skh"},{"name":"Sika","code":"ski"},{"name":"Seke (Nepal)","code":"skj"},{"name":"Kutong","code":"skm"},{"name":"Kolibugan Subanon","code":"skn"},{"name":"Seko Tengah","code":"sko"},{"name":"Sekapan","code":"skp"},{"name":"Sininkere","code":"skq"},{"name":"Saraiki","code":"skr"},{"name":"Seraiki","code":"skr"},{"name":"Maia","code":"sks"},{"name":"Sakata","code":"skt"},{"name":"Sakao","code":"sku"},{"name":"Skou","code":"skv"},{"name":"Skepi Creole Dutch","code":"skw"},{"name":"Seko Padang","code":"skx"},{"name":"Sikaiana","code":"sky"},{"name":"Sekar","code":"skz"},{"name":"Sáliba","code":"slc"},{"name":"Sissala","code":"sld"},{"name":"Sholaga","code":"sle"},{"name":"Swiss-Italian Sign Language","code":"slf"},{"name":"Selungai Murut","code":"slg"},{"name":"Southern Puget Sound Salish","code":"slh"},{"name":"Lower Silesian","code":"sli"},{"name":"Salumá","code":"slj"},{"name":"Slovak","code":"slk"},{"name":"Salt-Yui","code":"sll"},{"name":"Pangutaran Sama","code":"slm"},{"name":"Salinan","code":"sln"},{"name":"Lamaholot","code":"slp"},{"name":"Salchuq","code":"slq"},{"name":"Salar","code":"slr"},{"name":"Singapore Sign Language","code":"sls"},{"name":"Sila","code":"slt"},{"name":"Selaru","code":"slu"},{"name":"Slovenian","code":"slv"},{"name":"Sialum","code":"slw"},{"name":"Salampasu","code":"slx"},{"name":"Selayar","code":"sly"},{"name":"Ma'ya","code":"slz"},{"name":"Southern Sami","code":"sma"},{"name":"Simbari","code":"smb"},{"name":"Som","code":"smc"},{"name":"Sama","code":"smd"},{"name":"Northern Sami","code":"sme"},{"name":"Auwe","code":"smf"},{"name":"Simbali","code":"smg"},{"name":"Samei","code":"smh"},{"name":"Lule Sami","code":"smj"},{"name":"Bolinao","code":"smk"},{"name":"Central Sama","code":"sml"},{"name":"Musasa","code":"smm"},{"name":"Inari Sami","code":"smn"},{"name":"Samoan","code":"smo"},{"name":"Samaritan","code":"smp"},{"name":"Samo","code":"smq"},{"name":"Simeulue","code":"smr"},{"name":"Skolt Sami","code":"sms"},{"name":"Simte","code":"smt"},{"name":"Somray","code":"smu"},{"name":"Samvedi","code":"smv"},{"name":"Sumbawa","code":"smw"},{"name":"Samba","code":"smx"},{"name":"Semnani","code":"smy"},{"name":"Simeku","code":"smz"},{"name":"Shona","code":"sna"},{"name":"Sebuyau","code":"snb"},{"name":"Sinaugoro","code":"snc"},{"name":"Sindhi","code":"snd"},{"name":"Bau Bidayuh","code":"sne"},{"name":"Noon","code":"snf"},{"name":"Sanga (Democratic Republic of Congo)","code":"sng"},{"name":"Sensi","code":"sni"},{"name":"Riverain Sango","code":"snj"},{"name":"Soninke","code":"snk"},{"name":"Sangil","code":"snl"},{"name":"Southern Ma'di","code":"snm"},{"name":"Siona","code":"snn"},{"name":"Snohomish","code":"sno"},{"name":"Siane","code":"snp"},{"name":"Sangu (Gabon)","code":"snq"},{"name":"Sihan","code":"snr"},{"name":"Nahavaq","code":"sns"},{"name":"South West Bay","code":"sns"},{"name":"Senggi","code":"snu"},{"name":"Viid","code":"snu"},{"name":"Sa'ban","code":"snv"},{"name":"Selee","code":"snw"},{"name":"Sam","code":"snx"},{"name":"Saniyo-Hiyewe","code":"sny"},{"name":"Kou","code":"snz"},{"name":"Thai Song","code":"soa"},{"name":"Sobei","code":"sob"},{"name":"So (Democratic Republic of Congo)","code":"soc"},{"name":"Songoora","code":"sod"},{"name":"Songomeno","code":"soe"},{"name":"Sogdian","code":"sog"},{"name":"Aka","code":"soh"},{"name":"Sonha","code":"soi"},{"name":"Soi","code":"soj"},{"name":"Sokoro","code":"sok"},{"name":"Solos","code":"sol"},{"name":"Somali","code":"som"},{"name":"Songo","code":"soo"},{"name":"Songe","code":"sop"},{"name":"Kanasi","code":"soq"},{"name":"Somrai","code":"sor"},{"name":"Seeku","code":"sos"},{"name":"Southern Sotho","code":"sot"},{"name":"Southern Thai","code":"sou"},{"name":"Sonsorol","code":"sov"},{"name":"Sowanda","code":"sow"},{"name":"Swo","code":"sox"},{"name":"Miyobe","code":"soy"},{"name":"Temi","code":"soz"},{"name":"Spanish","code":"spa"},{"name":"Castilian","code":"spa"},{"name":"Sepa (Indonesia)","code":"spb"},{"name":"Sapé","code":"spc"},{"name":"Saep","code":"spd"},{"name":"Sepa (Papua New Guinea)","code":"spe"},{"name":"Sian","code":"spg"},{"name":"Saponi","code":"spi"},{"name":"Sengo","code":"spk"},{"name":"Selepet","code":"spl"},{"name":"Akukem","code":"spm"},{"name":"Sanapaná","code":"spn"},{"name":"Spokane","code":"spo"},{"name":"Supyire Senoufo","code":"spp"},{"name":"Loreto-Ucayali Spanish","code":"spq"},{"name":"Saparua","code":"spr"},{"name":"Saposa","code":"sps"},{"name":"Spiti Bhoti","code":"spt"},{"name":"Sapuan","code":"spu"},{"name":"Kosli","code":"spv"},{"name":"Sambalpuri","code":"spv"},{"name":"South Picene","code":"spx"},{"name":"Sabaot","code":"spy"},{"name":"Shama-Sambuga","code":"sqa"},{"name":"Shau","code":"sqh"},{"name":"Albanian","code":"sqi"},{"name":"Albanian Sign Language","code":"sqk"},{"name":"Suma","code":"sqm"},{"name":"Susquehannock","code":"sqn"},{"name":"Sorkhei","code":"sqo"},{"name":"Sou","code":"sqq"},{"name":"Siculo Arabic","code":"sqr"},{"name":"Sri Lankan Sign Language","code":"sqs"},{"name":"Soqotri","code":"sqt"},{"name":"Squamish","code":"squ"},{"name":"Kufr Qassem Sign Language (KQSL)","code":"sqx"},{"name":"Saruga","code":"sra"},{"name":"Sora","code":"srb"},{"name":"Logudorese Sardinian","code":"src"},{"name":"Sardinian","code":"srd"},{"name":"Sara","code":"sre"},{"name":"Nafi","code":"srf"},{"name":"Sulod","code":"srg"},{"name":"Sarikoli","code":"srh"},{"name":"Siriano","code":"sri"},{"name":"Serudung Murut","code":"srk"},{"name":"Isirawa","code":"srl"},{"name":"Saramaccan","code":"srm"},{"name":"Sranan Tongo","code":"srn"},{"name":"Campidanese Sardinian","code":"sro"},{"name":"Serbian","code":"srp"},{"name":"Sirionó","code":"srq"},{"name":"Serer","code":"srr"},{"name":"Sarsi","code":"srs"},{"name":"Sauri","code":"srt"},{"name":"Suruí","code":"sru"},{"name":"Southern Sorsoganon","code":"srv"},{"name":"Serua","code":"srw"},{"name":"Sirmauri","code":"srx"},{"name":"Sera","code":"sry"},{"name":"Shahmirzadi","code":"srz"},{"name":"Southern Sama","code":"ssb"},{"name":"Suba-Simbiti","code":"ssc"},{"name":"Siroi","code":"ssd"},{"name":"Balangingi","code":"sse"},{"name":"Bangingih Sama","code":"sse"},{"name":"Thao","code":"ssf"},{"name":"Seimat","code":"ssg"},{"name":"Shihhi Arabic","code":"ssh"},{"name":"Sansi","code":"ssi"},{"name":"Sausi","code":"ssj"},{"name":"Sunam","code":"ssk"},{"name":"Western Sisaala","code":"ssl"},{"name":"Semnam","code":"ssm"},{"name":"Waata","code":"ssn"},{"name":"Sissano","code":"sso"},{"name":"Spanish Sign Language","code":"ssp"},{"name":"So'a","code":"ssq"},{"name":"Swiss-French Sign Language","code":"ssr"},{"name":"Sô","code":"sss"},{"name":"Sinasina","code":"sst"},{"name":"Susuami","code":"ssu"},{"name":"Shark Bay","code":"ssv"},{"name":"Swati","code":"ssw"},{"name":"Samberigi","code":"ssx"},{"name":"Saho","code":"ssy"},{"name":"Sengseng","code":"ssz"},{"name":"Settla","code":"sta"},{"name":"Northern Subanen","code":"stb"},{"name":"Sentinel","code":"std"},{"name":"Liana-Seti","code":"ste"},{"name":"Seta","code":"stf"},{"name":"Trieng","code":"stg"},{"name":"Shelta","code":"sth"},{"name":"Bulo Stieng","code":"sti"},{"name":"Matya Samo","code":"stj"},{"name":"Arammba","code":"stk"},{"name":"Stellingwerfs","code":"stl"},{"name":"Setaman","code":"stm"},{"name":"Owa","code":"stn"},{"name":"Stoney","code":"sto"},{"name":"Southeastern Tepehuan","code":"stp"},{"name":"Saterfriesisch","code":"stq"},{"name":"Straits Salish","code":"str"},{"name":"Shumashti","code":"sts"},{"name":"Budeh Stieng","code":"stt"},{"name":"Samtao","code":"stu"},{"name":"Silt'e","code":"stv"},{"name":"Satawalese","code":"stw"},{"name":"Siberian Tatar","code":"sty"},{"name":"Sulka","code":"sua"},{"name":"Suku","code":"sub"},{"name":"Western Subanon","code":"suc"},{"name":"Suena","code":"sue"},{"name":"Suganga","code":"sug"},{"name":"Suki","code":"sui"},{"name":"Shubi","code":"suj"},{"name":"Sukuma","code":"suk"},{"name":"Sundanese","code":"sun"},{"name":"Bouni","code":"suo"},{"name":"Suri","code":"suq"},{"name":"Tirmaga-Chai Suri","code":"suq"},{"name":"Mwaghavul","code":"sur"},{"name":"Susu","code":"sus"},{"name":"Subtiaba","code":"sut"},{"name":"Puroik","code":"suv"},{"name":"Sumbwa","code":"suw"},{"name":"Sumerian","code":"sux"},{"name":"Suyá","code":"suy"},{"name":"Sunwar","code":"suz"},{"name":"Svan","code":"sva"},{"name":"Ulau-Suain","code":"svb"},{"name":"Vincentian Creole English","code":"svc"},{"name":"Serili","code":"sve"},{"name":"Slovakian Sign Language","code":"svk"},{"name":"Slavomolisano","code":"svm"},{"name":"Savosavo","code":"svs"},{"name":"Skalvian","code":"svx"},{"name":"Swahili","code":"swa"},{"name":"Swahili (macrolanguage)","code":"swa"},{"name":"Maore Comorian","code":"swb"},{"name":"Congo Swahili","code":"swc"},{"name":"Swedish","code":"swe"},{"name":"Sere","code":"swf"},{"name":"Swabian","code":"swg"},{"name":"Kiswahili","code":"swh"},{"name":"Swahili (individual language)","code":"swh"},{"name":"Sui","code":"swi"},{"name":"Sira","code":"swj"},{"name":"Malawi Sena","code":"swk"},{"name":"Swedish Sign Language","code":"swl"},{"name":"Samosa","code":"swm"},{"name":"Sawknah","code":"swn"},{"name":"Shanenawa","code":"swo"},{"name":"Suau","code":"swp"},{"name":"Sharwa","code":"swq"},{"name":"Saweru","code":"swr"},{"name":"Seluwasan","code":"sws"},{"name":"Sawila","code":"swt"},{"name":"Suwawa","code":"swu"},{"name":"Shekhawati","code":"swv"},{"name":"Sowa","code":"sww"},{"name":"Suruahá","code":"swx"},{"name":"Sarua","code":"swy"},{"name":"Suba","code":"sxb"},{"name":"Sicanian","code":"sxc"},{"name":"Sighu","code":"sxe"},{"name":"Shixing","code":"sxg"},{"name":"Shuhi","code":"sxg"},{"name":"Southern Kalapuya","code":"sxk"},{"name":"Selian","code":"sxl"},{"name":"Samre","code":"sxm"},{"name":"Sangir","code":"sxn"},{"name":"Sorothaptic","code":"sxo"},{"name":"Saaroa","code":"sxr"},{"name":"Sasaru","code":"sxs"},{"name":"Upper Saxon","code":"sxu"},{"name":"Saxwe Gbe","code":"sxw"},{"name":"Siang","code":"sya"},{"name":"Central Subanen","code":"syb"},{"name":"Classical Syriac","code":"syc"},{"name":"Seki","code":"syi"},{"name":"Sukur","code":"syk"},{"name":"Sylheti","code":"syl"},{"name":"Maya Samo","code":"sym"},{"name":"Senaya","code":"syn"},{"name":"Suoy","code":"syo"},{"name":"Syriac","code":"syr"},{"name":"Sinyar","code":"sys"},{"name":"Kagate","code":"syw"},{"name":"Samay","code":"syx"},{"name":"Al-Sayyid Bedouin Sign Language","code":"syy"},{"name":"Semelai","code":"sza"},{"name":"Ngalum","code":"szb"},{"name":"Semaq Beri","code":"szc"},{"name":"Seru","code":"szd"},{"name":"Seze","code":"sze"},{"name":"Sengele","code":"szg"},{"name":"Silesian","code":"szl"},{"name":"Sula","code":"szn"},{"name":"Suabo","code":"szp"},{"name":"Solomon Islands Sign Language","code":"szs"},{"name":"Isu (Fako Division)","code":"szv"},{"name":"Sawai","code":"szw"},{"name":"Sakizaya","code":"szy"},{"name":"Lower Tanana","code":"taa"},{"name":"Tabassaran","code":"tab"},{"name":"Lowland Tarahumara","code":"tac"},{"name":"Tause","code":"tad"},{"name":"Tariana","code":"tae"},{"name":"Tapirapé","code":"taf"},{"name":"Tagoi","code":"tag"},{"name":"Tahitian","code":"tah"},{"name":"Eastern Tamang","code":"taj"},{"name":"Tala","code":"tak"},{"name":"Tal","code":"tal"},{"name":"Tamil","code":"tam"},{"name":"Tangale","code":"tan"},{"name":"Yami","code":"tao"},{"name":"Taabwa","code":"tap"},{"name":"Tamasheq","code":"taq"},{"name":"Central Tarahumara","code":"tar"},{"name":"Tay Boi","code":"tas"},{"name":"Tatar","code":"tat"},{"name":"Upper Tanana","code":"tau"},{"name":"Tatuyo","code":"tav"},{"name":"Tai","code":"taw"},{"name":"Tamki","code":"tax"},{"name":"Atayal","code":"tay"},{"name":"Tocho","code":"taz"},{"name":"Aikanã","code":"tba"},{"name":"Takia","code":"tbc"},{"name":"Kaki Ae","code":"tbd"},{"name":"Tanimbili","code":"tbe"},{"name":"Mandara","code":"tbf"},{"name":"North Tairora","code":"tbg"},{"name":"Dharawal","code":"tbh"},{"name":"Thurawal","code":"tbh"},{"name":"Gaam","code":"tbi"},{"name":"Tiang","code":"tbj"},{"name":"Calamian Tagbanwa","code":"tbk"},{"name":"Tboli","code":"tbl"},{"name":"Tagbu","code":"tbm"},{"name":"Barro Negro Tunebo","code":"tbn"},{"name":"Tawala","code":"tbo"},{"name":"Diebroud","code":"tbp"},{"name":"Taworta","code":"tbp"},{"name":"Tumtum","code":"tbr"},{"name":"Tanguat","code":"tbs"},{"name":"Tembo (Kitembo)","code":"tbt"},{"name":"Tubar","code":"tbu"},{"name":"Tobo","code":"tbv"},{"name":"Tagbanwa","code":"tbw"},{"name":"Kapin","code":"tbx"},{"name":"Tabaru","code":"tby"},{"name":"Ditammari","code":"tbz"},{"name":"Ticuna","code":"tca"},{"name":"Tanacross","code":"tcb"},{"name":"Datooga","code":"tcc"},{"name":"Tafi","code":"tcd"},{"name":"Southern Tutchone","code":"tce"},{"name":"Malinaltepec Me'phaa","code":"tcf"},{"name":"Malinaltepec Tlapanec","code":"tcf"},{"name":"Tamagario","code":"tcg"},{"name":"Turks And Caicos Creole English","code":"tch"},{"name":"Wára","code":"tci"},{"name":"Tchitchege","code":"tck"},{"name":"Taman (Myanmar)","code":"tcl"},{"name":"Tanahmerah","code":"tcm"},{"name":"Tichurong","code":"tcn"},{"name":"Taungyo","code":"tco"},{"name":"Tawr Chin","code":"tcp"},{"name":"Kaiy","code":"tcq"},{"name":"Torres Strait Creole","code":"tcs"},{"name":"Yumplatok","code":"tcs"},{"name":"T'en","code":"tct"},{"name":"Southeastern Tarahumara","code":"tcu"},{"name":"Tecpatlán Totonac","code":"tcw"},{"name":"Toda","code":"tcx"},{"name":"Tulu","code":"tcy"},{"name":"Thado Chin","code":"tcz"},{"name":"Tagdal","code":"tda"},{"name":"Panchpargania","code":"tdb"},{"name":"Emberá-Tadó","code":"tdc"},{"name":"Tai Nüa","code":"tdd"},{"name":"Tiranige Diga Dogon","code":"tde"},{"name":"Talieng","code":"tdf"},{"name":"Western Tamang","code":"tdg"},{"name":"Thulung","code":"tdh"},{"name":"Tomadino","code":"tdi"},{"name":"Tajio","code":"tdj"},{"name":"Tambas","code":"tdk"},{"name":"Sur","code":"tdl"},{"name":"Taruma","code":"tdm"},{"name":"Tondano","code":"tdn"},{"name":"Teme","code":"tdo"},{"name":"Tita","code":"tdq"},{"name":"Todrah","code":"tdr"},{"name":"Doutai","code":"tds"},{"name":"Tetun Dili","code":"tdt"},{"name":"Toro","code":"tdv"},{"name":"Tandroy-Mahafaly Malagasy","code":"tdx"},{"name":"Tadyawan","code":"tdy"},{"name":"Temiar","code":"tea"},{"name":"Tetete","code":"teb"},{"name":"Terik","code":"tec"},{"name":"Tepo Krumen","code":"ted"},{"name":"Huehuetla Tepehua","code":"tee"},{"name":"Teressa","code":"tef"},{"name":"Teke-Tege","code":"teg"},{"name":"Tehuelche","code":"teh"},{"name":"Torricelli","code":"tei"},{"name":"Ibali Teke","code":"tek"},{"name":"Telugu","code":"tel"},{"name":"Timne","code":"tem"},{"name":"Tama (Colombia)","code":"ten"},{"name":"Teso","code":"teo"},{"name":"Tepecano","code":"tep"},{"name":"Temein","code":"teq"},{"name":"Tereno","code":"ter"},{"name":"Tengger","code":"tes"},{"name":"Tetum","code":"tet"},{"name":"Soo","code":"teu"},{"name":"Teor","code":"tev"},{"name":"Tewa (USA)","code":"tew"},{"name":"Tennet","code":"tex"},{"name":"Tulishi","code":"tey"},{"name":"Tetserret","code":"tez"},{"name":"Tofin Gbe","code":"tfi"},{"name":"Tanaina","code":"tfn"},{"name":"Tefaro","code":"tfo"},{"name":"Teribe","code":"tfr"},{"name":"Ternate","code":"tft"},{"name":"Sagalla","code":"tga"},{"name":"Tobilung","code":"tgb"},{"name":"Tigak","code":"tgc"},{"name":"Ciwogai","code":"tgd"},{"name":"Eastern Gorkha Tamang","code":"tge"},{"name":"Chalikha","code":"tgf"},{"name":"Tobagonian Creole English","code":"tgh"},{"name":"Lawunuia","code":"tgi"},{"name":"Tagin","code":"tgj"},{"name":"Tajik","code":"tgk"},{"name":"Tagalog","code":"tgl"},{"name":"Tandaganon","code":"tgn"},{"name":"Sudest","code":"tgo"},{"name":"Tangoa","code":"tgp"},{"name":"Tring","code":"tgq"},{"name":"Tareng","code":"tgr"},{"name":"Nume","code":"tgs"},{"name":"Central Tagbanwa","code":"tgt"},{"name":"Tanggu","code":"tgu"},{"name":"Tingui-Boto","code":"tgv"},{"name":"Tagwana Senoufo","code":"tgw"},{"name":"Tagish","code":"tgx"},{"name":"Togoyo","code":"tgy"},{"name":"Tagalaka","code":"tgz"},{"name":"Thai","code":"tha"},{"name":"Kuuk Thaayorre","code":"thd"},{"name":"Thayore","code":"thd"},{"name":"Chitwania Tharu","code":"the"},{"name":"Thangmi","code":"thf"},{"name":"Northern Tarahumara","code":"thh"},{"name":"Tai Long","code":"thi"},{"name":"Kitharaka","code":"thk"},{"name":"Tharaka","code":"thk"},{"name":"Dangaura Tharu","code":"thl"},{"name":"Aheu","code":"thm"},{"name":"Thachanadan","code":"thn"},{"name":"Thompson","code":"thp"},{"name":"Kochila Tharu","code":"thq"},{"name":"Rana Tharu","code":"thr"},{"name":"Thakali","code":"ths"},{"name":"Tahltan","code":"tht"},{"name":"Thuri","code":"thu"},{"name":"Tahaggart Tamahaq","code":"thv"},{"name":"Tha","code":"thy"},{"name":"Tayart Tamajeq","code":"thz"},{"name":"Tidikelt Tamazight","code":"tia"},{"name":"Tira","code":"tic"},{"name":"Tifal","code":"tif"},{"name":"Tigre","code":"tig"},{"name":"Timugon Murut","code":"tih"},{"name":"Tiene","code":"tii"},{"name":"Tilung","code":"tij"},{"name":"Tikar","code":"tik"},{"name":"Tillamook","code":"til"},{"name":"Timbe","code":"tim"},{"name":"Tindi","code":"tin"},{"name":"Teop","code":"tio"},{"name":"Trimuris","code":"tip"},{"name":"Tiéfo","code":"tiq"},{"name":"Tigrinya","code":"tir"},{"name":"Masadiit Itneg","code":"tis"},{"name":"Tinigua","code":"tit"},{"name":"Adasen","code":"tiu"},{"name":"Tiv","code":"tiv"},{"name":"Tiwi","code":"tiw"},{"name":"Southern Tiwa","code":"tix"},{"name":"Tiruray","code":"tiy"},{"name":"Tai Hongjin","code":"tiz"},{"name":"Tajuasohn","code":"tja"},{"name":"Tunjung","code":"tjg"},{"name":"Northern Tujia","code":"tji"},{"name":"Tjungundji","code":"tjj"},{"name":"Tai Laing","code":"tjl"},{"name":"Timucua","code":"tjm"},{"name":"Tonjon","code":"tjn"},{"name":"Temacine Tamazight","code":"tjo"},{"name":"Tjupany","code":"tjp"},{"name":"Southern Tujia","code":"tjs"},{"name":"Tjurruru","code":"tju"},{"name":"Djabwurrung","code":"tjw"},{"name":"Truká","code":"tka"},{"name":"Buksa","code":"tkb"},{"name":"Tukudede","code":"tkd"},{"name":"Takwane","code":"tke"},{"name":"Tukumanféd","code":"tkf"},{"name":"Tesaka Malagasy","code":"tkg"},{"name":"Tokelau","code":"tkl"},{"name":"Takelma","code":"tkm"},{"name":"Toku-No-Shima","code":"tkn"},{"name":"Tikopia","code":"tkp"},{"name":"Tee","code":"tkq"},{"name":"Tsakhur","code":"tkr"},{"name":"Takestani","code":"tks"},{"name":"Kathoriya Tharu","code":"tkt"},{"name":"Upper Necaxa Totonac","code":"tku"},{"name":"Mur Pano","code":"tkv"},{"name":"Teanu","code":"tkw"},{"name":"Tangko","code":"tkx"},{"name":"Takua","code":"tkz"},{"name":"Southwestern Tepehuan","code":"tla"},{"name":"Tobelo","code":"tlb"},{"name":"Yecuatla Totonac","code":"tlc"},{"name":"Talaud","code":"tld"},{"name":"Telefol","code":"tlf"},{"name":"Tofanma","code":"tlg"},{"name":"Klingon","code":"tlh"},{"name":"tlhIngan Hol","code":"tlh"},{"name":"Tlingit","code":"tli"},{"name":"Talinga-Bwisi","code":"tlj"},{"name":"Taloki","code":"tlk"},{"name":"Tetela","code":"tll"},{"name":"Tolomako","code":"tlm"},{"name":"Talondo'","code":"tln"},{"name":"Talodi","code":"tlo"},{"name":"Filomena Mata-Coahuitlán Totonac","code":"tlp"},{"name":"Tai Loi","code":"tlq"},{"name":"Talise","code":"tlr"},{"name":"Tambotalo","code":"tls"},{"name":"Sou Nama","code":"tlt"},{"name":"Teluti","code":"tlt"},{"name":"Tulehu","code":"tlu"},{"name":"Taliabu","code":"tlv"},{"name":"Khehek","code":"tlx"},{"name":"Talysh","code":"tly"},{"name":"Tama (Chad)","code":"tma"},{"name":"Avava","code":"tmb"},{"name":"Katbol","code":"tmb"},{"name":"Tumak","code":"tmc"},{"name":"Haruai","code":"tmd"},{"name":"Tremembé","code":"tme"},{"name":"Toba-Maskoy","code":"tmf"},{"name":"Ternateño","code":"tmg"},{"name":"Tamashek","code":"tmh"},{"name":"Tutuba","code":"tmi"},{"name":"Samarokena","code":"tmj"},{"name":"Northwestern Tamang","code":"tmk"},{"name":"Tamnim Citak","code":"tml"},{"name":"Tai Thanh","code":"tmm"},{"name":"Taman (Indonesia)","code":"tmn"},{"name":"Temoq","code":"tmo"},{"name":"Tumleo","code":"tmq"},{"name":"Jewish Babylonian Aramaic (ca. 200-1200 CE)","code":"tmr"},{"name":"Tima","code":"tms"},{"name":"Tasmate","code":"tmt"},{"name":"Iau","code":"tmu"},{"name":"Tembo (Motembo)","code":"tmv"},{"name":"Temuan","code":"tmw"},{"name":"Tami","code":"tmy"},{"name":"Tamanaku","code":"tmz"},{"name":"Tacana","code":"tna"},{"name":"Western Tunebo","code":"tnb"},{"name":"Tanimuca-Retuarã","code":"tnc"},{"name":"Angosturas Tunebo","code":"tnd"},{"name":"Tobanga","code":"tng"},{"name":"Maiani","code":"tnh"},{"name":"Tandia","code":"tni"},{"name":"Kwamera","code":"tnk"},{"name":"Lenakel","code":"tnl"},{"name":"Tabla","code":"tnm"},{"name":"North Tanna","code":"tnn"},{"name":"Toromono","code":"tno"},{"name":"Whitesands","code":"tnp"},{"name":"Taino","code":"tnq"},{"name":"Ménik","code":"tnr"},{"name":"Tenis","code":"tns"},{"name":"Tontemboan","code":"tnt"},{"name":"Tay Khang","code":"tnu"},{"name":"Tangchangya","code":"tnv"},{"name":"Tonsawang","code":"tnw"},{"name":"Tanema","code":"tnx"},{"name":"Tongwe","code":"tny"},{"name":"Ten'edn","code":"tnz"},{"name":"Toba","code":"tob"},{"name":"Coyutla Totonac","code":"toc"},{"name":"Toma","code":"tod"},{"name":"Gizrra","code":"tof"},{"name":"Tonga (Nyasa)","code":"tog"},{"name":"Gitonga","code":"toh"},{"name":"Tonga (Zambia)","code":"toi"},{"name":"Tojolabal","code":"toj"},{"name":"Tolowa","code":"tol"},{"name":"Tombulu","code":"tom"},{"name":"Tonga (Tonga Islands)","code":"ton"},{"name":"Xicotepec De Juárez Totonac","code":"too"},{"name":"Papantla Totonac","code":"top"},{"name":"Toposa","code":"toq"},{"name":"Togbo-Vara Banda","code":"tor"},{"name":"Highland Totonac","code":"tos"},{"name":"Tho","code":"tou"},{"name":"Upper Taromi","code":"tov"},{"name":"Jemez","code":"tow"},{"name":"Tobian","code":"tox"},{"name":"Topoiyo","code":"toy"},{"name":"To","code":"toz"},{"name":"Taupota","code":"tpa"},{"name":"Azoyú Me'phaa","code":"tpc"},{"name":"Azoyú Tlapanec","code":"tpc"},{"name":"Tippera","code":"tpe"},{"name":"Tarpia","code":"tpf"},{"name":"Kula","code":"tpg"},{"name":"Tok Pisin","code":"tpi"},{"name":"Tapieté","code":"tpj"},{"name":"Tupinikin","code":"tpk"},{"name":"Tlacoapa Me'phaa","code":"tpl"},{"name":"Tlacoapa Tlapanec","code":"tpl"},{"name":"Tampulma","code":"tpm"},{"name":"Tupinambá","code":"tpn"},{"name":"Tai Pao","code":"tpo"},{"name":"Pisaflores Tepehua","code":"tpp"},{"name":"Tukpa","code":"tpq"},{"name":"Tuparí","code":"tpr"},{"name":"Tlachichilco Tepehua","code":"tpt"},{"name":"Tampuan","code":"tpu"},{"name":"Tanapag","code":"tpv"},{"name":"Tupí","code":"tpw"},{"name":"Acatepec Me'phaa","code":"tpx"},{"name":"Acatepec Tlapanec","code":"tpx"},{"name":"Trumai","code":"tpy"},{"name":"Tinputz","code":"tpz"},{"name":"Tembé","code":"tqb"},{"name":"Lehali","code":"tql"},{"name":"Turumsa","code":"tqm"},{"name":"Tenino","code":"tqn"},{"name":"Toaripi","code":"tqo"},{"name":"Tomoip","code":"tqp"},{"name":"Tunni","code":"tqq"},{"name":"Torona","code":"tqr"},{"name":"Western Totonac","code":"tqt"},{"name":"Touo","code":"tqu"},{"name":"Tonkawa","code":"tqw"},{"name":"Tirahi","code":"tra"},{"name":"Terebu","code":"trb"},{"name":"Copala Triqui","code":"trc"},{"name":"Turi","code":"trd"},{"name":"East Tarangan","code":"tre"},{"name":"Trinidadian Creole English","code":"trf"},{"name":"Lishán Didán","code":"trg"},{"name":"Turaka","code":"trh"},{"name":"Trió","code":"tri"},{"name":"Toram","code":"trj"},{"name":"Traveller Scottish","code":"trl"},{"name":"Tregami","code":"trm"},{"name":"Trinitario","code":"trn"},{"name":"Tarao Naga","code":"tro"},{"name":"Kok Borok","code":"trp"},{"name":"San Martín Itunyoso Triqui","code":"trq"},{"name":"Taushiro","code":"trr"},{"name":"Chicahuaxtla Triqui","code":"trs"},{"name":"Tunggare","code":"trt"},{"name":"Surayt","code":"tru"},{"name":"Turoyo","code":"tru"},{"name":"Taroko","code":"trv"},{"name":"Torwali","code":"trw"},{"name":"Tringgus-Sembaan Bidayuh","code":"trx"},{"name":"Turung","code":"try"},{"name":"Torá","code":"trz"},{"name":"Tsaangi","code":"tsa"},{"name":"Tsamai","code":"tsb"},{"name":"Tswa","code":"tsc"},{"name":"Tsakonian","code":"tsd"},{"name":"Tunisian Sign Language","code":"tse"},{"name":"Tausug","code":"tsg"},{"name":"Tsuvan","code":"tsh"},{"name":"Tsimshian","code":"tsi"},{"name":"Tshangla","code":"tsj"},{"name":"Tseku","code":"tsk"},{"name":"Ts'ün-Lao","code":"tsl"},{"name":"Türk İşaret Dili","code":"tsm"},{"name":"Turkish Sign Language","code":"tsm"},{"name":"Tswana","code":"tsn"},{"name":"Tsonga","code":"tso"},{"name":"Northern Toussian","code":"tsp"},{"name":"Thai Sign Language","code":"tsq"},{"name":"Akei","code":"tsr"},{"name":"Taiwan Sign Language","code":"tss"},{"name":"Tondi Songway Kiini","code":"tst"},{"name":"Tsou","code":"tsu"},{"name":"Tsogo","code":"tsv"},{"name":"Tsishingini","code":"tsw"},{"name":"Mubami","code":"tsx"},{"name":"Tebul Sign Language","code":"tsy"},{"name":"Purepecha","code":"tsz"},{"name":"Tutelo","code":"tta"},{"name":"Gaa","code":"ttb"},{"name":"Tektiteko","code":"ttc"},{"name":"Tauade","code":"ttd"},{"name":"Bwanabwana","code":"tte"},{"name":"Tuotomb","code":"ttf"},{"name":"Tutong","code":"ttg"},{"name":"Upper Ta'oih","code":"tth"},{"name":"Tobati","code":"tti"},{"name":"Tooro","code":"ttj"},{"name":"Totoro","code":"ttk"},{"name":"Totela","code":"ttl"},{"name":"Northern Tutchone","code":"ttm"},{"name":"Towei","code":"ttn"},{"name":"Lower Ta'oih","code":"tto"},{"name":"Tombelala","code":"ttp"},{"name":"Tawallammat Tamajaq","code":"ttq"},{"name":"Tera","code":"ttr"},{"name":"Northeastern Thai","code":"tts"},{"name":"Muslim Tat","code":"ttt"},{"name":"Torau","code":"ttu"},{"name":"Titan","code":"ttv"},{"name":"Long Wat","code":"ttw"},{"name":"Sikaritai","code":"tty"},{"name":"Tsum","code":"ttz"},{"name":"Wiarumus","code":"tua"},{"name":"Tübatulabal","code":"tub"},{"name":"Mutu","code":"tuc"},{"name":"Tuxá","code":"tud"},{"name":"Tuyuca","code":"tue"},{"name":"Central Tunebo","code":"tuf"},{"name":"Tunia","code":"tug"},{"name":"Taulil","code":"tuh"},{"name":"Tupuri","code":"tui"},{"name":"Tugutil","code":"tuj"},{"name":"Turkmen","code":"tuk"},{"name":"Tula","code":"tul"},{"name":"Tumbuka","code":"tum"},{"name":"Tunica","code":"tun"},{"name":"Tucano","code":"tuo"},{"name":"Tedaga","code":"tuq"},{"name":"Turkish","code":"tur"},{"name":"Tuscarora","code":"tus"},{"name":"Tututni","code":"tuu"},{"name":"Turkana","code":"tuv"},{"name":"Tuxináwa","code":"tux"},{"name":"Tugen","code":"tuy"},{"name":"Turka","code":"tuz"},{"name":"Vaghua","code":"tva"},{"name":"Tsuvadi","code":"tvd"},{"name":"Te'un","code":"tve"},{"name":"Southeast Ambrym","code":"tvk"},{"name":"Tuvalu","code":"tvl"},{"name":"Tela-Masbuar","code":"tvm"},{"name":"Tavoyan","code":"tvn"},{"name":"Tidore","code":"tvo"},{"name":"Taveta","code":"tvs"},{"name":"Tutsa Naga","code":"tvt"},{"name":"Tunen","code":"tvu"},{"name":"Sedoa","code":"tvw"},{"name":"Taivoan","code":"tvx"},{"name":"Timor Pidgin","code":"tvy"},{"name":"Twana","code":"twa"},{"name":"Western Tawbuid","code":"twb"},{"name":"Teshenawa","code":"twc"},{"name":"Twents","code":"twd"},{"name":"Tewa (Indonesia)","code":"twe"},{"name":"Northern Tiwa","code":"twf"},{"name":"Tereweng","code":"twg"},{"name":"Tai Dón","code":"twh"},{"name":"Twi","code":"twi"},{"name":"Tawara","code":"twl"},{"name":"Tawang Monpa","code":"twm"},{"name":"Twendi","code":"twn"},{"name":"Tswapong","code":"two"},{"name":"Ere","code":"twp"},{"name":"Tasawaq","code":"twq"},{"name":"Southwestern Tarahumara","code":"twr"},{"name":"Turiwára","code":"twt"},{"name":"Termanu","code":"twu"},{"name":"Tuwari","code":"tww"},{"name":"Tewe","code":"twx"},{"name":"Tawoyan","code":"twy"},{"name":"Tombonuo","code":"txa"},{"name":"Tokharian B","code":"txb"},{"name":"Tsetsaut","code":"txc"},{"name":"Totoli","code":"txe"},{"name":"Tangut","code":"txg"},{"name":"Thracian","code":"txh"},{"name":"Ikpeng","code":"txi"},{"name":"Tarjumo","code":"txj"},{"name":"Tomini","code":"txm"},{"name":"West Tarangan","code":"txn"},{"name":"Toto","code":"txo"},{"name":"Tii","code":"txq"},{"name":"Tartessian","code":"txr"},{"name":"Tonsea","code":"txs"},{"name":"Citak","code":"txt"},{"name":"Kayapó","code":"txu"},{"name":"Tatana","code":"txx"},{"name":"Tanosy Malagasy","code":"txy"},{"name":"Tauya","code":"tya"},{"name":"Kyanga","code":"tye"},{"name":"O'du","code":"tyh"},{"name":"Teke-Tsaayi","code":"tyi"},{"name":"Tai Do","code":"tyj"},{"name":"Tai Yo","code":"tyj"},{"name":"Thu Lao","code":"tyl"},{"name":"Kombai","code":"tyn"},{"name":"Thaypan","code":"typ"},{"name":"Tai Daeng","code":"tyr"},{"name":"Tày Sa Pa","code":"tys"},{"name":"Tày Tac","code":"tyt"},{"name":"Kua","code":"tyu"},{"name":"Tuvinian","code":"tyv"},{"name":"Teke-Tyee","code":"tyx"},{"name":"Tiyaa","code":"tyy"},{"name":"Tày","code":"tyz"},{"name":"Tanzanian Sign Language","code":"tza"},{"name":"Tzeltal","code":"tzh"},{"name":"Tz'utujil","code":"tzj"},{"name":"Talossan","code":"tzl"},{"name":"Central Atlas Tamazight","code":"tzm"},{"name":"Tugun","code":"tzn"},{"name":"Tzotzil","code":"tzo"},{"name":"Tabriak","code":"tzx"},{"name":"Uamué","code":"uam"},{"name":"Kuan","code":"uan"},{"name":"Tairuma","code":"uar"},{"name":"Ubang","code":"uba"},{"name":"Ubi","code":"ubi"},{"name":"Buhi'non Bikol","code":"ubl"},{"name":"Ubir","code":"ubr"},{"name":"Umbu-Ungu","code":"ubu"},{"name":"Ubykh","code":"uby"},{"name":"Uda","code":"uda"},{"name":"Udihe","code":"ude"},{"name":"Muduga","code":"udg"},{"name":"Udi","code":"udi"},{"name":"Ujir","code":"udj"},{"name":"Wuzlam","code":"udl"},{"name":"Udmurt","code":"udm"},{"name":"Uduk","code":"udu"},{"name":"Kioko","code":"ues"},{"name":"Ufim","code":"ufi"},{"name":"Ugaritic","code":"uga"},{"name":"Kuku-Ugbanh","code":"ugb"},{"name":"Ughele","code":"uge"},{"name":"Ugandan Sign Language","code":"ugn"},{"name":"Ugong","code":"ugo"},{"name":"Uruguayan Sign Language","code":"ugy"},{"name":"Uhami","code":"uha"},{"name":"Damal","code":"uhn"},{"name":"Uighur","code":"uig"},{"name":"Uyghur","code":"uig"},{"name":"Uisai","code":"uis"},{"name":"Iyive","code":"uiv"},{"name":"Tanjijili","code":"uji"},{"name":"Kaburi","code":"uka"},{"name":"Ukuriguma","code":"ukg"},{"name":"Ukhwejo","code":"ukh"},{"name":"Kui (India)","code":"uki"},{"name":"Muak Sa-aak","code":"ukk"},{"name":"Ukrainian Sign Language","code":"ukl"},{"name":"Ukpe-Bayobiri","code":"ukp"},{"name":"Ukwa","code":"ukq"},{"name":"Ukrainian","code":"ukr"},{"name":"Kaapor Sign Language","code":"uks"},{"name":"Urubú-Kaapor Sign Language","code":"uks"},{"name":"Ukue","code":"uku"},{"name":"Kuku","code":"ukv"},{"name":"Ukwuani-Aboh-Ndoni","code":"ukw"},{"name":"Kuuk-Yak","code":"uky"},{"name":"Fungwa","code":"ula"},{"name":"Ulukwumi","code":"ulb"},{"name":"Ulch","code":"ulc"},{"name":"Lule","code":"ule"},{"name":"Afra","code":"ulf"},{"name":"Usku","code":"ulf"},{"name":"Ulithian","code":"uli"},{"name":"Meriam Mir","code":"ulk"},{"name":"Ullatan","code":"ull"},{"name":"Ulumanda'","code":"ulm"},{"name":"Unserdeutsch","code":"uln"},{"name":"Uma' Lung","code":"ulu"},{"name":"Ulwa","code":"ulw"},{"name":"Umatilla","code":"uma"},{"name":"Umbundu","code":"umb"},{"name":"Marrucinian","code":"umc"},{"name":"Umbindhamu","code":"umd"},{"name":"Morrobalama","code":"umg"},{"name":"Umbuygamu","code":"umg"},{"name":"Ukit","code":"umi"},{"name":"Umon","code":"umm"},{"name":"Makyan Naga","code":"umn"},{"name":"Umotína","code":"umo"},{"name":"Umpila","code":"ump"},{"name":"Umbugarla","code":"umr"},{"name":"Pendau","code":"ums"},{"name":"Munsee","code":"umu"},{"name":"North Watut","code":"una"},{"name":"Undetermined","code":"und"},{"name":"Uneme","code":"une"},{"name":"Ngarinyin","code":"ung"},{"name":"Uni","code":"uni"},{"name":"Enawené-Nawé","code":"unk"},{"name":"Unami","code":"unm"},{"name":"Kurnai","code":"unn"},{"name":"Mundari","code":"unr"},{"name":"Unubahe","code":"unu"},{"name":"Munda","code":"unx"},{"name":"Unde Kaili","code":"unz"},{"name":"Umeda","code":"upi"},{"name":"Uripiv-Wala-Rano-Atchin","code":"upv"},{"name":"Urarina","code":"ura"},{"name":"Kaapor","code":"urb"},{"name":"Urubú-Kaapor","code":"urb"},{"name":"Urningangg","code":"urc"},{"name":"Urdu","code":"urd"},{"name":"Uru","code":"ure"},{"name":"Uradhi","code":"urf"},{"name":"Urigina","code":"urg"},{"name":"Urhobo","code":"urh"},{"name":"Urim","code":"uri"},{"name":"Urak Lawoi'","code":"urk"},{"name":"Urali","code":"url"},{"name":"Urapmin","code":"urm"},{"name":"Uruangnirin","code":"urn"},{"name":"Ura (Papua New Guinea)","code":"uro"},{"name":"Uru-Pa-In","code":"urp"},{"name":"Lehalurup","code":"urr"},{"name":"Löyöp","code":"urr"},{"name":"Urat","code":"urt"},{"name":"Urumi","code":"uru"},{"name":"Uruava","code":"urv"},{"name":"Sop","code":"urw"},{"name":"Urimo","code":"urx"},{"name":"Orya","code":"ury"},{"name":"Uru-Eu-Wau-Wau","code":"urz"},{"name":"Usarufa","code":"usa"},{"name":"Ushojo","code":"ush"},{"name":"Usui","code":"usi"},{"name":"Usaghade","code":"usk"},{"name":"Uspanteco","code":"usp"},{"name":"us-Saare","code":"uss"},{"name":"Uya","code":"usu"},{"name":"Otank","code":"uta"},{"name":"Ute-Southern Paiute","code":"ute"},{"name":"ut-Hun","code":"uth"},{"name":"Amba (Solomon Islands)","code":"utp"},{"name":"Etulo","code":"utr"},{"name":"Utu","code":"utu"},{"name":"Urum","code":"uum"},{"name":"Kulon-Pazeh","code":"uun"},{"name":"Ura (Vanuatu)","code":"uur"},{"name":"U","code":"uuu"},{"name":"Fagauvea","code":"uve"},{"name":"West Uvean","code":"uve"},{"name":"Uri","code":"uvh"},{"name":"Lote","code":"uvl"},{"name":"Kuku-Uwanh","code":"uwa"},{"name":"Doko-Uyanga","code":"uya"},{"name":"Uzbek","code":"uzb"},{"name":"Northern Uzbek","code":"uzn"},{"name":"Southern Uzbek","code":"uzs"},{"name":"Vaagri Booli","code":"vaa"},{"name":"Vale","code":"vae"},{"name":"Vafsi","code":"vaf"},{"name":"Vagla","code":"vag"},{"name":"Varhadi-Nagpuri","code":"vah"},{"name":"Vai","code":"vai"},{"name":"Northwestern ǃKung","code":"vaj"},{"name":"Sekele","code":"vaj"},{"name":"Vasekele","code":"vaj"},{"name":"Vehes","code":"val"},{"name":"Vanimo","code":"vam"},{"name":"Valman","code":"van"},{"name":"Vao","code":"vao"},{"name":"Vaiphei","code":"vap"},{"name":"Huarijio","code":"var"},{"name":"Vasavi","code":"vas"},{"name":"Vanuma","code":"vau"},{"name":"Varli","code":"vav"},{"name":"Wayu","code":"vay"},{"name":"Southeast Babar","code":"vbb"},{"name":"Southwestern Bontok","code":"vbk"},{"name":"Venetian","code":"vec"},{"name":"Veddah","code":"ved"},{"name":"Veluws","code":"vel"},{"name":"Vemgo-Mabas","code":"vem"},{"name":"Venda","code":"ven"},{"name":"Ventureño","code":"veo"},{"name":"Veps","code":"vep"},{"name":"Mom Jango","code":"ver"},{"name":"Vaghri","code":"vgr"},{"name":"Flemish Sign Language","code":"vgt"},{"name":"Vlaamse Gebarentaal","code":"vgt"},{"name":"Virgin Islands Creole English","code":"vic"},{"name":"Vidunda","code":"vid"},{"name":"Vietnamese","code":"vie"},{"name":"Vili","code":"vif"},{"name":"Viemo","code":"vig"},{"name":"Vilela","code":"vil"},{"name":"Vinza","code":"vin"},{"name":"Vishavan","code":"vis"},{"name":"Viti","code":"vit"},{"name":"Iduna","code":"viv"},{"name":"Kariyarra","code":"vka"},{"name":"Kujarge","code":"vkj"},{"name":"Kaur","code":"vkk"},{"name":"Kulisusu","code":"vkl"},{"name":"Kamakan","code":"vkm"},{"name":"Koro Nulu","code":"vkn"},{"name":"Kodeoha","code":"vko"},{"name":"Korlai Creole Portuguese","code":"vkp"},{"name":"Tenggarong Kutai Malay","code":"vkt"},{"name":"Kurrama","code":"vku"},{"name":"Koro Zuba","code":"vkz"},{"name":"Valpei","code":"vlp"},{"name":"Vlaams","code":"vls"},{"name":"Martuyhunira","code":"vma"},{"name":"Barbaram","code":"vmb"},{"name":"Juxtlahuaca Mixtec","code":"vmc"},{"name":"Mudu Koraga","code":"vmd"},{"name":"East Masela","code":"vme"},{"name":"Mainfränkisch","code":"vmf"},{"name":"Lungalunga","code":"vmg"},{"name":"Maraghei","code":"vmh"},{"name":"Miwa","code":"vmi"},{"name":"Ixtayutla Mixtec","code":"vmj"},{"name":"Makhuwa-Shirima","code":"vmk"},{"name":"Malgana","code":"vml"},{"name":"Mitlatongo Mixtec","code":"vmm"},{"name":"Soyaltepec Mazatec","code":"vmp"},{"name":"Soyaltepec Mixtec","code":"vmq"},{"name":"Marenje","code":"vmr"},{"name":"Moksela","code":"vms"},{"name":"Muluridyi","code":"vmu"},{"name":"Valley Maidu","code":"vmv"},{"name":"Makhuwa","code":"vmw"},{"name":"Tamazola Mixtec","code":"vmx"},{"name":"Ayautla Mazatec","code":"vmy"},{"name":"Mazatlán Mazatec","code":"vmz"},{"name":"Lovono","code":"vnk"},{"name":"Vano","code":"vnk"},{"name":"Neve'ei","code":"vnm"},{"name":"Vinmavis","code":"vnm"},{"name":"Vunapu","code":"vnp"},{"name":"Volapük","code":"vol"},{"name":"Voro","code":"vor"},{"name":"Votic","code":"vot"},{"name":"Vera'a","code":"vra"},{"name":"Võro","code":"vro"},{"name":"Varisi","code":"vrs"},{"name":"Banam Bay","code":"vrt"},{"name":"Burmbar","code":"vrt"},{"name":"Moldova Sign Language","code":"vsi"},{"name":"Venezuelan Sign Language","code":"vsl"},{"name":"Llengua de signes valenciana","code":"vsv"},{"name":"Valencian Sign Language","code":"vsv"},{"name":"Vitou","code":"vto"},{"name":"Vumbu","code":"vum"},{"name":"Vunjo","code":"vun"},{"name":"Vute","code":"vut"},{"name":"Awa (China)","code":"vwa"},{"name":"Walla Walla","code":"waa"},{"name":"Wab","code":"wab"},{"name":"Wasco-Wishram","code":"wac"},{"name":"Wamesa","code":"wad"},{"name":"Wondama","code":"wad"},{"name":"Walser","code":"wae"},{"name":"Wakoná","code":"waf"},{"name":"Wa'ema","code":"wag"},{"name":"Watubela","code":"wah"},{"name":"Wares","code":"wai"},{"name":"Waffa","code":"waj"},{"name":"Wolaitta","code":"wal"},{"name":"Wolaytta","code":"wal"},{"name":"Wampanoag","code":"wam"},{"name":"Wan","code":"wan"},{"name":"Wappo","code":"wao"},{"name":"Wapishana","code":"wap"},{"name":"Wagiman","code":"waq"},{"name":"Waray (Philippines)","code":"war"},{"name":"Washo","code":"was"},{"name":"Kaninuwa","code":"wat"},{"name":"Waurá","code":"wau"},{"name":"Waka","code":"wav"},{"name":"Waiwai","code":"waw"},{"name":"Marangis","code":"wax"},{"name":"Watam","code":"wax"},{"name":"Wayana","code":"way"},{"name":"Wampur","code":"waz"},{"name":"Warao","code":"wba"},{"name":"Wabo","code":"wbb"},{"name":"Waritai","code":"wbe"},{"name":"Wara","code":"wbf"},{"name":"Wanda","code":"wbh"},{"name":"Vwanji","code":"wbi"},{"name":"Alagwa","code":"wbj"},{"name":"Waigali","code":"wbk"},{"name":"Wakhi","code":"wbl"},{"name":"Wa","code":"wbm"},{"name":"Warlpiri","code":"wbp"},{"name":"Waddar","code":"wbq"},{"name":"Wagdi","code":"wbr"},{"name":"West Bengal Sign Language","code":"wbs"},{"name":"Warnman","code":"wbt"},{"name":"Wajarri","code":"wbv"},{"name":"Woi","code":"wbw"},{"name":"Yanomámi","code":"wca"},{"name":"Waci Gbe","code":"wci"},{"name":"Wandji","code":"wdd"},{"name":"Wadaginam","code":"wdg"},{"name":"Wadjiginy","code":"wdj"},{"name":"Wadikali","code":"wdk"},{"name":"Wadjigu","code":"wdu"},{"name":"Wadjabangayi","code":"wdy"},{"name":"Wewaw","code":"wea"},{"name":"Wè Western","code":"wec"},{"name":"Wedau","code":"wed"},{"name":"Wergaia","code":"weg"},{"name":"Weh","code":"weh"},{"name":"Kiunum","code":"wei"},{"name":"Weme Gbe","code":"wem"},{"name":"Wemale","code":"weo"},{"name":"Westphalien","code":"wep"},{"name":"Weri","code":"wer"},{"name":"Cameroon Pidgin","code":"wes"},{"name":"Perai","code":"wet"},{"name":"Rawngtu Chin","code":"weu"},{"name":"Wejewa","code":"wew"},{"name":"Yafi","code":"wfg"},{"name":"Zorop","code":"wfg"},{"name":"Wagaya","code":"wga"},{"name":"Wagawaga","code":"wgb"},{"name":"Wangganguru","code":"wgg"},{"name":"Wangkangurru","code":"wgg"},{"name":"Wahgi","code":"wgi"},{"name":"Waigeo","code":"wgo"},{"name":"Wirangu","code":"wgu"},{"name":"Warrgamay","code":"wgy"},{"name":"Manusela","code":"wha"},{"name":"Sou Upaa","code":"wha"},{"name":"North Wahgi","code":"whg"},{"name":"Wahau Kenyah","code":"whk"},{"name":"Wahau Kayan","code":"whu"},{"name":"Southern Toussian","code":"wib"},{"name":"Wichita","code":"wic"},{"name":"Wik-Epa","code":"wie"},{"name":"Wik-Keyangan","code":"wif"},{"name":"Wik Ngathan","code":"wig"},{"name":"Wik-Me'anha","code":"wih"},{"name":"Minidien","code":"wii"},{"name":"Wik-Iiyanh","code":"wij"},{"name":"Wikalkan","code":"wik"},{"name":"Wilawila","code":"wil"},{"name":"Wik-Mungkan","code":"wim"},{"name":"Ho-Chunk","code":"win"},{"name":"Wiraféd","code":"wir"},{"name":"Wiru","code":"wiu"},{"name":"Vitu","code":"wiv"},{"name":"Wiyot","code":"wiy"},{"name":"Waja","code":"wja"},{"name":"Warji","code":"wji"},{"name":"Kw'adza","code":"wka"},{"name":"Kumbaran","code":"wkb"},{"name":"Mo","code":"wkd"},{"name":"Wakde","code":"wkd"},{"name":"Kalanadi","code":"wkl"},{"name":"Keerray-Woorroong","code":"wkr"},{"name":"Kunduvadi","code":"wku"},{"name":"Wakawaka","code":"wkw"},{"name":"Wangkayutyuru","code":"wky"},{"name":"Walio","code":"wla"},{"name":"Mwali Comorian","code":"wlc"},{"name":"Wolane","code":"wle"},{"name":"Kunbarlang","code":"wlg"},{"name":"Welaun","code":"wlh"},{"name":"Waioli","code":"wli"},{"name":"Wailaki","code":"wlk"},{"name":"Wali (Sudan)","code":"wll"},{"name":"Middle Welsh","code":"wlm"},{"name":"Walloon","code":"wln"},{"name":"Wolio","code":"wlo"},{"name":"Wailapa","code":"wlr"},{"name":"Wallisian","code":"wls"},{"name":"Wuliwuli","code":"wlu"},{"name":"Wichí Lhamtés Vejoz","code":"wlv"},{"name":"Walak","code":"wlw"},{"name":"Wali (Ghana)","code":"wlx"},{"name":"Waling","code":"wly"},{"name":"Mawa (Nigeria)","code":"wma"},{"name":"Wambaya","code":"wmb"},{"name":"Wamas","code":"wmc"},{"name":"Mamaindé","code":"wmd"},{"name":"Wambule","code":"wme"},{"name":"Western Minyag","code":"wmg"},{"name":"Waima'a","code":"wmh"},{"name":"Wamin","code":"wmi"},{"name":"Maiwa (Indonesia)","code":"wmm"},{"name":"Waamwang","code":"wmn"},{"name":"Wom (Papua New Guinea)","code":"wmo"},{"name":"Wambon","code":"wms"},{"name":"Walmajarri","code":"wmt"},{"name":"Mwani","code":"wmw"},{"name":"Womo","code":"wmx"},{"name":"Wanambre","code":"wnb"},{"name":"Wantoat","code":"wnc"},{"name":"Wandarang","code":"wnd"},{"name":"Waneci","code":"wne"},{"name":"Wanggom","code":"wng"},{"name":"Ndzwani Comorian","code":"wni"},{"name":"Wanukaka","code":"wnk"},{"name":"Wanggamala","code":"wnm"},{"name":"Wunumara","code":"wnn"},{"name":"Wano","code":"wno"},{"name":"Wanap","code":"wnp"},{"name":"Usan","code":"wnu"},{"name":"Wintu","code":"wnw"},{"name":"Waanyi","code":"wny"},{"name":"Wanyi","code":"wny"},{"name":"Kuwema","code":"woa"},{"name":"Tyaraity","code":"woa"},{"name":"Wè Northern","code":"wob"},{"name":"Wogeo","code":"woc"},{"name":"Wolani","code":"wod"},{"name":"Woleaian","code":"woe"},{"name":"Gambian Wolof","code":"wof"},{"name":"Wogamusin","code":"wog"},{"name":"Kamang","code":"woi"},{"name":"Longto","code":"wok"},{"name":"Wolof","code":"wol"},{"name":"Wom (Nigeria)","code":"wom"},{"name":"Wongo","code":"won"},{"name":"Manombai","code":"woo"},{"name":"Woria","code":"wor"},{"name":"Hanga Hundi","code":"wos"},{"name":"Wawonii","code":"wow"},{"name":"Weyto","code":"woy"},{"name":"Maco","code":"wpc"},{"name":"Waluwarra","code":"wrb"},{"name":"Warluwara","code":"wrb"},{"name":"Warduji","code":"wrd"},{"name":"Gudjal","code":"wrg"},{"name":"Warungu","code":"wrg"},{"name":"Wiradjuri","code":"wrh"},{"name":"Wariyangga","code":"wri"},{"name":"Garrwa","code":"wrk"},{"name":"Warlmanpa","code":"wrl"},{"name":"Warumungu","code":"wrm"},{"name":"Warnang","code":"wrn"},{"name":"Worrorra","code":"wro"},{"name":"Waropen","code":"wrp"},{"name":"Wardaman","code":"wrr"},{"name":"Waris","code":"wrs"},{"name":"Waru","code":"wru"},{"name":"Waruna","code":"wrv"},{"name":"Gugu Warra","code":"wrw"},{"name":"Wae Rana","code":"wrx"},{"name":"Merwari","code":"wry"},{"name":"Waray (Australia)","code":"wrz"},{"name":"Warembori","code":"wsa"},{"name":"Adilabad Gondi","code":"wsg"},{"name":"Wusi","code":"wsi"},{"name":"Waskia","code":"wsk"},{"name":"Owenia","code":"wsr"},{"name":"Wasa","code":"wss"},{"name":"Wasu","code":"wsu"},{"name":"Wotapuri-Katarqalai","code":"wsv"},{"name":"Watiwa","code":"wtf"},{"name":"Wathawurrung","code":"wth"},{"name":"Berta","code":"wti"},{"name":"Watakataui","code":"wtk"},{"name":"Mewati","code":"wtm"},{"name":"Wotu","code":"wtw"},{"name":"Wikngenchera","code":"wua"},{"name":"Wunambal","code":"wub"},{"name":"Wudu","code":"wud"},{"name":"Wutunhua","code":"wuh"},{"name":"Silimo","code":"wul"},{"name":"Wumbvu","code":"wum"},{"name":"Bungu","code":"wun"},{"name":"Wurrugu","code":"wur"},{"name":"Wutung","code":"wut"},{"name":"Wu Chinese","code":"wuu"},{"name":"Wuvulu-Aua","code":"wuv"},{"name":"Wulna","code":"wux"},{"name":"Wauyai","code":"wuy"},{"name":"Waama","code":"wwa"},{"name":"Wakabunga","code":"wwb"},{"name":"Dorig","code":"wwo"},{"name":"Wetamut","code":"wwo"},{"name":"Warrwa","code":"wwr"},{"name":"Wawa","code":"www"},{"name":"Waxianghua","code":"wxa"},{"name":"Wardandi","code":"wxw"},{"name":"Wyandot","code":"wya"},{"name":"Wangaaybuwan-Ngiyambaa","code":"wyb"},{"name":"Woiwurrung","code":"wyi"},{"name":"Wymysorys","code":"wym"},{"name":"Wayoró","code":"wyr"},{"name":"Western Fijian","code":"wyy"},{"name":"Andalusian Arabic","code":"xaa"},{"name":"Sambe","code":"xab"},{"name":"Kachari","code":"xac"},{"name":"Adai","code":"xad"},{"name":"Aequian","code":"xae"},{"name":"Aghwan","code":"xag"},{"name":"Kaimbé","code":"xai"},{"name":"Ararandewára","code":"xaj"},{"name":"Máku","code":"xak"},{"name":"Kalmyk","code":"xal"},{"name":"Oirat","code":"xal"},{"name":"ǀXam","code":"xam"},{"name":"Xamtanga","code":"xan"},{"name":"Khao","code":"xao"},{"name":"Apalachee","code":"xap"},{"name":"Aquitanian","code":"xaq"},{"name":"Karami","code":"xar"},{"name":"Kamas","code":"xas"},{"name":"Katawixi","code":"xat"},{"name":"Kauwera","code":"xau"},{"name":"Xavánte","code":"xav"},{"name":"Kawaiisu","code":"xaw"},{"name":"Kayan Mahakam","code":"xay"},{"name":"Lower Burdekin","code":"xbb"},{"name":"Bactrian","code":"xbc"},{"name":"Bindal","code":"xbd"},{"name":"Bigambal","code":"xbe"},{"name":"Bunganditj","code":"xbg"},{"name":"Kombio","code":"xbi"},{"name":"Birrpayi","code":"xbj"},{"name":"Middle Breton","code":"xbm"},{"name":"Kenaboi","code":"xbn"},{"name":"Bolgarian","code":"xbo"},{"name":"Bibbulman","code":"xbp"},{"name":"Kambera","code":"xbr"},{"name":"Kambiwá","code":"xbw"},{"name":"Batjala","code":"xby"},{"name":"Batyala","code":"xby"},{"name":"Cumbric","code":"xcb"},{"name":"Camunic","code":"xcc"},{"name":"Celtiberian","code":"xce"},{"name":"Cisalpine Gaulish","code":"xcg"},{"name":"Chemakum","code":"xch"},{"name":"Chimakum","code":"xch"},{"name":"Classical Armenian","code":"xcl"},{"name":"Comecrudo","code":"xcm"},{"name":"Cotoname","code":"xcn"},{"name":"Chorasmian","code":"xco"},{"name":"Carian","code":"xcr"},{"name":"Classical Tibetan","code":"xct"},{"name":"Curonian","code":"xcu"},{"name":"Chuvantsy","code":"xcv"},{"name":"Coahuilteco","code":"xcw"},{"name":"Cayuse","code":"xcy"},{"name":"Darkinyung","code":"xda"},{"name":"Dacian","code":"xdc"},{"name":"Dharuk","code":"xdk"},{"name":"Edomite","code":"xdm"},{"name":"Kwandu","code":"xdo"},{"name":"Malayic Dayak","code":"xdy"},{"name":"Eblan","code":"xeb"},{"name":"Hdi","code":"xed"},{"name":"ǁXegwi","code":"xeg"},{"name":"Kelo","code":"xel"},{"name":"Kembayan","code":"xem"},{"name":"Epi-Olmec","code":"xep"},{"name":"Xerénte","code":"xer"},{"name":"Kesawai","code":"xes"},{"name":"Xetá","code":"xet"},{"name":"Keoru-Ahia","code":"xeu"},{"name":"Faliscan","code":"xfa"},{"name":"Galatian","code":"xga"},{"name":"Gbin","code":"xgb"},{"name":"Gudang","code":"xgd"},{"name":"Gabrielino-Fernandeño","code":"xgf"},{"name":"Goreng","code":"xgg"},{"name":"Garingbal","code":"xgi"},{"name":"Galindan","code":"xgl"},{"name":"Dharumbal","code":"xgm"},{"name":"Guwinmal","code":"xgm"},{"name":"Garza","code":"xgr"},{"name":"Unggumi","code":"xgu"},{"name":"Guwa","code":"xgw"},{"name":"Harami","code":"xha"},{"name":"Hunnic","code":"xhc"},{"name":"Hadrami","code":"xhd"},{"name":"Khetrani","code":"xhe"},{"name":"Xhosa","code":"xho"},{"name":"Hernican","code":"xhr"},{"name":"Hattic","code":"xht"},{"name":"Hurrian","code":"xhu"},{"name":"Khua","code":"xhv"},{"name":"Iberian","code":"xib"},{"name":"Xiri","code":"xii"},{"name":"Illyrian","code":"xil"},{"name":"Xinca","code":"xin"},{"name":"Xiriâna","code":"xir"},{"name":"Kisan","code":"xis"},{"name":"Indus Valley Language","code":"xiv"},{"name":"Xipaya","code":"xiy"},{"name":"Minjungbal","code":"xjb"},{"name":"Jaitmatang","code":"xjt"},{"name":"Kalkoti","code":"xka"},{"name":"Northern Nago","code":"xkb"},{"name":"Kho'ini","code":"xkc"},{"name":"Mendalam Kayan","code":"xkd"},{"name":"Kereho","code":"xke"},{"name":"Khengkha","code":"xkf"},{"name":"Kagoro","code":"xkg"},{"name":"Kenyan Sign Language","code":"xki"},{"name":"Kajali","code":"xkj"},{"name":"Kaco'","code":"xkk"},{"name":"Mainstream Kenyah","code":"xkl"},{"name":"Kayan River Kayan","code":"xkn"},{"name":"Kiorr","code":"xko"},{"name":"Kabatei","code":"xkp"},{"name":"Koroni","code":"xkq"},{"name":"Xakriabá","code":"xkr"},{"name":"Kumbewaha","code":"xks"},{"name":"Kantosi","code":"xkt"},{"name":"Kaamba","code":"xku"},{"name":"Kgalagadi","code":"xkv"},{"name":"Kembra","code":"xkw"},{"name":"Karore","code":"xkx"},{"name":"Uma' Lasan","code":"xky"},{"name":"Kurtokha","code":"xkz"},{"name":"Kamula","code":"xla"},{"name":"Loup B","code":"xlb"},{"name":"Lycian","code":"xlc"},{"name":"Lydian","code":"xld"},{"name":"Lemnian","code":"xle"},{"name":"Ligurian (Ancient)","code":"xlg"},{"name":"Liburnian","code":"xli"},{"name":"Alanic","code":"xln"},{"name":"Loup A","code":"xlo"},{"name":"Lepontic","code":"xlp"},{"name":"Lusitanian","code":"xls"},{"name":"Cuneiform Luwian","code":"xlu"},{"name":"Elymian","code":"xly"},{"name":"Mushungulu","code":"xma"},{"name":"Mbonga","code":"xmb"},{"name":"Makhuwa-Marrevone","code":"xmc"},{"name":"Mbudum","code":"xmd"},{"name":"Median","code":"xme"},{"name":"Mingrelian","code":"xmf"},{"name":"Mengaka","code":"xmg"},{"name":"Kugu-Muminh","code":"xmh"},{"name":"Majera","code":"xmj"},{"name":"Ancient Macedonian","code":"xmk"},{"name":"Malaysian Sign Language","code":"xml"},{"name":"Manado Malay","code":"xmm"},{"name":"Manichaean Middle Persian","code":"xmn"},{"name":"Morerebi","code":"xmo"},{"name":"Kuku-Mu'inh","code":"xmp"},{"name":"Kuku-Mangk","code":"xmq"},{"name":"Meroitic","code":"xmr"},{"name":"Moroccan Sign Language","code":"xms"},{"name":"Matbat","code":"xmt"},{"name":"Kamu","code":"xmu"},{"name":"Antankarana Malagasy","code":"xmv"},{"name":"Tankarana Malagasy","code":"xmv"},{"name":"Tsimihety Malagasy","code":"xmw"},{"name":"Maden","code":"xmx"},{"name":"Mayaguduna","code":"xmy"},{"name":"Mori Bawah","code":"xmz"},{"name":"Ancient North Arabian","code":"xna"},{"name":"Kanakanabu","code":"xnb"},{"name":"Middle Mongolian","code":"xng"},{"name":"Kuanhua","code":"xnh"},{"name":"Ngarigu","code":"xni"},{"name":"Ngoni (Tanzania)","code":"xnj"},{"name":"Nganakarti","code":"xnk"},{"name":"Ngumbarl","code":"xnm"},{"name":"Northern Kankanay","code":"xnn"},{"name":"Anglo-Norman","code":"xno"},{"name":"Ngoni (Mozambique)","code":"xnq"},{"name":"Kangri","code":"xnr"},{"name":"Kanashi","code":"xns"},{"name":"Narragansett","code":"xnt"},{"name":"Nukunul","code":"xnu"},{"name":"Nyiyaparli","code":"xny"},{"name":"Kenzi","code":"xnz"},{"name":"Mattoki","code":"xnz"},{"name":"O'chi'chi'","code":"xoc"},{"name":"Kokoda","code":"xod"},{"name":"Soga","code":"xog"},{"name":"Kominimung","code":"xoi"},{"name":"Xokleng","code":"xok"},{"name":"Komo (Sudan)","code":"xom"},{"name":"Konkomba","code":"xon"},{"name":"Xukurú","code":"xoo"},{"name":"Kopar","code":"xop"},{"name":"Korubo","code":"xor"},{"name":"Kowaki","code":"xow"},{"name":"Pirriya","code":"xpa"},{"name":"Northeastern Tasmanian","code":"xpb"},{"name":"Pyemmairrener","code":"xpb"},{"name":"Pecheneg","code":"xpc"},{"name":"Oyster Bay Tasmanian","code":"xpd"},{"name":"Liberia Kpelle","code":"xpe"},{"name":"Nuenonne","code":"xpf"},{"name":"Southeast Tasmanian","code":"xpf"},{"name":"Phrygian","code":"xpg"},{"name":"North Midlands Tasmanian","code":"xph"},{"name":"Tyerrenoterpanner","code":"xph"},{"name":"Pictish","code":"xpi"},{"name":"Mpalitjanh","code":"xpj"},{"name":"Kulina Pano","code":"xpk"},{"name":"Port Sorell Tasmanian","code":"xpl"},{"name":"Pumpokol","code":"xpm"},{"name":"Kapinawá","code":"xpn"},{"name":"Pochutec","code":"xpo"},{"name":"Puyo-Paekche","code":"xpp"},{"name":"Mohegan-Pequot","code":"xpq"},{"name":"Parthian","code":"xpr"},{"name":"Pisidian","code":"xps"},{"name":"Punthamara","code":"xpt"},{"name":"Punic","code":"xpu"},{"name":"Northern Tasmanian","code":"xpv"},{"name":"Tommeginne","code":"xpv"},{"name":"Northwestern Tasmanian","code":"xpw"},{"name":"Peerapper","code":"xpw"},{"name":"Southwestern Tasmanian","code":"xpx"},{"name":"Toogee","code":"xpx"},{"name":"Puyo","code":"xpy"},{"name":"Bruny Island Tasmanian","code":"xpz"},{"name":"Karakhanid","code":"xqa"},{"name":"Qatabanian","code":"xqt"},{"name":"Krahô","code":"xra"},{"name":"Eastern Karaboro","code":"xrb"},{"name":"Gundungurra","code":"xrd"},{"name":"Kreye","code":"xre"},{"name":"Minang","code":"xrg"},{"name":"Krikati-Timbira","code":"xri"},{"name":"Armazic","code":"xrm"},{"name":"Arin","code":"xrn"},{"name":"Raetic","code":"xrr"},{"name":"Aranama-Tamique","code":"xrt"},{"name":"Marriammu","code":"xru"},{"name":"Karawa","code":"xrw"},{"name":"Sabaean","code":"xsa"},{"name":"Sambal","code":"xsb"},{"name":"Scythian","code":"xsc"},{"name":"Sidetic","code":"xsd"},{"name":"Sempan","code":"xse"},{"name":"Shamang","code":"xsh"},{"name":"Sio","code":"xsi"},{"name":"Subi","code":"xsj"},{"name":"South Slavey","code":"xsl"},{"name":"Kasem","code":"xsm"},{"name":"Sanga (Nigeria)","code":"xsn"},{"name":"Solano","code":"xso"},{"name":"Silopi","code":"xsp"},{"name":"Makhuwa-Saka","code":"xsq"},{"name":"Sherpa","code":"xsr"},{"name":"Assan","code":"xss"},{"name":"Sanumá","code":"xsu"},{"name":"Sudovian","code":"xsv"},{"name":"Saisiyat","code":"xsy"},{"name":"Alcozauca Mixtec","code":"xta"},{"name":"Chazumba Mixtec","code":"xtb"},{"name":"Katcha-Kadugli-Miri","code":"xtc"},{"name":"Diuxi-Tilantongo Mixtec","code":"xtd"},{"name":"Ketengban","code":"xte"},{"name":"Transalpine Gaulish","code":"xtg"},{"name":"Yitha Yitha","code":"xth"},{"name":"Sinicahua Mixtec","code":"xti"},{"name":"San Juan Teita Mixtec","code":"xtj"},{"name":"Tijaltepec Mixtec","code":"xtl"},{"name":"Magdalena Peñasco Mixtec","code":"xtm"},{"name":"Northern Tlaxiaco Mixtec","code":"xtn"},{"name":"Tokharian A","code":"xto"},{"name":"San Miguel Piedras Mixtec","code":"xtp"},{"name":"Tumshuqese","code":"xtq"},{"name":"Early Tripuri","code":"xtr"},{"name":"Sindihui Mixtec","code":"xts"},{"name":"Tacahua Mixtec","code":"xtt"},{"name":"Cuyamecalco Mixtec","code":"xtu"},{"name":"Thawa","code":"xtv"},{"name":"Tawandê","code":"xtw"},{"name":"Yoloxochitl Mixtec","code":"xty"},{"name":"Alu Kurumba","code":"xua"},{"name":"Betta Kurumba","code":"xub"},{"name":"Umiida","code":"xud"},{"name":"Kunigami","code":"xug"},{"name":"Jennu Kurumba","code":"xuj"},{"name":"Ngunawal","code":"xul"},{"name":"Nunukul","code":"xul"},{"name":"Umbrian","code":"xum"},{"name":"Unggaranggu","code":"xun"},{"name":"Kuo","code":"xuo"},{"name":"Upper Umpqua","code":"xup"},{"name":"Urartian","code":"xur"},{"name":"Kuthant","code":"xut"},{"name":"Khwedam","code":"xuu"},{"name":"Kxoe","code":"xuu"},{"name":"Venetic","code":"xve"},{"name":"Kamviri","code":"xvi"},{"name":"Vandalic","code":"xvn"},{"name":"Volscian","code":"xvo"},{"name":"Vestinian","code":"xvs"},{"name":"Kwaza","code":"xwa"},{"name":"Woccon","code":"xwc"},{"name":"Wadi Wadi","code":"xwd"},{"name":"Xwela Gbe","code":"xwe"},{"name":"Kwegu","code":"xwg"},{"name":"Wajuk","code":"xwj"},{"name":"Wangkumara","code":"xwk"},{"name":"Western Xwla Gbe","code":"xwl"},{"name":"Written Oirat","code":"xwo"},{"name":"Kwerba Mamberamo","code":"xwr"},{"name":"Wotjobaluk","code":"xwt"},{"name":"Wemba Wemba","code":"xww"},{"name":"Boro (Ghana)","code":"xxb"},{"name":"Ke'o","code":"xxk"},{"name":"Minkin","code":"xxm"},{"name":"Koropó","code":"xxr"},{"name":"Tambora","code":"xxt"},{"name":"Yaygir","code":"xya"},{"name":"Yandjibara","code":"xyb"},{"name":"Mayi-Yapi","code":"xyj"},{"name":"Mayi-Kulan","code":"xyk"},{"name":"Yalakalore","code":"xyl"},{"name":"Mayi-Thakurti","code":"xyt"},{"name":"Yorta Yorta","code":"xyy"},{"name":"Zhang-Zhung","code":"xzh"},{"name":"Zemgalian","code":"xzm"},{"name":"Ancient Zapotec","code":"xzp"},{"name":"Yaminahua","code":"yaa"},{"name":"Yuhup","code":"yab"},{"name":"Pass Valley Yali","code":"yac"},{"name":"Yagua","code":"yad"},{"name":"Pumé","code":"yae"},{"name":"Yaka (Democratic Republic of Congo)","code":"yaf"},{"name":"Yámana","code":"yag"},{"name":"Yazgulyam","code":"yah"},{"name":"Yagnobi","code":"yai"},{"name":"Banda-Yangere","code":"yaj"},{"name":"Yakama","code":"yak"},{"name":"Yalunka","code":"yal"},{"name":"Yamba","code":"yam"},{"name":"Mayangna","code":"yan"},{"name":"Yao","code":"yao"},{"name":"Yapese","code":"yap"},{"name":"Yaqui","code":"yaq"},{"name":"Yabarana","code":"yar"},{"name":"Nugunu (Cameroon)","code":"yas"},{"name":"Yambeta","code":"yat"},{"name":"Yuwana","code":"yau"},{"name":"Yangben","code":"yav"},{"name":"Yawalapití","code":"yaw"},{"name":"Yauma","code":"yax"},{"name":"Agwagwune","code":"yay"},{"name":"Lokaa","code":"yaz"},{"name":"Yala","code":"yba"},{"name":"Yemba","code":"ybb"},{"name":"West Yugur","code":"ybe"},{"name":"Yakha","code":"ybh"},{"name":"Yamphu","code":"ybi"},{"name":"Hasha","code":"ybj"},{"name":"Bokha","code":"ybk"},{"name":"Yukuben","code":"ybl"},{"name":"Yaben","code":"ybm"},{"name":"Yabaâna","code":"ybn"},{"name":"Yabong","code":"ybo"},{"name":"Yawiyo","code":"ybx"},{"name":"Yaweyuha","code":"yby"},{"name":"Chesu","code":"ych"},{"name":"Lolopo","code":"ycl"},{"name":"Yucuna","code":"ycn"},{"name":"Chepya","code":"ycp"},{"name":"Yanda","code":"yda"},{"name":"Eastern Yiddish","code":"ydd"},{"name":"Yangum Dey","code":"yde"},{"name":"Yidgha","code":"ydg"},{"name":"Yoidik","code":"ydk"},{"name":"Ravula","code":"yea"},{"name":"Yeniche","code":"yec"},{"name":"Yimas","code":"yee"},{"name":"Yeni","code":"yei"},{"name":"Yevanic","code":"yej"},{"name":"Yela","code":"yel"},{"name":"Tarok","code":"yer"},{"name":"Nyankpa","code":"yes"},{"name":"Yetfa","code":"yet"},{"name":"Yerukula","code":"yeu"},{"name":"Yapunda","code":"yev"},{"name":"Yeyi","code":"yey"},{"name":"Malyangapa","code":"yga"},{"name":"Yiningayi","code":"ygi"},{"name":"Yangum Gel","code":"ygl"},{"name":"Yagomi","code":"ygm"},{"name":"Gepo","code":"ygp"},{"name":"Yagaria","code":"ygr"},{"name":"Yolŋu Sign Language","code":"ygs"},{"name":"Yugul","code":"ygu"},{"name":"Yagwoia","code":"ygw"},{"name":"Baha Buyang","code":"yha"},{"name":"Judeo-Iraqi Arabic","code":"yhd"},{"name":"Hlepho Phowa","code":"yhl"},{"name":"Yan-nhaŋu Sign Language","code":"yhs"},{"name":"Yinggarda","code":"yia"},{"name":"Yiddish","code":"yid"},{"name":"Ache","code":"yif"},{"name":"Wusa Nasu","code":"yig"},{"name":"Western Yiddish","code":"yih"},{"name":"Yidiny","code":"yii"},{"name":"Yindjibarndi","code":"yij"},{"name":"Dongshanba Lalo","code":"yik"},{"name":"Yindjilandji","code":"yil"},{"name":"Yimchungru Naga","code":"yim"},{"name":"Riang Lai","code":"yin"},{"name":"Yinchia","code":"yin"},{"name":"Pholo","code":"yip"},{"name":"Miqie","code":"yiq"},{"name":"North Awyu","code":"yir"},{"name":"Yis","code":"yis"},{"name":"Eastern Lalu","code":"yit"},{"name":"Awu","code":"yiu"},{"name":"Northern Nisu","code":"yiv"},{"name":"Axi Yi","code":"yix"},{"name":"Azhe","code":"yiz"},{"name":"Yakan","code":"yka"},{"name":"Northern Yukaghir","code":"ykg"},{"name":"Yoke","code":"yki"},{"name":"Yakaikeke","code":"ykk"},{"name":"Khlula","code":"ykl"},{"name":"Kap","code":"ykm"},{"name":"Kua-nsi","code":"ykn"},{"name":"Yasa","code":"yko"},{"name":"Yekora","code":"ykr"},{"name":"Kathu","code":"ykt"},{"name":"Kuamasi","code":"yku"},{"name":"Yakoma","code":"yky"},{"name":"Yaul","code":"yla"},{"name":"Yaleba","code":"ylb"},{"name":"Yele","code":"yle"},{"name":"Yelogu","code":"ylg"},{"name":"Angguruk Yali","code":"yli"},{"name":"Yil","code":"yll"},{"name":"Limi","code":"ylm"},{"name":"Langnian Buyang","code":"yln"},{"name":"Naluo Yi","code":"ylo"},{"name":"Yalarnnga","code":"ylr"},{"name":"Aribwaung","code":"ylu"},{"name":"Nyâlayu","code":"yly"},{"name":"Nyelâyu","code":"yly"},{"name":"Yambes","code":"ymb"},{"name":"Southern Muji","code":"ymc"},{"name":"Muda","code":"ymd"},{"name":"Yameo","code":"yme"},{"name":"Yamongeri","code":"ymg"},{"name":"Mili","code":"ymh"},{"name":"Moji","code":"ymi"},{"name":"Makwe","code":"ymk"},{"name":"Iamalele","code":"yml"},{"name":"Maay","code":"ymm"},{"name":"Sunum","code":"ymn"},{"name":"Yamna","code":"ymn"},{"name":"Yangum Mon","code":"ymo"},{"name":"Yamap","code":"ymp"},{"name":"Qila Muji","code":"ymq"},{"name":"Malasar","code":"ymr"},{"name":"Mysian","code":"yms"},{"name":"Northern Muji","code":"ymx"},{"name":"Muzi","code":"ymz"},{"name":"Aluo","code":"yna"},{"name":"Yandruwandha","code":"ynd"},{"name":"Lang'e","code":"yne"},{"name":"Yango","code":"yng"},{"name":"Naukan Yupik","code":"ynk"},{"name":"Yangulam","code":"ynl"},{"name":"Yana","code":"ynn"},{"name":"Yong","code":"yno"},{"name":"Yendang","code":"ynq"},{"name":"Yansi","code":"yns"},{"name":"Yahuna","code":"ynu"},{"name":"Yoba","code":"yob"},{"name":"Yogad","code":"yog"},{"name":"Yonaguni","code":"yoi"},{"name":"Yokuts","code":"yok"},{"name":"Yola","code":"yol"},{"name":"Yombe","code":"yom"},{"name":"Yongkom","code":"yon"},{"name":"Yoruba","code":"yor"},{"name":"Yotti","code":"yot"},{"name":"Yoron","code":"yox"},{"name":"Yoy","code":"yoy"},{"name":"Phala","code":"ypa"},{"name":"Labo Phowa","code":"ypb"},{"name":"Phola","code":"ypg"},{"name":"Phupha","code":"yph"},{"name":"Phuma","code":"ypm"},{"name":"Ani Phowa","code":"ypn"},{"name":"Alo Phola","code":"ypo"},{"name":"Phupa","code":"ypp"},{"name":"Phuza","code":"ypz"},{"name":"Yerakai","code":"yra"},{"name":"Yareba","code":"yrb"},{"name":"Yaouré","code":"yre"},{"name":"Nenets","code":"yrk"},{"name":"Nhengatu","code":"yrl"},{"name":"Yirrk-Mel","code":"yrm"},{"name":"Yerong","code":"yrn"},{"name":"Yaroamë","code":"yro"},{"name":"Yarsun","code":"yrs"},{"name":"Yarawata","code":"yrw"},{"name":"Yarluyandi","code":"yry"},{"name":"Yassic","code":"ysc"},{"name":"Samatao","code":"ysd"},{"name":"Sonaga","code":"ysg"},{"name":"Yugoslavian Sign Language","code":"ysl"},{"name":"Myanmar Sign Language","code":"ysm"},{"name":"Sani","code":"ysn"},{"name":"Nisi (China)","code":"yso"},{"name":"Southern Lolopo","code":"ysp"},{"name":"Sirenik Yupik","code":"ysr"},{"name":"Yessan-Mayo","code":"yss"},{"name":"Sanie","code":"ysy"},{"name":"Talu","code":"yta"},{"name":"Tanglang","code":"ytl"},{"name":"Thopho","code":"ytp"},{"name":"Yout Wam","code":"ytw"},{"name":"Yatay","code":"yty"},{"name":"Yucatec Maya","code":"yua"},{"name":"Yucateco","code":"yua"},{"name":"Yugambal","code":"yub"},{"name":"Yuchi","code":"yuc"},{"name":"Judeo-Tripolitanian Arabic","code":"yud"},{"name":"Yue Chinese","code":"yue"},{"name":"Havasupai-Walapai-Yavapai","code":"yuf"},{"name":"Yug","code":"yug"},{"name":"Yurutí","code":"yui"},{"name":"Karkar-Yuri","code":"yuj"},{"name":"Yuki","code":"yuk"},{"name":"Yulu","code":"yul"},{"name":"Quechan","code":"yum"},{"name":"Bena (Nigeria)","code":"yun"},{"name":"Yukpa","code":"yup"},{"name":"Yuqui","code":"yuq"},{"name":"Yurok","code":"yur"},{"name":"Yopno","code":"yut"},{"name":"Yau (Morobe Province)","code":"yuw"},{"name":"Southern Yukaghir","code":"yux"},{"name":"East Yugur","code":"yuy"},{"name":"Yuracare","code":"yuz"},{"name":"Yawa","code":"yva"},{"name":"Yavitero","code":"yvt"},{"name":"Kalou","code":"ywa"},{"name":"Yinhawangka","code":"ywg"},{"name":"Western Lalu","code":"ywl"},{"name":"Yawanawa","code":"ywn"},{"name":"Wuding-Luquan Yi","code":"ywq"},{"name":"Yawuru","code":"ywr"},{"name":"Central Lalo","code":"ywt"},{"name":"Xishanba Lalo","code":"ywt"},{"name":"Wumeng Nasu","code":"ywu"},{"name":"Yawarawarga","code":"yww"},{"name":"Mayawali","code":"yxa"},{"name":"Yagara","code":"yxg"},{"name":"Yardliyawarra","code":"yxl"},{"name":"Yinwum","code":"yxm"},{"name":"Yuyu","code":"yxu"},{"name":"Yabula Yabula","code":"yxy"},{"name":"Yir Yoront","code":"yyr"},{"name":"Yau (Sandaun Province)","code":"yyu"},{"name":"Ayizi","code":"yyz"},{"name":"E'ma Buyang","code":"yzg"},{"name":"Zokhuo","code":"yzk"},{"name":"Sierra de Juárez Zapotec","code":"zaa"},{"name":"San Juan Guelavía Zapotec","code":"zab"},{"name":"Western Tlacolula Valley Zapotec","code":"zab"},{"name":"Ocotlán Zapotec","code":"zac"},{"name":"Cajonos Zapotec","code":"zad"},{"name":"Yareni Zapotec","code":"zae"},{"name":"Ayoquesco Zapotec","code":"zaf"},{"name":"Zaghawa","code":"zag"},{"name":"Zangwal","code":"zah"},{"name":"Isthmus Zapotec","code":"zai"},{"name":"Zaramo","code":"zaj"},{"name":"Zanaki","code":"zak"},{"name":"Zauzou","code":"zal"},{"name":"Miahuatlán Zapotec","code":"zam"},{"name":"Ozolotepec Zapotec","code":"zao"},{"name":"Zapotec","code":"zap"},{"name":"Aloápam Zapotec","code":"zaq"},{"name":"Rincón Zapotec","code":"zar"},{"name":"Santo Domingo Albarradas Zapotec","code":"zas"},{"name":"Tabaa Zapotec","code":"zat"},{"name":"Zangskari","code":"zau"},{"name":"Yatzachi Zapotec","code":"zav"},{"name":"Mitla Zapotec","code":"zaw"},{"name":"Xadani Zapotec","code":"zax"},{"name":"Zaysete","code":"zay"},{"name":"Zayse-Zergulla","code":"zay"},{"name":"Zari","code":"zaz"},{"name":"Balaibalan","code":"zba"},{"name":"Central Berawan","code":"zbc"},{"name":"East Berawan","code":"zbe"},{"name":"Bliss","code":"zbl"},{"name":"Blissymbolics","code":"zbl"},{"name":"Blissymbols","code":"zbl"},{"name":"Batui","code":"zbt"},{"name":"Bu (Bauchi State)","code":"zbu"},{"name":"West Berawan","code":"zbw"},{"name":"Coatecas Altas Zapotec","code":"zca"},{"name":"Central Hongshuihe Zhuang","code":"zch"},{"name":"Ngazidja Comorian","code":"zdj"},{"name":"Zeeuws","code":"zea"},{"name":"Zenag","code":"zeg"},{"name":"Eastern Hongshuihe Zhuang","code":"zeh"},{"name":"Zenaga","code":"zen"},{"name":"Kinga","code":"zga"},{"name":"Guibei Zhuang","code":"zgb"},{"name":"Standard Moroccan Tamazight","code":"zgh"},{"name":"Minz Zhuang","code":"zgm"},{"name":"Guibian Zhuang","code":"zgn"},{"name":"Magori","code":"zgr"},{"name":"Chuang","code":"zha"},{"name":"Zhuang","code":"zha"},{"name":"Zhaba","code":"zhb"},{"name":"Dai Zhuang","code":"zhd"},{"name":"Zhire","code":"zhi"},{"name":"Nong Zhuang","code":"zhn"},{"name":"Chinese","code":"zho"},{"name":"Zhoa","code":"zhw"},{"name":"Zia","code":"zia"},{"name":"Zimbabwe Sign Language","code":"zib"},{"name":"Zimakani","code":"zik"},{"name":"Zialo","code":"zil"},{"name":"Mesme","code":"zim"},{"name":"Zinza","code":"zin"},{"name":"Zigula","code":"ziw"},{"name":"Zizilivakan","code":"ziz"},{"name":"Kaimbulawa","code":"zka"},{"name":"Koibal","code":"zkb"},{"name":"Kadu","code":"zkd"},{"name":"Koguryo","code":"zkg"},{"name":"Khorezmian","code":"zkh"},{"name":"Karankawa","code":"zkk"},{"name":"Kanan","code":"zkn"},{"name":"Kott","code":"zko"},{"name":"São Paulo Kaingáng","code":"zkp"},{"name":"Zakhring","code":"zkr"},{"name":"Kitan","code":"zkt"},{"name":"Kaurna","code":"zku"},{"name":"Krevinian","code":"zkv"},{"name":"Khazar","code":"zkz"},{"name":"Zula","code":"zla"},{"name":"Liujiang Zhuang","code":"zlj"},{"name":"Malay (individual language)","code":"zlm"},{"name":"Lianshan Zhuang","code":"zln"},{"name":"Liuqian Zhuang","code":"zlq"},{"name":"Manda (Australia)","code":"zma"},{"name":"Zimba","code":"zmb"},{"name":"Margany","code":"zmc"},{"name":"Maridan","code":"zmd"},{"name":"Mangerr","code":"zme"},{"name":"Mfinu","code":"zmf"},{"name":"Marti Ke","code":"zmg"},{"name":"Makolkol","code":"zmh"},{"name":"Negeri Sembilan Malay","code":"zmi"},{"name":"Maridjabin","code":"zmj"},{"name":"Mandandanyi","code":"zmk"},{"name":"Matngala","code":"zml"},{"name":"Marimanindji","code":"zmm"},{"name":"Marramaninyshi","code":"zmm"},{"name":"Mbangwe","code":"zmn"},{"name":"Molo","code":"zmo"},{"name":"Mpuono","code":"zmp"},{"name":"Mituku","code":"zmq"},{"name":"Maranunggu","code":"zmr"},{"name":"Mbesa","code":"zms"},{"name":"Maringarr","code":"zmt"},{"name":"Muruwari","code":"zmu"},{"name":"Mbariman-Gudhinma","code":"zmv"},{"name":"Mbo (Democratic Republic of Congo)","code":"zmw"},{"name":"Bomitaba","code":"zmx"},{"name":"Mariyedi","code":"zmy"},{"name":"Mbandja","code":"zmz"},{"name":"Zan Gula","code":"zna"},{"name":"Zande (individual language)","code":"zne"},{"name":"Mang","code":"zng"},{"name":"Manangkari","code":"znk"},{"name":"Mangas","code":"zns"},{"name":"Copainalá Zoque","code":"zoc"},{"name":"Chimalapa Zoque","code":"zoh"},{"name":"Zou","code":"zom"},{"name":"Asunción Mixtepec Zapotec","code":"zoo"},{"name":"Tabasco Zoque","code":"zoq"},{"name":"Rayón Zoque","code":"zor"},{"name":"Francisco León Zoque","code":"zos"},{"name":"Lachiguiri Zapotec","code":"zpa"},{"name":"Yautepec Zapotec","code":"zpb"},{"name":"Choapan Zapotec","code":"zpc"},{"name":"Southeastern Ixtlán Zapotec","code":"zpd"},{"name":"Petapa Zapotec","code":"zpe"},{"name":"San Pedro Quiatoni Zapotec","code":"zpf"},{"name":"Guevea De Humboldt Zapotec","code":"zpg"},{"name":"Totomachapan Zapotec","code":"zph"},{"name":"Santa María Quiegolani Zapotec","code":"zpi"},{"name":"Quiavicuzas Zapotec","code":"zpj"},{"name":"Tlacolulita Zapotec","code":"zpk"},{"name":"Lachixío Zapotec","code":"zpl"},{"name":"Mixtepec Zapotec","code":"zpm"},{"name":"Santa Inés Yatzechi Zapotec","code":"zpn"},{"name":"Amatlán Zapotec","code":"zpo"},{"name":"El Alto Zapotec","code":"zpp"},{"name":"Zoogocho Zapotec","code":"zpq"},{"name":"Santiago Xanica Zapotec","code":"zpr"},{"name":"Coatlán Zapotec","code":"zps"},{"name":"San Vicente Coatlán Zapotec","code":"zpt"},{"name":"Yalálag Zapotec","code":"zpu"},{"name":"Chichicapan Zapotec","code":"zpv"},{"name":"Zaniza Zapotec","code":"zpw"},{"name":"San Baltazar Loxicha Zapotec","code":"zpx"},{"name":"Mazaltepec Zapotec","code":"zpy"},{"name":"Texmelucan Zapotec","code":"zpz"},{"name":"Qiubei Zhuang","code":"zqe"},{"name":"Kara (Korea)","code":"zra"},{"name":"Mirgan","code":"zrg"},{"name":"Zerenkel","code":"zrn"},{"name":"Záparo","code":"zro"},{"name":"Zarphatic","code":"zrp"},{"name":"Mairasi","code":"zrs"},{"name":"Sarasira","code":"zsa"},{"name":"Kaskean","code":"zsk"},{"name":"Zambian Sign Language","code":"zsl"},{"name":"Standard Malay","code":"zsm"},{"name":"Southern Rincon Zapotec","code":"zsr"},{"name":"Sukurum","code":"zsu"},{"name":"Elotepec Zapotec","code":"zte"},{"name":"Xanaguía Zapotec","code":"ztg"},{"name":"Lapaguía-Guivini Zapotec","code":"ztl"},{"name":"San Agustín Mixtepec Zapotec","code":"ztm"},{"name":"Santa Catarina Albarradas Zapotec","code":"ztn"},{"name":"Loxicha Zapotec","code":"ztp"},{"name":"Quioquitani-Quierí Zapotec","code":"ztq"},{"name":"Tilquiapan Zapotec","code":"zts"},{"name":"Tejalapan Zapotec","code":"ztt"},{"name":"Güilá Zapotec","code":"ztu"},{"name":"Zaachila Zapotec","code":"ztx"},{"name":"Yatee Zapotec","code":"zty"},{"name":"Zeem","code":"zua"},{"name":"Tokano","code":"zuh"},{"name":"Zulu","code":"zul"},{"name":"Kumzari","code":"zum"},{"name":"Zuni","code":"zun"},{"name":"Zumaya","code":"zuy"},{"name":"Zay","code":"zwa"},{"name":"No linguistic content","code":"zxx"},{"name":"Not applicable","code":"zxx"},{"name":"Yongbei Zhuang","code":"zyb"},{"name":"Yang Zhuang","code":"zyg"},{"name":"Youjiang Zhuang","code":"zyj"},{"name":"Yongnan Zhuang","code":"zyn"},{"name":"Zyphe Chin","code":"zyp"},{"name":"Dimili","code":"zza"},{"name":"Dimli (macrolanguage)","code":"zza"},{"name":"Kirdki","code":"zza"},{"name":"Kirmanjki (macrolanguage)","code":"zza"},{"name":"Zaza","code":"zza"},{"name":"Zazaki","code":"zza"},{"name":"Zuojiang Zhuang","code":"zzj"}] \ No newline at end of file diff --git a/tests/__data__/input/data/regions.json b/tests/__data__/input/data/regions.json new file mode 100644 index 000000000..f0640a33a --- /dev/null +++ b/tests/__data__/input/data/regions.json @@ -0,0 +1 @@ +[{"name":"Africa","code":"AFR","countries":["AO","BF","BI","BJ","BW","CD","CF","CG","CI","CM","CV","DJ","DZ","EG","EH","ER","ET","GA","GH","GM","GN","GQ","GW","KE","KM","LR","LS","LY","MA","MG","ML","MR","MU","MW","MZ","NA","NE","NG","RE","RW","SC","SD","SH","SL","SN","SO","SS","ST","SZ","TD","TF","TG","TN","TZ","UG","YT","ZA","ZM","ZW"]},{"name":"Americas","code":"AMER","countries":["AG","AI","AR","AW","BB","BL","BM","BO","BR","BS","BV","BZ","CA","CL","CO","CR","CU","CW","DM","DO","EC","FK","GD","GF","GL","GP","GS","GT","GY","HN","HT","JM","KN","KY","LC","MF","MQ","MS","MX","NI","PA","PE","PM","PR","PY","SR","SV","SX","TC","TT","US","UY","VC","VE","VG","VI"]},{"name":"Arab world","code":"ARAB","countries":["AE","BH","DJ","DZ","EG","IQ","JO","KM","KW","LB","LY","MA","MR","OM","PS","QA","SA","SD","SO","SY","TN","YE"]},{"name":"Asia","code":"ASIA","countries":["AE","AF","AM","AZ","BD","BH","BN","BT","CN","CY","GE","ID","IL","IN","IQ","IR","JO","JP","KG","KH","KP","KR","KW","KZ","LA","LB","LK","MM","MN","MV","MY","NP","OM","PH","PK","PS","QA","RU","SA","SG","SY","TH","TJ","TL","TM","TR","TW","UZ","VN","YE"]},{"name":"Asia-Pacific","code":"APAC","countries":["AF","AS","AU","BD","BN","BT","CK","CN","FJ","FM","GU","ID","IN","JP","KH","KI","KP","KR","LA","LK","MH","MM","MN","MP","MV","MY","NC","NF","NP","NR","NU","NZ","PF","PG","PH","PK","PN","PW","SB","SG","TH","TK","TL","TO","TV","TW","VN","VU","WF","WS"]},{"name":"Caribbean","code":"CARIB","countries":["AG","AI","AW","BB","BL","BS","CU","CW","DM","DO","GD","GP","HT","JM","KN","KY","LC","MF","MQ","MS","PR","SX","TC","TT","VC","VG","VI"]},{"name":"Central Asia","code":"CAS","countries":["KG","KZ","TJ","TM","UZ"]},{"name":"Commonwealth of Independent States","code":"CIS","countries":["AM","AZ","BY","KG","KZ","MD","RU","TJ","UZ"]},{"name":"Europe","code":"EUR","countries":["AD","AL","AM","AT","AZ","BA","BE","BG","BY","CH","CY","CZ","DE","DK","EE","ES","FI","FR","GE","GR","HR","HU","IE","IS","IT","KZ","LI","LT","LU","LV","MC","MD","ME","MK","MT","NL","NO","PL","PT","RO","RS","RU","SE","SI","SK","SM","TR","UA","UK","VA"]},{"name":"Europe, the Middle East and Africa","code":"EMEA","countries":["AD","AE","AL","AM","AO","AT","AZ","BA","BE","BF","BG","BH","BI","BJ","BW","BY","CD","CF","CG","CH","CI","CM","CV","CY","CZ","DE","DJ","DK","DZ","EE","EG","EH","ER","ES","ET","FI","FR","GA","GE","GH","GM","GN","GQ","GR","GW","HR","HU","IE","IQ","IR","IS","IT","JO","KE","KM","KW","KZ","LB","LI","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MG","MK","ML","MR","MT","MU","MW","MZ","NA","NE","NG","NL","NO","OM","PL","PS","PT","QA","RE","RO","RS","RU","RW","SA","SC","SD","SE","SH","SI","SK","SL","SM","SN","SO","SS","ST","SY","SZ","TD","TF","TG","TN","TR","TZ","UA","UG","UK","VA","YE","YT","ZA","ZM","ZW"]},{"name":"Hispanic America","code":"HISPAM","countries":["AR","BO","CL","CO","CR","CU","DO","EC","GT","HN","MX","NI","PA","PE","PR","PY","SV","UY","VE"]},{"name":"Latin America","code":"LATAM","countries":["AR","BL","BO","BR","CL","CO","CR","CU","DO","EC","GF","GP","GT","HN","HT","MF","MQ","MX","NI","PA","PE","PR","PY","SV","UY","VE"]},{"name":"Latin America and the Caribbean","code":"LAC","countries":["AG","AI","AR","AW","BB","BL","BO","BR","BS","CL","CO","CR","CU","CW","DM","DO","EC","GD","GF","GP","GT","HN","HT","JM","KN","KY","LC","MF","MQ","MS","MX","NI","PA","PE","PR","PY","SV","SX","TC","TT","UY","VC","VE","VG","VI"]},{"name":"Maghreb","code":"MAGHREB","countries":["DZ","LY","MA","MR","TN"]},{"name":"Middle East","code":"MIDEAST","countries":["AE","BH","CY","EG","IL","IQ","IR","JO","KW","LB","OM","PS","QA","SA","SY","TR","YE"]},{"name":"Middle East and North Africa","code":"MENA","countries":["AE","BH","CY","DJ","DZ","EG","EH","IL","IQ","IR","JO","KW","LB","LY","MA","OM","PS","QA","SA","SD","SY","TN","TR","YE"]},{"name":"Nordics","code":"NORD","countries":["AX","DK","FO","FI","IS","NO","SE"]},{"name":"North America","code":"NORAM","countries":["AG","AI","AW","BB","BL","BM","BS","BZ","CA","CR","CU","CW","DM","DO","GD","GL","GP","GT","HN","HT","JM","KN","KY","LC","MF","MQ","MS","MX","NI","PA","PM","PR","SV","SX","TC","TT","US","VC","VG","VI"]},{"name":"Northern America","code":"NAM","countries":["BM","CA","GL","PM","US"]},{"name":"Oceania","code":"OCE","countries":["AS","AU","CK","FJ","FM","GU","KI","MH","MP","NC","NF","NR","NU","NZ","PF","PG","PN","PW","SB","TK","TO","TV","VU","WF","WS"]},{"name":"South Asia","code":"SAS","countries":["AF","BD","BT","IN","LK","MV","NP","PK"]},{"name":"Sub-Saharan Africa","code":"SSA","countries":["AO","BF","BI","BJ","BW","CD","CF","CG","CI","CM","CV","DJ","ER","ET","GA","GH","GM","GN","GQ","GW","KE","KM","LR","LS","MG","ML","MR","MU","MW","MZ","NA","NE","NG","RW","SC","SD","SL","SN","SO","SS","ST","SZ","TD","TG","TZ","UG","ZA","ZM","ZW"]},{"name":"West Africa","code":"WAFR","countries":["BF","BJ","CI","CV","GH","GM","GN","GW","LR","ML","MR","NE","NG","SH","SL","SN","TG"]},{"name":"Worldwide","code":"INT","countries":["AD","AE","AF","AG","AI","AL","AM","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BQ","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CW","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","UK","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","SS","ST","SV","SX","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","XK","YE","YT","ZA","ZM","ZW"]}] \ No newline at end of file From 8238e802d85a7fd1857d5aefc5c6875943dcc0e7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 12:05:34 +0300 Subject: [PATCH 116/157] Delete statuses.json --- scripts/core/api.js | 1 - scripts/data/.gitignore | 3 +-- scripts/data/statuses.json | 27 --------------------------- scripts/store/setters/status.js | 11 ----------- 4 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 scripts/data/statuses.json delete mode 100644 scripts/store/setters/status.js diff --git a/scripts/core/api.js b/scripts/core/api.js index 6d44a08b3..efd84c547 100644 --- a/scripts/core/api.js +++ b/scripts/core/api.js @@ -34,7 +34,6 @@ api.guides = new API(`${DATA_DIR}/guides.json`) api.categories = new API(`${DATA_DIR}/categories.json`) api.languages = new API(`${DATA_DIR}/languages.json`) api.regions = new API(`${DATA_DIR}/regions.json`) -api.statuses = new API(`${DATA_DIR}/statuses.json`) api.blocklist = new API(`${DATA_DIR}/blocklist.json`) module.exports = api diff --git a/scripts/data/.gitignore b/scripts/data/.gitignore index 743820606..6a1ce57ce 100644 --- a/scripts/data/.gitignore +++ b/scripts/data/.gitignore @@ -1,4 +1,3 @@ * !.gitignore -!blocklist.json -!statuses.json \ No newline at end of file +!blocklist.json \ No newline at end of file diff --git a/scripts/data/statuses.json b/scripts/data/statuses.json deleted file mode 100644 index 8e96c1409..000000000 --- a/scripts/data/statuses.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "online": { - "label": "", - "code": "online", - "level": 1 - }, - "geo_blocked": { - "label": "Geo-blocked", - "code": "geo_blocked", - "level": 2 - }, - "not_247": { - "label": "Not 24/7", - "code": "not_247", - "level": 3 - }, - "timeout": { - "label": "Timeout", - "code": "timeout", - "level": 4 - }, - "offline": { - "label": "Offline", - "code": "offline", - "level": 5 - } -} diff --git a/scripts/store/setters/status.js b/scripts/store/setters/status.js deleted file mode 100644 index 645272134..000000000 --- a/scripts/store/setters/status.js +++ /dev/null @@ -1,11 +0,0 @@ -const statuses = require('../../data/statuses') - -module.exports = function ({ title, status = {} }) { - if (title) { - const [_, label] = title.match(/\[(.*)\]/i) || [null, null] - - return Object.values(statuses).find(s => s.label === label) || statuses['online'] - } - - return status -} From d3f6b824bdc798d7030033e92557194918960626 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 13 Feb 2022 12:05:56 +0300 Subject: [PATCH 117/157] Delete extra setters --- scripts/store/setters/channel_id.js | 3 --- scripts/store/setters/channel_name.js | 10 ---------- scripts/store/setters/index.js | 5 ----- scripts/store/setters/is_broken.js | 7 ------- scripts/store/setters/resolution.js | 9 --------- 5 files changed, 34 deletions(-) delete mode 100644 scripts/store/setters/channel_id.js delete mode 100644 scripts/store/setters/channel_name.js delete mode 100644 scripts/store/setters/is_broken.js delete mode 100644 scripts/store/setters/resolution.js diff --git a/scripts/store/setters/channel_id.js b/scripts/store/setters/channel_id.js deleted file mode 100644 index dc3c27d28..000000000 --- a/scripts/store/setters/channel_id.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function ({ channel_id }) { - return channel_id || null -} diff --git a/scripts/store/setters/channel_name.js b/scripts/store/setters/channel_name.js deleted file mode 100644 index d56605337..000000000 --- a/scripts/store/setters/channel_name.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = function ({ title }) { - return title - .trim() - .split(' ') - .map(s => s.trim()) - .filter(s => { - return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) - }) - .join(' ') -} diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index 454bb19ca..fafc2088f 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -1,8 +1,3 @@ -exports.is_broken = require('./is_broken') -exports.resolution = require('./resolution') -exports.status = require('./status') exports.url = require('./url') -exports.channel_name = require('./channel_name') -exports.channel_id = require('./channel_id') exports.http_referrer = require('./http_referrer') exports.user_agent = require('./user_agent') diff --git a/scripts/store/setters/is_broken.js b/scripts/store/setters/is_broken.js deleted file mode 100644 index cf4cea231..000000000 --- a/scripts/store/setters/is_broken.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = function ({ is_broken = false, status }) { - if (status) { - return status.level > 3 ? true : false - } - - return is_broken -} diff --git a/scripts/store/setters/resolution.js b/scripts/store/setters/resolution.js deleted file mode 100644 index 1722e6aa2..000000000 --- a/scripts/store/setters/resolution.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = function ({ title, resolution = {} }) { - if (title) { - const [_, h] = title.match(/\((\d+)P\)/i) || [null, null] - - return h ? { height: parseInt(h), width: null } : resolution - } - - return resolution -} From 76f18168c464de1df0ff7f72b457259b9bf0af01 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 02:21:54 +0300 Subject: [PATCH 118/157] Update playlist/generate.js --- scripts/commands/playlist/generate.js | 3 ++- tests/__data__/input/database/playlist_generate.streams.db | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/commands/playlist/generate.js b/scripts/commands/playlist/generate.js index 35ef0c450..b2fe64c82 100644 --- a/scripts/commands/playlist/generate.js +++ b/scripts/commands/playlist/generate.js @@ -31,7 +31,8 @@ main() async function loadStreams() { await db.streams.load() - let streams = await db.streams.find({ status: { $in: ['online', 'timeout', 'blocked'] } }) + let streams = await db.streams.find({}) + streams = _.filter(streams, stream => stream.status !== 'error') streams = orderBy(streams, ['channel', 'height', 'url'], ['asc', 'desc', 'asc']) streams = _.uniqBy(streams, stream => stream.channel || _.uniqueId()) diff --git a/tests/__data__/input/database/playlist_generate.streams.db b/tests/__data__/input/database/playlist_generate.streams.db index ffb6efaf5..34b6f29b9 100644 --- a/tests/__data__/input/database/playlist_generate.streams.db +++ b/tests/__data__/input/database/playlist_generate.streams.db @@ -5,6 +5,7 @@ {"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} {"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF5"} {"title":"Tastemade","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPAB"} +{"title":"Supra","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://www.youtube.com/watch?v=dzShOMiH1FY","http_referrer":null,"user_agent":null,"status":"error","cluster_id":1,"_id":"2ST8btby3mmsg5AB"} {"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/channels/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF9"} {"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgP49"} {"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} From 6344531489b0b69c4b0b386796a16c64afbe817f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 02:34:24 +0300 Subject: [PATCH 119/157] Update playlist/update.js --- scripts/core/playlist.js | 86 +++++++++---------- tests/__data__/expected/channels/ad.m3u | 2 +- tests/__data__/expected/channels/ru.m3u | 2 +- tests/__data__/expected/channels/uk.m3u | 4 +- .../input/database/playlist_update.streams.db | 12 +-- 5 files changed, 52 insertions(+), 54 deletions(-) diff --git a/scripts/core/playlist.js b/scripts/core/playlist.js index ef8305da9..76287be58 100644 --- a/scripts/core/playlist.js +++ b/scripts/core/playlist.js @@ -4,16 +4,49 @@ const _ = require('lodash') const playlist = {} class Playlist { - constructor() { + constructor(items = [], options = {}) { + this.header = {} + if (options.public) { + let guides = items + .map(item => (item.guides.length ? item.guides[0].url : null)) + .filter(i => i) + this.header['x-tvg-url'] = _.uniq(guides).sort().join(',') + } + this.links = [] - } + for (const item of items) { + const stream = store.create(item) + + let attrs + if (options.public) { + attrs = { + 'tvg-id': stream.get('tvg_id'), + 'tvg-country': stream.get('tvg_country'), + 'tvg-language': stream.get('tvg_language'), + 'tvg-logo': stream.get('tvg_logo'), + 'user-agent': stream.get('http.user-agent') || undefined, + 'group-title': stream.get('group_title') + } + } else { + attrs = { + 'tvg-id': stream.get('tvg_id'), + status: stream.get('status'), + 'user-agent': stream.get('http.user-agent') || undefined + } + } - setHeader(attrs = {}) { - this.header = attrs - } + const vlcOpts = { + 'http-referrer': stream.get('http.referrer') || undefined, + 'http-user-agent': stream.get('http.user-agent') || undefined + } - add(url, title, attrs, vlcOpts) { - this.links.push({ url, title, attrs, vlcOpts }) + this.links.push({ + url: stream.get('url'), + title: stream.get('title'), + attrs, + vlcOpts + }) + } } toString() { @@ -48,43 +81,8 @@ class Playlist { } } -playlist.create = function (items = [], options = {}) { - const p = new Playlist() - - const header = {} - if (options.public) { - let guides = items.map(item => (item.guides.length ? item.guides[0].url : null)).filter(i => i) - header['x-tvg-url'] = _.uniq(guides).sort().join(',') - } - p.setHeader(header) - - for (const item of items) { - const stream = store.create(item) - - let attrs - if (options.public) { - attrs = { - 'tvg-id': stream.get('tvg_id'), - 'tvg-country': stream.get('tvg_country'), - 'tvg-language': stream.get('tvg_language'), - 'tvg-logo': stream.get('tvg_logo'), - 'user-agent': stream.get('http.user-agent') || undefined, - 'group-title': stream.get('group_title') - } - } else { - attrs = { - 'tvg-id': stream.get('tvg_id'), - 'user-agent': stream.get('http.user-agent') || undefined - } - } - - p.add(stream.get('url'), stream.get('title'), attrs, { - 'http-referrer': stream.get('http.referrer') || undefined, - 'http-user-agent': stream.get('http.user-agent') || undefined - }) - } - - return p +playlist.create = function (items, options) { + return new Playlist(items, options) } module.exports = playlist diff --git a/tests/__data__/expected/channels/ad.m3u b/tests/__data__/expected/channels/ad.m3u index 9289a76bd..825c8e3b9 100644 --- a/tests/__data__/expected/channels/ad.m3u +++ b/tests/__data__/expected/channels/ad.m3u @@ -1,3 +1,3 @@ #EXTM3U -#EXTINF:-1 tvg-id="AndorraTV.ad",ATV (720p) [Offline] +#EXTINF:-1 tvg-id="AndorraTV.ad" status="timeout",ATV (720p) [Offline] https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/tests/__data__/expected/channels/ru.m3u b/tests/__data__/expected/channels/ru.m3u index d463313f3..b1b3d39ab 100644 --- a/tests/__data__/expected/channels/ru.m3u +++ b/tests/__data__/expected/channels/ru.m3u @@ -1,3 +1,3 @@ #EXTM3U -#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (1080p) +#EXTINF:-1 tvg-id="LDPRTV.ru" status="online",ЛДПР ТВ (1080p) http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 diff --git a/tests/__data__/expected/channels/uk.m3u b/tests/__data__/expected/channels/uk.m3u index 6bd67a0d7..cb264af93 100644 --- a/tests/__data__/expected/channels/uk.m3u +++ b/tests/__data__/expected/channels/uk.m3u @@ -1,5 +1,5 @@ #EXTM3U -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (480p) [Geo-blocked] +#EXTINF:-1 tvg-id="BBCNews.uk" status="online",BBC News HD (480p) [Geo-blocked] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="BBCNews.uk" status="error",BBC News HD (720p) [Not 24/7] http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 diff --git a/tests/__data__/input/database/playlist_update.streams.db b/tests/__data__/input/database/playlist_update.streams.db index b5fde3087..ccdc8e645 100644 --- a/tests/__data__/input/database/playlist_update.streams.db +++ b/tests/__data__/input/database/playlist_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD (720p) [Not 24/7]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV (720p) [Offline]","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD (480p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":480,"width":640,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"cluster_id":1,"status":"online","_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Not 24/7]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":3,"status":"error","_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV (720p) [Offline]","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"timeout","_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD (480p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":480,"width":640,"cluster_id":3,"status":"online","_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"blocked","_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"online","_id":"u7iyA6cjtf1iWWAZ"} From 37b77a7d62e5284f9f7d000c57f4666698551855 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 02:39:46 +0300 Subject: [PATCH 120/157] Delete database/cleanup.js --- .github/workflows/cleanup.yml | 39 ------------------- package.json | 1 - scripts/commands/database/cleanup.js | 25 ------------ .../expected/database/db_cleanup.streams.db | 5 --- .../input/database/db_cleanup.streams.db | 6 --- tests/commands/database/cleanup.test.js | 34 ---------------- 6 files changed, 110 deletions(-) delete mode 100644 .github/workflows/cleanup.yml delete mode 100644 scripts/commands/database/cleanup.js delete mode 100644 tests/__data__/expected/database/db_cleanup.streams.db delete mode 100644 tests/__data__/input/database/db_cleanup.streams.db delete mode 100644 tests/commands/database/cleanup.test.js diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml deleted file mode 100644 index ff86dc62a..000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: cleanup -on: - workflow_dispatch: -jobs: - cleanup: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: echo "::set-output name=branch_name::$(date +'bot/cleanup-%s')" - id: create-branch-name - - run: | - git config user.name 'iptv-bot[bot]' - git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' - - run: git checkout -b ${{ steps.create-branch-name.outputs.branch_name }} - - run: npm install - - run: node scripts/commands/create-database.js - - run: node scripts/commands/cleanup-database.js - - run: node scripts/commands/update-playlists.js - - run: | - git add channels/* - git commit -m "[Bot] Update playlists" - - uses: tibdex/github-app-token@v1 - if: ${{ !env.ACT }} - id: create-app-token - with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} - - uses: repo-sync/pull-request@v2 - if: ${{ github.ref == 'refs/heads/master' }} - id: pull-request - with: - github_token: ${{ steps.create-app-token.outputs.token }} - source_branch: ${{ steps.create-branch-name.outputs.branch_name }} - destination_branch: 'master' - pr_title: '[Bot] Remove broken links' - pr_body: | - This pull request is created by [cleanup][1] workflow. - - [1]: https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }} diff --git a/package.json b/package.json index d349271dc..342480489 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,6 @@ "db:matrix": "node scripts/commands/database/matrix.js", "db:update": "node scripts/commands/database/update.js", "db:export": "node scripts/commands/database/export.js", - "db:cleanup": "node scripts/commands/database/cleanup.js", "cluster:load": "node scripts/commands/cluster/load.js", "playlist:validate": "node scripts/commands/playlist/validate.js", "playlist:generate": "node scripts/commands/playlist/generate.js", diff --git a/scripts/commands/database/cleanup.js b/scripts/commands/database/cleanup.js deleted file mode 100644 index cb527a3ad..000000000 --- a/scripts/commands/database/cleanup.js +++ /dev/null @@ -1,25 +0,0 @@ -const { db, logger } = require('../../core') -const _ = require('lodash') - -async function main() { - logger.info(`loading streams...`) - await db.streams.load() - let streams = await db.streams.find({}) - - logger.info(`removing broken links...`) - let removed = 0 - const failed = _.filter(streams, { status: 'error' }) - for (const stream of failed) { - const hasDuplicate = _.find(streams, s => s.channel === stream.channel && s.status !== 'error') - if (hasDuplicate) { - await db.streams.remove({ _id: stream._id }) - removed++ - } - } - - db.streams.compact() - - logger.info(`removed ${removed} links`) -} - -main() diff --git a/tests/__data__/expected/database/db_cleanup.streams.db b/tests/__data__/expected/database/db_cleanup.streams.db deleted file mode 100644 index 9dac2dd73..000000000 --- a/tests/__data__/expected/database/db_cleanup.streams.db +++ /dev/null @@ -1,5 +0,0 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"blocked","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"status":"timeout","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/database/db_cleanup.streams.db b/tests/__data__/input/database/db_cleanup.streams.db deleted file mode 100644 index 492f66757..000000000 --- a/tests/__data__/input/database/db_cleanup.streams.db +++ /dev/null @@ -1,6 +0,0 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"status":"error","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"blocked","cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"status":"timeout","cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/commands/database/cleanup.test.js b/tests/commands/database/cleanup.test.js deleted file mode 100644 index e4f8948ce..000000000 --- a/tests/commands/database/cleanup.test.js +++ /dev/null @@ -1,34 +0,0 @@ -const { execSync } = require('child_process') -const fs = require('fs-extra') -const path = require('path') - -beforeEach(() => { - fs.emptyDirSync('tests/__data__/output') - fs.copyFileSync( - 'tests/__data__/input/database/db_cleanup.streams.db', - 'tests/__data__/output/streams.db' - ) - - const stdout = execSync('DB_DIR=tests/__data__/output npm run db:cleanup', { - encoding: 'utf8' - }) -}) - -it('can remove broken links from database', () => { - expect(content('tests/__data__/output/streams.db')).toEqual( - content('tests/__data__/expected/database/db_cleanup.streams.db') - ) -}) - -function content(filepath) { - const data = fs.readFileSync(path.resolve(filepath), { - encoding: 'utf8' - }) - - return data - .split('\n') - .filter(l => l) - .map(l => { - return JSON.parse(l) - }) -} From 682824a45dfcb6125cc6cdbe87eae58dd3844caf Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 02:48:11 +0300 Subject: [PATCH 121/157] Update database/create.js --- scripts/commands/database/create.js | 27 ++++++++++++++------------- scripts/store/setters/channel.js | 3 +++ scripts/store/setters/index.js | 1 + 3 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 scripts/store/setters/channel.js diff --git a/scripts/commands/database/create.js b/scripts/commands/database/create.js index e4095db97..e0cfb6ec5 100644 --- a/scripts/commands/database/create.js +++ b/scripts/commands/database/create.js @@ -30,13 +30,24 @@ async function findStreams() { await api.channels.load() await db.streams.load() - const files = await file.list(`${options.inputDir}/**/*.m3u`) const streams = [] + const files = await file.list(`${options.inputDir}/**/*.m3u`) for (const filepath of files) { const items = await parser.parsePlaylist(filepath) for (const item of items) { item.filepath = filepath - streams.push(item) + + const stream = store.create() + const channel = await api.channels.find({ id: item.tvg.id }) + + stream.set('channel', { channel: channel ? channel.id : null }) + stream.set('title', { title: item.name }) + stream.set('filepath', { filepath: item.filepath }) + stream.set('url', { url: item.url }) + stream.set('http_referrer', { http_referrer: item.http.referrer }) + stream.set('user_agent', { user_agent: item.http['user-agent'] }) + + streams.push(stream) } } logger.info(`found ${streams.length} streams`) @@ -50,17 +61,7 @@ async function saveToDatabase(streams = []) { await db.streams.reset() const chunks = split(_.shuffle(streams), options.maxClusters) for (const [i, chunk] of chunks.entries()) { - for (const item of chunk) { - const stream = store.create() - const channel = await api.channels.find({ id: item.tvg.id }) - const channel_id = channel ? channel.id : null - - stream.set('channel', { channel: channel_id }) - stream.set('title', { title: item.name }) - stream.set('filepath', { filepath: item.filepath }) - stream.set('url', { url: item.url }) - stream.set('http_referrer', { http_referrer: item.http.referrer }) - stream.set('user_agent', { user_agent: item.http['user-agent'] }) + for (const stream of chunk) { stream.set('cluster_id', { cluster_id: i + 1 }) await db.streams.insert(stream.data()) diff --git a/scripts/store/setters/channel.js b/scripts/store/setters/channel.js new file mode 100644 index 000000000..5d9c3ea3c --- /dev/null +++ b/scripts/store/setters/channel.js @@ -0,0 +1,3 @@ +module.exports = function ({ channel }) { + return channel || null +} diff --git a/scripts/store/setters/index.js b/scripts/store/setters/index.js index fafc2088f..ff02bcce3 100644 --- a/scripts/store/setters/index.js +++ b/scripts/store/setters/index.js @@ -1,3 +1,4 @@ exports.url = require('./url') exports.http_referrer = require('./http_referrer') exports.user_agent = require('./user_agent') +exports.channel = require('./channel') From bb8baf348a047d9dc2591ba71ad0091758319d99 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 03:17:29 +0300 Subject: [PATCH 122/157] Update database/update.js --- scripts/commands/database/update.js | 113 ++++++++---------- .../input/database/db_update.streams.db | 1 + tests/commands/database/update.test.js | 19 ++- 3 files changed, 70 insertions(+), 63 deletions(-) diff --git a/scripts/commands/database/update.js b/scripts/commands/database/update.js index 6000e9b0f..a8a76c810 100644 --- a/scripts/commands/database/update.js +++ b/scripts/commands/database/update.js @@ -1,21 +1,63 @@ const { db, store, parser, file, logger } = require('../../core') const _ = require('lodash') -const items = [] - const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs/cluster/load' async function main() { - let streams = await loadStreams() + const streams = await loadStreams() const results = await loadResults() - const origins = await findOrigins(results) - streams = await updateStreams(streams, results, origins) + const origins = await loadOrigins(results) - await updateDatabase(streams) + await updateStreams(streams, results, origins) } main() +async function updateStreams(items = [], results = {}, origins = {}) { + logger.info('updating streams...') + + let buffer = {} + let updated = 0 + let removed = 0 + for (const item of items) { + const stream = store.create(item) + const result = results[item._id] + if (result) { + const status = parseStatus(result.error) + stream.set('status', { status }) + + if (result.streams.length) { + const { width, height, bitrate } = parseMediaInfo(result.streams) + stream.set('width', { width }) + stream.set('height', { height }) + stream.set('bitrate', { bitrate }) + } + + if (result.requests.length) { + const origin = findOrigin(result.requests, origins) + if (origin) { + stream.set('url', { url: origin }) + } + } + } + + if (buffer[stream.get('url')]) { + await db.streams.remove({ _id: stream.get('_id') }) + removed++ + } else if (stream.changed) { + await db.streams.update({ _id: stream.get('_id') }, stream.data()) + buffer[stream.get('url')] = true + updated++ + } + } + + db.streams.compact() + + logger.info(`updated ${updated} streams`) + logger.info(`removed ${removed} duplicates`) + logger.info('done') +} + async function loadStreams() { logger.info('loading streams...') @@ -28,7 +70,7 @@ async function loadStreams() { } async function loadResults() { - logger.info('loading results from logs...') + logger.info('loading check results...') const results = {} const files = await file.list(`${LOGS_DIR}/cluster_*.log`) @@ -44,8 +86,8 @@ async function loadResults() { return results } -async function findOrigins(results = {}) { - logger.info('searching for stream origins...') +async function loadOrigins(results = {}) { + logger.info('loading origins...') const origins = {} for (const { error, requests } of Object.values(results)) { @@ -67,57 +109,6 @@ async function findOrigins(results = {}) { return origins } -async function updateStreams(items = [], results = {}, origins = {}) { - logger.info('updating streams...') - - let updated = 0 - const output = [] - for (const item of items) { - const stream = store.create(item) - - const result = results[item._id] - if (result) { - const { error, streams, requests } = result - - const status = parseStatus(error) - stream.set('status', { status }) - - if (streams.length) { - const { width, height, bitrate } = parseStreams(streams) - stream.set('width', { width }) - stream.set('height', { height }) - stream.set('bitrate', { bitrate }) - } - - if (requests.length) { - const origin = findOrigin(requests, origins) - if (origin) { - stream.set('url', { url: origin }) - } - } - } - - if (stream.changed) updated++ - - output.push(stream.data()) - } - - logger.info(`updated ${updated} streams`) - - return output -} - -async function updateDatabase(streams = []) { - logger.info('saving to database...') - - for (const stream of streams) { - await db.streams.update({ _id: stream._id }, stream) - } - db.streams.compact() - - logger.info('done') -} - function findOrigin(requests = [], origins = {}) { if (origins && Array.isArray(requests)) { requests = requests.map(r => r.url.replace(/(^\w+:|^)/, '')) @@ -131,7 +122,7 @@ function findOrigin(requests = [], origins = {}) { return null } -function parseStreams(streams) { +function parseMediaInfo(streams) { streams = streams.filter(s => s.codec_type === 'video') streams = _.orderBy( streams, diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db index ee46f1d6e..a9d7a1e71 100644 --- a/tests/__data__/input/database/db_update.streams.db +++ b/tests/__data__/input/database/db_update.streams.db @@ -4,3 +4,4 @@ {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} {"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} {"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"ABC","channel":"ABC.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCI3n"} diff --git a/tests/commands/database/update.test.js b/tests/commands/database/update.test.js index 6256a471c..3701dbaa1 100644 --- a/tests/commands/database/update.test.js +++ b/tests/commands/database/update.test.js @@ -8,14 +8,29 @@ beforeEach(() => { 'tests/__data__/input/database/db_update.streams.db', 'tests/__data__/output/streams.db' ) +}) +it('can save results', () => { const stdout = execSync( 'DB_DIR=tests/__data__/output LOGS_DIR=tests/__data__/input/logs/cluster/load npm run db:update', { encoding: 'utf8' } ) -}) + expect(stdout).toEqual(` +> db:update +> node scripts/commands/database/update.js + +loading streams... +found 7 streams +loading check results... +found 6 results +loading origins... +found 2 origins +updating streams... +updated 6 streams +removed 1 duplicates +done +`) -it('can save results', () => { expect(content('tests/__data__/output/streams.db')).toEqual( content('tests/__data__/expected/database/db_update.streams.db') ) From bf03dae463214752fe54e64aede9286b29deec57 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 12:00:05 +0300 Subject: [PATCH 123/157] Update playlist/validate.js --- .github/workflows/auto-update.yml | 5 +- .github/workflows/check.yml | 5 + scripts/commands/playlist/validate.js | 50 +- scripts/core/blocklist.js | 18 - scripts/core/id.js | 26 +- scripts/core/index.js | 1 - scripts/core/parser.js | 19 - scripts/data/.gitignore | 3 +- scripts/data/blocklist.json | 657 +------------------ tests/__data__/input/channels/us_blocked.m3u | 6 +- tests/__data__/input/data/blocklist.json | 645 +----------------- tests/__data__/input/data/channels.json | 85 +++ tests/commands/playlist/validate.test.js | 12 +- 13 files changed, 154 insertions(+), 1378 deletions(-) delete mode 100644 scripts/core/blocklist.js diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 8ed50eca2..21dcc633b 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -16,12 +16,13 @@ jobs: - name: Download data from API run: | mkdir -p scripts/data - curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json + curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json curl -L -o scripts/data/categories.json https://iptv-org.github.io/api/categories.json + curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json curl -L -o scripts/data/countries.json https://iptv-org.github.io/api/countries.json + curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.json curl -L -o scripts/data/languages.json https://iptv-org.github.io/api/languages.json curl -L -o scripts/data/regions.json https://iptv-org.github.io/api/regions.json - curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.json - uses: actions/upload-artifact@v2 with: name: data diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6792edc05..e1471d3b6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,6 +13,11 @@ jobs: with: node-version: '14' cache: 'npm' + - name: Download data from API + run: | + mkdir -p scripts/data + curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json + curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json - run: npm install - run: npm run lint - run: npm run validate diff --git a/scripts/commands/playlist/validate.js b/scripts/commands/playlist/validate.js index 825ea969a..2a06eff95 100644 --- a/scripts/commands/playlist/validate.js +++ b/scripts/commands/playlist/validate.js @@ -1,37 +1,57 @@ -const { file, logger, api, parser, blocklist } = require('../../core') +const { file, logger, api, parser, id } = require('../../core') const { program } = require('commander') const chalk = require('chalk') +const _ = require('lodash') -program.argument('', 'Path to file to validate').parse(process.argv) +program.argument('[filepath]', 'Path to file to validate').parse(process.argv) async function main() { + const files = program.args.length ? program.args : await file.list('channels/*.m3u') + + logger.info(`loading blocklist...`) await api.channels.load() + await api.blocklist.load() + + let blocklist = await api.blocklist.all() + blocklist = blocklist + .map(blocked => { + const channel = api.channels.find({ id: blocked.channel }) + if (!channel) return null + return { ...blocked, name: channel.name } + }) + .filter(i => i) + logger.info(`found ${blocklist.length} records`) let errors = [] let warnings = [] - for (const filepath of program.args) { + for (const filepath of files) { if (!filepath.endsWith('.m3u')) continue const basename = file.basename(filepath) - const [_, countryCode] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null] + const [__, country] = basename.match(/([a-z]{2})(|_.*)\.m3u/i) || [null, null] const fileLog = [] - const streams = await parser.parsePlaylist(filepath) - for (const stream of streams) { - const found = blocklist.find(stream.name, countryCode.toUpperCase()) - if (found) { + const items = await parser.parsePlaylist(filepath) + for (const item of items) { + if (item.tvg.id && !api.channels.find({ id: item.tvg.id })) { fileLog.push({ - type: 'error', - line: stream.line, - message: `"${found.name}" is on the blocklist due to claims of copyright holders (${found.reference})` + type: 'warning', + line: item.line, + message: `"${item.tvg.id}" is not in the database` }) } - if (stream.tvg.id && !api.channels.find({ id: stream.tvg.id })) { + const channel_id = id.generate(item.name, country) + const found = blocklist.find( + blocked => + item.tvg.id.toLowerCase() === blocked.channel.toLowerCase() || + channel_id.toLowerCase() === blocked.channel.toLowerCase() + ) + if (found) { fileLog.push({ - type: 'warning', - line: stream.line, - message: `"${stream.tvg.id}" is not in the database` + type: 'error', + line: item.line, + message: `"${found.name}" is on the blocklist due to claims of copyright holders (${found.ref})` }) } } diff --git a/scripts/core/blocklist.js b/scripts/core/blocklist.js deleted file mode 100644 index ab2502c39..000000000 --- a/scripts/core/blocklist.js +++ /dev/null @@ -1,18 +0,0 @@ -const list = require('../data/blocklist') -const parser = require('./parser') - -const blocklist = {} - -blocklist.find = function (title, country) { - const name = parser.parseChannelName(title) - - return list.find(item => { - const regexp = new RegExp(item.regex, 'i') - const hasSameName = regexp.test(name) - const fromSameCountry = country === item.country - - return hasSameName && fromSameCountry - }) -} - -module.exports = blocklist diff --git a/scripts/core/id.js b/scripts/core/id.js index 0c21a7b9d..9fb7fd7e7 100644 --- a/scripts/core/id.js +++ b/scripts/core/id.js @@ -1,23 +1,19 @@ -const file = require('./file') -const parser = require('./parser') -const transliteration = require('transliteration') +const { transliterate } = require('transliteration') const id = {} -id.generate = function (title, filepath) { - const name = parser.parseChannelName(title) - const code = parser.parseCountryCode(filepath) +id.generate = function (name, code) { + if (!name || !code) return null - if (name && code) { - const slug = transliteration - .transliterate(name) - .replace(/\+/gi, 'Plus') - .replace(/[^a-z\d]+/gi, '') + name = name.replace(/ *\([^)]*\) */g, '') + name = name.replace(/ *\[[^)]*\] */g, '') + name = name.replace(/\+/gi, 'Plus') + name = name.replace(/[^a-z\d]+/gi, '') + name = name.trim() + name = transliterate(name) + code = code.toLowerCase() - return `${slug}.${code.toLowerCase()}` - } - - return null + return `${name}.${code}` } module.exports = id diff --git a/scripts/core/index.js b/scripts/core/index.js index ebb274394..e8e88ffd0 100644 --- a/scripts/core/index.js +++ b/scripts/core/index.js @@ -10,4 +10,3 @@ exports.store = require('./store') exports.markdown = require('./markdown') exports.api = require('./api') exports.id = require('./id') -exports.blocklist = require('./blocklist') diff --git a/scripts/core/parser.js b/scripts/core/parser.js index 531a93a3b..b54fd8f5a 100644 --- a/scripts/core/parser.js +++ b/scripts/core/parser.js @@ -28,23 +28,4 @@ parser.parseNumber = function (string) { return parsed } -parser.parseChannelName = function (string) { - return string - .trim() - .split(' ') - .map(s => s.trim()) - .filter(s => { - return !/\[|\]/i.test(s) && !/\((\d+)P\)/i.test(s) - }) - .join(' ') -} - -parser.parseCountryCode = function (filepath) { - if (!filepath) return null - const basename = file.basename(filepath) - const [_, code] = basename.match(/^([a-z]{2})(_|\.)/) || [null, null] - - return code -} - module.exports = parser diff --git a/scripts/data/.gitignore b/scripts/data/.gitignore index 6a1ce57ce..a3a0c8b5f 100644 --- a/scripts/data/.gitignore +++ b/scripts/data/.gitignore @@ -1,3 +1,2 @@ * -!.gitignore -!blocklist.json \ No newline at end of file +!.gitignore \ No newline at end of file diff --git a/scripts/data/blocklist.json b/scripts/data/blocklist.json index 6d1722d46..35d50e279 100644 --- a/scripts/data/blocklist.json +++ b/scripts/data/blocklist.json @@ -1,656 +1 @@ -[ - { - "name": "Animal Planet", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Animal Planet\\b" - }, - { - "name": "Arena 4", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Arena( |)4\\b" - }, - { - "name": "Asian Food Network", - "country": "SG", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Asian Food Network\\b" - }, - { - "name": "Astro SuperSport", - "country": "MY", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Astro SuperSport\\b" - }, - { - "name": "Azteca 7", - "country": "MX", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Azteca 7\\b" - }, - { - "name": "beIN Sports", - "country": "QA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^beIN Sports\\b" - }, - { - "name": "Canal+ Sport", - "country": "FR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Canal( |)+ Sport\\b" - }, - { - "name": "Cooking Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Cooking Channel\\b" - }, - { - "name": "DAZN", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^DAZN($| [1-4] .*)\\b" - }, - { - "name": "Diema Sport", - "country": "BG", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Diema Sport\\b" - }, - { - "name": "Digi Sport", - "country": "RO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Digi Sport\\b" - }, - { - "name": "Discovery Asia", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Asia\\b" - }, - { - "name": "Discovery Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Channel\\b" - }, - { - "name": "Discovery Civiliztion", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Civiliztion\\b" - }, - { - "name": "Discovery en Espanol", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery en Espanol\\b" - }, - { - "name": "Discovery Family", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Family\\b" - }, - { - "name": "Discovery Historia", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Historia\\b" - }, - { - "name": "Discovery History", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery History\\b" - }, - { - "name": "Discovery Home and Health", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Home and Health\\b" - }, - { - "name": "Discovery Life", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Life\\b" - }, - { - "name": "Discovery Science", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Science\\b" - }, - { - "name": "Discovery Shed", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Shed\\b" - }, - { - "name": "Discovery Theater", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Theater\\b" - }, - { - "name": "Discovery Travel and Living", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Travel and Living\\b" - }, - { - "name": "Discovery Turbo Xtra", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Turbo Xtra\\b" - }, - { - "name": "Discovery World", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery World\\b" - }, - { - "name": "Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery\\b" - }, - { - "name": "DIY Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DIY Network\\b" - }, - { - "name": "DKiss", - "country": "ES", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DKiss\\b" - }, - { - "name": "DMax", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DMax\\b" - }, - { - "name": "Eleven Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Eleven Sports($| [1-6] .*)\\b" - }, - { - "name": "ESPN", - "country": "US", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^ESPN($|[1-3]| .*)\\b" - }, - { - "name": "Eurosport", - "country": "FR", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Eurosport($| [1-2])\\b" - }, - { - "name": "eve", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^eve\\b" - }, - { - "name": "Familia Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Familia Discovery\\b" - }, - { - "name": "Fatafeat", - "country": "EG", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Fatafeat\\b" - }, - { - "name": "FEM", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^FEM\\b" - }, - { - "name": "Fine Living", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Fine Living\\b" - }, - { - "name": "Flow Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Flow Sports\\b" - }, - { - "name": "Focus", - "country": "IT", - "reference": "https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf", - "regex": "^Focus\\b" - }, - { - "name": "Food Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Food Network\\b" - }, - { - "name": "food tv", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^food( |)tv\\b" - }, - { - "name": "Fox Sports", - "country": "US", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Fox Sports\\b" - }, - { - "name": "Frisbee", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Frisbee\\b" - }, - { - "name": "Futbol", - "country": "TJ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Futbol|Football TV|ТВ Футбол|Футбол)\\b" - }, - { - "name": "GTV Sports", - "country": "GH", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^GTV Sports\\b" - }, - { - "name": "Giallo", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Giallo\\b" - }, - { - "name": "GolfTV", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Golf( |)TV\\b" - }, - { - "name": "HGTV", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^HGTV\\b" - }, - { - "name": "Investigation Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^(Investigation Discovery|ID Investigation Discovery|ID Investigation|ID)\\b" - }, - { - "name": "K2", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^K2\\b" - }, - { - "name": "Living Channel", - "country": "NZ", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Living Channel\\b" - }, - { - "name": "Local Now", - "country": "US", - "reference": "https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf", - "regex": "^Local( |)Now" - }, - { - "name": "LookSport", - "country": "RO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Look( |)Sport\\b" - }, - { - "name": "Magnolia Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/5994", - "regex": "^Magnolia( |)Network\\b" - }, - { - "name": "Mango", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Mango\\b" - }, - { - "name": "Match!", - "country": "RU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Match|Матч)\\b" - }, - { - "name": "Motortrend", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Motortrend\\b" - }, - { - "name": "Motor trend", - "country": "IT", - "reference": "https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf", - "regex": "^Motor trend\\b" - }, - { - "name": "Mola TV", - "country": "ID", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Mola TV($| .*)\\b" - }, - { - "name": "Movistar Liga de Campeones", - "country": "ES", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Movistar Liga de Campeones [1-8]\\b" - }, - { - "name": "Nova Sport", - "country": "CZ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Nova Sport [1-3]\\b" - }, - { - "name": "Nova Sports", - "country": "GR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Nova Sports [1-6]\\b" - }, - { - "name": "Nove", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Nove($| .*)\\b" - }, - { - "name": "PPTV HD 36", - "country": "TH", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^PPTV($| HD)\\b" - }, - { - "name": "One", - "country": "IL", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^One\\b" - }, - { - "name": "OWN", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^(OWN|Oprah)\\b" - }, - { - "name": "Quest Red", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Quest Red\\b" - }, - { - "name": "Quest", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Quest\\b" - }, - { - "name": "Real Time", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Real Time\\b" - }, - { - "name": "SABC Sport ", - "country": "ZA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SABC Sport\\b" - }, - { - "name": "Setanta Sports", - "country": "IE", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Setanta Sports($| .*)\\b" - }, - { - "name": "Sky Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sky Sports\\b" - }, - { - "name": "Sky Sport Bundesliga", - "country": "DE", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sky Sport Bundesliga [0-9]+\\b" - }, - { - "name": "Sky TG24", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/pull/2294", - "regex": "^Sky TG24\\b" - }, - { - "name": "Sony Ten", - "country": "IN", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sony Ten [1-4]\\b" - }, - { - "name": "Spíler TV", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Spíler( |[1-2] )TV\\b" - }, - { - "name": "Šport TV", - "country": "SI", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Šport|Sport) TV\\b" - }, - { - "name": "Sport Klub", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Sport Klub|SK[1-9])\\b" - }, - { - "name": "SportsNet", - "country": "CA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SportsNet\\b" - }, - { - "name": "StarHub TV", - "country": "SG", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarHub TV\\b" - }, - { - "name": "StarSat", - "country": "ZA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarSat\\b" - }, - { - "name": "StarTimes TV", - "country": "MZ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarTimes TV\\b" - }, - { - "name": "SuperSport", - "country": "AL", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SuperSport [1-7]\\b" - }, - { - "name": "Tivibu Spor", - "country": "TR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Tivibu Spor\\b" - }, - { - "name": "TLC", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TLC\\b" - }, - { - "name": "Trvl Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Trvl Channel\\b" - }, - { - "name": "TSN", - "country": "MT", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^TSN\\b" - }, - { - "name": "TTV", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TTV\\b" - }, - { - "name": "TV Norge", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TV Norge\\b" - }, - { - "name": "TV Varzish", - "country": "TJ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(TV Varzish|Varzish TV|Варзиш ТВ)\\b" - }, - { - "name": "TV3 Sport", - "country": "DK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^TV( |)3 Sport\\b" - }, - { - "name": "tvN Asia", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^tvN($| Asia)\\b" - }, - { - "name": "Tvn 24 Bis", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Tvn(| )24 Bis\\b" - }, - { - "name": "TVN 24", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN 24\\b" - }, - { - "name": "Tvn 7", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Tvn 7\\b" - }, - { - "name": "TVN Extra", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Extra\\b" - }, - { - "name": "TVN Fabula", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Fabula\\b" - }, - { - "name": "TVN Meteo", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Meteo\\b" - }, - { - "name": "TVN Style", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Style\\b" - }, - { - "name": "TVN Turbo", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Turbo\\b" - }, - { - "name": "TVN Warszawa", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Warszawa\\b" - }, - { - "name": "TVN", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN\\b" - }, - { - "name": "V Sport", - "country": "NO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^V Sport\\b" - }, - { - "name": "Vox", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Vox\\b" - }, - { - "name": "VTV Cab", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^VTV( |)Cab\\b" - }, - { - "name": "World Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^World Discovery\\b" - }, - { - "name": "Xee", - "country": "DK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Xee\\b" - }, - { - "name": "XtvN", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^X( |)tvN\\b" - } -] +[{"channel":"FoxSports1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Arena4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AsianFoodNetwork.sg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AstroSuperSport.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport2.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport3.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport4.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Coahuila.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7MexicoCity.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7NuevoLeon.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Tamaulipas.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports7.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports8.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsCanada.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsenEspanol.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsHaber.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax10France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax7France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax8France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax9France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMaxMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsNews.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsUSA.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport1.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport5.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportFrance.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportPolska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportReunion.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportsMyanmar.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CookingChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"CookingChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DAZN1Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Italia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1PlusItalia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN3Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN4Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport2.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport3.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport4Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiscoveryAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAtlanticoSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBulgaria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCentralEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChinaHotels.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFinland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIberia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItaliaPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSrbija.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryCivilization.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryenEspanol.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamily.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilyAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistory.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoryPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsColombia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifeChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScience.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceMiddleEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoverySciencePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTheater.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryUltra.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryVelocity.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryWorldBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkUSA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DKiss.es","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ElevenProLeague1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenProLeague1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Taiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports5Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports6Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSportsUSA.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenTaiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Africa.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Alternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Australia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Caribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Colombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2US.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Venezuela.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2West.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Norte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN4Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAfrica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBasesLoaded.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBuzzerBeater.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCaribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicCanada.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicUSA.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra3.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra4.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra5.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra6.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra7.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra8.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDeportes.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDos.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDosMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNGoalLine.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNInternational.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNmosaico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPacificRim.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPlus.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPolo.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNU.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUS.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUSAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Eurosport1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Finland.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Germany.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Nordic.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Norge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2NorthEast.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Xtra.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD5.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD6.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD7.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD8.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD9.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport4K.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportAsia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportIndia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportNorge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eve.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Fatafeat.eg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FEM.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FlowSports.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Focus.it","ref":"https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf"},{"channel":"FoodNetworkAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEMEA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodTV.kr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoxSports1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports1Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Malaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports503.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports505.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports506.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsArgentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsAsia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsColombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoNorte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoSur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsHDLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMalaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMore.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsChannel.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPhilippines.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPremium.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsRacing.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsVietnam.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Frisbee.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Futbol.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Giallo.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GolfTV.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GTVSportsPlus.gh","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"HGTVArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVSouthAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNEurope.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNExtra.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNUSA.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"K2.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"KDOCDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KOFYDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KUBEDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"LivingChannel.nz","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"LookSport.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport2.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport3.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSportPlus.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MagnoliaNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"MagnoliaNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"Match.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchArena.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol1.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol2.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol3.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchIgra.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPlaneta.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPremier.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchStrana.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV1.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV2.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MotorTrend.it","ref":"https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf"},{"channel":"Motortrend.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"MovistarLigadeCampeones.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones1.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones2.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones3.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones4.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones5.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones6.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones7.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones8.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport1.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport2.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport3.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport4.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports2.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports24HD.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports4.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports5.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Nove.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"One.il","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"OprahWinfreyNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"PPTVHD36.th","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Quest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"SABCSport.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports1Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports2Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsPlusGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsUkraine.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport13.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport14.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport24.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7BeInSports.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportArena.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesligaUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportCollection.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportFootball.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportMotoGP.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNBA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports16.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports21.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports24.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports3.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports34.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports6.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports8.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports9.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive1.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive2.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive3.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive4.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive5.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive6.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive7.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive8.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive9.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsArena.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsBoxOffice.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportSerieA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMix.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUno.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkyTG24.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24Canale50.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24PrimoPiano.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SonyTen1.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen1HD.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen2.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen3.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV1.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV2.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1CrnaGora.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Hrvatska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub3.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub5.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub6.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubEsports.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubGolf.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubHD.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubPolska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubStart.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNet360.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetCanucks.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetEast.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetFlames.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOilers.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOne.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntario.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioOttawa.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioToronto.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetPacific.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetVancouver.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWest.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWorld.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV1.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV2.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV3.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarHubTV.sg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarTimesTVMocambique.mz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports1.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports2.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports3.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsArena.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsFocus.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsLife.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsPremium.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport4.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport5.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport6.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport7.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportAction.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitz.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportCSN.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootball.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlus.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstand.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo360.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT5.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT6.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT7.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT8.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPlay.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPSL.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor2.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor3.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor4.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TLCAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBalkan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCGermany.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TSN1.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN2.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN3.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN4.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN5.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN6.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN7.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN8.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TTV.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TV3Sport.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVN.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24BiS.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN7.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNAsia.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVNFabula.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNorge.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNStyle.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNTurbo.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVVarzish.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Vox.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"VSport1Norge.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Sverige.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport3.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportExtra.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportFootball.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive1.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive2.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive3.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive4.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive5.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlus.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlusSuomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPremium.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUltraHD.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUrheilu.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VTVCab7.vn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"WDPNDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WNWTLD1.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WRJKLP3.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"Xee.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"XTVN.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"}] \ No newline at end of file diff --git a/tests/__data__/input/channels/us_blocked.m3u b/tests/__data__/input/channels/us_blocked.m3u index 0a1d4b761..9da9a3dda 100644 --- a/tests/__data__/input/channels/us_blocked.m3u +++ b/tests/__data__/input/channels/us_blocked.m3u @@ -1,3 +1,7 @@ #EXTM3U -#EXTINF:-1 tvg-id="" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="Sports",Fox Sports 2 Asia (Thai) (720p) +#EXTINF:-1 tvg-id="",Fox Sports 2 Asia (Thai) (720p) https://example.com/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVN +https://example.com/playlist2.m3u8 +#EXTINF:-1 tvg-id="EverydayHeroes.us",Everyday Heroes (720p) +https://a.jsrdn.com/broadcast/7b1451fa52/+0000/c.m3u8 diff --git a/tests/__data__/input/data/blocklist.json b/tests/__data__/input/data/blocklist.json index 8a2514397..9b1abd250 100644 --- a/tests/__data__/input/data/blocklist.json +++ b/tests/__data__/input/data/blocklist.json @@ -1,644 +1 @@ -[ - { - "name": "Animal Planet", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Animal Planet\\b" - }, - { - "name": "Arena 4", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Arena( |)4\\b" - }, - { - "name": "Asian Food Network", - "country": "SG", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Asian Food Network\\b" - }, - { - "name": "Astro SuperSport", - "country": "MY", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Astro SuperSport\\b" - }, - { - "name": "Azteca 7", - "country": "MX", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Azteca 7\\b" - }, - { - "name": "beIN Sports", - "country": "QA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^beIN Sports\\b" - }, - { - "name": "Canal+ Sport", - "country": "FR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Canal( |)+ Sport\\b" - }, - { - "name": "Cooking Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Cooking Channel\\b" - }, - { - "name": "DAZN", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^DAZN($| [1-4] .*)\\b" - }, - { - "name": "Diema Sport", - "country": "BG", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Diema Sport\\b" - }, - { - "name": "Digi Sport", - "country": "RO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Digi Sport\\b" - }, - { - "name": "Discovery Asia", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Asia\\b" - }, - { - "name": "Discovery Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Channel\\b" - }, - { - "name": "Discovery Civiliztion", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Civiliztion\\b" - }, - { - "name": "Discovery en Espanol", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery en Espanol\\b" - }, - { - "name": "Discovery Family", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Family\\b" - }, - { - "name": "Discovery Historia", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Historia\\b" - }, - { - "name": "Discovery History", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery History\\b" - }, - { - "name": "Discovery Home and Health", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Home and Health\\b" - }, - { - "name": "Discovery Life", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Life\\b" - }, - { - "name": "Discovery Science", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Science\\b" - }, - { - "name": "Discovery Shed", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Shed\\b" - }, - { - "name": "Discovery Theater", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Theater\\b" - }, - { - "name": "Discovery Travel and Living", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Travel and Living\\b" - }, - { - "name": "Discovery Turbo Xtra", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery Turbo Xtra\\b" - }, - { - "name": "Discovery World", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery World\\b" - }, - { - "name": "Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Discovery\\b" - }, - { - "name": "DIY Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DIY Network\\b" - }, - { - "name": "DKiss", - "country": "ES", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DKiss\\b" - }, - { - "name": "DMax", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^DMax\\b" - }, - { - "name": "Eleven Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Eleven Sports($| [1-6] .*)\\b" - }, - { - "name": "ESPN", - "country": "US", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^ESPN($|[1-3]| .*)\\b" - }, - { - "name": "Eurosport", - "country": "FR", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Eurosport($| [1-2])\\b" - }, - { - "name": "eve", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^eve\\b" - }, - { - "name": "Familia Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Familia Discovery\\b" - }, - { - "name": "Fatafeat", - "country": "EG", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Fatafeat\\b" - }, - { - "name": "FEM", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^FEM\\b" - }, - { - "name": "Fine Living", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Fine Living\\b" - }, - { - "name": "Flow Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Flow Sports\\b" - }, - { - "name": "Food Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Food Network\\b" - }, - { - "name": "food tv", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^food( |)tv\\b" - }, - { - "name": "Fox Sports", - "country": "US", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Fox Sports\\b" - }, - { - "name": "Frisbee", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Frisbee\\b" - }, - { - "name": "Futbol", - "country": "TJ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Futbol|Football TV|ТВ Футбол|Футбол)\\b" - }, - { - "name": "GTV Sports", - "country": "GH", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^GTV Sports\\b" - }, - { - "name": "Giallo", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Giallo\\b" - }, - { - "name": "GolfTV", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Golf( |)TV\\b" - }, - { - "name": "HGTV", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^HGTV\\b" - }, - { - "name": "Investigation Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^(Investigation Discovery|ID Investigation Discovery|ID Investigation|ID)\\b" - }, - { - "name": "K2", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^K2\\b" - }, - { - "name": "Living Channel", - "country": "NZ", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Living Channel\\b" - }, - { - "name": "Local Now", - "country": "US", - "reference": "https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf", - "regex": "^Local( |)Now" - }, - { - "name": "LookSport", - "country": "RO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Look( |)Sport\\b" - }, - { - "name": "Magnolia Network", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/5994", - "regex": "^Magnolia( |)Network\\b" - }, - { - "name": "Mango", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Mango\\b" - }, - { - "name": "Match!", - "country": "RU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Match|Матч)\\b" - }, - { - "name": "Motortrend", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Motortrend\\b" - }, - { - "name": "Mola TV", - "country": "ID", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Mola TV($| .*)\\b" - }, - { - "name": "Movistar Liga de Campeones", - "country": "ES", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Movistar Liga de Campeones [1-8]\\b" - }, - { - "name": "Nova Sport", - "country": "CZ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Nova Sport [1-3]\\b" - }, - { - "name": "Nova Sports", - "country": "GR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Nova Sports [1-6]\\b" - }, - { - "name": "Nove", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Nove($| .*)\\b" - }, - { - "name": "PPTV HD 36", - "country": "TH", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^PPTV($| HD)\\b" - }, - { - "name": "One", - "country": "IL", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^One\\b" - }, - { - "name": "OWN", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^(OWN|Oprah)\\b" - }, - { - "name": "Quest Red", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Quest Red\\b" - }, - { - "name": "Quest", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Quest\\b" - }, - { - "name": "Real Time", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Real Time\\b" - }, - { - "name": "SABC Sport ", - "country": "ZA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SABC Sport\\b" - }, - { - "name": "Setanta Sports", - "country": "IE", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Setanta Sports($| .*)\\b" - }, - { - "name": "Sky Sports", - "country": "UK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sky Sports\\b" - }, - { - "name": "Sky Sport Bundesliga", - "country": "DE", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sky Sport Bundesliga [0-9]+\\b" - }, - { - "name": "Sky TG24", - "country": "IT", - "reference": "https://github.com/iptv-org/iptv/pull/2294", - "regex": "^Sky TG24\\b" - }, - { - "name": "Sony Ten", - "country": "IN", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Sony Ten [1-4]\\b" - }, - { - "name": "Spíler TV", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Spíler( |[1-2] )TV\\b" - }, - { - "name": "Šport TV", - "country": "SI", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Šport|Sport) TV\\b" - }, - { - "name": "Sport Klub", - "country": "HU", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(Sport Klub|SK[1-9])\\b" - }, - { - "name": "SportsNet", - "country": "CA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SportsNet\\b" - }, - { - "name": "StarHub TV", - "country": "SG", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarHub TV\\b" - }, - { - "name": "StarSat", - "country": "ZA", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarSat\\b" - }, - { - "name": "StarTimes TV", - "country": "MZ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^StarTimes TV\\b" - }, - { - "name": "SuperSport", - "country": "AL", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^SuperSport [1-7]\\b" - }, - { - "name": "Tivibu Spor", - "country": "TR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Tivibu Spor\\b" - }, - { - "name": "TLC", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TLC\\b" - }, - { - "name": "Trvl Channel", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Trvl Channel\\b" - }, - { - "name": "TSN", - "country": "MT", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^TSN\\b" - }, - { - "name": "TTV", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TTV\\b" - }, - { - "name": "TV Norge", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TV Norge\\b" - }, - { - "name": "TV Varzish", - "country": "TJ", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^(TV Varzish|Varzish TV|Варзиш ТВ)\\b" - }, - { - "name": "TV3 Sport", - "country": "DK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^TV( |)3 Sport\\b" - }, - { - "name": "tvN Asia", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^tvN($| Asia)\\b" - }, - { - "name": "Tvn 24 Bis", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Tvn(| )24 Bis\\b" - }, - { - "name": "TVN 24", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN 24\\b" - }, - { - "name": "Tvn 7", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Tvn 7\\b" - }, - { - "name": "TVN Extra", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Extra\\b" - }, - { - "name": "TVN Fabula", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Fabula\\b" - }, - { - "name": "TVN Meteo", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Meteo\\b" - }, - { - "name": "TVN Style", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Style\\b" - }, - { - "name": "TVN Turbo", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Turbo\\b" - }, - { - "name": "TVN Warszawa", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN Warszawa\\b" - }, - { - "name": "TVN", - "country": "PL", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^TVN\\b" - }, - { - "name": "V Sport", - "country": "NO", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^V Sport\\b" - }, - { - "name": "Vox", - "country": "NO", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^Vox\\b" - }, - { - "name": "VTV Cab", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^VTV( |)Cab\\b" - }, - { - "name": "World Discovery", - "country": "US", - "reference": "https://github.com/iptv-org/iptv/issues/1831", - "regex": "^World Discovery\\b" - }, - { - "name": "Xee", - "country": "DK", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^Xee\\b" - }, - { - "name": "XtvN", - "country": "KR", - "reference": "https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md", - "regex": "^X( |)tvN\\b" - } -] +[{"channel":"FoxSports1.us","ref":"https://github.com/iptv-org/iptv/issues/0000"},{"channel":"FoxSports2Asia.us","ref":"https://github.com/iptv-org/iptv/issues/0000"},{"channel":"TVN.pl","ref":"https://github.com/iptv-org/iptv/issues/0000"},{"channel":"Eve.us","ref":"https://github.com/iptv-org/iptv/issues/0000"}] \ No newline at end of file diff --git a/tests/__data__/input/data/channels.json b/tests/__data__/input/data/channels.json index b267e0e5c..2d7128e36 100644 --- a/tests/__data__/input/data/channels.json +++ b/tests/__data__/input/data/channels.json @@ -36,6 +36,74 @@ "is_nsfw": false, "logo": "https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" }, + { + "id": "Eve.us", + "name": "Eve", + "network": null, + "country": "US", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/US" + ], + "languages": [ + "eng" + ], + "categories": [], + "is_nsfw": false, + "logo": "https://www.lyngsat.com/logo/tv/ee/eve_us.png" + }, + { + "id": "EverydayHeroes.us", + "name": "Everyday Heroes", + "network": null, + "country": "US", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/US" + ], + "languages": [ + "eng" + ], + "categories": [], + "is_nsfw": false, + "logo": "https://i.imgur.com/Iam3ol3.png" + }, + { + "id": "FoxSports1.us", + "name": "Fox Sports 1", + "network": null, + "country": "US", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/US" + ], + "languages": [ + "eng" + ], + "categories": [], + "is_nsfw": false, + "logo": "https://cdn.tvpassport.com/image/station/100x100/fs1.png" + }, + { + "id": "FoxSports2Asia.us", + "name": "Fox Sports 2 Asia", + "network": null, + "country": "US", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/US" + ], + "languages": [ + "eng" + ], + "categories": [], + "is_nsfw": false, + "logo": null + }, { "id": "LDPRTV.ru", "name": "LDPR TV", @@ -74,6 +142,23 @@ "is_nsfw": false, "logo": "https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" }, + { + "id": "TVN.pl", + "name": "TVN", + "network": null, + "country": "PL", + "subdivision": null, + "city": null, + "broadcast_area": [ + "c/PL" + ], + "languages": [ + "pol" + ], + "categories": [], + "is_nsfw": false, + "logo": "https://www.sms.cz/kategorie/televize/bmp/loga/velka/TVN.png" + }, { "id": "VisitXTV.nl", "name": "Visit-X TV", diff --git a/tests/commands/playlist/validate.test.js b/tests/commands/playlist/validate.test.js index 9e481bce2..aff4f819a 100644 --- a/tests/commands/playlist/validate.test.js +++ b/tests/commands/playlist/validate.test.js @@ -1,22 +1,24 @@ const { execSync } = require('child_process') -it('show error if channel name in the blocklist', () => { +it('show an error if channel name in the blocklist', () => { try { - execSync( + const stdout = execSync( 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/us_blocked.m3u', { encoding: 'utf8' } ) + console.log(stdout) + process.exit(1) } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/us_blocked.m3u"\n\n\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports" is on the blocklist due to claims of copyright holders (https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md)\n\n1 problems (1 errors, 0 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/us_blocked.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n` ) } }) -it('show warning if channel has wrong id', () => { +it('show a warning if channel has wrong id', () => { const stdout = execSync( 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/wrong_id.m3u', { @@ -25,6 +27,6 @@ it('show warning if channel has wrong id', () => { ) expect(stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/wrong_id.m3u"\n\n\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/wrong_id.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` ) }) From 3a85d78795443dcb2b4842c4a04dd86d731e6aec Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 12:00:10 +0300 Subject: [PATCH 124/157] Update package.json --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 342480489..178a36ede 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,8 @@ { "name": "iptv", "scripts": { + "act:auto-update": "act workflow_dispatch -W .github/workflows/auto-update.yml", + "act:check": "act pull_request -W .github/workflows/check.yml", "db:create": "node scripts/commands/database/create.js", "db:matrix": "node scripts/commands/database/matrix.js", "db:update": "node scripts/commands/database/update.js", From 531ccd0cbefa2dc3f527e5ca74154f9ccd737aa1 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 14 Feb 2022 12:02:49 +0300 Subject: [PATCH 125/157] Update check.yml --- .github/workflows/check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index e1471d3b6..c53cdce46 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,5 +19,5 @@ jobs: curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json - run: npm install - - run: npm run lint - - run: npm run validate + - run: npm run playlist:lint + - run: npm run playlist:validate From 27fa1a8249a44c3193fc17efd414fe3d740a546f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 01:53:05 +0300 Subject: [PATCH 126/157] Update check.yml --- .github/workflows/check.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c53cdce46..42013f864 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,16 +8,24 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: tj-actions/changed-files@v12.2 + id: files + with: + files: \.m3u$ - uses: actions/setup-node@v2 - if: ${{ !env.ACT }} + if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }} with: node-version: '14' cache: 'npm' - - name: Download data from API + - name: download data from api + if: steps.files.outputs.any_changed == 'true' run: | mkdir -p scripts/data curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json - - run: npm install - - run: npm run playlist:lint - - run: npm run playlist:validate + - name: validate + if: steps.files.outputs.any_changed == 'true' + run: | + npm install + npm run playlist:lint -- ${{ steps.files.outputs.all_changed_files }} + npm run playlist:validate -- ${{ steps.files.outputs.all_changed_files }} From a77f474fb6f46fa9eb9d9ea5ac0e7013e1861d27 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 02:46:08 +0300 Subject: [PATCH 127/157] Rename /channels to /streams --- channels/ad.m3u | 3 - channels/ae.m3u | 193 -- channels/af.m3u | 35 - channels/ag.m3u | 3 - channels/al.m3u | 263 -- channels/am.m3u | 73 - channels/ao.m3u | 5 - channels/ar.m3u | 176 - channels/at.m3u | 61 - channels/at_samsung.m3u | 11 - channels/au.m3u | 119 - channels/au_samsung.m3u | 87 - channels/aw.m3u | 11 - channels/az.m3u | 55 - channels/ba.m3u | 29 - channels/bb.m3u | 3 - channels/bd.m3u | 7 - channels/bd_jagobd.m3u | 53 - channels/be.m3u | 43 - channels/be_samsung.m3u | 11 - channels/bf.m3u | 9 - channels/bg.m3u | 55 - channels/bh.m3u | 17 - channels/bj.m3u | 11 - channels/bn.m3u | 5 - channels/bo.m3u | 51 - channels/br.m3u | 315 -- channels/br_samsung.m3u | 33 - channels/bs.m3u | 7 - channels/by.m3u | 33 - channels/by_sluhay.m3u | 25 - channels/ca.m3u | 273 -- channels/ca_samsung.m3u | 49 - channels/ca_stingray.m3u | 21 - channels/cd.m3u | 13 - channels/cg.m3u | 3 - channels/ch.m3u | 85 - channels/ch_samsung.m3u | 11 - channels/ci.m3u | 3 - channels/cl.m3u | 355 -- channels/cm.m3u | 9 - channels/cn.m3u | 2959 ----------------- channels/co.m3u | 99 - channels/cr.m3u | 81 - channels/cu.m3u | 13 - channels/cw.m3u | 11 - channels/cy.m3u | 57 - channels/cz.m3u | 54 - channels/de.m3u | 474 --- channels/de_samsung.m3u | 49 - channels/dk.m3u | 15 - channels/dk_samsung.m3u | 25 - channels/do.m3u | 141 - channels/dz.m3u | 49 - channels/ec.m3u | 49 - channels/ee.m3u | 15 - channels/eg.m3u | 86 - channels/es.m3u | 521 --- channels/es_rakuten.m3u | 135 - channels/es_samsung.m3u | 57 - channels/et.m3u | 3 - channels/fi.m3u | 21 - channels/fi_samsung.m3u | 23 - channels/fj.m3u | 5 - channels/fo.m3u | 3 - channels/fr.m3u | 257 -- channels/fr_samsung.m3u | 55 - channels/ge.m3u | 19 - channels/gh.m3u | 5 - channels/gl.m3u | 5 - channels/gm.m3u | 3 - channels/gn.m3u | 3 - channels/gp.m3u | 3 - channels/gq.m3u | 3 - channels/gr.m3u | 229 -- channels/gt.m3u | 13 - channels/hk.m3u | 64 - channels/hn.m3u | 99 - channels/hr.m3u | 42 - channels/ht.m3u | 33 - channels/hu.m3u | 83 - channels/id.m3u | 289 -- channels/ie.m3u | 17 - channels/ie_samsung.m3u | 11 - channels/il.m3u | 55 - channels/in.m3u | 843 ----- channels/in_samsung.m3u | 29 - channels/iq.m3u | 121 - channels/ir.m3u | 253 -- channels/ir_telewebion.m3u | 207 -- channels/is.m3u | 7 - channels/it.m3u | 492 --- channels/it_samsung.m3u | 69 - channels/jm.m3u | 5 - channels/jo.m3u | 43 - channels/jp.m3u | 201 -- channels/ke.m3u | 25 - channels/kg.m3u | 7 - channels/kh.m3u | 21 - channels/kp.m3u | 5 - channels/kr.m3u | 117 - channels/kw.m3u | 41 - channels/kz.m3u | 47 - channels/la.m3u | 63 - channels/lb.m3u | 62 - channels/li.m3u | 5 - channels/lk.m3u | 21 - channels/lt.m3u | 9 - channels/lu.m3u | 15 - channels/lu_samsung.m3u | 11 - channels/lv.m3u | 11 - channels/ly.m3u | 21 - channels/ma.m3u | 47 - channels/mc.m3u | 3 - channels/md.m3u | 27 - channels/me.m3u | 17 - channels/mk.m3u | 11 - channels/ml.m3u | 3 - channels/mm.m3u | 24 - channels/mn.m3u | 5 - channels/mo.m3u | 23 - channels/mq.m3u | 5 - channels/mt.m3u | 7 - channels/mv.m3u | 3 - channels/mw.m3u | 3 - channels/mx.m3u | 203 -- channels/mx_samsung.m3u | 31 - channels/my.m3u | 39 - channels/mz.m3u | 9 - channels/ne.m3u | 3 - channels/ng.m3u | 19 - channels/ni.m3u | 23 - channels/nl.m3u | 217 -- channels/nl_samsung.m3u | 23 - channels/no.m3u | 43 - channels/no_samsung.m3u | 27 - channels/np.m3u | 5 - channels/nz.m3u | 31 - channels/om.m3u | 13 - channels/pa.m3u | 27 - channels/pe.m3u | 423 --- channels/pf.m3u | 3 - channels/ph.m3u | 37 - channels/pk.m3u | 68 - channels/pl.m3u | 83 - channels/pr.m3u | 17 - channels/ps.m3u | 49 - channels/pt.m3u | 118 - channels/pt_samsung.m3u | 9 - channels/py.m3u | 33 - channels/qa.m3u | 32 - channels/ro.m3u | 146 - channels/rs.m3u | 95 - channels/ru.m3u | 811 ----- channels/ru_catcast.m3u | 21 - channels/ru_okkotv.m3u | 91 - channels/rw.m3u | 13 - channels/sa.m3u | 111 - channels/sd.m3u | 7 - channels/se.m3u | 43 - channels/se_samsung.m3u | 25 - channels/sg.m3u | 17 - channels/si.m3u | 19 - channels/sk.m3u | 69 - channels/sl.m3u | 3 - channels/sm.m3u | 5 - channels/sn.m3u | 29 - channels/so.m3u | 13 - channels/sv.m3u | 34 - channels/sy.m3u | 58 - channels/th.m3u | 96 - channels/tj.m3u | 3 - channels/tm.m3u | 29 - channels/tn.m3u | 33 - channels/tr.m3u | 471 --- channels/tt.m3u | 3 - channels/tw.m3u | 149 - channels/tz.m3u | 9 - channels/ua.m3u | 271 -- channels/ug.m3u | 9 - channels/uk.m3u | 401 --- channels/uk_samsung.m3u | 125 - channels/unsorted.m3u | 415 --- channels/us.m3u | 1953 ----------- channels/us_adultiptv.m3u | 51 - channels/us_adultswim.m3u | 33 - channels/us_bumblebee.m3u | 73 - channels/us_distro.m3u | 19 - channels/us_filmon.m3u | 9 - channels/us_fubo.m3u | 9 - channels/us_glewedtv.m3u | 3 - channels/us_imdbtv.m3u | 11 - channels/us_klowdtv.m3u | 25 - channels/us_localbtv.m3u | 190 -- channels/us_pbs.m3u | 265 -- channels/us_plex.m3u | 221 -- channels/us_redbox.m3u | 25 - channels/us_redtraffic.m3u | 37 - channels/us_roku.m3u | 243 -- channels/us_samsung.m3u | 207 -- channels/us_ssh101.m3u | 58 - channels/us_stirr.m3u | 515 --- channels/us_tcl.m3u | 29 - channels/us_tubi.m3u | 129 - channels/us_vizio.m3u | 187 -- channels/us_xumo.m3u | 369 -- channels/uy.m3u | 13 - channels/uz.m3u | 5 - channels/va.m3u | 5 - channels/ve.m3u | 49 - channels/vn.m3u | 103 - channels/vn_fptplay.m3u | 57 - channels/xk.m3u | 23 - channels/ye.m3u | 25 - channels/zm.m3u | 5 - scripts/commands/database/create.js | 2 +- scripts/data/blocklist.json | 2 +- streams/ad.m3u | 3 + streams/ae.m3u | 193 ++ streams/af.m3u | 35 + streams/ag.m3u | 3 + streams/al.m3u | 263 ++ streams/am.m3u | 51 + streams/ao.m3u | 5 + streams/ar.m3u | 171 + streams/at.m3u | 61 + streams/at_samsung.m3u | 11 + streams/au.m3u | 119 + streams/au_samsung.m3u | 87 + streams/aw.m3u | 9 + streams/az.m3u | 55 + streams/ba.m3u | 29 + streams/bb.m3u | 3 + streams/bd.m3u | 7 + streams/bd_jagobd.m3u | 53 + streams/be.m3u | 43 + streams/be_samsung.m3u | 11 + streams/bf.m3u | 9 + streams/bg.m3u | 55 + streams/bh.m3u | 17 + streams/bj.m3u | 11 + streams/bn.m3u | 5 + streams/bo.m3u | 51 + streams/br.m3u | 309 ++ {channels => streams}/br_pluto.m3u | 122 +- streams/br_samsung.m3u | 33 + streams/bs.m3u | 7 + streams/by.m3u | 33 + streams/by_sluhay.m3u | 25 + streams/ca.m3u | 273 ++ streams/ca_samsung.m3u | 49 + streams/ca_stingray.m3u | 21 + streams/cd.m3u | 13 + streams/cg.m3u | 3 + streams/ch.m3u | 85 + streams/ch_samsung.m3u | 11 + streams/ci.m3u | 3 + streams/cl.m3u | 355 ++ streams/cm.m3u | 9 + streams/cn.m3u | 2959 +++++++++++++++++ streams/co.m3u | 95 + streams/cr.m3u | 81 + streams/cu.m3u | 13 + streams/cw.m3u | 11 + streams/cy.m3u | 57 + streams/cz.m3u | 53 + streams/de.m3u | 473 +++ streams/de_samsung.m3u | 49 + streams/dk.m3u | 15 + streams/dk_samsung.m3u | 25 + streams/do.m3u | 141 + streams/dz.m3u | 49 + streams/ec.m3u | 49 + streams/ee.m3u | 15 + streams/eg.m3u | 79 + streams/es.m3u | 521 +++ streams/es_rakuten.m3u | 135 + streams/es_samsung.m3u | 57 + streams/et.m3u | 3 + streams/fi.m3u | 21 + streams/fi_samsung.m3u | 23 + streams/fj.m3u | 5 + streams/fo.m3u | 3 + streams/fr.m3u | 253 ++ streams/fr_samsung.m3u | 55 + streams/ge.m3u | 19 + streams/gh.m3u | 5 + streams/gl.m3u | 5 + streams/gm.m3u | 3 + streams/gn.m3u | 3 + streams/gp.m3u | 3 + streams/gq.m3u | 3 + streams/gr.m3u | 229 ++ streams/gt.m3u | 13 + streams/hk.m3u | 63 + streams/hn.m3u | 99 + streams/hr.m3u | 31 + streams/ht.m3u | 33 + streams/hu.m3u | 83 + streams/id.m3u | 289 ++ streams/ie.m3u | 17 + streams/ie_samsung.m3u | 11 + streams/il.m3u | 55 + streams/in.m3u | 829 +++++ streams/in_samsung.m3u | 29 + streams/iq.m3u | 121 + streams/ir.m3u | 235 ++ streams/ir_telewebion.m3u | 207 ++ streams/is.m3u | 7 + streams/it.m3u | 491 +++ streams/it_samsung.m3u | 69 + streams/jm.m3u | 5 + streams/jo.m3u | 43 + streams/jp.m3u | 199 ++ streams/ke.m3u | 25 + streams/kg.m3u | 7 + streams/kh.m3u | 21 + streams/kp.m3u | 5 + streams/kr.m3u | 117 + streams/kw.m3u | 41 + streams/kz.m3u | 47 + streams/la.m3u | 63 + streams/lb.m3u | 57 + streams/li.m3u | 5 + streams/lk.m3u | 21 + streams/lt.m3u | 9 + streams/lu.m3u | 15 + streams/lu_samsung.m3u | 11 + streams/lv.m3u | 11 + streams/ly.m3u | 21 + streams/ma.m3u | 47 + streams/mc.m3u | 3 + streams/md.m3u | 27 + streams/me.m3u | 17 + streams/mk.m3u | 11 + streams/ml.m3u | 3 + streams/mm.m3u | 17 + streams/mn.m3u | 5 + streams/mo.m3u | 23 + streams/mq.m3u | 5 + streams/mt.m3u | 7 + streams/mv.m3u | 3 + streams/mw.m3u | 3 + streams/mx.m3u | 203 ++ streams/mx_samsung.m3u | 31 + streams/my.m3u | 39 + streams/mz.m3u | 9 + streams/ne.m3u | 3 + streams/ng.m3u | 19 + streams/ni.m3u | 23 + streams/nl.m3u | 217 ++ streams/nl_samsung.m3u | 23 + streams/no.m3u | 43 + streams/no_samsung.m3u | 27 + streams/np.m3u | 5 + streams/nz.m3u | 31 + streams/om.m3u | 13 + streams/pa.m3u | 27 + streams/pe.m3u | 423 +++ streams/pf.m3u | 3 + streams/ph.m3u | 37 + streams/pk.m3u | 65 + streams/pl.m3u | 83 + streams/pr.m3u | 17 + streams/ps.m3u | 49 + streams/pt.m3u | 101 + streams/pt_samsung.m3u | 9 + streams/py.m3u | 33 + streams/qa.m3u | 29 + streams/ro.m3u | 141 + streams/rs.m3u | 95 + streams/ru.m3u | 773 +++++ streams/ru_catcast.m3u | 21 + streams/ru_okkotv.m3u | 91 + streams/rw.m3u | 13 + streams/sa.m3u | 111 + streams/sd.m3u | 7 + streams/se.m3u | 43 + streams/se_samsung.m3u | 25 + streams/sg.m3u | 17 + streams/si.m3u | 19 + streams/sk.m3u | 69 + streams/sl.m3u | 3 + streams/sm.m3u | 5 + streams/sn.m3u | 29 + streams/so.m3u | 13 + streams/sv.m3u | 33 + streams/sy.m3u | 55 + streams/th.m3u | 83 + streams/tj.m3u | 3 + streams/tm.m3u | 29 + streams/tn.m3u | 29 + streams/tr.m3u | 457 +++ streams/tt.m3u | 3 + streams/tw.m3u | 149 + streams/tz.m3u | 9 + streams/ua.m3u | 271 ++ streams/ug.m3u | 9 + streams/uk.m3u | 397 +++ streams/uk_samsung.m3u | 125 + {channels => streams}/uk_sportstribal.m3u | 22 +- streams/unsorted.m3u | 415 +++ streams/us.m3u | 1939 +++++++++++ streams/us_adultiptv.m3u | 51 + streams/us_adultswim.m3u | 33 + streams/us_bumblebee.m3u | 73 + streams/us_distro.m3u | 19 + streams/us_filmon.m3u | 9 + streams/us_fubo.m3u | 9 + streams/us_glewedtv.m3u | 3 + streams/us_imdbtv.m3u | 11 + streams/us_klowdtv.m3u | 25 + streams/us_localbtv.m3u | 127 + streams/us_pbs.m3u | 265 ++ streams/us_plex.m3u | 221 ++ {channels => streams}/us_pluto.m3u | 2320 ++++++------- streams/us_redbox.m3u | 25 + streams/us_redtraffic.m3u | 37 + streams/us_roku.m3u | 243 ++ streams/us_samsung.m3u | 207 ++ streams/us_ssh101.m3u | 39 + streams/us_stirr.m3u | 515 +++ streams/us_tcl.m3u | 29 + streams/us_tubi.m3u | 129 + streams/us_vizio.m3u | 187 ++ streams/us_xumo.m3u | 369 ++ streams/uy.m3u | 13 + streams/uz.m3u | 5 + streams/va.m3u | 5 + streams/ve.m3u | 49 + streams/vn.m3u | 103 + streams/vn_fptplay.m3u | 49 + streams/xk.m3u | 23 + streams/ye.m3u | 25 + streams/zm.m3u | 5 + .../expected/database/db_create.streams.db | 8 +- .../expected/database/db_update.streams.db | 8 +- tests/__data__/expected/database/streams.db | 6 +- .../expected/{channels => streams}/ad.m3u | 0 .../expected/{channels => streams}/ru.m3u | 0 .../expected/{channels => streams}/uk.m3u | 0 tests/__data__/input/database/base_streams.db | 8 +- .../input/database/db_export.streams.db | 8 +- .../input/database/db_update.streams.db | 10 +- .../database/playlist_generate.streams.db | 24 +- .../input/database/playlist_update.streams.db | 12 +- .../input/{channels => streams}/ad.m3u | 0 .../input/{channels => streams}/unsorted.m3u | 0 .../{channels => streams}/us_blocked.m3u | 0 .../input/{channels => streams}/wrong_id.m3u | 0 tests/commands/database/create.test.js | 2 +- tests/commands/playlist/validate.test.js | 8 +- 452 files changed, 22902 insertions(+), 23222 deletions(-) delete mode 100644 channels/ad.m3u delete mode 100644 channels/ae.m3u delete mode 100644 channels/af.m3u delete mode 100644 channels/ag.m3u delete mode 100644 channels/al.m3u delete mode 100644 channels/am.m3u delete mode 100644 channels/ao.m3u delete mode 100644 channels/ar.m3u delete mode 100644 channels/at.m3u delete mode 100644 channels/at_samsung.m3u delete mode 100644 channels/au.m3u delete mode 100644 channels/au_samsung.m3u delete mode 100644 channels/aw.m3u delete mode 100644 channels/az.m3u delete mode 100644 channels/ba.m3u delete mode 100644 channels/bb.m3u delete mode 100644 channels/bd.m3u delete mode 100644 channels/bd_jagobd.m3u delete mode 100644 channels/be.m3u delete mode 100644 channels/be_samsung.m3u delete mode 100644 channels/bf.m3u delete mode 100644 channels/bg.m3u delete mode 100644 channels/bh.m3u delete mode 100644 channels/bj.m3u delete mode 100644 channels/bn.m3u delete mode 100644 channels/bo.m3u delete mode 100644 channels/br.m3u delete mode 100644 channels/br_samsung.m3u delete mode 100644 channels/bs.m3u delete mode 100644 channels/by.m3u delete mode 100644 channels/by_sluhay.m3u delete mode 100644 channels/ca.m3u delete mode 100644 channels/ca_samsung.m3u delete mode 100644 channels/ca_stingray.m3u delete mode 100644 channels/cd.m3u delete mode 100644 channels/cg.m3u delete mode 100644 channels/ch.m3u delete mode 100644 channels/ch_samsung.m3u delete mode 100644 channels/ci.m3u delete mode 100644 channels/cl.m3u delete mode 100644 channels/cm.m3u delete mode 100644 channels/cn.m3u delete mode 100644 channels/co.m3u delete mode 100644 channels/cr.m3u delete mode 100644 channels/cu.m3u delete mode 100644 channels/cw.m3u delete mode 100644 channels/cy.m3u delete mode 100644 channels/cz.m3u delete mode 100644 channels/de.m3u delete mode 100644 channels/de_samsung.m3u delete mode 100644 channels/dk.m3u delete mode 100644 channels/dk_samsung.m3u delete mode 100644 channels/do.m3u delete mode 100644 channels/dz.m3u delete mode 100644 channels/ec.m3u delete mode 100644 channels/ee.m3u delete mode 100644 channels/eg.m3u delete mode 100644 channels/es.m3u delete mode 100644 channels/es_rakuten.m3u delete mode 100644 channels/es_samsung.m3u delete mode 100644 channels/et.m3u delete mode 100644 channels/fi.m3u delete mode 100644 channels/fi_samsung.m3u delete mode 100644 channels/fj.m3u delete mode 100644 channels/fo.m3u delete mode 100644 channels/fr.m3u delete mode 100644 channels/fr_samsung.m3u delete mode 100644 channels/ge.m3u delete mode 100644 channels/gh.m3u delete mode 100644 channels/gl.m3u delete mode 100644 channels/gm.m3u delete mode 100644 channels/gn.m3u delete mode 100644 channels/gp.m3u delete mode 100644 channels/gq.m3u delete mode 100644 channels/gr.m3u delete mode 100644 channels/gt.m3u delete mode 100644 channels/hk.m3u delete mode 100644 channels/hn.m3u delete mode 100644 channels/hr.m3u delete mode 100644 channels/ht.m3u delete mode 100644 channels/hu.m3u delete mode 100644 channels/id.m3u delete mode 100644 channels/ie.m3u delete mode 100644 channels/ie_samsung.m3u delete mode 100644 channels/il.m3u delete mode 100644 channels/in.m3u delete mode 100644 channels/in_samsung.m3u delete mode 100644 channels/iq.m3u delete mode 100644 channels/ir.m3u delete mode 100644 channels/ir_telewebion.m3u delete mode 100644 channels/is.m3u delete mode 100644 channels/it.m3u delete mode 100644 channels/it_samsung.m3u delete mode 100644 channels/jm.m3u delete mode 100644 channels/jo.m3u delete mode 100644 channels/jp.m3u delete mode 100644 channels/ke.m3u delete mode 100644 channels/kg.m3u delete mode 100644 channels/kh.m3u delete mode 100644 channels/kp.m3u delete mode 100644 channels/kr.m3u delete mode 100644 channels/kw.m3u delete mode 100644 channels/kz.m3u delete mode 100644 channels/la.m3u delete mode 100644 channels/lb.m3u delete mode 100644 channels/li.m3u delete mode 100644 channels/lk.m3u delete mode 100644 channels/lt.m3u delete mode 100644 channels/lu.m3u delete mode 100644 channels/lu_samsung.m3u delete mode 100644 channels/lv.m3u delete mode 100644 channels/ly.m3u delete mode 100644 channels/ma.m3u delete mode 100644 channels/mc.m3u delete mode 100644 channels/md.m3u delete mode 100644 channels/me.m3u delete mode 100644 channels/mk.m3u delete mode 100644 channels/ml.m3u delete mode 100644 channels/mm.m3u delete mode 100644 channels/mn.m3u delete mode 100644 channels/mo.m3u delete mode 100644 channels/mq.m3u delete mode 100644 channels/mt.m3u delete mode 100644 channels/mv.m3u delete mode 100644 channels/mw.m3u delete mode 100644 channels/mx.m3u delete mode 100644 channels/mx_samsung.m3u delete mode 100644 channels/my.m3u delete mode 100644 channels/mz.m3u delete mode 100644 channels/ne.m3u delete mode 100644 channels/ng.m3u delete mode 100644 channels/ni.m3u delete mode 100644 channels/nl.m3u delete mode 100644 channels/nl_samsung.m3u delete mode 100644 channels/no.m3u delete mode 100644 channels/no_samsung.m3u delete mode 100644 channels/np.m3u delete mode 100644 channels/nz.m3u delete mode 100644 channels/om.m3u delete mode 100644 channels/pa.m3u delete mode 100644 channels/pe.m3u delete mode 100644 channels/pf.m3u delete mode 100644 channels/ph.m3u delete mode 100644 channels/pk.m3u delete mode 100644 channels/pl.m3u delete mode 100644 channels/pr.m3u delete mode 100644 channels/ps.m3u delete mode 100644 channels/pt.m3u delete mode 100644 channels/pt_samsung.m3u delete mode 100644 channels/py.m3u delete mode 100644 channels/qa.m3u delete mode 100644 channels/ro.m3u delete mode 100644 channels/rs.m3u delete mode 100644 channels/ru.m3u delete mode 100644 channels/ru_catcast.m3u delete mode 100644 channels/ru_okkotv.m3u delete mode 100644 channels/rw.m3u delete mode 100644 channels/sa.m3u delete mode 100644 channels/sd.m3u delete mode 100644 channels/se.m3u delete mode 100644 channels/se_samsung.m3u delete mode 100644 channels/sg.m3u delete mode 100644 channels/si.m3u delete mode 100644 channels/sk.m3u delete mode 100644 channels/sl.m3u delete mode 100644 channels/sm.m3u delete mode 100644 channels/sn.m3u delete mode 100644 channels/so.m3u delete mode 100644 channels/sv.m3u delete mode 100644 channels/sy.m3u delete mode 100644 channels/th.m3u delete mode 100644 channels/tj.m3u delete mode 100644 channels/tm.m3u delete mode 100644 channels/tn.m3u delete mode 100644 channels/tr.m3u delete mode 100644 channels/tt.m3u delete mode 100644 channels/tw.m3u delete mode 100644 channels/tz.m3u delete mode 100644 channels/ua.m3u delete mode 100644 channels/ug.m3u delete mode 100644 channels/uk.m3u delete mode 100644 channels/uk_samsung.m3u delete mode 100644 channels/unsorted.m3u delete mode 100644 channels/us.m3u delete mode 100644 channels/us_adultiptv.m3u delete mode 100644 channels/us_adultswim.m3u delete mode 100644 channels/us_bumblebee.m3u delete mode 100644 channels/us_distro.m3u delete mode 100644 channels/us_filmon.m3u delete mode 100644 channels/us_fubo.m3u delete mode 100644 channels/us_glewedtv.m3u delete mode 100644 channels/us_imdbtv.m3u delete mode 100644 channels/us_klowdtv.m3u delete mode 100644 channels/us_localbtv.m3u delete mode 100644 channels/us_pbs.m3u delete mode 100644 channels/us_plex.m3u delete mode 100644 channels/us_redbox.m3u delete mode 100644 channels/us_redtraffic.m3u delete mode 100644 channels/us_roku.m3u delete mode 100644 channels/us_samsung.m3u delete mode 100644 channels/us_ssh101.m3u delete mode 100644 channels/us_stirr.m3u delete mode 100644 channels/us_tcl.m3u delete mode 100644 channels/us_tubi.m3u delete mode 100644 channels/us_vizio.m3u delete mode 100644 channels/us_xumo.m3u delete mode 100644 channels/uy.m3u delete mode 100644 channels/uz.m3u delete mode 100644 channels/va.m3u delete mode 100644 channels/ve.m3u delete mode 100644 channels/vn.m3u delete mode 100644 channels/vn_fptplay.m3u delete mode 100644 channels/xk.m3u delete mode 100644 channels/ye.m3u delete mode 100644 channels/zm.m3u create mode 100644 streams/ad.m3u create mode 100644 streams/ae.m3u create mode 100644 streams/af.m3u create mode 100644 streams/ag.m3u create mode 100644 streams/al.m3u create mode 100644 streams/am.m3u create mode 100644 streams/ao.m3u create mode 100644 streams/ar.m3u create mode 100644 streams/at.m3u create mode 100644 streams/at_samsung.m3u create mode 100644 streams/au.m3u create mode 100644 streams/au_samsung.m3u create mode 100644 streams/aw.m3u create mode 100644 streams/az.m3u create mode 100644 streams/ba.m3u create mode 100644 streams/bb.m3u create mode 100644 streams/bd.m3u create mode 100644 streams/bd_jagobd.m3u create mode 100644 streams/be.m3u create mode 100644 streams/be_samsung.m3u create mode 100644 streams/bf.m3u create mode 100644 streams/bg.m3u create mode 100644 streams/bh.m3u create mode 100644 streams/bj.m3u create mode 100644 streams/bn.m3u create mode 100644 streams/bo.m3u create mode 100644 streams/br.m3u rename {channels => streams}/br_pluto.m3u (65%) create mode 100644 streams/br_samsung.m3u create mode 100644 streams/bs.m3u create mode 100644 streams/by.m3u create mode 100644 streams/by_sluhay.m3u create mode 100644 streams/ca.m3u create mode 100644 streams/ca_samsung.m3u create mode 100644 streams/ca_stingray.m3u create mode 100644 streams/cd.m3u create mode 100644 streams/cg.m3u create mode 100644 streams/ch.m3u create mode 100644 streams/ch_samsung.m3u create mode 100644 streams/ci.m3u create mode 100644 streams/cl.m3u create mode 100644 streams/cm.m3u create mode 100644 streams/cn.m3u create mode 100644 streams/co.m3u create mode 100644 streams/cr.m3u create mode 100644 streams/cu.m3u create mode 100644 streams/cw.m3u create mode 100644 streams/cy.m3u create mode 100644 streams/cz.m3u create mode 100644 streams/de.m3u create mode 100644 streams/de_samsung.m3u create mode 100644 streams/dk.m3u create mode 100644 streams/dk_samsung.m3u create mode 100644 streams/do.m3u create mode 100644 streams/dz.m3u create mode 100644 streams/ec.m3u create mode 100644 streams/ee.m3u create mode 100644 streams/eg.m3u create mode 100644 streams/es.m3u create mode 100644 streams/es_rakuten.m3u create mode 100644 streams/es_samsung.m3u create mode 100644 streams/et.m3u create mode 100644 streams/fi.m3u create mode 100644 streams/fi_samsung.m3u create mode 100644 streams/fj.m3u create mode 100644 streams/fo.m3u create mode 100644 streams/fr.m3u create mode 100644 streams/fr_samsung.m3u create mode 100644 streams/ge.m3u create mode 100644 streams/gh.m3u create mode 100644 streams/gl.m3u create mode 100644 streams/gm.m3u create mode 100644 streams/gn.m3u create mode 100644 streams/gp.m3u create mode 100644 streams/gq.m3u create mode 100644 streams/gr.m3u create mode 100644 streams/gt.m3u create mode 100644 streams/hk.m3u create mode 100644 streams/hn.m3u create mode 100644 streams/hr.m3u create mode 100644 streams/ht.m3u create mode 100644 streams/hu.m3u create mode 100644 streams/id.m3u create mode 100644 streams/ie.m3u create mode 100644 streams/ie_samsung.m3u create mode 100644 streams/il.m3u create mode 100644 streams/in.m3u create mode 100644 streams/in_samsung.m3u create mode 100644 streams/iq.m3u create mode 100644 streams/ir.m3u create mode 100644 streams/ir_telewebion.m3u create mode 100644 streams/is.m3u create mode 100644 streams/it.m3u create mode 100644 streams/it_samsung.m3u create mode 100644 streams/jm.m3u create mode 100644 streams/jo.m3u create mode 100644 streams/jp.m3u create mode 100644 streams/ke.m3u create mode 100644 streams/kg.m3u create mode 100644 streams/kh.m3u create mode 100644 streams/kp.m3u create mode 100644 streams/kr.m3u create mode 100644 streams/kw.m3u create mode 100644 streams/kz.m3u create mode 100644 streams/la.m3u create mode 100644 streams/lb.m3u create mode 100644 streams/li.m3u create mode 100644 streams/lk.m3u create mode 100644 streams/lt.m3u create mode 100644 streams/lu.m3u create mode 100644 streams/lu_samsung.m3u create mode 100644 streams/lv.m3u create mode 100644 streams/ly.m3u create mode 100644 streams/ma.m3u create mode 100644 streams/mc.m3u create mode 100644 streams/md.m3u create mode 100644 streams/me.m3u create mode 100644 streams/mk.m3u create mode 100644 streams/ml.m3u create mode 100644 streams/mm.m3u create mode 100644 streams/mn.m3u create mode 100644 streams/mo.m3u create mode 100644 streams/mq.m3u create mode 100644 streams/mt.m3u create mode 100644 streams/mv.m3u create mode 100644 streams/mw.m3u create mode 100644 streams/mx.m3u create mode 100644 streams/mx_samsung.m3u create mode 100644 streams/my.m3u create mode 100644 streams/mz.m3u create mode 100644 streams/ne.m3u create mode 100644 streams/ng.m3u create mode 100644 streams/ni.m3u create mode 100644 streams/nl.m3u create mode 100644 streams/nl_samsung.m3u create mode 100644 streams/no.m3u create mode 100644 streams/no_samsung.m3u create mode 100644 streams/np.m3u create mode 100644 streams/nz.m3u create mode 100644 streams/om.m3u create mode 100644 streams/pa.m3u create mode 100644 streams/pe.m3u create mode 100644 streams/pf.m3u create mode 100644 streams/ph.m3u create mode 100644 streams/pk.m3u create mode 100644 streams/pl.m3u create mode 100644 streams/pr.m3u create mode 100644 streams/ps.m3u create mode 100644 streams/pt.m3u create mode 100644 streams/pt_samsung.m3u create mode 100644 streams/py.m3u create mode 100644 streams/qa.m3u create mode 100644 streams/ro.m3u create mode 100644 streams/rs.m3u create mode 100644 streams/ru.m3u create mode 100644 streams/ru_catcast.m3u create mode 100644 streams/ru_okkotv.m3u create mode 100644 streams/rw.m3u create mode 100644 streams/sa.m3u create mode 100644 streams/sd.m3u create mode 100644 streams/se.m3u create mode 100644 streams/se_samsung.m3u create mode 100644 streams/sg.m3u create mode 100644 streams/si.m3u create mode 100644 streams/sk.m3u create mode 100644 streams/sl.m3u create mode 100644 streams/sm.m3u create mode 100644 streams/sn.m3u create mode 100644 streams/so.m3u create mode 100644 streams/sv.m3u create mode 100644 streams/sy.m3u create mode 100644 streams/th.m3u create mode 100644 streams/tj.m3u create mode 100644 streams/tm.m3u create mode 100644 streams/tn.m3u create mode 100644 streams/tr.m3u create mode 100644 streams/tt.m3u create mode 100644 streams/tw.m3u create mode 100644 streams/tz.m3u create mode 100644 streams/ua.m3u create mode 100644 streams/ug.m3u create mode 100644 streams/uk.m3u create mode 100644 streams/uk_samsung.m3u rename {channels => streams}/uk_sportstribal.m3u (51%) create mode 100644 streams/unsorted.m3u create mode 100644 streams/us.m3u create mode 100644 streams/us_adultiptv.m3u create mode 100644 streams/us_adultswim.m3u create mode 100644 streams/us_bumblebee.m3u create mode 100644 streams/us_distro.m3u create mode 100644 streams/us_filmon.m3u create mode 100644 streams/us_fubo.m3u create mode 100644 streams/us_glewedtv.m3u create mode 100644 streams/us_imdbtv.m3u create mode 100644 streams/us_klowdtv.m3u create mode 100644 streams/us_localbtv.m3u create mode 100644 streams/us_pbs.m3u create mode 100644 streams/us_plex.m3u rename {channels => streams}/us_pluto.m3u (69%) create mode 100644 streams/us_redbox.m3u create mode 100644 streams/us_redtraffic.m3u create mode 100644 streams/us_roku.m3u create mode 100644 streams/us_samsung.m3u create mode 100644 streams/us_ssh101.m3u create mode 100644 streams/us_stirr.m3u create mode 100644 streams/us_tcl.m3u create mode 100644 streams/us_tubi.m3u create mode 100644 streams/us_vizio.m3u create mode 100644 streams/us_xumo.m3u create mode 100644 streams/uy.m3u create mode 100644 streams/uz.m3u create mode 100644 streams/va.m3u create mode 100644 streams/ve.m3u create mode 100644 streams/vn.m3u create mode 100644 streams/vn_fptplay.m3u create mode 100644 streams/xk.m3u create mode 100644 streams/ye.m3u create mode 100644 streams/zm.m3u rename tests/__data__/expected/{channels => streams}/ad.m3u (100%) rename tests/__data__/expected/{channels => streams}/ru.m3u (100%) rename tests/__data__/expected/{channels => streams}/uk.m3u (100%) rename tests/__data__/input/{channels => streams}/ad.m3u (100%) rename tests/__data__/input/{channels => streams}/unsorted.m3u (100%) rename tests/__data__/input/{channels => streams}/us_blocked.m3u (100%) rename tests/__data__/input/{channels => streams}/wrong_id.m3u (100%) diff --git a/channels/ad.m3u b/channels/ad.m3u deleted file mode 100644 index 78babb213..000000000 --- a/channels/ad.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ATV.ad" tvg-country="AD" tvg-language="Catalan" tvg-logo="https://i.imgur.com/kJCjeQ4.png" group-title="General",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/channels/ae.m3u b/channels/ae.m3u deleted file mode 100644 index fbd307b01..000000000 --- a/channels/ae.m3u +++ /dev/null @@ -1,193 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3eeshAlAanTV.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://www.3eeshalaan.net/wp-content/themes/alaan-child-3eesh/assets/img/logo.png" group-title="General",3eesh Al Aan TV (720p) [Timeout] -https://streaming.3eeshalaan.net/AAAFinalFeed/AlAanFeed_live.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiAloula.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Abu Dhabi Aloula (1080p) -https://admdn2.cdn.mangomolo.com/adtv/smil:adtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiDrama.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7Bx66K7.jpg" group-title="General",Abu Dhabi Drama (1080p) [Offline] -https://admdn5.cdn.mangomolo.com/drama/smil:drama.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiEmirates.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Abu Dhabi Emirates (1080p) -https://admdn3.cdn.mangomolo.com/emarat/smil:emarat.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports1.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/lKl2wZH.png" group-title="Sports",Abu Dhabi Sports 1 (1080p) -https://admdn1.cdn.mangomolo.com/adsports1/smil:adsports1.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Abu Dhabi Sports 2 (1080p) -https://admdn5.cdn.mangomolo.com/adsports2/smil:adsports2.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Abu Dhabi Sports 3 (1080p) -https://admdn3.cdn.mangomolo.com/adsports3/smil:adsports3.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://statres.cdn.mgmlcdn.com/analytics/uploads/164/5e3ad6cc72.png" group-title="Sports",Abu Dhabi Sports 4 (1080p) [Geo-blocked] -https://admdn4ta.cdn.mgmlcdn.com/adsports4/smil:adsports4.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Ajman.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://mk0ajmantvb4ih3ifdec.kinstacdn.com/wp-content/uploads/2019/07/logo_header_2-1.png" group-title="",Ajman (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/emirates/ajman -#EXTINF:-1 tvg-id="AlAan.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://www.alaan.tv/wp-content/themes/alaan-child-tv/assets/img/logo.png" group-title="",Al Aan (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x74wje5 -#EXTINF:-1 tvg-id="AlArabiya.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7OrfyOx.jpg" group-title="News",Al Arabiya (1080p) -https://live.alarabiya.net/alarabiapublish/alarabiya.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlArabiya.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7OrfyOx.jpg" group-title="News",Al Arabiya (1080p) -https://shls-alarabiya-prod-dub.shahid.net/out/v1/f5f319206ed740f9a831f2097c2ead23/index.m3u8 -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Arabiya Al Hadath (1080p) [Not 24/7] -https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlDafrahTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://aldafrah.ae/wp-content/uploads/2018/02/logo_2x-1.png" group-title="General",Al Dafrah TV (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/aldafrah -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Hadath TV (1080p) -https://shls-hadath-prod-dub.shahid.net/out/v1/0e1a306399c346faac4226aa0858f99b/index.m3u8 -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Hadath TV (1080p) [Not 24/7] -https://live.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQamarTV.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://alqamartv-rfrfjjt.netdna-ssl.com/arb/wp-content/uploads/2017/05/Title5.png" group-title="",Al Qamar TV (360p) -https://cdn5.iqsat.net/iq/8c17d37e0f5c88b1e9c7e1f8f82bc980.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSharqiyaMinKabla.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6Er1lh6.png" group-title="General",Al Sharqiya Min Kabla (1080p) -https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlWoustaTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/WAD.png" group-title="General",Al Wousta TV (1080p) -https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlYaumTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://alyaumtv.net/wp-content/uploads/2019/04/alyaom-1-1_small2.png" group-title="News",Al Yaum TV (720p) -https://ikomg1.s.llnwi.net/alyaumtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Asharq.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Asharq (1080p) -https://bcovlive-a.akamaihd.net/0b75ef0a49e24704a4ca023d3a82c2df/ap-south-1/6203311941001/playlist.m3u8 -#EXTINF:-1 tvg-id="BeeMovies.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Bee Movies (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCuaMJTqQ_W7qztqZ_zyErJg/live -#EXTINF:-1 tvg-id="BeeTheater.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/43sPGSLV/beetheater.jpg" group-title="Entertainment",Bee Theater (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC32M9DWf0zgMhBYGd_MOiIw/live -#EXTINF:-1 tvg-id="CitrussTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6lTEvrU.jpg" group-title="Shop",Citruss TV (720p) [Geo-blocked] -https://citrusstv.akamaized.net/hls/live/687285/CTV/index.m3u8 -#EXTINF:-1 tvg-id="DubaiOne.ae" tvg-country="ARAB" tvg-language="English;Arabic" tvg-logo="https://i.imgur.com/WjJ8MHC.png" group-title="General",Dubai One (1080p) -http://dminnvll.cdn.mangomolo.com/dubaione/smil:dubaione.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiOne.ae" tvg-country="ARAB" tvg-language="English;Arabic" tvg-logo="https://i.imgur.com/WjJ8MHC.png" group-title="General",Dubai One (304p) -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="DubaiRacing.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="http://admango.cdn.mangomolo.com/analytics/uploads/71/icons/live/dubai-racing-live.png" group-title="Sports",Dubai Racing (1080p) -https://dmisvthvll.cdn.mangomolo.com/events/smil:events.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiRacing2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="http://admango.cdn.mangomolo.com/analytics/uploads/71/icons/live/duabi-racing-2-live.png" group-title="Sports",Dubai Racing 2 (1080p) -https://dmithrvll.cdn.mangomolo.com/dubairacing/smil:dubairacing.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiRacing3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eytrf0Y.png" group-title="Sports",Dubai Racing 3 (240p) -https://dmithrvll.cdn.mangomolo.com/dubaimubasher/smil:dubaimubasher.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiSports1.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/iYgHR5D.png" group-title="Sports",Dubai Sports 1 (1080p) -https://dmitnthvll.cdn.mangomolo.com/dubaisports/smil:dubaisports.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiSports2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Dubai Sports 2 (1080p) -https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd/smil:dubaisportshd.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiSports3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Dubai Sports 3 (1080p) [Not 24/7] -https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd5/smil:dubaisportshd5.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dWueFIE.png" group-title="General",Dubai TV (1080p) -https://dmisxthvll.cdn.mgmlcdn.com/dubaitvht/smil:dubaitv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiZaman.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5U9qpf.png" group-title="Classic",Dubai Zaman (400p) [Not 24/7] -https://dmiffthvll.cdn.mangomolo.com/dubaizaman/smil:dubaizaman.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EXPO2020.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",EXPO 2020 (1080p) -https://shls-expotv-prod-dub.shahid.net/out/v1/d01b0b3888284878b8898017895a5922/index.m3u8 -#EXTINF:-1 tvg-id="HawasTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rVYdkth.jpg" group-title="General",Hawas TV (480p) -https://jmc-live.ercdn.net/hawastvhd/hawastvhd.m3u8 -#EXTINF:-1 tvg-id="KhyberMiddleEastTV.ae" tvg-country="AE" tvg-language="Pashto" tvg-logo="" group-title="",Khyber Middle East TV (720p) [Not 24/7] -https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 -#EXTINF:-1 tvg-id="KhyberNewsTV.ae" tvg-country="AE" tvg-language="Pashto" tvg-logo="" group-title="News",Khyber News TV (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 -#EXTINF:-1 tvg-id="MajidTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/9Bun2IX.png" group-title="Kids",Majid TV (1080p) [Offline] -https://admdn4.cdn.mangomolo.com/majid/smil:majid.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149009_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] -https://shls-mbc1ksa-ak.akamaized.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 -#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] -https://shls-mbc1ksa-prod-dub.shahid.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 -#EXTINF:-1 tvg-id="MBC1USA.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 USA (1080p) -https://shls-mbc1-usa-prod.shahid.net/out/v1/1b559e832c3f40f996c1984245b3b24b/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GLltP2T.png" group-title="General",MBC 2 (576p) -http://93.184.1.247/MBC2/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GLltP2T.png" group-title="General",MBC 2 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149010_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KXuzL1u.png" group-title="Movies",MBC 2 (720p) [Timeout] -https://blogs.livehdchanel.live/mbc-222/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KXuzL1u.png" group-title="Movies",MBC 2 (1080p) [Offline] -https://shls-mbc2-prod-dub.shahid.net/out/v1/b4befe19798745fe986f5a9bfba62126/index.m3u8 -#EXTINF:-1 tvg-id="MBC3.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 (1080p) -https://shls-mbc3-prod-dub.shahid.net/out/v1/d5bbe570e1514d3d9a142657d33d85e6/index.m3u8 -#EXTINF:-1 tvg-id="MBC3.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149011_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC3EUR.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 EUR (1080p) -https://shls-mbc3-eur-prod-dub.shahid.net/out/v1/fce09dd6a967431a871efb3b8dec9f82/index.m3u8 -#EXTINF:-1 tvg-id="MBC3USA.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 USA (1080p) -https://shls-mbc3-usa-prod.shahid.net/out/v1/f7584f50d13c4c01b0fac2be04c61c7e/index.m3u8 -#EXTINF:-1 tvg-id="MBC4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pfF61uH.png" group-title="General",MBC 4 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149012_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pfF61uH.png" group-title="General",MBC 4 (1080p) [Geo-blocked] -https://shls-mbc4-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/index.m3u8 -#EXTINF:-1 tvg-id="MBC5.ae" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/ar/thumb/4/48/Mbc5.webp/168px-Mbc5.webp.png" group-title="General",MBC 5 (1080p) -https://shls-mbc5-prod-dub.shahid.net/out/v1/2720564b6a4641658fdfb6884b160da2/index.m3u8 -#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149013_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (1080p) [Geo-blocked] -https://shls-mbcaction-prod-dub.shahid.net/out/v1/68dd761538e5460096c42422199d050b/index.m3u8 -#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (576p) [Timeout] -https://blogs.livehdchanel.live/action2/index.m3u8 -#EXTINF:-1 tvg-id="MBCBollywood.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fMjhK06.png" group-title="General",MBC Bollywood (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149014_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCBollywood.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fMjhK06.png" group-title="General",MBC Bollywood (1080p) [Geo-blocked] -https://shls-mbcbollywood-prod-dub.shahid.net/out/v1/a79c9d7ef2a64a54a64d5c4567b3462a/index.m3u8 -#EXTINF:-1 tvg-id="MBCDrama.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="General",MBC Drama KSA (1080p) -https://shls-mbcdramaksa-prod-dub.shahid.net/out/v1/ce0f0762d89e4394a856c5fd13e43645/index.m3u8 -#EXTINF:-1 tvg-id="M.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="General",MBC Drama USA (1080p) -https://shls-mbc-drama-usa-prod.shahid.net/out/v1/efb67fc5c04a40778cd5c21e2e7ea884/index.m3u8 -#EXTINF:-1 tvg-id="MBCFM.ae" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/radio/mm/mbc_ae_fm.png" group-title="Music",MBC FM (1080p) -https://mbcfm-riyadh-prod-dub.shahid.net/out/v1/69c8a03f507e422f99cf5c07291c9e3a/index.m3u8 -#EXTINF:-1 tvg-id="MBCIraq.ae" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc-iraq-ae-iq.png" group-title="General",MBC Iraq (1080p) -https://shls-iraq-prod-dub.shahid.net/out/v1/c9bf1e87ea66478bb20bc5c93c9d41ea/index.m3u8 -#EXTINF:-1 tvg-id="MBCIraq.ae" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc-iraq-ae-iq.png" group-title="General",MBC Iraq (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149018_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCEgypt.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr.png" group-title="General",MBC Masr 1 (1080p) [Geo-blocked] -https://shls-masr-prod-dub.shahid.net/out/v1/b7093401da27496797a8949de23f4578/index.m3u8 -#EXTINF:-1 tvg-id="MBCMasr1USA.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr.png" group-title="General",MBC Masr 1 USA (1080p) -https://shls-mbc-masr-usa-prod.shahid.net/out/v1/d4fded7d5df04b88b9ea1db61d00f095/index.m3u8 -#EXTINF:-1 tvg-id="MBCMasr2.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr_2.png" group-title="General",MBC Masr 2 (1080p) [Geo-blocked] -https://shls-masr2-prod-dub.shahid.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149015_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Not 24/7] -https://shls-mbcmax-prod-dub.shahid.net/out/v1/13815a7cda864c249a88c38e66a2e653/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (576p) [Timeout] -https://blogs.livehdchanel.live/max/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Offline] -http://93.184.1.247/MBC_MAX/index.m3u8 -#EXTINF:-1 tvg-id="MBCPersia.ae" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8f/MBC_Persia_Logo.png" group-title="General",MBC Persia (1080p) -https://shls-mbcpersia-prod-dub.shahid.net/out/v1/bdc7cd0d990e4c54808632a52c396946/index.m3u8 -#EXTINF:-1 tvg-id="MBCDramaPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="Movies",MBC Plus Drama (1080p) -https://shls-mbcplusdrama-prod-dub.shahid.net/out/v1/97ca0ce6fc6142f4b14c0a694af59eab/index.m3u8 -#EXTINF:-1 tvg-id="MBCDramaPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="Movies",MBC Plus Drama (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149016_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCVarietyPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KefqHnm.jpg" group-title="Movies",MBC Plus Variety (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149017_0.m3u8?session= -#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/baXbWro.jpg" group-title="Outdoor",National Geographic Abu Dhabi (1080p) -https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NoorDubai.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FP2yHkl.png" group-title="General",Noor Dubai (576p) -https://dmiffthvll.cdn.mangomolo.com/noordubaitv/smil:noordubaitv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PeaceTVAlbanian.ae" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/albanian.jpg" group-title="Religious",Peace TV Albanian (360p) -http://82.114.67.178:8081/hls/PeaceTV.m3u8 -#EXTINF:-1 tvg-id="PeaceTVBangla.ae" tvg-country="BD;IN" tvg-language="Bengali" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/bangla.jpg" group-title="Religious",Peace TV Bangla (720p) -http://199.223.252.162:8032/bangla_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVChinese.ae" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/chinese.jpg" group-title="Religious",Peace TV Chinese (720p) -http://199.223.252.162:8032/chinese_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVEnglish.ae" tvg-country="INT" tvg-language="English" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/english.jpg" group-title="Religious",Peace TV English (1080p) -http://199.223.252.162:8032/english_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVUrdu.ae" tvg-country="PK;IN" tvg-language="Urdu" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/urdu.jpg" group-title="Religious",Peace TV Urdu (1080p) -http://199.223.252.162:8032/urdu_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="Sama Dubai" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/bF6I3N1.jpg" group-title="General",Sama Dubai (1080p) -https://dmieigthvll.cdn.mgmlcdn.com/samadubaiht/smil:samadubai.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Sharjah2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ob1GhbC.jpg" group-title="Religious",Sharjah 2 (1080p) -https://svs.itworkscdn.net/smc2live/smc2tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SharjahRadioQuran.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Religious",Sharjah Radio Quran (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://youtube.com/channel/UCn8lMRYDANs_1yAL3iuw7_g/live -#EXTINF:-1 tvg-id="SharjahSportsTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/IaRaabJ.jpg" group-title="Sports",Sharjah Sports TV (1080p) -https://svs.itworkscdn.net/smc4sportslive/smc4.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SharjahTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FAp0RtO.png" group-title="Religious",Sharjah TV (1080p) -https://svs.itworkscdn.net/smc1live/smc1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TowheedTV.ae" tvg-country="AE;IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/nsxrqta.jpg" group-title="Religious",Towheed TV (720p) [Not 24/7] -http://51.210.199.1/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Wanasah.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GmgibYW.jpg" group-title="Music",Wanasah (1080p) -https://shls-wanasah-prod-dub.shahid.net/out/v1/c84ef3128e564b74a6a796e8b6287de6/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakAction.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/207c8580-318d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Action (1080p) -https://weyyak-live.akamaized.net/weyyak_action/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakDrama.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/d995517f-bc87-ea11-831d-02d662556796/poster-image" group-title="Movies",Weyyak Drama (720p) -https://weyyak-live.akamaized.net/weyyak_drama/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakMix.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/bc777336-328d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Mix (720p) -https://weyyak-live.akamaized.net/weyyak_mix/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakNawaem.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/d867c2e9-328d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Nawaem (720p) -https://weyyak-live.akamaized.net/weyyak_nawaem/index.m3u8 -#EXTINF:-1 tvg-id="Yas.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ky1sNul.png" group-title="Sports",Yas (1080p) -https://admdn1.cdn.mangomolo.com/yastv/smil:yastv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAflam.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/5a7c9610-5562-407b-b711-f31ce6267786/poster-image" group-title="",Zee Aflam (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_zee_aflam/index.m3u8 -#EXTINF:-1 tvg-id="ZeeAlwan.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/25a860af-4bbc-4289-8e1f-b3bed0dcc64a/poster-image" group-title="",Zee Alwan (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_zee_alwan/index.m3u8 diff --git a/channels/af.m3u b/channels/af.m3u deleted file mode 100644 index 6c701dd3b..000000000 --- a/channels/af.m3u +++ /dev/null @@ -1,35 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArianaAfghanistanInternationalTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Ariana Afghanistan International TV (720p) [Not 24/7] -http://iptv.arianaafgtv.com/ariana/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVNational.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV National (720p) [Not 24/7] -https://d10rltuy0iweup.cloudfront.net/ATNNAT/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVUS.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV US (720p) [Not 24/7] -https://d2g7v53450s2i2.cloudfront.net/ATNUS/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVUS.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV US (Delayed stream) (720p) [Not 24/7] -https://d2g7v53450s2i2.cloudfront.net/ATNUS/streamdelay/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNNews.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/x8mlbJM.jpg" group-title="News",ATN News (360p) [Not 24/7] -https://d10rltuy0iweup.cloudfront.net/ATNNEWS/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaharTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Bahar TV (720p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/bahartv/bahartv/playlist.m3u8 -#EXTINF:-1 tvg-id="BaryaTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/yf5cI8r.jpg" group-title="",Barya TV (720p) [Not 24/7] -http://51.210.199.56/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HelalTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/mfTccwm.png" group-title="",Helal TV (720p) [Not 24/7] -http://51.210.199.54/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HewadTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/RkcUtMK.jpg" group-title="",Hewad TV (720p) [Not 24/7] -http://51.210.199.58/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ImanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Iman TV (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/imantv/imantv/playlist.m3u8 -#EXTINF:-1 tvg-id="KayhanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/XpR1VvZ.png" group-title="",Kayhan TV (720p) -https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="KayhanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/XpR1VvZ.png" group-title="",Kayhan TV (720p) [Geo-blocked] -http://208.93.117.113/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="PamirTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Pamir TV (1080p) [Not 24/7] -http://live.stream.cdn.pamirtv.com/ptv/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 -#EXTINF:-1 tvg-id="Sharq.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://ws.shoutcast.com/images/contacts/b/b9f8/b9f811c5-d210-4d0b-ae32-f467823a913e/radios/0d677ea5-46b4-4129-9359-9e5783fb6a37/0d677ea5-46b4-4129-9359-9e5783fb6a37.png" group-title="General",Sharq (576p) [Offline] -http://51.210.199.50/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SolhTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/bAbNyIt.jpg" group-title="",Solh TV (576p) [Not 24/7] -http://51.210.199.42/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ToloTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://pbs.twimg.com/profile_images/579001245697908737/bSnXEBFo_400x400.jpeg" group-title="",Tolo TV (720p) -https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolotv.m3u8 -#EXTINF:-1 tvg-id="Tuti.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/JerfIBt.jpg" group-title="",Tuti (480p) [Not 24/7] -https://rrsatrtmp.tulix.tv/livecdn827/myStream.sdp/playlist.m3u8 diff --git a/channels/ag.m3u b/channels/ag.m3u deleted file mode 100644 index 821237843..000000000 --- a/channels/ag.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABSTV.ag" tvg-country="AG" tvg-language="English" tvg-logo="" group-title="",ABS TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ diff --git a/channels/al.m3u b/channels/al.m3u deleted file mode 100644 index beb9dd5dc..000000000 --- a/channels/al.m3u +++ /dev/null @@ -1,263 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",7 HD (540p) [Not 24/7] -https://5d00db0e0fcd5.streamlock.net/7064/7064/playlist.m3u8 -#EXTINF:-1 tvg-id="21Mix.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Mix (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8756/playlist.m3u8 -#EXTINF:-1 tvg-id="21Plus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Plus (576p) [Not 24/7] -http://46.29.169.15:4001/play/a00b/index.m3u8 -#EXTINF:-1 tvg-id="21PopulloreHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Popullore HD (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8749/playlist.m3u8 -#EXTINF:-1 tvg-id="21RTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 RTV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8748/playlist.m3u8 -#EXTINF:-1 tvg-id="21TVMacedonia.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 TV Macedonia (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8790/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",A TV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8709/playlist.m3u8 -#EXTINF:-1 tvg-id="ABCNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://abcnews.al/wp-content/uploads/2020/11/cropped-abclogo.png" group-title="News",ABC News (720p) [Not 24/7] -https://tv2.abcnews.al/live/abcnews/playlist.m3u8 -#EXTINF:-1 tvg-id="AdriaTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Adria TV (480p) [Timeout] -https://tvlive.rtsh.dev/live/adriamed/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbaniaFolk.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Albania Folk (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8759/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbanianTVAmerica.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Albanian TV America (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8711/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbMusikHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",AlbMusik HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8821/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbUKTV.uk" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/gRvEH4v.png" group-title="",AlbUK TV (1080p) [Not 24/7] -http://albuk.dyndns.tv:1935/albuk/albuk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ALPO.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/00hiXCL.png" group-title="",ALPO (720p) [Not 24/7] -https://5d00db0e0fcd5.streamlock.net/7236/7236/playlist.m3u8 -#EXTINF:-1 tvg-id="Alsat.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Alsat (1080p) [Not 24/7] -http://93.157.62.180/AlsatM/index.m3u8 -#EXTINF:-1 tvg-id="ARTAHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",ARTA HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8745/playlist.m3u8 -#EXTINF:-1 tvg-id="ATD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",ATD (1080p) -http://46.99.146.236/0.m3u8 -#EXTINF:-1 tvg-id="BabyTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",BabyTV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8747/playlist.m3u8 -#EXTINF:-1 tvg-id="BangBang.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TD4J83Q.png" group-title="Kids",Bang Bang (576p) [Not 24/7] -http://93.157.62.180/BangBang/index.m3u8 -#EXTINF:-1 tvg-id="BBFMusicTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",BBF Music TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8795/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel117.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Channel 117 (1080p) [Offline] -https://shkoder.gjirafa.com/api/media/rgjirafa/t0110y/index.m3u8 -#EXTINF:-1 tvg-id="Cufo.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/cjVAXnZ.png" group-title="Kids",Çufo (576p) -http://93.157.62.180/Cufo/index.m3u8 -#EXTINF:-1 tvg-id="DigitalbAktionHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Aktion HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8742/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbAutor.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Autor (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8753/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP1.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Big Brother VIP 1 (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8803/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Big Brother VIP 2 (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8804/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbDrame.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Dramë (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8727/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbDYHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb DY HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8731/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbEurofilm.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Eurofilm (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8758/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbFamilyHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Family HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8754/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8746/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHistori.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Histori (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8729/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHitsHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Hits HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8755/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbKomedi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Komedi (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8752/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbNatyra.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Natyra (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8739/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbNjeHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Një HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8730/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbShkense.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Shkensë (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8726/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbStinet.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Stinët (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8751/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbThriller.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Thriller (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8757/playlist.m3u8 -#EXTINF:-1 tvg-id="Drame.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Drame (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8883/playlist.m3u8 -#EXTINF:-1 tvg-id="dTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",dTV HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8793/playlist.m3u8 -#EXTINF:-1 tvg-id="ElrodiTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Elrodi TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8718/playlist.m3u8 -#EXTINF:-1 tvg-id="FaxNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Fax News (360p) [Not 24/7] -http://edge01eu.ekranet.com/faxnews/index.m3u8 -#EXTINF:-1 tvg-id="FirstChannel.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",First Channel (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8717/playlist.m3u8 -#EXTINF:-1 tvg-id="FrameTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Frame TV (1080p) [Not 24/7] -http://195.154.252.221:8000/play/a002/index.m3u8 -#EXTINF:-1 tvg-id="KHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",K HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8710/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanali7.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://tv2go.t-2.net/static/media/img/channels/dark/ios/small/retina/145526.png" group-title="",Kanali 7 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8761/playlist.m3u8 -#EXTINF:-1 tvg-id="KLAN.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/pWoMc0r.png" group-title="",KLAN [Timeout] -http://79.106.73.244:4040/live/klanhdmob/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8704/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanMakedonia.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan Makedonia (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8789/playlist.m3u8 -#EXTINF:-1 tvg-id="KLANNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/NMtr8Z4.jpg" group-title="News",KLAN News [Offline] -http://51.195.88.12:4050/live/klannewsmobpp3/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan Plus (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8720/playlist.m3u8 -#EXTINF:-1 tvg-id="KLANPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/xg23eK4.jpg" group-title="News",KLAN Plus [Offline] -http://51.195.88.12:4050/live/klanplusmobpp3/playlist.m3u8 -#EXTINF:-1 tvg-id="Komedi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Komedi (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8881/playlist.m3u8 -#EXTINF:-1 tvg-id="Kosova.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Kosova (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8706/playlist.m3u8 -#EXTINF:-1 tvg-id="KTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",KTV HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8705/playlist.m3u8 -#EXTINF:-1 tvg-id="Max.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Max (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8882/playlist.m3u8 -#EXTINF:-1 tvg-id="MPT2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",MPT 2 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8728/playlist.m3u8 -#EXTINF:-1 tvg-id="Muse.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringMuse_logo.png" group-title="",Muse (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8778/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/PWGMnzW.jpg" group-title="News",News 24 (392p) [Not 24/7] -http://tv.balkanweb.com/news24/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="News24AL.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",News24 AL (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8724/playlist.m3u8 -#EXTINF:-1 tvg-id="Novela.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Novela (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8884/playlist.m3u8 -#EXTINF:-1 tvg-id="Opoja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Opoja (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8723/playlist.m3u8 -#EXTINF:-1 tvg-id="Oranews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Oranews (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8715/playlist.m3u8 -#EXTINF:-1 tvg-id="PeaceTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Peace TV (360p) -http://93.157.62.180/PeaceTV/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Peace TV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8792/playlist.m3u8 -#EXTINF:-1 tvg-id="PendimiTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Pendimi TV HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8786/playlist.m3u8 -#EXTINF:-1 tvg-id="QSportNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Q Sport News (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8785/playlist.m3u8 -#EXTINF:-1 tvg-id="ReportTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Report TV HD (576p) [Not 24/7] -http://93.157.62.180/ReportTV/index.m3u8 -#EXTINF:-1 tvg-id="RitaTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Rita TV (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8890/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH1.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 1 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_11mob1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH1HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 1 HD (406p) -http://93.157.62.180/RTSH1/index.m3u8 -#EXTINF:-1 tvg-id="RTSH2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/jEirJ9x.png" group-title="",RTSH 2 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_2ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH2HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 2 HD (720p) -http://93.157.62.180/RTSH2/index.m3u8 -#EXTINF:-1 tvg-id="RTSH3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TNNYFYj.png" group-title="",RTSH 3 (576p) -http://93.157.62.180/RTSH3/index.m3u8 -#EXTINF:-1 tvg-id="RTSH3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TNNYFYj.png" group-title="",RTSH 3 (406p) [Timeout] -https://tvlive.rtsh.dev/live/rtsh3ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLlUkn8.png" group-title="",RTSH 24 (1080p) -http://93.157.62.180/RTSH24/index.m3u8 -#EXTINF:-1 tvg-id="RTSH24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLlUkn8.png" group-title="",RTSH 24 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_24_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHAgro.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/Vh5MgY8.png" group-title="",RTSH Agro (480p) [Not 24/7] -http://93.157.62.180/RTSHAgro/index.m3u8 -#EXTINF:-1 tvg-id="RTSHAgro.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/Vh5MgY8.png" group-title="",RTSH Agro (480p) [Timeout] -https://tvlive.rtsh.dev/live/rtsh_agro_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHFemije.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/K7uClaf.png" group-title="",RTSH Femijë (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_femije_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHFilm.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/CB2zett.png" group-title="",RTSH Film (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_film_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHGjirokastra.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/lXq6WsR.png" group-title="",RTSH Gjirokastra (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_gjirokastra_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKorca.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RtJnrvm.jpg" group-title="",RTSH Korça (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_korca_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKukesi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/gNhoDAX.png" group-title="",RTSH Kukësi (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_kukesi_ott_p2/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKuvend.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/k83keY8.png" group-title="",RTSH Kuvend (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_kuvendi_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHMuzike.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/AXXlIgR.png" group-title="",RTSH Muzike (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_muzike_mob/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UiDzIUN.png" group-title="",RTSH Plus (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_plus_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHSatelit.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTSH Satelit (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8701/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHShkolle.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/e8KhDGp.png" group-title="",RTSH Shkollë (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_shkolle_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHShqip.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IBpZiuO.png" group-title="",RTSH Shqip (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_shqip_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHSport.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/rCTH2iP.png" group-title="",RTSH Sport (720p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_sport_ott11/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDukagjini.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Dukagjini (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8788/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVFontana.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Fontana (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8852/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVIlirida.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Ilirida (360p) [Not 24/7] -https://5a1178b42cc03.streamlock.net/rtvilirida/rtvilirida/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVSCAN.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV SCAN (480p) [Not 24/7] -http://edge01eu.ekranet.com/scantv/index.m3u8 -#EXTINF:-1 tvg-id="RTVislam.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTVislam (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8714/playlist.m3u8 -#EXTINF:-1 tvg-id="Shenja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Shenja (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8850/playlist.m3u8 -#EXTINF:-1 tvg-id="Shqiponja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Shqiponja (720p) [Offline] -http://ott.iptvshqipott.com:8080/live/shqiponja/tv/236.m3u8 -#EXTINF:-1 tvg-id="SofiaHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Sofia HD (576p) [Not 24/7] -http://93.157.62.180/Sofia/index.m3u8 -#EXTINF:-1 tvg-id="StarHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Star HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8781/playlist.m3u8 -#EXTINF:-1 tvg-id="SyriHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Syri HD (720p) [Not 24/7] -http://93.157.62.180/SyriTV/index.m3u8 -#EXTINF:-1 tvg-id="SyriTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="http://www.albepg.com/tvlogi/Syri%20Blue.png" group-title="",Syri TV (720p) [Not 24/7] -http://live.syri.tv:6969/live/syriblue/hd/23.ts -#EXTINF:-1 tvg-id="SyriTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="http://www.albepg.com/tvlogi/Syri%20Blue.png" group-title="",Syri TV (720p) [Not 24/7] -rtmp://live.syri.tv:8001/input/bluehd -#EXTINF:-1 tvg-id="TipTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TipTV.png" group-title="",Tip TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8776/playlist.m3u8 -#EXTINF:-1 tvg-id="TopChannel.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/top-channel-logo.png" group-title="",Top Channel (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8708/playlist.m3u8 -#EXTINF:-1 tvg-id="TopNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Top News (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x6inuzo -#EXTINF:-1 tvg-id="Tring3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring 3 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8773/playlist.m3u8 -#EXTINF:-1 tvg-id="TringActionHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Action HD (1080p) [Not 24/7] -http://93.157.62.180/TringAction/index.m3u8 -#EXTINF:-1 tvg-id="TringComedy.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringComedy.png" group-title="",Tring Comedy (1080p) [Geo-blocked] -http://93.157.62.180/TringComedy/index.m3u8 -#EXTINF:-1 tvg-id="TringFantasy.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://prd-static-mkt.spectar.tv/rev-1636968170/image_transform.php/transform/1/instance_id/1/video_id/126" group-title="",Tring Fantasy (576p) [Geo-blocked] -http://93.157.62.180/TringFantasy/index.m3u8 -#EXTINF:-1 tvg-id="TringHistory.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringHistory.png" group-title="",Tring History (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8765/playlist.m3u8 -#EXTINF:-1 tvg-id="TringJollyHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Jolly HD (1080p) [Not 24/7] -http://93.157.62.180/JollyHD/index.m3u8 -#EXTINF:-1 tvg-id="TringKids.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringKids_logo.png" group-title="",Tring Kids (576p) [Not 24/7] -http://93.157.62.180/TringKids/index.m3u8 -#EXTINF:-1 tvg-id="TringLife.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Life (1080p) -http://93.157.62.180/TringLife/index.m3u8 -#EXTINF:-1 tvg-id="TringPlanet.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringPlanet.png" group-title="",Tring Planet (576p) -http://93.157.62.180/TringPlanet/index.m3u8 -#EXTINF:-1 tvg-id="TringShqip.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringShqip.png" group-title="",Tring Shqip (576p) [Not 24/7] -http://93.157.62.180/TringShqip/index.m3u8 -#EXTINF:-1 tvg-id="TringSmile.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Smile (576p) -http://93.157.62.180/TringSmile/index.m3u8 -#EXTINF:-1 tvg-id="TringSuperHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Super HD (480p) -http://93.157.62.180/TringSuper/index.m3u8 -#EXTINF:-1 tvg-id="TringTring.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringTringTv.png" group-title="",Tring Tring (576p) [Not 24/7] -http://93.157.62.180/TringTring/index.m3u8 -#EXTINF:-1 tvg-id="TringWorld.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring World (576p) -http://93.157.62.180/TringWorld/index.m3u8 -#EXTINF:-1 tvg-id="TurboTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Turbo TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8839/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Albania.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/k9WqPLZ.png" group-title="",TV 7 Albania (540p) [Not 24/7] -http://media.az-mediaserver.com:1935/7064/7064/playlist.m3u8 -#EXTINF:-1 tvg-id="TVApollon.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Apollon (720p) -https://live.apollon.tv/Apollon-WEB/video.m3u8?token=tnt3u76re30d2 -#EXTINF:-1 tvg-id="TVDielli.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Dielli (720p) -http://93.157.62.180/DielliTV/index.m3u8 -#EXTINF:-1 tvg-id="TVKoha.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/AJ472ot.png" group-title="",TV Koha (720p) [Offline] -rtmp://live.tvkoha.tv/live/koha -#EXTINF:-1 tvg-id="TVLlapi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Llapi (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8823/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOpoja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/De7sZf6.jpg" group-title="",TV Opoja (720p) [Not 24/7] -http://ip.opoja.tv:1935/tvopoja/tvopoja/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPlisi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Plisi (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8735/playlist.m3u8 -#EXTINF:-1 tvg-id="VPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",V Plus (1080p) -http://93.157.62.180/VizionPlus/index.m3u8 -#EXTINF:-1 tvg-id="ZjarrTelevizion.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UValLp1.png" group-title="",Zjarr Televizion (360p) [Not 24/7] -http://edge01eu.ekranet.com/zjarrtv/index.m3u8 diff --git a/channels/am.m3u b/channels/am.m3u deleted file mode 100644 index 34dd789b0..000000000 --- a/channels/am.m3u +++ /dev/null @@ -1,73 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="5TV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/yigw9dr.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",5-րդ ալիք (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s6/index.m3u8 -#EXTINF:-1 tvg-id="21TV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/21_TV_Armenia_logo.svg/785px-21_TV_Armenia_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",21TV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s10/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaPremium.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/IxOFvqz.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Premium (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s83/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaHayKino.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/XwbLfqd.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Հայ Կինո (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s22/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaJanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/AhX46e5.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Armenia Ջան TV (480p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s42/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaSinemaks.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/fRfGuQg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Սինեմաքս (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s66/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaTownTownik.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/XjhkUXy.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Kids",Armenia Տուն Թունիկ (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s46/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaKomedi.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/pvF7dGN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Comedy",Armenia Քոմեդի (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s32/index.m3u8 -#EXTINF:-1 tvg-id="ATV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/9/9c/Atvnew.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",ATV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s8/index.m3u8 -#EXTINF:-1 tvg-id="ATVTavaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/cndJCRU.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",ATV Թավա TV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s53/index.m3u8 -#EXTINF:-1 tvg-id="ATVKhaghaliqTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/mrfm9uY.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Kids",ATV ԽաղԱլիք (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s74/index.m3u8 -#EXTINF:-1 tvg-id="ATVKinoman.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/lidNHkH.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",ATV Կինոման (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s94/index.m3u8 -#EXTINF:-1 tvg-id="ATVHayTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/KCkzU5R.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",ATV Հայ TV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s73/index.m3u8 -#EXTINF:-1 tvg-id="ATVFilmzone.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/uWBrDpV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",ATV Ֆիլմզոն (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s48/index.m3u8 -#EXTINF:-1 tvg-id="H1.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Armenian_Public_TV_logo.svg/507px-Armenian_Public_TV_logo.svg.png" group-title="General",Առաջին ալիք (1080p) -http://serv24.vintera.tv:8081/test/h1_arm/index.m3u8 -#EXTINF:-1 tvg-id="H1.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Armenian_Public_TV_logo.svg/507px-Armenian_Public_TV_logo.svg.png" group-title="General",Առաջին ալիք (1080p) -https://amtv1.livestreamingcdn.com/am2abr/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/fnoOw8T.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Արմենիա TV (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s4/index.m3u8 -#EXTINF:-1 tvg-id="ArmNews.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/0vrFGY5.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Արմնյուզ (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s11/index.m3u8 -#EXTINF:-1 tvg-id="YerkirMediaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/FKpxkVH.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Երկիր Մեդիա (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s7/index.m3u8 -#EXTINF:-1 tvg-id="KentronTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/g7pEQG6.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Կենտրոն (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s5/index.m3u8 -#EXTINF:-1 tvg-id="H2.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Armenian_Second_TV_Channel_logo.svg/800px-Armenian_Second_TV_Channel_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Հ2 (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s2/index.m3u8 -#EXTINF:-1 tvg-id="NorHayastanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EmOsMTC.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Նոր Հայաստան (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s12/index.m3u8 -#EXTINF:-1 tvg-id="NorHayastanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EmOsMTC.png" group-title="General",Նոր Հայաստան (720p) [Offline] -https://cdn.onarmtv.com/str/7/output.m3u8 -#EXTINF:-1 tvg-id="ShantTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EbqVba3.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Շանթ (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s3/index.m3u8 -#EXTINF:-1 tvg-id="ShoghakatTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/e4VxCnn.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Religious",Շողակաթ (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s13/index.m3u8 diff --git a/channels/ao.m3u b/channels/ao.m3u deleted file mode 100644 index 731119cc7..000000000 --- a/channels/ao.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TPA1.ao" tvg-country="AO" tvg-language="Portuguese" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5762b5256aff3.png" group-title="General",TPA 1 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/angola/tpa1 -#EXTINF:-1 tvg-id="TVZimbo.ao" tvg-country="AO" tvg-language="Portuguese" tvg-logo="https://www.tvzimbo.ao/temas/tvzimbo/assets/img/logo-programacao.png" group-title="General",TV Zimbo (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/angola/tv-zimbo diff --git a/channels/ar.m3u b/channels/ar.m3u deleted file mode 100644 index 14baf4d91..000000000 --- a/channels/ar.m3u +++ /dev/null @@ -1,176 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="5RTv.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wCQJuaU.jpg" group-title="",5RTv (720p) [Not 24/7] -https://api.new.livestream.com/accounts/22636012/events/8242619/live.m3u8 -#EXTINF:-1 tvg-id="5TV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kujnLsO.png" group-title="",5TV (Corrientes) (480p) [Not 24/7] -http://www.coninfo.net:1935/tvcinco/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="247CanaldeNoticias.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6miysb8.png" group-title="News",24/7 Canal de Noticias (720p) -https://59c5c86e10038.streamlock.net/6605140/6605140/playlist.m3u8 -#EXTINF:-1 tvg-id="247CanaldeNoticias.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6miysb8.png" group-title="News",24/7 Canal de Noticias (720p) -https://panel.dattalive.com/6605140/6605140/playlist.m3u8 -#EXTINF:-1 tvg-id="A24.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_america-24_m.png" user-agent="iPhone" group-title="News",A24 (720p) -#EXTVLCOPT:http-user-agent=iPhone -https://g1.vxral-hor.transport.edge-access.net/a15/ngrp:a24-100056_all/a24-100056.m3u8 -#EXTINF:-1 tvg-id="AmericaSports.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AmericaSports/picture?width=320&height=320" group-title="Sports",América Sports (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnx743KuO_16sCMIbEg7Y7Q/live -#EXTINF:-1 tvg-id="AmericaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_america-2-capital_m.png" user-agent="iPhone" group-title="General",América TV (720p) -#EXTVLCOPT:http-user-agent=iPhone -https://raw.githubusercontent.com/MachineSystems/archived_m3u8/main/america_hls.m3u8 -#EXTINF:-1 tvg-id="ArgentinisimaSatelital.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Jo7p7yZ.png" group-title="",Argentinísima Satelital (720p) -http://186.0.233.76:1935/Argentinisima/smil:argentinisima.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 2 Jujuy (720p) [Not 24/7] -http://api.new.livestream.com/accounts/679322/events/3782013/live.m3u8 -#EXTINF:-1 tvg-id="Canal3Pinamar.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 3 Pinamar (360p) [Not 24/7] -http://www.intelintec.com.ar:9090/hls/canal3pinamar.m3u8 -#EXTINF:-1 tvg-id="Canal3Rosario.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 3 Rosario (704p) [Geo-blocked] -https://59d52c5a5ce5e.streamlock.net:4443/canal3rosario/ngrp:canal3rosario_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 (Posadas) (360p) [Geo-blocked] -http://184.154.28.210:1935/canal4/canal4/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Balcarce.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://canal4teleba.com.ar/wp-content/uploads/2016/12/teleba-youtube.jpg" group-title="",Canal 4 Balcarce (480p) [Not 24/7] -http://inliveserver.com:1935/8550/8550/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcT1gHj_nLWhaGNfk5gYfEoENvdvYEEnrlFWCQ&usqp=CAU" group-title="",Canal 4 Jujuy (720p) -http://190.52.32.13:1935/canal4/smil:manifest.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.pixabay.com/photo/2017/05/07/14/59/flag-2292664_960_720.png" group-title="",Canal 4 Jujuy (720p) -https://5cd577a3dd8ec.streamlock.net/canal4/smil:manifest.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Posadas.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fgrauI0.png" group-title="",Canal 4 Posadas (360p) [Geo-blocked] -http://184.154.28.210:1935/canal4/canal4/live.m3u8 -#EXTINF:-1 tvg-id="C5N.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_c5n_m.png" group-title="News",Canal 5 Noticias (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/c5n/live -#EXTINF:-1 tvg-id="Canal7SALTA.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3v0JfX-x7l_CBLGgk-PyioJ4pEOIlRkwaOA&usqp=CAU" group-title="",Canal 7 SALTA (404p) [Geo-blocked] -https://589ff3c36f7e8.streamlock.net/crespo3/crespo3/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9ComodoroRivadavia.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.pixabay.com/photo/2017/05/07/14/59/flag-2292664_960_720.png" group-title="",Canal 9 (Comodoro Rivadavia) (576p) [Not 24/7] -https://live.canalnueve.tv/canal.m3u8 -#EXTINF:-1 tvg-id="Canal9Televida.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIgMORTmDFYoZ568zWDgjQ-hkmEHYDVGTFCw&usqp=CAU" group-title="",Canal 9 Televida (720p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/viviloendirecto2/canal9/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10MardelPlata.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/4e/Canal_10_Mar_del_Plata_%28Logo_2010%29.png" group-title="",Canal 10 Mar del Plata (720p) [Not 24/7] -https://cdn2.zencast.tv:30443/live/canal10smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10RioNegro.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PE2Gi3N.png" group-title="Local",Canal 10 Rio Negro (720p) [Not 24/7] -http://panel.dattalive.com:1935/8204/8204/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11LaRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://www.fenix951.com.ar/nuevo_2013/a2017/assets/imgapp/logocanal.jpeg" group-title="",Canal 11 La Rioja (Fénix Multiplataforma) (360p) -http://stmv4.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12PuertoMadryn.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 12 Puerto Madryn (720p) [Not 24/7] -https://5f700d5b2c46f.streamlock.net/madryntv/madryntv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13LaRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2017/10/13rioja.png" group-title="",Canal 13 La Rioja (480p) -http://arcast.net:1935/mp/mp/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (720p) -http://200.115.193.177/live/26hd-720/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (720p) -http://live-edge02.telecentro.net.ar/live/c26.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (360p) -http://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalC.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal C (Córdoba | Provincia de Córdoba) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canalccordoba -#EXTINF:-1 tvg-id="CanaldelaCiudad.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_ciudad-abierta_m.png" user-agent="iPhone" group-title="",Canal de la Ciudad (720p) [Offline] -#EXTVLCOPT:http-user-agent=iPhone -https://g5.proy-hor.transport.edge-access.net/a08/ngrp:gcba_video4-100042_all/Playlist.m3u8?sense=true -#EXTINF:-1 tvg-id="CanalLuz.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" user-agent="iPhone" group-title="",Canal Luz (1080p) -#EXTVLCOPT:http-user-agent=iPhone -https://g2.vxral-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8 -#EXTINF:-1 tvg-id="CanalMilenium.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/08/canal-milenium-salta-90x67.jpg" group-title="",Canal Milenium [Offline] -https://panel.tuvideostreaming.com:19360/8002/8002.m3u8 -#EXTINF:-1 tvg-id="CanalProvincial.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal Provincial (San Miguel) (360p) [Not 24/7] -http://www.trimi.com.ar/provincial/streaming/mystream.m3u8 -#EXTINF:-1 tvg-id="CANALTDC.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2018/02/TDC-TV-Santa-F%C3%A9-en-vivo-Online.png" group-title="",CANAL TDC (1080p) [Not 24/7] -https://5e7cdf2370883.streamlock.net/tdconline/tdconline/playlist.m3u8 -#EXTINF:-1 tvg-id="CANAL9MULTIVISION.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSg84RxHjkboUjpSwVwVYl7oviFLwGDJs-4UCKzP-JMCdIE4MOb&s" group-title="",CANAL.9 MULTIVISION (720p) [Not 24/7] -https://panel.dattalive.com/8250/8250/playlist.m3u8 -#EXTINF:-1 tvg-id="canalLUZ.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.canalluz.org/assets/images/logo-2020-250x79.png" user-agent="Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36" group-title="Religious",canalLUZ (1080p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 -https://g1.mc-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8?sense=true -#EXTINF:-1 tvg-id="CatacamaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Catacama TV (1080p) -https://5f700d5b2c46f.streamlock.net/catamarcatelevision/catamarcatelevision/playlist.m3u8 -#EXTINF:-1 tvg-id="ChacoTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/JbxMs5i.png" group-title="Local",Chaco TV (720p) [Not 24/7] -https://5b7ecefab6325.streamlock.net/Streamtv/chacotv/playlist.m3u8 -#EXTINF:-1 tvg-id="ChacraTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mZlUGBf.jpg" group-title="",Chacra TV (480p) [Not 24/7] -https://s8.stweb.tv/chacra/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CincoTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.pinimg.com/originals/2d/18/54/2d185451c3cc188c39add960b94c6844.png" group-title="",Cinco TV (480p) [Not 24/7] -https://59537faa0729a.streamlock.net/cincotv/cincotv/playlist.m3u8 -#EXTINF:-1 tvg-id="CINEAR.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.totalmedios.com/img/noticias/2018/04/5ae3127f4ef2e__838x390.jpg" group-title="",CINE.AR (720p) [Not 24/7] -https://5fb24b460df87.streamlock.net/live-cont.ar/cinear/playlist.m3u8 -#EXTINF:-1 tvg-id="CiudadTVResistencia.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WxzqqFQ.jpg" group-title="Local",Ciudad TV Resistencia (Chaco) (720p) [Not 24/7] -http://coninfo.net:1935/chacodxdtv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CN3Pinamar.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",CN3 Pinamar (720p) [Not 24/7] -https://wowza.telpin.com.ar:1935/canal3/canal3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CPEtv.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/75UgF.png" group-title="",CPEtv (720p) [Offline] -https://dcunilive28-lh.akamaihd.net/i/dclive_1@533583/master.m3u8 -#EXTINF:-1 tvg-id="CrossingTVCrossingContenidos.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Crossing TV (Crossing Contenidos) (720p) [Not 24/7] -https://vivo.solumedia.com:19360/crossing/crossing.m3u8 -#EXTINF:-1 tvg-id="DeporTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_dxtv_m.png" group-title="Sports",DeporTV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSmh3DFxBwFurMttT60PQ1g/live -#EXTINF:-1 tvg-id="ElDoceTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",El Doce TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?feature=emb_title&streaming-ip=https://www.youtube.com/watch?v=gBbMbqILzXU -#EXTINF:-1 tvg-id="ElGarageTV.ar" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/cd0hP5e.png" group-title="Auto",El Garage TV (480p) [Not 24/7] -http://186.0.233.76:1935/Garage/smil:garage.smil/master.m3u8 -#EXTINF:-1 tvg-id="ElOnce.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",ElOnce (1080p) [Not 24/7] -https://elonceovh.elonce.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="Encuentro.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_encuentro_m.png" group-title="General",Encuentro (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC1zLDoKL-eKmd_K7qkUZ-ow/live -#EXTINF:-1 tvg-id="FenixTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Op0zdh5.jpg" group-title="Local",Fenix TV (Ciudad de La Rioja) (360p) -https://stmv1.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 -#EXTINF:-1 tvg-id="GenTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",GenTV (720p) [Not 24/7] -https://videohd.live:19360/8010/8010.m3u8 -#EXTINF:-1 tvg-id="InformacionPeriodística.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="News",Informacion Periodística (1080p) -https://d1nmqgphjn0y4.cloudfront.net/live/ip/live.isml/5ee6e167-1167-4a85-9d8d-e08a3f55cff3.m3u8 -#EXTINF:-1 tvg-id="LaVozDeTucuman.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://lavozdetucuman.com/wp-content/uploads/2021/11/LOGOTRANSPARENTE2-1-600x187.png" group-title="",La Voz de Tucuman (480p) -https://srv1.zcast.com.br/lavozdetucuman/lavozdetucuman/playlist.m3u8 -#EXTINF:-1 tvg-id="LivePeruTVStreaming.ar" tvg-country="AR;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/liveperutv/picture?width=320&height=320" group-title="General",Live Perú TV Streaming (720p) [Not 24/7] -http://209.126.108.55/app/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MagicKids.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="",Magic Kids (720p) [Not 24/7] -https://live.admefy.com/live/default/rival_maroon_4fb1e.m3u8 -#EXTINF:-1 tvg-id="MediosRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Medios Rioja (864p) [Not 24/7] -http://streamyes.alsolnet.com/mediosrioja/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MultivisionFederal.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sZ1yE4e.png" group-title="",Multivisión Federal (720p) [Not 24/7] -http://panel.dattalive.com:1935/8250/8250/playlist.m3u8 -#EXTINF:-1 tvg-id="MusicTop.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_musictop_m.png" group-title="Music",MusicTop (720p) -http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/J7stpmb.png" group-title="",Net TV (720p) -https://unlimited6-cl.dps.live/nettv/nettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/J7stpmb.png" group-title="",Net TV (720p) [Not 24/7] -https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Pakapaka.ar" tvg-country="AR;PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AKedOLQbue1WVK5s0ne8sFBVwxf6u7-TbKAdPjK-YCHI8g=s400-c-k-c0x00ffffff-no-rj" group-title="Kids",Pakapaka (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCVVNYxncuD4EfHpKDlPIYcQ/live -#EXTINF:-1 tvg-id="PlanetaMultimedios.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Music",Planeta Multimedios (720p) [Not 24/7] -https://videostream.shockmedia.com.ar:19360/planetamultimedia/planetamultimedia.m3u8 -#EXTINF:-1 tvg-id="PowerTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Power TV (720p) [Not 24/7] -https://wowza.telpin.com.ar:1935/live-powerTV/power.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QuatroTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Quatro TV (540p) [Not 24/7] -https://59d52c5a5ce5e.streamlock.net:4443/quatro/quatro/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVNeuquen.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.televisiongratis.tv/components/com_televisiongratis/images/rtn-neuqun-1517.jpg" group-title="",Radio TV Neuquen (720p) [Not 24/7] -http://media.neuquen.gov.ar/rtn/television/playlist.m3u8 -#EXTINF:-1 tvg-id="RTN.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/daMqavf.jpg" group-title="",RTN (Neuquén) (720p) [Not 24/7] -http://media.neuquen.gov.ar/rtn/television/media.m3u8 -#EXTINF:-1 tvg-id="SantaMariaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Santa María TV (360p) [Not 24/7] -http://www.trimi.com.ar/santa_maria/streaming/mystream.m3u8 -#EXTINF:-1 tvg-id="T5Satelital.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Eu7rHtj.jpg" group-title="",T5 Satelital (540p) [Not 24/7] -https://api.new.livestream.com/accounts/20819504/events/8664197/live.m3u8 -#EXTINF:-1 tvg-id="Telefe.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Telefe (480p) [Not 24/7] -http://170.83.242.153:8000/play/a00b -#EXTINF:-1 tvg-id="TelefeRosario.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_telefe-rosario_m.png" group-title="Local",Telefe Rosario (720p) [Not 24/7] -http://telefewhitehls-lh.akamaihd.net/i/whitelist_hls@302302/master.m3u8 -#EXTINF:-1 tvg-id="TeleJunin.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",TeleJunín (576p) [Not 24/7] -https://videostream.shockmedia.com.ar:1936/telejunin/telejunin/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemax.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1XgRcmd.png" group-title="",Telemax (720p) -http://live-edge01.telecentro.net.ar/live/smil:tlx.smil/master.m3u8 -#EXTINF:-1 tvg-id="TelenordCorrientes.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/byxXHzq.png" group-title="Local",Telenord Corrientes (1080p) [Not 24/7] -http://www.coninfo.net:1935/previsoratv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TelesolTLS.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://telesol.tv/wp-content/uploads/2020/06/LOGO-FINAL-TELESOL-2020.png" group-title="",Telesol (TLS) (432p) [Not 24/7] -https://cnnsanjuan.com:9999/live/telesol/playlist.m3u8 -#EXTINF:-1 tvg-id="TelpinCanal2.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/B2lKSvo.png" group-title="",Telpin Canal 2 (360p) [Not 24/7] -https://wowza.telpin.com.ar:1935/telpintv/smil:ttv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelpinTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Telpin TV (1080p) [Not 24/7] -https://wowza.telpin.com.ar:1935/telpintv/ttv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TierraMiaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2018_09/small.Logo_TierramiaTV.png.52a0b19eb1a7425c43898d0766558d1a.png" group-title="",Tierra Mía TV (720p) -http://live-edge01.telecentro.net.ar/live/smil:trm.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Toonizaki.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/toonizaki/picture?width=300&height=300" group-title="Animation",Toonizaki (720p) [Not 24/7] -https://live.admefy.com/live/default/great_salmon_9bd9d.m3u8 -#EXTINF:-1 tvg-id="TVManaArgentina.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GVI8kkp.jpg" group-title="Local",TV Maná Argentina (576p) [Not 24/7] -http://streamspub.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPublica.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/0a/Logo_Televisi%C3%B3n_P%C3%BAblica_Argentina.png" group-title="General",TV Pública (TVP) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/TVPublicaArgentina/live -#EXTINF:-1 tvg-id="TVUniversidad.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/960549144657002496/9Rdtd6Ke_400x400.jpg" group-title="Education",TVU Universidad Nacional de La Plata (720p) [Not 24/7] -https://stratus.stream.cespi.unlp.edu.ar/hls/tvunlp.m3u8 -#EXTINF:-1 tvg-id="Venus.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="XXX",Venus (480p) [Offline] -http://170.83.242.153:8000/play/a00z -#EXTINF:-1 tvg-id="VTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vertvgs/picture?width=320&height=320" group-title="",VerTV (VTV) (720p) [Not 24/7] -https://5f700d5b2c46f.streamlock.net/vertv/vertv/playlist.m3u8 -#EXTINF:-1 tvg-id="Vorterix.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vorterix/picture?width=320&height=320" group-title="Entertainment",Vorterix (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvCTWHCbBC0b9UIeLeNs8ug/live diff --git a/channels/at.m3u b/channels/at.m3u deleted file mode 100644 index ee574f1a2..000000000 --- a/channels/at.m3u +++ /dev/null @@ -1,61 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="antennevorarlberg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/cnMTcPw.png" group-title="Music",Antenne Vorarlberg (720p) [Not 24/7] -https://5857db5306b83.streamlock.net/antennevorarlberg-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="DorfTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/SK9IQ1Z.png" group-title="",Dorf TV (576p) -https://stream.openplayout.org/hls/dorftv/live.m3u8 -#EXTINF:-1 tvg-id="FS1Salzburg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/HSRpYUl.jpg" group-title="",FS1 Salzburg (720p) [Not 24/7] -http://stream.fs1.tv:8080/hls/webstream.m3u8 -#EXTINF:-1 tvg-id="FS1Salzburg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/HSRpYUl.jpg" group-title="",FS1 Salzburg (720p) [Not 24/7] -https://stream.fs1.tv/hls/webstream.m3u8 -#EXTINF:-1 tvg-id="GoTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/UxISEZf.png" group-title="",GoTV (576p) [Timeout] -https://nstream17.gotv.at:1443/live/gotvlive/manifest.mpd -#EXTINF:-1 tvg-id="HitradioO3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/pb4Iqno.png" group-title="",Hitradio Ö3 (720p) [Not 24/7] -https://studiocam-oe3.mdn.ors.at/out/u/studiocam_oe3/q6a/manifest_1.m3u8 -#EXTINF:-1 tvg-id="HitradioO3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/pb4Iqno.png" group-title="",Hitradio Ö3 (360p) [Offline] -http://185.85.28.19/oe3sd/orf.sdp/master.m3u8 -#EXTINF:-1 tvg-id="KTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/OyOPRtq.png" group-title="",K-TV (720p) -https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 -#EXTINF:-1 tvg-id="KroneTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/kronetv.png" group-title="",Krone.TV (360p) -https://kronetv.mdn.ors.at/out/u/kronetv-nodrm.m3u8 -#EXTINF:-1 tvg-id="Kronehit.at" tvg-country="AT" tvg-language="German" tvg-logo="" group-title="Music",Kronehit (1080p) -https://bitcdn-kronehit.bitmovin.com/v2/hls/playlist.m3u8 -#EXTINF:-1 tvg-id="M4.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/xmfgBrg.png" group-title="",M4 (1090p) [Not 24/7] -https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="oe24TV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oe24tv.png" group-title="",oe24 TV (1080p) -https://varoe24live.sf.apa.at/oe24-live1/oe24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OktoEight.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/Z9LgT0v.jpg" group-title="",Okto Eight (720p) [Offline] -https://d38d1dtxhym0zi.cloudfront.net/LiveHTTPOrigin/okto/playlist.m3u8 -#EXTINF:-1 tvg-id="OktoTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Okto.svg/150px-Okto.svg.png" group-title="",Okto TV [Offline] -https://d2i6psfxyapxwi.cloudfront.net/out/v1/f0cc8e3aceb64ad8968231dc5a0041d4/index.m3u8 -#EXTINF:-1 tvg-id="ORF1.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/ORF1_logo.svg/1280px-ORF1_logo.svg.png" group-title="General",ORF 1 (720p) [Geo-blocked] -https://orf1.mdn.ors.at/out/u/orf1/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORF2.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/ORF2_logo_n.svg/1280px-ORF2_logo_n.svg.png" group-title="",ORF 2 (540p) [Geo-blocked] -https://orf2.mdn.ors.at/out/u/orf2/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORF3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/40/ORF_III_Logo.png" group-title="",ORF 3 (540p) [Geo-blocked] -https://orf3.mdn.ors.at/out/u/orf3/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORFSportPlus.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/ORF_Sport%2B.svg/1200px-ORF_Sport%2B.svg.png" group-title="Sports",ORF Sport+ (540p) [Geo-blocked] -https://orfs.mdn.ors.at/out/u/orfs/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="P3tv.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/C6Hp5Pb.jpg" group-title="",P3tv (720p) [Not 24/7] -http://p3-6.mov.at:1935/live/weekstream/master.m3u8 -#EXTINF:-1 tvg-id="PremiumChannel.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/XLeth50.jpg" group-title="",Premium Channel [Not 24/7] -http://premium-channel.tv:88/live/kali.m3u8 -#EXTINF:-1 tvg-id="R9.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/Wu6SMvb.png" group-title="",R9 (720p) [Not 24/7] -https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RedBullTV.at" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/7NeBmWX.jpg" group-title="Sports",Red Bull TV (1080p) -https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8 -#EXTINF:-1 tvg-id="RTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rtvat.png" group-title="",RTV (1080p) -http://iptv.rtv-ooe.at/stream.m3u8 -#EXTINF:-1 tvg-id="SchauTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://image.schautv.at/images/cfs_616w/3123676/schautv_homepagebanner_twitter.png" group-title="",SchauTV (720p) -https://schautv.mdn.ors.at/out/u/schautv-nodrm.m3u8 -#EXTINF:-1 tvg-id="SwamijiTV.at" tvg-country="AT" tvg-language="English" tvg-logo="https://i.imgur.com/ygkBFYT.jpg" group-title="Outdoor",Swamiji TV (720p) [Not 24/7] -https://stream.swamiji.tv/YogaIPTV/smil:YogaStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TeinsTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/KJie1k5.png" group-title="",Teins TV (1080p) [Not 24/7] -https://live1.markenfunk.com/t1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TirolTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/0jHWmjL.png" group-title="",Tirol TV (720p) [Not 24/7] -https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8 -#EXTINF:-1 tvg-id="UpperaBalkan.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/4fAkcCd.jpg" group-title="",Uppera Balkan (720p) [Geo-blocked] -http://89.187.168.245:8080/live/sUPPERchannel2/index.m3u8 -#EXTINF:-1 tvg-id="UPPERACommunityTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/4fAkcCd.jpg" group-title="",UPPERA Community TV [Geo-blocked] -http://89.187.168.245:8080/live/sUPPERchannel/index.m3u8 -#EXTINF:-1 tvg-id="W24.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/J25y9ah.png" group-title="",W24 (720p) [Not 24/7] -https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8 diff --git a/channels/at_samsung.m3u b/channels/at_samsung.m3u deleted file mode 100644 index e026f6ed0..000000000 --- a/channels/at_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RakutenTVActionMoviesAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/81NIxYJ.jpg" group-title="Movies",Rakuten TV Action Movies Austria (720p) [Offline] -https://rakuten-actionmovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/slOK2IH.jpg" group-title="Movies",Rakuten TV Comedy Movies Austria (720p) [Offline] -https://rakuten-comedymovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/5bC53Xk.jpg" group-title="Movies",Rakuten TV Drama Austria (720p) [Offline] -https://rakuten-tvshows-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Austria (720p) [Offline] -https://rakuten-family-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/qgYRzl1.jpg" group-title="",Rakuten TV Spotlight Austria (720p) [Offline] -https://rakuten-spotlight-5-at.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/au.m3u b/channels/au.m3u deleted file mode 100644 index 159cb9bc9..000000000 --- a/channels/au.m3u +++ /dev/null @@ -1,119 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3AW.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Uvie0ws.png" group-title="",3AW (Melbourne) (574p) [Not 24/7] -http://melb3awvid-lh.akamaihd.net/i/melbournevid_1@109381/master.m3u8 -#EXTINF:-1 tvg-id="7flix.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020525.png" group-title="",7flix [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020525.m3u8 -#EXTINF:-1 tvg-id="7mate.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020523.png" group-title="",7mate [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020523.m3u8 -#EXTINF:-1 tvg-id="7two.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020522.png" group-title="",7two [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020522.m3u8 -#EXTINF:-1 tvg-id="9Gem.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200427.png" group-title="",9Gem [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200427.m3u8 -#EXTINF:-1 tvg-id="9Go.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200428.png" group-title="",9Go! [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200428.m3u8 -#EXTINF:-1 tvg-id="9Life.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200424.png" group-title="",9Life [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200424.m3u8 -#EXTINF:-1 tvg-id="9Rush.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200429.png" group-title="",9Rush [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200429.m3u8 -#EXTINF:-1 tvg-id="10.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020625.png" group-title="",10 (720p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020625.m3u8 -#EXTINF:-1 tvg-id="10Bold.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020627.png" group-title="",10 Bold (540p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020627.m3u8 -#EXTINF:-1 tvg-id="10Peach.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020628.png" group-title="",10 Peach (540p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020628.m3u8 -#EXTINF:-1 tvg-id="10Shake.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020623.png" group-title="",10 Shake [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020623.m3u8 -#EXTINF:-1 tvg-id="ABCKids.au" tvg-country="AU" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/960892021/6dcf6804c2d739fe765563a1f28f493e" group-title="Kids",ABC Kids (720p) [Not 24/7] -https://c.mjh.nz/101002210222 -#EXTINF:-1 tvg-id="ABCME.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210224.png" group-title="",ABC ME (720p) -https://c.mjh.nz/101002210224 -#EXTINF:-1 tvg-id="ABCNews.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210220.png" group-title="News",ABC News (720p) -https://abc-iview-mediapackagestreams-2.akamaized.net/out/v1/6e1cc6d25ec0480ea099a5399d73bc4b/index.m3u8 -#EXTINF:-1 tvg-id="ABCNews.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210220.png" group-title="News",ABC News (720p) [Geo-blocked] -https://c.mjh.nz/101002210220 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) -https://c.mjh.nz/3201026102E1 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210221.png" group-title="",ABC TV (720p) -https://c.mjh.nz/101002210221 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) -https://c.mjh.nz/101002310231 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://static.epg.best/au/ABC.au.png" group-title="",ABC TV (720p) -https://c.mjh.nz/101002510251 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) -https://c.mjh.nz/101002710271 -#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) -https://c.mjh.nz/101002810281 -#EXTINF:-1 tvg-id="ABCTVPlus.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",ABC TV Plus (720p) -https://c.mjh.nz/abc2 -#EXTINF:-1 tvg-id="ACCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.acc.tv/wp-content/uploads/2016/06/acctv-logo-web.png" group-title="Religious",ACCTV (Adelaide) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/australia/acctv-adelaide -#EXTINF:-1 tvg-id="ACCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.acc.tv/wp-content/uploads/2016/06/acctv-logo-web.png" group-title="Religious",ACCTV (Melbourne) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/australia/acctv-melbourne -#EXTINF:-1 tvg-id="AflamMohtrama.au" tvg-country="AU" tvg-language="Arabic" tvg-logo="" group-title="",Aflam Mohtrama (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/mim21889/live -#EXTINF:-1 tvg-id="AusTamil.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Aus Tamil (720p) [Not 24/7] -https://bk7l2pn7dx53-hls-live.5centscdn.com/austamil/fe01ce2a7fbac8fafaed7c982a04e229.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ausbizTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7ausbiz.png" group-title="Business",ausbiz TV (720p) [Geo-blocked] -https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8 -#EXTINF:-1 tvg-id="AustraliaChannel.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="News",Australia Channel (720p) -https://austchannel-live.akamaized.net/hls/live/2002729/austchannel-news/master.m3u8 -#EXTINF:-1 tvg-id="C31Melbourne.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ge1EutY.png" group-title="General",C31 Melbourne (240p) -https://d1k6kax80wecy5.cloudfront.net/RLnAKY/index.m3u8 -#EXTINF:-1 tvg-id="Channel44.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Channel 44 (240p) -https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8 -#EXTINF:-1 tvg-id="ExpoChannel.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/2KzCShW.png" group-title="Shop",Expo Channel (360p) -https://tvsn-i.akamaihd.net/hls/live/261837/expo/expo.m3u8 -#EXTINF:-1 tvg-id="JonmoBhumiTV.au" tvg-country="AU" tvg-language="Bengali" tvg-logo="http://www.jonmobhumi.tv/wp-content/uploads/2017/11/Final-Red-Logo.png" group-title="General",JonmoBhumi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jonmobhumitv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="M4TV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/m4tv.png" group-title="",M4TV (1090p) -https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="M4TVMalayalam.au" tvg-country="AU" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/2fbxRsU.png" group-title="",M4TV Malayalam (1080p) [Not 24/7] -https://app.m4stream.live/mfourmalayalamhls/live.m3u8 -#EXTINF:-1 tvg-id="Nine.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200421.png" group-title="",Nine [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200421.m3u8 -#EXTINF:-1 tvg-id="NITV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000305.png" group-title="",NITV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000305.m3u8 -#EXTINF:-1 tvg-id="OpenShop.au" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7openshop.png" group-title="",Open Shop [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7openshop.m3u8 -#EXTINF:-1 tvg-id="OpenShop.au" tvg-country="AU" tvg-language="English" tvg-logo="https://www.openshop.com.au/resources/images/pc/common/f_logo.png" group-title="",Open Shop (720p) [Offline] -https://medialive.openshop.com.au/asn-live_1.m3u8 -#EXTINF:-1 tvg-id="RaceCentralTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="",Race Central TV (720p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-racecentral/index.m3u8 -#EXTINF:-1 tvg-id="Racingcom.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020528.png" group-title="",Racing.com [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020528.m3u8 -#EXTINF:-1 tvg-id="Racingcom.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/NAY9DTt.png" group-title="",Racing.com (576p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/australia/racing -#EXTINF:-1 tvg-id="SBSFood.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000304.png" group-title="Cooking",SBS Food [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000304.m3u8 -#EXTINF:-1 tvg-id="SBSTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000301.png" group-title="",SBS TV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000301.m3u8 -#EXTINF:-1 tvg-id="SBSViceland.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000303.png" group-title="",SBS Viceland [Geo-blocked] -https://dai.google.com/linear/hls/event/nPy2IRtvQTWudFfYwdBgsg/master.m3u8 -#EXTINF:-1 tvg-id="SBSViceland.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000303.png" group-title="",SBS Viceland [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000303.m3u8 -#EXTINF:-1 tvg-id="SBSWorldMovies.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000307.png" group-title="Movies",SBS World Movies [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000307.m3u8 -#EXTINF:-1 tvg-id="Seven.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020520.png" group-title="",Seven [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020520.m3u8 -#EXTINF:-1 tvg-id="SkyRacing1.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269404/6402.png" group-title="",Sky Racing 1 (540p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky1.m3u8 -#EXTINF:-1 tvg-id="SkyRacing1.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269404/6402.png" group-title="",Sky Racing 1 (270p) [Not 24/7] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky1.m3u8 -#EXTINF:-1 tvg-id="SkyRacing2.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269377/6411.png" group-title="",Sky Racing 2 (270p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky2.m3u8 -#EXTINF:-1 tvg-id="SkyRacing2.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269377/6411.png" group-title="",Sky Racing 2 (360p) [Not 24/7] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky2.m3u8 -#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.skyrtc.png" group-title="",Sky Thoroughbred Central (720p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/stcsd.m3u8 -#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au" tvg-country="AU" tvg-language="English" tvg-logo="https://www.foxtel.com.au/content/dam/foxtel/shared/channel/SRW/SRH_425x243.png" group-title="",Sky Thoroughbred Central (720p) [Offline] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/stcsd.m3u8 -#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.snowy-mountains.png" group-title="Sports",Snowy Mountains Television (1080p) [Geo-blocked] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 -#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/vuFx0Zd.jpg" group-title="Sports",Snowy Mountains Television (1080p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 -#EXTINF:-1 tvg-id="TravelFoodTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="Lifestyle",Travel & Food TV (720p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-moviemagictv/index.m3u8 -#EXTINF:-1 tvg-id="TVSN.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/TuHnkxP.png" group-title="",TVSN (360p) [Not 24/7] -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 -#EXTINF:-1 tvg-id="AoDaLiYaTianHeDianShi.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.rtvchannel.com.au/wp-content/uploads/2017/04/xshow_08.png.pagespeed.ic_.2KNN9OHw1p.png" group-title="",澳大利亚天和电视 (720p) -http://www.rtvcdn.com.au:8082/TV0002.m3u8 diff --git a/channels/au_samsung.m3u b/channels/au_samsung.m3u deleted file mode 100644 index 74c2307aa..000000000 --- a/channels/au_samsung.m3u +++ /dev/null @@ -1,87 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ActionHollywoodMovies.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/wnlzC0w.jpg" group-title="Movies",Action Hollywood Movies (1080p) [Offline] -https://lightning-actionhollywood-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AusBizTV.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Aus Biz TV (720p) [Offline] -https://ausbiztv-ausbiz-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] -https://bloomberg-quicktake-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) [Offline] -https://bloomberg-bloomberg-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BountyPlus.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Q8mmLAB.png" group-title="",Bounty Plus (720p) [Offline] -https://bountyfilms-bounty-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/XDqmN1R.png" group-title="Comedy",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] -https://dust-samsung-uk-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://euronews-euronews-world-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] -https://spi-filmstream-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) -https://fueltv-fueltv-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] -https://gustotv-samsung-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseandCountry.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/r5Ip3P0.png" group-title="",Horse and Country (720p) -https://hncfree-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) -https://introuble-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) -https://inwild-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQK6GMj.png" group-title="Movies",Made in Hollywood (720p) [Offline] -https://connection3-ent-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV Australia (720p) [Offline] -https://mavtv-mavtvglobal-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (1080p) -https://outdoorchannel-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Australia (720p) [Offline] -https://jukin-peopleareawesome-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pulse.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/vQ6cBdd.png" group-title="",Pulse (1080p) [Offline] -https://lightning-pulse-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/B69BHnx.jpg" group-title="Classic",Qwest TV Classical (720p) [Offline] -https://qwestclassic-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzandBeyond.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/bhSrOea.jpg" group-title="",Qwest TV Jazz and Beyond (720p) [Offline] -https://qwestjazz-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/B69BHnx.jpg" group-title="",Qwest TV Mix (720p) [Offline] -https://qwestmix-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealFamiliesAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/z8O4Dl6.png" group-title="Family",Real Families (Australia) (720p) -https://lds-realfamilies-samsunguau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/KOkWP6i.jpg" group-title="",Real Stories (720p) -https://lds-realstories-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Rialto.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/RnzWT9C.jpg" group-title="",Rialto (1080p) -https://rialto-rialto-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RyanandFriends.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/M8VTWFk.jpg" group-title="",Ryan and Friends (1080p) -https://ryanandfriends-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SmithsonianChannelAsia.us" tvg-country="US;AU" tvg-language="English" tvg-logo="https://i.imgur.com/weNdD7r.png" group-title="Science",Smithsonian Channel Asia (1080p) -https://smithsonianaus-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraokeAustralia.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (Australia) (1080p) -https://samsung-au.ott-channels.stingray.com/karaoke/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescapeAustralia.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (Australia) (1080p) [Not 24/7] -https://samsung-au.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="TastemadeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Australia (1080p) -https://tmint-aus-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Australia (720p) [Offline] -https://the-pet-collective-international-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeLineAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/J8qVUjM.png" group-title="Entertainment",Time Line Australia (720p) -https://lds-timeline-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US;AU" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Offline] -https://toongoggles-toongoggles-3-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceSportStarsAustralia.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Sports",Trace Sport Stars (Australia) (1080p) -https://lightning-tracesport-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceUrbanAustralia.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",Trace Urban (Australia) (1080p) -https://lightning-traceurban-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/H8ucPJd.jpg" group-title="",VENN (1080p) -https://venntv-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Australia (720p) [Offline] -https://jukin-weatherspy-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (720p) -https://lds-wonder-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMooAustralia.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (Australia) (1080p) -https://zoomoo-samsungau.amagi.tv/playlist.m3u8 diff --git a/channels/aw.m3u b/channels/aw.m3u deleted file mode 100644 index fc36ae514..000000000 --- a/channels/aw.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArubaTV.aw" tvg-country="AW" tvg-language="English" tvg-logo="https://i.imgur.com/9fWY09U.png" group-title="General",Aruba.TV (720p) [Not 24/7] -https://ed1ov.live.opencaster.com/GzyysAAvEhht/index.m3u8 -#EXTINF:-1 tvg-id="NosIslaTV.aw" tvg-country="AW" tvg-language="Dutch;Papiamento" tvg-logo="https://i.imgur.com/Gf95oov.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" group-title="General",Nos Isla TV (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 -https://backend-server-dot-telearuba-app.appspot.com/media/livestream23/playlist.m3u8 -#EXTINF:-1 tvg-id="Telearuba.aw" tvg-country="AW" tvg-language="Dutch;Papiamento;English" tvg-logo="https://i.imgur.com/wjwxp3K.png" group-title="General",Telearuba (720p) -http://cdn.setar.aw:1935/Telearuba/smil:telearuba.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telearuba.aw" tvg-country="AW" tvg-language="Dutch;Papiamento;English" tvg-logo="https://i.imgur.com/wjwxp3K.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" group-title="General",Telearuba (480p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 -https://backend-server-dot-telearuba-app.appspot.com/media/livestream13/playlist.m3u8 diff --git a/channels/az.m3u b/channels/az.m3u deleted file mode 100644 index 148d6781c..000000000 --- a/channels/az.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlvinChannelTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://www.alvinchannel.com/templates/Default/images/logo.png" group-title="General",Alvin Channel TV (360p) [Not 24/7] -http://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="ARB.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://arbtv.az/assets/uploads/sites/logo.png" group-title="General",ARB (576p) [Not 24/7] -https://europe2.livetv.az/azerbaijan/arb/playlist.m3u8 -#EXTINF:-1 tvg-id="ARB24.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://arb24.az/assets/uploads/sites/logo_arb24.png" group-title="News",ARB 24 (1080p) [Not 24/7] -http://85.132.81.184:8080/arb24/live1/index.m3u8 -#EXTINF:-1 tvg-id="ARBGunes.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://gunesh.arbtv.az/assets/uploads/sites/arb_gunesh.png" group-title="Kids",ARB Günəş [Geo-blocked] -http://149.255.152.199/arbgunes.m3u8 -#EXTINF:-1 tvg-id="AzTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://www.aztv.az/storage/settings/September2019/23bMtFJXZsjnUuC0AwiQ.png" group-title="General",Az TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/aztv_stream2/playlist.m3u8 -#EXTINF:-1 tvg-id="AzadTVMinus2.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV -2 (ATV) (720p) -http://85.132.81.184:8080/atv-2/index.m3u8 -#EXTINF:-1 tvg-id="AzadTVMinus4.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV -4 (ATV) (720p) [Not 24/7] -http://85.132.81.184:8080/atv-4/index.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (720p) -http://85.132.81.184:8080/atv/index.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (720p) -http://85.132.81.184:8080/atvlive/atv-e1/index.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/atv_sd_stream4/playlist.m3u8 -#EXTINF:-1 tvg-id="CBC.az" tvg-country="AZ;TR;GE" tvg-language="Azerbaijani;Russian;English;Persian;Armenian" tvg-logo="http://cbc.az/assets/uploads/sites/Logo_fin.png" group-title="News",CBC (720p) [Not 24/7] -http://cbctvlive.flashmediacast.com:1935/CBCTVLive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="ELTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://eltv.az/wp-content/uploads/2021/01/alllogo.png" group-title="General",EL TV (260p) -http://85.132.53.162:1935/live/eltv/playlist.m3u8 -#EXTINF:-1 tvg-id="FTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://apim.livetv.az/images/original/ftvlogo.png" group-title="Movies",FTV (720p) [Not 24/7] -https://str2.yodacdn.net/publive/ftv/video.m3u8 -#EXTINF:-1 tvg-id="IctimaiTV.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://itv.az/assets/images/itv-logo.png" group-title="General",İctimai TV (720p) [Geo-blocked] -https://node19.connect.az:8086/ch1/ch1.hi.m3u8 -#EXTINF:-1 tvg-id="IctimaiTV.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://itv.az/assets/images/itv-logo.png" group-title="General",İctimai TV (480p) [Geo-blocked] -https://node19.connect.az:8086/ch1/ch1.med.m3u8 -#EXTINF:-1 tvg-id="IdmanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/cUs7TFd.png" group-title="Sports",İdman TV (576p) -http://109.205.166.68/server124/idman_az/index.m3u8 -#EXTINF:-1 tvg-id="InterAz.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/%C4%B0nterAz_loqosu.jpeg/600px-%C4%B0nterAz_loqosu.jpeg" group-title="General",İnterAz (1080p) [Not 24/7] -http://yayin.netradyom.com:1935/live/interaz/playlist.m3u8 -#EXTINF:-1 tvg-id="KepezTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/K%C9%99p%C9%99z_TV_%282019-h.h.%29.png/504px-K%C9%99p%C9%99z_TV_%282019-h.h.%29.png" group-title="General",Kəpəz TV (540p) [Not 24/7] -http://85.132.81.184:8080/arbkepez/live/index.m3u8 -#EXTINF:-1 tvg-id="KepezTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/K%C9%99p%C9%99z_TV_%282019-h.h.%29.png/504px-K%C9%99p%C9%99z_TV_%282019-h.h.%29.png" group-title="General",Kəpəz TV (540p) [Not 24/7] -http://streams.livetv.az/arbkepez/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MedeniyyetTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://medeniyyettv.az/storage/settings/September2019/RDRVyTmdeB1NvyNm4UnF.png" group-title="Culture",Mədəniyyət TV (404p) [Not 24/7] -http://streams.livetv.az/azerbaijan/medeniyyet_stream2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuganTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/HMT5vZA.png" group-title="General",Muğan TV (1080p) [Not 24/7] -http://cdn10-mugantv.yayin.com.tr/mugantv/mugantv/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxcivanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://ntv.az/assets/images/logo.png" group-title="General",Naxçıvan TV (720p) [Not 24/7] -http://streams.livetv.az/azerbaijan/nax/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxcivanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://ntv.az/assets/images/logo.png" group-title="General",Naxçıvan TV (720p) [Offline] -http://canli.naxcivantv.az/media/20210930/index.m3u8 -#EXTINF:-1 tvg-id="QafqazTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/6/69/Qafqaz_TV_%282017-h.h.%29.png/640px-Qafqaz_TV_%282017-h.h.%29.png" group-title="General",Qafqaz TV (360p) [Not 24/7] -https://europe2.livetv.az/azerbaijan/qafqaztv/playlist.m3u8 -#EXTINF:-1 tvg-id="QblTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/degUDMf.png" group-title="General",Qəbələ TV (480p) [Not 24/7] -https://qebele.tv/live/stream/index.m3u8 -#EXTINF:-1 tvg-id="SpaceTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://spacetv.az/wp-content/themes/spacetv/images/logo.png" group-title="General",Space TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/space_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="XezerTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://xezertv.az/images/logo.png" group-title="General",Xəzər TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/xazar_sd_stream_2/playlist.m3u8 diff --git a/channels/ba.m3u b/channels/ba.m3u deleted file mode 100644 index db6007a02..000000000 --- a/channels/ba.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="B1TV.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/fdd1oQP.png" group-title="",B1 TV (1080p) [Not 24/7] -http://proxy.bihnet.net:88/live/b1tv.m3u8 -#EXTINF:-1 tvg-id="BHRT.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/F8jTl1o.png" group-title="",BHRT (720p) [Geo-blocked] -https://bhrtstream.bhtelecom.ba/bhrtportal.m3u8 -#EXTINF:-1 tvg-id="BHRT.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/F8jTl1o.png" group-title="",BHRT (270p) [Geo-blocked] -https://bhrtstream.bhtelecom.ba/hls15/bhrtportal.m3u8 -#EXTINF:-1 tvg-id="BNTV.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/8bhQY8B.jpg" group-title="",BN TV (480p) -https://dns2.rtvbn.com:8080/live/index.m3u8 -#EXTINF:-1 tvg-id="Malta.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="" group-title="",Malta (720p) [Not 24/7] -http://webtvstream.bhtelecom.ba/malta.m3u8 -#EXTINF:-1 tvg-id="ntvic.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/Y4UJEfg.png" group-title="",NTV IC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ntvic -#EXTINF:-1 tvg-id="RTVBPK.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/g639yyT.jpg" group-title="",RTV BPK (720p) [Not 24/7] -https://webtvstream.bhtelecom.ba/gorazde_cam2.m3u8 -#EXTINF:-1 tvg-id="RTVHB.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/EE8C8rR.png" group-title="",RTV HB (576p) [Not 24/7] -https://prd-hometv-live-open.spectar.tv/ERO_1_083/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVZE.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="" group-title="Local",RTV ZE (720p) [Not 24/7] -https://stream.rtvze.ba/123.m3u8 -#EXTINF:-1 tvg-id="Televizija5.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/hdwjkYa.png" group-title="",Televizija 5 (576p) -https://balkanmedia.dynu.net/hls/tv5web.m3u8 -#EXTINF:-1 tvg-id="tvslon.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV Slon Extra (1080p) [Not 24/7] -http://31.47.0.130:8082 -#EXTINF:-1 tvg-id="tvslon.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV Slon Extra (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVSLON/live -#EXTINF:-1 tvg-id="tvsloninfo.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV SLON INFO (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=YHLiGONh--I -#EXTINF:-1 tvg-id="RTRS.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/mhfGMIw.jpg" group-title="",РТРС (576p) [Geo-blocked] -https://parh.rtrs.tv/tv/live/playlist.m3u8 diff --git a/channels/bb.m3u b/channels/bb.m3u deleted file mode 100644 index b0aa6f369..000000000 --- a/channels/bb.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CBCTV8.bb" tvg-country="BB" tvg-language="English" tvg-logo="https://i.imgur.com/o7IbMWy.png" group-title="",CBC TV8 (1080p) [Not 24/7] -https://1740288887.rsc.cdn77.org/1740288887/index.m3u8 diff --git a/channels/bd.m3u b/channels/bd.m3u deleted file mode 100644 index eed42ab18..000000000 --- a/channels/bd.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChannelT1.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/dyoXd9c.png" group-title="News",Channel T1 (720p) [Not 24/7] -http://irbtv.net/channelt1/1080/index.m3u8 -#EXTINF:-1 tvg-id="EkusheyTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/5XjSZbN.png" group-title="News",Ekushey TV (480p) -https://ekusheyserver.com/etvlivesn.m3u8 -#EXTINF:-1 tvg-id="RTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/41/Rtv_bangladesh.PNG" group-title="General",RTV (720p) [Not 24/7] -https://stream.cstfctg.com/rtvonline/rtv2021.stream/playlist.m3u8 diff --git a/channels/bd_jagobd.m3u b/channels/bd_jagobd.m3u deleted file mode 100644 index c16c4826c..000000000 --- a/channels/bd_jagobd.m3u +++ /dev/null @@ -1,53 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ATNBangla.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/ATN_Bangla.svg/207px-ATN_Bangla.svg.png" group-title="General",ATN Bangla (1080p) [Geo-blocked] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbd-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNBanglaUK.bd" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://atnbanglauk.tv/wp-content/uploads/2015/04/sized1.png" group-title="General",ATN Bangla UK (576p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbanglauk-off.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNNews.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/2F1BaT2.gif" group-title="News",ATN News (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnws-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BanglaVision.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/doJuPjL.png" group-title="General",Bangla Vision (1080p) [Geo-blocked] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/banglav000.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BijoyTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/63/BIJOY_TV_Logo_BD.png" group-title="General",Bijoy TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/bijoy00.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BoishakhiTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="http://www.boishakhionline.com/frontend_source/assets/images/logo.png" group-title="General",Boishakhi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/boishakhitv-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVChittagong.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/CMUHtv3.png" group-title="Local",BTV Chittagong (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvnational-ctg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVWorld.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/1Chamk9.png" group-title="General",BTV World (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvbd-office-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/f/ff/Channel9_bd.svg/350px-Channel9_bd.svg.png" group-title="Local",Channel 9 (720p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel9hd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel24.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Channel24logo.svg/400px-Channel24logo.svg.png" group-title="News",Channel 24 (1080p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel24-sg-e8e.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelI.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.channelionline.com/wp-content/uploads/2019/07/channel-i-logo-1.png" group-title="General",Channel I (1080p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channeli-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ColosalTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/4kxxSCq.png" group-title="Entertainment",Colosal TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/colosal.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DBCNews.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://dbcnews.tv/img/dbc.png" group-title="News",DBC News (1080p) [Timeout] -https://live.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/dbcnews.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="GaanBangla.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="http://gaanbangla.tv/img/logo.png" group-title="Music",Gaan Bangla (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/gaanbangla-8-orgd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="IndependentTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/c1/Independent_Television_Logo.svg/157px-Independent_Television_Logo.svg.png" group-title="News",Independent TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/independent-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JamunaTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.jamuna.tv/wp-content/themes/jtv-news/img/logo.png" group-title="News",Jamuna TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jamuna-test-sample-ok.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.news24bd.tv/assets/desktop/images/logos/logo.png" group-title="News",News 24 (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/news24local.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NexusTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/XcJZKg4.png" group-title="General",Nexus TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nexustv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NokshiTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/QWJNqS5.jpeg" group-title="Entertainment",Nokshi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nakshitv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTVEurope.bd" tvg-country="EUR" tvg-language="Bengali;English" tvg-logo="https://europentv.ntvbd.com/sites/all/themes/sloth/logo.png" group-title="General",NTV Europe (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/ntvuk00332211.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/41/Rtv_bangladesh.PNG" group-title="General",RTV (720p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/rtv-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SangshadTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/15/Sangsad_Television_Logo.jpg" group-title="General",Sangshad TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/songsodtv-world.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SATV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.satv.tv/wp-content/uploads/2016/07/logo1.png" group-title="General",SATV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/satvoff5666.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SomoyNewsTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.somoynews.tv/_nuxt/img/somoy-logo-192x192.33c3254.png" group-title="News",Somoy News TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/somoyt000011226615544544.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SomoyNewsTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.somoynews.tv/_nuxt/img/somoy-logo-192x192.33c3254.png" group-title="News",Somoy News TV (1080p) [Not 24/7] -https://somoy.appv.jagobd.com:444/somoy/somoyt000011226615544544.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeTelevision.us" tvg-country="US" tvg-language="Bengali" tvg-logo="https://www.timetvusa.com/images/ttv200.png" group-title="General",Time Television (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/timetvusa.stream/playlist.m3u8 diff --git a/channels/be.m3u b/channels/be.m3u deleted file mode 100644 index f2946ada7..000000000 --- a/channels/be.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ATV" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/iWXUmje.jpg" group-title="",ATV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27755193/events/8452381/live.m3u8 -#EXTINF:-1 tvg-id="BelRTL.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.ibb.co/VmQ5bzM/5107.jpg" group-title="",Bel RTL (720p) -https://bel-lh.akamaihd.net/i/BEL_1@321282/master.m3u8 -#EXTINF:-1 tvg-id="BX1.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/YjKqWru.png" group-title="",BX1 (720p) [Not 24/7] -https://59959724487e3.streamlock.net/stream/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalZoom.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/uoSMNnr.png" group-title="Local",Canal Zoom (720p) [Not 24/7] -http://streamer.canalc.be:1935/canalzoom/smil:SMIL-canalzoom-multi/playlist.m3u8 -#EXTINF:-1 tvg-id="CityMusicTV.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/LJ4Hpdc.png" group-title="Music",City Music TV (720p) -https://5592f056abba8.streamlock.net/citytv/citytv/playlist.m3u8 -#EXTINF:-1 tvg-id="EbS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ebs.png" group-title="",EbS Live (Europe by Satellite) (1080p) -https://euc-live.fl.freecaster.net/live/eucom/ebs.m3u8 -#EXTINF:-1 tvg-id="EbSPlus.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ebs.png" group-title="",EbS+ Live (Europe by Satellite) (1080p) -https://euc-live.fl.freecaster.net/live/eucom/ebsp.m3u8 -#EXTINF:-1 tvg-id="KetnetJunior.be" tvg-country="BE;LU;NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/eDYaphB.png" group-title="",Ketnet Junior (720p) -https://content.uplynk.com/channel/e11a05356cc44198977436418ad71832.m3u8 -#EXTINF:-1 tvg-id="LN24.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/bp1Qp0d.png" group-title="News",LN24 (1080p) -https://live.cdn.ln24.be/out/v1/b191621c8b9a436cad37bb36a82d2e1c/index.m3u8 -#EXTINF:-1 tvg-id="MaTele.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.ibb.co/m48XZS7/matele.png" group-title="",MaTele (1080p) [Not 24/7] -https://live.matele.be/hls/live.m3u8 -#EXTINF:-1 tvg-id="MNM.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Mnm_logo.svg/180px-Mnm_logo.svg.png" group-title="",MNM (720p) -https://live-vrt.akamaized.net/groupa/live/bac277a1-306d-44a0-8e2e-e5b9c07fa270/live.isml/.m3u8 -#EXTINF:-1 tvg-id="Notele.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="" group-title="",Notele (576p) [Not 24/7] -https://streaming01.divercom.be/notele_live/_definst_/direct.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QMusic.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/s0CZjmi.png" group-title="Music",Q-Music (1080p) -https://dpp-streamlive-plain.medialaancdn.be/qmusic/plain/hls.m3u8 -#EXTINF:-1 tvg-id="RadioContact.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.ibb.co/4jfSTKz/contact.jpg" group-title="Music",Radio Contact (720p) -https://contact-lh.akamaihd.net/i/CONTACT_1@321283/master.m3u8 -#EXTINF:-1 tvg-id="RadioPROS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RMjFeGE.png" group-title="Music",Radio PROS (720p) [Not 24/7] -http://highvolume04.streampartner.nl/radiopros/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPROS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RMjFeGE.png" group-title="Music",Radio PROS (720p) [Not 24/7] -https://558bd16067b67.streamlock.net/radiopros/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="ROB" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/CzQe0q2.png" group-title="",ROB TV (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/27755193/events/8462344/live.m3u8 -#EXTINF:-1 tvg-id="RTL-TVi BE" tvg-country="BE;LU" tvg-language="French" tvg-logo="https://i.imgur.com/yjtxdmh.png" group-title="",RTL-TVi (720p) -https://rtltvi-lh.akamaihd.net/i/TVI_1@319659/master.m3u8 -#EXTINF:-1 tvg-id="TV Oost Dend" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/JFVEcEA.png" group-title="",TV Oost (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/27755193/events/8511193/live.m3u8 -#EXTINF:-1 tvg-id="TVL.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.ibb.co/KGRYRmt/download.jpg" group-title="Local",TVL (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/27755193/events/8452383/live.m3u8 -#EXTINF:-1 tvg-id="TVO.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="" group-title="",TVO (576p) -https://media.mediahuisvideo.be/hls/account=tqIhfOEY3U0A/item=oIFtpshSvwcy/oIFtpshSvwcy.m3u8 diff --git a/channels/be_samsung.m3u b/channels/be_samsung.m3u deleted file mode 100644 index 1185609b2..000000000 --- a/channels/be_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews Français (720p) -https://rakuten-africanews-2-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] -https://rakuten-euronews-2-be.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/bf.m3u b/channels/bf.m3u deleted file mode 100644 index 0a6efac8a..000000000 --- a/channels/bf.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3TV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://i.imgur.com/oYctB4J.png" group-title="",3TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/3tvbf -#EXTINF:-1 tvg-id="FasoTV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://fasotv.net/wp-content/uploads/2019/08/log-faso.png" group-title="",Faso TV (480p) [Not 24/7] -https://playtv4kpro.com:5443/LiveApp/streams/163893638025530331068059.m3u8 -#EXTINF:-1 tvg-id="ImpactTV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://i.imgur.com/sCGRccj.png" group-title="Religious",Impact TV (360p) -https://edge.vedge.infomaniak.com/livecast/ik:impacttv_1/manifest.m3u8 -#EXTINF:-1 tvg-id="RTB.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://www.rtb.bf/wp-content/uploads/2020/04/LOgo-RTB-272-90-3.png" group-title="",RTB (360p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:rtbtvlive1/manifest.m3u8 diff --git a/channels/bg.m3u b/channels/bg.m3u deleted file mode 100644 index 28df76a59..000000000 --- a/channels/bg.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="100AutoMotoTV.bg" tvg-country="BG" tvg-language="Bulgarian;English" tvg-logo="https://i.imgur.com/PjBm4Ic.jpg" group-title="Auto",100% Auto Moto TV (406p) [Not 24/7] -http://100automoto.tv:1935/bgtv1/autotv/playlist.m3u8 -#EXTINF:-1 tvg-id="BalkanikaTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/S0GrDsQ.png" group-title="Music",Balkanika TV (270p) [Offline] -rtsp://stream.teracomm.bg/balkanika -#EXTINF:-1 tvg-id="BGMusic.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Music",BG Music [Offline] -https://cdn1.mobiletv.bg/T10/bgmusic/bgmusic_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BNMusic.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Music",BN Music [Offline] -https://cdn1.mobiletv.bg/T5/bn_music/bn_music_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BoxTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/boxTV_BG_logo.png" group-title="",Box TV [Offline] -https://cdn1.mobiletv.bg/T5/box_tv/box_tv_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BTK.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/5Sl6bKi.png" group-title="",BTK (576p) [Not 24/7] -http://hls.cdn.bg:2007/fls/vtv/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVCinema.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/bTV_Cinema_BG.png" group-title="",BTV Cinema [Offline] -https://cdn1.mobiletv.bg/T8/btv_cinema/btv_c_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BTVComedy.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/bTV_Comedy_BG.png" group-title="Comedy",BTV Comedy [Offline] -https://cdn1.mobiletv.bg/T5/btvcomedy/btvcomedy_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BulgariaOnAir.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) -http://edge1.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) -http://edge15.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) -http://hls.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) -http://ios.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CityTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/CITY_BG_logo.png" group-title="",City TV (576p) [Not 24/7] -https://tv.city.bg/play/tshls/citytv/index.m3u8 -#EXTINF:-1 tvg-id="Diema.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Diema_BG.png" group-title="",Diema [Offline] -https://cdn1.mobiletv.bg/T13/diema/diema_794613_850k.m3u8 -#EXTINF:-1 tvg-id="DMSAT.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="",DM SAT [Offline] -https://cdn1.mobiletv.bg/T5/dm_sat/dm_sat_794613_850k.m3u8 -#EXTINF:-1 tvg-id="DSTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/2vRfj1D.png" group-title="",DSTV (614p) -http://46.249.95.140:8081/hls/data.m3u8 -#EXTINF:-1 tvg-id="Ekids.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Kids",Ekids [Offline] -https://cdn1.mobiletv.bg/T8/ekids/ekids_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Evrokom.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/3s7qchh.png" group-title="",Evrokom (360p) -https://live.ecomservice.bg/hls/stream.m3u8 -#EXTINF:-1 tvg-id="FishingHuntingChannel.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Outdoor",Fishing & Hunting Channel [Offline] -https://cdn1.mobiletv.bg/T5/fh/fh_794613_850k.m3u8 -#EXTINF:-1 tvg-id="HomeOneTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/v0gJW1l.jpg" group-title="",HomeOne TV (1080p) [Timeout] -https://streamer104.neterra.tv/n1tv/n1tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LightChannel.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (480p) [Not 24/7] -https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8 -#EXTINF:-1 tvg-id="MMTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/Fr1SYxZ.png" group-title="Music",MM TV (480p) [Offline] -https://streamer103.neterra.tv/mmtv/mmtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Nostalgia.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="",Nostalgia [Offline] -https://cdn1.mobiletv.bg/T10/kanal4/kanal4_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Sportal.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Sports",Sportal.bg [Geo-blocked] -https://e113-ts.cdn.bg/sportal/fls/sportal_fullhd/chunklist.m3u8?at=c92098d9ab33bf471967c6b6195361e3 -#EXTINF:-1 tvg-id="ThisisBulgaria.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/FxLjPLh.jpg" group-title="",This is Bulgaria (1080p) [Offline] -https://streamer103.neterra.tv/thisisbulgaria/community.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPlus.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/W074hkS.jpg" group-title="",TV+ [Timeout] -http://141.136.14.18/kanal1/kanal1.m3u8 -#EXTINF:-1 tvg-id="WnessTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/n0YJN6v.png" group-title="",Wness TV (720p) [Offline] -https://wness103.neterra.tv/wness/wness.smil/playlist.m3u8 diff --git a/channels/bh.m3u b/channels/bh.m3u deleted file mode 100644 index 6eaa4537b..000000000 --- a/channels/bh.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BahrainInternational.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/uiulhEg.jpg" group-title="General",Bahrain International (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+International_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainLawal.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain Lawal (410p) -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Lawal_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainQuran.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OPw6U7j.jpg" group-title="Religious",Bahrain Quran (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Quran_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports1.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pQ0QGGl.jpg" group-title="Sports",Bahrain Sports 1 (720p) [Not 24/7] -http://185.105.4.106:1935/live/Bahrain+Sports/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports1.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pQ0QGGl.jpg" group-title="Sports",Bahrain Sports 1 (720p) [Not 24/7] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports2.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/e5buVPV.jpg" group-title="Sports",Bahrain Sports 2 (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports+2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainTV.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain TV (720p) [Not 24/7] -http://185.105.4.106:1935/live/Bahrain+TV/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainTV.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain TV (720p) [Not 24/7] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+TV_all/playlist.m3u8 diff --git a/channels/bj.m3u b/channels/bj.m3u deleted file mode 100644 index 455134374..000000000 --- a/channels/bj.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BB24.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/vFhfu6M.jpg" group-title="",BB24 (360p) [Not 24/7] -https://edge9.vedge.infomaniak.com/livecast/ik:bb24/manifest.m3u8 -#EXTINF:-1 tvg-id="Etélé.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/0LBbnSM.jpg" group-title="",Etélé (360p) [Not 24/7] -https://livetvsteam.com:1936/etelebenin/etelebenin/playlist.m3u8 -#EXTINF:-1 tvg-id="GolfeTVAfrica.bj" tvg-country="BJ" tvg-language="English;French" tvg-logo="https://i.imgur.com/AIXn66Q.png" group-title="News",Golfe TV Africa (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC98EZ3PHQNrqV-B-CtwAHMA/live -#EXTINF:-1 tvg-id="KultuTV.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/8ytvChX.png" group-title="Music",Kultu TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82zdni -#EXTINF:-1 tvg-id="ortb.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/SpMvar1.png" group-title="",ORTB (1080p) [Offline] -https://edge3.vedge.infomaniak.com/livecast/ik:ortb/manifest.m3u8 diff --git a/channels/bn.m3u b/channels/bn.m3u deleted file mode 100644 index 9a4f152f7..000000000 --- a/channels/bn.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RTBGo.bn" tvg-country="BN" tvg-language="Malay;English" tvg-logo="https://rtb-images.glueapi.io/300x0/live/GoLiveNew.png" group-title="",RTB Go (720p) [Offline] -https://d19j8udk9agj55.cloudfront.net/smil:rtbgo/playlist.m3u8 -#EXTINF:-1 tvg-id="RTBSukmaindera.bn" tvg-country="BN" tvg-language="Malay;English" tvg-logo="https://i.imgur.com/wRzyzPA.png" group-title="",RTB Sukmaindera (720p) [Offline] -https://d19j8udk9agj55.cloudfront.net/smil:rtb1/playlist.m3u8 diff --git a/channels/bo.m3u b/channels/bo.m3u deleted file mode 100644 index b273ac8cf..000000000 --- a/channels/bo.m3u +++ /dev/null @@ -1,51 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlegriaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/jlRMBbu.jpg" group-title="Music",Alegria TV (720p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 -#EXTINF:-1 tvg-id="ATB.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DCAtokY.png" group-title="",ATB (614p) [Not 24/7] -http://186.121.206.197/live/daniel/index.m3u8 -#EXTINF:-1 tvg-id="ATB.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oszItYJ.jpg" group-title="",ATB (360p) [Not 24/7] -https://mediacp.hostradios.com.ar:19360/atbcochabamba/atbcochabamba.m3u8 -#EXTINF:-1 tvg-id="BoPlusLive.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Bo Plus Live (1080p) [Offline] -https://mediastreamm.com:3342/live/boplustvlive.m3u8 -#EXTINF:-1 tvg-id="BoliviaRadioTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Bolivia Radio TV (720p) [Not 24/7] -https://play.amelbasoluciones.co:3546/live/boliviaradiotvlive.m3u8 -#EXTINF:-1 tvg-id="BoliviaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="http://www.boliviatv.bo/principal/assets/images/the-voyager/btv1.png" group-title="General",Bolivia TV (720p) [Not 24/7] -http://boliviatv1.srfms.com:5735/live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="BoliviaTV72.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1zTLGdj.jpg" group-title="General",Bolivia TV 7.2 (480p) -https://video1.getstreamhosting.com:1936/8224/8224/playlist.m3u8 -#EXTINF:-1 tvg-id="CVC.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/320429538167628/picture?width=300&height=300" group-title="",Canal Vírgen de Copacabana (CVC) (818p) [Timeout] -https://cp.sradiotv.com:1936/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="CTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="Local",CTV Canal 38 Digital (Viacha) (480p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8026/index.m3u8 -#EXTINF:-1 tvg-id="DTVPlay.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="Sports",DTV Play (Deporte Total) (720p) [Not 24/7] -https://tv.portalexpress.es:3044/live/dtplaylive.m3u8 -#EXTINF:-1 tvg-id="MegaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatelevisionbolivia/picture?width=300&height=300" group-title="",MegaTV (720p) [Not 24/7] -https://solo.disfrutaenlared.com:1936/tvcbba/tvcbba/playlist.m3u8 -#EXTINF:-1 tvg-id="MegaTVYacuiba.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MegatvYacuiba/picture?width=300&height=300" group-title="",MegaTV (Yacuiba) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/mega/mega/playlist.m3u8 -#EXTINF:-1 tvg-id="PAT.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",PAT (720p) [Offline] -http://live.cdn.comteco.com.bo/comgo/0215/index.m3u8 -#EXTINF:-1 tvg-id="RedAdvenir.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Red Advenir (360p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/GMIredadvenirm/playlist.m3u8 -#EXTINF:-1 tvg-id="RedPatBolivia.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/patboliviahd/picture?width=300&height=300" group-title="",Red Pat Bolivia [Offline] -https://5975e06a1f292.streamlock.net:4443/patbolivia/patlapaz/master.m3u8 -#EXTINF:-1 tvg-id="RedUno.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://comteco.com.bo/img/upload/canales/iZ7Gvp.png" group-title="",Red Uno (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp -#EXTINF:-1 tvg-id="RedUno.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://comteco.com.bo/img/upload/canales/iZ7Gvp.png" group-title="",Red Uno (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp -#EXTINF:-1 tvg-id="RenuevaDigital.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Renueva Digital (720p) -https://inliveserver.com:1936/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/eTDc0wd.jpg" group-title="",RTP (720p) [Not 24/7] -http://136.243.3.70:1935/RtpBolivia/RtpBolivia/playlist.m3u8 -#EXTINF:-1 tvg-id="SEOTV.bo" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="General",SEO TV (720p) [Not 24/7] -https://panel.seo.tv.bo:3645/live/franzleonel0live.m3u8 -#EXTINF:-1 tvg-id="SEOTVKids.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="Kids",SEO TV Kids (540p) [Not 24/7] -https://panel.seo.tv.bo:3182/live/franzleonellive.m3u8 -#EXTINF:-1 tvg-id="SEOTVNovelas.bo" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="Series",SEO TV Novelas (540p) [Not 24/7] -https://panel.seo.tv.bo:3337/live/franzbalboa2live.m3u8 -#EXTINF:-1 tvg-id="TVLatinaCanal42.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://ya.co.ve/3VJ" group-title="",TV Latina Canal 42 (720p) [Not 24/7] -https://master.tucableip.com/live/tvlatinamontero/playlist.m3u8 -#EXTINF:-1 tvg-id="TVU.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YdiF5k6.png" group-title="",TVU (276p) [Not 24/7] -http://136.243.3.70:1935/TvUniversitaria/TvUniversitaria/playlist.m3u8 -#EXTINF:-1 tvg-id="XTOTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/XTOTVBolivia/picture?width=300&height=300" group-title="",XTOTV (404p) [Not 24/7] -http://www.channel.tevemi.com:1935/XtoTv/XtoTv/playlist.m3u8 diff --git a/channels/br.m3u b/channels/br.m3u deleted file mode 100644 index e6dfccb03..000000000 --- a/channels/br.m3u +++ /dev/null @@ -1,315 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1001Noites.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/xbkYDeg.png" group-title="Shop",1001 Noites (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8155/ngrp:LVW8155_41E1ciuCvO_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AgroBrasilTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.costadosol.tv.br/site/wp-content/uploads/2017/12/agro-brasil.png" group-title="Outdoor",AgroBrasil TV (720p) [Not 24/7] -http://45.162.230.234:1935/agrobrasiltv/agrobrasiltv/playlist.m3u8 -#EXTINF:-1 tvg-id="AgroBrasilTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.costadosol.tv.br/site/wp-content/uploads/2017/12/agro-brasil.png" group-title="Outdoor",AgroBrasil TV (720p) [Not 24/7] -https://server.flixtv.com.br/agrobrasiltv/agrobrasiltv/playlist.m3u8 -#EXTINF:-1 tvg-id="Agromais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_agromais-hd_m.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",Agromais (1080p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/geob_band/agromais/playlist.m3u8 -#EXTINF:-1 tvg-id="AllSports.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/wULpnYR.png" group-title="Sports",All Sports (720p) -https://5cf4a2c2512a2.streamlock.net/dgrau/dgrau/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimeTV.br" tvg-country="BR" tvg-language="Japanese" tvg-logo="https://i.imgur.com/rmAm6UE.png" group-title="Animation",Anime TV (360p) [Not 24/7] -https://stmv1.srvif.com/animetv/animetv/playlist.m3u8 -#EXTINF:-1 tvg-id="Animestation.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5UpjGcL.png" group-title="",Animestation (480p) [Not 24/7] -https://stmv.video.expressolider.com.br/animestation1/animestation1/playlist.m3u8 -#EXTINF:-1 tvg-id="Band.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/HnL2uBA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",Band (1080p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/geob_band/app/playlist.m3u8 -#EXTINF:-1 tvg-id="Band.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/HnL2uBA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",Band (1080p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/geob_band/band/playlist.m3u8 -#EXTINF:-1 tvg-id="Bandnews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.band.uol.com.br/assets/bandnewstv/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",Bandnews (720p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/geob_band/bandnewstv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal25Jundiai.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/9SjoGWj.png" group-title="Local",Canal 25 Jundiaí (404p) [Not 24/7] -https://stream01.msolutionbrasil.com.br/hls/canal25/live.m3u8 -#EXTINF:-1 tvg-id="CanaldoBoi.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Logo_Canal_do_Boi_-_PNG.png/301px-Logo_Canal_do_Boi_-_PNG.png" group-title="Outdoor",Canal do Boi [Offline] -https://aovivo.equipea.com.br:5443/WebRTCAppEE/streams/713829795440060188004130.m3u8 -#EXTINF:-1 tvg-id="MetropoleNewsTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cmn.tv.br/images/logo_cmn.fw.png" group-title="News",Canal Metropolitano de Noticias (720p) [Not 24/7] -http://in.uaimacks.net.br:1935/macks/macks.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSaude.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/MXhHP6U.png" group-title="",Canal Saúde (360p) [Not 24/7] -https://arkyvbre1g.zoeweb.tv/fiocruz/fiocruz/playlist.m3u8 -#EXTINF:-1 tvg-id="CatveFM.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/w89yw36.png" group-title="General",Catve FM (720p) [Not 24/7] -https://5b33b873179a2.streamlock.net:1443/radiocamera/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CatveMasterTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4m7Iazm.png" group-title="General",Catve Master TV (720p) [Timeout] -https://5b33b873179a2.streamlock.net:1443/mastertv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Catve2.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/qiVfsfB.png" group-title="General",Catve2 (720p) [Timeout] -https://5b33b873179a2.streamlock.net:1443/catve2/catve2/playlist.m3u8 -#EXTINF:-1 tvg-id="CBNRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/FZwHq8k.png" group-title="News",CBN Rio (720p) -https://medias.sgr.globo.com/hls/vCBNRJ/vCBNRJ.m3u8 -#EXTINF:-1 tvg-id="CBNSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/FZwHq8k.png" group-title="News",CBN São Paulo (720p) -https://medias.sgr.globo.com/hls/vCBNSP/vCBNSP.m3u8 -#EXTINF:-1 tvg-id="CentralTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/6QcsihL.jpg" group-title="",Central TV (1080p) [Offline] -http://serv2.videovox.pw/joaorodrigo7309/joaorodrigo7309/playlist.m3u8 -#EXTINF:-1 tvg-id="COMBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/c8ztQnF.png" group-title="General",COM Brasil (720p) [Not 24/7] -https://596639ebdd89b.streamlock.net/8032/8032/playlist.m3u8 -#EXTINF:-1 tvg-id="CulturaPara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5jPEI5c.png" group-title="General",Cultura Pará (480p) [Not 24/7] -http://str.portalcultura.com.br/funtelpa/tv_funtelpa/live.m3u8 -#EXTINF:-1 tvg-id="TVCulturaNacional.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_cultura_m.png" group-title="General",Cultura PR Catve (720p) [Timeout] -http://wowza4.catve.com.br:1935/live/livestream/media.m3u8 -#EXTINF:-1 tvg-id="FonteTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4lnSlOZ.png" group-title="Religious",Fonte TV (1080p) [Not 24/7] -http://flash.softhost.com.br:1935/fonte/fontetv/live.m3u8 -#EXTINF:-1 tvg-id="Futura.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Canal_Futura.png/300px-Canal_Futura.png" group-title="Education",Futura (540p) [Not 24/7] -https://tv.unisc.br/hls/test.m3u8 -#EXTINF:-1 tvg-id="GhostTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/ZVO8GVI.png" group-title="Movies",Ghost TV (800p) [Not 24/7] -https://stmv.video.expressolider.com.br/ghostv/ghostv/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelCartoon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/aoq9CGU.png" group-title="Religious",Gospel Cartoon (480p) [Offline] -https://stmv1.srvstm.com/gospelcartoon2/gospelcartoon2/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelMovieTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://ipgo.xyz/tv/gmovies/imagens/logo_gospelf_site.png" group-title="Religious",Gospel Movie TV (360p) -https://stmv1.srvif.com/gospelf/gospelf/playlist.m3u8 -#EXTINF:-1 tvg-id="HotFM.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/hvm6Npo.png" group-title="",Hot FM SP (720p) [Not 24/7] -http://flash8.crossdigital.com.br/id2266/id2266/playlist.m3u8 -#EXTINF:-1 tvg-id="IMPDTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/D15qpCm.png" group-title="Religious",IMPD TV (720p) -https://58a4464faef53.streamlock.net/impd/ngrp:impd_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/6/63/Logo-istv.png" group-title="General",ISTV (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-9883/LVW9883_lFcfKysrHF/chunklist.m3u8 -#EXTINF:-1 tvg-id="ITV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i1.wp.com/itu.tv.br/wp-content/uploads/2020/03/cropped-favicon.png" group-title="Local",ITV (480p) [Not 24/7] -http://tv02.logicahost.com.br:1935/itutv/itutv/live.m3u8 -#EXTINF:-1 tvg-id="JovemPanNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Jovem_Pan_logo_2018.svg/320px-Jovem_Pan_logo_2018.svg.png" group-title="News",Jovem Pan News (1080p) [Not 24/7] -https://d6yfbj4xxtrod.cloudfront.net/out/v1/7836eb391ec24452b149f3dc6df15bbd/index.m3u8 -#EXTINF:-1 tvg-id="KpopTVPlay.br" tvg-country="BR" tvg-language="Korean" tvg-logo="https://kpoptv.live/wp-content/uploads/2021/10/logokpoptvplay.png" group-title="Music",KpopTV Play (720p) [Not 24/7] -https://srv1.zcast.com.br/kpoptv/kpoptv/playlist.m3u8 -#EXTINF:-1 tvg-id="MKKWebTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TDEDNLK.png" group-title="General",MKK Web TV (720p) [Not 24/7] -https://video01.logicahost.com.br/mkkwebtv/mkkwebtv/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaEraTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IK3F9Uq.png" group-title="Local",Nova Era TV (1080p) [Not 24/7] -http://wz3.dnip.com.br:1935/novaeratv/novaeratv.sdp/live.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (720p) -https://stream.live.novotempo.com/tv/smil:tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) -http://stream.novotempo.com:1935/tv/smil:tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) -http://stream.novotempo.com:1935/tv/tvnovotempo.smil/live.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) -http://stream.novotempo.com/tv/tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NuevoTiempo.br" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Nuevo Tiempo (720p) [Not 24/7] -https://stream.live.novotempo.com/tv/smil:tvnuevotiempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PeruChannel.br" tvg-country="BR;PE" tvg-language="Portuguese;Spanish" tvg-logo="https://i.imgur.com/01KEiEp.png" group-title="General",Perú Channel (720p) [Not 24/7] -https://stmv1.duvoxtv.com.br/novelaplz/novelaplz/playlist.m3u8 -#EXTINF:-1 tvg-id="PUCTVGoias.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.puctvgoias.com.br/img/logo.png" group-title="Religious",PUC TV Goiás (326p) [Not 24/7] -http://flash.softhost.com.br:1935/pucgoias/aovivo/live.m3u8 -#EXTINF:-1 tvg-id="RecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c7/Logotipo_da_Record_News_%282016%29.png" group-title="News",Record News (720p) [Geo-blocked] -https://playplusnews-lh.akamaihd.net/i/pp_nws@377849/master.m3u8 -#EXTINF:-1 tvg-id="RecordBelem.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Belem (720p) [Geo-blocked] -https://playpluspa-lh.akamaihd.net/i/pp_pa@377468/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="Record.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Brasilia (720p) [Geo-blocked] -https://playplusbsa-lh.akamaihd.net/i/pp_bsa@377860/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordGoias.Br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Goias (720p) [Geo-blocked] -https://playplusgoya-lh.akamaihd.net/i/pp_gna@377833/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordItapoan.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Itapoan (720p) [Geo-blocked] -https://playplussdr-lh.akamaihd.net/i/pp_sdr@377858/index_720_av-b.m3u8 -#EXTINF:-1 tvg-id="Record.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Manaus (720p) [Geo-blocked] -https://playplusmao-lh.akamaihd.net/i/pp_mao@409195/master.m3u8 -#EXTINF:-1 tvg-id="RecordMinas.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Minas (720p) [Geo-blocked] -https://playplusbh-lh.akamaihd.net/i/pp_bh@377862/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Rio (720p) [Geo-blocked] -https://playplusrjo-lh.akamaihd.net/i/pp_rj@377859/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordPortoAlegre.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV RS (720p) [Geo-blocked] -https://playpluspoa-lh.akamaihd.net/i/pp_poa@377864/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV SP (720p) [Geo-blocked] -https://playplusspo-lh.akamaihd.net/i/pp_sp@350176/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RedeBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/3/39/Logotipo_da_Rede_Brasil_de_Televis%C3%A3o.png/300px-Logotipo_da_Rede_Brasil_de_Televis%C3%A3o.png" group-title="General",Rede Brasil (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/rbtv/rbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeBrasildeComunicacao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://portal.rbc1.com.br/public/portal/img/layout/logorbc.png" group-title="Religious",Rede Brasil de Comunicação (720p) [Not 24/7] -http://rbc.directradios.com:1935/rbc/rbc/live.m3u8 -#EXTINF:-1 tvg-id="RedeCNTCuritiba.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cnt.com.br/public/dist/assets/myDev/image/global/logo.png" group-title="Local",Rede CNT (Curitiba) (360p) [Not 24/7] -https://dd8umsy8yf96u.cloudfront.net/live/cnt-curitiba.m3u8 -#EXTINF:-1 tvg-id="RedeCNTSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cnt.com.br/public/dist/assets/myDev/image/global/logo.png" group-title="Local",Rede CNT (São Paulo) (180p) [Not 24/7] -https://dd8umsy8yf96u.cloudfront.net/live/cnt-americana.m3u8 -#EXTINF:-1 tvg-id="RedeFamilia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.redefamilia.com.br/wp-content/themes/redefamilia/assets/images/logo20anos-branco.png" group-title="",Rede Família (360p) [Not 24/7] -https://5a1c76baf08c0.streamlock.net/familia/smil:familia.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGloboRiodeJaneiro.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/q7pYaJR.png" group-title="Sports",Rede Globo RJ (720p) [Offline] -http://live.video.globo.com/h/1402196682759012345678915746027599876543210hM4EA1neMoQoIiUyVn1TNg/k/app/a/A/u/anyone/d/s/hls-globo-rj/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeGospel.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/yvxG9m5.png" group-title="Religious",Rede Gospel (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8719/LVW8719_AcLVAxWy5J/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeMaoAmiga.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/cqD6DNY.png" group-title="Religious",Rede Mão Amiga (480p) [Not 24/7] -http://streaming03.zas.media:1935/redemaoamiga/redemaoamiga/live.m3u8 -#EXTINF:-1 tvg-id="RedeMinas.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Tgov03S.jpg" group-title="Education",Rede Minas (1080p) [Not 24/7] -https://v4-slbps-sambavideos.akamaized.net/live/3282,8114,ec4b5a296d97fa99bf990662f5b4f8e1;base64np;Mc8VDxqNjXKCAf8!/amlst:Mc_tFgfGiHOdQXPB/chunklist_.m3u8 -#EXTINF:-1 tvg-id="RedeRC.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/nc95BPy.png" group-title="Local",Rede RC (360p) [Not 24/7] -http://tv02.logicahost.com.br:1935/rederc/rederc/live.m3u8 -#EXTINF:-1 tvg-id="RedeSeculo21.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vvrCWVo.jpg" group-title="Religious",Rede Século 21 (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-10024/ngrp:LVW10024_H3QLdAY6kx_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeSuper.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/3ODbxcM.png" group-title="Religious",Rede Super (432p) [Not 24/7] -https://api.new.livestream.com/accounts/10205943/events/3429501/live.m3u8 -#EXTINF:-1 tvg-id="RedeTVES.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! ES (720p) [Offline] -https://hls.brasilstream.com.br/live/redetves/redetves/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPampa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! Pampa (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvpampa/tvpampa/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! SP (720p) [Not 24/7] -https://hls.brasilstream.com.br/live/redetv/redetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeVida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Rede_Vida_logo.png/267px-Rede_Vida_logo.png" group-title="Religious",Rede Vida (720p) [Not 24/7] -https://cvd1.cds.ebtcvd.net/live-redevida/smil:redevida.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeTVTocantins.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/8fGmJWA.png" group-title="General",RedeTV! Tocantins (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/redetvro/redetvro/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCartoon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/cyfu3qP.png" group-title="Classic",Retrô Cartoon (480p) [Not 24/7] -https://stmv1.srvif.com/retrotv/retrotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SantaCeciliaTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/KxYsq1d.png" group-title="Education",Santa Cecilia TV (288p) [Not 24/7] -http://flash1.crossdigital.com.br/2063/2063/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeMassa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-massa_m.png" group-title="General",SBT Rede Massa (720p) [Not 24/7] -https://cdn-cdn-iguacu.ciclano.io:1443/cdn-iguacu/cdn-iguacu/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadeVerde.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-cidade-verde-hd_m.png" group-title="General",SBT TV Cidade Verde (1080p) [Not 24/7] -https://stmv1.transmissaodigital.com/cidadeverde/cidadeverde/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IUDRW8l.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",SBT TV Jornal Caruaru (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/ne10/ne10-tvjornal-caruaru-video-web.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IUDRW8l.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",SBT TV Jornal Recife (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://evpp.mm.uol.com.br/ne10/ne10.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSerraDourada.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-serra-dourada-hd_m.png" group-title="General",SBT TV Serra Dourada (720p) [Not 24/7] -https://5a1c76baf08c0.streamlock.net/tvsd2/smil:tvsd2_20042020.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SescTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://sesctv.org.br/wp-content/uploads/2018/06/SESCTV-ICON.png" group-title="Music",Sesc TV (1080p) [Not 24/7] -https://slbps-ml-sambatech.akamaized.net/samba-live/2472/7424/8a00fe7cc36ac263b2c3e9324497d5ff/video/0c884f97-4264-446f-abcd-03aa46089a96_index.m3u8 -#EXTINF:-1 tvg-id="TELECINEACTION.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Telecine_Action_2.png/320px-Telecine_Action_2.png" group-title="Movies",TELE CINE ACTION (720p) -http://painelvj.com.br/tvaguaboa2/tvaguaboa2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TerraViva.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hBaG4Ce.png" group-title="Outdoor",Terra Viva (720p) [Not 24/7] -http://evpp.mm.uol.com.br:1935/band_live/terraviva/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAberta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1pZUGb4.png" group-title="General",TV Aberta (1080p) [Not 24/7] -https://cdn-canalpaulo.ciclano.io:1443/canalpaulo/canalpaulo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVALMG.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.almg.gov.br/export/sites/default/biblioteca/imagens/logo_facebook.png" group-title="Legislative",TV ALMG (720p) [Timeout] -https://streaming.almg.gov.br/live/tvalmg.m3u8 -#EXTINF:-1 tvg-id="TVAlternativa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VnlWeo3.png" group-title="General",TV Alternativa (614p) [Not 24/7] -http://stmv8.conectastm.com/wagner1168/wagner1168/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAparecida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/1/1e/Logotipo_da_TV_Aparecida.png" group-title="Religious",TV Aparecida (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-9716/LVW9716_HbtQtezcaw/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBirigui.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VqIzaFz.png" group-title="General",TV Birigui (640p) -http://tv02.logicahost.com.br:1935/tvdigitalbirigui/tvdigitalbirigui/live.m3u8 -#EXTINF:-1 tvg-id="TVBirigui.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VqIzaFz.png" group-title="General",TV Birigui (640p) -https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/tvdigitalbirigui/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBNO.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.tvbno.com.br/images/LOGOTIPO-BNO-1.png" group-title="Music",TV BNO (270p) [Not 24/7] -http://tv02.logicahost.com.br:1935/bonner/bonner/live.m3u8 -#EXTINF:-1 tvg-id="TVBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/1/1c/Logotipo_da_TV_Brasil.png" group-title="General",TV Brasil [Timeout] -https://edge-rj-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(kyMRVuhfTf2jk2bhk4oZVw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGXTwBm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuhde-5ZIl_f4tK0pFaa_lpv5gVXuaKHBhpJxYHQpAySe8UfuTry1gihrKpUq-DVrvTLAVcN_NYL-OR5gME)'t(ccA)b(Q_39q61nTExyyL-LZijmcTvd7twmucXBiaA)))/live_720_index.m3u8 -#EXTINF:-1 tvg-id="TVCamara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/UpV2PRk.png" group-title="Legislative",TV Câmara (1080p) -https://stream3.camara.gov.br/tv1/manifest.m3u8 -#EXTINF:-1 tvg-id="TVCamara2.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/UpV2PRk.png" group-title="Legislative",TV Câmara 2 (1080p) [Not 24/7] -https://stream3.camara.gov.br/tv2/manifest.m3u8 -#EXTINF:-1 tvg-id="saopaulo.sp.leg.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/Logo_tvcamara_.png/320px-Logo_tvcamara_.png" group-title="Legislative",TV Camara de Sao Paulo (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8711/ngrp:LVW8711_tG0F3TEBDL_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCapitalLucelia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://radiocapitalfm777.com/images/415d46e69bdae8276a4cc5cba9cd3d10.jpg" group-title="",TV Capital Lucelia (320p) [Not 24/7] -http://tv02.logicahost.com.br:1935/tvcapital/tvcapital/live.m3u8 -#EXTINF:-1 tvg-id="TVCarioca.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pbr-str.srvsite.com/arquivos/7051/cabecalho-7051-20200320104612.png" group-title="General",TV Carioca (720p) -https://srv5.zcast.com.br/tvcarioca/tvcarioca/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadeCanal9.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/mbw27tW.png" group-title="Local",TV Cidade Canal 9 (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvcidade/tvcidade/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadedePetropolis.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/jaaGxnd.png" group-title="Local",TV Cidade de Petrópolis (1080p) [Not 24/7] -https://video01.kshost.com.br:4443/inside2133/inside2133/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadedeSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/8/88/Logotipo_da_TV_Cidade_de_S%C3%A3o_Paulo.png/200px-Logotipo_da_TV_Cidade_de_S%C3%A3o_Paulo.png" group-title="Local",TV Cidade de Sao Paulo [Not 24/7] -https://cast.cdnseguro.com:19360/8012/8012.m3u8 -#EXTINF:-1 tvg-id="TVCinec.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/bEoN2tt.png" group-title="",TV Cinec (720p) [Not 24/7] -http://tv01.logicahost.com.br:1935/tvcinec/tvcinec/live.m3u8 -#EXTINF:-1 tvg-id="TVDestak.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W1LutVP.png" group-title="General",TV Destak (360p) -https://59f2354c05961.streamlock.net:1443/pascoal/pascoal/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDestak.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W1LutVP.png" group-title="General",TV Destak (320p) -http://tv02.logicahost.com.br:1935/pascoal/pascoal/live.m3u8 -#EXTINF:-1 tvg-id="TVDiariodoSertao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/uBntXf1.png" group-title="General",TV Diário do Sertão (720p) -http://painelvj.com.br:1935/pdsertaotv/pdsertaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEscola.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pt.wikipedia.org/wiki/Ficheiro:TV_Escola.png" group-title="Education",TV Escola [Timeout] -https://edge-pe-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(iKyPRJ66GZqYJf0OVp_mxw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGVQABm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuAfecBVa16Et9eMjlLC13Rq6Cwwi8mycU0Iwr-66QiAe98vgBCT-AiPs61W_9bjrtb8ATEJw-JsxpVNlotY)'t(wDM)b(pbCqvGJQQWqY9cAtI-9-O9bngy67xc2Xu8ug)))/live_540_index.m3u8 -#EXTINF:-1 tvg-id="TVEvangelizar.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4LG6sA0.png" group-title="Religious",TV Evangelizar (480p) -https://5f593df7851db.streamlock.net/evangelizar/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVFuturo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/BFekw0L.png" group-title="General",TV Futuro (720p) [Not 24/7] -https://streaming03.zas.media/tvfuturo/tvfuturo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGalegaBlumenau.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://ps.srvsite.com/arquivos/5757/cabecalho-5757-20190807171022.png" group-title="Local",TV Galega Blumenau (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8538/LVW8538_KBtZ9UMIZn/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGazeta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/MAMGt7I.png" group-title="General",TV Gazeta (720p) [Not 24/7] -https://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 -#EXTINF:-1 tvg-id="TVGideoes.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.gideoes.com.br/wp-content/uploads/2018/12/logotipo-tvgideoes.png" group-title="Religious",TV Gideoes (1080p) [Not 24/7] -https://streaming01.zas.media/gideoes/programacao/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGuara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/PafEXRA.png" group-title="General",TV Guará (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvguara/tvguara/playlist.m3u8 -#EXTINF:-1 tvg-id="TVInterlagos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.tvinterlagos.com.br/images/logo_tv2.jpg" group-title="Local",TV Interlagos (480p) [Not 24/7] -http://tv.tvalphanet.com.br:1935/tvinterlagos/tvinterlagos/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornaldoNordeste.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pa-str.srvsite.com/arquivos/5459/cabecalho-5459-20200226161907.png" group-title="Local",TV Jornal do Nordeste (720p) [Not 24/7] -https://5cf4a2c2512a2.streamlock.net/jornaldonorteste/jornaldonorteste/playlist.m3u8 -#EXTINF:-1 tvg-id="TVLiberdade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W6bHHqE.png" group-title="",TV Liberdade (720p) [Geo-blocked] -https://5c483b9d1019c.streamlock.net/8238/8238/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMackenzie.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/TV_Mackenzie_logo.svg/320px-TV_Mackenzie_logo.svg.png" group-title="Education",TV Mackenzie (480p) [Not 24/7] -https://player.internetaovivo.com:8443/live_tvmackenzieabr/tvmackenzieabr/playlist.m3u8 -#EXTINF:-1 tvg-id="TVManchete.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VeELX7K.png" group-title="General",TV Manchete (360p) [Offline] -https://srv5.zcast.com.br/tvmanchete/tvmanchete/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMAX.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/2Pg0baJ.png" group-title="",TV MAX (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvmax/tvmax/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMetropole.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/9/92/Logotipo_da_TV_Metr%C3%B3pole.png/300px-Logotipo_da_TV_Metr%C3%B3pole.png" group-title="General",TV Metropole (720p) [Not 24/7] -https://cdn-fundacao-2110.ciclano.io:1443/fundacao-2110/fundacao-2110/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMetropolitanaRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Elyp4SG.png" group-title="Local",TV Metropolitana Rio (480p) [Offline] -https://59f1cbe63db89.streamlock.net:1443/caxiastv/caxiastv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/j7EJvHr.png" group-title="Local",TV Mon (720p) -https://srv1.zcast.com.br/tvmon/tvmon/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNovaOnda.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1dCdBM5.png" group-title="Local",TV Nova Onda (720p) -https://5c483b9d1019c.streamlock.net/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPaiEterno.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.paieterno.com.br/wp-content/uploads/2019/05/cropped-logo-portal-01-192x192.png" group-title="Religious",TV Pai Eterno (480p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/teste01/teste01/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPaiEterno.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.paieterno.com.br/wp-content/uploads/2019/05/cropped-logo-portal-01-192x192.png" group-title="Religious",TV Pai Eterno (360p) [Not 24/7] -http://flash8.crossdigital.com.br/2306/2306/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPantanalMS.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/0FOmktl.png" group-title="Local",TV Pantanal MS (720p) [Not 24/7] -https://5e837408ea907.streamlock.net:1936/tvpantanalms/tvpantanalms/playlist.m3u8 -#EXTINF:-1 tvg-id="TVParanaTurismo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/3lxkJxb.png" group-title="Travel",TV Paraná Turismo (720p) [Not 24/7] -http://200.189.113.201/hls/tve.m3u8 -#EXTINF:-1 tvg-id="TVPocos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tvpocos.com.br/wp-content/uploads/2017/04/logo_branca_125.png" group-title="Local",TV Poços (192p) [Not 24/7] -http://rtmp.cdn.upx.net.br/00084/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSantaCruz.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.tvsantacruzcr.net/img/logotvsc.png" group-title="Local",TV Santa Cruz (720p) [Not 24/7] -https://rtmp.info/tvsantacruz/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSERIES.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://image.winudf.com/v2/image/Y29tLnR2c2VyaWVzLmdyYXRpc19zY3JlZW5fMF8xNTEzODc0NTE1XzA2OA/screen-0.jpg?fakeurl=1&type=.jpg" group-title="",TV SERIES (480p) [Offline] -https://stmv1.srvstm.com/tvserie/tvserie/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSolComunidade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tvsolcomunidade.com.br/wp-content/uploads/2019/01/logo-tv-sol.png" group-title="Local",TV Sol Comunidade (480p) [Not 24/7] -http://streaming03.zas.media:1935/tvsol/tvsol/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTerceiroAnjo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.terceiroanjo.com/static/img/logo-2019-gif.gif" group-title="Religious",TV Terceiro Anjo (360p) [Not 24/7] -https://streamer1.streamhost.org/salive/GMI3anjoh/livestream.m3u8 -#EXTINF:-1 tvg-id="TVThathi.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tv.thathi.com.br/wp-content/uploads/2021/02/tv-thathi-150x150.png" group-title="General",TV Thathi (720p) [Not 24/7] -https://cdn-grupo-10049.ciclano.io:1443/grupo-10049/grupo-10049/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTokyo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/TV_Tokyo_logo_20110629.svg/320px-TV_Tokyo_logo_20110629.svg.png" group-title="Animation",TV Tokyo (360p) [Not 24/7] -https://stmv1.voxtvhd.com.br/tvtokio/tvtokio/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTropical.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",TV Tropical (480p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvtropical/tvtropical/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUFG.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Yp3dbJo.png" group-title="Education",TV UFG (720p) [Not 24/7] -http://flash.softhost.com.br:1935/ufg/tvufgweb/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUFOP.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.upf.br/Assets/img/logo.png" group-title="Science",TV UFOP [Timeout] -https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(6pbmcjLXNoerDLdAhoXBxw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuXyAosvuqvlMJtsMkooySBOlQbVM33PgsYPQdea2CdwV3jCwh3bEWxgkPO8qmBPQtt_5bUEV1Mi_2t1AjM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcUr5z4MZQ)))/index.m3u8 -#EXTINF:-1 tvg-id="TVUniaoFortaleza.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-uni-o_m.png" group-title="Local",TV Uniao (1080p) [Not 24/7] -http://stmv1.ifantasy.com.br/admin/admin/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUniSantos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.tvunisantos.com.br/images/resource/logo.png" group-title="Local",TV UniSantos (240p) [Not 24/7] -http://live.cdn.upx.com/7550/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUniversal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TIsk5zN.png" group-title="Religious",TV Universal [Offline] -https://14398c.ha.azioncdn.net/primary/smil:tv_universal.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVVerdesCampos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1mK39TC.png" group-title="General",TV Verdes Campos (360p) [Not 24/7] -https://596639ebdd89b.streamlock.net/8124/8124/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCI.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/dc/Logo_RCI.png" group-title="Local",TVCI (360p) [Not 24/7] -http://flash8.crossdigital.com.br:1935/2306/2306/live.m3u8 -#EXTINF:-1 tvg-id="TVEBahia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/TVE_Bahia_logo.svg/800px-TVE_Bahia_logo.svg.png" group-title="Local",TVE Bahia (720p) [Not 24/7] -http://stream2.ba.gov.br/hls-live/livepkgr/_definst_/irdeb/pgm-1.m3u8 -#EXTINF:-1 tvg-id="TVE.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c2/Logotipo_da_TVE_RS.png" group-title="Education",TVE RS (1080p) [Not 24/7] -http://selpro1348.procergs.com.br:1935/tve/stve/playlist.m3u8 -#EXTINF:-1 tvg-id="TVideoNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vstHOYx.png" group-title="News",TVídeoNews (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvideonews/_definst_/tvideonews/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVMaticComedy.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="Comedy",TVMatic Comedy (720p) [Timeout] -http://cdn.tvmatic.net/comedy.m3u8 -#EXTINF:-1 tvg-id="TVMaticCrafts.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Crafts (720p) [Timeout] -http://cdn.tvmatic.net/crafts.m3u8 -#EXTINF:-1 tvg-id="TVMaticFacebook.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Facebook (720p) [Timeout] -http://cdn.tvmatic.net/facebook.m3u8 -#EXTINF:-1 tvg-id="TVMaticFight.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Fight (720p) [Timeout] -http://cdn.tvmatic.net/fight.m3u8 -#EXTINF:-1 tvg-id="TVMaticFunny.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Funny (720p) [Timeout] -http://cdn.tvmatic.net/funny.m3u8 -#EXTINF:-1 tvg-id="TVMaticSport.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Sport (720p) [Timeout] -http://cdn.tvmatic.net/sport.m3u8 -#EXTINF:-1 tvg-id="TVMaticTikTok.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic TikTok (720p) [Timeout] -http://cdn.tvmatic.net/tiktok.m3u8 -#EXTINF:-1 tvg-id="TVNBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Cywnp02.png" group-title="Local",TVN Brasil (720p) [Not 24/7] -http://painelvj.com.br:1935/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Cywnp02.png" group-title="Local",TVN Brasil (720p) [Not 24/7] -http://wz3.dnip.com.br/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVunisat.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/x6rVrTt.png" group-title="Local",TVunisat (360p) [Not 24/7] -https://stmv1.srvstm.com/jurandir3193/jurandir3193/playlist.m3u8 -#EXTINF:-1 tvg-id="UNBTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Webysther_20160322_-_Logo_UnB_(sem_texto).svg/200px-Webysther_20160322_-_Logo_UnB_(sem_texto).svg.png" group-title="Science",UNBTV [Timeout] -https://edge-go-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(XavC51HboPDZJtji_e3szw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdjsnrQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuX9AbUB8KvlMJtsMkooySBOlQbVM33PgsYPQdea2BJ0ehzbwQ39JhRwi_LnomRVQOY02rJ-d2IH3hF-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcVqJj_MZQ)))/live_1080_index.m3u8 -#EXTINF:-1 tvg-id="UniTVPortoAlegre.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.ufrgs.br/unitv/images/logo.png" group-title="Education",UniTV Porto Alegre (480p) -http://unitvaovivo.ufrgs.br:8080/live.ogg -#EXTINF:-1 tvg-id="UPFTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.upf.br/Assets/img/logo.png" group-title="Local",UPFTV [Timeout] -https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(Zpw89V7JSRj33uzTBmvflA)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyvnyAaUn8qvlMJtsMkooySBOlQbVM33PgsYPQdea2BUvej3szg6oEmxOu__mykl-Ud831Jp-clI-5BB-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kAUqZ79MZQ)))/live_768_index.m3u8 -#EXTINF:-1 tvg-id="WhamTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vxg8fKd.jpg" group-title="Music",Wham TV (720p) [Offline] -https://srv5.zcast.com.br/andre4369/andre4369/playlist.m3u8 -#EXTINF:-1 tvg-id="Yeeaah.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TxdOyKS.png" group-title="General",Yeeaah! (720p) [Not 24/7] -https://srv3.zcast.com.br/yeeaah/yeeaah/playlist.m3u8 diff --git a/channels/br_samsung.m3u b/channels/br_samsung.m3u deleted file mode 100644 index 877bd9f5d..000000000 --- a/channels/br_samsung.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArcadeCloudBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXOuzsx.png" group-title="",Arcade Cloud (Brazil) (720p) [Offline] -https://arcade-cloud-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-3-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTVBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV Brazil (720p) -https://darkmatter-por-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsPortugues.fr" tvg-country="PT;BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Português (720p) [Offline] -https://euronews-euronews-portugues-1-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) -https://fueltv-fueltv-9-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insight-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) -https://introuble-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) -https://inwild-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Brazil (720p) -https://appletree-mytime-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c7/Logotipo_da_Record_News_%282016%29.png" group-title="News",Record News (720p) -https://rede-muhler-recordnews-1-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="Movies",Runtime (Brazil) (1080p) [Geo-blocked] -https://runtimebrazil-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeBrasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Brasil (1080p) -https://tastemade-pt16intl-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveBrazil.us" tvg-country="BR" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Brazil (720p) [Offline] -https://the-pet-collective-international-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Brazil (720p) [Offline] -https://jukin-weatherspy-2-br.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/bs.m3u b/channels/bs.m3u deleted file mode 100644 index aa502fe4b..000000000 --- a/channels/bs.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="IslandLuckTV.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://www.islandluck.com/images/logo.png" group-title="Entertainment",Island Luck TV (1080p) [Not 24/7] -https://wowzaprod225-i.akamaihd.net/hls/live/1006296/23aa8a88/playlist.m3u8 -#EXTINF:-1 tvg-id="TheParliamentaryChannel.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://i.imgur.com/35oFiNg.jpg" group-title="Legislative",The Parliamentary Channel (480p) [Not 24/7] -https://cloud.streamcomedia.com/parliamentarychannel/smil:parliamentarychannel_streams.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZNSTV.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://znsbahamas.com/wp-content/uploads/2017/12/ZNS-PL-1.png" group-title="General",ZNS TV (1080p) [Not 24/7] -https://cloud.streamcomedia.com/znstv/smil:znstv_streams.smil/playlist.m3u8 diff --git a/channels/by.m3u b/channels/by.m3u deleted file mode 100644 index e8674e9bc..000000000 --- a/channels/by.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="8kanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/VpWmrEw.png" group-title="Local",8 канал (Витебск) (576p) [Not 24/7] -http://95.46.208.8:24433/art -#EXTINF:-1 tvg-id="Belarus3.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/ru/6/69/Belarus_3.jpg" group-title="News",Беларусь 3 (1080p) [Not 24/7] -https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Belarus4.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/59/Belarus_4.png" group-title="General",Беларусь 4 (576p) [Timeout] -http://95.46.208.8:26258/belarus4 -#EXTINF:-1 tvg-id="Belarus24.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/ru/d/df/Belarus-24.jpg" group-title="News",Беларусь 24 (1080p) -https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Vitebsk.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/plYo16P.jpg" group-title="Local",Витебск (720p) [Not 24/7] -https://flu.vtv.by/tvt-non-by/playlist.m3u8 -#EXTINF:-1 tvg-id="NasheTV.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/FnoSJdh.png" group-title="Local",Наше ТВ (Витебск) (576p) [Timeout] -http://95.46.208.8:26259/nashe -#EXTINF:-1 tvg-id="ONT.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/3qItFtI.png" group-title="General",ОНТ (576p) -https://stream.dc.beltelecom.by/ont/ont/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (1080p) -http://rtmp.one.by:1300 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (720p) -http://hz1.teleport.cc/HLS/HD.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (576p) -http://hz1.teleport.cc/HLS/SD.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (576p) -http://rtmp.one.by:1200 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (2160p) [Timeout] -http://rtmp.one.by:1499 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by" tvg-country="BY" tvg-language="Russian" tvg-logo="http://www.giniko.com/logos/190x110/1043.jpg" group-title="Music",Первый Музыкальный Канал Россия (1080p) -http://rtmp.one.by:2300 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by" tvg-country="BY" tvg-language="Russian" tvg-logo="http://www.giniko.com/logos/190x110/1043.jpg" group-title="Music",Первый Музыкальный Канал Россия (576p) -http://rtmp.one.by:2200 -#EXTINF:-1 tvg-id="RadioHit.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/oXoGORi.jpg" group-title="Local",Радио Хит (Орск) (720p) -http://lova.me/hls/hithd.m3u8 -#EXTINF:-1 tvg-id="STV.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/stv-by.png" group-title="General",СТВ (576p) [Not 24/7] -http://212.98.171.116/HLS/ctvby/playlist.m3u8 diff --git a/channels/by_sluhay.m3u b/channels/by_sluhay.m3u deleted file mode 100644 index b0ccde250..000000000 --- a/channels/by_sluhay.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Sluhayby.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by (720p) [Not 24/7] -https://sluhay.by/live/Ch045pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyAillion.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Aillion (720p) [Not 24/7] -https://sluhay.by/live/Ch149pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyAmoungYourGod.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Among Your God (720p) [Not 24/7] -https://sluhay.by/live/Ch086pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyChrist.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Christ (720p) [Not 24/7] -https://sluhay.by/live/Ch064pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyEDM.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_edm.png" group-title="Music",Sluhay.by EDM (720p) [Not 24/7] -https://sluhay.by/live/Ch091pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyLenadi.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Lenadi (720p) [Not 24/7] -https://sluhay.by/live/Ch052pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyLive.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_live.png" group-title="Music",Sluhay.by Live (720p) [Not 24/7] -https://sluhay.by/live/Ch173pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyMova.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Mova (720p) [Not 24/7] -https://sluhay.by/live/Ch034pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyPop.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_pop.png" group-title="Music",Sluhay.by Pop (720p) [Not 24/7] -https://sluhay.by/live/Ch066pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyRap.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_rap.png" group-title="Music",Sluhay.by Rap (720p) [Not 24/7] -https://sluhay.by/live/Ch107pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyRock.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_rock.png" group-title="Music",Sluhay.by Rock (720p) [Not 24/7] -https://sluhay.by/live/Ch114pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyXtip.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Xtip (720p) [Not 24/7] -https://sluhay.by/live/Ch056pub/index.m3u8 diff --git a/channels/ca.m3u b/channels/ca.m3u deleted file mode 100644 index 0c6b311b5..000000000 --- a/channels/ca.m3u +++ /dev/null @@ -1,273 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="5AABTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/k9M5ydW.png" group-title="",5AAB TV (720p) [Not 24/7] -http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cartoon.stream/playlist.m3u8?token=null -#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (720p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (720p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (432p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_3_1928000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (432p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_3_1928000.m3u8 -#EXTINF:-1 tvg-id="AmazingDiscoveriesTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/zXWgbVk.png" group-title="Religious",Amazing Discoveries TV (720p) -https://uni01rtmp.tulix.tv/amazingdtv/amazingdtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Amitele.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/AMI-tv.png" group-title="",AMI Tele (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMI-F_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="AMITV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/AMI-tv.png" group-title="",AMI TV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMItv_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="APTN.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/APTN.png" group-title="",APTN [Offline] -http://encodercdn1.frontline.ca/geonosis/output/APTN_720p/playlist.m3u -#EXTINF:-1 tvg-id="AzStarTV.ca" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.azstartv.com/wp-content/uploads/2021/06/AzStarTV.png" group-title="General",Az Star TV (1080p) -http://live.azstartv.com/azstar/smil:azstar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AzStarTV.ca" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.azstartv.com/wp-content/uploads/2021/06/AzStarTV.png" group-title="General",Az Star TV (240p) [Offline] -https://live.livestreamtv.ca/azstar/ngrp:azstar/playlist.m3u8 -#EXTINF:-1 tvg-id="AzstarTV.ca" tvg-country="CA" tvg-language="Persian" tvg-logo="https://i.imgur.com/iqraNYV.jpg" group-title="Music",Azstar TV (1080p) [Not 24/7] -http://live.livestreamtv.ca/azstar/smil:azstar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCTorontoGaundaPunjab.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/uSX4YXL.png" group-title="",BBC Toronto Gaunda Punjab (720p) [Not 24/7] -http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanadaOne.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/zr6KoiS.jpg" group-title="",Canada One (720p) [Not 24/7] -http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanadaStarTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/3Q9Nxj1.jpg" group-title="",Canada Star TV (1080p) [Offline] -http://live.canadastartv.com:1935/canadastartv/canadastartv/playlist.m3u -#EXTINF:-1 tvg-id="CanadianArabTV.ca" tvg-country="CA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rAZBgir.png" group-title="",Canadian Arab TV (720p) [Not 24/7] -http://142.112.39.133:8080/catv.mp4 -#EXTINF:-1 tvg-id="CanadianArabTV.ca" tvg-country="CA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rAZBgir.png" group-title="",Canadian Arab TV (720p) [Not 24/7] -http://142.112.39.133:8080/hls/catv/index.m3u8 -#EXTINF:-1 tvg-id="AssembleenationaleduQuebec.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/xKNnoci.png" group-title="Legislative",Canal de l'Assemblée nationale (544p) [Not 24/7] -https://wowzaprod231-i.akamaihd.net/hls/live/1013830/177d227e/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSavoir.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/dSvUExH.png" group-title="Documentary",Canal Savoir (360p) -https://hls.savoir.media/live/stream.m3u8 -#EXTINF:-1 tvg-id="CanBanglaTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://i.imgur.com/CMUHtv3.png" group-title="General",CanBangla TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/canbanglatv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCCalgary.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Calgary [Geo-blocked] -https://cbclivedai4-i.akamaihd.net/hls/live/567230/event2/CBRT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCCharlottetown.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Charlottetown [Geo-blocked] -https://cbclivedai6-i.akamaihd.net/hls/live/567239/event2/CBCT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCEdmonton.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Edmonton [Geo-blocked] -https://cbclivedai4-i.akamaihd.net/hls/live/567231/event2/CBXT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCFredericton.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Fredericton [Geo-blocked] -https://cbclivedai7-i.akamaihd.net/hls/live/567244/event2/CBAT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCHalifax.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Halifax [Geo-blocked] -https://cbclivedai3-i.akamaihd.net/hls/live/566977/event2/CBHT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCMontreal.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Montreal [Geo-blocked] -https://cbclivedai3-i.akamaihd.net/hls/live/566976/event2/CBMT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCNewsNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/SGbZKbJ.png" group-title="News",CBC News Network [Geo-blocked] -https://livecbcdai-i.akamaihd.net/hls/live/567245/event2/CBCNN/master5.m3u8 -#EXTINF:-1 tvg-id="CBCOttawa.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Ottawa [Geo-blocked] -https://cbclivedai5-i.akamaihd.net/hls/live/567235/event2/CBOT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCRegina.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Regina [Geo-blocked] -https://cbclivedai2-i.akamaihd.net/hls/live/566969/event2/CBKT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCStJohns.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC St Johns [Geo-blocked] -https://cbclivedai5-i.akamaihd.net/hls/live/567236/event2/CBNT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCCBLT.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cbc2015.png" group-title="",CBC Toronto (720p) -http://encodercdn1.frontline.ca/encoder181/output/CBC_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/RulfaHI.png" group-title="Local",CBC Toronto [Geo-blocked] -https://cbclivedai1-i.akamaihd.net/hls/live/566940/event2/CBLT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCVancouver.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Vancouver [Geo-blocked] -https://cbclivedai2-i.akamaihd.net/hls/live/566968/event2/CBUT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCWindsor.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Windsor [Geo-blocked] -https://cbclivedai1-i.akamaihd.net/hls/live/566941/event2/CBET/master5.m3u8 -#EXTINF:-1 tvg-id="CBCWinnipeg.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Winnipeg [Geo-blocked] -https://cbclivedai6-i.akamaihd.net/hls/live/567237/event2/CBWT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCYellowknife.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Yellowknife [Geo-blocked] -https://cbclivedai7-i.akamaihd.net/hls/live/567240/event2/CFYK/master5.m3u8 -#EXTINF:-1 tvg-id="CHCH.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/chch.png" group-title="",CHCH (720p) -http://encodercdn1.frontline.ca/geonosis/output/CHCH_Hamilton_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Cheknews.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/2jRdJ3p.png" group-title="News",Cheknews (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/canada/chek-news -#EXTINF:-1 tvg-id="CityTVToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="" group-title="General",CityTV Toronto CFTO-DT (720p) -http://encodercdn1.frontline.ca/bespin/output/City_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassiqueTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/rhHq745.png" group-title="Movies",Classique TV (480p) [Offline] -http://stmv2.srvstm.com/classique/classique/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassiqueTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/rhHq745.png" group-title="Movies",Classique TV (480p) [Offline] -http://stmv3.srvstm.com/classique/classique/playlist.m3u8 -#EXTINF:-1 tvg-id="CMT.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cmtcanada.png" group-title="",CMT (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CMTHD_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CP24.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/cp24.png" group-title="News",CP24 (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CP24H_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CPACOttawa.ca" tvg-country="CA" tvg-language="English;French" tvg-logo="https://i.imgur.com/5ym6eJS.png" group-title="Legislative",CPAC (1080p) -https://d7z3qjdsxbwoq.cloudfront.net/groupa/live/f9809cea-1e07-47cd-a94d-2ddd3e1351db/live.isml/.m3u8 -#EXTINF:-1 tvg-id="CPACOttawaEn.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CPAC.png" group-title="",Cpac (720p) -http://encodercdn1.frontline.ca/yavin/output/CPAC_English_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CPACOttawa.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CPAC.png" group-title="",CPAC FR (720p) -http://encodercdn1.frontline.ca/yavin/output/CPAC_French_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CPMTV24.ca" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",CPMTV 24 [Offline] -http://159.69.58.154/cpmtv/cpmtv.m3u8 -#EXTINF:-1 tvg-id="CTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/nfcjHAW.png" group-title="",CTV (720p) -https://pe-fa-lp02a.9c9media.com/live/News1Digi/p/hls/00000201/38ef78f479b07aa0/index/0c6a10a2/live/stream/h264/v1/3500000/manifest.m3u8 -#EXTINF:-1 tvg-id="CTVNewsChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctvnews.png" group-title="News",CTV News (720p) -http://encodercdn1.frontline.ca/bespin/output/CTV_News_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CTVNewsChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctvnews.png" group-title="News",CTV News (480p) -http://encodercdn1.frontline.ca/bespin/output/CTV_News/playlist.m3u8 -#EXTINF:-1 tvg-id="CFTO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctv-2018.png" group-title="General",CTV Toronto CFTO-DT (720p) -http://encodercdn1.frontline.ca/encoder183/output/CTV_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CKVR.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctv2-2018.png" group-title="General",CTV2 Barrie CKVR-DT (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TCTV2_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CTVDrama.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CTV_drama_channel.png" group-title="",CTVDrama (720p) -http://encodercdn1.frontline.ca/encoder183/output/CTV_Drama_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="DesheBidesheTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://www.deshebideshe.tv/assets/importent_images/footer-logo.png" group-title="General",DesheBideshe TV (720p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deshebideshe.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DoyelTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="http://www.doyeltv.com/wp-content/uploads/2020/12/LOGO-BUG-without-Slogan.png" group-title="General",Doyel TV (720p) [Not 24/7] -http://ipm.oncast.me:1934/iplived/ip-doyeltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DoyelTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="http://www.doyeltv.com/wp-content/uploads/2020/12/LOGO-BUG-without-Slogan.png" group-title="General",Doyel TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/doyeltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DukhNivaran.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="https://www.dukhnivaran.ca/wp-content/uploads/2019/01/dukhnivaran_logo1-1.png" group-title="",Dukh Nivaran (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/dncal/index.m3u8 -#EXTINF:-1 tvg-id="EEntertainment.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/E.png" group-title="",E! Canada (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_E!HD_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="EawazTV.ca" tvg-country="CA" tvg-language="Urdu" tvg-logo="https://i.imgur.com/vB4yzen.png" group-title="",Eawaz TV (720p) [Not 24/7] -https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8 -#EXTINF:-1 tvg-id="EETTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/k0Hzr3X.png" group-title="",EET TV (1080p) [Not 24/7] -https://eu.streamjo.com/eetlive/eettv.m3u8 -#EXTINF:-1 tvg-id="EMCITV.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/HRqcIcR.png" group-title="Religious",EMCI TV (1080p) [Not 24/7] -https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 -#EXTINF:-1 tvg-id="FightNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d1bf32e5d221b1e5a7e55" group-title="Sports",Fight Network (1080p) -https://d12a2vxqkkh1bo.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="GlobalNewsToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/global.png" group-title="",Global Toronto (720p) -http://encodercdn1.frontline.ca/encoder184/output/Global_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="GurSikhSabhaTV.ca" tvg-country="CA" tvg-language="Hindi" tvg-logo="https://i.imgur.com/2EKCtQm.png" group-title="Religious",GurSikh Sabha TV (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/gsctv/index.m3u8 -#EXTINF:-1 tvg-id="HistoryChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/historycanada.png" group-title="",History (720p) -http://encodercdn1.frontline.ca/encoder181/output/History_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ICIMontreal.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/i3xFNPE.png" group-title="General",ICI Montreal (720p) [Not 24/7] -https://ici-i.akamaihd.net/hls/live/873426/ICI-Live-Stream/master.m3u8 -#EXTINF:-1 tvg-id="CBFT.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/byTTNAi.png" group-title="General",Ici Radio-Canada Télé (720p) -https://rcavlive.akamaized.net/hls/live/696615/xcancbft/master.m3u8 -#EXTINF:-1 tvg-id="CBFT.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/byTTNAi.png" group-title="General",Ici Radio-Canada Télé (1080p) [Geo-blocked] -https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8 -#EXTINF:-1 tvg-id="ICIRadioCanadaRDI.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/ICI_RDI.png" group-title="",ICI RDI (720p) -http://encodercdn1.frontline.ca/encoder184/output/ICI_RDI_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ICIRadioCanadaOntario.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/rQyoWsy.png" group-title="",ICI TELE Toronto (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ICIHT_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="IIPCTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/G7hGk8y.png" group-title="Religious",IIPC TV (480p) [Geo-blocked] -https://uni10rtmp.tulix.tv/iipctv/iipctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITCTV.ca" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",ITC TV (480p) [Geo-blocked] -https://dacastmmd.mmdlive.lldns.net/dacastmmd/f05d55e42dc746c8bd36edafbace7cc1/playlist.m3u8 -#EXTINF:-1 tvg-id="Knowledge.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/kdgMVOI.png" group-title="Kids",Knowledge (720p) [Geo-blocked] -http://knstream1.azureedge.net/knlive/knlive_high.m3u8 -#EXTINF:-1 tvg-id="LCN.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/JHOyrgA.png" group-title="",LCN [Geo-blocked] -https://tvalive.akamaized.net/hls/live/2014213/tvan01/tvan01.m3u8 -#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia (720p) -http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MontrealGreekTV.ca" tvg-country="CA" tvg-language="Greek" tvg-logo="https://i.imgur.com/eNu3N0f.png" group-title="Local",Montreal Greek TV (480p) [Not 24/7] -http://94.130.180.175:8081/live/greektv/playlist.m3u8 -#EXTINF:-1 tvg-id="NACTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/FzM95rH.png" group-title="",NACTV (720p) [Not 24/7] -http://stream.pivotalelements.com/nactv/stream.m3u8 -#EXTINF:-1 tvg-id="NETVToronto.ca" tvg-country="CA" tvg-language="Greek" tvg-logo="https://i.imgur.com/IYDllP5.jpg" group-title="Movies",NETV Toronto (720p) [Not 24/7] -https://live.streams.ovh/NetvToronto/NetvToronto/playlist.m3u8 -#EXTINF:-1 tvg-id="Nickelodeon.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/nickelodeon.png" group-title="",Nickelodeon Canada (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NICKH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="NRBTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://www.thenrb.tv/organization/logo/nrb-tv_WJkwkcRXBEVrzo5_1576430300.jpg" group-title="General",NRB TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nrb-eu.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/X5CJ3jz.png" group-title="",NTV (Newfoundland) (576p) [Not 24/7] -https://2-fss-1.streamhoster.com/pl_122/201748-1282644-1/playlist.m3u8 -#EXTINF:-1 tvg-id="OMNI1.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/omni1.png" group-title="",OMNI 1 (720p) -http://encodercdn1.frontline.ca/geonosis/output/OMNI1_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ONNtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/RUuCbIG.png" group-title="Local",ONNtv (Ontario) (1080p) [Offline] -https://onntv.vantrix.tv/onntv_hls/h264_aac_ABR.m3u8 -#EXTINF:-1 tvg-id="OntarioParliamentaryNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/BQWfhEr.jpg" group-title="Legislative",Ontario Parliamentary Network (720p) -http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8 -#EXTINF:-1 tvg-id="OntarioParliamentaryNetworkFR.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/BQWfhEr.jpg" group-title="Legislative",Ontario Parliamentary Network (FR) (720p) -http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-fr/playlist.m3u8 -#EXTINF:-1 tvg-id="PardesiTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/CwAdPpZ.jpg" group-title="",Pardesi TV (720p) [Not 24/7] -http://stream.pardesitv.online/pardesi/index.m3u8 -#EXTINF:-1 tvg-id="ParnianTV.ca" tvg-country="CA" tvg-language="Persian" tvg-logo="https://i.imgur.com/eNGthNI.jpg" group-title="",Parnian TV (720p) -https://live2.parnian.tv/hls/.m3u8 -#EXTINF:-1 tvg-id="PlymouthRockTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PlymouthRockTV_205x205.png?raw=true" group-title="",Plymouth Rock TV (1080p) -https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtv/playlist.m3u8 -#EXTINF:-1 tvg-id="PlymouthRockTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PlymouthRockTV_205x205.png?raw=true" group-title="",Plymouth Rock TV (1080p) -https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimeAsiaTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/LdGWsGj.png" group-title="",Prime Asia TV (720p) -http://primeasia.dyndns.tv:8080/Live_web_250/index.m3u8 -#EXTINF:-1 tvg-id="PrimeCanadaTV.ca" tvg-country="CA" tvg-language="Panjabi" tvg-logo="" group-title="",Prime Canada TV (720p) [Not 24/7] -http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="QVTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/X9LBFzK.jpg" group-title="Religious",QVTV (720p) -https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RamgarhiABC.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="http://ramgarhiabc.com/wp-content/uploads/2014/02/headerlogo.png" group-title="",Ramgarhi ABC (720p) [Not 24/7] -https://443-1.autopo.st/100/live/bcgurduwarabrookside/chunks.m3u8 -#EXTINF:-1 tvg-id="SaltPlusLightTelevision.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/mpJICdg.png" group-title="Religious",Salt + Light Television (1080p) -https://zm6gdaxeyn93-hls-live.5centscdn.com/slworld/d65ce2bdd03471fde0a1dc5e01d793bb.sdp/index.m3u8 -#EXTINF:-1 tvg-id="SanjhaPunjab.ca" tvg-country="CA" tvg-language="Panjabi" tvg-logo="https://i.imgur.com/17e3T2n.png" group-title="",Sanjha Punjab (720p) -http://toronto3.live247stream.com:8081/sanjhapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SardariTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/AhbJjPL.jpg" group-title="",Sardari TV (1080p) [Not 24/7] -http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 -#EXTINF:-1 tvg-id="Showcase.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/showcasecanada.png" group-title="",Showcase (720p) -http://encodercdn1.frontline.ca/encoder181/output/Showcase_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SikhSpiritualCentreRexdale.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="https://www.sikhspiritualcentrerexdale.com/wp-content/uploads/2019/07/favicon-transprent.png" group-title="",Sikh Spiritual Centre Rexdale (720p) -https://cdn12.henico.net:8443/live/ssct/index.m3u8 -#EXTINF:-1 tvg-id="TAGTV.ca" tvg-country="CA" tvg-language="Hindi" tvg-logo="https://i.imgur.com/4PA2adF.png" group-title="",TAG TV (1080p) [Not 24/7] -http://cdn11.live247stream.com/tag/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TamilVisionTV.ca" tvg-country="CA;IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/jSWRXdg.png" group-title="",Tamil Vision TV (1080p) -http://live.tamilvision.tv:8081/TVI/HD/playlist.m3u8 -#EXTINF:-1 tvg-id="TamilVisionTV.ca" tvg-country="CA;IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/jSWRXdg.png" group-title="",Tamil Vision TV (720p) -http://live.tamilvision.tv:8081/TVI/SD/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCulturelleMedias.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/oRigj9q.jpg" group-title="",Télé Culturelle Médias (720p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8150/8150/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleMagQuebec.ca" tvg-country="CA" tvg-language="French" tvg-logo="" group-title="",Télé-Mag Québec (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNKXYT-Nng5LBMUQrZJ9zWA/live -#EXTINF:-1 tvg-id="TeleMag.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/i5Isrob.png" group-title="General",Télé-Mag Québec (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/ctmq/live -#EXTINF:-1 tvg-id="CIVM.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/0ZmcpEE.png" group-title="General",Télé-Québec (720p) -https://bcovlive-a.akamaihd.net/575d86160eb143458d51f7ab187a4e68/us-east-1/6101674910001/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletoon.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/canada/teletoon-ca.png" group-title="Animation",Teletoon (720p) [Not 24/7] -http://s1.mysportz.tv:2082/teletoon/playlist.m3u8 -#EXTINF:-1 tvg-id="TFO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TFO.png" group-title="",TFO (720p) -http://encodercdn1.frontline.ca/encoder183/output/TFO_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TheChannelTV.ca" tvg-country="CA" tvg-language="Bengali;English" tvg-logo="https://i.imgur.com/08c6W9l.png" group-title="General",The Channel TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/thechanneltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN5.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/canada/tsn-ca.png" group-title="Sports",The Sports Network (TSN5) (720p) -http://encodercdn1.frontline.ca/kamino/output/TSN5_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="TheWeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",The Weather Network (720p) -http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TheWeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",The Weather Network (480p) -http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/jOOkSCE.png" group-title="Weather",The Weather Network Event (720p) [Not 24/7] -https://bcliveunivsecure-lh.akamaihd.net/i/twn_1@631672/master.m3u8 -#EXTINF:-1 tvg-id="TMC.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tcm.png" group-title="",TMC (720p) -http://encodercdn1.frontline.ca/encoder181/output/TCM_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Toronto360TV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/PkWndsv.png" group-title="Local",Toronto 360 TV (720p) [Not 24/7] -http://toronto3.live247stream.com/toronto360/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Treehouse.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/treehousetv.png" group-title="",Treehouse (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TREEH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="TSC.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/FlJVD8a.png" group-title="Shop",TSC (720p) -https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 -#EXTINF:-1 tvg-id="TSN1.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn1-2018.png" group-title="",TSN 1 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN1_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN2.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn2-2018.png" group-title="",TSN 2 (720p) -http://encodercdn1.frontline.ca/encoder182/output/TSN2_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN3.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn3-2018.png" group-title="",TSN 3 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN3_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN4.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn4-2018.png" group-title="",TSN 4 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN4_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TV16Toronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/brxkNbw.png" group-title="Local",TV 16 Toronto (720p) [Not 24/7] -http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TV5.png" group-title="",TV5 (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/ColbaNet_TV5_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="CFTM.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://graph.facebook.com/ReseauTVA/picture?width=300&height=300" group-title="",TVA [Geo-blocked] -https://tvalive-nondai.akamaized.net/Content/HLS/Live/channel(a7315e07-037c-12a8-bdc8-da7bd513da9d)/index.m3u8 -#EXTINF:-1 tvg-id="TVA.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TVA.png" group-title="",TVA Montreal (720p) -http://encodercdn1.frontline.ca/encoder184/output/TVA_Montreal_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TVC9.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/KLWdogU.png" group-title="Local",TVC9 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC0JP0ek-HhcqisiEpsZiQZA/live -#EXTINF:-1 tvg-id="TVO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TVO.png" group-title="",TVO (720p) -http://encodercdn1.frontline.ca/encoder181/output/TVO_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOKids.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tvokids-logo.svg/512px-Tvokids-logo.svg.png" group-title="Kids",TVOKids (360p) [Not 24/7] -https://bcsecurelivehls-i.akamaihd.net/hls/live/623607/15364602001/tvokids/master.m3u8 -#EXTINF:-1 tvg-id="UniTV.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/UNIS.png" group-title="",UnisTV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_UNISH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="isumatv.ca" tvg-country="CA" tvg-language="English;Inuktitut" tvg-logo="https://i.imgur.com/RR7ATr2.png" group-title="Local",Uvagut TV (1080p) -http://dee7mwgg9dzvl.cloudfront.net/hls/uvagut/playlist.m3u8 -#EXTINF:-1 tvg-id="VBS.ca" tvg-country="CA" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/IWpevBp.jpg" group-title="",VBS (360p) [Not 24/7] -https://uni6rtmp.tulix.tv/vbstv/vbsabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Vision.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/vision.png" group-title="",Vision TV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_VISON_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="WTN.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/w-copy.png" group-title="",W Network (720p) -http://encodercdn1.frontline.ca/kamino/output/W_Network_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WCGtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/q7UPbEG.png" group-title="",WCGtv Brandon (720p) [Not 24/7] -https://wowzastream.westmancom.com/wcgtvlive/highstream.sdp/master.m3u8 -#EXTINF:-1 tvg-id="WCGtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/q7UPbEG.png" group-title="",WCGtv Brandon Radio Pub Sessions (720p) [Not 24/7] -https://wowzastream.westmancom.com/wcgtvlive/wcgtvPSA.stream/master.m3u8 -#EXTINF:-1 tvg-id="YesTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/yestv.png" group-title="",yes TV (720p) -http://encodercdn1.frontline.ca/kamino/output/YESTV_Hamilton_720p/playlist.m3u8 diff --git a/channels/ca_samsung.m3u b/channels/ca_samsung.m3u deleted file mode 100644 index 0e24c1d84..000000000 --- a/channels/ca_samsung.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="DealornoDeal.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/soOgFFc.jpg" group-title="",Deal or no Deal (720p) [Offline] -https://endemol-dealornodeal-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DegrassiTheNextGenerationCanada.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mRBQKp3.png" group-title="",Degrassi The Next Generation (Canada) (720p) -http://dhx-degrassi-2-ca.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/a3mGVRE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] -https://dust-samsung-uk-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (720p) [Offline] -https://elevensports-samsunguk-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) -https://fueltv-fueltv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/BT31YWz.png" group-title="",HollyWire (720p) [Offline] -https://hollywire-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsung-canada.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsung-canada.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (720p) [Offline] -https://mavtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MHZ.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/a5fw83n.jpg" group-title="",MHZ (720p) [Offline] -https://mhz-samsung-linear-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/snuV96y.png" group-title="",Outside TV (720p) -https://outside-tv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/d3EaS41.png" group-title="Sports",Players TV (1080p) -https://playerstv-samsungca.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/HwAQMJL.png" group-title="",PowerNation (720p) [Offline] -https://rtmtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (1080p) [Offline] -https://stingray-naturescape-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/yuRa9lM.png" group-title="Cooking",Tastemade (720p) [Offline] -https://ti-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/wCq3E0M.png" group-title="",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-6-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Canada (720p) [Offline] -https://the-pet-collective-international-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/yBTz6JA.png" group-title="",Waypoint TV (720p) [Offline] -https://waypointtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Weatherspy.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/8oJYi1z.png" group-title="",Weatherspy (720p) -https://jukin-weatherspy-2-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) [Offline] -https://world-poker-tour-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/ca_stingray.m3u b/channels/ca_stingray.m3u deleted file mode 100644 index 00ddfb40f..000000000 --- a/channels/ca_stingray.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Classic Rock (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayEverything80s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Everything 80s (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/128/master.m3u8 -#EXTINF:-1 tvg-id="StingrayFlashback70s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Flashback 70s (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/115/master.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Greatest Hits (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Hit List (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/107/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Hot Country (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayPopAdult.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Pop Adult (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/104/master.m3u8 -#EXTINF:-1 tvg-id="StingrayRockAlternative.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Rock Alternative (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/102/master.m3u8 -#EXTINF:-1 tvg-id="StingrayTodaysLatinPop.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Today's Latin Pop (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/190/master.m3u8 -#EXTINF:-1 tvg-id="StingrayUrbanBeat.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Urban Beat (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/133/master.m3u8 diff --git a/channels/cd.m3u b/channels/cd.m3u deleted file mode 100644 index ba656afc5..000000000 --- a/channels/cd.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Afrobeats.cd" tvg-country="CD" tvg-language="English" tvg-logo="" group-title="Music",Afrobeats (1080p) -https://stream.ecable.tv/afrobeats/index.m3u8 -#EXTINF:-1 tvg-id="BOne.cd" tvg-country="CD" tvg-language="French" tvg-logo="" group-title="Entertainment",B-One [Offline] -http://178.33.237.146/rtnc1.m3u8 -#EXTINF:-1 tvg-id="BossBrothersTV.cd" tvg-country="CD" tvg-language="French" tvg-logo="" group-title="General",Boss Brothers TV (1080p) -http://51.254.199.122:8080/bossbrothersTV/index.m3u8 -#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd" tvg-country="CD" tvg-language="French" tvg-logo="https://i.imgur.com/KiyYqPK.jpg" group-title="General",Congo Planet Television (1080p) -https://radio.congoplanet.com/Congo_Planet_TV_Pop.sdp/Congo_Planet_TV_Pop/playlist.m3u8 -#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd" tvg-country="CD" tvg-language="French" tvg-logo="https://i.imgur.com/KiyYqPK.jpg" group-title="General",Congo Planet Television (1080p) -https://radio.congoplanet.com/Congo_Planet_TV.sdp/Congo_Planet_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNC1.cd" tvg-country="CD" tvg-language="French;Lingala" tvg-logo="" group-title="General",RTNC 1 (360p) -https://cdn.strimie.eu:3431/live/rtnc1live.m3u8 diff --git a/channels/cg.m3u b/channels/cg.m3u deleted file mode 100644 index 8b0ad1b87..000000000 --- a/channels/cg.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ObossoTV.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://i.imgur.com/UTo9vCc.jpg" group-title="",Obosso TV (1080p) [Offline] -https://edge4.vedge.infomaniak.com/livecast/ik:obossotv_6/manifest.m3u8 diff --git a/channels/ch.m3u b/channels/ch.m3u deleted file mode 100644 index fbe8c0d55..000000000 --- a/channels/ch.m3u +++ /dev/null @@ -1,85 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalAlphaJura.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Jura (360p) -https://canalalphaju.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlphaJura.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Jura (360p) -https://edge.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlphaNeuchatel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Neuchatel (1080p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:canalalpha/playlist.m3u8 -#EXTINF:-1 tvg-id="Couleur3.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/9fAlB8K.png" group-title="",Couleur 3 (720p) -https://rtsc3video-lh.akamaihd.net/i/rtsc3video_ww@513975/master.m3u8 -#EXTINF:-1 tvg-id="DieNeueZeit.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/9dQuwCc.jpg" group-title="",Die Neue Zeit (576p) -https://www.onairport.live/die-neue-zeit-tv-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="DieuTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/3sWAEuY.jpg" group-title="",Dieu TV (1080p) -https://katapy.hs.llnwd.net/dieutvwza1/DIEUTVLIVE/smil:dieutv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ELITTVIsvicre.ch" tvg-country="CH" tvg-language="German" tvg-logo="http://elittv.ch/images/elityenilogokucuk2opy.png" group-title="",ELIT TV Isvicre (720p) [Offline] -http://source2.primetime.ch/play/elittv/index.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 auf Deutsch (1080p) -https://livesd2.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 auf Deutsch (1080p) [Offline] -https://edge.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 en Français (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:livehd/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 en Français (1080p) -https://livehd.vedge.infomaniak.com/livecast/livehd/master.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) -https://latele.vedge.infomaniak.com/livecast/latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) -https://livevideo.infomaniak.com/streaming/livecast/latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LFMCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:lfmhd/manifest.m3u8 -#EXTINF:-1 tvg-id="LFMCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:lfmmd/manifest.m3u8 -#EXTINF:-1 tvg-id="LFMTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) -https://lfmhd.vedge.infomaniak.com/livecast/lfmhd/playlist.m3u8 -#EXTINF:-1 tvg-id="LFMTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) -https://lfmmd.vedge.infomaniak.com/livecast/smil:lfmmd.smil/manifest.m3u8 -#EXTINF:-1 tvg-id="Meteonews.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/YtYhbJD.png" group-title="News",Meteonews (1080p) -https://streaming.meteonews.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="OneTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/YEQ957V.png" group-title="",One TV (720p) -https://edge.vedge.infomaniak.com/livecast/ik:onefmmd/manifest.m3u8 -#EXTINF:-1 tvg-id="Radio3i.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lp23ChL.jpg" group-title="",Radio 3i (720p) -https://livestream.gruppocdt.ch/hls/radio3i.m3u8 -#EXTINF:-1 tvg-id="RadioPilatus.ch" tvg-country="CH" tvg-language="German" tvg-logo="" group-title="",Radio Pilatus (1080p) -https://rp_tv_1.vedge.infomaniak.com/livecast/rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPilatusTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lQzG2lg.png" group-title="",Radio Pilatus TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPilatusTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lQzG2lg.png" group-title="",Radio Pilatus TV (1080p) -https://livevideo.infomaniak.com/streaming/livecast/rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) -https://edge.vedge.infomaniak.com/livecast/ik:event/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) -https://event.vedge.infomaniak.com/livecast/event.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) -https://rougetv.vedge.infomaniak.com/livecast/rougetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RoyalTV.ch" tvg-country="CH" tvg-language="Turkish" tvg-logo="https://i.pinimg.com/736x/40/55/54/40555489faf07aabc2001322f637be0e.jpg" group-title="",Royal TV (720p) [Offline] -http://source2.primetime.ch:2981/play/royaltv/index.m3u8 -#EXTINF:-1 tvg-id="Schweiz5.ch" tvg-country="CH" tvg-language="German" tvg-logo="http://www.schweiz5.ch/wp-content/uploads/2018/10/ch5logo-large-1.png" group-title="",Schweiz 5 (1080p) [Timeout] -https://stream.schweiz5.ch/schweiz52020/stream.m3u8 -#EXTINF:-1 tvg-id="SwissSportTV.ch" tvg-country="CH" tvg-language="English" tvg-logo="https://i.imgur.com/HC0j4cC.jpg" group-title="Sports",Swiss Sport TV (720p) [Timeout] -https://av02.upstream-cloud.ch/sstvlinear/ngrp:sstvlinear_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele1.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://icanlive.tv/pictures/tele1.jpg" group-title="",Tele 1 (1080p) -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_xias5bqq/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="TeleM1.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/telem1.png" group-title="",Tele M1 (720p) [Not 24/7] -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_ljzy3evp/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="Telebasel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/mMXYqtm.png" group-title="",Telebasel (432p) -https://cldf-wzw-live.r53.cdn.tv1.eu/10096xtelebase/_definst_/1000199copo/live/app510394368/w162136077/live_de_1500/playlist.m3u8 -#EXTINF:-1 tvg-id="Telebasel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/mMXYqtm.png" group-title="",Telebasel (288p) -http://xapp510394368c1000199.f.l.z.lb.core-cdn.net/10096xtelebase/ios_500/master.m3u8 -#EXTINF:-1 tvg-id="TeleBielingue.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/bPpWJj2.png" group-title="",TeleBielingue (720p) -https://edge.vedge.infomaniak.com/livecast/ik:telebielinguech/manifest.m3u8 -#EXTINF:-1 tvg-id="TeleBielingue.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/bPpWJj2.png" group-title="",TeleBielingue (720p) -https://livevideo.infomaniak.com/streaming/livecast/telebielinguech/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTicino.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/HuPkeOg.jpg" group-title="",TeleTicino (720p) -https://livestream.gruppocdt.ch/hls/teleticino.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Logo_TVM3_2015.png/1200px-Logo_TVM3_2015.png" group-title="",TVM 3 (1080p) -http://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvm3.png" group-title="",TVM3 (1080p) -https://edge.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH;FR;MC;BE;CA;LU" tvg-language="French" tvg-logo="https://www.tvm3.tv/images/Tvm3BlueLogo.png" group-title="",TVM3 (1080p) [Not 24/7] -https://tvm3.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo_ch.png" group-title="",TVO (CH) (720p) -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_t5h46v64/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="TVO.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo_ch.png" group-title="",TVO (CH) (1080p) [Not 24/7] -https://s3.welocal.world/tvo/media/447348/videos/hls.m3u8 diff --git a/channels/ch_samsung.m3u b/channels/ch_samsung.m3u deleted file mode 100644 index dbd2f17d1..000000000 --- a/channels/ch_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RakutenTVActionMoviesSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies Switzerland (720p) [Offline] -https://rakuten-actionmovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies Switzerland (720p) [Offline] -https://rakuten-comedymovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama Switzerland (720p) [Offline] -https://rakuten-tvshows-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilySwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Switzerland (720p) [Offline] -https://rakuten-family-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/vbb3bjW.png" group-title="",Rakuten TV Spotlight Switzerland (720p) [Offline] -https://rakuten-spotlight-4-ch.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/ci.m3u b/channels/ci.m3u deleted file mode 100644 index 93a8e47da..000000000 --- a/channels/ci.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="NTVAfrique.ci" tvg-country="CI" tvg-language="French" tvg-logo="https://i.imgur.com/qiGrf6k.png" group-title="",NTV Afrique (1080p) [Not 24/7] -https://strhlslb01.streamakaci.tv/str_ntv_ntv/str_ntv_ntv_multi/playlist.m3u8 diff --git a/channels/cl.m3u b/channels/cl.m3u deleted file mode 100644 index b9eca8ea1..000000000 --- a/channels/cl.m3u +++ /dev/null @@ -1,355 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="24horas.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",24 Horas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/24HORAS/live -#EXTINF:-1 tvg-id="ADNRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",ADN Radio (1080p) -https://unlimited1-us.dps.live/adntv/adntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ADNRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",ADN Radio (1080p) -https://unlimited6-cl.dps.live/adntv/adntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AERadioTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://66.media.tumblr.com/tumblr_llqajtuVTe1qi24nu.jpg" group-title="",AE Radio TV (720p) [Not 24/7] -http://edge1.cl.grupoz.cl/aeradio/live/index.m3u8 -#EXTINF:-1 tvg-id="AlegriaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.m3u.cl/logo/80111_Alegria_TV.png" group-title="",Alegria TV (1020p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 -#EXTINF:-1 tvg-id="AlternativaTVHuasco.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Alternativa TV (Huasco) (720p) [Not 24/7] -https://srv2.zcast.com.br/carlos2469/carlos2469/playlist.m3u8 -#EXTINF:-1 tvg-id="AntofagastaTVATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Antofagasta TV (ATV) (1080p) -https://unlimited6-cl.dps.live/atv/atv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ARABTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Culture",ARABTV (720p) -https://livefocamundo.com:8081/arabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="AricaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Arica TV (480p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8002/8002/playlist.m3u8 -#EXTINF:-1 tvg-id="AtacamaTVCopiapo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Atacama TV (Copiapó) (720p) [Not 24/7] -https://v2.tustreaming.cl/atacamatv/index.m3u8 -#EXTINF:-1 tvg-id="AutonomaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Autonoma TV (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8144/8144/playlist.m3u8 -#EXTINF:-1 tvg-id="AysenTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Aysén TV (720p) [Not 24/7] -https://v2.tustreaming.cl/aysentv/playlist.m3u8 -#EXTINF:-1 tvg-id="BajoCeroTVCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Bajo Cero TV (Corporación Eva) (656p) [Offline] -https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 -#EXTINF:-1 tvg-id="BuinSomosTodos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Buin Somos Todos (720p) [Not 24/7] -https://bst.buin.cl/0.m3u8 -#EXTINF:-1 tvg-id="CamaradeDiputadosDVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Camara de Diputados (DVR) (720p) [Not 24/7] -http://camara.02.cl.cdnz.cl/cdndvr/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="CampoAbiertoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.rodeoenvivo.cl/portal/wp-content/uploads/2016/05/BANNER_CAMPO_ABIERTO_TV.png" group-title="",Campo Abierto TV (Huechuraba) (480p) [Not 24/7] -http://v3.tustreaming.cl/campoabierto/playlist.m3u8 -#EXTINF:-1 tvg-id="CampusTVTalca.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Campus TV (Talca) (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/campustv/campustv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2SanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 2 (San Antonio) (720p) [Not 24/7] -https://unlimited1-us.dps.live/canal2/canal2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UnWMRrT.png" group-title="",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] -https://unlimited1-us.dps.live/c9/c9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UnWMRrT.png" group-title="",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] -https://unlimited6-cl.dps.live/c9/c9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SYGV0j6.jpg" group-title="",Canal 13 (720p) [Geo-blocked] -http://canal13-m3u.chorroaeboy.repl.co -#EXTINF:-1 tvg-id="Canal21.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-zdameN8RkN4/Wn9k02_XleI/AAAAAAAAgwU/o7QWyXJUMuUIqbZ7vPAZ7eOHYmFLIBDNwCK8BGAs/s265/2018-02-10.png" group-title="",Canal 21 (720p) [Not 24/7] -http://edge1.cl.grupoz.cl/canal21tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal21.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.canal21tv.cl/wp/wp-content/uploads/2017/06/LogoFront-1.png" group-title="",Canal 21 (720p) [Not 24/7] -https://tls.cdnz.cl/canal21tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal29.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iQ5Umwj.jpg" group-title="",Canal 29 (614p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/canal/canal/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.canal33.cl/assets/images/logo.png" group-title="",Canal 33 (720p) [Geo-blocked] -https://5eae379fb77bb.streamlock.net/eduardo555/eduardo555/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal57Melipilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 57 Melipilla (720p) -https://593b04c4c5670.streamlock.net/8148/8148/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal74SanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 74 (San Antonio) (720p) -https://stmv1.zcastbr.com/canal74hd/canal74hd/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalDiputados.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Canal Diputados (720p) -http://camara.03.cl.cdnz.cl/camara19/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalISBIglesiaSanBernardo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Canal ISB (Iglesia San Bernardo) (720p) -https://unlimited1-us.dps.live/isb/isb.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalLatino.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://radio1latina.cl/wp-content/uploads/2015/01/logo.png" group-title="",Canal Latino (CL54) (360p) -https://hd.chileservidores.cl:1936/latina/latina/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSCNSanCarlosNuble.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal SCÑ (San Carlos Ñuble) (720p) [Not 24/7] -https://live.tvcontrolcp.com:1936/sancarlostv/sancarlostv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurvisionAlerce.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://tvsurvision.cl/wp-content/uploads/2020/10/LOGO-PNG.png" group-title="",Canal Survision Alerce [Offline] -http://170.79.102.254:1935/pruebacamara/Survision_tv_alerce/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalTUTVQuillota.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal TUTV (Quillota) (720p) -https://paneltv.net:3978/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="CaracolaTVPenalolen.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Caracola TV (Peñalolén) (720p) [Not 24/7] -https://wifispeed.trapemn.tv:1936/comunales/caracola-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CarolinaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/eaHPbqd.png" group-title="Music",Carolina TV (1080p) -https://unlimited6-cl.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CarolinaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.carolina.cl/carolina-tv/img/ogimage.png" group-title="Music",Carolina TV (1080p) [Not 24/7] -https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CEACTVSantiago.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",CEAC TV (Santiago) (480p) -https://hd.chileservidores.cl:1936/ceactv/ceactv/playlist.m3u8 -#EXTINF:-1 tvg-id="CHICMagazine.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="http://chicmagazinetv.online/img/logo-radio.png" group-title="Lifestyle",CHIC Magazine (480p) [Not 24/7] -https://paneltv.online:1936/8056/8056/playlist.m3u8 -#EXTINF:-1 tvg-id="ChileVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GAsSUqn.png" group-title="General",ChileVisión (720p) [Geo-blocked] -http://chv-m3u.chorroaeboy.repl.co -#EXTINF:-1 tvg-id="ChileVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GAsSUqn.png" group-title="General",ChileVisión (360p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/chv_003cl -#EXTINF:-1 tvg-id="24horas.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",CHV Noticias (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRsUoZYC1ULUspipMRnMhwg/live -#EXTINF:-1 tvg-id="ClickTVCoronel.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Click TV (Coronel) (720p) -http://v2.tustreaming.cl/clicktv/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudserverKids90.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Cloudserver Kids90 (480p) -https://videostreaming.cloudserverlatam.com/Kids90/Kids90/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudserverLatamCSTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Cloudserver Latam (CSTV) (720p) -https://videostreaming.cloudserverlatam.com/CSTV/CSTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubTVSantaJuana.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Club TV (Santa Juana) (720p) [Not 24/7] -https://paneltv.online:1936/8030/8030/playlist.m3u8 -#EXTINF:-1 tvg-id="Contivision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Contivisión (720p) -https://unlimited6-cl.dps.live/contivision/contivision.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CulturaOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Culture",Cultura Online (720p) [Not 24/7] -https://v2.tustreaming.cl/culturaonline/index.m3u8 -#EXTINF:-1 tvg-id="DecimaTVAncud.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Décima TV (Ancud) (720p) -http://unlimited10-cl.dps.live/decimatv/decimatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EGMChannel.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",EGM Channel (480p) [Not 24/7] -https://paneltv.online:1936/8186/8186/playlist.m3u8 -#EXTINF:-1 tvg-id="EKIZTVRancagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",EKIZ TV (Rancagua) (1080p) -https://stmv.panel.mivideo.pro/ekiztv/ekiztv/playlist.m3u8 -#EXTINF:-1 tvg-id="ElPinguinoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3ob9ss3.jpg" group-title="",El Pingüino TV (720p) [Offline] -https://iptv-all.lanesh4d0w.codes/m3u8/elpinguino_cl.m3u8 -#EXTINF:-1 tvg-id="ElionCanalDigital.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Elion Canal Digital (Chillan) (288p) [Not 24/7] -https://paneltv.online:1936/8154/8154/playlist.m3u8 -#EXTINF:-1 tvg-id="EnerGeek.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/EnerGeek.chile/picture?width=300&height=300" group-title="Entertainment",EnerGeek (720p) [Not 24/7] -https://stmv1.voxhdnet.com/energeek/energeek/playlist.m3u8 -#EXTINF:-1 tvg-id="EstacionTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS-ikVAyjIFBMuH1_tknzbL5zxfU9kQw1YfPw&usqp=CAU" group-title="",Estación TV (720p) -http://unlimited1-us.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EstacionTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS-ikVAyjIFBMuH1_tknzbL5zxfU9kQw1YfPw&usqp=CAU" group-title="",Estación TV (720p) [Timeout] -http://unlimited1-cl.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EstacionTVChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Estación TV (Chillán) (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EvaStreamCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Eva Stream (Corporación Eva) (480p) [Not 24/7] -https://stmv.panel.mivideo.pro/evastream/evastream/playlist.m3u8 -#EXTINF:-1 tvg-id="EvavisionPachangaCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Evavisión Pachanga (Corporación Eva) (720p) -http://159.69.56.148:25461/live/evavision/2r4rfasf/38.m3u8 -#EXTINF:-1 tvg-id="ExprezionTVEXTVLosAlamos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Exprezión TV (EXTV | Los Álamos) (720p) [Not 24/7] -https://srv3.zcast.com.br/expreszion/expreszion/playlist.m3u8 -#EXTINF:-1 tvg-id="GenialTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.chileiptv.cl/img/logos/file_1521688260.jpg" group-title="",Genial TV (720p) [Not 24/7] -http://v3.tustreaming.cl/genialtv/playlist.m3u8 -#EXTINF:-1 tvg-id="GeovisionIquique.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Geovisión (Iquique) (536p) -https://5fa5de1a545ae.streamlock.net/Geovision/Geovision/playlist.m3u8 -#EXTINF:-1 tvg-id="GraciaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://is1-ssl.mzstatic.com/image/thumb/Purple71/v4/dc/4f/bb/dc4fbb86-fb91-7803-17ad-9e26c5bc61f0/pr_source.png/246x0w.jpg" group-title="Religious",Gracia TV (1080p) [Not 24/7] -http://v3.tustreaming.cl/graciatv/index.m3u8 -#EXTINF:-1 tvg-id="HiperconectadosTV.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/hiperconectadostv/picture?width=320&height=320" group-title="Science",Hiperconectados Televisión (720p) -https://mediacpstreamchile.com:1936/hiperconectados/hiperconectados/playlist.m3u8 -#EXTINF:-1 tvg-id="HiperTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-Jzepv48lTKg/Xm-zbST5B9I/AAAAAAAAw9c/j5ZlS99NHzghrTZ7O-RHN8wIXHEkMRutgCK8BGAsYHg/s0/2020-03-16.png" group-title="",HiperTV (1074p) [Not 24/7] -https://inliveserver.com:1936/11010/11010/playlist.m3u8 -#EXTINF:-1 tvg-id="HolvoetTVCopiapo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Holvoet TV (Copiapó) (720p) [Not 24/7] -https://unlimited1-us.dps.live/holvoettv/holvoettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Interradio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Interradio (1080p) [Not 24/7] -https://video01.logicahost.com.br/interradiofrutillar/smil:transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITVPatagonia.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9sKGsmt.png" group-title="",ITV Patagonia (720p) [Not 24/7] -https://unlimited1-us.dps.live/itv/itv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITVPatagonia.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQx7H4ZZVpypexXqbp7Devw9Jo8H1FMPIv4eA&usqp=CAU" group-title="",ITV Patagonia (720p) [Timeout] -https://unlimited1-cl.dps.live/itv/itv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LaGranjaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",La Granja TV (720p) [Not 24/7] -https://5eae379fb77bb.streamlock.net/8126/8126/playlist.m3u8 -#EXTINF:-1 tvg-id="LaPopularTVSalamanca.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",La Popular TV (Salamanca) (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8076/ngrp:8076/playlist.m3u8 -#EXTINF:-1 tvg-id="LaRed.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_la-red_m.png" group-title="General",La Red (720p) [Not 24/7] -https://unlimited1-cl-movistar.dps.live/lared/lared.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LRPTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",LRP Televisión (720p) [Not 24/7] -https://v2.tustreaming.cl/lrp/index.m3u8 -#EXTINF:-1 tvg-id="LTVRenaico.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",LTV (Renaico) (720p) [Not 24/7] -https://medios.sirtel.cl/live/stream/index.m3u8 -#EXTINF:-1 tvg-id="MASPlusTVChile.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-gJQjLC4uY64nX5RDj7As24mWj35sC73ukw&usqp=CAU" group-title="",MÁS+.TV Chile (720p) [Not 24/7] -https://593b04c4c5670.streamlock.net/8008/8008/playlist.m3u8 -#EXTINF:-1 tvg-id="MAXIMA.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://maximachile.cl/wp-content/uploads/2019/10/LOGO-MAXIMA-MIO-ESTATICO-e1572548123359.png" group-title="",MAXIMA (720p) [Not 24/7] -https://server1.oklanet.cl:1936/maximavideo1/maximavideo1/playlist.m3u8 -#EXTINF:-1 tvg-id="Mega.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_mega_m.png" group-title="",Mega [Geo-blocked] -http://186.67.117.178:8081/play/a00x -#EXTINF:-1 tvg-id="Meganoticias.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",Meganoticias (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkccyEbqhhM3uKOI6Shm-4Q/live -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Conciertos (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/7.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Global Hits (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/5.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Puro Rock (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/25.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Retro (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/4.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Top100 (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/2.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Tropical (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/3.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Vdj Retro (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/1.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 VdjPop (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/6.m3u8 -#EXTINF:-1 tvg-id="MundodelaMusica.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Mundo de la Música (288p) -https://videostreaming.cloudserverlatam.com/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="NubleRTVChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ñuble RTV (Chillán) (720p) [Not 24/7] -https://live.tvcontrolcp.com:1936/guzman/guzman/playlist.m3u8 -#EXTINF:-1 tvg-id="NublevisionChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ñublevisión (Chillán) (720p) -https://cdn.oneplaychile.cl:1936/regionales/nublevision.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OndaRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Onda Radio (720p) [Offline] -https://5eff35271151c.streamlock.net:1936/8074/8074/playlist.m3u8 -#EXTINF:-1 tvg-id="Pauta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CFbHdqZ.jpg" group-title="",Pauta (720p) -https://unlimited1-us.dps.live/pautatv/pautatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Pauta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CFbHdqZ.jpg" group-title="",Pauta (720p) -https://unlimited6-cl.dps.live/pautatv/pautatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PintanaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-tRkb11g6GOI/WoBPJm9cd4I/AAAAAAAAgyc/lrR7FPg27aoiQryOJXRQGuG8FLpKoXxBQCK8BGAs/s132/2018-02-11.png" group-title="",Pintana TV (720p) -http://cdn.vms.grupoz.cl/lapintanatv/content/5a7c8e25e19d3e641aca9fb2/hls/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvKids.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Kids (1080p) -https://mediacpstreamchile.com:1936/8152/8152/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvMovie.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Movie (1080p) -https://mediacpstreamchile.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvMusic.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Music (720p) [Geo-blocked] -https://5eae379fb77bb.streamlock.net/planetatvmusic/planetatvmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="Portalfoxmix.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/portalfoxmixtv/picture?width=320&height=320" group-title="Music",Portalfoxmix (288p) [Not 24/7] -http://tv.portalfoxmix.club:1935/portalfoxmix/portalfoxmix/playlist.m3u8 -#EXTINF:-1 tvg-id="Portalfoxmix.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/portalfoxmixtv/picture?width=320&height=320" group-title="Music",Portalfoxmix (288p) [Not 24/7] -https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/playlist.m3u8 -#EXTINF:-1 tvg-id="PunconTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Puncón TV (1080p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/pucontv/pucontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioAmericaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Radio América TV (720p) [Not 24/7] -https://stmv1.zcastbr.com/americatvchile/americatvchile/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioElSembrador.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio El Sembrador (1080p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8064/8064/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioLaSabrosura.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio La Sabrosura (288p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8096/8096/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioMaxima949FMSB.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GQWiS9Q.png" group-title="",Radio Maxima 94.9 FM SB (720p) [Not 24/7] -http://server1.oklanet.cl:1935/maximavideo1/maximavideo1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRancaguaFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio Rancagua FM (768p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8056/8056/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRitmoFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio Ritmo FM (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8032/8032/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioUniem.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Radio Uniem (480p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8110/8110/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZetaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://ik.imagekit.io/ulangotv/image/upload/3788384_logo_radio_zeta.png" group-title="",Radio Zeta TV (240p) [Not 24/7] -https://unlimited1-us.dps.live/radioztv/radioztv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZetaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://ik.imagekit.io/ulangotv/image/upload/3788384_logo_radio_zeta.png" group-title="",Radio Zeta TV (480p) [Timeout] -https://unlimited1-cl.dps.live/radioztv/radioztv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RCKTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",RCK TV (720p) -https://mediacpstreamchile.com:1936/ricardoaravena/ricardoaravena/playlist.m3u8 -#EXTINF:-1 tvg-id="RealProOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",RealPro Online (540p) [Offline] -https://paneltv.online:1936/8202/8202/playlist.m3u8 -#EXTINF:-1 tvg-id="RedBullBatalladeGallos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Sports",RedBull Batalla de Gallos (720p) -https://videostreaming.cloudserverlatam.com/Batalladegallos/Batalladegallos/playlist.m3u8 -#EXTINF:-1 tvg-id="RestaurandoVidasInternacional.cl" tvg-country="CL;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104654614259430/picture?width=300&height=300" group-title="Religious",Restaurando Vidas Internacional (720p) [Not 24/7] -http://v4.tustreaming.cl/restaurandovidastv/index.m3u8 -#EXTINF:-1 tvg-id="RetroPlus.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Music",Retro Plus (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplustv/retroplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroPlus2.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Music",Retro Plus 2 (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/retroplussenal2/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroPlus3.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Movies",Retro Plus 3 (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplussenal3/retroplussenal3/playlist.m3u8 -#EXTINF:-1 tvg-id="RewindTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Ni2jlBi.png" group-title="Music",Rewind TV (720p) [Not 24/7] -https://tls.cdnz.cl/rewindtv/rewindtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RoccoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://roccotv.cl/wp-content/uploads/2015/02/roccotv.png" group-title="",Rocco TV (Coyhaique) (240p) [Not 24/7] -http://evo.eltelon.com:1935/live/rocco-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RuidosFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IvSqpx0.jpg" group-title="Music",Ruidos FM (360p) -https://593b04c4c5670.streamlock.net/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="SantaMariaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Santa María Televisión (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/smtv/smtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SellodeRaza.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GbALFNA.png" group-title="",Sello de Raza (720p) [Not 24/7] -https://v2.tustreaming.cl/mastermedia/playlist.m3u8 -#EXTINF:-1 tvg-id="SoloStandUp.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/solostanduptv/picture?width=300&height=300" group-title="Comedy",SoloStandUp (480p) [Not 24/7] -https://paneltv.online:1936/8116/8116/playlist.m3u8 -#EXTINF:-1 tvg-id="SpectrumChannelLGBTQPlus.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Spectrum Channel LGBTQ+ (360p) [Not 24/7] -https://vdohd.cl:1936/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="StgoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/984897951024713729/HyC8AIMf.jpg" group-title="",Stgo.TV (720p) -https://stv.janus.cl/playlist/stream.m3u8 -#EXTINF:-1 tvg-id="T13.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",T13 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsRnhjcUCR78Q3Ud6OXCTNg/live -#EXTINF:-1 tvg-id="Tele2WebRetiro.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Tele 2 Web (Retiro) (720p) [Not 24/7] -https://inliveserver.com:1936/11516/11516/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_teletrak_m.png" group-title="Sports",Teletrak (720p) -https://unlimited6-cl.dps.live/sportinghd/sportinghd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6J8xRah.png" group-title="",Teletrak (720p) -https://unlimited6-cl.dps.live/teletrak/teletrak.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6J8xRah.png" group-title="",Teletrak (720p) [Not 24/7] -https://unlimited1-us.dps.live/teletrak/teletrak.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Tendencias31PrimeT31Nunoa.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Tendencias 31 Prime (T31 | Ñuñoa) (1080p) [Not 24/7] -https://v2.tustreaming.cl/tendenciastv/index.m3u8 -#EXTINF:-1 tvg-id="Tevex.cl" tvg-country="CL;HISPAM" tvg-language="Spanish" tvg-logo="https://tevex.cl/wp-content/uploads/2021/01/logo_tevex_formato_3.svg" group-title="Business",Tevex (720p) [Not 24/7] -https://v4.tustreaming.cl/tevexinter/index.m3u8 -#EXTINF:-1 tvg-id="ThemaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.thematelevision.cl/wp-content/uploads/2016/02/LOGO1.png" group-title="",Thema Televisión (La Serena) (720p) [Not 24/7] -https://unlimited1-us.dps.live/thema/thema.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ThemaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.thematelevision.cl/wp-content/uploads/2016/02/LOGO1.png" group-title="",Thema Televisión (La Serena) (720p) [Not 24/7] -https://unlimited6-cl.dps.live/thema/thema.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TNE.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",TNE (720p) [Not 24/7] -https://v2.tustreaming.cl/tnetv/index.m3u8 -#EXTINF:-1 tvg-id="TurfMovil.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Sports",Turf Móvil (720p) -https://janus.tvturf.cl/playlist/stream.m3u8 -#EXTINF:-1 tvg-id="TVCosta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://image.winudf.com/v2/image1/dHYuY29zdGEzX2ljb25fMTU3MTA1MDcwOV8wODA/icon.png?w=170&fakeurl=1" group-title="",TV Costa (720p) [Not 24/7] -http://cdn.streamingmedia.cl:1935/live/canalcosta/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCostaSanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Costa (San Antonio) (720p) [Not 24/7] -https://hd.chileservidores.cl:1936/tvcosta1/tvcosta1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVElquiLaSerena.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Elqui (La Serena) (720p) [Offline] -https://5eff35271151c.streamlock.net:1936/8070/8070/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOsorno.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Osorno (720p) [Not 24/7] -https://hd.chileservidores.cl:1936/osorno2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPop.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.radiopop.cl/wp-content/uploads/2019/01/logo_pop_001.png" group-title="",TV Pop (720p) -https://v4.tustreaming.cl/poptv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuellon.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Quellón (1080p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/tvquellon/tvquellon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuintaRegion.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Quinta Región (1080p) [Not 24/7] -https://stmv1.zcastbr.com/danielg/smil:transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSalud.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PSDKboh.png" group-title="",TV Salud (720p) [Not 24/7] -https://srv3.zcast.com.br/mastermedia/mastermedia/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSenado.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_senado-tv_m.png" group-title="Local",TV Senado (360p) -https://janus-tv-ply.senado.cl/playlist/playlist.m3u8 -#EXTINF:-1 tvg-id="TVVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",TV Vision (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3750/live/tvvisionlive.m3u8 -#EXTINF:-1 tvg-id="TV5Linares.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FvqaFci.png" group-title="",TV5 Linares (720p) -https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5Linares.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FvqaFci.png" group-title="",TV5 Linares (720p) [Not 24/7] -https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8Concepcion.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV8 (Concepción) (514p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8014/8014/playlist.m3u8 -#EXTINF:-1 tvg-id="TVN.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLN4WfUMrRsD0b04jbG3EnYrnlV4FYPZURRw&usqp=CAU" group-title="",TVN (720p) [Not 24/7] -https://unlimited1-us.dps.live/tvn/tvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVN.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLN4WfUMrRsD0b04jbG3EnYrnlV4FYPZURRw&usqp=CAU" group-title="",TVN (720p) [Not 24/7] -https://unlimited10-cl.dps.live/tvn/tvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOSanVicente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TVO (San Vicente) (270p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOSanVicente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fvnO1X9.png" group-title="",TVO San Vicente (720p) [Not 24/7] -https://unlimited2-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOTocopilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uM665XE.png" group-title="Local",TVO Tocopilla (360p) [Not 24/7] -http://srv3.zcast.com.br/cristian5592/cristian5592/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://elfiltrador.com/wp-content/uploads/2019/03/53311917_1258469654318918_8926059123426983936_n.png" group-title="",TVR (180p) [Not 24/7] -https://unlimited1-us.dps.live/tvr/tvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://elfiltrador.com/wp-content/uploads/2019/03/53311917_1258469654318918_8926059123426983936_n.png" group-title="",TVR (720p) [Timeout] -https://unlimited1-cl.dps.live/tvr/tvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ULosLagosTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",U Los Lagos TV (1080p) [Not 24/7] -http://tv.ulagos.cl/web/live.m3u8 -#EXTINF:-1 tvg-id="UCV3TV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/f/f6/UCV_3.png/revision/latest?cb=20170820170650" group-title="",UCV3 TV (720p) -http://unlimited6-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UCV3TV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/f/f6/UCV_3.png/revision/latest?cb=20170820170650" group-title="",UCV3 TV (720p) [Timeout] -http://unlimited1-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2dVTcSF.png" group-title="",UESTV (720p) [Offline] -http://cl.origin.grupoz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://sitios.upla.cl/contenidos/wp-content/uploads/2010/06/logo-canal-tv-2.jpg" group-title="",UESTV (720p) [Offline] -http://edge1.cl.grupoz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1158034752/logo_canal_tv_2.2.JPG" group-title="",UESTV (720p) [Offline] -https://tls.cdnz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UMAGTVTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.novasur.cl/sites/default/files/web_umag_tv.png" group-title="",UMAGTV Televisión (Punta Arenas) (720p) [Offline] -http://edge1.cl.grupoz.cl/tser5/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UnidadEvangelicaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Unidad Evangelica TV (720p) [Not 24/7] -https://v2.tustreaming.cl/unidadevangelica/index.m3u8 -#EXTINF:-1 tvg-id="UATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://uatv.cl/wp-content/uploads/2016/01/marcauatv_2.png" group-title="",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] -https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://uatv.cl/wp-content/uploads/2016/01/marcauatv_2.png" group-title="",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] -https://unlimited6-cl.dps.live/uatv/uatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UTVSanClemente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.utvsanclemente.cl/img/logo-utv-sc.png" group-title="",UTV San Clemente (720p) [Geo-blocked] -http://v3.tustreaming.cl/utvsc/playlist.m3u8 -#EXTINF:-1 tvg-id="VCOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/897eGEd.png" group-title="",VC Online (720p) -https://593b04c4c5670.streamlock.net/8068/8068/playlist.m3u8 -#EXTINF:-1 tvg-id="VidaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Vida TV (1080p) [Offline] -http://45.161.188.242:88/vidatv/index.m3u8 -#EXTINF:-1 tvg-id="VisionPlusTVMelipilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión Plus TV (Melipilla) (720p) [Not 24/7] -http://v2.tustreaming.cl/visionplustv/index.m3u8 -#EXTINF:-1 tvg-id="VisionTVFrutillar.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión TV Frutillar (720p) [Not 24/7] -https://vivo.solumedia.com:19360/visiontv/visiontv.m3u8 -#EXTINF:-1 tvg-id="VozdePoder.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Voz de Poder (720p) [Not 24/7] -https://v2.tustreaming.cl/vozdepoder/index.m3u8 -#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Valle de Aconcagua (720p) [Not 24/7] -https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Valle de Aconcagua (720p) [Not 24/7] -https://unlimited6-cl.dps.live/vtv/vtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTVVinadelMaryValparaiso.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Viña del Mar y Valparaíso (720p) [Offline] -http://cdn.streamingmedia.cl:1935/live/vtvvina/playlist.m3u8 -#EXTINF:-1 tvg-id="Wapp.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Lifestyle",Wapp (1080p) -https://mdstrm.com/live-stream-playlist/6046495ddf98b007fa2fe807.m3u8 -#EXTINF:-1 tvg-id="ZappingMusic.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lHvoKdw.jpg" group-title="Music",Zapping (720p) [Offline] -https://zmlive.zappingtv.com/zm_free/zm.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZizaTVChiguayante.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ziza TV (Chiguayante) (720p) [Not 24/7] -https://v2.tustreaming.cl/zizatv/index.m3u8 -#EXTINF:-1 tvg-id="ZonaLatina.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_zona-latina_m.png" group-title="Music",Zona Latina (480p) [Not 24/7] -http://38.131.11.9:1080/play/a00x -#EXTINF:-1 tvg-id="ZonaPlayTVZPTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Zona Play TV (ZPTV) (720p) [Not 24/7] -https://srv3.zcast.com.br/juancarlos9451/juancarlos9451/playlist.m3u8 diff --git a/channels/cm.m3u b/channels/cm.m3u deleted file mode 100644 index 7cb7d4e7e..000000000 --- a/channels/cm.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EmergenceTV.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/REJJHir.jpg" group-title="",Emergence TV (480p) [Not 24/7] -http://connectiktv.ddns.net:5000/emergencetv/emergencetv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTVChannel.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/BuKv5Vj.png" group-title="",My TV Channel (720p) [Not 24/7] -http://connectiktv.ddns.net:5000/mytvchannel/@mytvchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayTV.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/mvgRAZw.jpg" group-title="Music",Play TV (720p) [Not 24/7] -http://connectiktv.ddns.net:5000/playtv/@playtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Vision4.cm" tvg-country="CM" tvg-language="English;French" tvg-logo="https://i.imgur.com/FekWmTu.jpg" group-title="",Vision 4 (360p) -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/vision4/hls_video/index.m3u8 diff --git a/channels/cn.m3u b/channels/cn.m3u deleted file mode 100644 index 768dc0644..000000000 --- a/channels/cn.m3u +++ /dev/null @@ -1,2959 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BesTVChaoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",BesTV超级 (576p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226942/index.m3u8 -#EXTINF:-1 tvg-id="BlueMeiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/BLUE.png" group-title="",Blue 美剧 (360p) [Not 24/7] -http://210.210.155.35/dr9445/h/h16/02.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225618/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://117.169.120.140:8080/live/cctv-1/.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://183.207.248.71/cntv/live1/cctv-1/cctv-1 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv1/HD-2500k-1080P-cctv1 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://183.207.249.9/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://183.207.249.15/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://223.110.245.170/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://223.110.245.170/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) -http://223.110.245.173/PLTV/4/224/3221227375/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/cctv1hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.243.138/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-1/G_CCTV-1 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] -http://223.110.245.139/PLTV/4/224/3221225852/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225852/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://117.169.120.140:8080/live/cctv-2/.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://183.207.248.71/cntv/live1/cctv-2/cctv-2 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) -http://223.110.245.170/PLTV/3/224/3221227207/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (540p) -http://112.25.48.68/live/program/live/cctv2/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226220/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTV2HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-2/G_CCTV-2 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) [Offline] -http://183.207.249.13/PLTV/4/224/3221225881/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (360p) [Offline] -http://125.210.152.10:8060/live/CCTV2HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://39.135.38.165:6610/000000001000/1000000001000011218/1.m3u8?IASHttpSessionId=OTT16157620200202041417014267&fmt=ts2hls&u=45768392 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225647/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://112.25.48.68/live/program/live/cctv3hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://117.169.120.140:8080/live/cctv-3/.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv3/HD-2500k-1080P-cctv3 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://183.207.249.5/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://183.207.249.6/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://183.207.249.14/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) -http://183.207.249.35/PLTV/4/224/3221227295/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/cctv-3/cctv-3 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (480p) [Not 24/7] -http://newvideo.dangtutv.cn:8278/CCTVzongyi/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=80&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (576p) [Offline] -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226360/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://117.169.120.140:8080/live/cctv-4/.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://183.207.248.71/cntv/live1/cctv-4/cctv-4 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://183.207.249.6/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://183.207.249.11/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) -http://223.110.245.170/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) -http://111.63.117.13:6060/030000001000/CCTV-4/CCTV-4.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (540p) -http://112.25.48.68/live/program/live/cctv4/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/CCTV-4/CCTV-4 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctvamerica_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Offline] -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Offline] -http://183.207.249.15/PLTV/4/224/3221225781/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225781/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctveurope_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] -https://cctvcnch5ca.v.wscdns.com/live/cctvamerica_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] -https://cctvcnch5ca.v.wscdns.com/live/cctveurope_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225706/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225649/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://117.169.120.132:8080/live/hdcctv05plus/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://183.207.248.71/cntv/live1/CCTV5+/hdcctv05plus -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://183.207.248.71/cntv/live1/hdcctv05plus/hdcctv05plus -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://183.207.249.14/PLTV/3/224/3221225604/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) -http://223.110.245.139/PLTV/4/224/3221227480/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225633/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225648/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://112.25.48.68/live/program/live/cctv5hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://183.207.248.71/cntv/live1/cctv-5/cctv-5 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://183.207.249.35/PLTV/4/224/3221227381/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.243.137/PLTV/3/224/3221227478/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.243.172/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.245.136/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.245.139/PLTV/4/224/3221227298/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.245.170/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) -http://223.110.245.172/PLTV/4/224/3221227298/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv5/HD-2500k-1080P-cctv5 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (360p) [Not 24/7] -http://hbry.chinashadt.com:1938/live/1004.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226224/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Timeout] -http://ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227401/1.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (576p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226362/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv5_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225650/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://117.169.120.140:8080/live/cctv-6/.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://183.207.248.37/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://183.207.249.9/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://183.207.249.15/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) -http://223.110.245.173/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/cctv6hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv6/HD-2500k-1080P-cctv6 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226226/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=87&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] -http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225644/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225624/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://117.169.120.140:8080/live/cctv-7/.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://183.207.248.10/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://183.207.248.71/cntv/live1/cctv-7/cctv-7 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://183.207.249.9/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://183.207.249.15/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) -http://183.207.249.36/PLTV/4/224/3221227314/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (540p) -http://112.25.48.68/live/program/live/cctv7/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=028&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=28&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTV7HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225631/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://117.169.120.132:8080/live/cctv-8/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://117.169.120.140:8080/live/cctv-8/.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://183.207.248.12/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://183.207.248.35/PLTV/3/224/3221227205/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://183.207.248.71/cntv/live1/cctv-8/cctv-8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.243.171/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.245.139/PLTV/4/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.245.170/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.245.170/PLTV/3/224/3221227205/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://223.110.245.172/PLTV/4/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=21&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv8/HD-2500k-1080P-cctv8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226257/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Offline] -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-8/G_CCTV-8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225646/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) -http://183.207.248.71/cntv/live1/cctv-news/cctv-news -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) -http://183.207.249.6/PLTV/3/224/3221225532/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225868/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTVJLHD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctvjilu_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225636/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://117.169.120.140:8080/live/cctv-10/.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://183.207.248.71/cntv/live1/cctv-10/cctv-10 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://183.207.249.7/PLTV/3/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://183.207.249.34/PLTV/4/224/3221227317/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) -http://223.110.245.170/PLTV/3/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=4&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (720p) [Timeout] -http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225628/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) -http://117.169.120.140:8080/live/cctv-11/.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) -http://223.110.245.169/PLTV/4/224/3221227384/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (540p) -http://112.25.48.68/live/program/live/cctv11/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (720p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv11_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225637/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225629/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://183.207.248.71/cntv/live1/cctv-12/cctv-12 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://183.207.249.7/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://183.207.249.8/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://223.110.245.170/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) -http://223.110.245.172/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (720p) [Timeout] -http://125.210.152.18:9090/live/CCTV12HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (540p) [Timeout] -http://112.25.48.68/live/program/live/cctv12/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (576p) [Offline] -http://183.207.249.5/PLTV/4/224/3221225803/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv12_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) -http://183.207.248.71/cntv/live1/cctv-13/cctv-13 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) -http://183.207.249.14/PLTV/3/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) -http://183.207.249.36/PLTV/4/224/3221227387/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (720p) -http://117.169.120.140:8080/live/cctv-13/.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) -http://stream4.jlntv.cn/cctv13/sd/live.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (540p) -http://112.25.48.68/live/program/live/cctvxw/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (360p) -http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) [Not 24/7] -http://223.110.245.170/PLTV/3/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Timeout] -http://125.210.152.18:9090/live/CCTV13_750.m3u8 -#EXTINF:-1 tvg-id="CCTV15.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Music",CCTV-15音乐 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=54&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225908/index.m3u8 -#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225907/index.m3u8 -#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) [Offline] -http://117.169.120.160:8080/live/HD-4000k-1080P-cctv17/1.m3u8 -#EXTINF:-1 tvg-id="CCTVNuXingShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-女性时尚 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8 -#EXTINF:-1 tvg-id="CCTVLaoGuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-老故事 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8 -#EXTINF:-1 tvg-id="CCTVPlus1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV+ 1 (600p) [Not 24/7] -https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTVPlus2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV+ 2 (600p) [Not 24/7] -https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CETV1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CETV1 (576p) -http://183.207.248.71/gitv/live1/G_CETV-1/G_CETV-1 -#EXTINF:-1 tvg-id="CETV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CETV2 (576p) -http://183.207.248.71/gitv/live1/G_CETV-2/G_CETV-2 -#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) -http://live.cgtn.com/500/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) -http://live.cgtn.com/1000/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=14&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CGTNArabic.cn" tvg-country="CN" tvg-language="Arabic" tvg-logo="https://ui.cgtn.com/static/resource/images/icon_new/live/live_AR.png" group-title="News",CGTN Arabic (576p) [Not 24/7] -http://livear.cgtn.com/1000a/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNDocumentary.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/CGTN_Documentary_logo.png" group-title="Documentary",CGTN Documentary (576p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225645/index.m3u8 -#EXTINF:-1 tvg-id="CGTNDocumentary.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/CGTN_Documentary_logo.png" group-title="Documentary",CGTN Documentary (576p) [Not 24/7] -https://livedoc.cgtn.com/1000d/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNEspanol.cn" tvg-country="CN" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN Español (576p) -https://livees.cgtn.com/1000e/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNEspanol.cn" tvg-country="CN" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN Español (576p) [Not 24/7] -http://livees.cgtn.com/500e/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNFrancais.cn" tvg-country="CN" tvg-language="French" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/10/03/DStv_cgtn_french_4-3_001_xlrg.png" group-title="",CGTN Français (576p) [Not 24/7] -https://news.cgtn.com/resource/live/french/cgtn-f.m3u8 -#EXTINF:-1 tvg-id="CGTNJiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CGTN纪录 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225509/index.m3u8 -#EXTINF:-1 tvg-id="CHCDongZuoDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CHC动作电影 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=119&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CHCGaoQingDianYing.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/GjGiNIA.jpg" group-title="Movies",CHC高清电影 [Offline] -http://ivi.bupt.edu.cn/hls/chchd.m3u8 -#EXTINF:-1 tvg-id="CNCZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CNC中文 (720p) [Not 24/7] -http://source07.v.news.cn/live/CNC_CN/playlist.m3u8 -#EXTINF:-1 tvg-id="CNCYingYu.cn" tvg-country="CN" tvg-language="English" tvg-logo="" group-title="",CNC英语 (720p) [Not 24/7] -http://source07.v.news.cn/live/CNC_EN/playlist.m3u8 -#EXTINF:-1 tvg-id="NewTVZhongGuoGongFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV中国功夫 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJunShiPingLun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV军事评论 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225535/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJunLuJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV军旅剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="NewTVNongYeZhiFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV农业致富 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8 -#EXTINF:-1 tvg-id="NewTVDongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV动画王国 (1080p) -http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8 -#EXTINF:-1 tvg-id="NewTVDongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV动画王国 (1080p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8 -#EXTINF:-1 tvg-id="NewTVGuZhuangJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV古装剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225524/index.m3u8 -#EXTINF:-1 tvg-id="NewTVWanMeiYouXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV完美遊戲 (1080p) -http://183.207.249.16/PLTV/3/224/3221225539/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJiaTingJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV家庭剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225538/index.m3u8 -#EXTINF:-1 tvg-id="NewTVYiBanJianKang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV怡伴健康 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225571/index.m3u8 -#EXTINF:-1 tvg-id="NewTVBoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV搏击 (720p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221226803/index.m3u8 -#EXTINF:-1 tvg-id="NewTVMingXingDaPian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV明星大片 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="NewTVWuBoShiJie.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV武搏世界 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoMaLaPo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV潮妈辣婆 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225542/index.m3u8 -#EXTINF:-1 tvg-id="NewTVXuanWuWeiLai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV炫舞未来 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8 -#EXTINF:-1 tvg-id="NewTVAiQingXiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV爱情喜剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225533/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJingPinTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品体育 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJingPinDaJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品大剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJingPinJiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品纪录 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品電影 (1080p) -http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品電影 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoJiTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级体育 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoJiDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电影 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoJiDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电影 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoJiDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电视剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8 -#EXTINF:-1 tvg-id="NewTVChaoJiZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级综艺 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8 -#EXTINF:-1 tvg-id="NewTVJinPaiZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV金牌综艺 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8 -#EXTINF:-1 tvg-id="SDETV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SDETV (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8 -#EXTINF:-1 tvg-id="SiTVQiCaiXiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV七彩戏剧 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/qcxj/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVDongFangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV东方财经 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/dfcj/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVQuanJiShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV全纪实台 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/qjshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVDongManXiuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV动漫秀场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dmxchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVJingBaoTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV劲爆体育 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/jbtyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVJingBaoTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV劲爆体育 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=74&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="SiTVXingFuCai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV幸福彩 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=73&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="SiTVXinShiJue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV新视觉 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=75&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="SiTVXinShiJueTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV新视觉台 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/xsjhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVJiSuQiChe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV极速汽车 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/jsqchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVHuanXiaoJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV欢笑剧场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hxjchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVFaZhiTianDi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV法治天地 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/fztd/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVYouXiFengYun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV游戏风云 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/yxfyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVShengHuoShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV生活时尚 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/shsshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVDuShiJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV都市剧场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dsjchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVMeiLiZuQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV魅力足球 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/mlyyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiTVMeiLiZuQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV魅力足球 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=76&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB 明珠台 (240p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=2&FvSeid=1&Pcontent_id=8114.m3u8&Provider_id=0 -#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (480p) [Timeout] -http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (480p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&_res_tag_=video -#EXTINF:-1 tvg-id="TVS2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVS2 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8 -#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州三峡移民 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="WanZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州影视 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州科教 (576p) -http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州综合 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="WanShengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万盛新闻综合 (576p) [Not 24/7] -http://stream0.tv41.ru/live.m3u8 -#EXTINF:-1 tvg-id="SanMingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",三明公共 (720p) [Not 24/7] -http://stream.smntv.cn/smtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="SanMingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",三明新闻综合 (720p) [Not 24/7] -http://stream.smntv.cn/smtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="SanLiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/SETNews.png" group-title="News",三立新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/sllive_fhd.m3u8 -#EXTINF:-1 tvg-id="ShangHaiICSWaiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海 ICS外语 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/wypdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiDongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海东方卫视 [Offline] -http://ivi.bupt.edu.cn/hls/dfhd.m3u8 -#EXTINF:-1 tvg-id="ShangHaiDongFangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海东方影视 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dsjpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiWuXingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海五星体育 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/ssty/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv -#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8 -#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225856/index.m3u8 -#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="ShangHaiHaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海哈哈炫动 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hhxdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiWaiTanMoYan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海外滩魔眼 [Offline] -rtmp://bililive.kksmg.com/hls/sdi80 -#EXTINF:-1 tvg-id="ShangHaiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海教育 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/setv/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiJiaoYuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海教育台 (720p) [Offline] -http://live.setv.sh.cn/slive/shedu02_1200k.m3u8 -#EXTINF:-1 tvg-id="ShangHaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海新闻综合 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/xwzhhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiDiYiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海第一财经 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dycjhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海纪实 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225654/index.m3u8 -#EXTINF:-1 tvg-id="ShangHaiJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海纪实 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225655/index.m3u8 -#EXTINF:-1 tvg-id="ShangHaiZheYiKeMoDuYan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海这一刻魔都眼 (720p) [Not 24/7] -http://bililive.kksmg.com/hls/sdi80/playlist.m3u8 -#EXTINF:-1 tvg-id="ShangHaiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海都市 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/ylpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShangHaiJinShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海金山电视台 (270p) -http://live.mudu.tv/watch/4zbn2f.m3u8 -#EXTINF:-1 tvg-id="ShangYu1XinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞1新闻综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8 -#EXTINF:-1 tvg-id="ShangYu3XinShangDu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞3新商都 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8 -#EXTINF:-1 tvg-id="ShangYuJingJiWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞經濟文化 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) -http://112.25.48.68/live/program/live/dnwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) -http://117.169.120.140:8080/live/dongnanstv/.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) -http://223.110.254.205:6610/cntv/live1/n-dongnanstv/n-dongnanstv/1.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225500/index.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (576p) -http://183.207.249.15/PLTV/4/224/3221225816/index.m3u8 -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/DNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="DongXiangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",东乡电视台 [Timeout] -http://117.156.28.119/270000001111/1110000131/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225672/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225658/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225659/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://112.25.48.68/live/program/live/hddfws/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://183.207.249.7/PLTV/4/224/3221227396/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://223.110.254.212:6610/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv/1.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Not 24/7] -http://223.110.243.138/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Not 24/7] -http://223.110.243.138/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="DongFangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东方影视 (1080p) -http://140.207.241.3:8080/live/program/live/dsjpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="DongZhiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至影视 (576p) [Not 24/7] -http://223.247.33.124:1935/live/yingshi/playlist.m3u8 -#EXTINF:-1 tvg-id="DongZhiWenHuaZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至文化资讯 (576p) [Not 24/7] -http://223.247.33.124:1935/live/wenhua/playlist.m3u8 -#EXTINF:-1 tvg-id="DongZhiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至新闻综合 (720p) [Not 24/7] -http://223.247.33.124:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="DongWanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东莞综合 (480p) -http://dslive.grtn.cn/dgzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="DongYangYingShiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东阳影视生活 [Offline] -http://stream.dybtv.com/yssh/GQ/live.m3u8 -#EXTINF:-1 tvg-id="DongYangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东阳新闻综合 [Offline] -http://stream.dybtv.com/xwzh/GQ/live.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国交通 (576p) [Offline] -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国交通 (576p) [Offline] -http://ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoTongSiChuan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_sc.jpg" group-title="",中国交通 (四川) (360p) [Offline] -https://tv.lanjingfm.com/cctbn/sichuan.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoTongAnHui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_ah.png" group-title="",中国交通 (安徽) [Offline] -https://tv.lanjingfm.com/cctbn/anhui.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoTongHaiNan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_hn.png" group-title="",中国交通 (海南) (1080p) [Not 24/7] -https://tv.lanjingfm.com/cctbn/hainan.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoTianQi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国天气 (576p) [Not 24/7] -http://112.25.48.68/live/program/live/zgqx/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国教育1 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoJiaoYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国教育1 (1080p) [Not 24/7] -http://39.134.39.39/PLTV/88888888/224/3221226282/index.m3u8 -#EXTINF:-1 tvg-id="ZhongGuoQiXiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Weather",中国气象 (576p) [Not 24/7] -http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="ZhongTianXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/908.png" group-title="",中天新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/ztxw_fhd.m3u8 -#EXTINF:-1 tvg-id="ZhongShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山公共 (480p) -http://dslive.grtn.cn/zszh/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZhongShanJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山教育 [Offline] -http://149.129.100.78/tv.php?id=zsjy -#EXTINF:-1 tvg-id="ZhongShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山综合 [Offline] -http://149.129.100.78/tv.php?id=zszh -#EXTINF:-1 tvg-id="ZhongMouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中牟综合 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10122-1.m3u8 -#EXTINF:-1 tvg-id="ZhongMouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中牟综合 (360p) [Not 24/7] -http://218.206.193.210:9850/playServer/acquirePlayService?deviceGroup=TV(STB)&drmType=none&kdsplayer=media&nsukey=&op=sovp&playType=catchup&protocol=hls0&redirect=m3u8&resourceId=1000000000000001&type=live -#EXTINF:-1 tvg-id="ZhongShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/%E4%B8%AD%E8%A7%86%E6%96%B0%E9%97%BB.png" group-title="",中視新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/zsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="LinYiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",临沂公共 [Offline] -http://live.ilinyi.net/channels/tvie/linyigonggong/flv:500k/live -#EXTINF:-1 tvg-id="LinYiNongKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",临沂农科 [Offline] -http://live.ilinyi.net/channels/tvie/linyicaijing/flv:500k/live -#EXTINF:-1 tvg-id="LeQingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",乐清新闻 [Geo-blocked] -http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_170.m3u8 -#EXTINF:-1 tvg-id="LeQingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",乐清生活 [Geo-blocked] -http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8 -#EXTINF:-1 tvg-id="YunNanIWenShanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 文山公共台 (1080p) -http://tvdrs.wsrtv.com.cn:8100/channellive/ch2.flv -#EXTINF:-1 tvg-id="YunNanIWenShanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 文山综合台 (1080p) [Not 24/7] -http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv -#EXTINF:-1 tvg-id="YunNanIHongHeZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 红河综合台 (1080p) -http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南公共 [Offline] -http://yntvpullhls.ynradio.com/live/yunnangonggong/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (1080p) -https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225664/index.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://183.207.248.71/gitv/live1/G_YUNNAN/G_YUNNAN -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://223.110.245.173/PLTV/4/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (540p) -http://112.25.48.68/live/program/live/ynws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) [Not 24/7] -http://183.207.248.71/cntv/live1/yunnanstv/yunnanstv -#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="YunNanGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南国际 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanguoji/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南娱乐 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanyule/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南少儿 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanshaoer/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南生活资讯 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanshenghuo/playlist.m3u8 -#EXTINF:-1 tvg-id="YunNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南都市 (1080p) [Timeout] -http://39.130.202.81:6610/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8 -#EXTINF:-1 tvg-id="YunNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南都市 [Offline] -http://yntvpullhls.ynradio.com/live/yunnandushi/playlist.m3u8 -#EXTINF:-1 tvg-id="YunFuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云浮综合 (480p) -http://dslive.grtn.cn/yfzh/playlist.m3u8 -#EXTINF:-1 tvg-id="WuXingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",五星体育 (720p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221226799/index.m3u8 -#EXTINF:-1 tvg-id="YaTaiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亚太台 (480p) -http://174.127.67.246/live330/playlist.m3u8 -#EXTINF:-1 tvg-id="JiaoChengDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",交城電視台 (576p) -http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JingShiJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",京视剧场 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227040/index.m3u8 -#EXTINF:-1 tvg-id="BoZhouNongCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亳州农村 (360p) [Timeout] -http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8 -#EXTINF:-1 tvg-id="BoZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亳州新聞頻道 (360p) -http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8 -#EXTINF:-1 tvg-id="JinRiELuoSi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Russia-today-logo.svg/1200px-Russia-today-logo.svg.png" group-title="",今日俄罗斯 (720p) [Offline] -https://rt-news-gd.secure2.footprint.net/1103_2500Kb.m3u8 -#EXTINF:-1 tvg-id="XianTaoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",仙桃新聞綜合 (576p) [Offline] -http://221.233.242.239:280/live/71/playlist.m3u8 -#EXTINF:-1 tvg-id="XianTaoShengHuoWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",仙桃生活文體 (576p) [Offline] -http://221.233.242.239:280/live/72/playlist.m3u8 -#EXTINF:-1 tvg-id="YouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优漫卡通 (576p) -http://183.207.249.15/PLTV/4/224/3221225933/index.m3u8 -#EXTINF:-1 tvg-id="YouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优漫卡通 (576p) -http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8 -#EXTINF:-1 tvg-id="YouShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优视 (720p) -http://1-fss24-s0.streamhoster.com/lv_uchannel/_definst_/broadcast1/chunklist.m3u8 -#EXTINF:-1 tvg-id="YouShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优视 (720p) [Not 24/7] -http://1-fss24-s0.streamhoster.com/lv_uchannel/broadcast1/playlist.m3u8 -#EXTINF:-1 tvg-id="YuYaoYaoJiangWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",余姚姚江文化 (576p) -http://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8 -#EXTINF:-1 tvg-id="YuYaoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",余姚新闻综合 (576p) -http://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8 -#EXTINF:-1 tvg-id="FoShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",佛山公共 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="FoShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",佛山公共 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="QiaoXiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="qiaoxiangpingdao.png" group-title="",侨乡 (1080p) -http://stream.jinjiang.tv/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",內蒙古卫视 (1080p) [Offline] -http://live.m2oplus.nmtv.cn/1/playlist.m3u8 -#EXTINF:-1 tvg-id="LiuAnGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.china-latv.com/t/icon/201901/20190107160038YJK.png" group-title="",六安公共 (720p) [Offline] -http://live.china-latv.com/channel2/playlist.m3u8 -#EXTINF:-1 tvg-id="LiuAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.china-latv.com/t/icon/201901/20190107160038YJK.png" group-title="",六安新闻综合 (720p) [Not 24/7] -http://live.china-latv.com/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="BingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/bingtuantv.jpg" group-title="",兵团卫视 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/btws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="BingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/bingtuantv.jpg" group-title="",兵团卫视 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=050&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="NeiJiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江公共 (720p) -http://njzb.scnj.tv:90/live/gggy_gggy800.m3u8 -#EXTINF:-1 tvg-id="NeiJiangKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江科教 (720p) -http://njzb.scnj.tv:90/live/kjpd_kjpd800.m3u8 -#EXTINF:-1 tvg-id="NeiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江综合 (720p) -http://njzb.scnj.tv:90/live/xwzh_xwzh800.m3u8 -#EXTINF:-1 tvg-id="NeiMengWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225577/index.m3u8 -#EXTINF:-1 tvg-id="NeiMengGu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙古 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225577/index.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225667/index.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) -http://117.169.120.140:8080/live/neimenggustv/.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) -http://183.207.248.71/gitv/live1/G_NEIMENGGU/G_NEIMENGGU -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) -http://223.110.245.173/PLTV/4/224/3221225836/index.m3u8 -#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (480p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=17&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="NeiMengMengYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙蒙语 (240p) -http://stream.nmtv.cn/3/sd/live.m3u8 -#EXTINF:-1 tvg-id="NongAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",农安新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/naxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) -http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) -http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] -http://125.210.152.18:9090/live/FHZW_1200.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (240p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=190&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/fhchinese/1.m3u8 -#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhchinese/1.m3u8 -#EXTINF:-1 tvg-id="FengHuangDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/a/a0/Phoenix_Movies.svg/200px-Phoenix_Movies.svg.png" group-title="Movies",凤凰电影 [Offline] -https://www.fanmingming.cn/hls/fhdy.m3u8 -#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) -http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (576p) [Timeout] -http://125.210.152.18:9090/live/FHZX_1200.m3u8 -#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhzixun/1.m3u8 -#EXTINF:-1 tvg-id="FengHuangXiangGang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰香港 (720p) -http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8 -#EXTINF:-1 tvg-id="FengHuangXiangGang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰香港 (720p) [Timeout] -http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8 -#EXTINF:-1 tvg-id="FengTaiWenHuaShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤台文化生活 (576p) [Not 24/7] -http://60.175.115.119:1935/live/wenhua/playlist.m3u8 -#EXTINF:-1 tvg-id="FengTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤台综合 (576p) [Not 24/7] -http://60.175.115.119:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="LiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川公共 (576p) [Geo-blocked] -http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8 -#EXTINF:-1 tvg-id="LiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川公共 (180p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w1847269952_b204800.m3u8 -#EXTINF:-1 tvg-id="LiChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川新闻综合 (480p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w439903609_b1228800.m3u8 -#EXTINF:-1 tvg-id="QianGuoZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",前郭综合 [Geo-blocked] -http://stream2.jlntv.cn/qg/sd/live.m3u8 -#EXTINF:-1 tvg-id="DongZuoDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",动作电影 (1080p) [Timeout] -http://39.134.19.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8 -#EXTINF:-1 tvg-id="DongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",动画王国 (1080p) -http://183.207.248.71/cntv/live1/donghuawg/donghuawg -#EXTINF:-1 tvg-id="BeiJing10ShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京10少儿 [Offline] -http://ivi.bupt.edu.cn/hls/btv10.m3u8 -#EXTINF:-1 tvg-id="BeiJingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京体育 (1080p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=158&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="BeiJingDongAoJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京冬奥纪实 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=158&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="BeiJingQiaKuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",北京卡酷少儿 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225562/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingQiaKuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",北京卡酷少儿 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=108&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225673/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225674/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://183.207.248.71/cntv/live1/beijingstv/beijingstv -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://183.207.249.7/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://183.207.249.8/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227246/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227390/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://223.110.245.173/PLTV/4/224/3221227390/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/bjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv1.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_BEIJING/G_BEIJING -#EXTINF:-1 tvg-id="BeiJingJiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京家有购物 (720p) -http://39.134.66.66/PLTV/88888888/224/3221225554/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京影視 [Offline] -http://ivi.bupt.edu.cn/hls/btv4.m3u8 -#EXTINF:-1 tvg-id="BeiJingWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京文藝 [Offline] -http://ivi.bupt.edu.cn/hls/btv2.m3u8 -#EXTINF:-1 tvg-id="BeiJingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京新聞 [Offline] -http://ivi.bupt.edu.cn/hls/btv9.m3u8 -#EXTINF:-1 tvg-id="BeiJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京生活 [Offline] -http://ivi.bupt.edu.cn/hls/btv7.m3u8 -#EXTINF:-1 tvg-id="BeiJingKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京科教 [Offline] -http://ivi.bupt.edu.cn/hls/btv3.m3u8 -#EXTINF:-1 tvg-id="BeiJingJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://media.bjnews.com.cn/image/2019/05/03/4788479376108891447.jpg" group-title="News",北京紀實 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225675/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://media.bjnews.com.cn/image/2019/05/03/4788479376108891447.jpg" group-title="News",北京紀實 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225676/index.m3u8 -#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京衛視 (1080p) [Geo-blocked] -http://14.152.88.77/liveplay-kk.rtxapp.com/live/program/live/bjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BTVCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京财经 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv5.m3u8 -#EXTINF:-1 tvg-id="BTVQingNian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京青年 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv8.m3u8 -#EXTINF:-1 tvg-id="BeiPeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北碚综合 (576p) -http://222.178.181.121:12034/beibei01.m3u8 -#EXTINF:-1 tvg-id="BanDaoXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",半岛新闻 (1080p) -https://live-hls-web-aje.getaj.net/AJE/01.m3u8 -#EXTINF:-1 tvg-id="HuaTingDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://5b0988e595225.cdn.sohucs.com/images/20181203/2813953209084182afb08496fd20e484.jpeg" group-title="",华亭电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000148/index.m3u8 -#EXTINF:-1 tvg-id="HuaShu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",华数 (720p) [Not 24/7] -http://hls-ott-zhibo.wasu.tv/live/442/index.m3u8 -#EXTINF:-1 tvg-id="NanJingXinXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京信息 (720p) -http://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingShiBa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京十八 (720p) -http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingShiBa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京十八 (576p) -http://183.207.248.71/gitv/live1/G_NJSB/G_NJSB -#EXTINF:-1 tvg-id="NanJingYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京娱乐 (720p) -http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京少儿 (720p) [Not 24/7] -http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京影视 [Offline] -http://live.nbs.cn/channels/njtv/yspd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (576p) -http://183.207.248.71/gitv/live1/G_NJJK/G_NJJK -#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (576p) -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8 -#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (720p) [Not 24/7] -http://live.nbs.cn/channels/njtv/jkpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京新闻综合 (720p) -http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京生活 (720p) -http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="NanZhaoYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南召一套 (576p) [Not 24/7] -http://hnnz.chinashadt.com:1935/live/1002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NanNingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁公共 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_PUB_A.m3u8 -#EXTINF:-1 tvg-id="NanNingYingShiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁影视娱乐 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_VOD_A.m3u8 -#EXTINF:-1 tvg-id="NanNingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁新闻综合 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_NEWS_A.m3u8 -#EXTINF:-1 tvg-id="NanNingDuShiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁都市生活 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_METRO_A.m3u8 -#EXTINF:-1 tvg-id="NanChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川新闻综合 (360p) -http://221.5.213.4:30000/1111.m3u8 -#EXTINF:-1 tvg-id="NanChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川新闻综合 (360p) [Not 24/7] -http://nanchuanlive.cbg.cn:30000/1111.m3u8 -#EXTINF:-1 tvg-id="NanChuanLuYouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川旅游经济 (360p) [Offline] -http://221.5.213.4:30000/2222.m3u8 -#EXTINF:-1 tvg-id="NanChuanLuYouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川旅游经济 (360p) [Offline] -http://nanchuanlive.cbg.cn:30000/2222.m3u8 -#EXTINF:-1 tvg-id="NanFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/nanfang.png" group-title="",南方卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="NanFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/nanfang.png" group-title="",南方卫视 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=51 -#EXTINF:-1 tvg-id="NanFangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南方购物 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=42 -#EXTINF:-1 tvg-id="NanTongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通公共 [Offline] -http://149.129.100.78/nantong.php?id=gg -#EXTINF:-1 tvg-id="NanTongJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通教育 [Offline] -http://149.129.100.78/nantong.php?id=sj -#EXTINF:-1 tvg-id="NanTongWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通文化旅游 [Offline] -http://149.129.100.78/nantong.php?id=ly -#EXTINF:-1 tvg-id="NanTongXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通新闻综合 [Offline] -http://149.129.100.78/nantong.php?id=zh -#EXTINF:-1 tvg-id="NanYangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南阳新闻 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8 -#EXTINF:-1 tvg-id="NanYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南陽公共頻道 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8 -#EXTINF:-1 tvg-id="NanYangKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南陽科教頻道 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8 -#EXTINF:-1 tvg-id="BoZhouHanYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",博州汉语综合 [Offline] -http://klmyyun.chinavas.com/hls/bozhou1.m3u8 -#EXTINF:-1 tvg-id="BoZhouWeiYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",博州维语综合 [Offline] -http://klmyyun.chinavas.com/hls/bozhou3.m3u8 -#EXTINF:-1 tvg-id="ShaMenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/XMWS.png" group-title="",厦门卫视 (576p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8 -#EXTINF:-1 tvg-id="ShaMenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/XMWS.png" group-title="",厦门卫视 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/xmws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShuangFengDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",双峰电视一套 (360p) -http://hnsf.chinashadt.com:2036/zhuanma/tv1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="FaXianZhiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",发现之旅 (576p) [Timeout] -http://125.210.152.18:9090/live/FXZL_750.m3u8 -#EXTINF:-1 tvg-id="TaiShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/%E5%8F%B0%E8%A7%86%E6%96%B0%E9%97%BB.png" group-title="",台視新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/tsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="JiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉州新聞綜合 (1080p) -http://218.204.153.158/10.m3u8 -#EXTINF:-1 tvg-id="JiLin7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林7 (900p) [Not 24/7] -http://stream1.jlntv.cn/fzpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) -http://117.169.120.140:8080/live/jilinstv/.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) -http://183.207.249.7/PLTV/4/224/3221225883/index.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (540p) -http://112.25.48.68/live/program/live/jlws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (240p) [Not 24/7] -http://stream4.jlntv.cn/test2/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/JLWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="JiLinShiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林市新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/jilin1/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiLinXiangCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林乡村 (900p) [Not 24/7] -http://stream1.jlntv.cn/xcpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/wujiangtv.jpg" group-title="",吴江新闻综合 (720p) [Not 24/7] -http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8 -#EXTINF:-1 tvg-id="ZhouKouTuWenXinXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口图文信息 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live4/mp4:ch4-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhouKouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口影视 [Offline] -http://hls.haokan.bdstatic.com/haokan/stream_bduid_1646578943_0.m3u8 -#EXTINF:-1 tvg-id="ZhouKouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口新闻综合 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live1/mp4:ch1-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhouKouKeJiaoWenHua2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口科教文化2 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live3/mp4:ch3-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhouKouJingJiShengHuo2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口经济生活2 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live2/mp4:ch2-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="HuLunBeiErXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",呼伦贝尔新闻 (720p) [Not 24/7] -http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="HuLunBeiErShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",呼伦贝尔生活资讯 (720p) [Not 24/7] -http://live1.hrtonline.cn:1935/live/live102/500K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="HeZhengDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",和政电视台 [Timeout] -http://117.156.28.119/270000001111/1110000149/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225613/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225619/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225620/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Not 24/7] -http://39.134.66.66/PLTV/88888888/224/3221225617/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225615/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225618/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225622/index.m3u8 -#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="HaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/b/b5/TOONMAX_logo.png" group-title="Kids",哈哈炫动卫视 (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s50/index.m3u8 -#EXTINF:-1 tvg-id="HaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/b/b5/TOONMAX_logo.png" group-title="Kids",哈哈炫动卫视 (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s50/index2.m3u8 -#EXTINF:-1 tvg-id="WeiXinDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/weixin.png" group-title="",唯心電視 (480p) -http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="JiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/jiajiakt.png" group-title="Kids",嘉佳卡通 (576p) -http://223.110.245.139/PLTV/4/224/3221227009/index.m3u8 -#EXTINF:-1 tvg-id="JiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/jiajiakt.png" group-title="Kids",嘉佳卡通 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=66 -#EXTINF:-1 tvg-id="JiaJiaQiaTongGuangDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",嘉佳卡通 (广东) (540p) [Not 24/7] -http://112.25.48.68/live/program/live/jjkt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiChuanISiChuanYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川影视台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv5/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanISiChuanXinWenTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川新闻台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv4/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanISiChuanJingJiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川经济台 (720p) [Timeout] -http://scgctvshow.sctv.com/hdlive/sctv3/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanIBaZhongZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 巴中综合台 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.flv -#EXTINF:-1 tvg-id="SiChuanIXingKongGouWuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 星空购物台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv6/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanILuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州公共 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv2.flv -#EXTINF:-1 tvg-id="SiChuanILuZhouKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州科技 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv3.flv -#EXTINF:-1 tvg-id="SiChuanILuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州综合 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv1.flv -#EXTINF:-1 tvg-id="SiChuanIMianYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳公共 [Offline] -http://live.826pc.com/mytv/live.php?id=3 -#EXTINF:-1 tvg-id="SiChuanIMianYangKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳科技 [Offline] -http://live.826pc.com/mytv/live.php?id=2 -#EXTINF:-1 tvg-id="SiChuanIMianYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳综合 [Offline] -http://live.826pc.com/mytv/live.php?id=4 -#EXTINF:-1 tvg-id="SiChuanIDaZhouGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 达州公共台 (720p) [Not 24/7] -http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel36/playlist.m3u8 -#EXTINF:-1 tvg-id="SiChuanIDaZhouZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 达州综合台 (720p) [Not 24/7] -http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel35/playlist.m3u8 -#EXTINF:-1 tvg-id="SiChuanIYaAnGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 雅安公共 (720p) -http://flv.drs.tv.yatv.tv:8080/channellive/gonggong.flv -#EXTINF:-1 tvg-id="SiChuanIYaAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 雅安综合 (720p) -http://flv.drs.tv.yatv.tv:8080/channellive/xinwen.flv -#EXTINF:-1 tvg-id="SiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv9.png" group-title="",四川公共 (720p) -http://scgctvshow.sctv.com/hdlive/sctv9/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (720p) -http://scgctvshow.sctv.com/scgc/sctv1deu5453w/1.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225733/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) -http://183.207.248.71/gitv/live1/SCWS/SCWS -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (540p) -http://112.25.48.68/live/program/live/scws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=3&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) [Timeout] -http://183.207.249.36/PLTV/4/224/3221225814/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/SCWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="SCTV7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv7.png" group-title="",四川妇女儿童 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv7/index.m3u8 -#EXTINF:-1 tvg-id="SiChuanKangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川康巴卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225527/index.m3u8 -#EXTINF:-1 tvg-id="SCTV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv2.png" group-title="",四川文化旅游 (720p) -http://scgctvshow.sctv.com/hdlive/sctv2/index.m3u8 -#EXTINF:-1 tvg-id="SiPingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四平新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/sptv/sd/live.m3u8 -#EXTINF:-1 tvg-id="GuoWaiMTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",国外MTV (720p) [Offline] -https://vcndstv.teleosmedia.com/stream/dstv/sunburn/seglist_720p.m3u8 -#EXTINF:-1 tvg-id="ZengChengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",增城綜合 (1080p) -http://202.168.164.38:8083/videos/live/19/27/QEQXMtU5AUpwo/QEQXMtU5AUpwo.m3u8 -#EXTINF:-1 tvg-id="DaYeYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大冶一套 [Geo-blocked] -http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8 -#EXTINF:-1 tvg-id="DaYeErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大冶二套 [Geo-blocked] -http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8 -#EXTINF:-1 tvg-id="DaWuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大悟综合 [Geo-blocked] -http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8 -#EXTINF:-1 tvg-id="DaAi1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.daai.tv/images/logo.png" group-title="",大愛1 (720p) -https://pulltv1.wanfudaluye.com/live/tv1.m3u8 -#EXTINF:-1 tvg-id="DaAiHaiWai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大爱海外 (720p) [Offline] -https://pulltv3.wanfudaluye.com/live/tv3.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225665/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225698/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225739/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://112.25.48.68/live/program/live/tjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://117.169.120.140:8080/live/hdtianjinstv/.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://223.110.243.170/PLTV/3/224/3221227212/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227212/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (576p) -http://183.207.249.12/PLTV/4/224/3221225808/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8 -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="QiMiaoDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",奇妙電視 (720p) -http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8 -#EXTINF:-1 tvg-id="AoShiWeiXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/AOSHI.png" group-title="",奥视卫星 (720p) [Not 24/7] -http://61.244.22.5/ch3/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="NuXingShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",女性时尚 (576p) -http://223.110.245.169/PLTV/4/224/3221227026/index.m3u8 -#EXTINF:-1 tvg-id="RuDongXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",如东新闻综合 (480p) [Not 24/7] -http://live.rdxmt.com/channels/rudong/news/flv:sd/live -#EXTINF:-1 tvg-id="XiaoYiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",孝義新聞綜合 (576p) -http://app.xygdcm.com:2036/live/stream:xy1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MengZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",孟州电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10883-1.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225579/index.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://117.169.120.140:8080/live/ningxiastv/.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://183.207.248.11/PLTV/4/224/3221225842/index.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (540p) -http://112.25.48.68/live/program/live/nxws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_NINGXIA/G_NINGXIA -#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="NingBoShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波少儿 (360p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=5 -#EXTINF:-1 tvg-id="NingBoYingShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波影视剧 (360p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=4 -#EXTINF:-1 tvg-id="NingBoJiaoYuKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波教育科技 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=6 -#EXTINF:-1 tvg-id="NingBoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波新闻综合 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=1 -#EXTINF:-1 tvg-id="NingBoJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波经济生活 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=2 -#EXTINF:-1 tvg-id="NingBoDuShiWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波都市文体 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=3 -#EXTINF:-1 tvg-id="AnHuiIHuaiBeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 淮北公共 (720p) -http://live.0561rtv.cn/ggpd/hd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiIHuaiBeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 淮北综合 (720p) -http://live.0561rtv.cn/xwzh/hd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiILangXiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 郎溪综合台 (1080p) -http://117.70.93.210:1935/live/xinwen/playlist.m3u8 -#EXTINF:-1 tvg-id="AnHuiITongLingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 铜陵公共 (720p) -http://dstpush1.retalltech.com/app/stream2.m3u8 -#EXTINF:-1 tvg-id="AnHuiITongLingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 铜陵综合 (720p) -http://dstpush1.retalltech.com/app/stream1.m3u8 -#EXTINF:-1 tvg-id="AnHuiRenWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahrw.jpg" group-title="",安徽人物 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=69 -#EXTINF:-1 tvg-id="AnHuiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahgg.jpg" group-title="",安徽公共 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=50 -#EXTINF:-1 tvg-id="AnHuiNongYeKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahkj.jpg" group-title="",安徽农业科教 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=51 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225691/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225737/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=2&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://183.207.249.15/PLTV/3/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) -http://223.110.254.203:6610/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv/1.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) -http://183.207.248.71/gitv/live1/AHWS/AHWS -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) -http://183.207.249.5/PLTV/4/224/3221225800/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/anhuistv/anhuistv -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Not 24/7] -http://zbbf2.ahtv.cn/live/749.m3u8 -#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Timeout] -http://112.25.48.68/live/program/live/ahwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="AnHuiXiaoShuoPingShuGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽小说评书广播 [Geo-blocked] -http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/anhys.jpg" group-title="",安徽影视 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=72 -#EXTINF:-1 tvg-id="AnHuiXiQuGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽戏曲广播 [Geo-blocked] -http://stream2.ahrtv.cn/xnxq/sd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiXinWenZongHeGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽新闻综合广播 [Geo-blocked] -http://stream2.ahrtv.cn/xnxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiLuYouGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽旅游广播 [Geo-blocked] -http://stream2.ahrtv.cn/lygb/sd/live.m3u8 -#EXTINF:-1 tvg-id="AnHuiZongYiTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahzy.jpg" group-title="",安徽综艺体育 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=73 -#EXTINF:-1 tvg-id="WanMeiYouXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",完美游戏 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/wmyx/wmyx -#EXTINF:-1 tvg-id="YiXingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜兴新闻 (720p) -http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8 -#EXTINF:-1 tvg-id="YiXingDianShiZiSha.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜兴电视紫砂 (720p) -http://live-dft-hls-yf.jstv.com/live/yixing_zs/online.m3u8 -#EXTINF:-1 tvg-id="YiChangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌公共 [Offline] -http://149.129.100.78/yichang.php?id=ggpd -#EXTINF:-1 tvg-id="YiChangLuYouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌旅游生活 [Offline] -http://149.129.100.78/yichang.php?id=lysw -#EXTINF:-1 tvg-id="YiChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌综合 [Offline] -http://149.129.100.78/yichang.php?id=zhpd -#EXTINF:-1 tvg-id="YiZhangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜章新闻综合 (576p) -http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="YiZhangSheHuiFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜章社会法制 (576p) -http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JiaTingYingYuan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家庭影院 (1080p) [Timeout] -http://39.134.19.153/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8 -#EXTINF:-1 tvg-id="JiaTingLiCai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家庭理财 (576p) -http://223.110.245.139/PLTV/4/224/3221227011/index.m3u8 -#EXTINF:-1 tvg-id="JiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家有购物 (720p) [Not 24/7] -http://183.207.248.71/cntv/live1/SD-1500k-576P-jiayougw/SD-1500k-576P-jiayougw -#EXTINF:-1 tvg-id="SuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿州公共 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-ggpd/index.m3u8 -#EXTINF:-1 tvg-id="SuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿州新闻综合 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-szzh/index.m3u8 -#EXTINF:-1 tvg-id="SuZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2018/0711/f91966206d646e5cc94ca9e597b855ec.jpg" group-title="",宿州科教 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-kxjy/index.m3u8 -#EXTINF:-1 tvg-id="SuQianGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿迁公共 (480p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221226939/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongIYanTaiYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台影视台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=5 -#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=2 -#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=3 -#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=4 -#EXTINF:-1 tvg-id="ShanDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_tiyu.png" group-title="",山东体育 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/typd.m3u8 -#EXTINF:-1 tvg-id="ShanDongNongKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_nongke.png" group-title="",山东农科 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/nkpd.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225697/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225738/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://117.169.120.140:8080/live/hdshandongstv/.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227258/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227448/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://223.110.254.207:6610/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv/1.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/SDWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/SDWS/SDWS -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] -http://183.207.249.7/PLTV/4/224/3221225804/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225804/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_shaoer.png" group-title="",山东少儿 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/sepd.m3u8 -#EXTINF:-1 tvg-id="ShanDongJuJiaGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东居家购物 (360p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/gwpd.m3u8 -#EXTINF:-1 tvg-id="ShanDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_yingshi.png" group-title="",山东影视 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/yspd.m3u8 -#EXTINF:-1 tvg-id="ShanDongJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东教育 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225558/index.m3u8 -#EXTINF:-1 tvg-id="ShanDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东新闻 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/ggpd.m3u8 -#EXTINF:-1 tvg-id="ShanDongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_shenghuo.png" group-title="",山东生活 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/shpd.m3u8 -#EXTINF:-1 tvg-id="ShanDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_zongyi.png" group-title="",山东综艺 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/zypd.m3u8 -#EXTINF:-1 tvg-id="ShanDongQiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_qilu.png" group-title="",山东齐鲁 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/qlpd.m3u8 -#EXTINF:-1 tvg-id="ShanXiIShuoZhouXinWenTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西 Ⅰ 朔州新闻台 (10p) [Not 24/7] -http://stream.sxsztv.com/live4/sd/live.m3u8 -#EXTINF:-1 tvg-id="ShanXiYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西优购物 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=55&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShanXiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://app.sxrtv.com/images/2019/5/15/20195151557897422066_33_t1080.jpg" group-title="",山西公共 [Offline] -http://149.129.100.78/tv.php?id=sxgg -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) -http://117.169.120.140:8080/live/shanxistv/.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=144&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) [Offline] -http://125.210.152.10:8060/live/SXWS.m3u8 -#EXTINF:-1 tvg-id="ShanXiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://app.sxrtv.com/images/2019/5/15/20195151557897361061_33_t1080.jpg" group-title="",山西影视 [Offline] -http://149.129.100.78/tv.php?id=sxys -#EXTINF:-1 tvg-id="ShanXiSheHuiYuFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://apphhplushttps.sxrtv.com/images/2020/12/31/202012311609402077716_90.jpg" group-title="",山西社会与法治 [Offline] -http://149.129.100.78/tv.php?id=sxkj -#EXTINF:-1 tvg-id="ShanXiJingJiYuKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://apphhplushttps.sxrtv.com/images/2020/12/31/202012311609402311324_90.jpg" group-title="",山西经济与科技 [Offline] -http://149.129.100.78/tv.php?id=sxjjzx -#EXTINF:-1 tvg-id="LingNanXiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岭南戏曲 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=15 -#EXTINF:-1 tvg-id="YueXiTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西圖文頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/tuwen/playlist.m3u8 -#EXTINF:-1 tvg-id="YueXiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西影視頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/yingshi/playlist.m3u8 -#EXTINF:-1 tvg-id="YueXiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西綜合頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="YueYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳阳公共 (576p) -http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-2F5F-FA96-1887C72E55CE&auth=654837809071524@615@2E9A5FD0B225B012E3178551CF3754A8 -#EXTINF:-1 tvg-id="MinXianDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",岷县电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000130/index.m3u8 -#EXTINF:-1 tvg-id="ShengZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",嵊州综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8 -#EXTINF:-1 tvg-id="YiXiaXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",已下线 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="BaZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中公共 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8 -#EXTINF:-1 tvg-id="BaZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中公共 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/hddongfangstv/1.m3u8 -#EXTINF:-1 tvg-id="BaZhongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中综合 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8 -#EXTINF:-1 tvg-id="PingXiangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/pingxiangtai.jpg" group-title="",平乡电视台 (576p) -http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="GuangDongFoShanSanShuiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山三水区 (404p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sspd.m3u8 -#EXTINF:-1 tvg-id="GuangDongFoShanNanHaiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山南海区 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_nhpd.m3u8 -#EXTINF:-1 tvg-id="GuangDongFoShanGaoMingQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山高明区 (404p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_gmpd.m3u8 -#EXTINF:-1 tvg-id="GuangDongLingNanXiQuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 岭南戏曲台 (540p) -http://szlive.grtn.cn/lnxq/sd/live.m3u8 -#EXTINF:-1 tvg-id="GuangDongQingXinZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 清新综合台 (1080p) -http://hls.wiseqx.com/live/qxzh.m3u8 -#EXTINF:-1 tvg-id="GuangDongGaoErFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 高尔夫 (480p) -http://szlive.grtn.cn/grfpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="GuangDongIFoShanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山公共台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_ggpd.m3u8 -#EXTINF:-1 tvg-id="GuangDongIFoShanYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山影视台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_yspd.m3u8 -#EXTINF:-1 tvg-id="GuangDongIFoShanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山综合台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_zhpd.m3u8 -#EXTINF:-1 tvg-id="GuangDongIFoShanShunDeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山顺德台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sdpd.m3u8 -#EXTINF:-1 tvg-id="GuangDongIChaoAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 潮安综合 (360p) -http://chaoan.chaoantv.com:8278/chaoanzonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="GuangDongIShaoGuanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 韶关公共台 (720p) [Not 24/7] -https://www.sgmsw.cn/videos/tv/201805/1308/9P424TC5M000AFO13CXK6GN6BOA889D2/hls/live.m3u8 -#EXTINF:-1 tvg-id="GuangDongIShaoGuanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 韶关综合台 (720p) [Not 24/7] -https://www.sgmsw.cn/videos/tv/201805/1308/SB05RIYZOU8JR418AUQOF62CAJQ08D0E/hls/live.m3u8 -#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=47 -#EXTINF:-1 tvg-id="GuangDongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东公共 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=85&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongNanFangWeiShiDiMian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东南方卫视地面 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225701/index.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225742/index.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://112.25.48.68/live/program/live/gdwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://223.110.243.136/PLTV/3/224/3221227249/index.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227249/index.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://223.110.245.172/PLTV/4/224/3221227399/index.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) -http://223.110.254.195:6610/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv/1.m3u8 -#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=43&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongJiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东嘉佳卡通 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=130&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东国际 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=46 -#EXTINF:-1 tvg-id="GuangDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东少儿 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=83&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东少儿 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=54 -#EXTINF:-1 tvg-id="GuangDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东影视 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=86&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东影视 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=53 -#EXTINF:-1 tvg-id="GuangDongFangChan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东房产 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=67 -#EXTINF:-1 tvg-id="GuangDongWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东文化 (720p) [Not 24/7] -http://149.129.100.78/guangdong.php?id=75 -#EXTINF:-1 tvg-id="GuangDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东新闻 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=84&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东新闻 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=45 -#EXTINF:-1 tvg-id="GuangDongZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东珠江 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/zhujiang.png" group-title="",广东珠江 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=44 -#EXTINF:-1 tvg-id="GuangDongYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东移动 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=74 -#EXTINF:-1 tvg-id="GuangDongJingJiKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东经济科教 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongJingJiKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东经济科教 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=49 -#EXTINF:-1 tvg-id="GuangDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东综艺 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东综艺 (720p) [Offline] -http://149.129.100.78/guangdong.php?id=16 -#EXTINF:-1 tvg-id="GuangZhouNanGuoDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州南国都市 (1080p) [Offline] -http://149.129.100.78/gztv.php?id=shenghuo -#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=yingshi -#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/yingshi -#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=xinwen -#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/xinwen -#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=00&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=fazhi -#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/fazhi -#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=jingsai -#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/jingsai -#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=52&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=0&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=81&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=zhonghe -#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/zhonghe -#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://ku.90sjimg.com/element_pic/17/12/31/2ec189f5167bd017e47acd441800487b.jpg" group-title="",广水新闻综合 [Geo-blocked] -http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8 -#EXTINF:-1 tvg-id="GuangShiWang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广视网 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GuangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8 -#EXTINF:-1 tvg-id="GuangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广西卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=138&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="KangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",康巴卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227008/index.m3u8 -#EXTINF:-1 tvg-id="KangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",康巴卫视 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8 -#EXTINF:-1 tvg-id="YanAn1Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/YA1.jpg" group-title="",延安1台 [Offline] -http://stream2.liveyun.hoge.cn/YATV1/sd/live.m3u8 -#EXTINF:-1 tvg-id="YanAn2Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/YA2.jpg" group-title="",延安2台 [Offline] -http://stream2.liveyun.hoge.cn/YATV2/sd/live.m3u8 -#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (720p) -http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8 -#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="YanBianXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",延边新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/jlyb/sd/live.m3u8 -#EXTINF:-1 tvg-id="JianAnDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",建安电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/11003-1.m3u8 -#EXTINF:-1 tvg-id="KaiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",开州综合 (720p) -http://kaixianlive.cbg.cn:10345/1.m3u8 -#EXTINF:-1 tvg-id="YiTanChunQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",弈坛春秋 (576p) -http://223.110.245.139/PLTV/4/224/3221227031/index.m3u8 -#EXTINF:-1 tvg-id="ZhangJiaKouYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家口一套 (720p) [Not 24/7] -http://nlive.zjkgdcs.com:8091/live/xwzhpd.m3u8 -#EXTINF:-1 tvg-id="ZhangJiaGangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家港新闻综合 (720p) -http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhangJiaGangSheHuiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家港社会生活 (720p) -http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhangJiaJie1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家界1 (240p) [Not 24/7] -http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8 -#EXTINF:-1 tvg-id="ZhangJiaJie2Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家界2台 (240p) [Not 24/7] -http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8 -#EXTINF:-1 tvg-id="PengShuiWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",彭水文化旅游 (288p) -http://pengshuilive.cbg.cn/pengshui02.m3u8 -#EXTINF:-1 tvg-id="PengShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",彭水新闻综合 (288p) [Timeout] -http://pengshuilive.cbg.cn/pengshui01.m3u8 -#EXTINF:-1 tvg-id="XuZhou1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-1 (1080p) -http://183.207.249.15/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="XuZhou3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-3 (1080p) -http://183.207.249.7/PLTV/3/224/3221225949/index.m3u8 -#EXTINF:-1 tvg-id="XuZhou3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-3 (1080p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225949/index.m3u8 -#EXTINF:-1 tvg-id="XuZhou4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-4 (1080p) -http://183.207.249.15/PLTV/3/224/3221225951/index.m3u8 -#EXTINF:-1 tvg-id="XuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州公共頻道 (1080p) -http://183.207.248.11/PLTV/3/224/3221225951/index.m3u8 -#EXTINF:-1 tvg-id="XuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州公共頻道 (720p) -http://stream1.huaihai.tv/ggpd/playlist.m3u8 -#EXTINF:-1 tvg-id="XuZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州影视 (720p) -http://stream1.huaihai.tv/wyys/playlist.m3u8 -#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (1080p) -http://183.207.248.11/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (720p) -http://stream1.huaihai.tv/xwzh/playlist.m3u8 -#EXTINF:-1 tvg-id="XuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州生活 (240p) -http://stream1.huaihai.tv/jjsh/playlist.m3u8 -#EXTINF:-1 tvg-id="XuZhouJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州經濟生活 (1080p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221225947/index.m3u8 -#EXTINF:-1 tvg-id="XuZhouJiaWangLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州贾汪旅游 (576p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221227389/index.m3u8 -#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (1080p) [Offline] -http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (576p) [Offline] -http://video.dztv.tv:1935/live/dzgg_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (480p) [Offline] -http://video.dztv.tv:1935/live/dzgg_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (720p) [Offline] -http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (576p) [Offline] -http://video.dztv.tv:1935/live/dztw_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (360p) [Offline] -http://video.dztv.tv:1935/live/dztw_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (1080p) [Offline] -http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (576p) [Offline] -http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (480p) [Offline] -http://video.dztv.tv:1935/live/xwzh_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="DeZhouDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://gss3.bdstatic.com/-Po3dSag_xI4khGkpoWK1HF6hhy/baike/w%3D268%3Bg%3D0/sign=14e4b49cc03d70cf4cfaad0bc0e7b63d/f31fbe096b63f62400badfa68e44ebf81b4ca3b4.jpg" group-title="",德州都市 [Offline] -http://video.dztv.tv:1935/live/dspd_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="XinYueZhiShengGongYiGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",心约之声公益广播 [Not 24/7] -http://4521.hlsplay.aodianyun.com/xyzs/stream.m3u8 -#EXTINF:-1 tvg-id="RenZheShenGui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忍者神龟 (480p) -http://www.alibabapictures.com/movies/shenggui/poyingerchu.mp4 -#EXTINF:-1 tvg-id="ZhongXianWenLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忠县文旅 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_36.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhongXianZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忠县综合 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuaiJiuJingDianTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",怀旧经典台 [Offline] -http://hls.haokan.bdstatic.com/haokan/stream_bduid_1868968677_0.m3u8 -#EXTINF:-1 tvg-id="HuiZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",惠州公共 (1080p) -http://livehuiz.chinamcache.com/live/zb02.m3u8 -#EXTINF:-1 tvg-id="HuiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hztv1.jpg" group-title="",惠州新闻综合 (1080p) -http://livehuiz.chinamcache.com/live/zb01.m3u8 -#EXTINF:-1 tvg-id="HuiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hztv1.jpg" group-title="",惠州新闻综合 (480p) -http://dslive.grtn.cn/hzzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="CDTV5.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv5.png" group-title="",成都公共 (360p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=5 -#EXTINF:-1 tvg-id="ChengDuDaXiongMao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",成都大熊猫 (1080p) [Not 24/7] -https://gcbsc.v.live.baishancdnx.cn/gc/xiongmao03_1/index.m3u8?contentid=2820180516001 -#EXTINF:-1 tvg-id="CDTV6.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv6.png" group-title="",成都少儿 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=6 -#EXTINF:-1 tvg-id="CDTV4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv4.png" group-title="",成都影视 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=45 -#EXTINF:-1 tvg-id="CDTV1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv1.png" group-title="",成都新闻综合 (450p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=1 -#EXTINF:-1 tvg-id="CDTV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv2.png" group-title="",成都经济 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=2 -#EXTINF:-1 tvg-id="CDTV3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv3.png" group-title="",成都都市 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=3 -#EXTINF:-1 tvg-id="FangShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://img.funhillrm.com/201912173520409e01fadc9c2811d72ff26f62ef.png" group-title="",房山电视台 (576p) -https://live.funhillrm.com/2/playlist.m3u8 -#EXTINF:-1 tvg-id="YangZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",扬州公共 [Offline] -http://149.129.100.78/yangzhou.php?id=236 -#EXTINF:-1 tvg-id="YangZhouJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",扬州教育 [Offline] -http://149.129.100.78/yangzhou.php?id=291 -#EXTINF:-1 tvg-id="FuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",抚州公共 (270p) -http://111.75.179.195:30767/video/live_vide2.m3u8 -#EXTINF:-1 tvg-id="JieYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",揭阳综合 (540p) -http://dslive.grtn.cn/jyzh/playlist.m3u8 -#EXTINF:-1 tvg-id="FuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",撫州綜合頻道 (270p) [Not 24/7] -http://111.75.179.195:30767/video/live_vide.m3u8 -#EXTINF:-1 tvg-id="DunHuangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/dunhuangtai.jpg" group-title="",敦煌电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000028/index.m3u8 -#EXTINF:-1 tvg-id="WenShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文山综合 (1080p) [Not 24/7] -http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8 -#EXTINF:-1 tvg-id="WenShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文水新聞綜合 (360p) [Offline] -http://sxws.chinashadt.com:1938/live/tv10.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="WenShuiShiShangXiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文水時尚秀 (360p) [Offline] -http://sxws.chinashadt.com:1938/live/tv11.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="DouYuDianYing2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影2 (1080p) -http://tx2play1.douyucdn.cn/live/20415rnWbjg6Ex1K.xs -#EXTINF:-1 tvg-id="DouYuDianYing3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影3 (720p) -http://tx2play1.douyucdn.cn/live/3928r9p0BHMDG_8000p.flv -#EXTINF:-1 tvg-id="DouYuDianYing4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影4 (1080p) -http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq_8000p.flv -#EXTINF:-1 tvg-id="DouYuChePing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼车评 (720p) [Not 24/7] -http://tx2play1.douyucdn.cn/live/321987r8e6tCsPR_4000.xs?uuid= -#EXTINF:-1 tvg-id="XinTangRenMeiXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新唐人-美西 (486p) -http://live.ntdimg.com/uwlive520/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenYaTaiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人亚太臺 (480p) -https://live.ntdimg.com/aplive200/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenJiaDongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人加东臺 (720p) -https://live.ntdimg.com/mllive860/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenJiaXiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人加西臺 (216p) -https://live.ntdimg.com/cwlive220/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenJiuJinShanTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人旧金山臺 (486p) -https://live.ntdimg.com/sflive990/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenMeiDongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人美东臺 (480p) -https://live.ntdimg.com/live400/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTangRenMeiXiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人美西臺 (486p) -https://live.ntdimg.com/uwlive990/playlist.m3u8 -#EXTINF:-1 tvg-id="XinChangXiuXianYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新昌休闲影视 (1080p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxinchang2/720p.m3u8 -#EXTINF:-1 tvg-id="XinChangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新昌新聞綜合 (1080p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxinchang1/720p.m3u8 -#EXTINF:-1 tvg-id="XinTaiXiangCunDangJian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰乡村党建 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰影視頻道 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtys/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰影視頻道 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰生活 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtsh/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰生活 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰综合 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtzh/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰综合 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8 -#EXTINF:-1 tvg-id="XinTaiXiangCunDangJian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰鄉村黨建 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtxc/playlist.m3u8 -#EXTINF:-1 tvg-id="XinJiangBingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆兵团卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=50&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225582/index.m3u8 -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225725/index.m3u8 -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) -http://183.207.248.71/cntv/live1/xinjiangstv/xinjiangstv -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) -http://183.207.248.71/gitv/live1/G_XINJIANG/G_XINJIANG -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) -http://183.207.249.15/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (540p) -http://112.25.48.68/live/program/live/xjws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=122&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Timeout] -http://223.110.243.136/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/xinjiangstv/1.m3u8 -#EXTINF:-1 tvg-id="XinJiangHaYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆哈语综合 (480p) [Offline] -http://livehyw.sobeycache.com/xjtvs/zb3.m3u8?auth_key=1807150116-0-0-ee46da0e36aa0d170240c1102e8c8e47 -#EXTINF:-1 tvg-id="XinJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆少儿 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb12.m3u8 -#EXTINF:-1 tvg-id="XinJiangHanYuXinXiFuWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆汉语信息服务 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb11.m3u8 -#EXTINF:-1 tvg-id="XinJiangHanYuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆汉语综艺 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb04.m3u8 -#EXTINF:-1 tvg-id="XinZhengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新郑综合 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10184-1.m3u8 -#EXTINF:-1 tvg-id="WuXiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡娱乐 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv2&type=tv -#EXTINF:-1 tvg-id="WuXiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡新闻综合 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv1&type=tv -#EXTINF:-1 tvg-id="WuXiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡生活 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv4&type=tv -#EXTINF:-1 tvg-id="WuXiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡经济 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv5&type=tv -#EXTINF:-1 tvg-id="WuXiDuShiZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡都市资讯 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv3&type=tv -#EXTINF:-1 tvg-id="RiBenQuanTianXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/riben24.png" group-title="",日本全天新聞 (480p) -https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 -#EXTINF:-1 tvg-id="WangCangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",旺苍新闻 (528p) [Not 24/7] -http://3g.dzsm.com/streamer/gycttv.m3u8 -#EXTINF:-1 tvg-id="MingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",明珠台 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空衛視 (576p) -http://218.202.220.2:5000/nn_live.ts?id=STARTV -#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空衛視 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=234&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="JinZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",晋中公共 (1080p) [Not 24/7] -http://jzlive.jztvnews.com:90/live/jzgg.m3u8 -#EXTINF:-1 tvg-id="JinZhongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",晋中综合 (1080p) -http://jzlive.jztvnews.com:90/live/jzzh.m3u8 -#EXTINF:-1 tvg-id="JinZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.nettv.live/uploads/18/1-1PG421013KU.jpg" group-title="",晋州综合 [Offline] -http://zhjz.chinashadt.com:2036/live/1.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="JingXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视一套 (576p) [Not 24/7] -http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JingXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视一套 (360p) [Not 24/7] -http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="JingXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视二套 (576p) [Offline] -http://hbjx.chinashadt.com:1935/live/jx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JingXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视二套 (360p) [Offline] -http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhiHuiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",智慧教育 (576p) -http://111.63.117.13:6060/030000001000/G_CETV-4/G_CETV-4.m3u8 -#EXTINF:-1 tvg-id="ShuoZhou1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/shuozhou.jpg" group-title="",朔州1 (480p) [Not 24/7] -http://stream.sxsztv.com/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="ShuoZhou2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/shuozhou.jpg" group-title="",朔州2 (480p) [Not 24/7] -http://stream.sxsztv.com/live2/playlist.m3u8 -#EXTINF:-1 tvg-id="DongGuangYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光一套 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DongGuangErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光二套 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DongGuangZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光綜藝 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SongYuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",松原新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/sytv/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZaoZhuangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄公共 (540p) -http://stream.zzgd.tv/3/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZaoZhuangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄教育 (540p) -http://stream.zzgd.tv/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZaoZhuangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄新闻综合 (540p) -http://stream.zzgd.tv/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="KeQiaoShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",柯桥时尚 (1080p) [Offline] -http://live.scbtv.cn/hls/qfc/index.m3u8 -#EXTINF:-1 tvg-id="KeQiaoZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",柯桥综合 (1080p) [Offline] -http://live.scbtv.cn/hls/news/index.m3u8 -#EXTINF:-1 tvg-id="QiXiaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",栖霞新闻 (480p) [Not 24/7] -http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8 -#EXTINF:-1 tvg-id="LiangPingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",梁平综合 (360p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MeiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",梅州综合 (480p) -http://dslive.grtn.cn/mzzh/playlist.m3u8 -#EXTINF:-1 tvg-id="YuShuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",榆树综合 (360p) [Offline] -http://stream.zhystv.com/yset/sd/live.m3u8 -#EXTINF:-1 tvg-id="YuShuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PDzWK3L.png" group-title="",榆樹綜藝頻道 (360p) [Offline] -http://stream.zhystv.com/ysyt/sd/live.m3u8 -#EXTINF:-1 tvg-id="HengShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",横山综合 [Offline] -http://stream.hsqtv.cn/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHanWaiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉外语 (576p) -http://stream.appwuhan.com/6tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHanWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉文体 (480p) -http://stream.appwuhan.com/5tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHanJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉经济 (360p) -http://stream.appwuhan.com/4tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuJinXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武进新闻 (576p) [Not 24/7] -http://live.wjyanghu.com/live/CH1.m3u8 -#EXTINF:-1 tvg-id="WuJinShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武进生活 (576p) [Not 24/7] -http://live.wjyanghu.com/live/CH2.m3u8 -#EXTINF:-1 tvg-id="MinShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",民視新聞 (720p) [Offline] -https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="YongXinDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视一套 (576p) -http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="YongXinDianShiSanTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视三套 (576p) -http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="YongXinDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视二套 (576p) -http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ShanTouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕头综合 (540p) -http://dslive.grtn.cn/stzh/playlist.m3u8 -#EXTINF:-1 tvg-id="ShanWeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕尾公共 (540p) -http://dslive.grtn.cn/swzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="ShanWeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕尾综合 (540p) -http://dslive.grtn.cn/swzh/playlist.m3u8 -#EXTINF:-1 tvg-id="JiangJinWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津文化旅游 (576p) -http://222.179.155.21:1935/ch2.m3u8 -#EXTINF:-1 tvg-id="JiangJinWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津文化旅游 (576p) -http://jiangjinlive.cbg.cn:1935/ch2.m3u8 -#EXTINF:-1 tvg-id="JiangJinXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津新闻综合 (576p) -http://222.179.155.21:1935/ch1.m3u8 -#EXTINF:-1 tvg-id="JiangJinXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津新闻综合 (576p) -http://jiangjinlive.cbg.cn:1935/ch1.m3u8 -#EXTINF:-1 tvg-id="JiangJinJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津经济生活 (576p) -http://222.179.155.21:1935/ch0.m3u8 -#EXTINF:-1 tvg-id="JiangJinJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津经济生活 (576p) -http://jiangjinlive.cbg.cn:1935/ch0.m3u8 -#EXTINF:-1 tvg-id="JiangSuIDongHaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 东海综合台 [Offline] -rtmp://livetv.dhtv.cn/live/news -#EXTINF:-1 tvg-id="JiangSuISuZhouWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州文化 [Not 24/7] -rtmp://csztv.2500sz.com/live/c03 -#EXTINF:-1 tvg-id="JiangSuISuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州生活 [Not 24/7] -rtmp://csztv.2500sz.com/live/c04 -#EXTINF:-1 tvg-id="JiangSuISuZhouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州经济 [Not 24/7] -rtmp://csztv.2500sz.com/live/c02 -#EXTINF:-1 tvg-id="JiangSuISuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州综合 [Not 24/7] -rtmp://csztv.2500sz.com/live/c01 -#EXTINF:-1 tvg-id="JiangSuILianYunGangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 连云港公共 (480p) [Not 24/7] -http://live.lyg1.com/ggpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiangSuILianYunGangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 连云港综合 (540p) [Not 24/7] -http://live.lyg1.com/zhpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiangSuYouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏优漫卡通 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuYouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏优漫卡通 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=146&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) -http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY -#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) -http://183.207.249.12/PLTV/4/224/3221225935/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225935/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuTiYuXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育休闲 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsty -#EXTINF:-1 tvg-id="JiangSuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏公共 (576p) -http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG -#EXTINF:-1 tvg-id="JiangSuGongGongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏公共新闻 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsgg -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225503/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225702/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225743/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://112.25.48.68/live/program/live/jswshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://117.169.120.140:8080/live/hdjiangsustv/.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://183.207.248.71/cntv/live1/jiangsustv/jiangsustv -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://183.207.249.34/PLTV/4/224/3221227402/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227255/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=5&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/JSWS-HD/JSWS-HD -#EXTINF:-1 tvg-id="JiangSuGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏国际 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsgj -#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (576p) -http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS -#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225929/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jscs -#EXTINF:-1 tvg-id="JiangSuXueXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏学习 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsxx -#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsys -#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS -#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (576p) [Offline] -http://223.110.243.134/PLTV/4/224/3221225937/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225923/index.m3u8 -#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsjy -#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY -#EXTINF:-1 tvg-id="JiangSuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏综艺 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jszy -#EXTINF:-1 tvg-id="JiangSuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏综艺 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY -#EXTINF:-1 tvg-id="JingZhuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/liangzhuang.png" group-title="",江苏靓妆 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jslz -#EXTINF:-1 tvg-id="JiangXiIShangRaoZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西 Ⅰ 上饶综合台 (540p) -http://live.0793.tv/srtv1/sd/live.m3u8 -#EXTINF:-1 tvg-id="JiangXiGongGongNongYe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西公共农业 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv5 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225705/index.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225746/index.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://112.25.48.68/live/program/live/jxwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://183.207.248.71/cntv/live1/jiangxistv/jiangxistv -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://183.207.249.11/PLTV/3/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) -http://223.110.254.199:6610/cntv/live1/jiangxistv/jiangxistv/1.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (720p) -http://117.169.120.140:8080/live/jiangxistv/.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (576p) -http://183.207.248.71/gitv/live1/JXWS/JXWS -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (576p) -http://183.207.249.15/PLTV/4/224/3221225798/index.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=40&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/JXWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) [Offline] -http://223.110.245.170/PLTV/3/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="JiangXiShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西少儿 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv6 -#EXTINF:-1 tvg-id="JiangXiYingShiLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西影视旅游 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv4 -#EXTINF:-1 tvg-id="JiangXiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西新闻 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv7 -#EXTINF:-1 tvg-id="JiangXiYiDongDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西移动电视 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv8 -#EXTINF:-1 tvg-id="JiangXiJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西经济生活 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv3 -#EXTINF:-1 tvg-id="JiangXiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西都市 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv2 -#EXTINF:-1 tvg-id="JiangXiFengShangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西风尚购物 (1080p) [Not 24/7] -http://39.134.66.66/PLTV/88888888/224/3221225521/index.m3u8 -#EXTINF:-1 tvg-id="JiangMenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江门综合 (1080p) -http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 -#EXTINF:-1 tvg-id="JiangMenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江门综合 (540p) -http://dslive.grtn.cn/jmzh/playlist.m3u8 -#EXTINF:-1 tvg-id="CangXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",沧县电视二套 (576p) -http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CangXianDianShiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",沧县电视综合 (576p) -http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北公共 (540p) -http://live7.plus.hebtv.com/hbggx/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (240p) -http://live3.plus.hebtv.com/nmpdx/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225495/index.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225732/index.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) -http://183.207.248.71/gitv/live1/G_HEBEI/G_HEBEI -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) -http://hbpx.chinashadt.com:2036/live/px4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (540p) -http://112.25.48.68/live/program/live/hbws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=45&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/HBWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="HeBeiShaoErKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北少儿科教 (540p) -http://live6.plus.hebtv.com/sekjx/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiYingShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北影视剧 (540p) -http://live6.plus.hebtv.com/hbysx/hd/live.m3u8 -#EXTINF:-1 tvg-id="HeBeiJinZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北晋州综合 (576p) [Offline] -http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北经济 (576p) -http://hbfc.chinashadt.com:2036/live/6.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北经济生活 (540p) [Not 24/7] -http://live2.plus.hebtv.com/jjshx/playlist.m3u8 -#EXTINF:-1 tvg-id="HeBeiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北都市 (240p) [Not 24/7] -http://live3.plus.hebtv.com/hbdsx/playlist.m3u8 -#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (576p) -http://183.207.248.71/cntv/live1/henanstv/henanstv -#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8 -#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (540p) -http://112.25.48.68/live/program/live/hnws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="HeYuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源公共 (540p) -http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeYuanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源综合 (540p) -http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeYuanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源综合 (480p) -http://dslive.grtn.cn/hyzh/playlist.m3u8 -#EXTINF:-1 tvg-id="LuoYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",洛陽綜合頻道 (1080p) [Not 24/7] -http://live1.lytv.com.cn:1935/live/LYTV1-1/playlist.m3u8 -#EXTINF:-1 tvg-id="HongYaXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",洪雅新闻综合 (1080p) -http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8 -#EXTINF:-1 tvg-id="JiNingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁公共 (450p) -http://lives.jnnews.tv/video/s10001-JTV3/index.m3u8 -#EXTINF:-1 tvg-id="JiNingTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁图文 (576p) -http://lives.jnnews.tv/video/s10001-JTV4/index.m3u8 -#EXTINF:-1 tvg-id="JiNingJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁教育 (1080p) -http://lives.jnnews.tv/video/s10001-JTV2/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江休闲 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江国际 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江少儿 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江教育 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江新闻 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangYiGou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江易购 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangLiuXue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江留学 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIZheJiangJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江经济 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIShaoXingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 绍兴影视 (720p) [Timeout] -http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangIShaoXingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 绍兴综合 (576p) [Timeout] -http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiang6Tao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江6套 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江公共 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel07/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225514/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225703/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://112.25.48.68/live/program/live/zjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-zhejiangstv/HD-2500k-1080P-zhejiangstv -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://183.207.248.71/cntv/live1/zhejiangstv/zhejiangstv -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://183.207.249.34/PLTV/4/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://223.110.254.210:6610/cntv/live1/zhejiangstv/zhejiangstv/1.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Offline] -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8 -#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_ZHEJIANG/G_ZHEJIANG -#EXTINF:-1 tvg-id="ZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/72d035c03412d7cb2d319c6607fef8e9.png" group-title="",浙江国际 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/72d035c03412d7cb2d319c6607fef8e9.png" group-title="",浙江国际 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/33b59c051574c604f93157baa61455b2.png" group-title="",浙江少儿 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/33b59c051574c604f93157baa61455b2.png" group-title="",浙江少儿 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/ZJYS.png" group-title="",浙江影视 (1080p) -http://yd-m-l.cztv.com/channels/lantian/channel05/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/ZJYS.png" group-title="",浙江影视 (720p) -http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangJiaoKeYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/b500dac5d5af1dae3a3eceaf2e165bd0.png" group-title="",浙江教科影视 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangShuMaShiDai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/05/16/090bdb9f3da9df74a275a785c3ba023f.png" group-title="",浙江数码时代 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangMinShengXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/11/b11dda9a789c67cb16e6a5a5fce63125.png" group-title="",浙江民生休闲 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangLiuXue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江留学 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/6c2c5375eff2669abfc9ad58b5fb200b.png" group-title="",浙江经济生活 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangQianJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/bf6ad9ce4da1182a3a7ed0e188d8632f.png" group-title="",浙江钱江 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8 -#EXTINF:-1 tvg-id="ZheJiangQianJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/bf6ad9ce4da1182a3a7ed0e188d8632f.png" group-title="",浙江钱江 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8 -#EXTINF:-1 tvg-id="HaiNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南公共 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=6 -#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8 -#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (576p) -http://183.207.248.11/PLTV/4/224/3221225810/index.m3u8 -#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (720p) [Not 24/7] -http://livelyws.chinamcache.com/lyws/zb01.m3u8?auth_key=1593241343-0-0-90b80e74457c94b2015f9428a1cb9b0e -#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=114&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (540p) [Timeout] -http://112.25.48.68/live/program/live/lyws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="HaiNanShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南少儿 (720p) [Not 24/7] -http://149.129.100.78/hainan.php?id=9 -#EXTINF:-1 tvg-id="HaiNanZhouCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南州藏語頻道 (480p) -http://live.hnzzzzzdst.com/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="HaiNanWenLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南文旅 (720p) [Not 24/7] -http://149.129.100.78/hainan.php?id=8 -#EXTINF:-1 tvg-id="HaiNanXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南新闻 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=5 -#EXTINF:-1 tvg-id="HaiNanJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南经济 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=4 -#EXTINF:-1 tvg-id="HaiYanXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海盐新闻 (720p) -http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="HaiXiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海西州综合 (576p) -http://stream.haixitv.cn/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="WoYangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",涡阳新闻综合 (360p) -http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8 -#EXTINF:-1 tvg-id="ShenZhenGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳公共 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=4 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225668/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225700/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225741/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225741/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://112.25.48.68/live/program/live/szwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://117.169.120.140:8080/live/hdshenzhenstv/.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://183.207.249.37/PLTV/4/224/3221227307/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227307/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8 -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ShenZhenYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳娱乐 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=6 -#EXTINF:-1 tvg-id="ShenZhenShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳少儿 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=7 -#EXTINF:-1 tvg-id="ShenZhenDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳电视剧 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=3 -#EXTINF:-1 tvg-id="ShenZhenYiDongDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳移动电视 (360p) [Not 24/7] -http://149.129.100.78/sztv.php?id=8 -#EXTINF:-1 tvg-id="ShenZhenSheKou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳蛇口 (1080p) -http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 -#EXTINF:-1 tvg-id="ShenZhenCaiJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳财经生活 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=5 -#EXTINF:-1 tvg-id="ShenZhenDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳都市 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=2 -#EXTINF:-1 tvg-id="ShenZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深州綜合頻道 (576p) [Not 24/7] -http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ShenZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深州綜合頻道 (360p) [Not 24/7] -http://hbsz.chinashadt.com:2036/live/stream:sztv.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="HuBeiIJingMenGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖北 Ⅰ 荆门公共台 (1080p) [Geo-blocked] -http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225569/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225699/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225740/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://117.169.120.140:8080/live/hdhubeistv/.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://223.110.254.136:6610/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv/1.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (576p) -http://183.207.248.71/gitv/live1/G_HUBEI/G_HUBEI -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (576p) -http://183.207.249.16/PLTV/4/224/3221225877/index.m3u8 -#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=18&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanXianFengPingYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南先锋乒羽 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=72&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南公共 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=261 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-hunanstv/HD-2500k-1080P-hunanstv -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227404/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://223.110.245.168/PLTV/4/224/3221227320/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) -http://223.110.254.134:6610/cntv/live1/hunanstv/hunanstv/1.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) -http://hbpx.chinashadt.com:2036/live/px5.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] -http://183.207.248.71/cntv/live1/hunanstv/hunanstv -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] -http://223.110.245.170/PLTV/3/224/3221227191/index.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/HNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=006&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/hdhunanstv/1.m3u8 -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_HUNAN/G_HUNAN -#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8 -#EXTINF:-1 tvg-id="HuNanGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南国际 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=229 -#EXTINF:-1 tvg-id="HuNanYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南娱乐 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=344 -#EXTINF:-1 tvg-id="HuNanKuaiLeChuiDiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南快乐垂钓 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=69&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanKuaiLeGou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南快乐购 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=56&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南教育 [Offline] -http://pull.hnedutv.com/live/hnedutv.m3u8 -#EXTINF:-1 tvg-id="HuNanDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南电视剧 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=484 -#EXTINF:-1 tvg-id="HuNanJingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南经视 [Not 24/7] -http://149.129.100.78/hunan.php?id=280 -#EXTINF:-1 tvg-id="HuNanCha.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.lizhizu.com/uploads/images/20180620/bf1e4dba0c575389968b21d8a3493b7d.jpg" group-title="",湖南茶 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=70&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HuNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南都市 (576p) -http://hnsd.chinashadt.com:2036/live/stream:hunandushi.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南都市 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=346 -#EXTINF:-1 tvg-id="HuNanJinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南金鹰卡通 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8 -#EXTINF:-1 tvg-id="XiangTanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湘潭公共 (576p) -http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="XiangTanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湘潭新闻综合 (720p) -http://live.hnxttv.com:9601/live/xwzh/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="ZhanJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湛江综合 (540p) -http://dslive.grtn.cn/zjzh/playlist.m3u8 -#EXTINF:-1 tvg-id="ChuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州公共 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvgg/playlist.m3u8 -#EXTINF:-1 tvg-id="ChuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州新闻综合 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvzh/playlist.m3u8 -#EXTINF:-1 tvg-id="ChuZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州科教 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvkj/playlist.m3u8 -#EXTINF:-1 tvg-id="LuanXianZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滦县综合 (576p) -http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LuanXianZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滦县综艺 (576p) -http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BinZhouGongGongDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州公共电视剧 (576p) -http://stream.bzcm.net/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="BinZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州新闻综合 (576p) -http://stream.bzcm.net/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="BinZhouCeShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州测试 (576p) -http://stream.bzcm.net/4/sd/live.m3u8 -#EXTINF:-1 tvg-id="BinHaiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/tvstation/logo/JSBHTV.gif" group-title="",滨海新闻 (1080p) [Timeout] -http://60.30.52.41/live/bhtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="BinHaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨海新闻综合 (576p) [Not 24/7] -http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BinHaiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/tvstation/logo/JSBHTV.gif" group-title="",滨海都市 (1080p) [Timeout] -http://60.30.52.41/live/bhtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhangZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",漳州新闻综合 (720p) [Not 24/7] -http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8 -#EXTINF:-1 tvg-id="ChaoAnYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",潮安影视 [Offline] -http://chaoan.chaoantv.com:8278/h_yingshi_1028/playlist.m3u8 -#EXTINF:-1 tvg-id="ChaoAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",潮安综合 (540p) -http://chaoan.chaoantv.com:8278/live/chaoanzongyi.m3u8 -#EXTINF:-1 tvg-id="ChaoZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.jisutiyu.com/uploads/150706/16-150F61J645626.jpg" group-title="",潮州公共 [Offline] -http://live.zscz0768.com/live/ggpd.m3u8 -#EXTINF:-1 tvg-id="ChaoZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.jisutiyu.com/uploads/150706/16-150F61J645626.jpg" group-title="",潮州综合 (480p) -http://dslive.grtn.cn/czzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 [Not 24/7] -http://live.mastvnet.com/4rlff1m/live.m3u8 -#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=192&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="AoDaLiYaSaiMa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳大利亚赛马 (270p) [Offline] -https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8 -#EXTINF:-1 tvg-id="AoShiWeiXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/AOSHI.png" group-title="",澳视卫星 (720p) [Not 24/7] -http://61.244.22.5/ch3/_definst_/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoShiAoMen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳视澳门 (720p) [Not 24/7] -http://61.244.22.4/ch1/ch1.live/playelist.m3u8 -#EXTINF:-1 tvg-id="AoShiPuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳视葡文 (720p) [Not 24/7] -http://61.244.22.4/ch2/ch2.live/chunklist_w1632175875.m3u8 -#EXTINF:-1 tvg-id="AoMen1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门1 (720p) [Not 24/7] -http://61.244.22.4/ch3/ch3.live/playelist.m3u8 -#EXTINF:-1 tvg-id="AoMen2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门2 (720p) [Not 24/7] -http://61.244.22.4/ch2/ch2.live/playelist.m3u8 -#EXTINF:-1 tvg-id="AoMenTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门体育 (720p) -http://61.244.22.4/ch4/sport_ch4.live/playelist.m3u8 -#EXTINF:-1 tvg-id="LingTaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://5b0988e595225.cdn.sohucs.com/images/20181203/9958772f6d52462e840c4fbbeca65b22.jpeg" group-title="",灵台新闻综合 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000145/index.m3u8 -#EXTINF:-1 tvg-id="XuanDongQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",炫动卡通 (540p) -http://183.207.255.188/live/program/live/xdkt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="XuanDongQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",炫动卡通 (576p) [Timeout] -http://223.110.245.139/PLTV/4/224/3221226388/index.m3u8 -#EXTINF:-1 tvg-id="DianZhangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/N8YdX6W.png" group-title="",点掌财经 (712p) -http://cclive.aniu.tv/live/anzb.m3u8 -#EXTINF:-1 tvg-id="JianWeiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",犍为新闻综合 (720p) [Not 24/7] -http://tv.scwlqw.cn:3100/hls/kqcyufpi/index.m3u8 -#EXTINF:-1 tvg-id="XianDaiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",现代教育 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=13 -#EXTINF:-1 tvg-id="ZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/zhujiang.png" group-title="",珠江 (720p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="ZhuHaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",珠海生活 (480p) -http://dslive.grtn.cn/zhzh/playlist.m3u8 -#EXTINF:-1 tvg-id="GanSuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃公共 (540p) [Not 24/7] -https://hls.gstv.com.cn/49048r/3t5xyc.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225584/index.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225724/index.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) -http://117.169.120.140:8080/live/gansustv/.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) -http://183.207.248.71/gitv/live1/G_GANSU/G_GANSU -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (540p) -http://112.25.48.68/live/program/live/gsws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (1080p) [Timeout] -http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8?from=26&hms_devid=685&icpid=88888888 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8 -#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="GanSuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃少儿 [Offline] -http://stream.gstv.com.cn/sepd/sd/live.m3u8 -#EXTINF:-1 tvg-id="GanSuWenHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃文化影视 [Offline] -http://stream.gstv.com.cn/whys/sd/live.m3u8 -#EXTINF:-1 tvg-id="GanSuYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃移动 (540p) [Not 24/7] -https://hls.gstv.com.cn/49048r/y72q36.m3u8 -#EXTINF:-1 tvg-id="GanSuJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃经济 [Offline] -http://stream.gstv.com.cn/jjpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="GanSuDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃都市 [Offline] -http://stream.gstv.com.cn/dspd/sd/live.m3u8 -#EXTINF:-1 tvg-id="ShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",生活 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227311/index.m3u8 -#EXTINF:-1 tvg-id="DianBaiShiChuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白视窗 (576p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DianBaiShiChuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白视窗 (360p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="DianBaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白综合 (576p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DianBaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白综合 (360p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="FanYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",番禺 (1080p) [Offline] -http://live.pybtv.cn/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="BaiChengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",白城新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/baicheng1/sd/live.m3u8 -#EXTINF:-1 tvg-id="BaiShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",白山新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/baishan1/sd/live.m3u8 -#EXTINF:-1 tvg-id="BaiShiTongTiYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育1 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba1/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BaiShiTongTiYu2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育2 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba2/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BaiShiTongTiYu3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育3 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba3/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BaiShiTongTiYu5.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育5 (1080p) -http://112.25.48.68/live/program/live/hdnba5/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="BaiShiTongTiYu7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育7 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba7/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="JingCaiAnHui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ss1.baidu.com/-4o3dSag_xI4khGko9WTAnF6hhy/baike/w=268;g=0/sign=99d4887928a446237ecaa264a0191533/3ac79f3df8dcd1004e570a227a8b4710b8122fee.jpg" group-title="",睛彩安徽 (576p) [Not 24/7] -http://149.129.100.78/anhui.php?id=85 -#EXTINF:-1 tvg-id="ShiJingShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",石景山电视台 (1080p) [Not 24/7] -http://live.sjsrm.com/bjsjs/sd/live.m3u8 -#EXTINF:-1 tvg-id="FuFJianJGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J公共 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226113/10000100000000060000000002358064_0.smil -#EXTINF:-1 tvg-id="FuFJianJShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J少儿 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226120/10000100000000060000000002358082_0.smil -#EXTINF:-1 tvg-id="FuFJianJXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J新闻 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226116/10000100000000060000000002358068_0.smil -#EXTINF:-1 tvg-id="FuFJianJLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J旅游 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226125/10000100000000060000000002358191_0.smil -#EXTINF:-1 tvg-id="FuFJianJDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J电视 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226115/10000100000000060000000002358067_0.smil -#EXTINF:-1 tvg-id="FuFJianJJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J经济 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226117/10000100000000060000000002358072_0.smil -#EXTINF:-1 tvg-id="FuShanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福山生活 (576p) [Not 24/7] -http://live.jiaodong.net:82/tvfushan/hls/tv_shenghuo.m3u8 -#EXTINF:-1 tvg-id="FuZhouShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",福州少儿 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-sepd-4/index.m3u8 -#EXTINF:-1 tvg-id="FuZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州影视 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-yspd-2/index.m3u8 -#EXTINF:-1 tvg-id="FuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州生活 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-shpd-3/index.m3u8 -#EXTINF:-1 tvg-id="FuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州综合 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8 -#EXTINF:-1 tvg-id="FuHaiWeiYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福海维语综合 [Offline] -http://klmyyun.chinavas.com/hls/fuhai1.m3u8 -#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州三峽移民 (576p) -http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州三峽移民 (576p) -http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州影視文藝 (576p) -http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州影視文藝 (576p) [Not 24/7] -http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州科教頻道 (576p) -http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州科教頻道 (576p) -http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州綜合頻道 (576p) -http://123.146.162.24:8017/iTXwrGs/800/live.m3u8 -#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州綜合頻道 (576p) -http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8 -#EXTINF:-1 tvg-id="QinHuangDaoYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島影視 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv3/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="QinHuangDaoZhengFa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島政法 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv2/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="QinHuangDaoXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島新聞 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv1/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="JiShiShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://portrait2.sinaimg.cn/1296090737/blog/180.jpg" group-title="",积石山电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000152/index.m3u8 -#EXTINF:-1 tvg-id="LanQiuZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",篮球资讯 (576p) -http://223.110.245.139/PLTV/4/224/3221227023/index.m3u8 -#EXTINF:-1 tvg-id="LouDi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",娄底 (720p) -http://mms.ldntv.cn:1935/live/_definst_/zonghe/chunklist_w67585331.m3u8 -#EXTINF:-1 tvg-id="LouDiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.ldntv.cn/Portal/Tpl/templates/default/images/live_pic1.png" group-title="",娄底综合 (720p) -http://119.39.242.52:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="LouDiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.ldntv.cn/Portal/Tpl/templates/default/images/live_pic1.png" group-title="",娄底综合 (720p) [Not 24/7] -http://mms.ldntv.cn:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="JingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",精品电影 (1080p) -http://183.207.248.71/cntv/live1/jdianying/jdianying -#EXTINF:-1 tvg-id="QiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",綦江综合 (576p) [Offline] -http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HongNiuREDBULLTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",红牛REDBULL TV (720p) -https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_3360.m3u8 -#EXTINF:-1 tvg-id="JiShiRenWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",纪实人文 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225655/index.m3u8 -#EXTINF:-1 tvg-id="ChunXiang4K.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",纯享4K (2160p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8 -#EXTINF:-1 tvg-id="SuiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",绥江综合 [Offline] -http://60.160.23.32:6055/sjtv/sjtv.m3u8 -#EXTINF:-1 tvg-id="JiXuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",继续教育 (576p) -http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8 -#EXTINF:-1 tvg-id="LuoShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",罗山电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/11521-1.m3u8 -#EXTINF:-1 tvg-id="LuoMaNiYaSTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",罗马尼亚STV [Not 24/7] -http://s2.streamnet.ro:8035/stream.flv -#EXTINF:-1 tvg-id="ZhiYe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",置业 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8 -#EXTINF:-1 tvg-id="MeiGuoZhongWenDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ss0.baidu.com/-Po3dSag_xI4khGko9WTAnF6hhy/baike/pic/item/4034970a304e251f46b43584a786c9177f3e530f.jpg" group-title="",美国中文电视 (406p) [Not 24/7] -https://jpts.sinovision.net/livestream.m3u8 -#EXTINF:-1 tvg-id="MeiGuoYaMeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",美国亚美卫视 (480p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8 -#EXTINF:-1 tvg-id="MeiGuoGouGouChongWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",美国狗狗宠物 (1080p) -https://video.blivenyc.com/broadcast/prod/2061/22/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="FeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",翡翠台 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 (288p) -http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 -http://202.69.67.66/webcast/bshdlive-pc/playlist.m3u8 -#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 [Offline] -rtmp://202.69.69.180/webcast/bshdlive-pc -#EXTINF:-1 tvg-id="SuZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/WcPcluo.png" group-title="",肃州电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000123/index.m3u8 -#EXTINF:-1 tvg-id="ZhaoQingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",肇庆综合 (480p) -http://dslive.grtn.cn/zqzh/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhouShanGongGongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",舟山公共生活 (720p) -http://live.wifizs.cn/ggsh/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZhouShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/ZJZS-ZH.jpg" group-title="",舟山新闻综合 (240p) -http://live.wifizs.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZhouShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/ZJZS-ZH.jpg" group-title="",舟山新闻综合 (240p) -http://stream.wifizs.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="ZhouShanQunDaoLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",舟山群岛旅游 (720p) -http://live.wifizs.cn/qdly/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖公共 (576p) -http://live1.wuhubtv.com/channel3/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHuXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖新闻综合 (576p) -http://live1.wuhubtv.com/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="WuHuShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖生活 (576p) -http://live1.wuhubtv.com/channel2/sd/live.m3u8 -#EXTINF:-1 tvg-id="SuZhouWenHuaShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州文化生活 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szwhsh -#EXTINF:-1 tvg-id="SuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州新闻综合 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szxw -#EXTINF:-1 tvg-id="SuZhouShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州生活资讯 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szshzx -#EXTINF:-1 tvg-id="SuZhouSheHuiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州社会经济 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szshjj -#EXTINF:-1 tvg-id="MaoMingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",茂名综合 (540p) -http://dslive.grtn.cn/mmzh/playlist.m3u8 -#EXTINF:-1 tvg-id="RongChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",荣昌综合 (404p) [Not 24/7] -http://183.64.181.25:40023/rongchang01.m3u8 -#EXTINF:-1 tvg-id="JuXianTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣圖文頻道 (720p) [Timeout] -http://61.162.225.122:8181/live/test3.m3u8 -#EXTINF:-1 tvg-id="JuXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣電視一套 (576p) [Timeout] -http://61.162.225.122:8181/live/test1.m3u8 -#EXTINF:-1 tvg-id="JuXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣電視二套 (576p) [Not 24/7] -http://61.162.225.122:8181/live/test2.m3u8 -#EXTINF:-1 tvg-id="LianHuaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莲花卫视 (1080p) [Not 24/7] -http://149.129.100.78/lotus.php?id=1 -#EXTINF:-1 tvg-id="HuaShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/910.png" group-title="",華視新聞 [Geo-blocked] -http://seb.sason.top/sc/hsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="HuaCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.hwazan.org/statics/images/newhztv_logo.png" group-title="",華藏衛視 (1080p) [Not 24/7] -http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="PingXiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉公共頻道 (1080p) [Not 24/7] -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv3stream.m3u8 -#EXTINF:-1 tvg-id="PingXiangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉教育頻道 (480p) -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8 -#EXTINF:-1 tvg-id="PingXiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉新聞綜合 (576p) [Not 24/7] -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8 -#EXTINF:-1 tvg-id="XiaoShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萧山新闻综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8 -#EXTINF:-1 tvg-id="LanPing432.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蓝屏 432 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=109&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="PengAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蓬安新闻综合 (720p) [Not 24/7] -http://palive.patv123.com:8091/live/xwpd_800K.m3u8 -#EXTINF:-1 tvg-id="WuHuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蕪湖教育頻道 (576p) -http://live1.wuhubtv.com/channel4/sd/live.m3u8 -#EXTINF:-1 tvg-id="XiaoShanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蕭山生活頻道 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8 -#EXTINF:-1 tvg-id="HengShuiYingShiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",衡水影视娱乐 (480p) [Not 24/7] -http://hls.hsrtv.cn/hls/hstv2.m3u8 -#EXTINF:-1 tvg-id="HengShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",衡水新闻综合 (720p) [Not 24/7] -http://hls.hsrtv.cn/hls/hstv1.m3u8 -#EXTINF:-1 tvg-id="YuanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",袁州綜合頻道 (576p) [Not 24/7] -http://jxyz.chinashadt.com:8036/live/yz1.stream/playist.m3u8 -#EXTINF:-1 tvg-id="XiAnSiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv5.jpg" group-title="",西安丝路 (404p) [Not 24/7] -http://stream2.xiancity.cn/xatv5/playlist.m3u8 -#EXTINF:-1 tvg-id="XiAnLeGouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2018/0806/af2ee98fb3e3b7fcafb3bbbdae9d7957.jpg" group-title="",西安乐购购物 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv6/playlist.m3u8 -#EXTINF:-1 tvg-id="XiAnShangWuZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv3.jpg" group-title="",西安商务资讯 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv3/playlist.m3u8 -#EXTINF:-1 tvg-id="XiAnYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv4.jpg" group-title="",西安影视 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv4/playlist.m3u8 -#EXTINF:-1 tvg-id="XiAnXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西安新闻 (1080p) [Not 24/7] -http://stream2.xiancity.cn/xatv1/playlist.m3u8 -#EXTINF:-1 tvg-id="XiAnBaiGe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西安白鸽 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8 -#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) -http://117.169.120.140:8080/live/xizangstv/.m3u8 -#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) -http://183.207.249.16/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) -http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8 -#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=208&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="XiCangCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏藏語 (576p) -http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8 -#EXTINF:-1 tvg-id="XiHongShiShouFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西虹市首富 [Offline] -https://zuikzy.win7i.com/2018/07/30/hCt7GSGU1sAgOC8j/playlist.m3u8 -#EXTINF:-1 tvg-id="XiQingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西青新闻综合 (1080p) [Not 24/7] -http://221.238.209.44:81/hls/live1.m3u8 -#EXTINF:-1 tvg-id="GuiZhouTiYuLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州体育旅游 (406p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=dwpd -#EXTINF:-1 tvg-id="GuiZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州公共 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzgg -#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225576/index.m3u8 -#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8 -#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) -http://183.207.248.71/gitv/live1/G_GUIZHOU/G_GUIZHOU -#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8 -#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/GZWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="GuiZhouDaZhongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州大众生活 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=dzsh -#EXTINF:-1 tvg-id="GuiZhouJiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州家有购物 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=8 -#EXTINF:-1 tvg-id="GuiZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州影视文艺 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzwy -#EXTINF:-1 tvg-id="GuiZhouKeJiaoJianKang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州科教健康 (406p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=kjjk -#EXTINF:-1 tvg-id="GuiZhouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州经济 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzjj -#EXTINF:-1 tvg-id="ZhaoXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视一套 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhaoXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视一套 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhaoXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视二套 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ZhaoXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视二套 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="XinJiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辛集新聞頻道 (480p) [Not 24/7] -http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="XinJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辛集生活頻道 (480p) [Not 24/7] -http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225735/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) -http://112.25.48.68/live/program/live/lnwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225499/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) -http://183.207.248.71/cntv/live1/liaoningstv/liaoningstv -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) -http://183.207.249.12/PLTV/4/224/3221225802/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) -http://183.207.249.71/PLTV/3/224/3221225566/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) [Timeout] -http://39.134.39.37/PLTV/88888888/224/3221226209/index.m3u8 -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=38&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/LNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="LiaoYuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辽源新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/liaoyuan1/sd/live.m3u8 -#EXTINF:-1 tvg-id="MaiShiWang.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/S14txRh.jpg" group-title="",迈视网 [Offline] -http://xinl.live.maxtv.cn/live/zb/playlist.m3u8 -#EXTINF:-1 tvg-id="DiQingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",迪庆综合 (1080p) -http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DiQingCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2019/0124/af2241fbb539921aa3c9c744b5cdc26b.jpg" group-title="",迪庆藏语 (576p) -http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TongHuaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",通化新闻 [Geo-blocked] -http://stream2.jlntv.cn/tonghua1/sd/live.m3u8 -#EXTINF:-1 tvg-id="TongZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.dayuntongzhou.com/web/style/images/logo.png" group-title="",通州电视台 (720p) -http://pull.dayuntongzhou.com/live/tztv.m3u8 -#EXTINF:-1 tvg-id="SuiNingGongGongGongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",遂宁公共公益 [Offline] -http://snlive.scsntv.com:8091/live/gggy.m3u8 -#EXTINF:-1 tvg-id="SuiNingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",遂宁综合 [Offline] -http://snlive.scsntv.com:8091/live/xwzh.m3u8 -#EXTINF:-1 tvg-id="HanJiangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",邗江资讯 (576p) [Offline] -http://223.110.245.139/PLTV/4/224/3221227154/index.m3u8 -#EXTINF:-1 tvg-id="ShaoDongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",邵东综合 (576p) -http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JiuQuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/jiuquan.jpg" group-title="",酒泉新闻综合 (576p) [Timeout] -http://117.156.28.119/270000001111/1110000001/index.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225692/index.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225734/index.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) -http://117.169.120.132:8080/live/chongqingstv/playlist.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) -http://223.110.254.137:6610/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv/1.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (576p) -http://183.207.249.5/PLTV/4/224/3221225812/index.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (540p) -http://112.25.48.68/live/program/live/cqws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_CHONGQING/G_CHONGQING -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (432p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=10&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) [Offline] -http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="ChongQingZhongXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆忠县 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_35.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="ChongQingYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆移动 (480p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_57.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChongQingYiDongJiChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆移动机场 (480p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_56.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JinChangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金昌公共頻道 (240p) [Geo-blocked] -http://stream4.liveyun.hoge.cn/ch01/sd/live.m3u8 -#EXTINF:-1 tvg-id="JinChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金昌綜合頻道 (720p) [Geo-blocked] -http://stream4.liveyun.hoge.cn/ch02/sd/live.m3u8 -#EXTINF:-1 tvg-id="JinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8 -#EXTINF:-1 tvg-id="JinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (576p) [Geo-blocked] -http://223.110.241.149:6610/gitv/live1/G_JINYING/G_JINYING/1.m3u8 -#EXTINF:-1 tvg-id="JinYingQiaTongHuNan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (湖南) (540p) [Not 24/7] -http://112.25.48.68/live/program/live/jykt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="YinChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",银川公共 (360p) [Not 24/7] -http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8 -#EXTINF:-1 tvg-id="YinChuanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",银川生活 (360p) [Not 24/7] -http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="ChangFengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",長豐新聞綜合 (576p) -http://218.23.114.19:1935/live/xinwen/playlist.m3u8 -#EXTINF:-1 tvg-id="ChangLeZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长乐综合 [Geo-blocked] -http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8 -#EXTINF:-1 tvg-id="ChangShouWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长寿文化旅游 (576p) [Offline] -http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChangShouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长寿综合 (720p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_63.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChangChunZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长春综合 [Geo-blocked] -http://stream2.jlntv.cn/jlcc/sd/live.m3u8 -#EXTINF:-1 tvg-id="ChangShaDiTieYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙地铁移动 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8 -#EXTINF:-1 tvg-id="ChangShaNuXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙女性 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_349.m3u8 -#EXTINF:-1 tvg-id="ChangShaZhengFa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙政法 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_348.m3u8 -#EXTINF:-1 tvg-id="ChangShaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙新闻 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_346.m3u8 -#EXTINF:-1 tvg-id="ChangShaJingMao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙经贸 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8 -#EXTINF:-1 tvg-id="ChangShaGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙购物 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_354.m3u8 -#EXTINF:-1 tvg-id="FuChengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",阜城综合 (576p) [Not 24/7] -http://hbfc.chinashadt.com:2036/live/2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="YangJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",阳江综合 (480p) -http://dslive.grtn.cn/yjzh/playlist.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225729/index.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227022/index.m3u8 -#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (540p) -http://112.25.48.68/live/program/live/sxws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="LongHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隆化影视 (576p) -http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LongHuaZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隆化综合 (576p) -http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SuiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隨州綜合 (720p) [Not 24/7] -http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_304.m3u8 -#EXTINF:-1 tvg-id="SuiZhouNongCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隨州農村 (720p) [Not 24/7] -http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_305.m3u8 -#EXTINF:-1 tvg-id="JiAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",集安综合 [Geo-blocked] -http://stream2.jlntv.cn/ja/sd/live.m3u8 -#EXTINF:-1 tvg-id="HuoShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霍山综合 (576p) [Timeout] -http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州公共頻道 (576p) [Not 24/7] -http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaZhouShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州少兒頻道 (576p) [Not 24/7] -http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaZhouWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州文化頻道 (576p) -http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaZhouXinWenPinDao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州新聞頻道 (576p) -http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州新闻 (576p) [Offline] -http://rtvcdn.com.au:8082/TV_GG.m3u8 -#EXTINF:-1 tvg-id="QingZhouWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州文化旅游 (576p) -http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QingZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州生活 (576p) -http://sdqz.chinashadt.com:2036/live/stream:2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QingZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州综合 (576p) -http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (1080p) -http://live.geermurmt.com/qhws/sd/live.m3u8 -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225573/index.m3u8 -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225727/index.m3u8 -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (540p) -http://112.25.48.68/live/program/live/qhws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="QingHaiAnDuoWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青海安多卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225531/index.m3u8 -#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (720p) [Not 24/7] -http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8 -#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (720p) [Not 24/7] -http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8 -#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (480p) [Not 24/7] -http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8 -#EXTINF:-1 tvg-id="JingNingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",静宁综合 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000147/index.m3u8 -#EXTINF:-1 tvg-id="AnShanTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鞍山图文 (480p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="ShaoGuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",韶关公共 (480p) -http://dslive.grtn.cn/sgxwzhHD/playlist.m3u8 -#EXTINF:-1 tvg-id="FengShangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",风尚购物 (1080p) -http://183.207.248.71/cntv/live1/fengshanggw/fengshanggw -#EXTINF:-1 tvg-id="YuYaoYaoJiangWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",餘姚姚江文化 (576p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8 -#EXTINF:-1 tvg-id="MaYunDuiHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",马云对话 (480p) -http://www.alibabapictures.com/movies/10/mayunduihua.mp4 -#EXTINF:-1 tvg-id="GaoTaiDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",高台电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000146/index.m3u8 -#EXTINF:-1 tvg-id="GaoErFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",高尔夫 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=68 -#EXTINF:-1 tvg-id="GaoQingDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",高清电影 (1080p) [Timeout] -http://39.134.19.76/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8 -#EXTINF:-1 tvg-id="HeBiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hebi.jpg" group-title="",鹤壁新闻综合 (480p) [Not 24/7] -http://pili-live-hls.hebitv.com/hebi/hebi.m3u8 -#EXTINF:-1 tvg-id="HeFengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹤峰综合 [Geo-blocked] -http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8 -#EXTINF:-1 tvg-id="LuQuanYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹿泉一套 (576p) [Not 24/7] -http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LuQuanErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹿泉二套 (576p) [Not 24/7] -http://hblq.chinashadt.com:2036/live/stream:luquan2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuangHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黃驊影視 (576p) -http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuangHuaBoHaiXinQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黃驊渤海新區 (576p) -http://hbhh.chinashadt.com:2111/live/bhtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuangHeDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/huanghe.png" group-title="",黄河电视台 [Offline] -http://149.129.100.78/tv.php?id=sxhh -#EXTINF:-1 tvg-id="HuangHuaYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黄骅一套 (576p) -http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HuangHuaErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黄骅二套 (576p) -http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HeiMeiDianJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑莓电竞 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) -http://223.110.243.169/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227492/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (1080p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_HEILONGJIANG/G_HEILONGJIANG -#EXTINF:-1 tvg-id="HeiLongJiangWei.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江卫 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-heilongjiangstv/HD-2500k-1080P-heilongjiangstv -#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225690/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) -http://183.207.249.36/PLTV/4/224/3221227323/index.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) -http://223.110.254.143:6610/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv/1.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=27&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="HeiLongJiangTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江台 [Timeout] -http://stream3.hljtv.com/hljws2/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江少儿 [Offline] -http://stream3.hljtv.com/hljse2/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江影视 [Timeout] -http://stream3.hljtv.com/hljys2/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江文体 [Offline] -http://stream3.hljtv.com/hljwy2/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangXinWenFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江新闻法治 [Offline] -http://stream3.hljtv.com/hljxw2/sd/live.m3u8 -#EXTINF:-1 tvg-id="HeiLongJiangDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江都市 [Timeout] -http://stream3.hljtv.com/hljdd2/sd/live.m3u8 -#EXTINF:-1 tvg-id="QianXiNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黔西南公共 (288p) [Geo-blocked] -http://live.qxndt.com/channel3/sd/live.m3u8 -#EXTINF:-1 tvg-id="QianXiNanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黔西南综合 (288p) [Geo-blocked] -http://live.qxndt.com/channel2/sd/live.m3u8 -#EXTINF:-1 tvg-id="DianZhangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/N8YdX6W.png" group-title="",點掌財經 (712p) -http://cclive2.aniu.tv/live/anzb.m3u8 -#EXTINF:-1 tvg-id="LongKouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口图文 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LongKouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口新闻综合 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LongKouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口生活 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LongYanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙岩公共 (540p) [Not 24/7] -http://stream.lytv.net.cn/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="LongYanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙岩综合 (540p) -http://stream.lytv.net.cn/2/sd/live.m3u8 diff --git a/channels/co.m3u b/channels/co.m3u deleted file mode 100644 index d06d1885f..000000000 --- a/channels/co.m3u +++ /dev/null @@ -1,99 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Amordiscos.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://amordiscostv.com/wp-content/uploads/2021/02/thumbnail_Logo-Amordiscos-600x600-alpha-150x150.png" group-title="Music",Amordiscos (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:amordiscos_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-atv-1694.jpg" group-title="Local",ATV (Soacha | Cundinamarca) (360p) [Not 24/7] -https://movil.ejeserver.com/live/verteve.m3u8 -#EXTINF:-1 tvg-id="AvivamientoTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7YB94Hf.png" group-title="Religious",Avivamiento TV (1080p) [Not 24/7] -https://s1.abntelevision.com/avivamientoabr/stream/avivamientohd/avivamientohd/playlist.m3u8 -#EXTINF:-1 tvg-id="BuenisimaRadioTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/buenisima-radio-tv-4865.jpg" group-title="Local",Buenísima Radio TV (Gamarra | Cesar) (1080p) [Not 24/7] -https://streamyes.alsolnet.com/buturama/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/1b/Cali_TV.png/revision/latest" group-title="Local",Cali TV (Santiago de Cali | Valle del Cauca) (540p) [Not 24/7] -https://5ab772334c39c.streamlock.net/live-calitv/calitv1/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-2-1725.jpg" group-title="General",Canal 2 (720p) [Not 24/7] -https://video13.virtualtronics.com/streamer/canal2.m3u8 -#EXTINF:-1 tvg-id="Canal12.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bo3zQKb.png" group-title="Local",Canal 12 (Valledupar | Cesar) (486p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/canal-12-valledupar.m3u8 -#EXTINF:-1 tvg-id="CanalC.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-c-2584.jpg" group-title="",Canal C (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8104/8104/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCapital.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Hlrdeds.png" group-title="General",Canal Capital (720p) [Not 24/7] -https://mdstrm.com/live-stream-playlist/57d01d6c28b263eb73b59a5a.m3u8 -#EXTINF:-1 tvg-id="CanalCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/574463697b9817cf0886fc17.m3u8 -#EXTINF:-1 tvg-id="CanalDos.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BYsyNHZ.jpg" group-title="Local",Canal Dos (Yopal | Casanare) (720p) [Not 24/7] -http://131.221.42.25:1935/streaming/canal2/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalInstitucionalTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-institucional-tv-2599.jpg" group-title="General",Canal Institucional TV (1080p) -https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalRCNNovelas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Canal RCN Novelas (480p) -http://45.179.140.242:8000/play/a0jf -#EXTINF:-1 tvg-id="CanalRCNNovelas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Canal RCN Novelas (480p) [Not 24/7] -http://38.131.11.9:1080/play/a037 -#EXTINF:-1 tvg-id="CanalSonTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://canalsontv.co/wp-content/uploads/2021/05/SON-TV-logo-jpg.jpg" group-title="Music",Canal Son TV (720p) [Not 24/7] -https://server12.videostreaming.net:3628/stream/play.m3u8 -#EXTINF:-1 tvg-id="CanalVisionDorada.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",Canal Visión Dorada (720p) [Not 24/7] -https://movil.ejeserver.com/live/visiondorada.m3u8 -#EXTINF:-1 tvg-id="ChavoTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/El_Chavo_%28simple_logo%29.svg/800px-El_Chavo_%28simple_logo%29.svg.png" group-title="Series",Chavo TV (480p) [Not 24/7] -https://videostreaming.cloudserverlatam.com/chavotv/chavotv/playlist.m3u8 -#EXTINF:-1 tvg-id="CinemaMás.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Movies",Cinema+ (720p) -https://hvtrafico.ddns.net/cinema720/cinema720.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Eduvision.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/eduvision-2592.jpg" group-title="Education",Eduvision (720p) [Timeout] -http://66.240.236.25:1936/eduvision/eduvision/playlist.m3u8 -#EXTINF:-1 tvg-id="EnlaceTelevision.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/enlace-television-3301.jpg" group-title="General",Enlace Televisión (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/colombia/enlace.m3u8 -#EXTINF:-1 tvg-id="FamiliChannel.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/famili-channel-5336.jpg" group-title="Family",Famili Channel (720p) [Not 24/7] -https://rtmp02.portalexpress.es/thefchanel/thefchanel/playlist.m3u8 -#EXTINF:-1 tvg-id="LATAMTV.tv" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://t46.90f.myftpupload.com/wp-content/uploads/2020/08/cropped-Logo-LATAM-Horizontal-solo-alfa.png" group-title="",LATAM TV (Bogotà) (540p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/latam -#EXTINF:-1 tvg-id="MarinaStereo.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://www.marinastereo.co/wp-content/uploads/2019/11/LOGO-4-300x136.png" group-title="",Marina Stereo (720p) [Offline] -https://rtmp02.portalexpress.es/marinastereo/marinastereo/playlist.m3u8 -#EXTINF:-1 tvg-id="MelodyChannelColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://melodychannel.tv/wp-content/uploads/2021/01/cropped-logoMelody-2.png" group-title="Music",Melody Channel Colombia (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:MelodyChannel_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MiGenteTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/pe_mi-gente_m.png" group-title="",Mi Gente TV (720p) [Not 24/7] -https://hvtrafico.ddns.net/migente720/migente720.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieFe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="http://moviefe.com/logo%20moviefe.png" group-title="Movies",MovieFe (360p) [Not 24/7] -https://vcp.myplaytv.com/moviefe/ngrp:moviefe_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MundoMas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CREs19T.png" group-title="",Mundo Mas (560p) [Not 24/7] -http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 -#EXTINF:-1 tvg-id="NoticiasCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/589b13f631f1bebd088ff756.png" group-title="News",Noticias Caracol (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/58dc3d471cbe05ff3c8e463e.m3u8 -#EXTINF:-1 tvg-id="NTN24.co" tvg-country="CO;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NTN24/picture?width=320&height=320" group-title="News",NTN24 (Nuestra Tele Noticias) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEJs1fTF3KszRJGxJY14VrA/live -#EXTINF:-1 tvg-id="SenalColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://s3.amazonaws.com/rtvc-assets-senalcolombia.gov.co/s3fs-public/logo.png" group-title="General",Señal Colombia (1080p) -https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SuramTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6d2fOjq.png" group-title="Local",Suram TV (1080p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/suramtv/suramtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TDIColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/tdi-colombia-4792.jpg" group-title="General",TDI Colombia (720p) [Not 24/7] -https://play.amelbasoluciones.co:3971/live/tdicolombiatvlive.m3u8 -#EXTINF:-1 tvg-id="Teleamiga.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Local",Teleamiga (Bogotà | Cundinamarca) (480p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ -https://liveingesta118.cdnmedia.tv/teleamigatvlive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleantioquia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_teleantioquia-hd_m.png" group-title="General",Teleantioquia (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ -https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleantioquia2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="General",Teleantioquia 2 (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ -https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecafe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="http://cdn-std-1.sibasa.netdna-cdn.com/co/b3aef974216995f45cbb271e6be36964.jpg" group-title="General",Telecafé [Offline] -http://38.131.11.9:1080/play/a0ct -#EXTINF:-1 tvg-id="Telecaribe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i5wyEor.png" group-title="General",Telecaribe (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/telecaribe_adaptive -#EXTINF:-1 tvg-id="Teleislas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4xNgb8H.png" group-title="General",Teleislas (486p) [Not 24/7] -http://vbox2.cehis.net/live-teleislas/smil:teleislas.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleislas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4xNgb8H.png" group-title="General",Teleislas (486p) [Not 24/7] -https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemedellin.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_telemedellin-hd_m.png" group-title="General",Telemedellin (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ -https://liveingesta118.cdnmedia.tv/telemedellintvlive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelemusicaTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bwp5lST.png" group-title="Music",Telemúsica TV (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:telemusica_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Telepacifico.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://www.lyngsat-stream.com/logo/tv/tt/telepacifico_co.png" group-title="Local",Telepacífico (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] -https://stream.logicideas.media/telepacifico-live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telepetroleo.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/telepetroleo-2308.jpg" group-title="Local",Telepetróleo (Barrancabermeja | Santander) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/telepetroleo.m3u8 -#EXTINF:-1 tvg-id="TelevisionCelestial.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",Television Celestial (480p) [Not 24/7] -https://stmvideo2.livecastv.com/celestialtv/celestialtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGracia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/co-tv-gracia.jpg" group-title="Religious",TVGracia (720p) -https://streamyes.alsolnet.com/tvgracia/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNGlobal.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",TVN Global (614p) [Not 24/7] -https://stmv2.voxtvhd.com.br/tvnglobal/tvnglobal/playlist.m3u8 -#EXTINF:-1 tvg-id="UNOPLAY.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/RReDi1C.png" group-title="Entertainment",UNO PLAY (720p) [Not 24/7] -https://live-edge-bhs-1.cdn.enetres.net/184784E1D210401F8041E3E1266822CC021/playlist.m3u8 diff --git a/channels/cr.m3u b/channels/cr.m3u deleted file mode 100644 index 43ef5eca5..000000000 --- a/channels/cr.m3u +++ /dev/null @@ -1,81 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="88Stereo.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://hosttec.online/wp-content/uploads/2020/03/img1920.jpg" group-title="Music",88 Stereo (720p) [Not 24/7] -http://k3.usastreams.com/CableLatino/88stereo/playlist.m3u8 -#EXTINF:-1 tvg-id="AgrotendenciaTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/agrotendencia/picture?width=320&height=320" group-title="Outdoor",AgrotendenciaTV (480p) [Not 24/7] -https://inliveserver.com:1936/15506/15506/playlist.m3u8 -#EXTINF:-1 tvg-id="AnexionTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PrOYyU1.png" group-title="",Anexión TV (1080p) [Not 24/7] -http://rtmp.info:8081/anexiontv/envivo/index.m3u8 -#EXTINF:-1 tvg-id="AnexionTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PrOYyU1.png" group-title="",Anexión TV (1080p) [Not 24/7] -https://rtmp.info/anexiontv/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaSeisTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/V-_fSNpzlQPfFuUG0wLkrR7-PQ3RDx3n9tE4zA_8Exm_OKVeU24Kt2HiKLYweJXItgY" group-title="",Antena Seis TV (720p) [Geo-blocked] -http://inliveserver.com:1935/14510/14510/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal4/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal6.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/6_de_costa_rica-mediano.png" group-title="",Canal 6 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal6/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal8.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://image.multimedios.cr/sites/default/files/styles/social_share/public/multimedios1.jpg" group-title="",Canal 8 (720p) -http://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 -#EXTINF:-1 tvg-id="Canal11.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://es.wikipedia.org/wiki/Canal_11_(Costa_Rica)#/media/Archivo:Repretel_11_logo.png" group-title="General",Canal 11 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal11/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13Sinart.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://costaricamedios.cr/wp-content/uploads/2018/11/logo-header-sinartcr.png" group-title="",Canal 13 Sinart (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vh8g3 -#EXTINF:-1 tvg-id="Canal14SanCarlos.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTNDjR1edbxFUJ8KSf8dffHp6ch_Xz35Cm9UIlH9PGTyheprfQc" group-title="",Canal 14 San Carlos (720p) -http://tvn.obix.tv:1935/TVN/CH14.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal38.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.canal38cr.com/wp-content/uploads/2019/10/cropped-Logo-Nuevo-400.jpg" group-title="Music",Canal 38 (720p) [Not 24/7] -https://rtmp.info/canal38/envivo/chunks.m3u8 -#EXTINF:-1 tvg-id="Canal38.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.canal38cr.com/wp-content/uploads/2019/10/cropped-Logo-Nuevo-400.jpg" group-title="Music",Canal 38 (720p) [Not 24/7] -https://rtmp.info/canal38/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="ColosalTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="",Colosal TV (720p) [Not 24/7] -http://tv.ticosmedia.com:1935/COLOSAL/COLOSAL/playlist.m3u8 -#EXTINF:-1 tvg-id="CRTVyRadio.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="Sports",CR-TV y Radio (360p) [Timeout] -https://cp.sradiotv.com:1936/8034/8034/playlist.m3u8 -#EXTINF:-1 tvg-id="EJTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ejtvla/picture?width=320&height=320" group-title="Religious",Enlace Juvenil (EJTV) (288p) [Not 24/7] -https://api.new.livestream.com/accounts/ejtvla/events/2294538/live.m3u8 -#EXTINF:-1 tvg-id="EnlaceTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/enlacetv/picture?width=320&height=320" group-title="Religious",EnlaceTV (720p) [Not 24/7] -https://v4.tustreaming.cl/enlacebpbtv/index.m3u8 -#EXTINF:-1 tvg-id="ExtremaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/E9AuhOU.png" group-title="",Extrema TV (720p) -http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ExtremaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/E9AuhOU.png" group-title="",Extrema TV (720p) -https://www.livestreamcdn.net:444/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HBTVTicaVision.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/-k5QO6YHdanw/AAAAAAAAAAI/AAAAAAAAAAA/UTcqO9gj0z0/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",HBTV TicaVisión (720p) [Not 24/7] -http://k3.usastreams.com:1935/HBTV/HBTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Humor247.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/humor247cr/picture?width=320&height=320" group-title="Entertainment",Humor 24-7 (360p) -https://srv.panelcast.net/humor247/humor247/playlist.m3u8 -#EXTINF:-1 tvg-id="LuzNacienteTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/192_Luz_Naciente_TV.png" group-title="",Luz Naciente TV (720p) [Not 24/7] -https://cloudflare.streamgato.us:3399/live/luznacientetvlive.m3u8 -#EXTINF:-1 tvg-id="NicoyaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/NicoyaTv/picture?width=320&height=320" group-title="Local",NicoyaTV (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8 -#EXTINF:-1 tvg-id="QuinceUCR.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7hRnPcP.png" group-title="",Quince UCR (Universidad de Costa Rica) (720p) [Not 24/7] -http://163.178.170.127:1935/quinceucr/live.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="General",Repretel CDR-2 Central de Radios (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal2/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroTVPalmares.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="http://tvretropalmares.com/img/logo.png" group-title="",Retro TV Palmares (360p) [Not 24/7] -http://tvretropalmares.com:8090/hls/envivo.m3u8 -#EXTINF:-1 tvg-id="SanRafaelenLinea.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/telemascr.com/wp-content/uploads/2020/10/LOGO-WEB.png" group-title="Local",San Rafael en Linea (720p) [Geo-blocked] -https://cp.sradiotv.com:1936/8064/8064/playlist.m3u8 -#EXTINF:-1 tvg-id="SMOTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UYAL51B.png" group-title="Religious",SMO TV [Timeout] -http://186.15.50.30:8080/hls/smotv.m3u8 -#EXTINF:-1 tvg-id="STVElCamalFamiliar.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/10/Canal-stv-en-vivo.jpg" group-title="",STV El Camal Familiar (720p) [Not 24/7] -http://tiquiciatv.com:1935/stv/web/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleUno.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/directostv.teleame.com/wp-content/uploads/2016/06/Tele-Uno-Costa-Rica-en-vivo-Online.png?fit=1920%2C1080" group-title="",Tele Uno (720p) [Not 24/7] -http://tv.teleunotv.cr:1935/TVUNO/TVUNO/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleredTelevision.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iO6qmgY.png" group-title="",Telered Television (720p) [Not 24/7] -http://k4.usastreams.com/ARBtv/teleplus/playlist.m3u8 -#EXTINF:-1 tvg-id="Telesistema.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/478_Telesistema.png" group-title="",Telesistema (486p) -https://59ef525c24caa.streamlock.net/ARBtv/ARBtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSURCostaRica.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/r5p97Ex.jpg" group-title="",TeleSUR Costa Rica (720p) [Not 24/7] -http://k3.usastreams.com/telesur/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSURCostaRica.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/r5p97Ex.jpg" group-title="",TeleSUR Costa Rica (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/telesur/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletica7.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GeIK8rC.png" group-title="",Teletica 7 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x29e3wg -#EXTINF:-1 tvg-id="TVSurCanal9.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTQ-pLqFOvp-6R_dr9whF_Q5IBLtvtRcMjOY2xmROz5zFlIu7Y88Q&s" group-title="",TV Sur Canal 9 (480p) [Not 24/7] -http://tv.ticosmedia.com:1935/TVSUR/TVSUR/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSurCanal14.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.tvsur.co.cr/wp-content/uploads/2020/05/tvsur-logo.png" group-title="",TV Sur Canal 14 (720p) [Timeout] -https://5bf8041cb3fed.streamlock.net/TVSURCANAL14/TVSURCANAL14/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoTourChannel.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/l1oc3ER.png" group-title="Music",Video Tour Channel (720p) [Not 24/7] -http://k4.usastreams.com/videotour/videotour/playlist.m3u8 -#EXTINF:-1 tvg-id="VMLatino.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/1062_Canal_VM_Latino.png" group-title="Music",VM Latino (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/vmtv/vmlatino/playlist.m3u8 -#EXTINF:-1 tvg-id="ZonaFilmsTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="Music",Zona Films TV (900p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/zonafilmstv diff --git a/channels/cu.m3u b/channels/cu.m3u deleted file mode 100644 index a578f9a39..000000000 --- a/channels/cu.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalEducativo.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/ce.jpg" group-title="",Canal Educativo [Timeout] -http://177.52.221.214:8000/play/a0dw/index.m3u8 -#EXTINF:-1 tvg-id="CanalEducativo2.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/ce2.jpg" group-title="",Canal Educativo 2 [Timeout] -http://177.52.221.214:8000/play/a0dx/index.m3u8 -#EXTINF:-1 tvg-id="CubaVision.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cubavision.jpg" group-title="",CubaVision [Timeout] -http://177.52.221.214:8000/play/a0dc/index.m3u8 -#EXTINF:-1 tvg-id="CubaVisionInternacional.cu" tvg-country="CU;HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cvi.jpg" group-title="",CubaVision Internacional (480p) [Not 24/7] -http://190.122.96.187:8888/http/010 -#EXTINF:-1 tvg-id="CubaVisionInternacional.cu" tvg-country="CU;HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cvi.jpg" group-title="",CubaVision Internacional [Offline] -http://177.52.221.214:8000/play/a0dy/index.m3u8 -#EXTINF:-1 tvg-id="TeleRebelde.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/tr.jpg" group-title="",Tele Rebelde [Timeout] -http://177.52.221.214:8000/play/a0dd/index.m3u8 diff --git a/channels/cw.m3u b/channels/cw.m3u deleted file mode 100644 index b12c6b728..000000000 --- a/channels/cw.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BonceTV.cw" tvg-country="CW" tvg-language="Dutch" tvg-logo="" group-title="",Bonce TV (480p) [Not 24/7] -https://seswa.bonce.tv/hls/bonceswa.m3u8 -#EXTINF:-1 tvg-id="NosPais.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/jmYvx2s.jpg" group-title="",Nos Pais (720p) [Not 24/7] -http://558bd16067b67.streamlock.net/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NosPais.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/jmYvx2s.jpg" group-title="",Nos Païs (720p) [Not 24/7] -http://highvolume04.streampartner.nl:1935/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCuracao.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/9D9G4co.png" group-title="",TeleCuraçao (720p) -http://ott.streann.com:8080/loadbalancer/services/public/channels/5ed71e232cdc24a3d08cd6de/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDirect13.cw" tvg-country="CW" tvg-language="Dutch" tvg-logo="" group-title="",TV Direct 13 (360p) [Not 24/7] -https://edge1.tvdirect13.com/live/smil:mystream.smil/playlist.m3u8 diff --git a/channels/cy.m3u b/channels/cy.m3u deleted file mode 100644 index f8a2bb42c..000000000 --- a/channels/cy.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdaTV.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/d8op3Wh.jpg" group-title="",Ada TV (1080p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/kibrisadatv/playlist.m3u8 -#EXTINF:-1 tvg-id="AdaTV.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/d8op3Wh.jpg" group-title="",Ada TV (720p) [Offline] -http://kuzeykibris.tv/m3u8/tv_ada.m3u8 -#EXTINF:-1 tvg-id="AlfaSport.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Vq4YBIA.png" group-title="Sports",Alfa Sport (1080p) [Not 24/7] -https://dev.aftermind.xyz/edge-hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="AlfaSport.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Vq4YBIA.png" group-title="Sports",Alfa Sport (1080p) [Not 24/7] -https://dev.aftermind.xyz/hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="ASTTV1.cy" tvg-country="CY" tvg-language="English" tvg-logo="https://i.imgur.com/KmokZz8.jpg" group-title="XXX",AST TV 1 (PC) (1080p) [Not 24/7] -https://www.ast.tv/stream/1/master.m3u8 -#EXTINF:-1 tvg-id="ASTTV2.cy" tvg-country="CY" tvg-language="English" tvg-logo="https://i.imgur.com/KmokZz8.jpg" group-title="XXX",AST TV 2 (PC) (1080p) [Not 24/7] -https://www.ast.tv/stream/2/master.m3u8 -#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_brt1.m3u8 -#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (576p) [Not 24/7] -http://wms.brtk.net:1935/live/BRTHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (576p) [Not 24/7] -rtmp://wms.brtk.net:1935/live/BRTHD -#EXTINF:-1 tvg-id="BRT2HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/HjuOfNf.png" group-title="",BRT 2 HD (406p) [Not 24/7] -http://wms.brtk.net:1935/live/brt1/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT3.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/P3ibIye.png" group-title="",BRT 3 (406p) [Not 24/7] -http://wms.brtk.net:1935/live/brt2/playlist.m3u8 -#EXTINF:-1 tvg-id="CityChannel.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Jo6jIP1.jpg" group-title="",City Channel (720p) -https://dev.aftermind.xyz/edge-hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="CityChannel.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Jo6jIP1.jpg" group-title="",City Channel (720p) -https://dev.aftermind.xyz/hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="DigitalTV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Digital TV (720p) -https://l8.cloudskep.com/digital/dtv/playlist.m3u8 -#EXTINF:-1 tvg-id="KuzeyKibrisTV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Kuzey Kibris TV (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_kktv.m3u8 -#EXTINF:-1 tvg-id="Reload.cy" tvg-country="CY" tvg-language="English;Greek" tvg-logo="" group-title="Music",Reload (542p) -http://web.onair-radio.eu:1935/video/video/playlist.m3u8 -#EXTINF:-1 tvg-id="RIK1CYBC1.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/daphne-lopezcybc-com-cy/2018/02/RIK1-4.png" group-title="",RIK 1 (CYBC 1) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rik1/playlist.m3u8 -#EXTINF:-1 tvg-id="RIK2CYBC2.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/daphne-lopezcybc-com-cy/2018/03/RIK2.png" group-title="",RIK 2 (CYBC 2) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rik2/playlist.m3u8 -#EXTINF:-1 tvg-id="RIKHDCYBCHD.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/admin/2018/10/rik-hd-bubble-border.png" group-title="",RIK HD (CYBC HD) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rikhd/playlist.m3u8 -#EXTINF:-1 tvg-id="RIKSat.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/YAn5BJZ.png" group-title="",RΙΚ Sat (CYBC S) (720p) [Not 24/7] -https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="SAT7ARABIC.cy" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/xvJw3qt.png" group-title="Religious",SAT-7 ARABIC (720p) -https://svs.itworkscdn.net/sat7arabiclive/sat7arabic.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="SAT7KIDS.cy" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="" group-title="Kids",SAT-7 KIDS (1080p) -https://svs.itworkscdn.net/sat7kidslive/sat7kids.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="SAT7PARS.cy" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/wrOg8vL.png" group-title="Religious",SAT-7 PARS (720p) -https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="SAT7TURK.cy" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/zia9ehv.jpg" group-title="Religious",SAT-7 TÜRK (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Sigma.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Sigma (576p) [Not 24/7] -https://sl2.sigmatv.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="TV2020.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",TV 2020 (720p) [Offline] -http://kuzeykibris.tv/m3u8/tv_dialog.m3u8 -#EXTINF:-1 tvg-id="VOULITV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/rIt5pfv.png" group-title="",Vouli TV (1080p) -https://dev.aftermind.xyz/edge-hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="VOULITV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/rIt5pfv.png" group-title="",Vouli TV (1080p) -https://dev.aftermind.xyz/hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu diff --git a/channels/cz.m3u b/channels/cz.m3u deleted file mode 100644 index 241f81a21..000000000 --- a/channels/cz.m3u +++ /dev/null @@ -1,54 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ElektrikaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",Elektrika TV (360p) -http://rtmp.elektrika.cz/live/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ExtasyHD.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="XXX",Extasy HD / Leo TV HD (576p) -http://213.151.233.20:8000/dna-6233-tv-pc.m3u8 -#EXTINF:-1 tvg-id="Nova.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/2f/TV_Nova_logo_2017.png" group-title="",Nova (640p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="Nova2.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/Nova2.cz.png" group-title="",Nova 2 (640p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_2_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaAction.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d2/Nova-action-logo-2017.png" group-title="",Nova Action (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_action_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaCinema.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/NovaCinema.cz.png" group-title="",Nova Cinema (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_cinema_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/NovaGold.cz.png" group-title="",Nova Gold (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_gold_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="Ocko.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.imgur.com/jKPRYdM.png" group-title="Music",Óčko (540p) -https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko.stream.1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Ocko.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.imgur.com/jKPRYdM.png" group-title="Music",Óčko (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoExpres.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ocko-expres.png" group-title="Music",Óčko Expres (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko_expres/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/nrWNyLc.jpg" group-title="Music",Óčko Gold (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko_gold/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/nrWNyLc.jpg" group-title="Music",Óčko Gold (540p) [Geo-blocked] -https://ocko-live.ssl.cdn.cra.cz/cra_live2/ocko_gold.stream.1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PolarTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://polar.cz/images/layout/header/logo.png" group-title="",Polar TV (1080p) -https://stream.polar.cz/polar/polarlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="PrahaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://prahatv.eu/images/layout/header/logo.png" group-title="",Praha TV (1080p) -https://stream.polar.cz/prahatv/prahatvlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTelevision.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="Music",Retro Music Television (360p) -http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.postimg.cc/C53XtK5f/zaltv.png" group-title="Music",Retro Music TV (360p) -http://89.185.253.55/retrotv/retrotvHQ1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.postimg.cc/C53XtK5f/zaltv.png" group-title="Music",RetroMusicTV (360p) -http://stream.mediawork.cz/retrotv/smil:retrotv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTMplus.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.smidlib.cz/obrazky/clanky/liberecky-eter/co-se-deje-v-eteru-libereckeho-kraje/logo-tv-rtm+.jpg" group-title="",RTM plus (720p) -http://www.rtmplus.cz/live/1-playlist.m3u8 -#EXTINF:-1 tvg-id="Slagr2.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://www.starnet.cz/tv/slagr2.png" group-title="",Šlágr 2 (576p) -http://92.62.234.233/slagr2.m3u -#EXTINF:-1 tvg-id="SlagrTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.slagrtv.cz/files/logo-slagr.png" group-title="Music",Slagr TV (540p) [Not 24/7] -http://slagrtv-live-hls.ssl.cdn.cra.cz/channels/slagrtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SlagrTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://www.slagrtv.cz/files/logo-slagr.png" group-title="Music",Šlágr TV (576p) -https://stream-6.mazana.tv/slagr.m3u -#EXTINF:-1 tvg-id="TVNatura.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",TV Natura (360p) [Not 24/7] -https://media1.tvnatura.cz/live_out/1/live.m3u8 -#EXTINF:-1 tvg-id="TVNOE.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/Dg9edVr.jpg" group-title="",TV NOE (720p) [Offline] -https://w101.quickmedia.tv/prozeta-live04/prozeta-live04.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="VychodoceskaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.iinfo.cz/images/409/v1-vychodoceska-televize-1.jpg" group-title="",Východočeská TV (576p) -https://stream.polar.cz/vctv/vctvlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="NastoyashcheeVremya.cz" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Настоящее Время (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s61/index.m3u8 -#EXTINF:-1 tvg-id="NastoyashcheeVremya.cz" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Настоящее Время (720p) [Not 24/7] -http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8 diff --git a/channels/de.m3u b/channels/de.m3u deleted file mode 100644 index 47d52741a..000000000 --- a/channels/de.m3u +++ /dev/null @@ -1,474 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="123TV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24444-2.png" group-title="",1-2-3 TV (288p) -http://123tv-mx1.flex-cdn.net/index.m3u8 -#EXTINF:-1 tvg-id="3sat.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/3sat.png" group-title="",3sat [Geo-blocked] -https://zdf-hls-18.akamaized.net/hls/live/2016501/dach/high/master.m3u8 -#EXTINF:-1 tvg-id="atv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/tupATym.png" group-title="",a.tv (1080p) [Not 24/7] -https://augsburgtv.iptv-playoutcenter.de/augsburgtv/augsburgtv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="ADRIAMusic.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/pPAj9Ua.png" group-title="Music",ADRIA Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-1/master.m3u8 -#EXTINF:-1 tvg-id="AlexBerlin.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/eTmHk4e.png" group-title="",Alex Berlin (1080p) [Not 24/7] -https://alex-stream.rosebud-media.de/live/alexlivetv40.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AnixeHDSerie.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Anixe_HD.svg/641px-Anixe_HD.svg.png" group-title="",Anixe HD Serie (360p) -https://ma.anixa.tv/clips/stream/anixehd/index.m3u8 -#EXTINF:-1 tvg-id="AntenneVorarlberg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/TpBbZwq.png" group-title="",Antenne Vorarlberg (720p) [Not 24/7] -http://5857db5306b83.streamlock.net/antennevorarlberg-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="ARDEvent1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/daserste.png" group-title="",ARD Event 1 (540p) [Offline] -http://wdrardevent1-lh.akamaihd.net/i/ardevent1_weltweit@566648/master.m3u8 -#EXTINF:-1 tvg-id="ARDalpha.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/e96fafec01ec632f9b38/black/84x48.png" group-title="",ARD-alpha (720p) -http://livestreams.br.de/i/bralpha_germany@119899/master.m3u8 -#EXTINF:-1 tvg-id="ARDalpha.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/e96fafec01ec632f9b38/black/84x48.png" group-title="",ARD-alpha (720p) [Not 24/7] -https://brlive-lh.akamaihd.net/i/bralpha_germany@119899/master.m3u8 -#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (1080p) [Not 24/7] -http://176.10.117.18:8000/play/a002/index.m3u8 -#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/139 -#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/139.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] -http://badentv-stream2.siebnich.info/rtplive/btv.stream/live.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] -http://badentv-stream2.siebnich.info/rtplive/btv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] -https://cdn.icu.de/rtplive/btv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/0OoMMbd.png" group-title="",Bibel TV (720p) -https://bibint01.iptv-playoutcenter.de/bibint01/bibint01.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTVImpuls.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/bibeltv.png" group-title="",Bibel TV Impuls (720p) -https://bibeltv02.iptv-playoutcenter.de/bibeltv02/bibeltv02.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTVMusik.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/bibeltv.png" group-title="",Bibel TV Musik (720p) -http://bibeltv03.iptv-playoutcenter.de/bibeltv03/bibeltv03.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKRegionalTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/blkregionaltv.png" group-title="",BLK Regional TV (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://pbs.twimg.com/profile_images/706774153001639938/VCkr2ys5_400x400.jpg" group-title="",BLK TV (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/D5wePo5.jpg" group-title="",BLK TV Hohenmölsen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8?ref=medienportal-sachsen- -#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/D5wePo5.jpg" group-title="",BLK TV Hohenmölsen (1080p) [Not 24/7] -http://62.113.210.250/medienasa-live/BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Nord (720p) [Geo-blocked] -http://livestreams.br.de/i/bfsnord_germany@119898/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/brhd.png" group-title="",BR Fernsehen Nord (720p) [Geo-blocked] -https://brlive-lh.akamaihd.net/i/bfsnord_germany@119898/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) -https://brcdn.vo.llnwd.net/br/fs/bfs_sued/hls/de/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] -http://livestreams.br.de/i/bfssued_germany@119890/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] -https://br_hdslive-f.akamaihd.net/i/bfssued_germany@119890/index_3776_av-p.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] -https://brlive-lh.akamaihd.net/i/bfssued_germany@119890/master.m3u8 -#EXTINF:-1 tvg-id="CampusTVMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://yt3.ggpht.com/-p6SxYHWfzPA/AAAAAAAAAAI/AAAAAAAAAAA/v8ceLuwU1Qg/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Campus TV Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8 -#EXTINF:-1 tvg-id="CampusTVMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://yt3.ggpht.com/-p6SxYHWfzPA/AAAAAAAAAAI/AAAAAAAAAAA/v8ceLuwU1Qg/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Campus TV Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8?bitrate=800 -#EXTINF:-1 tvg-id="CampusTVMagdeburgPlus.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Campus-TV-Magdeburg+ (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/chunklist_w937425968.m3u8 -#EXTINF:-1 tvg-id="ChemnitzFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Chemnitz Fernsehen (1080p) -https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",CIRA TV (720p) [Not 24/7] -http://176.10.117.18:8000/play/a00f/index.m3u8 -#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",ÇİRA TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/25 -#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",ÇİRA TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/25.m3u8 -#EXTINF:-1 tvg-id="CroTVHD.de" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",CroTV HD (1080p) -http://92.204.40.139:8081/crotv/televizijahrvatskedijaspore/playlist.m3u8 -#EXTINF:-1 tvg-id="DaVinci.de" tvg-country="CIS" tvg-language="Russian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/da_vinci_learning.png" group-title="Kids",Da Vinci [Timeout] -http://sc.id-tv.kz/DaVinci_38_39.m3u8 -#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/7wABSuo.png" group-title="",Das Erste (720p) -https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/2a2a4aee64bbd6f7f817/black/84x48.png" group-title="",Das Erste (720p) -https://mcdn.daserste.de/daserste/de/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/7wABSuo.png" group-title="",Das Erste (720p) [Geo-blocked] -https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/2a2a4aee64bbd6f7f817/black/84x48.png" group-title="",Das Erste (720p) [Geo-blocked] -https://mcdn.daserste.de/daserste/de/master.m3u8 -#EXTINF:-1 tvg-id="DASDING908.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/rR44kv4.png" group-title="",DASDING 90.8 (720p) [Offline] -https://swrdasdingvrhls-i.akamaihd.net/hls/live/780817/vrdasding/master.m3u8 -#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/wUjgEUs.jpg" group-title="",Deutsches Musik Fernsehen (720p) [Not 24/7] -https://tv.artcom-venture.de/dmf/tv.m3u8 -#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/wUjgEUs.jpg" group-title="",Deutsches Musik Fernsehen (540p) [Not 24/7] -http://tv.artcom-venture.de:1322/dmf/tv.m3u8 -#EXTINF:-1 tvg-id="DresdenFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Dresden Fernsehen (1080p) [Not 24/7] -https://dresden.iptv-playoutcenter.de/dresden/dresdenfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="DW.de" tvg-country="DE;AT;BE;LI;LU;CH" tvg-language="German" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",DW (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s26/index.m3u8 -#EXTINF:-1 tvg-id="DWArabic.de" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/A1xzjOI.png" group-title="News",DW Arabic (1080p) -https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/index.m3u8 -#EXTINF:-1 tvg-id="DWDeutsch.de" tvg-country="DE" tvg-language="German" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/17/dstv_Deutshe_Welle_4-3_lightbackground_001_xlrg.png" group-title="News",DW Deutsch (1080p) [Geo-blocked] -https://dwamdstream106.akamaized.net/hls/live/2017965/dwstream106/index.m3u8 -#EXTINF:-1 tvg-id="DWDeutschPlus.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/deutschewelle.png" group-title="News",DW Deutsch+ (1080p) [Geo-blocked] -https://dwamdstream105.akamaized.net/hls/live/2015531/dwstream105/index.m3u8 -#EXTINF:-1 tvg-id="DWEnglish.de" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/xnv0Pgm.jpg" group-title="News",DW English (1080p) -https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/index.m3u8 -#EXTINF:-1 tvg-id="DWEnglish.de" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/xnv0Pgm.jpg" group-title="News",DW English (720p) [Offline] -https://m-c010-j2apps.s.llnwi.net/hls_hd/8024.DWEnglishHD.in.m3u8 -#EXTINF:-1 tvg-id="DWEspanol.de" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/A1xzjOI.png" group-title="News",DW Español (1080p) -https://dwamdstream104.akamaized.net/hls/live/2015530/dwstream104/index.m3u8 -#EXTINF:-1 tvg-id="EarthTV.de" tvg-country="DE" tvg-language="English" tvg-logo="" group-title="",Earth TV (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/germany/earth-tv -#EXTINF:-1 tvg-id="Elbekanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/IKslrJu.png" group-title="",Elbekanal (576p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="Elbekanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/IKslrJu.png" group-title="",Elbekanal (576p) -http://62.113.210.250/medienasa-live/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="ElbekanalSchonebeck.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/MjZ0w7G.png" group-title="",Elbekanal Schönebeck (576p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="emsTVLingen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/dKCLYAj.png" group-title="",ems TV Lingen (280p) -https://5889e7d0d6e28.streamlock.net/ev1tv-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="eoTV.de" tvg-country="DE;AT;CH" tvg-language="German" tvg-logo="https://i.imgur.com/oitJsZU.png" group-title="",eo TV (1080p) [Geo-blocked] -https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd5/playlist.m3u8 -#EXTINF:-1 tvg-id="ERF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/MAnSA7W.jpg" group-title="",ERF 1 [Offline] -http://14000-l.z.core.cdn.streamfarm.net/007erfiphonelive/smil:stream_live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ErzTVStollberg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/VenSjan.png" group-title="",Erz-TV Stollberg (576p) -https://5acade5fc0c29.streamlock.net/kabeljournal/live2020.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroAlTV.de" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLaEmIT.png" group-title="",EuroAl TV (720p) [Timeout] -http://5.135.92.131:1935/live/euroAl/playlist.m3u8 -#EXTINF:-1 tvg-id="Filstalwelle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/19iKLvf.png" group-title="",Filstalwelle (576p) -http://62.113.210.2/filstalwelle-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="FinestTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Finest TV (288p) [Not 24/7] -http://media.finest.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="FOLXMusic.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/R9f5Fmx.png" group-title="Music",FOLX Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-4/master.m3u8 -#EXTINF:-1 tvg-id="FOLXSlovenija.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/R9f5Fmx.png" group-title="Music",FOLX Slovenija (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-5/master.m3u8 -#EXTINF:-1 tvg-id="FrankenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/frankenfernsehen.png" group-title="",Franken Fernsehen (1080p) -https://s3.welocal.world/frankenfernsehen/media/191627/videos/hls.m3u8 -#EXTINF:-1 tvg-id="FrankenFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/frankenfernsehen.png" group-title="",Franken Fernsehen (Nürnberg) (1080p) [Not 24/7] -https://frankentv.iptv-playoutcenter.de/frankentv/frankentv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="FriesischerRundfunkFriedeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jynL4Xl.png" group-title="",Friesischer Rundfunk Friedeburg (350p) [Not 24/7] -https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/mp4:friesischerrundfunk/playlist.m3u8 -#EXTINF:-1 tvg-id="Hamburg1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9TRhahY.png" group-title="",Hamburg 1 (270p) [Not 24/7] -https://live2.telvi.de/hls/hamburg1.m3u8 -#EXTINF:-1 tvg-id="Handystar.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Handystar (404p) [Offline] -http://mediaspar-live.hls.adaptive.level3.net/ses/mediaspar/stream1/streamPlaylist.m3u8 -#EXTINF:-1 tvg-id="HauptstadtTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ZXskBkv.png" group-title="",Hauptstadt.TV (Potsdam) (720p) [Not 24/7] -https://live2.telvi.de/hls/hauptstadttv_hd720.m3u8 -#EXTINF:-1 tvg-id="HealthTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Health TV (720p) -http://62.67.13.53:1935/HealthTV/ghtv_live_master.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HR.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/hr.png" group-title="",hr-fernsehen (1080p) [Timeout] -https://hrhls.akamaized.net/hls/live/2024525/hrhls/index.m3u8 -#EXTINF:-1 tvg-id="HSE.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24483-2.png" group-title="",HSE (1080p) -https://hse24.akamaized.net/hls/live/2006663/hse24/playlist.m3u8 -#EXTINF:-1 tvg-id="HSE24Extra.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",HSE24 Extra (1080p) -https://hse24extra.akamaized.net/hls/live/2006596/hse24extra/playlist.m3u8 -#EXTINF:-1 tvg-id="HSE24Trend.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",HSE24 Trend (576p) -https://hse24trend.akamaized.net/hls/live/2006597/hse24trend/playlist.m3u8 -#EXTINF:-1 tvg-id="IsarTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Isar TV (1080p) [Not 24/7] -https://isar-tv.iptv-playoutcenter.de/isar-tv/isar-tv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="JenaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/o3D4bQI.png" group-title="",JenaTV (1080p) [Timeout] -https://stream7.sehradar.de/jenatv/ngrp:livestream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KTVFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",K-TV (Fernsehen) (720p) -https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 -#EXTINF:-1 tvg-id="KiKA.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",KiKA [Geo-blocked] -https://kikageohls.akamaized.net/hls/live/2022693/livetvkika_de/master.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) -http://62.113.210.250/medienasa-live/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KWTVWildau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/882I3h8.png" group-title="",KW TV Wildau (720p) [Not 24/7] -https://58af0c57eaf3e.streamlock.net/easycast11-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Lausitzwelle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/GNMaGZE.png" group-title="",Lausitzwelle (Fernsehen) (1080p) -https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd10/playlist.m3u8 -#EXTINF:-1 tvg-id="LeipzigFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Leipzig Fernsehen (1080p) -https://leipzig.iptv-playoutcenter.de/leipzig/leipzigfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="LightChannel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (576p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/lctvde/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SEeqryT.png" group-title="",MDF.1 (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SEeqryT.png" group-title="",MDF.1 (1080p) -http://62.113.210.250/medienasa-live/mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://medienportal-sachsen-anhalt.de/uploads/hg/mdf1.png" group-title="",MDF.1 (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MunchenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/67z7iRh.jpg" group-title="",München TV (1080p) [Not 24/7] -https://muenchentv.iptv-playoutcenter.de/muenchentv/muenchentv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Muxxtv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/QUOxNbF.png" group-title="",Muxx.tv (1080p) [Not 24/7] -https://5856e1a25f71a.streamlock.net/easycast7-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTVplus.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.mytvplus.de/arbeitsdaten/png/LOGO%20MyTVplus%2002.png" group-title="",MyTVplus (Dresden) (576p) -https://mytvplus.iptv-playoutcenter.de/mytvplus/mytvplus.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="ntvEvent.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9FPXcFY.jpg" group-title="",n-tv Event (540p) -https://ntvlivehls-lh.akamaihd.net/i/ntvlivehls_event1_1@409295/master.m3u8 -#EXTINF:-1 tvg-id="naheTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XINB3Zf.png" group-title="",naheTV (720p) -https://s.ok54.de/nahetv/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="NDREvent1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 1 (720p) -https://ndrevent-lh.akamaihd.net/i/ndrevent_1@409066/master.m3u8 -#EXTINF:-1 tvg-id="NDREvent2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 2 (720p) -https://ndrevent-lh.akamaihd.net/i/ndrevent_2@429805/master.m3u8 -#EXTINF:-1 tvg-id="NDREvent3.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 3 (720p) [Geo-blocked] -https://ndrevent-lh.akamaihd.net/i/ndrevent_3@409068/master.m3u8 -#EXTINF:-1 tvg-id="NDRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild110_v-contentxl.jpg" group-title="",NDR Fernsehen (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_fs@430230/master.m3u8 -#EXTINF:-1 tvg-id="NDRHamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild100_v-contentxl.jpg" group-title="",NDR Hamburg (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_hh@430231/master.m3u8 -#EXTINF:-1 tvg-id="NDRHamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild100_v-contentxl.jpg" group-title="",NDR Hamburg (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_hh/master.m3u8 -#EXTINF:-1 tvg-id="NDRInternational.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild108_v-contentxl.jpg" group-title="",NDR International (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_int@430236/master.m3u8 -#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild102_v-contentxl.jpg" group-title="",NDR Mecklenburg-Vorpommern (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_mv@430232/master.m3u8 -#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild102_v-contentxl.jpg" group-title="",NDR Mecklenburg-Vorpommern (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_mv/master.m3u8 -#EXTINF:-1 tvg-id="NDRNiedersachsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild104_v-contentxl.jpg" group-title="",NDR Niedersachsen (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_nds@430233/master.m3u8 -#EXTINF:-1 tvg-id="NDRNiedersachsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild104_v-contentxl.jpg" group-title="",NDR Niedersachsen (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_nds/master.m3u8 -#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild106_v-contentxl.jpg" group-title="",NDR Schleswig-Holstein (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_sh@430234/master.m3u8 -#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild106_v-contentxl.jpg" group-title="",NDR Schleswig-Holstein (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_sh/master.m3u8 -#EXTINF:-1 tvg-id="NDRWeltweiter.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild108_v-contentxl.jpg" group-title="",NDR Weltweiter (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_ww@430235/master.m3u8 -#EXTINF:-1 tvg-id="NiederbayernTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Niederbayern TV (1080p) [Not 24/7] -https://stream03.stream.welocal.world/stream/nla/ngrp:nla.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NiederbayernTVPassau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/niederbayerntv.png" group-title="",Niederbayern TV Passau (1080p) [Offline] -https://stream03.stream.welocal.world/stream/npa/ngrp:npa.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Noa4Hamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Noa 4 Hamburg (1080p) -https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8 -#EXTINF:-1 tvg-id="Noa4Norderstedt.de" tvg-country="DE" tvg-language="German" tvg-logo="http://s3.vefire.ru/l/en/NOA4.gif" group-title="",Noa 4 Norderstedt (1080p) -https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8 -#EXTINF:-1 tvg-id="NRT2.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",NRT 2 (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/54.m3u8 -#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="NRWISION.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",NRWISION (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_source/playlist.m3u8 -#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OberlausitzTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Oberlausitz TV (1080p) [Not 24/7] -http://5856e1a25f71a.streamlock.net:1935/easycast8-live/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="OberpfalzTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Oberpfalz TV (1080p) -https://oberpfalztv.iptv-playoutcenter.de/oberpfalztv/oberpfalztv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="oeins.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/NHvYg7e.png" group-title="",oeins (Oldenburg) (1080p) [Not 24/7] -https://www.oeins.de/live/studio.m3u8 -#EXTINF:-1 tvg-id="OFTVOffenbach.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BmJaDT3.jpg" group-title="",OF-TV Offenbach (720p) -https://5864df9ceac85.streamlock.net/germanpictures-live/mp4:streamschedule/playlist.m3u8 -#EXTINF:-1 tvg-id="OKDessau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okdessau.png" group-title="",OK Dessau (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKDessau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okdessau.png" group-title="",OK Dessau (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKFlensburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YNYsGYY.png" group-title="",OK Flensburg (576p) [Offline] -https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/flensburgtv/index.m3u8 -#EXTINF:-1 tvg-id="OKGiessen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Gießen (360p) [Not 24/7] -https://s.ok54.de/mok-gi/mok-gi/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKaiserslautern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SzGXrjb.png" group-title="",OK Kaiserslautern (720p) [Not 24/7] -https://s.ok54.de/abr_okkl/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKassel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Kassel (720p) [Not 24/7] -https://s.ok54.de/mok-ks/kassel/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKiel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/A8rLufC.png" group-title="",OK Kiel (576p) [Offline] -https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/kieltv/index.m3u8 -#EXTINF:-1 tvg-id="OKLudwigshafen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okludwigshafen.png" group-title="",OK Ludwigshafen (720p) [Not 24/7] -https://s.ok54.de/oklu/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmerseburg.png" group-title="",OK Merseburg-Querfurt (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmerseburg.png" group-title="",OK Merseburg-Querfurt (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKRheinMain.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Rhein-Main (576p) [Not 24/7] -https://s.ok54.de/mok-rm/mok-rm/playlist.m3u8 -#EXTINF:-1 tvg-id="OKRheinLokalWorms.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okrheinlokal.png" group-title="",OK RheinLokal (Worms) (720p) [Not 24/7] -https://s.ok54.de/rheinlokal/rheinlOKal_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] -http://62.113.210.250/medienasa-live/ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) -http://62.113.210.250/medienasa-live/ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSuedwestpfalz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksuedwestpfalz.png" group-title="",OK Suedwestpfalz (720p) [Not 24/7] -https://s.ok54.de/okswp/test/playlist.m3u8 -#EXTINF:-1 tvg-id="OKTrier.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oktrier.png" group-title="",OK Trier (720p) -https://s.ok54.de/ott/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWeinstrasseNeustadt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okweinstrasse.png" group-title="",OK Weinstraße (Neustadt) (432p) -https://s.ok54.de/okweinstrasse/okweinstrasse/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWernigerode.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okwernigerode.png" group-title="",OK Wernigerode (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWernigerode.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okwernigerode.png" group-title="",OK Wernigerode (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="oldenburgeins.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oldenburgeins.png" group-title="",oldenburg eins (1080p) [Not 24/7] -https://oeins.de/live/studio.m3u8 -#EXTINF:-1 tvg-id="ONE1Music.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/fHbHbEH.png" group-title="Music",ONE1 Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-3/master.m3u8 -#EXTINF:-1 tvg-id="ONE1Slovenija.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/fHbHbEH.png" group-title="Music",ONE1 Slovenija (1080p) -https://serve-first.folxplay.tv/folx/ch-6/master.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 1 (1080p) -https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 1 (270p) [Not 24/7] -https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk1.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 2 (270p) -https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk2.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 2 (270p) [Not 24/7] -https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk2.m3u8 -#EXTINF:-1 tvg-id="PearlTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/pearltv.png" group-title="",Pearl TV [Offline] -http://enstyle-live.hls.adaptive.level3.net/ses/enstyle/stream1/streamPlaylist.m3u8 -#EXTINF:-1 tvg-id="Phoenix.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/phoenix.png" group-title="",Phoenix [Geo-blocked] -https://zdf-hls-19.akamaized.net/hls/live/2016502/de/high/master.m3u8 -#EXTINF:-1 tvg-id="PunkteinsOberlausitz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Zb87dQQ.png" group-title="",Punkteins (Oberlausitz) (1080p) [Not 24/7] -https://5852afe96c9bb.streamlock.net/easycast8-live/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="PunktUM.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",PunktUM (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="PUNKTum.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/punktum.png" group-title="",PUNKTum (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="PUNKTumFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.punktum-fernsehen.de/share/android-icon-192x192.png" group-title="",PUNKTum Fernsehen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u -#EXTINF:-1 tvg-id="PunktumSdharz.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Punktum S�dharz (1080p) -http://62.113.210.250/medienasa-live/punktum_high/master.m3u8 -#EXTINF:-1 tvg-id="Radio21TV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ubEUBmB.png" group-title="Music",Radio 21 TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/22300508/events/6675945/live.m3u8 -#EXTINF:-1 tvg-id="RadioWeserTVBremen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9pvCYaA.png" group-title="Music",Radio Weser TV Bremen (576p) -https://5857499ee635b.streamlock.net/radiowesertv-live/mp4:livestreamTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Ran1.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Ran 1 (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ran1.png" group-title="",RAN1 (1080p) -http://62.113.210.250/medienasa-live/mp4:ran1_high/master.m3u8 -#EXTINF:-1 tvg-id="RAN1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ran1.png" group-title="",RAN1 (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.ran1.de/img/ban1.png" group-title="",RAN1 Regionalfernsehen (1080p) -http://62.113.210.250:1935/medienasa-live/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/NUP8ZBb.png" group-title="",RAN1 Regionalfernsehen (1080p) -http://62.113.210.250:1935/medienasa-live/ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) -http://62.113.210.250/medienasa-live/rbw_high/master.m3u8 -#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVBodensee.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/olVCZTJ.png" group-title="",Regio TV Bodensee (1080p) -https://regiotv-b.iptv-playoutcenter.de/regiotv-b/regiotv-b.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVSchwaben.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/OFGHhRE.png" group-title="",Regio TV Schwaben (1080p) [Offline] -https://stream05.stream.welocal.world/stream/rsc/ngrp:rsc.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVStuttgart.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/OFGHhRE.png" group-title="",Regio TV Stuttgart (1080p) -https://regiotv-s.iptv-playoutcenter.de/regiotv-s/regiotv-s.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RFH.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rfh.png" group-title="",RFH (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RFHHarz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/de/thumb/e/ea/RFH-Logo.svg/200px-RFH-Logo.svg.png" group-title="",RFH Harz (1080p) -http://62.113.210.250/medienasa-live/RFH_high/master.m3u8 -#EXTINF:-1 tvg-id="RFHHarz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/de/thumb/e/ea/RFH-Logo.svg/200px-RFH-Logo.svg.png" group-title="",RFH Harz (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8?ref=medienportal-sachsen-anhalt.de&seid=528347 -#EXTINF:-1 tvg-id="RFHTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RFH TV (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RFORosenheim.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rfo.png" group-title="",RFO Rosenheim (1080p) -https://stream01.stream.welocal.world/stream/fhd-rfo_66876/ngrp:stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/G7W4K3K.png" group-title="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/chunklist.m3u8 -#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YBkBDSz.png" group-title="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rheinmaintv.png" group-title="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8?=&ref=www.rheinmaintv.de&seid=598541 -#EXTINF:-1 tvg-id="RNF.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YkB39hx.png" group-title="",RNF (1080p) -https://rnf.iptv-playoutcenter.de/rnf/rnf.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RockAntenne.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/eZKNvkT.png" group-title="",Rock Antenne [Not 24/7] -https://stream.rockantenne.de/rockantenne/stream/mp3 -#EXTINF:-1 tvg-id="RocklandTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/vIMkVo6.png" group-title="",Rockland TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 -#EXTINF:-1 tvg-id="RocklandTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/vIMkVo6.png" group-title="",Rockland TV (720p) [Not 24/7] -http://player-api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 -#EXTINF:-1 tvg-id="RONTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ZqHWb40.png" group-title="",RON TV (1080p) [Offline] -https://ron-i.akamaihd.net/hls/live/523496/ron/master.m3u8 -#EXTINF:-1 tvg-id="RTL.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL [Offline] -https://cdn1.mobiletv.bg/T5/rtl/rtl_794613_850k.m3u8 -#EXTINF:-1 tvg-id="RTLWest.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/i7245OO.png" group-title="",RTL West (540p) [Offline] -https://rtl_west-i.akamaihd.net/hls/live/656246/rtlwest/master.m3u8 -#EXTINF:-1 tvg-id="RWEErfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/AMzEPGl.jpg" group-title="",RWE Erfurt (1080p) -https://stream.keyweb.org:8085/hls/rwetv.m3u8 -#EXTINF:-1 tvg-id="SA14dtirolTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Südtirol TV (720p) -https://5ce9406b73c33.streamlock.net/SudTirolTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SaarlandFernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Nvw7SaN.png" group-title="",Saarland Fernsehen 1 (1080p) -https://saarland1.iptv-playoutcenter.de/saarland1/saarland1.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="SaarlandFernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Nvw7SaN.png" group-title="",Saarland Fernsehen 2 (720p) [Not 24/7] -https://saarland2.iptv-playoutcenter.de/saarland2/saarland2.stream_2/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraShortFilm.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/0Pq7fdJ.jpg" group-title="",Santhora Short Film (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/kn1DHZq.gif" group-title="",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="Seenluft24.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/3TgBg9v.jpg" group-title="",Seenluft24 (1080p) -https://5856e1a25f71a.streamlock.net/easycast7-live/mp4:livestreamhd20/playlist.m3u8 -#EXTINF:-1 tvg-id="SonnenklarTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/piwT1HQ.jpg" group-title="",Sonnenklar.TV (1080p) [Offline] -http://euvia-live.hls.adaptive.level3.net/ses/euvia/index.m3u8 -#EXTINF:-1 tvg-id="SonusFMAlemania.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Sonus FM Alemania (1080p) [Not 24/7] -http://www.sonus.fm:1935/public/stream_source/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jyMedaF.png" group-title="Religious",Sophia TV (720p) -https://www.onairport.live/sophiatv-it-live/livestream_low/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jyMedaF.png" group-title="Religious",Sophia TV (720p) -https://www.onairport.live/sophiatv/smil:sophia-tv-en.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/c50695d215e17cb3f886/black/84x48.png" group-title="",SR Fernsehen (720p) -http://fs.live.sr.de/i/sr_universal02@107595/master.m3u8 -#EXTINF:-1 tvg-id="SRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/c50695d215e17cb3f886/black/84x48.png" group-title="",SR Fernsehen (720p) -https://srlive24-lh.akamaihd.net/i/sr_universal02@107595/master.m3u8 -#EXTINF:-1 tvg-id="Studio47.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/xCiU1TB.png" group-title="",Studio 47 (480p) [Not 24/7] -https://5852afe96c9bb.streamlock.net/studio47-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SWR3VisualRadio.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/PxSgxRO.jpg" group-title="",SWR 3 Visual Radio (720p) [Offline] -https://swrswr3vrhls-i.akamaihd.net/hls/live/780818/vrswr3/master.m3u8 -#EXTINF:-1 tvg-id="Sylt1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/sylt1.png" group-title="",Sylt1 (404p) -https://5aec29c5dd23b.streamlock.net:8443/sylt1/sylt1_high1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Tagesschau24.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/tagesschau24.png" group-title="",Tagesschau24 (720p) -https://tagesschau-lh.akamaihd.net/i/tagesschau_1@119231/master.m3u8 -#EXTINF:-1 tvg-id="TeinsTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/KJie1k5.png" group-title="",Teins TV (1080p) [Not 24/7] -http://live1.markenfunk.com/t1/live/chunklist.m3u8 -#EXTINF:-1 tvg-id="teltOwkanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/05UB2YT.png" group-title="",teltOwkanal (1080p) -https://5856e1a25f71a.streamlock.net/easycast8-live/mp4:livestreamhd8/playlist.m3u8 -#EXTINF:-1 tvg-id="TesasTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/xEGCX1f.png" group-title="",Tesas TV (720p) [Not 24/7] -https://jola.live:16200/tesastv.m3u8 -#EXTINF:-1 tvg-id="TideTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tidetv.png" group-title="",Tide TV (1080p) [Not 24/7] -https://5889e7d0d6e28.streamlock.net/tide-live/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="tiviTURK.de" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/9TDs8q8/IFE6LHH.jpg" group-title="",tiviTÜRK (720p) [Not 24/7] -https://stream.tiviturk.de/live/tiviturk.m3u8 -#EXTINF:-1 tvg-id="TVBayernLive.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/WyJLIzA.jpg" group-title="",TV Bayern Live (1080p) [Not 24/7] -https://s3.welocal.world/tvbayernlive/media/134371/videos/hls.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvhalle.png" group-title="",TV Halle (720p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/GUBVccx.png" group-title="",TV Halle (720p) -http://62.113.210.250/medienasa-live/tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvhalle.png" group-title="",TV Halle (720p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVIngolstadt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/lrLaILx.png" group-title="",TV Ingolstadt (1080p) [Offline] -https://stream01.stream.welocal.world/stream/tvi/ngrp:tvi.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMainfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmainfranken.png" group-title="",TV Mainfranken (1080p) [Not 24/7] -https://tvtouringw.iptv-playoutcenter.de/tvtouringw/tvtouringw.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMainfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmainfranken.png" group-title="",TV Mainfranken (1080p) [Offline] -https://stream01.stream.welocal.world/stream/tvm/ngrp:tvm.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMittelrhein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmittelrhein.png" group-title="",TV Mittelrhein (404p) [Offline] -https://sdn-global-live-http-cache.3qsdn.com/2979/amlst:5714-sbr/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOberfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo.png" group-title="",TV Oberfranken (1080p) [Offline] -https://stream02.stream.welocal.world/stream/tvo/ngrp:tvo.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TV38SudostNiedersachen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ob9JJPU.png" group-title="",TV38 Südost-Niedersachen (480p) [Not 24/7] -http://62.113.221.3/tv38-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVA.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",TVA (1080p) [Not 24/7] -https://tvaktuellr.iptv-playoutcenter.de/tvaktuellr/tvaktuellr.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAOstbayern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tva.png" group-title="",TVA Ostbayern (1080p) [Offline] -https://stream02.stream.welocal.world/stream/tva/ngrp:tva.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVO.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",TVO (1080p) [Not 24/7] -https://tvoberfranken.iptv-playoutcenter.de/tvoberfranken/tvoberfranken.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Unserding.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/7/78/UnserDing_logo_2013_203x143.png" group-title="",Unserding (544p) -https://srunserding-lh.akamaihd.net/i/visualradio_ud@197013/master.m3u8 -#EXTINF:-1 tvg-id="WDRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.yilmaztv.com/logo/wdr.png" group-title="",WDR Fernsehen (720p) [Offline] -https://wdr_fs-lh.akamaihd.net/i/wdrfs_weltweit@112033/master.m3u8 -#EXTINF:-1 tvg-id="WDRKoeln.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/da2f7b1155f1c2586f93/black/84x48.png" group-title="",WDR Koeln (720p) [Timeout] -https://wdrfsww247.akamaized.net/hls/live/2009628/wdr_msl4_fs247ww/master.m3u8 -#EXTINF:-1 tvg-id="Welt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/welt.png" group-title="News",WELT [Geo-blocked] -https://live2weltcms-lh.akamaihd.net/i/Live2WeltCMS_1@444563/master.m3u8 -#EXTINF:-1 tvg-id="WesterwaldTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/westerwaldtv.png" group-title="",Westerwald TV (404p) [Offline] -https://sdn-global-live-http-cache.3qsdn.com/2980/amlst:5715-sbr/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldofFreesports.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/pggeczF.jpg" group-title="Sports",World of Freesports (720p) -https://a.jsrdn.com/broadcast/ab14783a09/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ZDF.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/zdf-logo.png" group-title="",ZDF [Geo-blocked] -https://zdf-hls-15.akamaized.net/hls/live/2016498/de/high/master.m3u8 -#EXTINF:-1 tvg-id="ZDFinfo.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",ZDFinfo [Geo-blocked] -https://zdf-hls-17.akamaized.net/hls/live/2016500/de/high/master.m3u8 -#EXTINF:-1 tvg-id="ZDFneo.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",ZDFneo [Geo-blocked] -https://zdf-hls-16.akamaized.net/hls/live/2016499/de/high/master.m3u8 -#EXTINF:-1 tvg-id="ZWEI2Music.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/VVwHID9.png" group-title="Music",ZWEI2 Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-2/master.m3u8 diff --git a/channels/de_samsung.m3u b/channels/de_samsung.m3u deleted file mode 100644 index 230d134d8..000000000 --- a/channels/de_samsung.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CNNInternationalGermany.us" tvg-country="DE" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International Germany (720p) -https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DeluxeLoungeHD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.highview.com/fileadmin/Webdata/grafiken/highview/brands/lounge_deluxe_brand_logo_HD_neu.png" group-title="Music",Deluxe Lounge HD (720p) [Not 24/7] -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/manifest/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/91fcad1e-54b1-4702-9ec1-22a379525281/0.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] -https://dust-samsung-uk-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsDeutsch.fr" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Deutsch (720p) -https://rakuten-euronews-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEurope.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV (1080p) -https://fashiontv-fashiontv-4-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsung-de.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsung-de.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/81NIxYJ.jpg" group-title="Movies",Rakuten TV Action Movies Germany (720p) [Offline] -https://rakuten-actionmovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/slOK2IH.jpg" group-title="Movies",Rakuten TV Comedy Movies Germany (720p) [Offline] -https://rakuten-comedymovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/5bC53Xk.jpg" group-title="Movies",Rakuten TV Drama Germany (720p) [Offline] -https://rakuten-tvshows-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Germany (720p) [Offline] -https://rakuten-family-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/qgYRzl1.jpg" group-title="",Rakuten TV Spotlight Germany (720p) [Offline] -https://rakuten-spotlight-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) -https://sofy-ger-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (1080p) -https://stingray-karaoke-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Stingray Qello Concerts (1080p) -https://stingray-qelloconcerts-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperToonsTV.de" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Super Toons TV (720p) [Offline] -https://kedoo-supertoonstv-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeDeutschland.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Deutschland (720p) -https://tastemade-de-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.ca" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="Kids",Teletubbies (720p) [Offline] -https://dhx-teletubbies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveGermany.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Germany (720p) [Offline] -https://the-pet-collective-international-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] -https://travelxp-travelxp-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xite.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/VaDrfKr.png" group-title="",Xite (720p) -https://xite-samsung-de.amagi.tv/playlist.m3u8 diff --git a/channels/dk.m3u b/channels/dk.m3u deleted file mode 100644 index c6dedc489..000000000 --- a/channels/dk.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KanalHovedstaden.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/hATNB38.jpg" group-title="",Kanal Hovedstaden (720p) -https://59b954022ec35.streamlock.net/liveTV2/smil:liveTVstream2.transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KKRtv.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/cpl90ZC.png" group-title="",KKRtv (720p) -http://stream.kkr.dk/live/kkr/playlist.m3u8 -#EXTINF:-1 tvg-id="KKRtv.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/cpl90ZC.png" group-title="",KKRtv (720p) -http://stream.kkr.dk/live/ngrp:kkr_adaptive/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2Fyn.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://vignette1.wikia.nocookie.net/logopedia/images/6/6e/TV_2_Fyn.png" group-title="",TV2 Fyn (270p) [Not 24/7] -https://cdnapisec.kaltura.com/p/1966291/sp/1966291/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/flavorId/0_8g29e3jz/name/a.mp4/index.m3u8 -#EXTINF:-1 tvg-id="TV2Bornholm.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/ylB5ea2.jpg" group-title="",TV2/Bornholm (1080p) [Not 24/7] -https://live.tv2bornholm.dk/stream/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2Lorry.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/IxJIiLJ.jpg" group-title="",TV2/Lorry (720p) -https://cdnapisec.kaltura.com/p/2045321/sp/204532100/playManifest/entryId/1_2kojfk4m/format/applehttp/protocol/https/uiConfId/32599481/a.m3u8 -#EXTINF:-1 tvg-id="TV2Ostjylland.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/rC07Op2.jpg" group-title="",TV2/Østjylland (720p) -https://cdnapisec.kaltura.com/p/2102081/sp/2102081/playManifest/entryId/0_x4p3licd/flavorIds/0_pcvatr5k,0_aezqkdsi,0_dkeq429y,0_99pivdxs/deliveryProfileId/10552/protocol/https/format/applehttp/a.m3u8 diff --git a/channels/dk_samsung.m3u b/channels/dk_samsung.m3u deleted file mode 100644 index a607cece4..000000000 --- a/channels/dk_samsung.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) -https://rakuten-africanews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] -https://bloomberg-quicktake-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) [Offline] -https://bloomberg-bloomberg-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) [Offline] -https://mmm-ducktv-4-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Denmark) (720p) [Offline] -https://rakuten-action-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Denmark) (720p) [Offline] -https://rakuten-comedy-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Denmark) (720p) [Offline] -https://rakuten-documentaries-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Denmark) (720p) [Offline] -https://rakuten-drama-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Denmark) (720p) [Offline] -https://rakuten-family-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Denmark) (720p) [Offline] -https://rakuten-spotlight-10-dk.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/do.m3u b/channels/do.m3u deleted file mode 100644 index 1b314ed86..000000000 --- a/channels/do.m3u +++ /dev/null @@ -1,141 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AkíTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",AkíTV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Akitv/Akitv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Ame47.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Amé 47 (720p) [Offline] -https://ss6.domint.net:3028/ame_str/amecanal47/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimeZoneTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AnimeZoneXTV/picture?width=300&height=300" group-title="Animation",Anime Zone TV (480p) [Not 24/7] -http://azxtv.com/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Boreal.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-_c3Wai2yuIY/Xl-e-HIk2VI/AAAAAAAAr5w/-vzqG9PJsg0DPrpR299YXH3m2u2BsQRvgCLcBGAsYHQ/s200/Boreal%2BTelevision.jpg" group-title="",Boreal (720p) [Offline] -https://5b38ce71f1f00.streamlock.net/8180/8180/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/10/Canal-12-telecanal-republica-dominicana-en-vivo.jpg" group-title="",Canal 12 (720p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/telecanal12/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal56.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://emisoradominicana.net/television/wp-content/uploads/2015/06/tv-recuerdos-56.jpg" group-title="",Canal 56 (720p) [Geo-blocked] -https://cloudflare.streamgato.us:3549/live/canal56live.m3u8 -#EXTINF:-1 tvg-id="CanalAme47.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qExHiPc.png" group-title="",Canal Amé 47 (720p) [Offline] -http://ss6.domint.net:2028/ame_str/amecanal47/master.m3u8 -#EXTINF:-1 tvg-id="Carivision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hufTLyq.png" group-title="",Carivision (720p) [Not 24/7] -http://ss6.domint.net:2012/tes_str/teleelsalvador/playlist.m3u8 -#EXTINF:-1 tvg-id="ChinolaTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/axesNOe.png" group-title="Kids",Chinola TV (480p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/Chinolatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevisionCanal19.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/a/AGF-l79S5nkYhOxf6MqoTzBLUEnrDQRl6hGgy01i0g=s900-c-k-c0xffffffff-no-rj-mo" group-title="",Cinevision Canal 19 (720p) -https://live.teledom.info:3713/live/cinevisionlive.m3u8 -#EXTINF:-1 tvg-id="ColorVisionCanal9.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Color Vision Canal 9 [Timeout] -http://177.52.221.214:8000/play/a0c0/index.m3u8 -#EXTINF:-1 tvg-id="ComunionTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BNtmf7o.png" group-title="",Comunion TV (720p) [Not 24/7] -http://50.30.37.36:1935/live/smil:MyStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ComunionTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BNtmf7o.png" group-title="",Comunion TV (720p) [Not 24/7] -http://50.30.37.36:1935/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DANTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",DAN TV (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Punaltv/punaltvHD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Digital15.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/15_republica_dominicana-mediano.png" group-title="",Digital 15 (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://livestream.com/accounts/27456795/events/8268514/player -#EXTINF:-1 tvg-id="DigitalVision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Digital Vision (720p) [Not 24/7] -https://ss3.domint.net:3120/dv6_str/digitalvision/playlist.m3u8 -#EXTINF:-1 tvg-id="Ecovisión.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Ecovisión (480p) [Not 24/7] -https://vdo1.streamgato.us:3014/live/ecovisionlive.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://fuego40.com/wp-content/uploads/2018/11/cropped-FUEGO-LOGO-TIPO.png" group-title="",Fuego TV (720p) [Not 24/7] -https://video.misistemareseller.com/Fuegotv/Fuegotv/playlist.m3u8 -#EXTINF:-1 tvg-id="GDMTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i0.wp.com/www.gdm.do/wp-content/uploads/2020/01/Logo-GDM.png?w=696&ssl=1" group-title="",GDMTV (720p) [Not 24/7] -https://ss2.domint.net:3200/gdm_str/gdmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="GHTelevisionCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",GH Television Canal 10 (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3352/live/ghtelevisionhdlive.m3u8 -#EXTINF:-1 tvg-id="HermanasMirabalTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://emisoradominicana.net/television/wp-content/uploads/2015/06/hermanas-mirabal-tv.jpg" group-title="",Hermanas Mirabal TV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Hmtv/hmtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="HilandoFino.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://www.hilandofinotv.com/wp-content/uploads/2017/04/cropped-logo-tv-3.png" group-title="",Hilando Fino (1080p) [Not 24/7] -https://primary-out.iptv-global.net/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Hits360TV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Cx5V233.jpg" group-title="Music",Hits 360 TV (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/hits360tv/hits360HD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="HM.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://emisoradominicana.net/television/wp-content/uploads/2015/06/hermanas-mirabal-tv.jpg" group-title="",HM (720p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Hmtv/hmtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="LAMIATV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/77uVMGw.png" group-title="",LA MIA TV (720p) [Not 24/7] -https://ss8.domint.net:3108/mia_str/lamiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="LocomotionTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/auEJJvP.png" group-title="Animation",Locomotion TV (480p) [Not 24/7] -http://51.222.85.85:81/hls/loco/index.m3u8 -#EXTINF:-1 tvg-id="LocomotionTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/auEJJvP.png" group-title="Animation",Locomotion TV (480p) [Not 24/7] -http://locomotiontv.com/envivo/loco_ch/stream.m3u8 -#EXTINF:-1 tvg-id="LVM.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/814AENk%2BEaL.png" group-title="",LVM (720p) -https://uni01rtmp.tulix.tv/playout2multi9/lavozdemaria.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MegavisionCanal43.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2017/10/megavision.png" group-title="",Megavision Canal 43 (480p) [Not 24/7] -http://stream3.prostudionetwork.com:1943/megavision/MV/playlist.m3u8 -#EXTINF:-1 tvg-id="Microvision10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Sbv9mq5.png" group-title="",Microvision 10 (720p) [Not 24/7] -http://190.103.183.24:1935/live/MicroHD/playlist.m3u8 -#EXTINF:-1 tvg-id="MisionELTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-OiAyNltHK1c/XoR4TuBHe4I/AAAAAAAAszg/d3NIH9pHptsJ75DDyIGuGjq9cVO-of7kgCLcBGAsYHQ/s200/misioneltvlogo.png" group-title="",Mision ELTV (360p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8286/8286/playlist.m3u8 -#EXTINF:-1 tvg-id="ORBITTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://orbittv.net/images/orbit_logo4.png" group-title="",ORBIT TV (480p) [Geo-blocked] -https://ss3.domint.net:3134/otv_str/orbittv/playlist.m3u8 -#EXTINF:-1 tvg-id="PH.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-INH3BeYCloo/XWVcY2zOpUI/AAAAAAAAmxI/YRwbGEa3orQf7ltrcE2VTv20TPoqYSiygCLcBGAs/s320/PHTV.png" group-title="",PH (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="PHTVCanal34.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://dominicanchannels.com/wp-content/uploads/2014/10/PHTV-300x194.jpg" group-title="",PHTV Canal 34 (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/chunks.m3u8 -#EXTINF:-1 tvg-id="PuntaCanaTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/735482998372630529/bEgiPOU1_400x400.jpg" group-title="",Punta Cana TV (720p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/puntacanatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio105full.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://ru0-cdn.onlineradiobox.com/img/l/2/94192.v2.png" group-title="Music",Radio105 full (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3901/live/radio105live.m3u8 -#EXTINF:-1 tvg-id="ReadyTVCanal6.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://juanvmedrano.com/readytv/wp-content/uploads/2016/12/Ready-Logo-2016-oi2.png" group-title="",Ready TV Canal 6 (720p) [Not 24/7] -http://190.103.183.24:1935/ReadyTV/ReadyHD/playlist.m3u8 -#EXTINF:-1 tvg-id="RNN.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-dNgkjv_lHvA/WrukdUgXxuI/AAAAAAAAdEc/lr2WVL7zy20Nl9G1XIXzwu9BlBJj4buhwCLcBGAs/s200/RNN%2B-%2BRed%2BNacional%2BNoticias.png" group-title="",RNN (720p) [Not 24/7] -https://ss2.domint.net:3202/rnn_str/canal27/playlist.m3u8 -#EXTINF:-1 tvg-id="RomanaTVCanal42.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rv3jShy.jpg" group-title="",Romana TV Canal 42 (410p) [Geo-blocked] -http://tv.romanatv42.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="SanIsidroTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://sanisidrotv.com/wp-content/uploads/2020/10/logo-san-isidro-tv-png-1-300x221.png" group-title="",San Isidro TV (360p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/sanisidrotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SiTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://sitv.com.do/imgs/sitv.png" group-title="",SiTV (720p) -http://190.122.104.221/Player/sitv.m3u8 -#EXTINF:-1 tvg-id="SuperCanal33.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Super Canal 33 (480p) -http://190.122.96.186:8888/http/005 -#EXTINF:-1 tvg-id="SuperTV55Santiago.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-WO2ZKryfWoU/Wr1pO5clk_I/AAAAAAAAdJk/QYRg8_bp4OgmIWI55Y4m6i5o8RiWfCHWwCLcBGAs/s200/SuperTV55.jpg" group-title="",Super TV 55 (Santiago) (720p) [Not 24/7] -http://ss8.domint.net:2128/stv_str/tv55/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV55Santiago.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/aJcpxHL.jpg" group-title="",Super TV 55 (Santiago) (720p) [Not 24/7] -https://ss8.domint.net:3128/stv_str/tv55/master.m3u8 -#EXTINF:-1 tvg-id="TDNMedios.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRhNXeL2j6nDfgnmZxLlnMTAMne2l7IZ7boVIGUPL8h0VaFCFV2" group-title="",TDN Medios (480p) [Not 24/7] -http://108.175.14.125:1935/tdn/tdn/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleBendicion.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7v46dB1.png" group-title="",TeleBendicion (720p) [Not 24/7] -http://ss8.domint.net:2124/tbt_str/telebendicion/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecanal28.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wYklHWy.png" group-title="",Telecanal 28 (360p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Telecanal-28/telecanal.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCibao.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0XRxX9IhpJdBoV0UZNy1vSZAI-YRkewjeA1Jbp7VUIUFgGRpM" group-title="",TeleCibao (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Telecibao/Telecibao/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCibao.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0XRxX9IhpJdBoV0UZNy1vSZAI-YRkewjeA1Jbp7VUIUFgGRpM" group-title="",TeleCibao (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Telecibao/Telecibao/playlist.m3u8 -#EXTINF:-1 tvg-id="TelefuturoCanal23.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0Bbj2lh.jpg" group-title="",Telefuturo Canal 23 (720p) [Not 24/7] -http://ss8.domint.net:2118/tf_str/futu/master.m3u8 -#EXTINF:-1 tvg-id="Teleimpacto.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Teleimpacto (720p) [Not 24/7] -http://190.122.96.188:8888/http/013 -#EXTINF:-1 tvg-id="Telemicro.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-4fTAMMvrofI/WtOf7D-zT4I/AAAAAAAAeRU/4AsiXPcfIqAQVfwxLg3sH_J4Sh_IcDO9wCLcBGAs/s200/Telemicro.png" group-title="",Telemicro (720p) [Not 24/7] -https://api.new.livestream.com/accounts/28126860/events/8825282/live.m3u8 -#EXTINF:-1 tvg-id="Telemilenio.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://santiagotv36.com/wp-content/uploads/2014/09/Logo-web1.png" group-title="",Telemilenio (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Telemilenio/Telemilenio.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Telenord8.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-H6WpFuwnBw8/Xb8tpN3x27I/AAAAAAAAowE/i8xCRlptBkEGIn9nxcfdajE2ieOQ07GGQCLcBGAsYHQ/s200/Telenord.jpg" group-title="",Telenord 8 (1080p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord8/telenord8/playlist.m3u8 -#EXTINF:-1 tvg-id="Telenord12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iE1xhA5.png" group-title="",Telenord 12 (720p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord12/telenord12/playlist.m3u8 -#EXTINF:-1 tvg-id="TelenordCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Telenord Canal 10 (1080p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord10/telenord10/playlist.m3u8 -#EXTINF:-1 tvg-id="Telesistema11.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Telesistema 11 [Timeout] -http://177.52.221.214:8000/play/a0fk/index.m3u8 -#EXTINF:-1 tvg-id="TelesurCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://www.telesur.com.do/images/telesur_canal_10_logo2.png" group-title="",Telesur Canal (360p) [Not 24/7] -https://ss3.domint.net:3124/tls_str/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleunion.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-1P8ozDYekaw/XbBkLrf0Q4I/AAAAAAAAodQ/5qTLYC9km6YVHW8E1WoELvFneAUm1U7bwCPcBGAYYCw/s200/Teleunion%2B%25281%2529.png" group-title="",Teleunion (480p) [Not 24/7] -http://server3.prostudionetwork.com:1945/teleunion/TU/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleverCanal12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://i.imgur.com/s2FJJDS.png" group-title="",Telever Canal 12 [Offline] -http://tengomusica.ddns.net:1935/telever/telever.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVÉxitos.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",TV Éxitos (720p) [Not 24/7] -https://vdo1.streamgato.us:3359/live/tvexitoslive.m3u8 -#EXTINF:-1 tvg-id="TVMontanaCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2Sgckg3.jpg" group-title="",TV Montaña Canal 10 (720p) [Not 24/7] -http://ss6.domint.net:2060/tvm_str/montanatv/master.m3u8 -#EXTINF:-1 tvg-id="TVPlata.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-33hgi3XzfLk/XaTZchnPFzI/AAAAAAAAoXM/_4Dev7Cb_II0S6JPEDyqOShzfmInR42vACLcBGAsYHQ/s200/tvplata.png" group-title="",TV Plata (1080p) [Not 24/7] -https://ss6.domint.net:3104/tvp_str/tvplata/playlist.m3u8 -#EXTINF:-1 tvg-id="TVS.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://dominicanchannels.com/wp-content/uploads/2016/06/tvs.jpg" group-title="",TVS (540p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Tvstv/TvstvHD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Vallevision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://www.vallevision.com.do/images/vallevision.png" group-title="",Vallevision (720p) [Not 24/7] -http://190.103.183.24:1935/Vallevision/ValleHD/playlist.m3u8 -#EXTINF:-1 tvg-id="VallevisionCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://es.live-tv-channels.org/pt-data/uploads/logo/do-vallevision-canal-10-9607-300x225.jpg" group-title="",Vallevision Canal 10 (720p) [Not 24/7] -https://streaming.telecablecentral.com.do/Vallevision/ValleHD/playlist.m3u8 -#EXTINF:-1 tvg-id="VegaTeve.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-5JBZ6ZO0ybk/XaS-xAYTF7I/AAAAAAAAoXA/u1OK-aVn_sQNM86uwWFBqLuk5Q-Uzo7hgCLcBGAsYHQ/s200/vegateve.jpg" group-title="",Vega Teve (720p) [Not 24/7] -https://ss6.domint.net:3012/tes_str/teleelsalvador/playlist.m3u8 -#EXTINF:-1 tvg-id="VivaCanal5.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Viva Canal 5 (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/dominicanrepublic/viva-canal-5 -#EXTINF:-1 tvg-id="Zol106.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-OlrTJEjmmAI/Wr1YlnuxLOI/AAAAAAAAdIU/vTw_1pzwsTUbHwz_4zPiZwnbaeHDwiYAwCLcBGAs/s200/Zol%2B106.png" group-title="",Zol106 (720p) [Not 24/7] -https://ss3.domint.net:3108/zol_str/vzol/playlist.m3u8 -#EXTINF:-1 tvg-id="ZTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://z101digital.com/wp-content/themes/z-101-digital/imgs/podcasts/audios-destacados.jpg" group-title="",ZTV (720p) [Not 24/7] -https://lb00zdigital.streamprolive.com/mnt/hls/live.m3u8 diff --git a/channels/dz.m3u b/channels/dz.m3u deleted file mode 100644 index 4655a6942..000000000 --- a/channels/dz.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlAnisTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/G60iJen.png" group-title="",Al Anis TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/El_Fhama_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV3.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J6VmBuw.png" group-title="",Algérie TV3 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/A3_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV4.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n8httHt.png" group-title="",Algérie TV4 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_4/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV5.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/gXG15AX.png" group-title="",Algérie TV5 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_5/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV6.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/HYqJY6y.png" group-title="",Algérie TV6 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_6_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="BahiaTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oBRXuH2.png" group-title="",Bahia TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Bahia_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlgerie.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FPmDhNH.png" group-title="",Canal Algérie [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/CANAL_ALGERIE/playlist.m3u8 -#EXTINF:-1 tvg-id="CNA.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4s1NlRf.jpg" group-title="Religious",CNA (Chaîne Nord Africaine) (360p) [Not 24/7] -https://live.creacast.com/cna/smil:cna.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukNews.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="" group-title="News",Echorouk News (480p) [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/ECHOROUK_NEWS/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukNews.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="" group-title="News",Echorouk News (240p) [Not 24/7] -http://echorouk-live-tv.dzsecurity.net:8081/echo/EchoroukNews/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1315_1.png" group-title="",Echorouk TV (720p) [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Echorouk_TV_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="ElBilad.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Bp00gMu.png" group-title="",El Bilad [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_BILAD/playlist.m3u8 -#EXTINF:-1 tvg-id="ElDjazairN1.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/EoB4f6e.png" group-title="",El Djazair N1 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/El_Djazair_N1/playlist.m3u8 -#EXTINF:-1 tvg-id="ElDjazairiaOne.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OhTioAg.png" group-title="",El Djazairia One [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_DJAZAIRIA_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="ElFadjrTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Br7bAVR.png" group-title="",El Fadjr TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_FADJR_TV_DZ/playlist.m3u8 -#EXTINF:-1 tvg-id="ElHayatTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fNLiJwK.png" group-title="",El Hayat TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_HAYAT_TV_ALGERIE/playlist.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ta9o5qJ.png" group-title="",Ennahar TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/ENNAHAR_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/cc/Ennahar_TV.svg/330px-Ennahar_TV.svg.png" group-title="",Ennahar TV (360p) [Not 24/7] -http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV_SD/chunks.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/cc/Ennahar_TV.svg/330px-Ennahar_TV.svg.png" group-title="",Ennahar TV (240p) [Not 24/7] -http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ENTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tFXvY71.png" group-title="",ENTV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/PROGRAMME_NATIONAL/playlist.m3u8 -#EXTINF:-1 tvg-id="LinaTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/WeGG33J.png" group-title="",Lina TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Lina_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="SamiraTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5C80xDT.png" group-title="",Samira TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/SamiraTV/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Elmaarifa.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dYlAfFZ.png" group-title="",TV7 Elmaarifa [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV7_ELMAARIFA/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8Edhakira.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/l7hw1W6.png" group-title="",TV8 Edhakira [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV8_EDHAKIRA/playlist.m3u8 diff --git a/channels/ec.m3u b/channels/ec.m3u deleted file mode 100644 index e58429017..000000000 --- a/channels/ec.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanelaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",CanelaTV (720p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/canelatv/canelatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Ecotel.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Ecotel (720p) [Not 24/7] -https://ecotel.streamseguro.com/hls/ecoteltv.m3u8 -#EXTINF:-1 tvg-id="EcuadorTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/357.png" group-title="",Ecuador TV (480p) -http://45.179.140.242:8000/play/a0jp -#EXTINF:-1 tvg-id="EducaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Education",EducaTV (1080p) [Not 24/7] -https://cloud7.streamingcnt.net/cnt/educa/playlist.m3u8 -#EXTINF:-1 tvg-id="ElSolRadioTelevision.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",El Sol Radio y Television (404p) [Not 24/7] -http://streaming5.globalhostla.com/rtplive/elsolrad/playlist.m3u8 -#EXTINF:-1 tvg-id="EliteRadioTelevisión.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Elite Radio Televisión (480p) [Not 24/7] -https://tv.portalexpress.es:3785/live/trincheratvlive.m3u8 -#EXTINF:-1 tvg-id="HechosEcuador.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com8YPXrcX.png" group-title="",Hechos Ecuador (480p) [Not 24/7] -http://37.187.7.106/hechostv/live.m3u8 -#EXTINF:-1 tvg-id="LoretoTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Loreto TV (720p) [Not 24/7] -https://srv1.zcast.com.br/diego3282/diego3282/playlist.m3u8 -#EXTINF:-1 tvg-id="MulticanalCatamayo.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Multicanal Catamayo (720p) [Not 24/7] -https://multicanal.streamseguro.com/hls/streaming.m3u8 -#EXTINF:-1 tvg-id="ParaísoDigital.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Paraíso Digital (360p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8106/index.m3u8 -#EXTINF:-1 tvg-id="PasiónTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Pasión TV (360p) [Not 24/7] -https://tv.portalexpress.es:3753/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="PrincesaEstéreoTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Princesa Estéreo TV (884p) [Not 24/7] -https://tv.portalexpress.es:3084/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="PuruwaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/puruwaTV/picture?width=320&height=320" group-title="",Puruwa TV (360p) -https://srv.panelcast.net/puruwalive/puruwalive/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioImpacto2.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Radio Impacto 2 (1080p) [Not 24/7] -https://sv72.ecuaradiotv.net/impacto2tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTS.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",RTS (RadioTeleSistema) (480p) -http://45.179.140.242:8000/play/a0kw -#EXTINF:-1 tvg-id="RTU.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="News",RTU (630p) [Not 24/7] -https://streamingwowza.com:1936/rtutv/rtutv/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleamazonas.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com/of0fNUU.png" group-title="",Teleamazonas (720p) [Not 24/7] -https://api.new.livestream.com/accounts/1359588/events/4428723/live.m3u8 -#EXTINF:-1 tvg-id="Telerama.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Telerama (240p) [Not 24/7] -https://envivo.telerama.ec/stream.m3u8 -#EXTINF:-1 tvg-id="TVUniversal.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Religious",TV Universal (Ecuador) (720p) [Not 24/7] -https://59c3c7bda15f4.streamlock.net:444/universal/smil:universal.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UCSG.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com/otOhIe8.png" group-title="",UCSG (1080p) [Not 24/7] -http://ecuastreamhd.com:1935/UCSGHQ/UCSGHQ/chunklist.m3u -#EXTINF:-1 tvg-id="Unisión.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Unisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://player.vimeo.com/video/645807901 -#EXTINF:-1 tvg-id="VisionRadioTelevision.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión Radio Televisión (808p) -https://stmv.panel.mivideo.pro/vision/vision/playlist.m3u8 -#EXTINF:-1 tvg-id="WuanPlus.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WuanPlus/picture?width=320&height=320" group-title="General",Wuan+ (720p) -https://streamingwowza.com:1936/wuanplus/wuanplus/playlist.m3u8 -#EXTINF:-1 tvg-id="ZaracayTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Local",Zaracay TV (720p) [Not 24/7] -https://streamingwowza.com:1936/zaracaytv/smil:zaracaytv.smil/playlist.m3u8 diff --git a/channels/ee.m3u b/channels/ee.m3u deleted file mode 100644 index 493807b00..000000000 --- a/channels/ee.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ETV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://static.iptv-epg.com/ee/ETV.ee.png" group-title="",ETV (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etv.m3u8 -#EXTINF:-1 tvg-id="ETV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://static.iptv-epg.com/ee/ETV.ee.png" group-title="",ETV (720p) -https://sb.err.ee/live/etv.m3u8 -#EXTINF:-1 tvg-id="ETVPlus.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/ETV%2B_logo.png/225px-ETV%2B_logo.png" group-title="",ETV+ (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etvpluss.m3u8 -#EXTINF:-1 tvg-id="ETV2.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/ETV2_logo.svg/240px-ETV2_logo.svg.png" group-title="",ETV2 (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etv2.m3u8 -#EXTINF:-1 tvg-id="LifeTV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://i.imgur.com/RBUmENQ.png" group-title="",Life TV (432p) [Not 24/7] -https://lifetv.bitflip.ee/live/stream1.m3u8 -#EXTINF:-1 tvg-id="Riigikogu.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://i.imgur.com/xuySaSN.png" group-title="",Riigikogu (720p) -https://h6le2.babahhcdn.com/bb1027/smil:riigikogu_ch1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TBNBaltia.ee" tvg-country="EE" tvg-language="Russian" tvg-logo="https://inet-static.mw.elion.ee/images/channels/300x300/261.png" group-title="Religious",TBN Baltia (1080p) -http://dc.tbnbaltia.eu:8088/dvr/rewind-21600.m3u8 diff --git a/channels/eg.m3u b/channels/eg.m3u deleted file mode 100644 index 56f322c4f..000000000 --- a/channels/eg.m3u +++ /dev/null @@ -1,86 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AghapyTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="Religious",Aghapy TV (1080p) -https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlGhad.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.alghad.tv/wp-content/uploads/2018/10/AlGhad_2x-2-1.png" group-title="",Al Ghad (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alghadtv/live -#EXTINF:-1 tvg-id="AlHayatTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/9HocMyE.jpg" group-title="Religious",Al Hayat TV (720p) -http://media.islamexplained.com:1935/live/_definst_mp4:ahme.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Alrafidain.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Alrafidain (1024p) [Not 24/7] -http://cdg3.edge.tmed.pw/arrafidaintv/live_1024p/chunks.m3u8 -#EXTINF:-1 tvg-id="AppleAflam.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Aflam (576p) [Timeout] -http://213.162.202.5:4000/play/a09p/index.m3u8 -#EXTINF:-1 tvg-id="AppleAlwan.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Alwan (576p) [Timeout] -http://213.162.202.5:4000/play/a09d/index.m3u8 -#EXTINF:-1 tvg-id="AppleCinema.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Cinema (576p) [Timeout] -http://213.162.202.5:4000/play/a09b/index.m3u8 -#EXTINF:-1 tvg-id="AppleComedy.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Comedy (576p) [Timeout] -http://213.162.202.5:4000/play/a09a/index.m3u8 -#EXTINF:-1 tvg-id="AppleHekayat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Hekayat (576p) [Timeout] -http://213.162.202.5:4000/play/a0a1/index.m3u8 -#EXTINF:-1 tvg-id="AppleMoslsalat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Moslsalat (576p) [Timeout] -http://213.162.202.5:4000/play/a09l/index.m3u8 -#EXTINF:-1 tvg-id="AppleToday.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Today (576p) [Timeout] -http://213.162.202.5:4000/play/a09k/index.m3u8 -#EXTINF:-1 tvg-id="ATVSat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/14EjTS3.png" group-title="",ATVSat (1080p) [Not 24/7] -https://stream.atvsat.com/atvsatlive/smil:atvsatlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CBC.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1198_1.png" group-title="",CBC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/cbcstream/live -#EXTINF:-1 tvg-id="CBCDrama.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1199_1.png" group-title="",CBC Drama (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCDramaStream/live -#EXTINF:-1 tvg-id="CBCSofra.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1260_1.png" group-title="",CBC Sofra [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCSofraStream/live -#EXTINF:-1 tvg-id="CopticTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.ctvchannel.tv/Images/Page/Logo.png" group-title="Religious",Coptic TV (720p) -https://58cc65c534c67.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CopticTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.ctvchannel.tv/Images/Page/Logo.png" group-title="Religious",Coptic TV (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElsharqTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://elsharq.tv/img/elsharq.png" group-title="General",Elsharq TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/elsharq_live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="eXtraNews.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://extranews.tv/assets/images/Extranews_logo_R.png" group-title="News",eXtra News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC65F33K2cXk9hGDbOQYhTOw/live -#EXTINF:-1 tvg-id="Huda.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7dnjDgw.jpg" group-title="",Huda (720p) [Timeout] -https://cdn.videoevent.live:19360/elfaro2/elfaro2.m3u8 -#EXTINF:-1 tvg-id="KoogiTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/I5A1mMZ.jpg" group-title="Kids",Koogi TV (720p) -https://5d658d7e9f562.streamlock.net/koogi.tv/koogi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MekameleenTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/K0MQiNB.png" group-title="News",Mekameleen TV (1080p) -https://mn-nl.mncdn.com/mekameleen/smil:mekameleentv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MESat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://copticocc.org/mesat/wp-content/uploads/2018/07/logo-width12.png" group-title="Religious",MESat (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCg5uHOxrP5GkMWldOavPKGQ/live -#EXTINF:-1 tvg-id="NileTVCinema.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/cinema/cinema.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Movies",Nile TV Cinema (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCinema/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVComedy.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/comedy/comedy.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Comedy",Nile TV Comedy (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileComedy/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVCulture.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/culture/culture.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Culture",Nile TV Culture (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCulture/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVFamily.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/family/family.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Family",Nile TV Family (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileFamily/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVLearning.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/learning/learning.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Education",Nile TV Learning (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/Learning1/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVLife.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/live/live.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Lifestyle",Nile TV Life (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileLife/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVSport.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/sport/sport.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Sports",Nile TV Sport (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileSport/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NobleTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Noble TV (360p) -https://5d39f1ab8ba65.streamlock.net:1935/arabic-test/arabic-test/playlist.m3u8 -#EXTINF:-1 tvg-id="NogoumFMTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://storage.googleapis.com/nogoumfm-eu-web/1/2019/12/logo-nogoum-1.png" group-title="Music",Nogoum FM TV (506p) [Not 24/7] -https://stream-speed.extremesolution.mobi/nogoumfm/nogoumfmlive/playlist.m3u8 -#EXTINF:-1 tvg-id="OmgChannelTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://omgchannel.net/image/cache/catalog/logo-210x89.png" group-title="",Omg Channel TV (720p) [Not 24/7] -http://media6.smc-host.com:1935/omgchannel.net/omgtv/playlist.m3u8 -#EXTINF:-1 tvg-id="OmgSeriesTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://omgchannel.net/image/cache/catalog/logo-210x89.png" group-title="",Omg Series TV (720p) [Not 24/7] -http://media6.smc-host.com:1935/omgchannel.net/omgseries/playlist.m3u8 -#EXTINF:-1 tvg-id="QuranTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Quran TV (576p) [Timeout] -http://213.162.202.5:4000/play/a09u/index.m3u8 -#EXTINF:-1 tvg-id="SadaElbalad.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://elbaladtv.net/wp-content/uploads/2020/02/Sada-Logo-190.webp" group-title="",Sada Elbalad (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/elbaladtv -#EXTINF:-1 tvg-id="TenTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/8ff99681-4dd8-4e97-aa18-de4a866ef0fd/poster-image" group-title="",Ten TV (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_ten_tv/index.m3u8 -#EXTINF:-1 tvg-id="TheKingdomSat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6xa14aQ.png" group-title="Religious",The Kingdom Sat (576p) -https://bcovlive-a.akamaihd.net/87f7c114719b4646b7c4263c26515cf3/eu-central-1/6008340466001/profile_0/chunklist.m3u8 -#EXTINF:-1 tvg-id="WatanTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.watanegypt.tv/design/home/img/f-logo.png" group-title="General",Watan TV (1080p) -https://cdg8.edge.technocdn.com/watantv/live/playlist.m3u8 diff --git a/channels/es.m3u b/channels/es.m3u deleted file mode 100644 index 86b994a2e..000000000 --- a/channels/es.m3u +++ /dev/null @@ -1,521 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586402/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586403/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586404/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586405/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlsdvrlive_1@39732/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125698/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125699/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125702/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125703/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@143656/master.m3u8 -#EXTINF:-1 tvg-id="324.es" tvg-country="ES;AD" tvg-language="Catalan" tvg-logo="https://i.imgur.com/CnIVW9o.jpg" group-title="News",3/24 (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:324_web/master.m3u8 -#EXTINF:-1 tvg-id="7LaRioja.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",7 La Rioja (1080p) [Not 24/7] -https://pc-la7delarioja-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="7Noticias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="News",7 Noticias (1080p) -https://amg01573-7nn-7nnono-ono-pcdj3.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="7TelevisionRegiondeMurcia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/M0JqHa9.png" group-title="Local",7 Televisión Región de Murcia (360p) [Not 24/7] -https://rtvmurcia_01-lh.akamaihd.net/i/rtvmurcia_1_0@507973/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (720p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835804/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaBahia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Bahía) (576p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835790/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Córdoba) (720p) [Not 24/7] -https://dcunilive265-lh.akamaihd.net/i/dclive_1@409360/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaCostaNoroeste.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Costa Noroeste) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835802/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaJaen.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Jaén) (404p) [Offline] -https://dcunilive266-lh.akamaihd.net/i/dclive_1@426886/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaJerez.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Jerez) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835794/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaMalaga.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Málaga) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835798/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaSevilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Sevilla) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835800/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaSierra.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Sierra) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835792/master.m3u8 -#EXTINF:-1 tvg-id="8TVCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",8 TV Cádiz (360p) [Not 24/7] -https://5940924978228.streamlock.net/8289/smil:8289.smil/master.m3u8 -#EXTINF:-1 tvg-id="9laLomaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fpUaXqe.png" group-title="",9 la Loma TV [Geo-blocked] -https://9laloma.tv/live.m3u8 -#EXTINF:-1 tvg-id="11TV.es" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/Uo3iDXN.jpg" group-title="Music",11 TV (576p) [Not 24/7] -http://51.210.199.43/hls/stream.m3u8 -#EXTINF:-1 tvg-id="25TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sADbx7S.png" group-title="",25 TV (480p) [Not 24/7] -https://cdnlive.shooowit.net/25televisiolive/smil:channel1.smil/master.m3u8 -#EXTINF:-1 tvg-id="28kanala.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/28kanala/picture?width=320&height=320" group-title="",28 kanala (720p) [Geo-blocked] -https://5940924978228.streamlock.net/8157/8157/master.m3u8 -#EXTINF:-1 tvg-id="101TeleAntequera.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ZhvkYeg.jpg" group-title="Music",101 Tele Antequera (1080p) -https://limited38.todostreaming.es/live/101tv-AntequeraHD.m3u8 -#EXTINF:-1 tvg-id="101TVMalaga.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CXHLhZD.png" group-title="News",101TV Malaga (1080p) [Not 24/7] -https://limited38.todostreaming.es/live/101tv-web101tv.m3u8 -#EXTINF:-1 tvg-id="324.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/CnIVW9o.jpg" group-title="News",324 (576p) -https://directes-tv-int.ccma.cat/int/ngrp:324_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="APunt.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://graph.facebook.com/apuntmedia/picture?width=200&height=200" group-title="General",À Punt (720p) -https://bcovlive-a.akamaihd.net/469e448f034b4d46afa4bcac53297d60/eu-central-1/6057955885001/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="APunt.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://graph.facebook.com/apuntmedia/picture?width=200&height=200" group-title="General",À Punt (720p) [Geo-blocked] -https://bcovlive-a.akamaihd.net/1e7e91116b104391a4f22e13a694d94f/eu-central-1/6057955885001/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="ActivaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/guHWZwP.jpg" group-title="Music",Activa TV (720p) [Not 24/7] -https://streamtv.mediasector.es/hls/activatv/.m3u8 -#EXTINF:-1 tvg-id="AlacantiTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Alacantí TV (576p) [Not 24/7] -https://streaming01.gestec-video.com/hls/artequatreAlacanti.m3u8 -#EXTINF:-1 tvg-id="AlcarriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/pzJAYan.png" group-title="",Alcarria TV (576p) -http://217.182.77.27/live/alcarriatv-livestream.m3u8 -#EXTINF:-1 tvg-id="AlcarriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/pzJAYan.png" group-title="",Alcarria TV (576p) [Not 24/7] -http://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AragonRadioZaragoza.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Aragón Radio (Zaragoza) [Not 24/7] -https://cartv.streaming.aranova.es/hls/live/aragonradio_aragonradio1.m3u8 -#EXTINF:-1 tvg-id="AragonTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d4/Logo_aragon_tv_2016.png" group-title="",Aragón TV (480p) -https://cartv.streaming.aranova.es/hls/live/aragontv_canal1.m3u8 -#EXTINF:-1 tvg-id="BailenTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Bailén TV (720p) [Not 24/7] -http://cpd.bailen.tv:8080/Playlist_CANAL_24H/playlist.m3u8 -#EXTINF:-1 tvg-id="BarcaTV.es" tvg-country="ES" tvg-language="Spanish;Catalan" tvg-logo="https://www.movistarplus.es/recorte/m-NEO/canal/BARNA.png" group-title="Sports",Barça TV [Timeout] -http://5.255.90.184:2002/play/a01z -#EXTINF:-1 tvg-id="BARVATV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://barvatvplus.com/wp-content/uploads/2020/12/PicsArt_11-24-11.04.44.png" group-title="",BARVA.TV (360p) [Timeout] -https://cp.sradiotv.com:1936/8076/8076/playlist.m3u8 -#EXTINF:-1 tvg-id="beteve.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",betevé (1080p) -https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 -#EXTINF:-1 tvg-id="BonDiaTV.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/pY8zxN3.png" group-title="",Bon Dia TV (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:bnd_web/playlist.m3u8 -#EXTINF:-1 tvg-id="CadenaElite.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Cadena Elite (720p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8004/index.m3u8 -#EXTINF:-1 tvg-id="CampinaSurTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/87KGlQz.png" group-title="",Campiña Sur TV [Not 24/7] -https://cdn01.yowi.tv/4131RI73I9/master.m3u8 -#EXTINF:-1 tvg-id="Canal4ManchaCentro.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 Mancha Centro (720p) [Not 24/7] -https://5924d3ad0efcf.streamlock.net/canal4/canal4live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Tenerife.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 Tenerife (576p) [Not 24/7] -https://5940924978228.streamlock.net/Directo3/Directo3/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10Emporda.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 10 Empordà (360p) [Not 24/7] -http://ventdelnord.tv:8080/escala/directe.m3u8 -#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (720p) -https://rtvelivestreamv3.akamaized.net/24h_main_dvr.m3u8 -#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7QZIf0dta-XPXsp9Hv4dTw/live -#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (1080p) [Timeout] -https://rtvelivestreamv3.akamaized.net/24h_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Canal25TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2BBGZ1H.png" group-title="Local",Canal 25 TV (Barbastro) (720p) [Not 24/7] -https://common01.todostreaming.es/live/tvbarbastro-livestream.m3u8 -#EXTINF:-1 tvg-id="Canal33Madrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1zJpDIX.png" group-title="",Canal 33 Madrid (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/canal33tvmadridgmailcom/livestream/master.m3u8 -#EXTINF:-1 tvg-id="CANAL45TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2016/02/Canal-45-Ja%C3%A9n.png" group-title="",CANAL 45 TV (360p) [Not 24/7] -https://cdn01.yowi.tv/503L6OKTE2/master.m3u8 -#EXTINF:-1 tvg-id="Canal56.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 56 (576p) [Not 24/7] -https://videos.canal56.com/directe/stream/index.m3u8 -#EXTINF:-1 tvg-id="Canal2000LaSolana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 2000 La Solana (720p) -http://canal2000.berkano-systems.net/streaming/streams/canal2000.m3u8 -#EXTINF:-1 tvg-id="CanalDiocesano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i1.wp.com/directostv.teleame.com/wp-content/uploads/2016/01/Canal-Diocesano-en-directo-Online.png?fit=1920%2C1080" group-title="",Canal Diocesano (576p) [Not 24/7] -https://cdn01.yowi.tv/DDDDDDDDDD/master.m3u8 -#EXTINF:-1 tvg-id="CanalDonana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Doñana (720p) [Not 24/7] -https://secure5.todostreaming.es/live/division-alm.m3u8 -#EXTINF:-1 tvg-id="CanalExtremadura.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CanalExtremadura/picture?width=320&height=320" group-title="",Canal Extremadura (576p) [Not 24/7] -https://cdnlive.shooowit.net/canalextremaduralive/smil:channel1DVR.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalMalagaRTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BXmmroM.jpg" group-title="Local",Canal Málaga RTV (720p) [Not 24/7] -https://canalmalaga-tv-live.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/U842Z2c.png" group-title="",Canal Parlamento (360p) -http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 -#EXTINF:-1 tvg-id="CanalSanRoque.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QBzvCJc.png" group-title="",Canal San Roque (720p) [Not 24/7] -https://elastic10.todostreaming.es/live/sanroque-livestream.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (1080p) -http://217.125.136.93:8080/canalsierradecadiz1080.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (720p) -http://217.125.136.93:8080/canalsierradecadiz720.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (576p) -http://217.125.136.93:8080/canalsierradecadiz576.m3u8 -#EXTINF:-1 tvg-id="CanalSuper3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kbgoyvg.png" group-title="",Canal Super 3 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (720p) -https://cdnlive.codev8.net/rtvalive/smil:channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (720p) -https://cdnlive.shooowit.net/rtvalive/smil:channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqwjtgaJflHga2aPWphG5PQ/live -#EXTINF:-1 tvg-id="CanalTaronjaOsonaiMoianes.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Taronja Osona i Moianés (240p) [Not 24/7] -https://taronjavic.streaming-pro.com/hls/vic.m3u8 -#EXTINF:-1 tvg-id="CCMAExclusiu1.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://pbs.twimg.com/profile_images/899576410607693825/BLjUpQzO_400x400.jpg" group-title="",CCMA Exclusiu 1 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:oca1_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="CCMAExclusiu2.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://pbs.twimg.com/profile_images/899576410607693825/BLjUpQzO_400x400.jpg" group-title="",CCMA Exclusiu 2 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:oca2_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="Clan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/5d/Tve_clan.png" group-title="",Clan TVE (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/clan_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Clan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/5d/Tve_clan.png" group-title="",Clan TVE (1080p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/5466990.m3u8 -#EXTINF:-1 tvg-id="CMMTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdByrmGVNifOPE1W-LsD8oYtNGiRsIrrsMFw&usqp=CAU" group-title="",CMM TV (360p) [Not 24/7] -http://cdnapi.kaltura.com/p/2288691/sp/39582391/playManifest/entryId/0_xs45iy5i/format/applehttp/.m3u8 -#EXTINF:-1 tvg-id="Condavision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Btnzf1m.png" group-title="",Condavisión (720p) [Not 24/7] -http://145.239.141.154:1935/live/uSCQc5ky/playlist.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 1 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso1_1@71529/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 2 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso2_1@72033/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 3 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso3_1@72034/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados4.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 4 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso4_1@53937/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados5.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 5 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso5_1@51923/master.m3u8 -#EXTINF:-1 tvg-id="CosmoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://www.cosmopolitantv.es/img/logorrss.png" group-title="",Cosmo TV (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/str15live/str15live/playlist.m3u8 -#EXTINF:-1 tvg-id="CosmoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://www.cosmopolitantv.es/img/logorrss.png" group-title="",Cosmo TV (720p) [Timeout] -http://91.126.141.201:1935/live/cosmoHD/playlist.m3u8 -#EXTINF:-1 tvg-id="CostaNoroesteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Costa Noroeste TV (720p) [Not 24/7] -https://limited31.todostreaming.es/live/noroestetv-livestream.m3u8 -#EXTINF:-1 tvg-id="Cuatro4TVVallUxa.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcReUVLq8nJbqLUY6jVbJvX0VMaoj1HVYu-OKg&usqp=CAU" group-title="",Cuatro 4 TV Vall Uxa (1080p) [Not 24/7] -https://limited09.todostreaming.es/live/tarson-livestream.m3u8 -#EXTINF:-1 tvg-id="DejatedeHistoriasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Déjate de Historias TV (1080p) [Offline] -https://cdn01.yowi.tv/GGGGGGGGGG/master.m3u8 -#EXTINF:-1 tvg-id="DiezTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/5KXkBbs.jpg" group-title="",Diez TV (1080p) -https://streaming.cloud.innovasur.es/mmj/index.m3u8 -#EXTINF:-1 tvg-id="DistritoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/V04dJhe.jpg" group-title="Local",Distrito TV (1080p) [Not 24/7] -https://cdn01.yowi.tv/KQRSDA7GDB/master.m3u8 -#EXTINF:-1 tvg-id="DurangaldekoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Durangaldeko TV (404p) [Not 24/7] -https://cdn01.yowi.tv/AAAAAAAAAA/master.m3u8 -#EXTINF:-1 tvg-id="EITB.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BU8zXRW.jpg" group-title="Local",EITB (480p) -https://etbvnogeo-lh.akamaihd.net/i/ETBEITBEUS_1@300391/master.m3u8 -#EXTINF:-1 tvg-id="EiTB2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mrGvcPV.png" group-title="",EiTB 2 (720p) -https://etbvnogeo-lh.akamaihd.net/i/ETBSTR2_1@595582/master.m3u8 -#EXTINF:-1 tvg-id="El33.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Canal33/picture?width=320&height=320" group-title="",El 33 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="ElFuturoentumano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Religious",El Futuro en tu mano (720p) -https://limited24.todostreaming.es/live/renjillo-livestream.m3u8 -#EXTINF:-1 tvg-id="ElFuturoentumano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Religious",El Futuro en tu mano (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZSw3jfFZo_8I9BHSMlT2Fg/live -#EXTINF:-1 tvg-id="ElToroTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",El Toro TV (720p) [Not 24/7] -https://live1-eltorotv.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Elche7TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zeC5t44.png" group-title="",Elche 7 TV (1080p) [Not 24/7] -https://streaming.elche7tv.es/hls/canal2.m3u8 -#EXTINF:-1 tvg-id="ESNETV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/VbxfLY5.png" group-title="Religious",ESNE TV (1080p) -https://zypelive-lh.akamaihd.net/i/default_1@710948/master.m3u8 -#EXTINF:-1 tvg-id="Esport3.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Esport3/picture?width=320&height=320" group-title="Sports",Esport3 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist.m3u8 -#EXTINF:-1 tvg-id="Esport3.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Esport3/picture?width=320&height=320" group-title="Sports",Esport3 (576p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="EsteponaTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rMAB720.png" group-title="",Estepona Televisión (720p) [Offline] -https://5b38ce71f1f00.streamlock.net/8122/8122/playlist.m3u8 -#EXTINF:-1 tvg-id="ETB1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KeBXBJE.png" group-title="Local",ETB 1 (720p) -https://etbvnogeo-lh.akamaihd.net/i/ETBSTR1_1@595581/master.m3u8 -#EXTINF:-1 tvg-id="ETBEventos1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",ETB Eventos 1 (720p) -https://etbvnogeo-lh.akamaihd.net/i/OCA1HD_1@748519/master.m3u8 -#EXTINF:-1 tvg-id="EuropaPressTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/europapress.es/picture?width=320&height=320" group-title="",EuropaPress TV [Offline] -https://cdnlive.shooowit.net/europapresslive/ep.smil/master.m3u8 -#EXTINF:-1 tvg-id="FactoriadeFiccion.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://programacion-tv.elpais.com/imagenes/canales/506.jpg" group-title="",Factoría de Ficción (720p) [Timeout] -http://91.126.141.201:1935/live/smil:fdf.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FibracatTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Fibracat TV (1080p) [Not 24/7] -https://cdn02.fibracat.cat/fibracattv/index.m3u8 -#EXTINF:-1 tvg-id="Fibwi.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Fibwi (1080p) [Geo-blocked] -http://109.232.71.249/fibwiLIVE_movil/index.m3u8 -#EXTINF:-1 tvg-id="FionTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lOkkf0D.png" group-title="",Fion TV (720p) [Timeout] -http://stream.fion.es:1936/live/smil:fion.smil/master.m3u8 -#EXTINF:-1 tvg-id="GCMTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",GCM TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/tbmadrid/tbmadrid.m3u8 -#EXTINF:-1 tvg-id="GoienaEus.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Goiena Eus (720p) [Not 24/7] -https://zuzenean.goienamedia.eus:8443/goiena-telebista.m3u8 -#EXTINF:-1 tvg-id="GOL.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",GOL (720p) [Offline] -https://api.goltelevision.com/api/v1/stream/live/stream.m3u8 -#EXTINF:-1 tvg-id="GuadaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Guada TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/guadatv/guadatv.m3u8 -#EXTINF:-1 tvg-id="HamaikaTelebista.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HR3G3Ie.png" group-title="",Hamaika Telebista (1080p) [Not 24/7] -https://wowzaprod130-i.akamaihd.net/hls/live/570468/275f3ea5/playlist.m3u8 -#EXTINF:-1 tvg-id="HermesTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Hermes TV (720p) [Offline] -https://cdn01.yowi.tv/1H23S04G4M/master.m3u8 -#EXTINF:-1 tvg-id="HQMArabic.es" tvg-country="ES" tvg-language="Arabic" tvg-logo="https://hqm.es/wp-content/uploads/arabic-hqm-logo.png" group-title="Music",HQM Arabic (1080p) [Timeout] -https://livelist01.yowi.tv/lista/39596c72840d27b213caf4e58c39599a6f2ed203/master.m3u8 -#EXTINF:-1 tvg-id="HQMBaladas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/baladas-hqm-logo.png" group-title="Music",HQM Baladas (1080p) [Timeout] -https://livelist01.yowi.tv/lista/5d7d2c21e0ec7a8a99fd1fdbc52cbdc0782f77fc/master.m3u8 -#EXTINF:-1 tvg-id="HQMBlues.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/relax-hqm-logo.png" group-title="Music",HQM Blues (1080p) [Timeout] -https://livelist01.yowi.tv/lista/81c601f370e44dc566113fd752204be5f5f53b61/master.m3u8 -#EXTINF:-1 tvg-id="HQMChillOut.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/chillout-hqm-logo.png" group-title="Music",HQM Chill Out (1080p) [Timeout] -https://livelist01.yowi.tv/lista/183a351ddb0e57af6d735256226e6033c32219ab/master.m3u8 -#EXTINF:-1 tvg-id="HQMClassic.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/classic-hqm-logo.png" group-title="Music",HQM Classic (1080p) [Timeout] -https://livelist01.yowi.tv/lista/f04129475945936b248aa723de56519ea2ff10fc/master.m3u8 -#EXTINF:-1 tvg-id="HQMDance.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/dance-hqm-logo.png" group-title="Music",HQM Dance (1080p) [Timeout] -https://livelist01.yowi.tv/lista/57cf2f51b07ff21988a7a6f0270a66d41086d4a4/master.m3u8 -#EXTINF:-1 tvg-id="HQMFolk.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/folk-hqm-logo.png" group-title="Music",HQM Folk (1080p) [Timeout] -https://livelist01.yowi.tv/lista/9f5310c179e8e840188d183be235f755b18cf703/master.m3u8 -#EXTINF:-1 tvg-id="HQMGym.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/gym-hqm-logo.png" group-title="Music",HQM Gym (1080p) [Timeout] -https://livelist01.yowi.tv/lista/abb87f329d0ed03072b1930e9636a53e8076c8d5/master.m3u8 -#EXTINF:-1 tvg-id="HQMHipHop.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/hiphop-hqm-logo.png" group-title="Music",HQM Hip Hop (1080p) [Timeout] -https://livelist01.yowi.tv/lista/8327abc87895df4c76db1155435fdca6a3607bbd/master.m3u8 -#EXTINF:-1 tvg-id="HQMHits.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/hits-hqm-logo.png" group-title="Music",HQM Hits (1080p) [Timeout] -https://livelist01.yowi.tv/lista/5e2db2017a8fd03f73b40ede363d1a586db4e9a6/master.m3u8 -#EXTINF:-1 tvg-id="HQMJazz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/jazz-hqm-logo.png" group-title="Music",HQM Jazz (1080p) [Timeout] -https://livelist01.yowi.tv/lista/f204aa5b3f0691e69851b54b7746ef09ede26f6a/master.m3u8 -#EXTINF:-1 tvg-id="HQMKids.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/kids-hqm-logo.png" group-title="Music",HQM Kids (1080p) [Timeout] -https://livelist01.yowi.tv/lista/e4bc12dafe33c3ceb3e382e3acc0ec2c012cf7fd/master.m3u8 -#EXTINF:-1 tvg-id="HQMLatin.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/latin-hqm-logo.png" group-title="Music",HQM Latin (1080p) [Timeout] -https://livelist01.yowi.tv/lista/9a4da7871ec57b4b63ed49597a13d09869172be0/master.m3u8 -#EXTINF:-1 tvg-id="HQMPop.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/rock-hqm-logo.png" group-title="Music",HQM Pop (1080p) [Timeout] -https://livelist01.yowi.tv/lista/eb2fa68a058a701fa5bd2c80f6c8a6075896f71d/master.m3u8 -#EXTINF:-1 tvg-id="HQMRelax.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/relax-hqm-logo.png" group-title="Music",HQM Relax (1080p) [Timeout] -https://livelist01.yowi.tv/lista/dc1b71c6fda2e687050facaa7242062cbf5a7f2a/master.m3u8 -#EXTINF:-1 tvg-id="HQMRemember.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/remember-hqm-logo.png" group-title="Music",HQM Remember (1080p) [Timeout] -https://livelist01.yowi.tv/lista/57c98e2e295a0b69b52dc5f84edc4b1b68783ba2/master.m3u8 -#EXTINF:-1 tvg-id="HQMRock.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/rock-hqm-logo.png" group-title="Music",HQM Rock (1080p) [Timeout] -https://livelist01.yowi.tv/lista/0d6c7ccfac89946bfd41ae34c527e8d94734065c/master.m3u8 -#EXTINF:-1 tvg-id="HQMSpanish.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/spanish-hqm-logo.png" group-title="Music",HQM Spanish (1080p) [Timeout] -https://livelist01.yowi.tv/lista/8635ae40f8d1a32eccd63d1f58b55662c9c98f9f/master.m3u8 -#EXTINF:-1 tvg-id="HuescaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hmYDqGV.png" group-title="",Huesca TV (240p) [Not 24/7] -https://streaming2.radiohuesca.com/hls-live/livepkgr/_definst_/huescatv/huescatv.m3u8 -#EXTINF:-1 tvg-id="IB3Global.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",IB3 Global (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCff_CBVJDTHP4wOHPjP5BMg/live -#EXTINF:-1 tvg-id="IbizaGlobalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Ibiza Global TV (720p) [Not 24/7] -https://ibgrtv.streaming-pro.com/hls/ibgrlive.m3u8 -#EXTINF:-1 tvg-id="ImasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/a9hgTmM.png" group-title="",Imás TV (1080p) [Not 24/7] -https://secure3.todostreaming.es/live/imastv-livestream.m3u8 -#EXTINF:-1 tvg-id="InteralmeriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/u0lyhFX.png" group-title="",Interalmeria TV (1080p) -https://interalmeria.tv/directo/live.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (576p) [Not 24/7] -https://str.intercomarcal.com/hls/tvisd.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (288p) [Not 24/7] -http://78.41.83.88:8880/hls/tvixa.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (288p) [Not 24/7] -https://str.intercomarcal.com/hls/tvixa.m3u8 -#EXTINF:-1 tvg-id="Islatel.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Islatel (404p) [Not 24/7] -https://zone.controlstreams.com:5443/LiveApp/streams/islatel.m3u8 -#EXTINF:-1 tvg-id="JuntaCastillayLeon.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Junta Castilla y León (1080p) [Not 24/7] -https://16escalones-live2.flumotion.com/chunks.m3u8 -#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] -https://hlsliveamdgl7-lh.akamaihd.net/i/hlsdvrlive_1@583042/master.m3u8 -#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/la1_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/1688877.m3u8 -#EXTINF:-1 tvg-id="La1Canarias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Canarias (576p) [Geo-blocked] -https://hlsliveamdgl7-lh.akamaihd.net/i/hlslive_1@134665/master.m3u8 -#EXTINF:-1 tvg-id="La1Canarias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Canarias (576p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/5190066.m3u8 -#EXTINF:-1 tvg-id="La1Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Catalunya (576p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/cat/la1_cat_main_dvr.m3u8 -#EXTINF:-1 tvg-id="La1Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Catalunya (576p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/3293681.m3u8 -#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (1080p) -https://ztnr.rtve.es/ztnr/1688885.m3u8 -#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (720p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlsdvrlive_1@60531/master.m3u8 -#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (1080p) [Timeout] -https://rtvelivestreamv3.akamaized.net/rtvesec/la2_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="La8Avila.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Avila (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8avilalive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Bierzo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Bierzo (720p) -https://cdnlive.shooowit.net/la8bierzolive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Burgos.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Burgos (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8burgoslive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Leon.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Leon (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8leonlive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Mediterraneo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Mediterráneo (1080p) [Not 24/7] -https://play.cdn.enetres.net/489DDF7FE98241D19D8970314BC9D3EF021/0226/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Palencia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Palencia (404p) [Not 24/7] -https://cdnlive.shooowit.net/la8palencialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Salamanca.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Salamanca (720p) -https://cdnlive.shooowit.net/la8salamancalive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Segovia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Segovia (720p) -https://cdnlive.shooowit.net/la8segovialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Soria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Soria (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8sorialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Valladolid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Valladolid (720p) -https://cdnlive.shooowit.net/la8valladolidlive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Zamora.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Zamora (720p) -https://cdnlive.shooowit.net/la8zamoralive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LaUrbanTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La Urban TV (1080p) [Not 24/7] -https://urbanrevolution.es:8443/live/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="LaVoz24h.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Vp26cr1.jpg" group-title="Entertainment",La Voz 24h (720p) -https://pull12.atresmedia.com/lavoz/master.m3u8 -#EXTINF:-1 tvg-id="LA7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rtvcyl/picture?width=320&height=320" group-title="",LA7 (720p) -https://cdnlive.shooowit.net/la7live/smil:channel1.smil/master.m3u8 -#EXTINF:-1 tvg-id="LancelotTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GIldurl.jpg" group-title="",Lancelot TV (576p) [Not 24/7] -https://cdn01.yowi.tv/I7V5TFE97R/master.m3u8 -#EXTINF:-1 tvg-id="LaOtra.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/laotra-mediano.png" group-title="",LaOtra (720p) -https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/laotra_1/index.m3u8 -#EXTINF:-1 tvg-id="LebrijaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oe66woA.png" group-title="",Lebrija TV (360p) [Not 24/7] -http://212.104.160.156:1935/live/lebrijatv2/playlist3.m3u8 -#EXTINF:-1 tvg-id="LevanteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/levantetv/picture?width=320&height=320" group-title="",Levante TV (320p) [Not 24/7] -https://play.cdn.enetres.net/C2F6CBB67E5B4D08A16CE5FE67ABCEC9023/029/playlist.m3u8 -#EXTINF:-1 tvg-id="LleidaTelevisio.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6qZNM6E.png" group-title="",Lleida Televisio (720p) [Not 24/7] -https://cdn01.yowi.tv/lleida/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://proyectoesperanza.es/wp-content/uploads/2017/02/logos-logo-big.png" group-title="",Logos TV (1080p) [Not 24/7] -http://streamer1.streamhost.org/salive/logosH/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://proyectoesperanza.es/wp-content/uploads/2017/02/logos-logo-big.png" group-title="",Logos TV (1080p) [Not 24/7] -https://streamer1.streamhost.org/salive/logosH/master.m3u8 -#EXTINF:-1 tvg-id="M95TelevisionMarbella.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/m95tvmarbella/picture?width=320&height=320" group-title="Local",M95 Televisión Marbella (576p) [Not 24/7] -https://limited2.todostreaming.es/live/m95-livestream.m3u8 -#EXTINF:-1 tvg-id="MaestratTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Maestrat TV (1080p) [Not 24/7] -https://stream.maestrat.tv/hls/stream.m3u8 -#EXTINF:-1 tvg-id="MarTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/W1yuLKu.jpg" group-title="",Mar TV (1080p) [Not 24/7] -http://iptv.btpba1.es.network.do:8080/martv-web/video.m3u8 -#EXTINF:-1 tvg-id="MirameTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Mírame TV (360p) [Not 24/7] -https://bit.controlstreams.com:5443/LiveApp/streams/mirametv.m3u8 -#EXTINF:-1 tvg-id="NavarraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Navarra TV (576p) [Not 24/7] -https://pc-sumandocomunicacion-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NegociosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Negocios TV (720p) [Offline] -https://play.gooru.live/playnegocios/5646-1603313320000/master.m3u8 -#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (720p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/01.m3u8 -#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (576p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/03.m3u8 -#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (576p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/03.m3u8 -#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (720p) [Geo-blocked] -https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/01.m3u8 -#EXTINF:-1 tvg-id="NoroesteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Noroeste TV (720p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8032/index.m3u8 -#EXTINF:-1 tvg-id="OizmendiTelebista.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/oizmenditelebista/picture?width=320&height=320" group-title="",Oizmendi Telebista (404p) [Not 24/7] -https://5940924978228.streamlock.net/8161/8161/master.m3u8 -#EXTINF:-1 tvg-id="OlympicsChannel.es" tvg-country="ES" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7olympics.png" group-title="",Olympics Channel (1080p) [Geo-blocked] -https://iptv-all.lanesh4d0w.repl.co/special/olympics -#EXTINF:-1 tvg-id="OndaCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Onda Cádiz (1080p) -https://adc-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="OndaMadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ondamadridradio/picture?width=320&height=320" group-title="",Onda Madrid (360p) [Offline] -http://ondamadridhls-live.hls.adaptive.level3.net/telemadrid/ondamadrid1/index.m3u8 -#EXTINF:-1 tvg-id="OndaMadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BA6HVt3.png" group-title="",Onda Madrid (360p) [Offline] -http://telemadridhls-live.hls.adaptive.level3.net/telemadrid/tvradio/index.m3u8 -#EXTINF:-1 tvg-id="OndaMezquita7TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",OndaMezquita 7 TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/mezquita/mezquita.m3u8 -#EXTINF:-1 tvg-id="Pequeradio.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://static.wixstatic.com/media/76b12f_c9171baf0d3145ea986102ebda0042e5~mv2.png" group-title="",Pequeradio (720p) [Not 24/7] -https://canadaremar2.todostreaming.es/live/peque-pequetv.m3u8 -#EXTINF:-1 tvg-id="PlatziTV.es" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/s-live-5b9076d18ef7b22560354649.png?184" group-title="Education",Platzi TV (1080p) -https://mdstrm.com/live-stream-playlist/5b9076d18ef7b22560354649.m3u8 -#EXTINF:-1 tvg-id="PopularTVCantabria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="",Popular TV Cantabria (576p) [Not 24/7] -https://limited12.todostreaming.es/live/ptvcantabria-livestream.m3u8 -#EXTINF:-1 tvg-id="PopularTVMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="Local",Popular TV Melilla (720p) [Not 24/7] -http://5940924978228.streamlock.net:1935/8009/8009/playlist.m3u8 -#EXTINF:-1 tvg-id="PopularTVMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="Local",Popular TV Melilla (720p) [Not 24/7] -https://5940924978228.streamlock.net/8009/8009/master.m3u8 -#EXTINF:-1 tvg-id="PopularTVMurcia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Popular TV Murcia (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/populartvrm/populartvrm.m3u8 -#EXTINF:-1 tvg-id="Punt3VallUixo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Punt 3 Vall Uixó (1080p) -https://bit.controlstreams.com:5443/LiveApp/streams/punt3.m3u8 -#EXTINF:-1 tvg-id="RadioRutasdelPerú.es" tvg-country="ES;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1121106071333048/picture?width=320&height=320" group-title="Travel",Radio Rutas del Perú (360p) [Not 24/7] -https://tv.portalexpress.es:3731/stream/play.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMarbella.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RTVMarbella/picture?width=320&height=320" group-title="",Radio Televisión Marbella [Not 24/7] -https://cloudtv.provideo.es/live/marbellatv-livestream.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TelevisionMelilla/picture?width=320&height=320" group-title="",Radio Televisión Melilla (720p) [Not 24/7] -https://tvmelilla-hls-rm-lw.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMogan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotelevisionmogan/picture?width=320&height=320" group-title="",Radio Televisión Mogán (1080p) [Offline] -https://5b38ce71f1f00.streamlock.net/8162/8162/playlist.m3u8 -#EXTINF:-1 tvg-id="RealMadridTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Sports",Real Madrid TV (404p) [Geo-blocked] -https://rmtvlive-lh.akamaihd.net/i/rmtv_1@154306/master.m3u8 -#EXTINF:-1 tvg-id="RT.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RT (720p) [Offline] -https://rt-esp-gd.secure2.footprint.net/1102.m3u8 -#EXTINF:-1 tvg-id="RTVVida.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RTV Vida (1080p) -https://vidartv2.todostreaming.es/live/radiovida-emisiontvhd.m3u8 -#EXTINF:-1 tvg-id="RTVC.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Logo_del_Ente_P%C3%BAblico_Radio_Televisi%C3%B3n_Canaria.svg/1920px-Logo_del_Ente_P%C3%BAblico_Radio_Televisi%C3%B3n_Canaria.svg.png" group-title="General",RTVC (Radio Televisión Canaria) (1080p) -https://rtvc-live1-rm.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVE.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RTVE (576p) [Geo-blocked] -http://hlsliveamdgl8-lh.akamaihd.net/i/hlsdvrlive_1@583030/index_1500_av-b.m3u8 -#EXTINF:-1 tvg-id="SalTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7ewYJ4Y.jpg" group-title="",Sal Televisión (720p) [Not 24/7] -https://www.tdtchannels.com/stream/saltv.m3u8 -#EXTINF:-1 tvg-id="SevillaFCTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/yujGVbm.png" group-title="",Sevilla FC TV (360p) [Not 24/7] -https://open.http.mp.streamamg.com/p/3001314/sp/300131400/playManifest/entryId/0_ye0b8tc0/format/applehttp/protocol/https/uiConfId/30026292/a.m3u8 -#EXTINF:-1 tvg-id="SolidariaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2018/02/solidaria-tv.png" group-title="",Solidaria TV (720p) -https://canadaremar2.todostreaming.es/live/solidariatv-webhd.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/RPXusvS.png" group-title="",Sophia TV (720p) -https://www.onairport.live/sophiatv-es-live/livestream/master.m3u8 -#EXTINF:-1 tvg-id="TAC12.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TAC 12 (720p) [Not 24/7] -https://nodo01-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 -#EXTINF:-1 tvg-id="TAC12.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TAC 12 (720p) [Not 24/7] -https://nodo02-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 -#EXTINF:-1 tvg-id="Taroteame.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OgEeQzl.jpg" group-title="Religious",Tarotéame (576p) [Not 24/7] -http://93.93.67.117:1935/taroteame/tarot_web/playlist.m3u8 -#EXTINF:-1 tvg-id="Tarotvision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tarotvision (576p) [Not 24/7] -http://149.12.64.81:8080/hls/tarotvision.m3u8 -#EXTINF:-1 tvg-id="TEF.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TEF (432p) [Not 24/7] -https://cdn01.yowi.tv/36MLCJRAR2/master.m3u8 -#EXTINF:-1 tvg-id="TeleSafor.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Tele7Safor/picture?width=320&height=320" group-title="",Tele Safor (720p) [Not 24/7] -https://video.telesafor.com/hls/video.m3u8 -#EXTINF:-1 tvg-id="TeleSagunto.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tele Sagunto [Offline] -https://5940924978228.streamlock.net/Directo1_1/smil:Directo1_1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Tdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Tve_teledeporte.png/800px-Tve_teledeporte.png" group-title="",Teledeporte (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/tdp_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Tdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Tve_teledeporte.png/800px-Tve_teledeporte.png" group-title="",Teledeporte (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/tdp/tdp_main_dvr.m3u8 -#EXTINF:-1 tvg-id="TeleGilena.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleGilena (360p) [Not 24/7] -https://5940924978228.streamlock.net/Directo1/Directo1/master.m3u8 -#EXTINF:-1 tvg-id="Telemadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/telemadrid-mediano.png" group-title="",Telemadrid (720p) -https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/telemadrid_1/index.m3u8 -#EXTINF:-1 tvg-id="TeleRibera.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/780539549239902208/g2MfVVuY_400x400.jpg" group-title="",TeleRibera (720p) [Not 24/7] -http://37.187.7.106/teleribera/live.m3u8 -#EXTINF:-1 tvg-id="TeleToledo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleToledo (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/teletoledo/teletoledo.m3u8 -#EXTINF:-1 tvg-id="TeleVigo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleVigo (1080p) [Not 24/7] -https://cloud.streamingconnect.tv:455/televigo/televigo.m3u8 -#EXTINF:-1 tvg-id="TelevisionAranda.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FwIIdKG.png" group-title="Local",Televisión Aranda (720p) [Offline] -https://cdn01.yowi.tv/BBBBBBBBBB/master.m3u8 -#EXTINF:-1 tvg-id="TENTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://tentv.es/wp-content/uploads/2016/05/ten.png" group-title="",TEN TV (720p) [Timeout] -http://91.126.141.201:1935/live/smil:ten.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="tevecat.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",teve.cat (1080p) -https://limited35.todostreaming.es/live/mitjans-livestream.m3u8 -#EXTINF:-1 tvg-id="TevequatreTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tevequatre TV (576p) [Not 24/7] -https://cdn01.yowi.tv/5RO3JQE6LN/master.m3u8 -#EXTINF:-1 tvg-id="TrebujenaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://bopiweb.com/imagenes/2580/tomo.1.M-3503739-3.jpg" group-title="Local",Trebujena TV (360p) [Not 24/7] -http://212.104.160.156:1935/live/trebujenatv2/master.m3u8 -#EXTINF:-1 tvg-id="TreceTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Trece.svg/320px-Trece.svg.png" group-title="",Trece TV (576p) -https://live-edge-bhs-1.cdn.enetres.net/091DB7AFBD77442B9BA2F141DCC182F5021/playlist.m3u8 -#EXTINF:-1 tvg-id="TuyaLaJandaTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/8lajanda/picture?width=320&height=320" group-title="",Tuya La Janda Televisión (1080p) -http://185.210.20.13:8080/0.m3u8 -#EXTINF:-1 tvg-id="TVArtequatre.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Artequatre (576p) [Not 24/7] -https://streaming01.gestec-video.com/hls/artequatreTVA.m3u8 -#EXTINF:-1 tvg-id="TVCanaria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/television_canaria-mediano.png" group-title="",TV Canaria (576p) [Offline] -https://rtvc-live1.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVExtremena.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Extremeña (720p) [Not 24/7] -https://cdn01.yowi.tv/43J82FST7L/master.m3u8 -#EXTINF:-1 tvg-id="TVGirona.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/khRXhT1.png" group-title="Local",TV Girona (720p) -http://ventdelnord.tv:8080/girona/directe.m3u8 -#EXTINF:-1 tvg-id="TVVegaBaja.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Vega Baja (576p) -http://185.29.68.24/tvb.m3u8 -#EXTINF:-1 tvg-id="TV3Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QCKNWMJ.jpg" group-title="",TV3 Catalunya (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist.m3u8 -#EXTINF:-1 tvg-id="TV3CAT.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tv3/picture?width=320&height=320" group-title="",TV3CAT (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="TV3CAT.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/QCKNWMJ.jpg" group-title="",TV3CAT (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tvi_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="TV5Limares.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1192795318749945858/o-jIBTK-_400x400.jpg" group-title="",TV5 Limares (720p) [Not 24/7] -https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5Limares.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1192795318749945858/o-jIBTK-_400x400.jpg" group-title="",TV5 Limares (720p) [Not 24/7] -https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGAmerica.es" tvg-country="HISPAM;ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/1Z6svKc.jpg" group-title="General",TVG América (720p) -https://america-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGCultural.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Cultural (720p) -https://cultural-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEuropa.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/media/D2lBaVIX0AISqxR.jpg" group-title="",TVG Europa (720p) -https://europa-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEvento1.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Evento 1 (720p) [Not 24/7] -https://events1-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEvento5.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CRTVG/picture?width=320&height=320" group-title="Local",TVG Evento 5 (720p) [Not 24/7] -https://amodino-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGInfantil.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Infantil (720p) [Not 24/7] -https://infantil-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGMomento.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/QkhxAuY.png" group-title="Local",TVG Momento (720p) [Not 24/7] -https://momentog-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGMusigal.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Musigal (360p) [Not 24/7] -https://musigal-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="tvG2.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/YAnSTc6.jpg" group-title="Local",tvG2 (720p) [Not 24/7] -https://events2-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="tvG2.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/YAnSTc6.jpg" group-title="Local",tvG2 (720p) [Not 24/7] -https://events3-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVM.Cordoba/picture?width=320&height=320" group-title="",TVM Córdoba (414p) [Not 24/7] -http://teledifusion.tv/cordoba/cordobalive/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVM.Cordoba/picture?width=320&height=320" group-title="",TVM Córdoba (414p) [Not 24/7] -https://5924d3ad0efcf.streamlock.net/cordoba/cordobalive/playlist.m3u8 -#EXTINF:-1 tvg-id="UDLasPalmasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",UD Las Palmas TV [Offline] -https://cdn041.fractalmedia.es/stream/live/udtv/index.m3u8 -#EXTINF:-1 tvg-id="UneVinalopo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/UneVinalopo/picture?width=320&height=320" group-title="",Une Vinalopó (576p) [Not 24/7] -http://78.41.83.88:8880/hls/unesd.m3u8 -#EXTINF:-1 tvg-id="VentdelnordTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Ventdelnord TV (720p) -http://ventdelnord.tv:8080/hls/directe.m3u8 -#EXTINF:-1 tvg-id="Vision6TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TB1wMQ7.jpg" group-title="",Visión 6 TV (720p) [Not 24/7] -https://secure3.todostreaming.es/live/visionseis-livestream.m3u8 -#EXTINF:-1 tvg-id="XtraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w1Lc150.jpg" group-title="Music",Xtra TV (720p) [Offline] -https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/index.m3u8 -#EXTINF:-1 tvg-id="XtraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w1Lc150.jpg" group-title="Music",Xtra TV (720p) [Offline] -https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/playlist.m3u8 -#EXTINF:-1 tvg-id="ZafraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Zafra TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/radiotvzafra/radiotvzafra.m3u8 diff --git a/channels/es_rakuten.m3u b/channels/es_rakuten.m3u deleted file mode 100644 index 3b3202ce8..000000000 --- a/channels/es_rakuten.m3u +++ /dev/null @@ -1,135 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) -https://brat-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubbingTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/600ad8f86e1eba00081da3ce/solidLogoPNG.png" group-title="",Clubbing TV (720p) -https://clubbingtv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNInternationalEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International Europe (720p) -https://cnn-cnninternational-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) -https://comedydynamics-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DestinationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1lBeOHC.png" group-title="",Destination TV (720p) [Offline] -https://makingitmedia-destinationtv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) -https://mmm-ducktv-4-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) [Not 24/7] -https://edgesports-row-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (1080p) -https://estv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/HBksX8u.png" group-title="Lifestyle",Fashion TV (1080p) -https://fashiontv-fashiontv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] -https://spi-filmstream-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FrootTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bRaihBR.png" group-title="Lifestyle",Froot TV (720p) [Offline] -https://outtv-froottv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-10-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (1080p) [Offline] -https://futuretoday-happykids-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-eng-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-ger-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-spa-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) -https://introuble-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-eng-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-ger-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LoneStar.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzMxMzM1NzJf/LoneStar_250x250.png" group-title="Classic",Lone Star (1080p) -https://lonestar-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6ZnRHoE.jpg" group-title="Sports",LSN (720p) [Offline] -https://asermedia-lacrossesportsnetwork-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/KMGUuAX.png" group-title="Sports",MavTV Select (720p) -https://mavtv-mavtvglobal-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphereuk-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Spain (1080p) -https://appletree-mytimespain-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Classical (720p) [Offline] -https://qwestclassic-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Jazz & Beyond (720p) [Offline] -https://qwestjazz-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Mix (720p) [Offline] -https://qwestmix-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 1 (720p) [Offline] -https://rakuten-actionmovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 2 (720p) [Offline] -https://rakuten-actionmovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 3 (720p) [Offline] -https://rakuten-actionmovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 1 (720p) [Offline] -https://rakuten-comedymovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 2 (720p) [Offline] -https://rakuten-comedymovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 3 (720p) [Offline] -https://rakuten-comedymovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 6 (720p) [Offline] -https://rakuten-comedymovies-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 7 (720p) [Offline] -https://rakuten-comedymovies-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 1 (720p) [Offline] -https://rakuten-spotlight-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 2 (720p) [Offline] -https://rakuten-spotlight-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 3 (720p) [Offline] -https://rakuten-spotlight-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 6 (720p) [Offline] -https://rakuten-spotlight-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 7 (720p) [Offline] -https://rakuten-spotlight-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 1 (720p) -https://rakuten-topfree-1-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 2 (720p) -https://rakuten-topfree-2-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 3 (720p) -https://rakuten-topfree-3-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 6 (720p) -https://rakuten-topfree-6-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 7 (720p) -https://rakuten-topfree-7-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 1 (720p) [Offline] -https://rakuten-tvshows-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 2 (720p) [Offline] -https://rakuten-tvshows-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 3 (720p) [Offline] -https://rakuten-tvshows-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 6 (720p) [Offline] -https://rakuten-tvshows-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 7 (720p) [Offline] -https://rakuten-tvshows-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ReutersTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/VUlZlJe.jpg" group-title="",Reuters TV (720p) [Timeout] -https://reuters-reuters-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) [Offline] -https://revry-revry-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RevryNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AdIThwq.png" group-title="Lifestyle",Revry News (720p) [Offline] -https://revry-revrynews-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (720p) [Offline] -https://runtime-espana-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RushStreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8wXTK2H.jpg" group-title="",Rush Street (720p) [Offline] -https://rushstreet-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (1080p) [Offline] -https://sofytv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Europe (720p) [Offline] -https://the-pet-collective-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Europe (720p) [Offline] -https://jukin-weatherspy-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (1080p) -https://lds-wonder-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) -https://younghollywood-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (720p) [Offline] -https://rockentertainment-zoomoo-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 diff --git a/channels/es_samsung.m3u b/channels/es_samsung.m3u deleted file mode 100644 index b4b9d63b1..000000000 --- a/channels/es_samsung.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ActionMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Action Movies (720p) [Offline] -https://rakuten-actionmovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BigName.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hChduSn.png" group-title="",Big Name (720p) [Offline] -https://alchimie-big-names-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ButacaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GWnwPHp.png" group-title="Entertainment",Butaca TV (720p) [Offline] -https://veranda-butacatv-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Caillou.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4zJqmw6.png" group-title="",Caillou (720p) [Offline] -https://dhx-caillou-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCinesverdi.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Cinesverdi (720p) [Offline] -https://contracorriente-canalcinesverdi-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalFeelgood.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Feel good (720p) [Offline] -https://contracorriente-canalfeelgood-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Comedy Movies (720p) [Offline] -https://rakuten-comedymovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) -https://mmm-ducktv-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ElPatioSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",El Patio (Spain) (720p) [Offline] -https://alchimie-elpatio-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) -https://rakuten-euronews-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FamilyMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Family Movies (720p) [Offline] -https://rakuten-family-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (Spain) (1080p) -https://fashiontv-fashiontv-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-7-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNatureEspanol.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature Español (1080p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00090-blueantmedia-lnrcastilian-samsungspain/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] -https://alchimie-mmatv-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] -https://alchimie-moods-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] -https://alchimie-mysurf-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetaKids.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CMRkI5N.jpg" group-title="Kids",Planeta Kids (720p) [Offline] -https://deaplaneta-planetakidz-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (720p) -https://runtimeespana-samsungspain.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) -https://sofytv-samsunges.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Spotlight.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Spotlight (720p) [Offline] -https://rakuten-spotlight-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveSpain.us" tvg-country="ES" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Spain (720p) [Offline] -https://the-pet-collective-international-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceSportStars.fr" tvg-country="ES" tvg-language="English;Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_trace-sports-stars_m.png" group-title="Sports",Trace Sport Stars (1080p) [Geo-blocked] -http://tracesportstars-samsunges.amagi.tv/hls/amagi_hls_data_samsunguk-tracesport-samsungspain/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TVShows.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oMXfdkV.png" group-title="",TV Shows (720p) [Offline] -https://rakuten-tvshows-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="UnearthSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",Unearth (Spain) (720p) [Offline] -https://alchimie-unearth-3-es.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/et.m3u b/channels/et.m3u deleted file mode 100644 index aae2b2fa6..000000000 --- a/channels/et.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AddisTV.et" tvg-country="ET" tvg-language="Amharic" tvg-logo="https://i.imgur.com/KAg6MOI.png" group-title="",Addis TV (720p) -https://rrsatrtmp.tulix.tv/addis1/addis1multi.smil/playlist.m3u8 diff --git a/channels/fi.m3u b/channels/fi.m3u deleted file mode 100644 index e947887f5..000000000 --- a/channels/fi.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlfaTV.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="" group-title="General",AlfaTV (432p) [Not 24/7] -https://alfatv.digitacdn.net/live/_definst_/alfatv/amlst:alfatv.amlst/playlist.m3u8 -#EXTINF:-1 tvg-id="HimlenTV7.fi" tvg-country="FI" tvg-language="English;Swedish" tvg-logo="https://i.imgur.com/pW6pPFF.jpg" group-title="Religious",Himlen TV7 (720p) -https://vod.tv7.fi/tv7-se/smil:tv7-se.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TaevasTV7.fi" tvg-country="FI" tvg-language="Finnish;Estonian" tvg-logo="https://i.imgur.com/FaQQdzz.png" group-title="Religious",Taevas TV7 (720p) -https://vod.tv7.fi/tv7-ee/smil:tv7-ee.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TaivasTV7.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://i.imgur.com/pIYSEUN.jpg" group-title="Religious",Taivas TV7 (720p) -https://vod.tv7.fi/tv7-fi/smil:tv7-fi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="YLETV1.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Yle_TV1_logo.svg/382px-Yle_TV1_logo.svg.png" group-title="",YLE TV 1 (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yletv1hls_1@103188/master.m3u8 -#EXTINF:-1 tvg-id="YLETV1.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Yle_TV1_logo.svg/382px-Yle_TV1_logo.svg.png" group-title="",YLE TV 1 (720p) [Not 24/7] -https://yletvhdliveworld-lh.akamaihd.net/i/yletv1hdworld_1@187592/master.m3u8 -#EXTINF:-1 tvg-id="YLETV2.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Yle_TV2_logo.svg/399px-Yle_TV2_logo.svg.png" group-title="",YLE TV 2 (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yletv2hls_1@103189/master.m3u8 -#EXTINF:-1 tvg-id="YLETV2.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Yle_TV2_logo.svg/399px-Yle_TV2_logo.svg.png" group-title="",YLE TV 2 (720p) [Not 24/7] -https://yletvhdliveworld-lh.akamaihd.net/i/yletv2hdworld_1@187593/master.m3u8 -#EXTINF:-1 tvg-id="YLETVTeemaAndFem.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="" group-title="",YLE TV Teema & Fem (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yleteemafemfi_1@490775/master.m3u8 -#EXTINF:-1 tvg-id="NebesaTV7.fi" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.nebesatv7.com/wp-content/themes/tv7-theme/assets/img/logo_nebesa_short.png" group-title="Religious",Небеса ТВ7 (720p) -https://vod.tv7.fi/tv7-ru/tv7-ru.smil/playlist.m3u8 diff --git a/channels/fi_samsung.m3u b/channels/fi_samsung.m3u deleted file mode 100644 index 536eb8444..000000000 --- a/channels/fi_samsung.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) -https://rakuten-africanews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) -https://mmm-ducktv-4-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Finland) (720p) [Offline] -https://rakuten-comedy-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Finland) (720p) [Offline] -https://rakuten-documentaries-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Finland) (720p) [Offline] -https://rakuten-drama-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Finland) (720p) -https://rakuten-family-12-fi.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Finland) (720p) [Offline] -https://rakuten-spotlight-12-fi.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/fj.m3u b/channels/fj.m3u deleted file mode 100644 index 0740c78f8..000000000 --- a/channels/fj.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="FijiTV.fj" tvg-country="FJ" tvg-language="English" tvg-logo="https://i.imgur.com/z4AuQtX.png" group-title="",Fiji TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19514369/events/6947821/live.m3u8 -#EXTINF:-1 tvg-id="FijiTV.fj" tvg-country="FJ" tvg-language="English" tvg-logo="https://i.imgur.com/z4AuQtX.png" group-title="",Fiji TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19514369/events/fijitvstream/live.m3u8 diff --git a/channels/fo.m3u b/channels/fo.m3u deleted file mode 100644 index 6bab26b22..000000000 --- a/channels/fo.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KVFSjonvarp.fo" tvg-country="FO" tvg-language="Faroese" tvg-logo="https://i.imgur.com/Nb93Skv.jpg" group-title="",KVF (720p) [Not 24/7] -https://w1.kringvarp.fo/uttanlands/smil:uttanlands.smil/playlist.m3u8 diff --git a/channels/fr.m3u b/channels/fr.m3u deleted file mode 100644 index ab39d2598..000000000 --- a/channels/fr.m3u +++ /dev/null @@ -1,257 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7ALimoges.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/3AelRxI.png" group-title="Local",7ALimoges (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCdFv_ZWQ3Xk_NfRiaK-ryGg/live -#EXTINF:-1 tvg-id="AlpedHuezTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/0RQvs8y.png" group-title="",Alpe d’Huez TV (720p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:adhtv/chunklist.m3u8 -#EXTINF:-1 tvg-id="Alsace20.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/S8TuhyF.png" group-title="Local",Alsace 20 (720p) -http://live.alsace20.fr/live/alsace20/ngrp:alsace20_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenneReunion.fr" tvg-country="FR;MU" tvg-language="French" tvg-logo="https://i.imgur.com/EPIMMaB.png" group-title="Local",Antenne Réunion (720p) [Not 24/7] -https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01 -#EXTINF:-1 tvg-id="ARTEDeutsch.fr" tvg-country="DE" tvg-language="German" tvg-logo="https://www.arte.tv/sites/corporate/wp-content/themes/arte-entreprise/img/arte_logo.png" group-title="Entertainment",Arte Deutsch [Geo-blocked] -https://artesimulcast.akamaized.net/hls/live/2030993/artelive_de/index.m3u8 -#EXTINF:-1 tvg-id="ARTEFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.arte.tv/sites/corporate/wp-content/themes/arte-entreprise/img/arte_logo.png" group-title="Entertainment",ARTE Français (720p) [Geo-blocked] -https://artesimulcast.akamaized.net/hls/live/2031003/artelive_fr/index.m3u8 -#EXTINF:-1 tvg-id="BeurTV.fr" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KQcT9cz.png" group-title="",Beur TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Beur_TV/htatv/Beur_TV_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="BFMBusiness.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mihujKt.jpg" group-title="Business",BFM Business (480p) [Offline] -https://bfmbusinesshds-lh.akamaihd.net/i/BFMBUSINESS_ESYTLS@664128/master.m3u8 -#EXTINF:-1 tvg-id="BFMGrandLille.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Local",BFM Grand Lille (720p) -https://live.creacast.com/grandlilletv/smil:grandlilletv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BFMGrandLittoral.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Local",BFM Grand Littoral (720p) -https://live.creacast.com/grandlittoral/smil:grandlittoral.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BFMLyon.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.ibb.co/8Y3FB3B/LYON.png" group-title="Local",BFM Lyon (480p) -https://bfmlyon-lh.akamaihd.net/i/BFMLYON_ESYTLS@797041/master.m3u8 -#EXTINF:-1 tvg-id="BFMParis.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4buTOS3.png" group-title="Local",BFM Paris (480p) -https://bfmparishdslive-lh.akamaihd.net/i/BFMPARIS_ESYTLS@429747/master.m3u8 -#EXTINF:-1 tvg-id="BFMTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/ClMYrD0.png" group-title="News",BFMTV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xgz4t1 -#EXTINF:-1 tvg-id="BIPTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/b/b1/Bip_TV_logo.png" group-title="",BIP TV (480p) [Not 24/7] -http://biptv.tv/live/biptvstream_orig/index.m3u8 -#EXTINF:-1 tvg-id="CentralTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://pbs.twimg.com/profile_images/875664704764608512/L-8xnjNf_400x400.jpg" group-title="",Central TV (614p) [Not 24/7] -http://cdn2.ujjina.com:1935/iptvcentraltv/livecentraltvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cherie25.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/pg8hnPT.png" group-title="Entertainment",Chérie 25 (360p) [Timeout] -https://s6.tntendirect.com/cherie25/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Cnews.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/vT6GMpCV/cnews.png" group-title="News",Cnews (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3b68jn -#EXTINF:-1 tvg-id="CSTAR.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kPvRgcY.png" group-title="Entertainment",CSTAR (720p) -http://flusonic-4.platinum-tv.com/D17/tracks-v1a1/mono.m3u8?token=test -#EXTINF:-1 tvg-id="DBM.fr" tvg-country="FR" tvg-language="French" tvg-logo="http://www.dbm-tv.fr/wp-content/uploads/2017/12/logo-dbm.png" group-title="",DBM (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:dbmtv/manifest.m3u8 -#EXTINF:-1 tvg-id="DBMTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",DBM TV (1080p) -http://dbmtv.vedge.infomaniak.com/livecast/dbmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ElHeddafTV.fr" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qd1sCE8.png" group-title="",El Heddaf TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_HEDDAF_TV/htatv/EL_HEDDAF_TV_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="EMCITV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/avIsx8W.png" group-title="",EMCI TV (1080p) -https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 -#EXTINF:-1 tvg-id="EMCITV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/avIsx8W.png" group-title="",EMCI TV Montreal (1080p) -https://emci-td-hls.akamaized.net/hls/live/2007264/emcitdhls/index.m3u8 -#EXTINF:-1 tvg-id="EuronewsAlbania.fr" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/hTBah1z.jpg" group-title="News",Euronews Albania (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChR-A__NS_C5kHDWj3PeAhw/live -#EXTINF:-1 tvg-id="EuronewsenEspanol.es" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews en Español (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/euronewses/live -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews English (720p) -https://d1mpprlbe8tn2j.cloudfront.net/v1/master/7b67fbda7ab859400a821e9aa0deda20ab7ca3d2/euronewsLive/87O7AhxRUdeeIVqf/ewnsabren_eng.m3u8 -#EXTINF:-1 tvg-id="EuronewsHungary.fr" tvg-country="HR" tvg-language="Hungarian" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews Hungary (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/euronewsHungarian/live -#EXTINF:-1 tvg-id="Euronewsporusski.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews по-русски (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFzJjgVicCtFxJ5B0P_ei8A/live -#EXTINF:-1 tvg-id="Euronewsporusski.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="News",Euronews по-русски (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s89/index.m3u8 -#EXTINF:-1 tvg-id="FashionTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/HBksX8u.png" group-title="Lifestyle",Fashion TV (576p) [Not 24/7] -http://entertainment.ashttp9.visionip.tv/live/visiontvuk-entertainment-edgytv-hsslive-25f-16x9-SD/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="XXX",Fashion TV Midnite Secrets (1080p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_midnite_k1y_27049_midnite_secr_108_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="XXX",Fashion TV Midnite Secrets (1080p) -https://fash1043.cloudycdn.services/slive/ftv_midnite_secrets_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVNewYork.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV New York (PG13) (720p) [Not 24/7] -https://fash2043.cloudycdn.services/slive/ftv_ftv_gmt_-5_qko_43090_default_1225_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVParis.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="Lifestyle",Fashion TV Paris (144p) -https://fash1043.cloudycdn.services/slive/ftv_paris_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVParisMumbai.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/yvNu4Rm.png" group-title="Lifestyle",Fashion TV Paris-Mumbai (1080p) [Not 24/7] -https://fash1043.cloudycdn.services/slive/ftv_ftv_asia_gmt_vmf_43163_default_1298_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVPG13.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/n6owIqv.png" group-title="Lifestyle",Fashion TV PG13 (240p) -https://fash1043.cloudycdn.services/slive/ftv_pg13_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVPG16.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV PG16 (144p) -http://fash1043.cloudycdn.services/slive/ftv_pg16_adaptive.smil/media.m3u8 -#EXTINF:-1 tvg-id="FashionTVRussia.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fcnRf1f.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Lifestyle",Fashion TV Russia (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s30/index.m3u8 -#EXTINF:-1 tvg-id="FashionTVSingapore.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Singapore (240p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_asia_ada_xiv_42149_default_137_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVTokyo.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Tokyo (PG13) (1080p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_sam_197_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVTokyo.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Tokyo (PG13) (240p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_196_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVUHD.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV UHD (2160p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_4k_hevc_73d_42080_default_466_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVCzechSlovak.fr" tvg-country="CZ" tvg-language="English" tvg-logo="http://www.tvfashion.eu/wp-content/themes/Divi-child/images/logo-tvfashion-piatok.png" group-title="Lifestyle",FashionTV Czech&Slovak (450p) -http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMumbai.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/yvNu4Rm.png" group-title="Lifestyle",FashionTV Mumbai (1080p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_pg13_gmt_ess_43126_default_1262_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="France2.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/SKxgxTLz/fr2.png" group-title="General",France 2 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france2/playlist.m3u8 -#EXTINF:-1 tvg-id="France3.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/JzmT94Gx/fr3.png" group-title="General",France 3 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france3/playlist.m3u8 -#EXTINF:-1 tvg-id="France4.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/4x58Zkcg/fr4.png" group-title="Kids",France 4 (720p) [Geo-blocked] -http://edge9.iptvnetwork.net/live/france4/playlist.m3u8 -#EXTINF:-1 tvg-id="France5.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/8zjFkLJz/fr5.png" group-title="General",France 5 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france5/playlist.m3u8 -#EXTINF:-1 tvg-id="France24Arabic.fr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Arabic (1080p) -https://static.france24.com/live/F24_AR_HI_HLS/live_tv.m3u8 -#EXTINF:-1 tvg-id="France24Arabic.fr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Arabic (576p) -https://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24English.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 English (1080p) -http://f24hls-i.akamaihd.net/hls/live/221147/F24_EN_HI_HLS/master.m3u8 -#EXTINF:-1 tvg-id="France24English.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 English (576p) -https://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24Espanol.fr" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 Español (1080p) -http://f24hls-i.akamaihd.net/hls/live/520845/F24_ES_HI_HLS/master.m3u8 -#EXTINF:-1 tvg-id="France24Espanol.fr" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 Español (576p) -https://static.france24.com/live/F24_ES_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24Francais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Français (1080p) -https://static.france24.com/live/F24_FR_HI_HLS/live_tv.m3u8 -#EXTINF:-1 tvg-id="France24Francais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Français (1080p) -https://static.france24.com/live/F24_FR_HI_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="FranceInter.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/PYqQyRv.png" group-title="General",France Inter (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCJldRgT_D7Am-ErRHQZ90uw/live -#EXTINF:-1 tvg-id="Franceinfo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://proxymedia.woopic.com/api/v1/images/553%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" group-title="News",Franceinfo (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/franceinfo/live -#EXTINF:-1 tvg-id="Francophonie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/lvrvwtm.png" group-title="",Francophonie (360p) -http://mv2.tvfrancophonie.org/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="Francophonie24.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Francophonie24_275x275.png?raw=true" group-title="",Francophonie24 (1080p) -https://5421175365ea3.streamlock.net/live/smil:switch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GenerationsTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/daUGyPl.jpg" group-title="",Generations TV (576p) -https://edge.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8 -#EXTINF:-1 tvg-id="Gulli.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mMWq0Kn.png" group-title="Kids",Gulli (540p) -https://d13anarbtxy8c5.cloudfront.net/6play/short/clr/gulli/sdindex.m3u8 -#EXTINF:-1 tvg-id="Gulli.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mMWq0Kn.png" group-title="Kids",Gulli (720p) [Not 24/7] -http://flusonic-4.platinum-tv.com/Gulli/mono.m3u8?token=test -#EXTINF:-1 tvg-id="GulliBilArabi.fr" tvg-country="FR" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/gg/gulli-bil-arabie.png" group-title="Kids",Gulli Bil Arabi (1080p) -https://shls-gulli-bil-arabi-prod-dub.shahid.net/out/v1/5454d215afba410c90b233f400730958/index.m3u8 -#EXTINF:-1 tvg-id="GulliGirl.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a000001659f94a58c4010a1851980b99d4d/160x160" group-title="Kids",Gulli Girl (576p) [Not 24/7] -http://188.40.68.167/russia/gulli_girl/playlist.m3u8 -#EXTINF:-1 tvg-id="HodHodTV.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HodHod TV (720p) -http://51.210.199.12/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HolyGodTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/tzurFum.png" group-title="Religious",HolyGod TV (720p) [Offline] -https://dcunilive47-lh.akamaihd.net/i/dclive_1@739146/master.m3u8 -#EXTINF:-1 tvg-id="ILTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/gGhCEmJ.jpg" group-title="",ILTV (720p) [Not 24/7] -https://str81.creacast.com/iltv/high/playlist.m3u8 -#EXTINF:-1 tvg-id="KTO.fr" tvg-country="FR;UK;PT;ES;DK;NL;BE;CH" tvg-language="French" tvg-logo="https://i.imgur.com/LvbXFUy.jpg" group-title="",KTO (404p) [Not 24/7] -https://livehdkto-lh.akamaihd.net/i/LiveStream_1@178944/master.m3u8 -#EXTINF:-1 tvg-id="LEQUIPE.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/zKWbV0W.png" group-title="",L'EQUIPE (360p) [Timeout] -https://s6.tntendirect.com/lequipe21/live/playlist.m3u8 -#EXTINF:-1 tvg-id="LaChaineNormande.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/xDLwsbY.png" group-title="Family",La Chaîne normande (LCN) (576p) [Not 24/7] -http://live.lachainenormande.fr/live/lcn/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="LCI.fr" tvg-country="FR;BE;CH;LU" tvg-language="French" tvg-logo="https://i.imgur.com/6VzdKEa.png" group-title="News",LCI (720p) [Not 24/7] -https://lci-hls-live-ssl.tf1.fr/lci/1/hls/live_2328.m3u8 -#EXTINF:-1 tvg-id="LCP.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/rwBVxjj2/lcp.png" group-title="Legislative",LCP (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xji3qy -#EXTINF:-1 tvg-id="M6.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.epg.best/fr/M6.fr.png" group-title="Entertainment",M6 (1080p) -https://shls-m6-france-prod-dub.shahid.net/out/v1/c8a9f6e000cd4ebaa4d2fc7d18c15988/index.m3u8 -#EXTINF:-1 tvg-id="M6.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.epg.best/fr/M6.fr.png" group-title="Entertainment",M6 (720p) [Not 24/7] -http://flusonic-4.platinum-tv.com/M6/mono.m3u8?token=test -#EXTINF:-1 tvg-id="MCMTop.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5d260d3fab701.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Music",MCM Top (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s49/index.m3u8 -#EXTINF:-1 tvg-id="MDL.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/QjjVd1M.jpg" group-title="",MDL (720p) -http://tv.mondeduloisir.fr:1935/tixtv/smil:web.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Mezzo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/mezzo-logo.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Music",Mezzo (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s35/index.m3u8 -#EXTINF:-1 tvg-id="NancyWebTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/W43rv1R.jpg" group-title="Local",Nancy Web TV (394p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:nancy-webtv/manifest.m3u8 -#EXTINF:-1 tvg-id="NRJ12.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/FO8XMBS.png" group-title="Entertainment",NRJ12 (720p) [Timeout] -https://s6.tntendirect.com/nrj12/live/playlist.m3u8 -#EXTINF:-1 tvg-id="P2MTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/xc8EFmb.png" group-title="",P2M TV (360p) -https://panel.streamparis.fr:3743/stream/play.m3u8 -#EXTINF:-1 tvg-id="PersianaBillboard.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Billboard (720p) [Not 24/7] -http://51.210.199.10/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaCinema.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Cinema (720p) -http://51.210.199.15/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaClassic.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Classic (720p) [Not 24/7] -http://51.210.199.26/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaComedy.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Comedy (720p) -http://51.210.199.27/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaDocumentary.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Documentary",Persiana Documentary (720p) [Not 24/7] -http://51.210.199.23/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaFamily.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Family (720p) -http://51.210.199.19/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaFamilyPlus.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Family Plus (720p) [Not 24/7] -http://51.210.199.13/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaGameTech.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Persiana Game & Tech (720p) [Not 24/7] -http://51.210.199.25/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaIranian.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Iranian (720p) [Not 24/7] -http://51.210.199.22/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaJunior.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Animation",Persiana Junior (720p) -http://51.210.199.18/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaKorea.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Korea (720p) -http://51.210.199.14/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaMusic.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Music (720p) -http://51.210.199.24/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaNostalgia.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Nostalgia (720p) -http://51.210.199.20/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaPlus.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Plus (1080p) -http://51.210.199.21/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaSonati.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Sonati (576p) [Not 24/7] -http://51.210.199.59/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaVarzesh.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Sports",Persiana Varzesh (720p) [Not 24/7] -http://51.210.199.16/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PokerTV.fr" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/l5fZQ3V.png" group-title="Sports",Poker TV (720p) [Not 24/7] -http://51.210.199.17/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PublicSenat.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/rpqnBjbS/public-senat.png" group-title="Legislative",Public Sénat (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xkxbzc -#EXTINF:-1 tvg-id="RMCDecouverte.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/2pZBr1Y.jpg" group-title="Documentary",RMC Découverte (720p) [Timeout] -https://s6.tntendirect.com/rmcdecouverte/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TebeSud.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/WCjP4Wk.jpg" group-title="Local",TébéSud (1080p) [Not 24/7] -https://edge-live-ger1.ovstream.com/hls/10/source.m3u8 -#EXTINF:-1 tvg-id="TF1.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/CJAbJfM.png" group-title="Entertainment",TF1 (720p) -http://flusonic-4.platinum-tv.com/TF1/index.m3u8?token=test -#EXTINF:-1 tvg-id="TF1.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/CJAbJfM.png" group-title="Entertainment",TF1 (720p) [Geo-blocked] -http://edge9.iptvnetwork.net/live/TF1/playlist.m3u8 -#EXTINF:-1 tvg-id="TF1SeriesFilms.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/36wPVaq.jpg" group-title="Series",TF1 Séries Films (360p) [Timeout] -https://s6.tntendirect.com/hd1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TFX.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/psdzDpy.jpg" group-title="Entertainment",TFX (720p) [Timeout] -https://s6.tntendirect.com/nt1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Tiji.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/587a64ca96e87.png" group-title="Kids",Tiji (1080p) [Offline] -https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 -#EXTINF:-1 tvg-id="TijiRussia.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/tiji.png" group-title="Kids",Tiji Russia (576p) [Not 24/7] -http://188.40.68.167/russia/tiji/playlist.m3u8 -#EXTINF:-1 tvg-id="TMACaraibes.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",TMA Caraïbes (1080p) [Not 24/7] -http://hls.tmacaraibes.com/live/index.m3u8 -#EXTINF:-1 tvg-id="TMC.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/Neh3Yhm.jpg" group-title="",TMC (720p) [Timeout] -https://s6.tntendirect.com/tmc/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5MondeEurope.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mwHtXya.jpg" group-title="General",TV5 Monde Europe (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV5MondeEurope.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mwHtXya.jpg" group-title="General",TV5 Monde Europe (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV5MondeFranciaFR.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="General",TV5Monde Francia FR (1080p) -https://tv5infohls-i.akamaihd.net/hls/live/631613/tv5infohls/index.m3u8 -#EXTINF:-1 tvg-id="TV5MondeInfo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/AJx5Fy2.png" group-title="General",TV5Monde Info (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV7Bordeaux.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/NMrYcP8v/tv7-bordeaux.png" group-title="Local",TV7 Bordeaux (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=vGrlJbbfsE4 -#EXTINF:-1 tvg-id="TV7Colmar.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/RuFISFk.png" group-title="Local",TV7 Colmar (576p) -https://tv7.hdr-tv.com/live/tv7/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8MontBlanc.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/BQf9sDGK/8.png" group-title="Local",TV8 Mont-Blanc (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x71o73v -#EXTINF:-1 tvg-id="TV78.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.tv78.com/wp-content/uploads/2019/04/cropped-tv78_logo.png" group-title="Local",TV78 (720p) -https://streamtv.cdn.dvmr.fr/TV78/ngrp:tv78.stream_all/master.m3u8 -#EXTINF:-1 tvg-id="TVR.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.tvr.bzh/favicon-1024.png" group-title="Local",TVR (Bretagne) (720p) -https://streamtv.cdn.dvmr.fr/TVR/ngrp:tvr.stream_all/master.m3u8 -#EXTINF:-1 tvg-id="TZiK.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6Iw1YRL.png" group-title="Music",TZiK [Not 24/7] -https://54627d4fc5996.streamlock.net/tzik/tzik/chunklist.m3u8 -#EXTINF:-1 tvg-id="viaMATELE.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kmna9PU.png" group-title="",viàMATÉLÉ (540p) [Not 24/7] -https://streamer01.myvideoplace.tv/streamer02/hls/MATL_VLOC_PAD_100919_medium/index.m3u8 -#EXTINF:-1 tvg-id="viaMoselleTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/YXUMEbi.png" group-title="Local",viàMoselleTV (720p) [Not 24/7] -https://live.creacast.com/mirabelletv/smil:mirabelletv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="viaOccitanie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://viaoccitanie.tv/fileadmin/via_main/img/logos/viaOccitanie-header.png" group-title="Local",viàOccitanie (540p) [Not 24/7] -https://streamer01.myvideoplace.tv/streamer02/hls/MDS_VIA_PAD_301117.m3u8 -#EXTINF:-1 tvg-id="viaVosges.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/803evgT.png" group-title="Local",viàVosges (576p) [Not 24/7] -https://vosgestv.hdr-tv.com/live/vosgestv/livestream/master.m3u8 -#EXTINF:-1 tvg-id="W9.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/7FFFvCN.jpg" group-title="Entertainment",W9 (720p) [Not 24/7] -http://flusonic-2.platinum-tv.com/W9/mono.m3u8?token=test -#EXTINF:-1 tvg-id="WéoHautsdeFrance.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/FHjvmKYD/weo.png" group-title="Local",Wéo (Hauts-de-France) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x62islg -#EXTINF:-1 tvg-id="WéoPicardie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/FHjvmKYD/weo.png" group-title="Local",Wéo (Picardie) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x63085w diff --git a/channels/fr_samsung.m3u b/channels/fr_samsung.m3u deleted file mode 100644 index 7671c349f..000000000 --- a/channels/fr_samsung.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AmuseAnimation.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/H7GtB0T.jpg" group-title="",Amuse Animation (720p) [Offline] -https://amuse-amuseanimation-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Atelierdeschefs.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/laArg26.png" group-title="",Atelier des chefs (720p) [Offline] -https://alchimie-atelier-des-chefs-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Caillou.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4zJqmw6.png" group-title="",Caillou (720p) [Offline] -https://dhx-caillou-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicalHarmony.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/JQaZblm.jpg" group-title="",Classical Harmony (720p) [Offline] -https://alchimie-classical-harmony-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) -https://rakuten-euronews-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] -https://alchimie-euronews-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEurope.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV L'Original (1080p) -https://fashiontv-fashiontv-loriginal-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-8-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/DFjN26b.jpg" group-title="",Humanity (720p) [Offline] -https://alchimie-humanity-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LuxeTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/8tWhfap.png" group-title="",Luxe TV (720p) [Offline] -https://alchimie-luxe-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] -https://alchimie-moods-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MotorSportTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/cVCb02R.jpg" group-title="",MotorSport.TV (720p) [Offline] -https://alchimie-motor-sport-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoviesCentral.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/dwOoEmE.jpg" group-title="Movies",Movies Central (720p) [Offline] -https://alchimie-movies-central-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] -https://alchimie-mysurf-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesFrance.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (France) (720p) [Offline] -https://rakuten-documentaries-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies France (720p) [Offline] -https://rakuten-actionmovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies France (720p) [Offline] -https://rakuten-comedymovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama France (720p) [Offline] -https://rakuten-tvshows-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies France (720p) [Offline] -https://rakuten-family-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Rakuten TV Spotlight France (720p) [Offline] -https://rakuten-spotlight-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) -https://sofytv-samsungfr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportenFrance.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6L6hQnn.png" group-title="",Sport en France (720p) [Offline] -https://alchimie-sport-en-france-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StormcastNovelasTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/WpQ3N82.png" group-title="",Stormcast Novelas TV (720p) [Offline] -https://stormcast-telenovelatv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kUmPbel.jpg" group-title="Kids",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-3-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Unearth.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/PUacVoP.jpg" group-title="",Unearth (720p) [Offline] -https://alchimie-unearth-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WildsideTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/mZJXXMkp/wildside.png" group-title="Movies",Wildside TV (720p) -https://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8 diff --git a/channels/ge.m3u b/channels/ge.m3u deleted file mode 100644 index fca8f0391..000000000 --- a/channels/ge.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1TV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/mX080in.png" group-title="",1TV (240p) [Geo-blocked] -https://tv.cdn.xsg.ge/gpb-1tv/index.m3u8 -#EXTINF:-1 tvg-id="2TV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/VBmQCH7.png" group-title="",2TV (720p) [Not 24/7] -https://tv.cdn.xsg.ge/gpb-2tv/index.m3u8 -#EXTINF:-1 tvg-id="EnkiBenki.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/RJAT25i.jpg" group-title="Kids",Enki Benki (360p) -http://94.43.239.178:8080/CHANNEL678/BITRATE0/playlist.m3u8 -#EXTINF:-1 tvg-id="Formula.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/fsqBn8G.png" group-title="",Formula (1080p) -https://c4635.cdn.xsg.ge/c4635/TVFormula/index.m3u8 -#EXTINF:-1 tvg-id="MtavariArkhi.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/XVpqukA.png" group-title="",Mtavari Arkhi (480p) -https://bozztv.com/36bay2/mtavariarxi/playlist.m3u8 -#EXTINF:-1 tvg-id="MusicBoxGeorgia.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/ku9kLp8.png" group-title="Music",MusicBox Georgia (180p) -http://94.43.239.178:8080/CHANNEL470/BITRATE0/playlist.m3u8 -#EXTINF:-1 tvg-id="PalitraNews.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/9QVZGow.png" group-title="News",Palitra News (480p) [Not 24/7] -https://live.palitranews.ge/hls/palitratv/index.m3u8 -#EXTINF:-1 tvg-id="PalitraNews.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/AqSRphj.png" group-title="News",Palitra News (480p) [Not 24/7] -https://livestream.palitra.ge/hls/palitratv/index.m3u8 -#EXTINF:-1 tvg-id="RioniTV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/9ecTETD.png" group-title="",Rioni TV (720p) [Not 24/7] -http://video.rionitv.com:9090/hls/live/rioni.m3u8 diff --git a/channels/gh.m3u b/channels/gh.m3u deleted file mode 100644 index 74b248826..000000000 --- a/channels/gh.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ResurrectionTV.gh" tvg-country="GH" tvg-language="Akan" tvg-logo="https://i.imgur.com/d4UOolK.jpg" group-title="",Resurrection TV (384p) -http://rtmp.ottdemo.rrsat.com/rrsatrtv1/rrsatrtvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAfrica.gh" tvg-country="GH" tvg-language="Akan" tvg-logo="https://i.imgur.com/rTsl8XB.jpg" group-title="",TV Africa (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 diff --git a/channels/gl.m3u b/channels/gl.m3u deleted file mode 100644 index f6572eb2a..000000000 --- a/channels/gl.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KNR1.gl" tvg-country="GL" tvg-language="Greenlandic;Danish" tvg-logo="https://i.imgur.com/uQ50JUX.jpg" group-title="",KNR1 (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCIjOAtv53RHerlfl98fZmcQ/live -#EXTINF:-1 tvg-id="KNR2.gl" tvg-country="GL" tvg-language="Greenlandic;Danish" tvg-logo="https://i.imgur.com/uQ50JUX.jpg" group-title="",KNR2 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6D225YIMCwVBiBktEeV-vQ/live diff --git a/channels/gm.m3u b/channels/gm.m3u deleted file mode 100644 index 7f8177c57..000000000 --- a/channels/gm.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="QTV.gm" tvg-country="GM" tvg-language="English;Mandinka;Wolof" tvg-logo="https://i.imgur.com/K5tzOq2.png" group-title="",QTV Gambia (720p) [Not 24/7] -https://player.qtv.gm/hls/live.stream.m3u8 diff --git a/channels/gn.m3u b/channels/gn.m3u deleted file mode 100644 index 881d09739..000000000 --- a/channels/gn.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RTG.gn" tvg-country="GN" tvg-language="French" tvg-logo="https://i.imgur.com/moTF5EE.jpg" group-title="",RTG (240p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@690091/master.m3u8 diff --git a/channels/gp.m3u b/channels/gp.m3u deleted file mode 100644 index 11d1cedde..000000000 --- a/channels/gp.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TMA.gp" tvg-country="GP" tvg-language="French" tvg-logo="https://i.imgur.com/fQUzBsz.png" group-title="Music",TMA (1080p) [Timeout] -http://hls.tmacaraibes.com/live/index.m3u8 diff --git a/channels/gq.m3u b/channels/gq.m3u deleted file mode 100644 index 490e43273..000000000 --- a/channels/gq.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TVGE.gq" tvg-country="GQ" tvg-language="Spanish" tvg-logo="http://www.tvgelive.gq/images/logo-dark.png" group-title="",TVGE (480p) -http://rtmp.ott.mx1.com/tvge1/tvge1multi.smil/playlist.m3u8 diff --git a/channels/gr.m3u b/channels/gr.m3u deleted file mode 100644 index 3d874de19..000000000 --- a/channels/gr.m3u +++ /dev/null @@ -1,229 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="4E.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014332&t=1544180299920" group-title="",4E (720p) -http://eu2.tv4e.gr:554/live/smil:myStream.sdp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="34100TV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Fo1I0dt.jpg" group-title="",34100 TV (720p) [Geo-blocked] -https://s1.cystream.net/live/34100/playlist.m3u8 -#EXTINF:-1 tvg-id="AcheloosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://goo.gl/mNqHoo" group-title="",Acheloos TV (576p) [Not 24/7] -http://srv.viiideo.gr:1935/axeloos/live/playlist.m3u8 -#EXTINF:-1 tvg-id="AkritasTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/aYgRkkB.jpg" group-title="",Akritas TV (1080p) [Not 24/7] -http://akritastv1.flashmediacast.com:1935/akritastv1/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Alert.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alert (576p) [Not 24/7] -https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaDramas.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/39l3uRU.jpg" group-title="Movies",Alfa Dramas (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.alf/playlist.m3u8 -#EXTINF:-1 tvg-id="AliteiaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/H3xtBV3.jpg" group-title="",Aliteia TV [Offline] -https://vdo.alphaserver.gr:3989/stream/play.m3u8 -#EXTINF:-1 tvg-id="Alpha.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alpha (720p) [Offline] -https://alphalive-i.akamaihd.net/hls/live/682300/live/master.m3u8 -#EXTINF:-1 tvg-id="AlphaBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alpha BUP [Timeout] -http://78.83.87.222:9999/play/a011/index.m3u8 -#EXTINF:-1 tvg-id="ANT1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.worldtvpc.com/onlinevideosites/img/ant1.jpg" group-title="",ANT1 (1080p) [Geo-blocked] -https://antennaamdnoenc.akamaized.net/ant1_akamai/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="APT.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",APT (480p) [Not 24/7] -http://tv3.streampulse.eu:1935/tilesport/movie2/playlist.m3u8 -#EXTINF:-1 tvg-id="ARTTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ZgKZ5u9.jpg" group-title="",ART TV (720p) [Not 24/7] -http://176.9.123.140:1935/arttv/arttv/playlist.m3u8 -#EXTINF:-1 tvg-id="AtticaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/s3qWC9W.png" group-title="",Attica TV (1080p) [Not 24/7] -https://e-e.cyou:8222/atticatv/atticatv/playlist.m3u8 -#EXTINF:-1 tvg-id="BananaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/RwETfPc.jpg" group-title="",Banana TV (360p) [Offline] -https://web.onair-radio.eu/bananachannel/bananachannel/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) -https://eco.streams.ovh/BarazaTV/BarazarazaTV/BarazaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) -https://eco.streams.ovh/BarazaTV/BarazaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) [Geo-blocked] -https://panik.cast-control.eu:1936/Admin_1/Admin_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BCI24News.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/aZpv6l9.png" group-title="Local",BCI 24 News (1080p) -https://live.streams.ovh/netmedia/netmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="BestTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Best TV (720p) [Not 24/7] -https://stream.net7.gr/hls/best/index.m3u8 -#EXTINF:-1 tvg-id="CameraSmile.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/W5oLUMk.jpg" group-title="",Camera Smile (480p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-camerasmile/index.m3u8 -#EXTINF:-1 tvg-id="CanaliTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/bGIdE9N.png" group-title="",Canali TV (720p) [Geo-blocked] -http://live.streams.ovh:1935/cannali/cannali/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/24uaLwh.png" group-title="Local",Channel 9 (720p) -http://176.9.123.140:1935/channel9/channel9/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/24uaLwh.png" group-title="Local",Channel 9 (720p) -https://e-e.cyou:8222/channel9/channel9/playlist.m3u8 -#EXTINF:-1 tvg-id="Choice.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/6Yr0Axp.png" group-title="",Choice (1080p) [Not 24/7] -https://vod.streams.ovh:3528/stream/play.m3u8 -#EXTINF:-1 tvg-id="CorfuTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/G7LHkTE.jpg" group-title="",Corfu TV (576p) [Not 24/7] -https://itv.streams.ovh/corfuchannel/corfuchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="Creta.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Creta (540p) [Not 24/7] -http://live.streams.ovh:1935/tvcreta/tvcreta/playlist.m3u8 -#EXTINF:-1 tvg-id="DiavataTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/MaAys0D.png" group-title="",Diavata TV (720p) -https://video.streams.ovh:1936/DiavataTV/DiavataTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Diktyo1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/0klufvz.jpg" group-title="",Diktyo1 (360p) [Offline] -https://www.hellasnet.tv/rest.live.hn/diktyo1r/playlist.m3u8 -#EXTINF:-1 tvg-id="DipsoTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/iL2o7Og.png" group-title="",Dipso TV (720p) [Not 24/7] -https://live.cast-control.eu/ekpdipso/ekpdipso/playlist.m3u8 -#EXTINF:-1 tvg-id="EllasTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/rovfMvn.jpg" group-title="",Ellas TV (1080p) -http://ellastv.gotdns.com:88/freetv/promo/index.m3u8 -#EXTINF:-1 tvg-id="EnaChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014308&t=1544180286744" group-title="Local",Ena Channel (576p) [Not 24/7] -http://176.9.123.140:1935/1c/stream/master.m3u8 -#EXTINF:-1 tvg-id="EpirusTV1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="Local",Epirus TV1 (1080p) [Not 24/7] -http://176.9.123.140:1935/radioepirus/radioepirus/playlist.m3u8 -#EXTINF:-1 tvg-id="ERT1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176518&t=1606877903341" group-title="",ERT 1 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 -#EXTINF:-1 tvg-id="ERT2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176530&t=1606877905302" group-title="",ERT 2 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_2/ert_2.m3u8 -#EXTINF:-1 tvg-id="ERT3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176482&t=1606877899957" group-title="",ERT 3 (720p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_3/ert_3.m3u8 -#EXTINF:-1 tvg-id="ERTNews.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ujTPC3J.jpg" group-title="News",ERT News (720p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_news/ert_news.m3u8 -#EXTINF:-1 tvg-id="ERTSports.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/SgiGEUK.png" group-title="Sports",ERT Sports (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports/ert_sports.m3u8 -#EXTINF:-1 tvg-id="ERTSports2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zG9dFQp.jpg" group-title="Sports",ERT Sports 2 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_2/ert_sports_2.m3u8 -#EXTINF:-1 tvg-id="ERTSports3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zG9dFQp.jpg" group-title="Sports",ERT Sports 3 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_3/ert_sports_3.m3u8 -#EXTINF:-1 tvg-id="ERTWorld.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=102515281&t=1612347000625" group-title="",ERT World (720p) -http://ert-live-bcbs15228.siliconweb.com/media/ert_world/ert_world.m3u8 -#EXTINF:-1 tvg-id="ERTWorld.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=102515281&t=1612347000625" group-title="",ERT World (480p) -http://wpso.com:1936/hls/wzra.m3u8 -#EXTINF:-1 tvg-id="ErtaLexTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/gGqNDZN.png" group-title="",Erta Lex TV [Offline] -https://vdo.alphaserver.gr:3203/stream/play.m3u8 -#EXTINF:-1 tvg-id="FarosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T8mB6Kg.jpg" group-title="",Faros TV (540p) [Geo-blocked] -https://s1.cystream.net/live/faros1/playlist.m3u8 -#EXTINF:-1 tvg-id="FarosTV2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T8mB6Kg.jpg" group-title="",Faros TV2 (480p) [Geo-blocked] -https://s1.cystream.net/live/faros2/playlist.m3u8 -#EXTINF:-1 tvg-id="Galaxy.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dwF0jlz.png" group-title="",Galaxy (432p) [Geo-blocked] -https://channel.streams.ovh:1936/galaxygr-1/galaxygr-1/playlist.m3u8 -#EXTINF:-1 tvg-id="GreekCinema.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/FKJ6N9p.png" group-title="",Greek Cinema (720p) [Offline] -https://vdo.alphaserver.gr:3613/stream/play.m3u8 -#EXTINF:-1 tvg-id="GreekTVLondon.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/YhwbcwE.png" group-title="",Greek TV London (720p) [Not 24/7] -https://vdo3.alphaserver.gr:3466/live/greektvlondonlive.m3u8 -#EXTINF:-1 tvg-id="GreekTVLondon.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/YhwbcwE.png" group-title="",Greek TV London (720p) [Not 24/7] -https://vdo3.alphaserver.gr:3466/stream/play.m3u8 -#EXTINF:-1 tvg-id="GroovyTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/0iklNh2.png" group-title="Movies",Groovy TV (544p) -http://web.onair-radio.eu:1935/groovytv/groovytv/playlist.m3u8 -#EXTINF:-1 tvg-id="HellenicTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Hellenic TV (360p) [Offline] -https://l5.cloudskep.com/hellenictv/htv/playlist.m3u8 -#EXTINF:-1 tvg-id="HighTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",High TV (200p) [Not 24/7] -http://live.streams.ovh:1935/hightv/hightv/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseRaces.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/cE8LuoO.png" group-title="",Horse Races (432p) [Not 24/7] -https://odiehls-i.akamaihd.net/hls/live/233406/odie3/odie.m3u8 -#EXTINF:-1 tvg-id="IonianChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ionian Channel (1080p) [Not 24/7] -http://stream.ioniantv.gr:8081/ionian/live/playlist.m3u8 -#EXTINF:-1 tvg-id="IonianChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ionian Channel (720p) [Not 24/7] -https://stream.ioniantv.gr/ionian/live_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="IridaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/gn5sdCt.png" group-title="Local",Irida TV (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.iri/playlist.m3u8 -#EXTINF:-1 tvg-id="KidsTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7sUmqv2.png" group-title="Kids",Kids TV (480p) -http://wpso.com:1936/hls/kidshd.m3u8 -#EXTINF:-1 tvg-id="KontraChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Kontra Channel (1080p) -http://flashcloud.mediacdn.com/live/kontratv/.m3u8 -#EXTINF:-1 tvg-id="KontraChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Kontra Channel (1080p) -http://kontralive.siliconweb.com/live/kontratv/playlist.m3u8 -#EXTINF:-1 tvg-id="KPHTHTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",KPHTH TV (720p) [Not 24/7] -http://live.cretetv.gr:1935/cretetv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="LiveTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Dj7YFhH.png" group-title="",Live TV (272p) [Offline] -https://vod.streams.ovh:3829/stream/play.m3u8 -#EXTINF:-1 tvg-id="MTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dh22Dj8.png" group-title="Music",M.TV [Timeout] -http://78.83.87.222:9999/play/a015/index.m3u8 -#EXTINF:-1 tvg-id="MadGreekz.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://ssl2.novago.gr/EPG/jsp/images/universal/film/logo/20190227/000100/XTV100000281/20758b1e-29fd-442c-b1a3-3a37ddf8ea03.png" group-title="Music",Mad Greekζ (480p) [Not 24/7] -http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 -#EXTINF:-1 tvg-id="MagicTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/QZQhg6C.png" group-title="Music",Magic TV (480p) -https://itv.streams.ovh/magictv/magictv/playlist.m3u8 -#EXTINF:-1 tvg-id="MaroussiotikaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/8coUyPX.png" group-title="",Maroussiotika TV (480p) [Not 24/7] -http://maroussiotika.dynu.com:8000/greektv/FZlHCCdBHL1/359142 -#EXTINF:-1 tvg-id="MesogeiosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/OnB6n3C.jpg" group-title="",Mesogeios TV (450p) -http://176.9.123.140:1935/mesogeiostv/stream/master.m3u8 -#EXTINF:-1 tvg-id="MGRTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zPyXLZs.jpg" group-title="",MGR TV (540p) [Not 24/7] -https://vod.streams.ovh:3876/stream/play.m3u8 -#EXTINF:-1 tvg-id="MyRadioTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ZBIyCAl.png" group-title="",My Radio TV (360p) [Offline] -https://vdo.alphaserver.gr:3305/stream/play.m3u8 -#EXTINF:-1 tvg-id="NeaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014344&t=1544180306377" group-title="",Nea TV (720p) -https://live.neatv.gr:8888/hls/neatv.m3u8 -#EXTINF:-1 tvg-id="NetmaxTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Wad6CD4.png" group-title="",Netmax TV (720p) [Not 24/7] -http://live.netmaxtv.com:8080/live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NG.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/pK2p5ey.png" group-title="Music",NG (720p) -http://live.streams.ovh:1935/NGradio/NGradio/playlist.m3u8 -#EXTINF:-1 tvg-id="NG.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/pK2p5ey.png" group-title="Music",NG (616p) -https://live.streams.ovh/NGradio/NGradio/playlist.m3u8 -#EXTINF:-1 tvg-id="NotioiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dW1bcD2.jpg" group-title="",Notioi TV (720p) -https://live.streams.ovh/YourStreaming/YourStreaming/playlist.m3u8 -#EXTINF:-1 tvg-id="NRG91.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/1Zl1OJ5.png" group-title="",NRG 91 (720p) [Not 24/7] -http://tv.nrg91.gr:1935/onweb/live/master.m3u8 -#EXTINF:-1 tvg-id="NRGTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/1Zl1OJ5.png" group-title="",NRG TV (720p) -https://5c389faa13be3.streamlock.net:9553/onweb/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NSTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/tZnziRp.jpg" group-title="",NS TV (480p) [Not 24/7] -http://176.9.123.140:1935/nstv1/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OpenTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/M6XG03v.png" group-title="",Open TV (576p) [Not 24/7] -https://liveopencloud.siliconweb.com/1/ZlRza2R6L2tFRnFJ/eWVLSlQx/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="OpenTVBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/c9hgL1c.jpg" group-title="",Open TV BUP [Timeout] -http://78.83.87.222:9999/play/a013/index.m3u8 -#EXTINF:-1 tvg-id="PellaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/9YFieqB.jpg" group-title="",Pella TV (576p) [Not 24/7] -https://video.streams.ovh:1936/pellatv/pellatv/master.m3u8 -#EXTINF:-1 tvg-id="PlayTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/100uuWA.png" group-title="Music",Play TV (480p) [Not 24/7] -http://web.onair-radio.eu:1935/Alpha-Host/Alpha-Host/playlist.m3u8 -#EXTINF:-1 tvg-id="PLP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/qa3Lurc.png" group-title="Local",PLP (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.plp/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioEpistrofi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T0zL9ov.jpg" group-title="",Radio Epistrofi (540p) [Geo-blocked] -https://s1.cystream.net/live/epistrofi/playlist.m3u8 -#EXTINF:-1 tvg-id="ReloadPlay.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://reloadplay.com/wp-content/uploads/2017/04/logo-foto-tv.jpg" group-title="",Reload Play (720p) -http://web.onair-radio.eu:1935/video/video/playlist.m3u8 -#EXTINF:-1 tvg-id="SamiakiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Samiaki TV (540p) [Not 24/7] -http://live.cast-control.eu:1935/samiaki/samiaki/playlist.m3u8 -#EXTINF:-1 tvg-id="Sigma.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Sigma (576p) [Not 24/7] -https://sl2.sigmatv.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="Skai.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/44RsYnf.jpg" group-title="",Skai (720p) -https://skai-live-back.siliconweb.com/media/cambria4/index.m3u8 -#EXTINF:-1 tvg-id="Skai.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/xokA84y.png" group-title="",Skai (720p) -https://skai-live.siliconweb.com/media/cambria4/index.m3u8 -#EXTINF:-1 tvg-id="SkaiBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/xokA84y.png" group-title="",Skai BUP [Timeout] -http://78.83.87.222:9999/play/a016/index.m3u8 -#EXTINF:-1 tvg-id="SmileTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/DOOVBu5.png" group-title="",Smile TV (360p) [Geo-blocked] -https://s1.cystream.net/live/smile/playlist.m3u8 -#EXTINF:-1 tvg-id="Star.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/4HSJigE.png" group-title="",Star (720p) -https://livestar.siliconweb.com/media/star1/star1mediumhd.m3u8 -#EXTINF:-1 tvg-id="StarBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Star BUP [Timeout] -http://78.83.87.222:9999/play/a017/index.m3u8 -#EXTINF:-1 tvg-id="SuperB.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Super B (576p) [Not 24/7] -https://til.pp.ua:3424/live/superblive.m3u8 -#EXTINF:-1 tvg-id="SuperChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Super Channel (300p) [Offline] -https://vdo.alphaserver.gr:3587/stream/play.m3u8 -#EXTINF:-1 tvg-id="Tilemousiki.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/wb4pLkW.jpg" group-title="",Tilemousiki (480p) [Not 24/7] -http://wpso.com:1936/hls/music1.m3u8 -#EXTINF:-1 tvg-id="TV100.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",TV 100 (576p) [Not 24/7] -https://live.fm100.gr/hls/tv100/index.m3u8 -#EXTINF:-1 tvg-id="TVCreta.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dUH5Mfw.jpg" group-title="Local",TV Creta (540p) [Not 24/7] -https://live.streams.ovh/tvcreta/tvcreta/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVFilopoli.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/GdgekUL.png" group-title="",TV Filopoli (240p) [Not 24/7] -http://live.streams.ovh:1935/tvfilopoli/tvfilopoli/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNotos.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/wtW3zkz.png" group-title="",TV Notos (720p) [Not 24/7] -https://eco.streams.ovh/notos/notos/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRodopi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/UZeSUN2.png" group-title="",TV Rodopi (720p) [Offline] -https://video.connect4.gr/live/tvrodopi/playlist.m3u8 -#EXTINF:-1 tvg-id="Wixlar.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/hfia0wN.png" group-title="Movies",Wixlar (720p) -http://web.onair-radio.eu:1935/wixlar/wixlar/playlist.m3u8 -#EXTINF:-1 tvg-id="XalastraTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/LgQBtTh.jpg" group-title="Music",Xalastra TV (360p) -https://live.cast-control.eu/xalastratv/xalastratv/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ErFj6rR.png" group-title="",Xplore (720p) [Geo-blocked] -http://web.onair-radio.eu:1935/explorecy/explorecy/playlist.m3u8 -#EXTINF:-1 tvg-id="ZerounoTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Zerouno TV (720p) -http://5db313b643fd8.streamlock.net:1935/ZerounoTV/ZerounoTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ZouglaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/AmW9d6H.jpg" group-title="",Zougla TV (480p) -https://zouglalive-lh.akamaihd.net/i/zouglalive_1@340792/master.m3u8 -#EXTINF:-1 tvg-id="VoyliTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση (540p) -https://streamer-cache.grnet.gr/parliament/hls/webtv.m3u8 -#EXTINF:-1 tvg-id="VoyliTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση (360p) -https://streamer-cache.grnet.gr/parliament/parltv.sdp/master.m3u8 -#EXTINF:-1 tvg-id="VoyliTileorasi2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση 2 (540p) [Not 24/7] -https://streamer-cache.grnet.gr/parliament/hls/webtv2.m3u8 -#EXTINF:-1 tvg-id="VoyliTileorasi3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση 3 (360p) -https://streamer-cache.grnet.gr/parliament/hls/webtv3.m3u8 -#EXTINF:-1 tvg-id="EgnatiaTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/XQyysct.jpg" group-title="",Εγνατία Τηλεόραση (576p) -https://video.streams.ovh:1936/egnatiatv/egnatiatv/index.m3u8 -#EXTINF:-1 tvg-id="Ekklisia.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/nxoHQqz.png" group-title="",Εκκλησία (1080p) -https://liveopen.siliconweb.com/openTvLive/openEcclessia/playlist.m3u8 -#EXTINF:-1 tvg-id="Ilektra.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ηλέκτρα TV (1080p) [Not 24/7] -http://167.86.89.20:5080/LiveApp/streams/064918158666216168224216.m3u8 -#EXTINF:-1 tvg-id="KritiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Ldt07Lh.png" group-title="",Κρήτη TV (720p) [Not 24/7] -http://live.cretetv.gr:1935/cretetv/myStream/f1tv.m3u8 -#EXTINF:-1 tvg-id="MessatidaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/y3pUxXe.png" group-title="",Μεσσάτιδα TV (480p) [Not 24/7] -https://vod.streams.ovh:3037/stream/play.m3u8 -#EXTINF:-1 tvg-id="ΡΙΚSat.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",ΡΙΚ Sat (720p) [Not 24/7] -http://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrosTV1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Σύρος TV1 (720p) [Not 24/7] -http://176.9.123.140:1935/msg116s/msg116s/playlist.m3u8 diff --git a/channels/gt.m3u b/channels/gt.m3u deleted file mode 100644 index 109372f4a..000000000 --- a/channels/gt.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal3.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/cc/canal3_super_canal.png" group-title="",Canal 3 (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAntigua.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uyNWESl.png" group-title="",Canal Antigua (1080p) -https://streaming.canal32hn.com/CanalAntigua/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="guatevision.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.guatevision.com/wp-content/uploads/sites/2/2019/09/logo-1.png?quality=82" group-title="",Guatevisión (720p) [Not 24/7] -https://ott.streann.com/loadbalancer/services/public/channels/5d6821172cdced7698d5a329/playlist.m3u8 -#EXTINF:-1 tvg-id="IglesiaDelCamino.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="http://www.iglesiadelcamino.org/images/logo.png" group-title="Religious",Iglesia Del Camino (480p) [Not 24/7] -http://streamingcontrol.com:1935/ectv/ectv/playlist.m3u8 -#EXTINF:-1 tvg-id="Televisiete.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/televisiete-gt.png" group-title="",Televisiete (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TN23.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/tn23-gt.png" group-title="",TN 23 (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal23.smil/playlist.m3u8 diff --git a/channels/hk.m3u b/channels/hk.m3u deleted file mode 100644 index ff8118cb3..000000000 --- a/channels/hk.m3u +++ /dev/null @@ -1,64 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="A1Tai.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16341146314628622757.png" group-title="General",A1台 (720p) [Offline] -https://jc-qlive-play.jingchangkan.cn/live/3473_200508855_xR9m.m3u8 -#EXTINF:-1 tvg-id="CelestialClassicMovies.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://1.bp.blogspot.com/-JitJUuWTMxg/VH--1LtXqGI/AAAAAAAAAo0/FL_bgsBFjeU/s1600/CELESTIAL%2BCLASSIC%2BMOVIES%2Blogo.png" group-title="Movies",Celestial Classic 天映经典 (540p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8 -#EXTINF:-1 tvg-id="CelestialMovies.hk" tvg-country="HK;SG;MY;ID;TW;BN;BD" tvg-language="Chinese" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/322_300.png" group-title="Movies",Celestial Movies (480p) [Geo-blocked] -http://210.210.155.35/qwr9ew/s/s33/index.m3u8 -#EXTINF:-1 tvg-id="CreationTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16166569352816980048.png" group-title="",Creation TV (720p) [Not 24/7] -http://al-pull2.hkatv.vip/live/CTV.m3u8 -#EXTINF:-1 tvg-id="HKSTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/a1/HKSTV_Logo.jpg" group-title="",HKSTV (香港衛視) (720p) [Not 24/7] -https://al-pull2.hkatv.vip/live/hktv20210929.m3u8 -#EXTINF:-1 tvg-id="iModeTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16092183621189118679.png" group-title="",iMode TV (1080p) [Not 24/7] -https://juyunlive.juyun.tv/live/24950198.m3u8 -#EXTINF:-1 tvg-id="Kix.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/705_300.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Entertainment",Kix (720p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://livecdn.fptplay.net/hda/kixhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Kix.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/mX1nnGy.png" group-title="Entertainment",Kix [Geo-blocked] -http://210.210.155.35/uq2663/h/h07/01.m3u8 -#EXTINF:-1 tvg-id="PhoenixChineseChannel.hk" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/Phoenix_Chinese.svg/1200px-Phoenix_Chinese.svg.png" group-title="General",Phoenix Chinese Channel (鳳凰衛視中文) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PCC.m3u8 -#EXTINF:-1 tvg-id="PhoenixHongKongChannel.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/8/8d/Phoenix_HK.svg/1280px-Phoenix_HK.svg.png" group-title="General",Phoenix Hong Kong Channel (鳳凰衛視香港) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PHK.m3u8 -#EXTINF:-1 tvg-id="PhoenixInfoNewsChannel.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/16/Phoenix_InfoNews.svg/1280px-Phoenix_InfoNews.svg.png" group-title="News",Phoenix InfoNews Channel (鳳凰衛視資訊) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PIN.m3u8 -#EXTINF:-1 tvg-id="RTHKGangTaiDianShi31.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="http://tv.sason.xyz/logo/rthk31.png" group-title="",RTHK (港台電視31) (1080p) [Geo-blocked] -https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 -#EXTINF:-1 tvg-id="RTHKGangTaiDianShi32.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",RTHK (港台電視32) (1080p) [Not 24/7] -https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 -#EXTINF:-1 tvg-id="StarSports.hk" tvg-country="SAS" tvg-language="English" tvg-logo="https://photo.sofun.tw/2013/11/STAR-SPORTS-LOGO.jpg" group-title="Sports",Star Sports [Offline] -rtmp://ivi.bupt.edu.cn:1935/livetv/starsports -#EXTINF:-1 tvg-id="Thrill.hk" tvg-country="SAS" tvg-language="English" tvg-logo="http://console.celestialtiger.com/images/upload/1f6e441382a388940977fd9e165178c42fe0c193.png" group-title="Movies",Thrill (480p) [Geo-blocked] -http://45.126.83.51/qwr9ew/s/s34/index.m3u8 -#EXTINF:-1 tvg-id="Thrill.hk" tvg-country="HK" tvg-language="English" tvg-logo="http://console.celestialtiger.com/images/upload/1f6e441382a388940977fd9e165178c42fe0c193.png" group-title="Movies",Thrill (360p) [Geo-blocked] -http://45.126.83.51/qwr9ew/s/s34/02.m3u8 -#EXTINF:-1 tvg-id="TVBJade.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",TVB Jade [Offline] -http://ubaio.chaoniu1995.top:6796/ub/cr/crtv.php?id=30 -#EXTINF:-1 tvg-id="TVBXingHe.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/17/TVB_Xing_He_logo_2017.png/220px-TVB_Xing_He_logo_2017.png" group-title="",TVB Xing He 星河 (720p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Xinhe/playlist.m3u8 -#EXTINF:-1 tvg-id="ViuTV.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://static.epg.best/hk/ViuTV96.hk.png" group-title="",ViuTV (720p) [Not 24/7] -https://cdn.hkdtmb.com/hls/99/index.m3u8 -#EXTINF:-1 tvg-id="ViuTVsix.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/ViuTVsix-logo.svg/1280px-ViuTVsix-logo.svg.png" group-title="",ViuTVsix [Timeout] -http://61.238.6.49:8000/bysid/96 -#EXTINF:-1 tvg-id="YaLuWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/1wbOhJV.jpg" group-title="Travel",亞旅衛視 (720p) [Not 24/7] -http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8 -#EXTINF:-1 tvg-id="XingKongWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/8/8d/Xing_Kong_Wei_Shi.jpg/250px-Xing_Kong_Wei_Shi.jpg" group-title="General",星空衛視 [Offline] -rtmp://58.200.131.2:1935/livetv/startv -#EXTINF:-1 tvg-id="GangTaiDianShi31.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/RTHK_TV_31.svg/1200px-RTHK_TV_31.svg.png" group-title="General",港台電視31 (1080p) [Not 24/7] -https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 -#EXTINF:-1 tvg-id="GangTaiDianShi32.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/RTHK_TV_32.svg/1200px-RTHK_TV_32.svg.png" group-title="News",港台電視32 (480p) [Not 24/7] -https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 -#EXTINF:-1 tvg-id="FeiCuiTai81.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="http://img.tvb.com/corporate/_fck_/image/Jade_logo_L(1).jpg" group-title="",翡翠台(81) (1080p) [Timeout] -http://61.238.6.49:8000/bysid/1 -#EXTINF:-1 tvg-id="YaoCaiCaiJingTai.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://i.imgur.com/xliVoIt.jpg?1" group-title="Shop",耀才財經台 (576p) -http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8 -#EXTINF:-1 tvg-id="XiangGangKaiDianShiHKSTVHKS.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/e/ed/HK_open_tv_logo.jpg" group-title="",香港开电视 / HKSTV-HKS (720p) -http://media.fantv.hk/m3u8/archive/channel2.m3u8 -#EXTINF:-1 tvg-id="XiangGangWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/wnQPn2d.jpg" group-title="",香港衛視 (576p) [Not 24/7] -http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8 -#EXTINF:-1 tvg-id="FengHuangWeiShiZhongWenTai.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://pbs.twimg.com/profile_images/1246604721462239232/QCKNvVux_400x400.jpg" group-title="",鳳凰衛視中文台 [Timeout] -http://221.179.217.70/PLTV/88888888/224/3221225942/1.m3u8 -#EXTINF:-1 tvg-id="FengHuangZiXun.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/16/Phoenix_InfoNews.svg/1200px-Phoenix_InfoNews.svg.png" group-title="News",鳳凰衛視資訊台HD (720p) [Not 24/7] -http://117.169.120.138:8080/live/fhzixun/.m3u8 -#EXTINF:-1 tvg-id="FengHuangWeiShiDianYingTai.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://p1.ifengimg.com/a/2018_43/45a9d426b4ae58c.jpg" group-title="",鳳凰衛視電影台 [Offline] -rtmp://ivi.bupt.edu.cn:1935/livetv/fhdy diff --git a/channels/hn.m3u b/channels/hn.m3u deleted file mode 100644 index 454291bb4..000000000 --- a/channels/hn.m3u +++ /dev/null @@ -1,99 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlfaOmegaVision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="http://www.aovision.com/img/LogoAlfaOmegaVision.png" group-title="",Alfa & Omega Visión (360p) -https://srv.panelcast.net/aovision/aovision/playlist.m3u8 -#EXTINF:-1 tvg-id="Alsacias.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/824829587867602944/0mgz4yF1.jpg" group-title="",Alsacias TV (ATV | Canal 28) (1080p) -https://emisoras.hn:8081/atv/index.m3u8 -#EXTINF:-1 tvg-id="AvivaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Aviva TV (1080p) -https://video.misistemareseller.com/atvhonduras/atvhonduras/playlist.m3u8 -#EXTINF:-1 tvg-id="AZATV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",AZA TV (720p) -https://stmv1.zcastbr.com/azatvhd/azatvhd/playlist.m3u8 -#EXTINF:-1 tvg-id="CampusTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="http://live.campushd.tv/wp-content/uploads/2019/05/logo-1.png" group-title="",Campus TV (360p) [Not 24/7] -http://st2.worldkast.com/8004/8004/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal5ElLider.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/5_de_honduras-mediano.png" group-title="",Canal 5 El Líder (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k5MLnPhRpeAV0Xwgt0d -#EXTINF:-1 tvg-id="canal6.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1262498886305923073/2SBUwUGY.jpg" group-title="",Canal 6 (720p) -https://ott.streann.com/loadbalancer/services/public/channels/5ba026492cdc1a7124d02fb7/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal 9 TeleDanlí (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8224/8224/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://canal11.hn/wp-content/themes/streamit/assets/images/logo.png" group-title="",Canal 11 (720p) -https://mdstrm.com/live-stream-playlist/603d4e1fb042ce07c5c8f911.m3u8 -#EXTINF:-1 tvg-id="CanalSiTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal SiTV (410p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalUnodeChuloteca.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal Uno de Chuloteca (720p) [Not 24/7] -https://tvdatta.com:3392/live/portaldelsurhnlive.m3u8 -#EXTINF:-1 tvg-id="Catavision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Catavisión (316p) [Not 24/7] -https://stmv1.zcastbr.com/catavision/catavision/playlist.m3u8 -#EXTINF:-1 tvg-id="CCIChannel.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://www.ccichannel.tv/wp-content/uploads/2018/01/CCICHANNELlogo.png" group-title="",CCI Channel (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x836wjl -#EXTINF:-1 tvg-id="CeibavisionCanal36.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Ceibavisión Canal 36 (1080p) [Not 24/7] -http://190.11.224.235:1935/CANAL36/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CholusatSur36.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qRHwhND.png" group-title="",Cholusat Sur 36 (214p) [Not 24/7] -http://audiotvserver.net:1935/livemedia/cholusat/playlist.m3u8 -#EXTINF:-1 tvg-id="CholutecaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Choluteca TV (1080p) -https://emisoras.hn:8081/cholutecatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CHTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://chtv.hn/wp-content/uploads/2020/01/512-1.png" group-title="Local",CHTV (Canal Hondureño de Televisión) (720p) [Offline] -https://media.streambrothers.com:1936/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="DiosTeVe.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Dios Te Ve (720p) -https://emisoras.hn:8081/diostevetv/playlist.m3u8 -#EXTINF:-1 tvg-id="DiosTeVeInfantil.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Dios Te Ve Infantil (720p) -https://emisoras.hn:8081/diostevekids/playlist.m3u8 -#EXTINF:-1 tvg-id="EbenezerTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ANW1pIH.png" group-title="",Ebenezer TV (1080p) [Not 24/7] -http://p1.worldkast.com/ebenezertv2/ngrp:ebenezertv2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EbenezerTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ANW1pIH.png" group-title="",Ebenezer TV (360p) [Not 24/7] -https://5b50404ec5e4c.streamlock.net/ebenezertv2/smil:ebenezertv2.smil/chunklist_w156791259_b850000_slen.m3u8 -#EXTINF:-1 tvg-id="EDNTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Dq9we3E.png" group-title="",EDN TV (1080p) [Not 24/7] -https://60417ddeaf0d9.streamlock.net/edntv/videoedntv/playlist.m3u8 -#EXTINF:-1 tvg-id="GloboTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UG6Tq7a.png" group-title="",Globo TV (720p) [Not 24/7] -https://panel.dattalive.com/8122/8122/playlist.m3u8 -#EXTINF:-1 tvg-id="HCH.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1443944863075028992/AM2NFj1q.jpg" group-title="",HCH (Hable Como Habla) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81za5c -#EXTINF:-1 tvg-id="Hondured13.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/470030355563810816/thlLKXjZ_400x400.jpeg" group-title="",Hondured 13 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x83axzj -#EXTINF:-1 tvg-id="JBN.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/JrlArKg.png" group-title="",JBN (480p) -https://emisoras.hn:8081/jbn/index.m3u8 -#EXTINF:-1 tvg-id="KerussoTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Kerusso TV (720p) -https://emisoras.hn:8081/kerussotv/index.m3u8 -#EXTINF:-1 tvg-id="MetroTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",La Metro TV (720p) -https://emisoras.hn:8081/metrotv/index.m3u8 -#EXTINF:-1 tvg-id="LencaTelevision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Lenca Television (Canal 40) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv1.m3u8 -#EXTINF:-1 tvg-id="LTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/dprA1P7.png" group-title="",LTV (288p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6022/6022/playlist.m3u8 -#EXTINF:-1 tvg-id="MayaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/91/A6287BAC-05B5-4739-9415-01B08CC0DF0E.png" group-title="Local",Maya TV (360p) [Not 24/7] -https://media.streambrothers.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="MVC.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/5620HCa.jpg" group-title="",Mi Viña Canal (720p) [Not 24/7] -https://media.streambrothers.com:1936/8338/8338/master.m3u8 -#EXTINF:-1 tvg-id="OmegaTv.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Omega Tv (720p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/8142/8142/playlist.m3u8 -#EXTINF:-1 tvg-id="QhuboTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1MIXANL.jpg" group-title="",Q'hubo TV (410p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIdeal.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Radio Ideal 104.7 FM (La Esperanza) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv3.m3u8 -#EXTINF:-1 tvg-id="RadioImagen.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Radio Imagen 105.1 FM (La Esperanza) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv2.m3u8 -#EXTINF:-1 tvg-id="RHC.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Roatán Hable Claro (RHC) (720p) -https://stmv1.zcastbr.com/roatanhableclaro/roatanhableclaro/playlist.m3u8 -#EXTINF:-1 tvg-id="SercanoTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Sercano TV (720p) -http://stream.grupoabchn.com:1935/SERCANOHD/SERCANOLive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SuyapaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1455219661927337988/0EAAn3OP.jpg" group-title="Religious",Suyapa TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x833e2b -#EXTINF:-1 tvg-id="Teleceiba.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wIcvdMQ.jpg" group-title="",Teleceiba [Timeout] -http://190.11.224.14:8134/liveevent.m3u8 -#EXTINF:-1 tvg-id="TeleProgreso.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NKCF5qs.png" group-title="",TeleProgreso (1080p) -https://stmv1.zcastbr.com/teleprogresohn/teleprogresohn/playlist.m3u8 -#EXTINF:-1 tvg-id="TelevisionComayaguaCanal40.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Television Comayagua Canal 40 (320p) [Not 24/7] -http://st2.worldkast.com/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="TENCanal10.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HQiKyHy.jpg" group-title="",TEN Canal 10 (720p) -http://stream.grupoabchn.com:1935/TENHD/TENLive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TENCanal10.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HQiKyHy.jpg" group-title="",TEN Canal 10 (540p) [Not 24/7] -http://stream.grupoabchn.com:1935/TENHD/TENLIVEHD_2/playlist.m3u8 -#EXTINF:-1 tvg-id="TSi.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMx65sw0YtirOLRNPWMixClGHXr7TRCxlh-Q&usqp=CAU" group-title="",TSI (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k3q8hF4Y9tzpTgwu26R -#EXTINF:-1 tvg-id="TVCopan.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",TV Copán (480p) [Not 24/7] -https://emisoras.hn:8081/tvcopan/index.m3u8 -#EXTINF:-1 tvg-id="UNAHUTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/De5CSD3.png" group-title="",UNAH UTV (360p) [Not 24/7] -https://live-utv.unah.edu.hn/web/salida.m3u8 -#EXTINF:-1 tvg-id="VidaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Vida TV (720p) [Not 24/7] -http://184.173.181.2:1935/8070/8070/playlist.m3u8 -#EXTINF:-1 tvg-id="WaldivisionInternacional.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/o5TnL2b.png" group-title="",Waldivisión Internacional (720p) [Not 24/7] -https://tvdatta.com:3934/live/waldivisionlive.m3u8 diff --git a/channels/hr.m3u b/channels/hr.m3u deleted file mode 100644 index 07ac56543..000000000 --- a/channels/hr.m3u +++ /dev/null @@ -1,42 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HRT1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/W3FBVwT.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 1 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226139/index.m3u8 -#EXTINF:-1 tvg-id="HRT1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/W3FBVwT.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 1 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.84/PLTV/88888888/224/3221226139/index.m3u8 -#EXTINF:-1 tvg-id="HRT2.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7swOkC3.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 2 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226140/index.m3u8 -#EXTINF:-1 tvg-id="HRT2.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7swOkC3.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 2 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.82/PLTV/88888888/224/3221226140/index.m3u8 -#EXTINF:-1 tvg-id="HRT3.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/0hrv92c.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 3 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226280/index.m3u8 -#EXTINF:-1 tvg-id="HRT4.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/UVFs4zA.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 4 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226281/index.m3u8 -#EXTINF:-1 tvg-id="HRT4.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/UVFs4zA.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 4 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.89/PLTV/88888888/224/3221226281/index.m3u8 -#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/RApnwWl.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",MAXtv Promo Kanal (528p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226027/index.m3u8 -#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/RApnwWl.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",MAXtv Promo Kanal (528p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.84/PLTV/88888888/224/3221226027/index.m3u8 -#EXTINF:-1 tvg-id="NewsBar.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/Q8eH5zN.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="News",NewsBar (528p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.89/PLTV/88888888/224/3221226407/index.m3u8 -#EXTINF:-1 tvg-id="OTV.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://www.otv.hr/wp-content/uploads/2020/10/cropped-otv_plavi-logo_PNG_kocka-1-192x192.png" group-title="",OTV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x654gen -#EXTINF:-1 tvg-id="RadioTelevizijaBanovina.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7q3g8AS.png" group-title="",Radio Televizija Banovina (360p) [Not 24/7] -rtmp://video.radio-banovina.hr/live/myStream -#EXTINF:-1 tvg-id="RTLHrvatska.de" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/aJGNyQn.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",RTL (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 -http://195.29.70.67/PLTV/88888888/224/3221226195/index.m3u8 -#EXTINF:-1 tvg-id="TVJadran.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://tvjadran.hr/wp-content/uploads/2021/02/cropped-tv_jadran_site_icon-192x192.png" group-title="",TV Jadran (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x670ug8 -#EXTINF:-1 tvg-id="TVNova.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://tvnova.hr/images/logo-tvnova.png" group-title="",TV Nova (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x694rtu diff --git a/channels/ht.m3u b/channels/ht.m3u deleted file mode 100644 index bbfe3ff02..000000000 --- a/channels/ht.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HaitiViralNews.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/eaPFJJs.jpg" group-title="",Haiti Viral News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcEY2-g-EEefxyYa1gtrk4g/live -#EXTINF:-1 tvg-id="KajouTV.ht" tvg-country="US;HT" tvg-language="French" tvg-logo="https://i.imgur.com/5txJUZx.jpg" group-title="",Kajou TV (480p) [Not 24/7] -https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8 -#EXTINF:-1 tvg-id="NETALKOLETV.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/OJbRkQ6.jpg" group-title="",NETALKOLE TV (720p) [Not 24/7] -https://watch.haitilive.net/stream/netalkole/public/tv/index.m3u8 -#EXTINF:-1 tvg-id="RadioTélé4VEH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/1wuEyIF.jpg" group-title="Religious",Radio Télé 4VEH (720p) -https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTélé4VEH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/1wuEyIF.jpg" group-title="Religious",Radio Télé 4VEH (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClL_aynC_SESNLQEJHqO9MQ/live -#EXTINF:-1 tvg-id="RadioTeleAmen.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/dJvJGDg.jpg" group-title="Religious",Radio Tele Amen FM (360p) [Not 24/7] -http://184.173.179.163:1935/daniel/daniel/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTéléEclair.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/8ocCyo7.png" group-title="",Radio Télé Eclair (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOvGbDh5biuOqjx6G3CdrQg/live -#EXTINF:-1 tvg-id="RadioTelePititManmanMari.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/QaWwNvo.jpg" group-title="Religious",Radio Télé Pitit Manman Mari (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCLeNHM8XDkZmd2rhV3ZG7Vg/live -#EXTINF:-1 tvg-id="RadioTelePlanetCompas.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/ddb4lsa.png" group-title="",Radio Tele Planet Compas (720p) [Not 24/7] -https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTeleShalom.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/MSgSKym.png" group-title="",Radio Tele Shalom (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBJ9zxns1hxblYZw4urBd_w/live -#EXTINF:-1 tvg-id="RTVC.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/Jp38Rzf.png" group-title="",Radio Télévision Caraïbes (RTVC) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81lgjh -#EXTINF:-1 tvg-id="RadioTélévisionHirondelle.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/2gVnoSX.jpg" group-title="",Radio Télévision Hirondelle (480p) [Not 24/7] -https://watch.haitilive.net/gethb/rtvh16/index.m3u8 -#EXTINF:-1 tvg-id="TCH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/6LZVA4x.png" group-title="",Télé Conscience Haïtienne (TCH) (720p) [Not 24/7] -http://tvlakay.haitilive.net/website/tchhaiti/player/mono.m3u8 -#EXTINF:-1 tvg-id="TeleHaiti.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://www.newsfromhaiti.com/images/TeleHaiti.jpg" group-title="General",Tele Haiti (1088p) [Timeout] -http://66.175.238.147:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleLouange.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/vZmlq9N.jpg" group-title="",Tele Louange (720p) -https://5790d294af2dc.streamlock.net/8124/8124/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVPanou.ht" tvg-country="US;HT" tvg-language="English" tvg-logo="https://i.imgur.com/p5GjWnu.jpg" group-title="",TV Panou (720p) [Not 24/7] -http://tvpanoucom.srfms.com:1935/tvpanoucom/livestream/playlist.m3u8 diff --git a/channels/hu.m3u b/channels/hu.m3u deleted file mode 100644 index 6e4b19958..000000000 --- a/channels/hu.m3u +++ /dev/null @@ -1,83 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1Mus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/PozF9MT.png" group-title="Music",1Mus (720p) [Not 24/7] -http://hz1.teleport.cc/HLS/HD.m3u8 -#EXTINF:-1 tvg-id="1MusicChannelHungary.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",1Music Channel Hungary (576p) -http://1music.hu/1music.m3u8 -#EXTINF:-1 tvg-id="1MusicChannelHungary.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",1Music Channel Hungary (576p) -http://www.1music.hu/1music.m3u8 -#EXTINF:-1 tvg-id="ApostolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Apostol_TV_HU_logo.png" group-title="",Apostol TV (576p) [Not 24/7] -https://live.apostoltv.hu/online/smil:gazdagret.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ovtI4G4.png" group-title="",ATV (160p) -http://streamservers.atv.hu/atvlive/atvstream_1_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ovtI4G4.png" group-title="",ATV (360p) [Not 24/7] -https://stream.atv.hu/atvlive/atvstream_2_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="BalatonTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xyG4O6F.jpg" group-title="",Balaton TV (432p) -https://stream.iptvservice.eu/hls/balatontv.m3u8 -#EXTINF:-1 tvg-id="Bonum TV-HU" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/dpGX5SH.png" group-title="Religious",Bonum TV (360p) -https://stream.y5.hu/stream/stream_bonum/stream.m3u8 -#EXTINF:-1 tvg-id="Budakalasz.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ftmeWq2.png" group-title="",Budakalasz (1080p) [Not 24/7] -https://stream.streaming4u.hu/TVBudakalasz/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="CoolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_cooltv.png" group-title="",Cool TV (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_cool/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="CoolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_cooltv.png" group-title="",Cool TV (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_cool/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="DTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",DTV (720p) [Not 24/7] -http://cloudfront44.lexanetwork.com:1732/hlsrelay003/hls/livestream.sdp.m3u8 -#EXTINF:-1 tvg-id="ErdelyTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xAmYapr.jpg" group-title="",Erdely TV [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$ErdelyTV/6.m3u8/Level(1677721)?end=END&start=LIVE -#EXTINF:-1 tvg-id="FEM3.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",FEM3 [Geo-blocked] -https://streaming.mytvback.com/stream/Nc8b6c6tUH4gh3GdRR-zFw/1617462698/channel016/stream.m3u8 -#EXTINF:-1 tvg-id="FilmPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Film+ (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_filmp/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="FilmPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Film+ (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_filmp/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="HTMusicChannel.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",H!T Music Channel (480p) -http://hitmusic.hu/hitmusic.m3u8 -#EXTINF:-1 tvg-id="HalomTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Qykeedm.png" group-title="",Halom TV (540p) -http://stream.battanet.hu:8080/hls/livestream1/1_2/index.m3u8 -#EXTINF:-1 tvg-id="Hatoscsatorna.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/64ygAE5.png" group-title="",Hatoscsatorna (360p) -https://hatoscsatorna.hu:8082/Hatoscsatorna/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Hatoscsatorna.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/64ygAE5.png" group-title="",Hatoscsatorna (360p) [Offline] -rtmp://lpmedia.hu:1935/Hatoscsatorna/livestream -#EXTINF:-1 tvg-id="HegyvidekTvBudapest.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Hegyvidek Tv Budapest (576p) [Not 24/7] -http://tv.hegyvidek.hu/stream_mpeg.flv -#EXTINF:-1 tvg-id="IzauraTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/izaura.png" group-title="",Izaura TV [Geo-blocked] -https://streaming.mytvback.com/stream/1aMW5tqyOFpH3swBdowx9Q/1617462678/channel040/stream-br1872000.m3u8 -#EXTINF:-1 tvg-id="KecskemetiTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Kecskemeti TV (416p) [Not 24/7] -http://rtmp1.40e.hu:8000/live/ktv.m3u8 -#EXTINF:-1 tvg-id="KomlosTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/uGrWyVN.png" group-title="",Komlós TV (1080p) [Not 24/7] -https://stream.streaming4u.hu/KomlosTV/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="LifeTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/life_tv_hu_logo.png" group-title="",Life TV [Geo-blocked] -https://streaming.mytvback.com/stream/2WVTzaaqRtQ3cZ02Qd7rPA/1617462690/channel043/stream-br572000.m3u8 -#EXTINF:-1 tvg-id="Loversenykozvetites.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Q9MWqpE.png" group-title="",Lóverseny közvetítés (420p) -http://87.229.103.60:1935/liverelay/loverseny2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="M1.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/m1.png" group-title="",M1 (480p) [Offline] -https://c402-node61-cdn.connectmedia.hu/1100/52a0c3d17a5a9b5968ac73b7288a08c9/6184f343/03.m3u8 -#EXTINF:-1 tvg-id="M3.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",M3 [Geo-blocked] -https://stream9.nava.hu/m3_live_bdrm/_definst_/smil:m3_1080p_loop_nodrm.smil/chunklist_w72397576_b881072_slhun.m3u8?lb=b4bp7xeKAKovH1uDWU5XusWC/SZexs+JNLmxYvSb34kGup6SGRTTm5UkNNjfC62mmvYbuEqrt04E++Exer5ZNS/WN6JyMpY6GiuOU2osRulnM+gNsTWVD8z+LJt4imqAka++&platform=web_embed&sessid=Z4gLTQezzXGgWvNkiypb5PkmR64U1aoH3lFII14l3Mp2dZ5OtLoKQQY7XOn943ns&type=m3u8 -#EXTINF:-1 tvg-id="MUSICPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/yKJmkNk.png" group-title="Music",MUSIC + (720p) [Not 24/7] -http://s02.diazol.hu:10192/stream.m3u8 -#EXTINF:-1 tvg-id="OzdiVarosiTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xiSeTRL.jpg" group-title="",Ózdi Városi TV (720p) [Not 24/7] -https://stream.unrealhosting.hu:7982/live.m3u8 -#EXTINF:-1 tvg-id="PannonRTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Dl9xtgo.png" group-title="",Pannon RTV (648p) -https://stream.unrealhosting.hu:4102/live.m3u8 -#EXTINF:-1 tvg-id="RTLGold.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Gold (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlgold/stream.m3u8 -#EXTINF:-1 tvg-id="RTLII.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",RTL II (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtl2/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="RTLII.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",RTL II (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtl2/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="RTLKlub.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Klub (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlklub/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="RTLKlub.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Klub (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlklub/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="RTLPlus.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL+ (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlp/stream.m3u8 -#EXTINF:-1 tvg-id="SorozatPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_sorozat.png" group-title="",Sorozat+ (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_sorozatp/stream.m3u8 -#EXTINF:-1 tvg-id="TiszaTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Tisza TV (576p) [Not 24/7] -https://www.tiszatv.hu/onlinetv/tiszatv_1.m3u8 -#EXTINF:-1 tvg-id="TV7Bekescsaba.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/iTUoC1v.png" group-title="",TV7 Bekescsaba (360p) -https://stream.y5.hu/stream/stream_bekescsaba/stream.m3u8 -#EXTINF:-1 tvg-id="VTVFuzesabony.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/JCHEuWb.jpg" group-title="",VTV Füzesabony (720p) [Not 24/7] -https://stream.unrealhosting.hu:7962/live.m3u8 diff --git a/channels/id.m3u b/channels/id.m3u deleted file mode 100644 index 53e1697b4..000000000 --- a/channels/id.m3u +++ /dev/null @@ -1,289 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BeritaSatu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu (720p) -https://b1news.beritasatumedia.com/Beritasatu/B1News_manifest.m3u8 -#EXTINF:-1 tvg-id="BeritaSatu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu (540p) -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:beritasatunewsbs/playlist.m3u8 -#EXTINF:-1 tvg-id="BeritaSatuEnglish.id" tvg-country="ID" tvg-language="English" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu English (540p) [Not 24/7] -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsenglish/playlist.m3u8 -#EXTINF:-1 tvg-id="BeritaSatuWorld.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://i.imgur.com/GIGcX5K.png" group-title="News",BeritaSatu World (540p) [Not 24/7] -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsnew/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCIndonesia.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/id/3/35/CNBC_Indonesia.png" group-title="Business",CNBC Indonesia (720p) -https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/master.m3u8 -#EXTINF:-1 tvg-id="CNNIndonesia.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/CNN_Indonesia.svg/1200px-CNN_Indonesia.svg.png" group-title="News",CNN Indonesia (720p) -https://live.cnnindonesia.com/livecnn/smil:cnntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/HsqNM8Hc/globaltv.png" group-title="General",GTV (720p) -https://vcdn2.rctiplus.id/live/eds/gtv_fta/live_fta/gtv_fta.m3u8 -#EXTINF:-1 tvg-id="HIDUPTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040378.png" group-title="",HIDUP TV (568p) [Timeout] -http://202.93.133.3:1935/SVR1/ch_hiduptv.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Hits.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="http://www.rewindnetworks.com/assets/logo_hits.png" group-title="",Hits (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/HITS/sa_dash_vmx/HITS.mpd -#EXTINF:-1 tvg-id="HitsMovies.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://movies.hitstv.com/img/hits-movies-logo.png" group-title="Movies",Hits Movies (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/HitsMovies/sa_dash_vmx/HitsMovies.mpd -#EXTINF:-1 tvg-id="IAMCHANNEL.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040337.png" group-title="Religious",I AM CHANNEL (576p) [Not 24/7] -http://iamchannel.org:1935/tes/1/playlist.m3u8 -#EXTINF:-1 tvg-id="IndonesiaChannel.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="",Indonesia Channel (720p) [Not 24/7] -http://wowzaprod236-i.akamaihd.net/hls/live/1019903/7dd4cf51/playlist.m3u8 -#EXTINF:-1 tvg-id="Indosiar.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_78.png" group-title="General",Indosiar [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/205-indosiar -#EXTINF:-1 tvg-id="iNews.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040337.png" group-title="News",iNews (720p) -https://vcdn2.rctiplus.id/live/eds/inews_fta/live_fta/inews_fta.m3u8 -#EXTINF:-1 tvg-id="KompasTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_106.png" group-title="News",Kompas TV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/874-kompas-tv -#EXTINF:-1 tvg-id="MetroTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040416.png" group-title="News",Metro TV (720p) [Not 24/7] -http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MNCTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/rw8620qS/20191026-003920.png" group-title="General",MNCTV (720p) -https://vcdn2.rctiplus.id/live/eds/mnctv_fta/live_fta/mnctv_fta.m3u8 -#EXTINF:-1 tvg-id="MyTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="",MyTV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/6711-mytv -#EXTINF:-1 tvg-id="NetTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="General",Net. TV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/875-net-tv -#EXTINF:-1 tvg-id="OChannel.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="Local",O Channel [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/206-ochannel -#EXTINF:-1 tvg-id="OneTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://onetvasia.com/sites/onetvasia.com/files/logo-small_0.png" group-title="",One TV (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/SetOne/sa_dash_vmx/SetOne.mpd -#EXTINF:-1 tvg-id="Radio51TV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="Logo N/A" group-title="",Radio 51 TV (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="RCTI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/13Nm4VLb/20191010-164600.png" group-title="General",RCTI (720p) -https://vcdn2.rctiplus.id/live/eds/rcti_fta/live_fta/rcti_fta.m3u8 -#EXTINF:-1 tvg-id="Reformed21.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="http://image.azuza.web.id/images/agus-1545452020.jpg" group-title="Religious",Reformed 21 (540p) -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:reformedch/playlist.m3u8 -#EXTINF:-1 tvg-id="RRINet.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://pbs.twimg.com/media/DmaMDCBU8AAfd45.png" group-title="",RRI Net (720p) [Not 24/7] -http://36.89.47.217:11935/rrinet/live/index.m3u8 -#EXTINF:-1 tvg-id="RTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="General",RTV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/1561-rtv -#EXTINF:-1 tvg-id="SCTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_89.png" group-title="General",SCTV (480p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/SCTV/sa_dash_vmx/SCTV.mpd -#EXTINF:-1 tvg-id="TransTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040459.png" group-title="General",Trans TV (720p) -https://video.detik.com/transtv/smil:transtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Trans7.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040404.png" group-title="General",Trans7 (720p) [Not 24/7] -https://video.detik.com/trans7/smil:trans7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKU.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040332.png" group-title="",TVKU (720p) [Not 24/7] -http://103.30.1.14:8080/hls/live.m3u8 -#EXTINF:-1 tvg-id="TVRParlemen.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanAnggaran.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Anggaran [Not 24/7] -http://103.18.181.69:1935/golive/livestreambanggar/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanLegislatif.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Legislatif (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestreambaleg/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanMusyawarah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Musyawarah [Not 24/7] -http://103.18.181.69:1935/golive/livestreambamus/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBAKN.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen BAKN [Not 24/7] -http://103.18.181.69:1935/golive/livestreambakn/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBKSAP.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen BKSAP [Not 24/7] -http://103.18.181.69:1935/golive/livestreambksap/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi I (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi II (1080p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi III (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi IV (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream4/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIX.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi IX (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream9/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi V (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream5/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VI (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream6/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VII (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream7/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVIII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VIII (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream8/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiX.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi X (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream10/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiXI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi XI (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream11/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIAceh)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBali)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBabel)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBengkulu)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIdki)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIGorontalo)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJambi)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJabarandung)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatengsemarang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatimsurbaya)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalbar)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalselbanjarmsn)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalteng)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKaltimsamarinda)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRILampung)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIMalukuambon)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINasional)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (480p) -http://202.80.222.130/000001/2/ch14041511560872104862/index.m3u8?virtualDomain=000001.live_hls.zte.com -#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (136p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINtbmataram)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINttkupang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIPapua)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulselmakasar)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultengpalu)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultra)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulutmanado)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumparpadang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumsel)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumutmedan)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIYogyakarta)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 diff --git a/channels/ie.m3u b/channels/ie.m3u deleted file mode 100644 index 913559710..000000000 --- a/channels/ie.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="OireachtasTV.ie" tvg-country="IE" tvg-language="English" tvg-logo="http://upload.wikimedia.org/wikipedia/commons/7/75/Official_Houses_of_the_Oireachtas_Logo.jpg" group-title="Legislative",Oireachtas TV (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/oirtv/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom1.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/JLYqKC0.jpg" group-title="Legislative",Oireachtas TV Committee Room 1 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr1/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom2.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/2Wxx2jK.jpg" group-title="Legislative",Oireachtas TV Committee Room 2 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr2/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom3.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/EoAQeg5.jpg" group-title="Legislative",Oireachtas TV Committee Room 3 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr3/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom4.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/U9U4rgs.jpg" group-title="Legislative",Oireachtas TV Committee Room 4 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr4/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVDailEireann.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/mexKiS0.jpg" group-title="Legislative",Oireachtas TV Dáil Éireann (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/dail/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVSeanadEireann.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/c5TI2DT.jpg" group-title="Legislative",Oireachtas TV Seanad Éireann (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/seanad/hls.m3u8 -#EXTINF:-1 tvg-id="RTENews.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/OisW3m0.png" group-title="News",RTÉ News (1080p) [Geo-blocked] -https://live.rte.ie/live/a/channel3/news.isml/.m3u8 diff --git a/channels/ie_samsung.m3u b/channels/ie_samsung.m3u deleted file mode 100644 index 010f602c9..000000000 --- a/channels/ie_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) -https://rakuten-africanews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/il.m3u b/channels/il.m3u deleted file mode 100644 index 80e3aaeff..000000000 --- a/channels/il.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AsaChild.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/Vs55QWR.png" group-title="",As a Child (576p) -https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoppingIL21TV.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://upload.wikimedia.org/wikipedia/he/b/b9/סמליל_ערוץ_הקניות.jpg" group-title="Shop",ch 21 ערוץ הקניות (360p) [Timeout] -http://82.80.192.30/shoppingil_ShoppingIL21TVRepeat/smil:ShoppingIL21TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel2News.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/NmnXn2z.jpg" group-title="News",Channel 2 News (360p) -https://keshethlslive-lh.akamaihd.net/i/c2n_1@195269/master.m3u8 -#EXTINF:-1 tvg-id="Channel9.il" tvg-country="IL" tvg-language="Russian" tvg-logo="" group-title="",Channel 9 (540p) [Not 24/7] -http://50.7.231.221:8081/185/index.m3u8?wmsAuthSign=okad -#EXTINF:-1 tvg-id="Channel12.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="General",Channel 12 (576p) [Offline] -http://93.152.174.144:4000/play/ch12/index.m3u8 -#EXTINF:-1 tvg-id="Channel13.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="General",Channel 13 (576p) [Offline] -http://93.152.174.144:4000/play/ch13/index.m3u8 -#EXTINF:-1 tvg-id="Channel24.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/2RC8nh6.jpg" group-title="Music",Channel 24 (720p) -https://keshethlslive-lh.akamaihd.net/i/24live_1@195271/index_2200_av-b.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (1080p) [Not 24/7] -https://live1.panet.co.il/edge_abr/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (576p) [Not 24/7] -https://gstream4.panet.co.il/edge/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (240p) [Not 24/7] -https://live2.panet.co.il/edge_abr/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) -https://stream5.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) -https://stream72.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) [Not 24/7] -https://stream71.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IsraelParsTV.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Israel Pars TV (540p) -https://live.pars-israel.com/iptv/stream.m3u8 -#EXTINF:-1 tvg-id="KabbalahforthePeopleIsrael.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/8R1UWRw.jpg" group-title="",Kabbalah for the People (Israel) (504p) [Not 24/7] -https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8 -#EXTINF:-1 tvg-id="KAN11Israel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/SBeqbv0.png" group-title="",KAN 11 Israel (432p) [Geo-blocked] -https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8 -#EXTINF:-1 tvg-id="KAN11Israel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/SBeqbv0.png" group-title="",KAN 11 Israel (720p) [Offline] -http://93.152.174.144:4000/play/kan11/index.m3u8 -#EXTINF:-1 tvg-id="Keshet12.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Keshet 12 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Hebrew/keshet_12 -#EXTINF:-1 tvg-id="KnessetChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnihI34u_uI888nfYeu5QIgZDdyqEGdiQ6gW6PNU3A=s900-c-k-c0x00ffffff-no-rj" group-title="",Knesset Channel (480p) [Not 24/7] -https://contact.gostreaming.tv/Knesset/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Makan33.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://www.makan.org.il/images/logo_livemenu_34logo_livemenu_33.png" group-title="",Makan 33 (576p) [Geo-blocked] -https://kanlivep2event-i.akamaihd.net/hls/live/747613/747613/master.m3u8 -#EXTINF:-1 tvg-id="MusayofIsrael.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Musayof (Israel) (240p) [Not 24/7] -http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Reshet13.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="http://thumbs2.imagebam.com/bc/ad/be/19f5c9784877383.jpg" group-title="",Reshet 13 (720p) -https://d18b0e6mopany4.cloudfront.net/out/v1/08bc71cf0a0f4712b6b03c732b0e6d25/index.m3u8 -#EXTINF:-1 tvg-id="Sport2.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 2 (720p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport2/index.m3u8 -#EXTINF:-1 tvg-id="Sport3.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 3 (1080p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport3/index.m3u8 -#EXTINF:-1 tvg-id="Sport4.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 4 (1080p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport4/index.m3u8 -#EXTINF:-1 tvg-id="SportsChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sports Channel (720p) [Not 24/7] -http://93.152.174.144:4000/play/s5plus/index.m3u8 -#EXTINF:-1 tvg-id="YnetLive.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Ynet Live (1080p) -https://ynet-lh.akamaihd.net/i/ynet_1@123290/master.m3u8 diff --git a/channels/in.m3u b/channels/in.m3u deleted file mode 100644 index e7a5fe6bf..000000000 --- a/channels/in.m3u +++ /dev/null @@ -1,843 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AndFlix.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.epg.best/in/AndFlix.in.png" group-title="Movies",&Flix (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_2105335046 -#EXTINF:-1 tvg-id="AndPictures.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndPictures.in.png" group-title="Movies",&Pictures (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-tvpictureshd -#EXTINF:-1 tvg-id="AndPriveHD.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndPrive.in.png" group-title="Movies",&privé HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-privéhd -#EXTINF:-1 tvg-id="AndTVHD.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndTV.in.png" group-title="Movies",&TV HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-tvhd_0 -#EXTINF:-1 tvg-id="3TamilTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/WfAU7pB.png" group-title="Entertainment",3 Tamil TV (720p) [Not 24/7] -https://6n3yogbnd9ok-hls-live.5centscdn.com/threetamil/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 -#EXTINF:-1 tvg-id="7SMusic.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/P5EXpPy.jpg" group-title="Music",7S Music (576p) [Not 24/7] -http://103.199.161.254/Content/7smusic/Live/Channel(7smusic)/index.m3u8 -#EXTINF:-1 tvg-id="9XJalwa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6h83JRO.png" group-title="Music",9X Jalwa (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nc/index.m3u8 -#EXTINF:-1 tvg-id="9XJhakaas.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/aZ0f85I.png" group-title="Music",9X Jhakaas (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0mx/index.m3u8 -#EXTINF:-1 tvg-id="9XM.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/fD7wLka.jpg" group-title="Music",9XM (480p) -https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/9XM/9XM.isml/index.m3u8 -#EXTINF:-1 tvg-id="ANEWSdonsTVBhangraFlava.in" tvg-country="IN" tvg-language="Punjabi" tvg-logo="" group-title="Music",A NEWSDONs TV- SWAG SADDA VAKRAA (720p) [Not 24/7] -http://newsjatt.camdvr.org:1935/newsjatt/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="AajTak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/x1Y2P21.png" group-title="News",Aaj Tak (360p) [Geo-blocked] -https://lmil.live-s.cdn.bitgravity.com/cdn-live/_definst_/lmil/live/aajtak_app.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AathavanTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/IgwQ7o5.png" group-title="Entertainment",Aathavan TV (720p) [Not 24/7] -http://45.77.66.224:1935/athavantv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ABPAnanda.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://tv.releasemyad.com/images/logo/20160108044853abp-ananada.jpg" group-title="News",ABP Ananda (720p) -https://abp-i.akamaihd.net/hls/live/765530/abpananda/master.m3u8 -#EXTINF:-1 tvg-id="ABPAsmita.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/XIkRbG7f.png" group-title="News",ABP Asmita (720p) -https://abp-i.akamaihd.net/hls/live/765532/abpasmita/master.m3u8 -#EXTINF:-1 tvg-id="ABPAsmita.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/XIkRbG7f.png" group-title="News",ABP Asmita (324p) -http://abpasmita-lh.akamaihd.net/i/abpasmita_1@77821/master.m3u8 -#EXTINF:-1 tvg-id="ABPHindi.in" tvg-country="IN" tvg-language="English" tvg-logo="https://static.abplive.in/wp-content/themes/abp-hindi/images/logo/hindiLogoD.png" group-title="News",ABP Hindi (720p) -https://abp-i.akamaihd.net/hls/live/765529/abphindi/master.m3u8 -#EXTINF:-1 tvg-id="ABPHindi.in" tvg-country="IN" tvg-language="English" tvg-logo="https://static.abplive.in/wp-content/themes/abp-hindi/images/logo/hindiLogoD.png" group-title="News",ABP Hindi (324p) -http://hindiabp-lh.akamaihd.net/i/hindiabp1new_1@192103/master.m3u8 -#EXTINF:-1 tvg-id="ABPMajha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/GteRQ6A.png" group-title="News",ABP Majha (720p) -https://abp-i.akamaihd.net/hls/live/765531/abpmajha/master.m3u8 -#EXTINF:-1 tvg-id="ACV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/FNBkLUA.jpg" group-title="",ACV [Offline] -https://acv.asianetmobiletvplus.com/webstreams/8f8e72769cb3e3a6e27c220e1e3887b8.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVJukebox.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/tYPn1lW.png" user-agent="AsianetMobileTVPlus" group-title="Music",ACV JukeBox (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/acvjukebox_awannbgiynqynhufohawnvbmlgglfpuc/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/fP0g1np.jpg" user-agent="AsianetMobileTVPlus" group-title="News",ACV News (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/acvnews_3e85eb4c12bd2110d3f495676205d50a/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVPlus.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/DjtPQeg.jpg" user-agent="AsianetMobileTVPlus" group-title="",ACV Plus (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/acvplus_ef22daf97d61acb4bf52376c4105ad02/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVUtsav.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LLN585Y.png" user-agent="AsianetMobileTVPlus" group-title="",ACV Utsav (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/acvutsav_021c9292219a98f899a7b74f0f34baa7/playlist.m3u8 -#EXTINF:-1 tvg-id="ADNGold.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/UzPPjoH.jpg" user-agent="AsianetMobileTVPlus" group-title="",ADN Gold (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/adngold_dibbcspwxywdcuwawgrvurjwitwbiksl/playlist.m3u8 -#EXTINF:-1 tvg-id="AkaramKidz.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/hAgaVPa.jpg" group-title="Kids",Akaram Kidz (720p) [Not 24/7] -http://akaram.zecast.net/akaram-live/akaramkidz/index.m3u8 -#EXTINF:-1 tvg-id="AKDCalcuttaNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://calcuttanews.tv/images/cnwotag.png" group-title="News",AKD Calcutta News (540p) [Geo-blocked] -https://d39iawgzv3h0yo.cloudfront.net/out/v1/1ef4344a3b4a41908915d58ac7bd5e23/index.m3u8 -#EXTINF:-1 tvg-id="AmarUjala.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Amar Ujala (360p) [Not 24/7] -https://streamcdn.amarujala.com/live/smil:stream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AmritaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xxWaGyn.jpg" group-title="Entertainment",Amrita TV (576p) -http://103.199.161.254/Content/amrita/Live/Channel(Amrita)/index.m3u8 -#EXTINF:-1 tvg-id="Anjan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Anjan (720p) [Not 24/7] -https://f3.vstream.online:7443/bstb/ngrp:anjan_hdall/playlist.m3u8 -#EXTINF:-1 tvg-id="ApnaPunjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Apna Punjab (720p) -http://cdn5.live247stream.com/apnapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ArtistAloud.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Artist Aloud (480p) [Not 24/7] -https://live.hungama.com/linear/artist-aloud/playlist.m3u8 -#EXTINF:-1 tvg-id="AshrafiChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Ashrafi Channel (484p) [Not 24/7] -http://ashrafichannel.livebox.co.in/ashrafivhannelhls/live.m3u8 -#EXTINF:-1 tvg-id="AsianetMiddleEast.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/du9iZ0s.png" group-title="Entertainment",Asianet Middle East (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0k6/index.m3u8 -#EXTINF:-1 tvg-id="AsianetNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/89LBgkl.png" group-title="News",Asianet News (576p) -http://103.199.161.254/Content/asianetnews/Live/Channel(Asianetnews)/index.m3u8 -#EXTINF:-1 tvg-id="AsianetNews.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/89LBgkl.png" group-title="News",Asianet News (720p) [Not 24/7] -https://vidcdn.vidgyor.com/asianet-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.asianetnews.com/v1/images/bangla_logo.png" group-title="News",Asianet News Bangla (360p) [Not 24/7] -https://vidcdn.vidgyor.com/rplus-origin/rplusasianetlive/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsKannada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.asianetnews.com/v1/images/asianet_suvarna_news.png" group-title="News",Asianet News Kannada (360p) [Not 24/7] -https://vidcdn.vidgyor.com/suvarna-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsTamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.asianetnews.com/v1/images/tamil_logo.png" group-title="News",Asianet News Tamil (360p) [Not 24/7] -https://vidcdn.vidgyor.com/ptm-origin/aslive/playlist.m3u8 -#EXTINF:-1 tvg-id="AssamTalks.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/GmXawATX.png" group-title="",Assam Talks (240p) [Not 24/7] -http://vidnetcdn.vidgyor.com/assamtalks-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",ATN Bangla (1080p) [Offline] -http://103.81.104.118/hls/stream17.m3u8 -#EXTINF:-1 tvg-id="AyushTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PWzvp0B.png" group-title="Lifestyle",Ayush TV (360p) [Not 24/7] -https://95eryw39dwn4-hls-live.wmncdn.net/Ayushu/271ddf829afeece44d8732757fba1a66.sdp/index.m3u8 -#EXTINF:-1 tvg-id="B4UBhojpuri.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/FizAx6D.png" group-title="Movies",B4U Bhojpuri (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nq/index.m3u8 -#EXTINF:-1 tvg-id="B4UHitz.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",B4U Hitz (720p) [Not 24/7] -http://14.199.164.20:4001/play/a0wh/index.m3u8 -#EXTINF:-1 tvg-id="B4UKadak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/vwkjtRT.png" group-title="Movies",B4U Kadak (576p) [Not 24/7] -http://103.199.160.85/Content/moviehouse/Live/Channel(MovieHouse)/index.m3u8 -#EXTINF:-1 tvg-id="B4UMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FiIewq2.png" group-title="Movies",B4U movies (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0wj/index.m3u8 -#EXTINF:-1 tvg-id="B4UMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/LZxPgLh.png" group-title="Music",B4U Music (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0wk/index.m3u8 -#EXTINF:-1 tvg-id="B4UPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SsooYqR.png" group-title="Movies",B4U Plus (720p) [Not 24/7] -http://14.199.164.20:4001/play/a0wi/index.m3u8 -#EXTINF:-1 tvg-id="BflixMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/z3ALZQQ.jpg" group-title="Movies",Bflix Movies (480p) -https://m-c036-j2apps.s.llnwi.net/hls/5045.BFlixMovies.in.m3u8 -#EXTINF:-1 tvg-id="BhojpuriCinema.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/ABxIO7r.jpg" group-title="Movies",Bhojpuri Cinema (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0rj/index.m3u8 -#EXTINF:-1 tvg-id="Bollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Bollywood (480p) [Offline] -https://m-c09-j2apps.s.llnwi.net/hls/8001.Bollywood.in.m3u8 -#EXTINF:-1 tvg-id="BollywoodClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://iptv.live/images/logo/channel/smalls/4b865f70179ee2a8bebc3260a0315f67.png" group-title="Classic",Bollywood Classic [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodClassic/6.m3u8/Level(1677721)?end=END&start=LIVE -#EXTINF:-1 tvg-id="BollyWoodHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",BollyWood HD [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodHD/247.m3u8/Level(3670016)?end=END&start=LIVE -#EXTINF:-1 tvg-id="BoogleBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://booglebollywood.com/wp-content/uploads/2018/02/boogle-bollywood-final_2-300x96.png" group-title="",Boogle Bollywood [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-165 -#EXTINF:-1 tvg-id="BoogleBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://booglebollywood.com/wp-content/uploads/2018/02/boogle-bollywood-final_2-300x96.png" group-title="",Boogle Bollywood (1080p) [Not 24/7] -http://live.agmediachandigarh.com/booglebollywood/774e3ea9f3fa9bcdac47f445b83b6653.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BoxCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/LGJlmtp.png" group-title="Movies",Box Cinema (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0su/index.m3u8 -#EXTINF:-1 tvg-id="CaptainNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/e/e6/Captain_News.jpg/revision/latest/scale-to-width-down/200?cb=20191224082105" group-title="News",Captain News (480p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=Xy1avvmtmRk -#EXTINF:-1 tvg-id="CaptainTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/UXg6sac.png" group-title="Entertainment",Captain TV (576p) [Not 24/7] -http://103.199.160.85/Content/captain/Live/Channel(Captain)/index.m3u8 -#EXTINF:-1 tvg-id="Channel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.epg.best/in/ChannelV.in.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Channel (720p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://livecdn.fptplay.net/foxlive/channelvhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelDivya.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/fYgExotG.png" group-title="",Channel Divya (360p) [Not 24/7] -http://edge-ind.inapcdn.in:1935/berry1/latest.stream_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelWin.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Channel Win (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/channelwinlive/channelwinlive/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelY.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Channel Y (720p) [Not 24/7] -http://cdn19.live247stream.com/channely/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCAwaaz.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Business",CNBC Awaaz (504p) [Not 24/7] -https://cnbcawaaz-lh.akamaihd.net/i/cnbcawaaz_1@174872/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNBCBajar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",CNBC Bajar (504p) [Geo-blocked] -https://cnbcbazar-lh.akamaihd.net/i/cnbcbajar_1@178933/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNBCTV18.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/3yumcV3.jpg" group-title="Business",CNBC TV18 (504p) -https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="Colors.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/54bd3c3a5a59d.png" group-title="",Colors (720p) [Not 24/7] -http://master.beeiptv.com:8081/colors/colorsbdtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ColorsBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/wdSDF2V.png" group-title="",Colors Bangla (1080p) [Offline] -http://tvflix03.ddns.net/ColorsBangla_ENC/video.m3u8 -#EXTINF:-1 tvg-id="Dabangg.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/hpizqP6.png" group-title="Entertainment",Dabangg (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nb/index.m3u8 -#EXTINF:-1 tvg-id="DarshanaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://www.tvchannelpricelist.com/wp-content/uploads/channels-logo-300/darshana-tv-channel-logo-300x300.jpg" group-title="Entertainment",Darshana TV (576p) [Offline] -https://streaming37.worldbbtv.com/hls/darshana.m3u8 -#EXTINF:-1 tvg-id="DDBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Entertainment",DD Bangla (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-ddbangla -#EXTINF:-1 tvg-id="DDMalayalam.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/9HfMVKs.jpg" group-title="Entertainment",DD Malayalam (576p) -http://103.199.161.254/Content/ddmalayalam/Live/Channel(DDMalayalam)/index.m3u8 -#EXTINF:-1 tvg-id="DDNational.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/MohlE5B.png" group-title="Entertainment",DD National (576p) -http://103.199.161.254/Content/ddnational/Live/Channel(DDNational)/index.m3u8 -#EXTINF:-1 tvg-id="DDNational.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/MohlE5B.png" group-title="Entertainment",DD National (480p) [Not 24/7] -https://m-c036-j2apps.s.llnwi.net/hls/0098.DDNational.in.m3u8 -#EXTINF:-1 tvg-id="DDNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9ozOypJ.png" group-title="News",DD News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCKwucPzHZ7zCUIf7If-Wo1g/live -#EXTINF:-1 tvg-id="DDPunjabi.in" tvg-country="IN" tvg-language="Punjabi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/vPCWBEFx.png" group-title="News",DD Punjabi (576p) [Offline] -https://hls.media.nic.in/live/ddpunjabi1/index.m3u8 -#EXTINF:-1 tvg-id="DDSports.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PEEELsL.png" group-title="Sports",DD Sports (576p) -http://103.199.161.254/Content/ddsports/Live/Channel(DDSPORTS)/index.m3u8 -#EXTINF:-1 tvg-id="DesiBeatsHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Desi Beats HD (720p) -http://cdn7.live247stream.com/desibeats/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DesiChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Desi Channel (720p) -https://live.wmncdn.net/desichannel/7e2dd0aed46b70a5c77f4affdb702e4b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DesiPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Desi Plus (720p) -http://cdn2.live247stream.com/desiplus/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Dhamaal.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Dhamaal (1080p) [Not 24/7] -https://live.hungama.com/linear/dhamaal/playlist.m3u8 -#EXTINF:-1 tvg-id="Dhinchaak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/T2c6PjU.jpg" group-title="Movies",Dhinchaak (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0o5/index.m3u8 -#EXTINF:-1 tvg-id="Dhinchaak2.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/AC4ze9o.jpg" group-title="Movies",Dhinchaak 2 (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0tm/index.m3u8 -#EXTINF:-1 tvg-id="DighvijayNews24x7.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/wdE7gxU.png" group-title="News",Dighvijay (240p) [Not 24/7] -https://vidcdn.vidgyor.com/dighvijay-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="DilSe.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Dil Se (480p) [Not 24/7] -https://live.hungama.com/linear/dil-se/playlist.m3u8 -#EXTINF:-1 tvg-id="DishaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Disha TV (360p) [Not 24/7] -http://xlbor3aadvaj-hls-live.wmncdn.net/disha/stream.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Dishum.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/k4j2QJX.png" group-title="Entertainment",Dishum [Geo-blocked] -https://m-c29-j2apps.s.llnwi.net/hls/5332.Dishum.in.m3u8 -#EXTINF:-1 tvg-id="Dishum.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/k4j2QJX.png" group-title="Entertainment",Dishum (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pe/index.m3u8 -#EXTINF:-1 tvg-id="DivyaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Divya TV [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-divyatv -#EXTINF:-1 tvg-id="DocuBayTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://od.lk/s/MF8yMzAxMjQ1MzBf/Docubay_750x750.png" group-title="Entertainment",DocuBay TV (1080p) [Not 24/7] -https://docubayvh.s.llnwi.net/526a07ab-6ae7-4b6c-84a1-159791416484_1000004372_HLS/manifest.m3u8 -#EXTINF:-1 tvg-id="DreamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/VdcG0i6.png" group-title="Entertainment",Dream TV (720p) [Not 24/7] -https://cloudflare-cdn301.ottpro.in/dream_media/reedeem/playlist.m3u8 -#EXTINF:-1 tvg-id="DreamzTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yXHmKtT.png" group-title="Entertainment",Dreamz TV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/DREAMHD/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="DumTVKannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/e43ysdo.png" group-title="Entertainment",Dum TV Kannada (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0sq/index.m3u8 -#EXTINF:-1 tvg-id="E24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/VBu7r0A.png" group-title="Entertainment",E24 (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pc/index.m3u8 -#EXTINF:-1 tvg-id="EETTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/f7J37yv.png" group-title="Entertainment",EET TV (1080p) [Not 24/7] -https://live.streamjo.com/eetlive/eettv.m3u8 -#EXTINF:-1 tvg-id="Enter10Bangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/fkOxQtS.png" group-title="Entertainment",Enter10 Bangla (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0j5/index.m3u8 -#EXTINF:-1 tvg-id="Enter10Rangeela.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/419CJW8.png" group-title="Entertainment",Enter10 Rangeela (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0tp/index.m3u8 -#EXTINF:-1 tvg-id="EpicTV.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/XsRrnc5.png" group-title="",Epic TV [Geo-blocked] -https://m-c03-j2apps.s.llnwi.net/hls/2639.Epic.in.m3u8 -#EXTINF:-1 tvg-id="ETNow.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/rhkI95a.png" group-title="Business",ET Now (720p) -https://etnowweblive-lh.akamaihd.net/i/ETN_1@348070/master.m3u8 -#EXTINF:-1 tvg-id="ETVAndhraPradesh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FfiMH8z.jpg" group-title="News",ETV Andhra Pradesh (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSbwShxZsBiqqWwtUidmS6g/live -#EXTINF:-1 tvg-id="ETVChattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",ETV Chattisgarh [Offline] -https://etv-mp.akamaized.net/i/etv_mp_hls_1@175737/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="ETVTelangana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/lQBs2Cs.jpg" group-title="News",ETV Telangana (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6ickpgDIsltU_-8CbZaksQ/live -#EXTINF:-1 tvg-id="ETVUttarakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",ETV Uttarakhand [Offline] -https://etv-up.akamaized.net/i/etv_up_hls_1@175735/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="FaktMarathi.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/y0VS4QN.png" group-title="Entertainment",Fakt Marathi (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0q8/index.m3u8 -#EXTINF:-1 tvg-id="FaktMarathi.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/y0VS4QN.png" group-title="Entertainment",Fakt Marathi (480p) [Offline] -https://m-c036-j2apps.s.llnwi.net/hls/3200.FaktMarathi.in.m3u8 -#EXTINF:-1 tvg-id="FASTWAYNEWS.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",FASTWAY NEWS (720p) [Not 24/7] -http://163.47.214.155:1935/fwnews/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Filmeraa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Filmeraa (720p) -https://a.jsrdn.com/broadcast/7ef91d3d7a/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FlowersTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://www.flowerstv.in/wp-content/uploads/2017/12/Flowers-Logo-alpha-1.png" group-title="Entertainment",Flowers TV (576p) -http://103.199.161.254/Content/flowers/Live/Channel(Flowers)/index.m3u8 -#EXTINF:-1 tvg-id="FoodFood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/J930pA1.png" group-title="Entertainment",Food Food (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0qx/index.m3u8 -#EXTINF:-1 tvg-id="GabruuTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/k9kHJv9.jpg" group-title="Music",Gabruu TV [Offline] -http://104.237.60.234/live/gabruutv.m3u8 -#EXTINF:-1 tvg-id="GaundaPunjabTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/J74dCx6.png" group-title="",Gaunda Punjab TV (720p) [Not 24/7] -http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GDNSLudhiana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",GDNS Ludhiana (1080p) [Not 24/7] -http://akalmultimedia.net:1935/gdnslive/gdns-live/chunklist.m3u8 -#EXTINF:-1 tvg-id="GlobalPunjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6GcaSUS.jpg" group-title="News",Global Punjab (720p) [Not 24/7] -https://media.streambrothers.com:1936/8522/8522/playlist.m3u8 -#EXTINF:-1 tvg-id="GSTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/zCIK5Ze.png" group-title="",GSTV (720p) [Not 24/7] -https://1-213-10546-44.b.cdn13.com/388656798579293628302251.m3u8 -#EXTINF:-1 tvg-id="HiDosti.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/C7XN3JP.png" group-title="",Hi Dosti (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0rg/index.m3u8 -#EXTINF:-1 tvg-id="HiruTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/1/15/Hiru_TV-Logo.png/220px-Hiru_TV-Logo.png" group-title="",Hiru TV (360p) [Not 24/7] -http://cdncities.com/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="HulchulTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Hulchul TV (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/jbani/index.m3u8 -#EXTINF:-1 tvg-id="HungamaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/ctjMaOW.png" group-title="Kids",Hungama TV (576p) [Timeout] -http://103.153.39.34:8000/play/a04l/index.m3u8 -#EXTINF:-1 tvg-id="ILove.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/u191zfh.png" group-title="Music",I Love (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0p3/index.m3u8 -#EXTINF:-1 tvg-id="Imayam.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/CzdM0pg.png" group-title="Entertainment",Imayam (480p) [Not 24/7] -https://idvd.multitvsolution.com/idvo/imayamtv.m3u8 -#EXTINF:-1 tvg-id="IndiaNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/IB1ycQJs.png" group-title="News",India News (480p) -https://m-c036-j2apps.s.llnwi.net/hls/0442.IndiaNews.in.m3u8 -#EXTINF:-1 tvg-id="IndiaToday.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://akm-img-a-in.tosshub.com/sites/all/themes/itg/logo.png" group-title="News",India Today (720p) [Not 24/7] -https://indiatodaylive.akamaized.net/hls/live/2014320/indiatoday/indiatodaylive/playlist.m3u8 -#EXTINF:-1 tvg-id="IndiaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/IYXrLPs.png" group-title="",India TV (480p) [Not 24/7] -https://live-indiatvnews.akamaized.net/indiatv-origin/ITV_1_1@199237/playlist.m3u8 -#EXTINF:-1 tvg-id="IndiaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/IYXrLPs.png" group-title="",India TV (480p) [Not 24/7] -https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="IsaiAruvi.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/radWIeb.png" group-title="Music",Isai Aruvi (576p) -http://103.199.161.254/Content/isaiaruvi/Live/Channel(IsaiAruvi)/index.m3u8 -#EXTINF:-1 tvg-id="JaihindTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Jw0M6Kp.jpg" group-title="Entertainment",Jaihind TV (576p) -http://103.199.161.254/Content/jaihind/Live/Channel(Jaihind)/index.m3u8 -#EXTINF:-1 tvg-id="JanTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/0qNJuVP.jpg" group-title="News",Jan TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.youtube.com/channel/UCjmnq35TvJ1J8JZS49OPg-Q/live -#EXTINF:-1 tvg-id="JanTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/0qNJuVP.jpg" group-title="News",Jan TV (360p) [Not 24/7] -http://jantvstream.in:1935/edge1/sc1jantv.stream_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (720p) -https://vidcdn.vidgyor.com/janamtv-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNVkxRPqsBNejO6B9thG9Xw/live -#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ja/index.m3u8 -#EXTINF:-1 tvg-id="JanapriyamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/rbn6YSb.png" group-title="Entertainment",Janapriyam TV [Offline] -https://jio.instream.ml/jio.php?c=Janapriyam_News&e=.m3u8&q=400 -#EXTINF:-1 tvg-id="JanataaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Janataa TV [Not 24/7] -http://mydreams.livebox.co.in/Janataatvhls/Janataatv.m3u8 -#EXTINF:-1 tvg-id="JantaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Janta TV (360p) [Not 24/7] -https://live.wmncdn.net/jantatv/live.stream/index.m3u8 -#EXTINF:-1 tvg-id="JayaPlus.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/7/7b/Jaya_Plus.jpeg/revision/latest/scale-to-width-down/250?cb=20191224113458" group-title="News",Jaya Plus (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=eWNFGCYl7Y8 -#EXTINF:-1 tvg-id="JeevanTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/PYs1W1Y.png" group-title="",Jeevan TV (576p) -http://103.199.161.254/Content/jeevan/Live/Channel(Jeevan)/index.m3u8 -#EXTINF:-1 tvg-id="JhanjarMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/gIYOu4i.jpg" group-title="Music",Jhanjar Music (1080p) [Not 24/7] -http://159.203.9.134/hls/jhanjar_music/jhanjar_music.m3u8 -#EXTINF:-1 tvg-id="JonackTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Jonack TV (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/jonakk/jonakk/playlist.m3u8 -#EXTINF:-1 tvg-id="KadakHits.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Kadak Hits (360p) [Not 24/7] -https://live.hungama.com/linear/kadak-hits/playlist.m3u8 -#EXTINF:-1 tvg-id="KairaliArabia.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/dp6BvWJ.png" group-title="Entertainment",Kairali Arabia (480p) [Not 24/7] -https://idvd.multitvsolution.com/idvo/kairaliarabia_540p/index.m3u8 -#EXTINF:-1 tvg-id="KairaliNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hXsVrIh.jpg" group-title="News",Kairali News (576p) -http://103.199.161.254/Content/people/Live/Channel(People)/index.m3u8 -#EXTINF:-1 tvg-id="KairaliNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hXsVrIh.jpg" group-title="News",Kairali News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkCWitaToNG1_lR-Si1oMrg/live -#EXTINF:-1 tvg-id="KairaliTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/8Di4h6t.png" group-title="Entertainment",Kairali TV (480p) -http://103.199.161.254/Content/kairali/Live/Channel(Kairali)/index.m3u8 -#EXTINF:-1 tvg-id="KairaliWe.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Z626hKz.jpg" group-title="Entertainment",Kairali We (576p) -http://103.199.161.254/Content/we/Live/Channel(We)/index.m3u8 -#EXTINF:-1 tvg-id="KalaiIsai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Music",Kalai Isai (1080p) [Not 24/7] -http://singamcloud.in:1935/kalai/kalaiisai/playlist.m3u8 -#EXTINF:-1 tvg-id="Kalaignar.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://upload.wikimedia.org/wikipedia/en/3/3a/Kalaignar_logo.jpg" group-title="",Kalaignar (576p) -http://103.199.161.254/Content/kalaignartv/Live/Channel(KalaignarTV)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarMurasu.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/ZDXVWVQ.png" group-title="Music",Kalaignar Murasu (576p) [Not 24/7] -http://103.199.160.85/Content/kalaignarmurasu/Live/Channel(KalaignarMurasu)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarSeithikal.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/qWOnWhQ.png" group-title="News",Kalaignar Seithikal (576p) [Not 24/7] -http://103.199.160.85/Content/kalaignarseithikal/Live/Channel(KalaignarSeithikal)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarSeithikal.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/d/dc/Seithigal.jpeg/revision/latest/scale-to-width-down/260?cb=20191224114931" group-title="News",Kalaignar Seithikal (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=taLsR3aC2vw -#EXTINF:-1 tvg-id="KalaignarSirippoli.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/bqXRXaZ.png" group-title="Comedy",Kalaignar Sirippoli (576p) -http://103.199.161.254/Content/kalaignarsirippoli/Live/Channel(Kalaignarsirippoli)/index.m3u8 -#EXTINF:-1 tvg-id="KalingaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/e1HGzSqS.png" group-title="",Kalinga TV (864p) [Not 24/7] -https://live.mycast.in/kalingatv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KanakNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/4ZNf4dH3.png" group-title="News",Kanak News (720p) [Not 24/7] -https://live.kanaknews.com:4443/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KannurOne.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hytRL90.png" group-title="",Kannur One (720p) [Not 24/7] -https://bnwdplewrp3a-hls-live.wmncdn.net/kannur1/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KannurVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Zo6TFvK.png" group-title="",Kannur Vision (360p) [Not 24/7] -https://stream.ufworldind.in/live/kvision/playlist.m3u8 -#EXTINF:-1 tvg-id="KappaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/MkfPo1V.jpg" group-title="Lifestyle",Kappa TV (360p) -http://103.199.161.254/Content/kappa/Live/Channel(Kappa)/index.m3u8 -#EXTINF:-1 tvg-id="KasthuriTV.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://upload.wikimedia.org/wikipedia/en/7/78/Kasthuri-TV-logo.jpg" group-title="Entertainment",Kasthuri (576p) -http://103.199.161.254/Content/kasthuritv/Live/Channel(KasthuriTV)/index.m3u8 -#EXTINF:-1 tvg-id="KaumudyTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://kaumudy.tv/images/logo.jpg" group-title="Entertainment",Kaumudy TV (720p) [Offline] -https://live.wmncdn.net/kaumuditv1/live.stream/index.m3u8 -#EXTINF:-1 tvg-id="KCLTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/bkp9dIm.png" group-title="Entertainment",KCL TV (720p) [Not 24/7] -http://kcltv.livebox.co.in/kclhls/live.m3u8 -#EXTINF:-1 tvg-id="KCV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/9YD8u4H.png" group-title="Entertainment",KCV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/KCVTV/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="KCVMovies.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/NY94lnZ.png" group-title="Movies",KCV Movies (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/KCVMOVIE/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="Kentv.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/OnYOCmw.jpg" group-title="",Ken TV (360p) -https://stream.ufworldind.in/kentvlive/smil:kentv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KeralaVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/0XF3nLw.png" group-title="Entertainment",Kerala Vision (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ni/index.m3u8 -#EXTINF:-1 tvg-id="KeralaVisionNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://nettv4u.com/uploads/23-07-2020/kerala-vision.png" group-title="News",Kerala Vision News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtSeMwydGw6mDSZaIUaJ5bw/live -#EXTINF:-1 tvg-id="KhabrainAbhiTak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Khabrain Abhi Tak (480p) -https://vidcdn.vidgyor.com/kat-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="KITEVicters.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/RvZxSkx.png" group-title="Education",KITE Victers (Kerala) (720p) [Not 24/7] -https://932y4x26ljv8-hls-live.5centscdn.com/victers/tv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KrishnaVani.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Krishna Vani (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-166 -#EXTINF:-1 tvg-id="LifePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Life Punjabi (720p) [Not 24/7] -http://live.agmediachandigarh.com/lifepunjabi/e27b5c8d89b83882ca3b018eeed14888.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="LifeTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Life TV (480p) [Not 24/7] -http://59c3ec70cfde0.streamlock.net/channel_6/channel6/playlist.m3u8 -#EXTINF:-1 tvg-id="LokSabhaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/WRaWgBYY.png" group-title="",Lok Sabha TV (576p) [Not 24/7] -https://nicls1-lh.akamaihd.net/i/lst_1@26969/master.m3u8 -#EXTINF:-1 tvg-id="MahaMovie.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/hpShFDL.png" group-title="Movies",Maha Movie (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0q7/index.m3u8 -#EXTINF:-1 tvg-id="MahaMovie.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/hpShFDL.png" group-title="Movies",Maha Movie (240p) [Not 24/7] -https://m-c036-j2apps.s.llnwi.net/hls/2820.MahaMovie.in.m3u8 -#EXTINF:-1 tvg-id="MakkalTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/Sv4bLGX.png" group-title="General",Makkal TV [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-makkaltv -#EXTINF:-1 tvg-id="MakkalTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/Sv4bLGX.png" group-title="General",Makkal TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0l1/index.m3u8 -#EXTINF:-1 tvg-id="MalabarNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yJWfyfM.png" group-title="News",Malabar News (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/live/malabarnews/playlist.m3u8 -#EXTINF:-1 tvg-id="MalabarVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ZNbdouM.jpg" group-title="News",Malabar Vision (720p) [Timeout] -http://cdn1.logicwebs.in:1935/malabar/malabar/playlist.m3u8 -#EXTINF:-1 tvg-id="Malaimurasu.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/uFiHtQX.png" group-title="News",Malaimurasu (480p) [Not 24/7] -https://malaimurasucdn.purplestream.com/malaimurasu/49992ade0624eda468a31e137996d044.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="MalppuramChannel.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/X2aZBiz.png" group-title="News",Malappuram Channel (720p) [Not 24/7] -http://103.78.18.137:1935/live/mlpchannel/chunklist.m3u8 -#EXTINF:-1 tvg-id="Mangalam.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/V5nQl9m.png" group-title="News",Mangalam (576p) [Not 24/7] -http://103.199.160.85/Content/mangalam/Live/Channel(Mangalam)/index.m3u8 -#EXTINF:-1 tvg-id="ManoramaNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/QWHbIYt.png" group-title="News",Manorama News (576p) -http://103.199.161.254/Content/manoramanews/Live/Channel(ManoramaNews)/index.m3u8 -#EXTINF:-1 tvg-id="ManoranjanGrand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/2BSvBGG.png" group-title="Movies",Manoranjan Grand (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0m2/index.m3u8 -#EXTINF:-1 tvg-id="ManoranjanMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7uHOyA.png" group-title="Movies",Manoranjan Movies (480p) -https://m-c036-j2apps.s.llnwi.net/hls/2172.ManoranjanMovies.in.m3u8 -#EXTINF:-1 tvg-id="MarutamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/cFNw4Af.png" group-title="Entertainment",Marutam TV (720p) [Not 24/7] -http://mntv.livebox.co.in/mntvhls/mntv.m3u8 -#EXTINF:-1 tvg-id="Mastiii.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/iDDExsO.png" group-title="Music",Mastiii (576p) [Not 24/7] -http://103.199.160.85/Content/masthi/Live/Channel(Masthi)/index.m3u8 -#EXTINF:-1 tvg-id="MathrubhumiNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xlGIEnZ.png" group-title="News",Mathrubhumi News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCwXrBBZnIh2ER4lal6WbAHw/live -#EXTINF:-1 tvg-id="MathrubhumiNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xlGIEnZ.png" group-title="News",Mathrubhumi News (576p) [Not 24/7] -http://103.199.161.254/Content/mathrubhuminews/Live/Channel(Mathrubhuminews)/index.m3u8 -#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0kd/index.m3u8 -#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pa/index.m3u8 -#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" user-agent="stream" group-title="Entertainment",Mazhavil Manorama (404p) [Offline] -#EXTVLCOPT:http-user-agent=stream -http://cdn.asianetmobiletvplus.com/channels/mazhavil_wxjylngynrbeykzthdrhawtunzcuowsr/playlist.m3u8 -#EXTINF:-1 tvg-id="MazhavilManoramaHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama HD (1080p) [Not 24/7] -http://14.199.164.20:4001/play/a0p9/index.m3u8 -#EXTINF:-1 tvg-id="MediaOne.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/tQvdxWo.jpg" group-title="News",Media One (576p) -http://103.199.161.254/Content/mediaone/Live/Channel(MediaOne)/index.m3u8 -#EXTINF:-1 tvg-id="MH1Music.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/mCsYdYS.png" group-title="Music",MH1 Music (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhonemusic/mhonemusic/playlist.m3u8 -#EXTINF:-1 tvg-id="MH1Prime.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/UdoA8f7.png" group-title="",MH1 Prime (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhonenews/mhonenews/playlist.m3u8 -#EXTINF:-1 tvg-id="MirrorNow.in" tvg-country="IN" tvg-language="English" tvg-logo="https://yt3.ggpht.com/-XmvqPl571Ak/AAAAAAAAAAI/AAAAAAAAAAA/mMm0Tpd90kU/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Mirror Now (576p) -https://mbnowweb-lh.akamaihd.net/i/MRN_1@346545/master.m3u8 -#EXTINF:-1 tvg-id="MKSix.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/FAytBoW.png" group-title="",MK Six (576p) [Not 24/7] -http://103.199.160.85/Content/mktv6/Live/Channel(MKTV6)/index.m3u8 -#EXTINF:-1 tvg-id="MKTunes.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/m8DPQd6.png" group-title="Music",MK Tunes (576p) [Not 24/7] -http://103.199.160.85/Content/mktunes/Live/Channel(MKTunes)/index.m3u8 -#EXTINF:-1 tvg-id="MKTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/UxxbaR3.png" group-title="Entertainment",MK TV (576p) [Not 24/7] -http://103.199.160.85/Content/mktv/Live/Channel(MKTV)/index.m3u8 -#EXTINF:-1 tvg-id="MSignMedia.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://expressott.in/uploads/tv_image/m-sign-media.PNG" group-title="Entertainment",Msign Media (576p) [Not 24/7] -http://cloud.logicwebs.in:1935/msign/msignmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="MtunesPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/Rt7k6E3.png" group-title="Music",Mtunes Plus (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0p2/index.m3u8 -#EXTINF:-1 tvg-id="MusicIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7tPCwh.png" group-title="Music",Music India (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0mt/index.m3u8 -#EXTINF:-1 tvg-id="MusicIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7tPCwh.png" group-title="Music",Music India (576p) [Not 24/7] -http://103.199.160.85/Content/musicindia/Live/Channel(MusicIndia)/index.m3u8 -#EXTINF:-1 tvg-id="Naaptol.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://pbs.twimg.com/profile_images/897059156556783616/BUbUxAuW.jpg" group-title="",Naaptol (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0n1/index.m3u8 -#EXTINF:-1 tvg-id="Namdhari.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Namdhari (404p) [Not 24/7] -https://namdhari.tv/live/sbs1.m3u8 -#EXTINF:-1 tvg-id="NandighoshaTv.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Nandighosha Tv (720p) [Not 24/7] -https://live.mycast.in/ngtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxtraNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Naxtra News (720p) [Not 24/7] -http://wearelive.livebox.co.in/naxatratvhls/Naxatratv.m3u8 -#EXTINF:-1 tvg-id="Nazrana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Nazrana (1080p) -https://live.hungama.com/linear/nazrana/playlist.m3u8 -#EXTINF:-1 tvg-id="NCV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ltdtvL3.png" group-title="Entertainment",NCV (720p) [Not 24/7] -http://103.146.174.60:1935/NCV/ncvstream/master.m3u8 -#EXTINF:-1 tvg-id="NDTV24X7.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://jiotv.catchup.cdn.jio.com/dare_images/images/NDTV_24x7.png" group-title="News",NDTV 24X7 (480p) [Not 24/7] -https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/master.m3u8 -#EXTINF:-1 tvg-id="NDTVIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/tcLeUEuX.png" group-title="",NDTV India (480p) [Not 24/7] -https://ndtvindiaelemarchana.akamaized.net/hls/live/2003679/ndtvindia/master.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://bsmedia.business-standard.com/_media/bs/img/article/2017-06/01/full/1496330873-5363.jpg" group-title="Business",NDTV Profit (480p) -https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680-b/ndtvprofit/master.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://bsmedia.business-standard.com/_media/bs/img/article/2017-06/01/full/1496330873-5363.jpg" group-title="Business",NDTV Profit [Geo-blocked] -https://ndtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/ndtv/live/ndtv_profit.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://jiotv.catchup.cdn.jio.com/dare_images/images/NDTV_Profit.png" group-title="Business",NDTV Profit (480p) [Not 24/7] -https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680/ndtvprofit/master.m3u8 -#EXTINF:-1 tvg-id="NeeCinema.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/vYme2fs.png" group-title="Movies",Nee Cinema (576p) [Not 24/7] -https://live.neestream.com/neestream_01/nee_cinema/playlist.m3u8 -#EXTINF:-1 tvg-id="NethraTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://srilankanews.wpengine.netdna-cdn.com/wp-content/uploads/2015/09/nethra.png" group-title="News",Nethra TV (480p) [Not 24/7] -https://dammikartmp.tulix.tv/slrc3/slrc3/playlist.m3u8 -#EXTINF:-1 tvg-id="News7Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/oBjgUTc.png" group-title="News",News 7 Tamil (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2f4w_ppqHplvjiNaoTAK9w/live -#EXTINF:-1 tvg-id="News7Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/oBjgUTc.png" group-title="News",News 7 Tamil (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0kp/index.m3u8 -#EXTINF:-1 tvg-id="News18Assam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Assam (360p) [Not 24/7] -https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Bengali.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/ApY5STle.png" group-title="News",News 18 Bengali (360p) [Not 24/7] -https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Chhattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Chhattisgarh (360p) -https://news18mp-lh.akamaihd.net/i/n18mpcg_1@175737/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Gujarati.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VOLZkULy.png" group-title="News",News 18 Gujarati (360p) -https://news18gujarati-lh.akamaihd.net/i/n18gujarat_1@370955/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Hindi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Hindi (360p) -https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Jharkhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Jharkhand (360p) -https://news18bihar-lh.akamaihd.net/i/n18biharjh_1@175736/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Kannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://static.kannada.news18.com/kannada/uploads/2020/03/Kannada1.png" group-title="News",News 18 Kannada (360p) -https://news18kannada-lh.akamaihd.net/i/n18kannada_1@372918/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Lokmat.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VxKW2nPp.png" group-title="News",News 18 Lokmat (504p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/india/news18-lokmat.m3u8 -#EXTINF:-1 tvg-id="News18Malayalam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/D9lMLmX.png" group-title="News",News 18 Malayalam (360p) -https://news18kerala-lh.akamaihd.net/i/n18kerala_1@526583/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Odia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/dcTmJMZm.png" group-title="News",News 18 Odia (360p) -https://etv-oriya.akamaized.net/i/n18odia_1@179753/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Punjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Punjab (360p) -https://news18haryana-lh.akamaihd.net/i/n18punjabhimhar_1@349009/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Rajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/PrWKRDQT.png" group-title="News",News 18 Rajasthan (360p) -https://news18rajasthan-lh.akamaihd.net/i/n18raj_1@175738/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a8/News18_Tamilnadu.jpeg/revision/latest?cb=20191220041122" group-title="News",News 18 Tamil (360p) -https://news18tamil-lh.akamaihd.net/i/n18tamil_1@526595/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a8/News18_Tamilnadu.jpeg/revision/latest?cb=20191220041122" group-title="News",News 18 Tamil (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=EZy0RAxG8OI -#EXTINF:-1 tvg-id="News18Urdu.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/w7PiYyrx.png" group-title="News",News 18 Urdu (360p) -https://news18urdu-lh.akamaihd.net/i/n18urdu_1@373059/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Uttarakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Uttarakhand (360p) -https://news18up-lh.akamaihd.net/i/n18upuk_1@175735/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/wmsT3xGI.png" group-title="News",News 24 (480p) [Not 24/7] -https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/wmsT3xGI.png" group-title="News",News 24 (360p) [Not 24/7] -https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live2/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsJ.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/7/7e/News_J.jpeg/revision/latest?cb=20191226093118" group-title="News",News J (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=QH4zszwdIKE -#EXTINF:-1 tvg-id="News18Assam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News18 Assam (504p) [Not 24/7] -https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="News18Bangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News18 Bangla (360p) [Not 24/7] -https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8 -#EXTINF:-1 tvg-id="News18India.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/hqclXeVK.png" group-title="News",News18 India (504p) -https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="NextTVMalabar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.statically.io/img/nexttv.in/f=auto,w=160/assets/images/toplogo-2.png?v=1" group-title="Local",Next TV Malabar (720p) [Not 24/7] -https://6zklxbgpdw9b-hls-live.5centscdn.com/next/c9a1fdac6e082dd89e7173244f34d7b3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OdishaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/8ZmnDAS3.png" group-title="",Odisha TV (480p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/otvnewmbr/otvnewmbr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OneTv.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ssMOeaj.png" group-title="Entertainment",One TV (720p) -http://137.59.86.218:1935/live/onetv/playlist.m3u8 -#EXTINF:-1 tvg-id="Peppers.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/xgEQiso.png" group-title="Music",Peppers (576p) [Not 24/7] -http://103.199.160.85/Content/peppers/Live/Channel(Peppers)/index.m3u8 -#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (720p) [Geo-blocked] -https://versewsa.pc.cdn.bitgravity.com/versewsa/live/polimernews.smil/chunklist_b1800000.m3u8 -#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Z-VjXBtDJTvq6aqkIskPg/live -#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0lg/index.m3u8 -#EXTINF:-1 tvg-id="PolimerTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/FeLT0mK.jpg" user-agent="AsianetMobileTVPlus" group-title="Entertainment",Polimer TV (404p) [Not 24/7] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/polimertv_rpvpvdefkpxbafsouzockpitjldtogrr/chunks.m3u8 -#EXTINF:-1 tvg-id="PopPataka.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Pop Pataka (360p) [Not 24/7] -https://live.hungama.com/linear/pop-pataka/playlist.m3u8 -#EXTINF:-1 tvg-id="PopularScience.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="Science",Popular Science (720p) [Offline] -https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 -#EXTINF:-1 tvg-id="PramayaNews7.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Pramaya News7 (576p) [Not 24/7] -https://live.mycast.in/encode/ee0c5a36ff5a7083ee044991974ad3ba.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PratidinTime.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/QYfhpkre.png" group-title="News",Pratidin Time (360p) [Not 24/7] -https://rtmp.smartstream.video/pratidintime/pratidintime/playlist.m3u8 -#EXTINF:-1 tvg-id="Pravasi.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/DtXRfBj.png" group-title="",Pravasi (1080p) [Not 24/7] -https://5ee50688d7b5d.streamlock.net:444/live/pravasi/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimeCanadaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Entertainment",Prime Canada TV (720p) [Not 24/7] -http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="PublicMovies.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/GpAvaCx.png" group-title="Movies",Public Movies (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ll/index.m3u8 -#EXTINF:-1 tvg-id="PublicMusic.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://upload.wikimedia.org/wikipedia/en/3/35/Public_Music_Kannada_Channel_Logo.jpg" group-title="Music",Public Music (576p) [Not 24/7] -http://103.199.161.254/Content/publicmusic/Live/Channel(PublicMusic)/index.m3u8 -#EXTINF:-1 tvg-id="PublicTV.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/tmXFHhk.png" group-title="Entertainment",Public TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ld/index.m3u8 -#EXTINF:-1 tvg-id="PulariTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/v5urG30.png" group-title="",Pulari TV (720p) [Not 24/7] -https://royalstarindia.co.in/pularitv_hls/pularitv.m3u8 -#EXTINF:-1 tvg-id="PUNJABTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",PUNJAB TV (720p) [Not 24/7] -http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="PunjabiZindabad.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Punjabi Zindabad (720p) [Not 24/7] -http://stream.pztv.online/pztv/playlist.m3u8 -#EXTINF:-1 tvg-id="PuthiyaThalaimurai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/f/f3/Puthiya_Thalaimurai.jpeg/revision/latest?cb=20191224103436" group-title="News",Puthiya Thalaimurai (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCmyKnNRH0wH-r8I-ceP-dsg/live -#EXTINF:-1 tvg-id="PuthuyugamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/1q1LQQ9.png" group-title="",Puthuyugam TV (576p) [Not 24/7] -http://103.199.160.85/Content/puthuyugam/Live/Channel(Puthuyugam)/index.m3u8 -#EXTINF:-1 tvg-id="RPlusNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",R Plus News (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/rplus/rplus/playlist.m3u8 -#EXTINF:-1 tvg-id="RajDigitalPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Raj Digital Plus (404p) [Offline] -http://acv.asianetmobiletvplus.com/channels/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_hls/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_master.m3u8 -#EXTINF:-1 tvg-id="RajNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b6/Raj_News_Tamil.jpeg/revision/latest/scale-to-width-down/250?cb=20191226054121" group-title="News",Raj News (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_MT_gzdPiTg -#EXTINF:-1 tvg-id="RealNewsKerala.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/EmBpOWM.png" group-title="News",Real News Kerala (1080p) [Not 24/7] -https://bk7l298nyx53-hls-live.5centscdn.com/realnews/e7dee419f91aa9e65939d3677fb9c4f5.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="RealTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://expressott.in/uploads/tv_image/real-tv.jpg" group-title="Music",Real TV (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/realtv/realtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="RelaxTV" tvg-country="IN" tvg-language="Tamil" tvg-logo="http://expressott.in/uploads/tv_image/relax-tv.png" group-title="Music",Relax TV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/RELAXTV/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="ReporterTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/a80vdrp.jpg" group-title="News",Reporter TV (576p) -http://103.199.161.254/Content/reporter/Live/Channel(Reporter)/index.m3u8 -#EXTINF:-1 tvg-id="RepublicBharatin.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BG1aZ6V.jpg" group-title="",Republic Bharat (360p) [Geo-blocked] -https://republic.pc.cdn.bitgravity.com/live/bharat_hls/master.m3u8 -#EXTINF:-1 tvg-id="RepublicTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PvI2PCX.png" group-title="",Republic TV [Geo-blocked] -https://weblive.republicworld.com/liveorigin/republictv/playlist.m3u8 -#EXTINF:-1 tvg-id="RepublicTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PvI2PCX.png" group-title="",Republic TV [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_1422341819 -#EXTINF:-1 tvg-id="Rosebowl.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LBQSALM.png" user-agent="AsianetMobileTVPlus" group-title="Music",Rosebowl (404p) [Offline] -#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus -http://cdn.asianetmobiletvplus.com/channels/rosebowl_7eb4dc1f3240c8eb776d41b95bd1d197/playlist.m3u8 -#EXTINF:-1 tvg-id="RSTVRajyaSabha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9NsI8zT.jpg" group-title="",RSTV RajyaSabha (1080p) [Not 24/7] -https://nicls2-lh.akamaihd.net/i/rstv_1@26970/master.m3u8 -#EXTINF:-1 tvg-id="SachinMusic.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Music",Sachin Music (576p) [Not 24/7] -http://singamcloud.in:1935/sachinmusichd/sachinmusichd/playlist.m3u8 -#EXTINF:-1 tvg-id="SadaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sada TV (1080p) [Not 24/7] -http://cdn12.henico.net:8080/live/sadatv/index.m3u8 -#EXTINF:-1 tvg-id="Sadhna.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/C2cltDo.png" group-title="",Sadhna (360p) [Offline] -http://cdn.clive.in:1935/sadhnabhakti/sadhnabhakti.stream_HDp/playlist.m3u8 -#EXTINF:-1 tvg-id="SadhnaPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/5WqCCMt.png" group-title="",Sadhna Plus (360p) [Offline] -http://cdn.clive.in:1935/sadhnaplus/sadhnaplus.stream_HDp/media.m3u8 -#EXTINF:-1 tvg-id="SafariTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LOepeP3.jpg" group-title="",Safari TV (480p) [Not 24/7] -https://j78dp346yq5r-hls-live.5centscdn.com/safari/live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SanaPlus.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/cA7PpJG.jpg" group-title="Music",Sana Plus (720p) [Not 24/7] -http://media.7starcloud.com:1935/live/sanatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="SanaTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/D03gyp2.png" group-title="Entertainment",Sana TV (576p) [Not 24/7] -http://hdserver.7starcloud.com:1935/sanatv/sanatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Sanskaar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sanskaar (1080p) [Not 24/7] -https://sanskarlive.sanskargroup.in/sanskartvlive.m3u8 -#EXTINF:-1 tvg-id="SanthoraShortFlim.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/kKFfLMd.jpg" group-title="Movies",Santhora Short Flim (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/LsacUVi.png" group-title="",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/LsacUVi.png" group-title="",Santhora TV (720p) -http://santhoratv.zecast.net/santhoratv/santhoratv/index.m3u8 -#EXTINF:-1 tvg-id="SardariTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6Q844bs.jpg" group-title="",Sardari TV (1080p) [Not 24/7] -http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 -#EXTINF:-1 tvg-id="SathiyamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c9/SathiyamFinallogo.png/revision/latest/scale-to-width-down/180?cb=20191225174913" group-title="News",Sathiyam TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip==https://www.youtube.com/channel/UC2ziCMHFPWkFHjocUMXT__Q/live -#EXTINF:-1 tvg-id="Satsang.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Satsang (1080p) [Not 24/7] -https://satsangtv.sanskargroup.in/satsangtvlive.m3u8 -#EXTINF:-1 tvg-id="ServeurTV.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",Serveur TV (720p) [Offline] -https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ShekinahTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/6hTshsG.png" group-title="",Shekinah TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCHtYUfPnQci6GoUpPlWfrOg/live -#EXTINF:-1 tvg-id="ShekinahTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/6hTshsG.png" group-title="",Shekinah TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ok/index.m3u8 -#EXTINF:-1 tvg-id="ShemarooTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/UNNcOef.png" group-title="Entertainment",Shemaroo TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nh/index.m3u8 -#EXTINF:-1 tvg-id="ShirdiLive.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Shirdi Live (720p) [Offline] -https://cam.live-s.cdn.bitgravity.com/cdn-live/_definst_/cam/live/secure/saibaba/playlist.m3u8?e=0&h=2598445340a35f63eb211f81940d2525 -#EXTINF:-1 tvg-id="ShowBox.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/m9UFtTM.png" group-title="Music",Show Box (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0o8/index.m3u8 -#EXTINF:-1 tvg-id="Shraddha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Shraddha (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhoneshradha/mhoneshradha/playlist.m3u8 -#EXTINF:-1 tvg-id="Shubhsandesh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/ibnqDAD.png" group-title="Religious",Shubhsandesh (720p) [Not 24/7] -https://6284rn2xr7xv-hls-live.wmncdn.net/shubhsandeshtv1/live123.stream/index.m3u8 -#EXTINF:-1 tvg-id="SikhChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/3TZPKGL.png" group-title="",Sikh Channel (576p) [Offline] -http://fastway.ddns.net:6421/fastway/live8/index.m3u8?token=fastwaytvstreams -#EXTINF:-1 tvg-id="SonyBBCEarthHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/cmRNiA3.png" group-title="",Sony BBC Earth HD (1080p) [Offline] -http://103.81.104.118/hls/stream5.m3u8 -#EXTINF:-1 tvg-id="SonyMAX2.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony MAX 2 [Offline] -http://208.115.215.42/Sony_Max_HD_02/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyMAXHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony MAX HD [Offline] -http://208.115.215.42/Sony_Max_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySabHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jo0o7op.png" user-agent="stream" group-title="Entertainment",Sony Sab HD (1080p) [Not 24/7] -#EXTVLCOPT:http-user-agent=stream -http://indo51.gcdn.co/hindi-SONYSABHD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySabHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jo0o7op.png" group-title="Entertainment",Sony Sab HD [Offline] -http://208.115.215.42/Sony_Sab_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySix.in" tvg-country="IN" tvg-language="English" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/tJzfDMRk.png" group-title="",Sony Six (1080p) [Not 24/7] -http://137.59.155.77:8088/hls/05sonysix.m3u8 -#EXTINF:-1 tvg-id="SonySixHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" user-agent="stream" group-title="",Sony Six HD (1080p) [Offline] -#EXTVLCOPT:http-user-agent=stream -http://103.81.104.118/hls/stream10.m3u8 -#EXTINF:-1 tvg-id="SonyWAH.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony WAH (404p) [Offline] -https://d2gowxuvx77j6q.cloudfront.net/WAH.m3u8 -#EXTINF:-1 tvg-id="SonyYAY.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/aoOD9XQ.jpg" group-title="Kids",Sony YAY (404p) [Offline] -https://d20fdzcwhk7szz.cloudfront.net/SONY_YAY.m3u8 -#EXTINF:-1 tvg-id="SriSankara.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Religious",Sri Sankara (360p) [Not 24/7] -https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="StarCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Star Cinema (576p) -http://c0.cdn.trinity-tv.net/stream/nh9u54a7sfnc2hwzxr2zwykwkqm43bgyyzsm68ybbbnjei8kytwcgs3zm5gnw5c6efa5gr3fadzqe686w8gj2eaehrj89wvujvqza3kez78dtknwbbmnqf79yygmqqg7e9pnc3i3bpywjkiqrwke94yf.m3u8 -#EXTINF:-1 tvg-id="StarFamily.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Family",Star Family (576p) -http://c0.cdn.trinity-tv.net/stream/zfmjgma9zn46fa797ez9fgkw7msh9mj4tppspg23gey6mmx5fqiy7ky3jqx4uhgsfsrd8r76si8ykb2anw9442g4qkq5fzpdvwdqf5te24ixu9zrx3aesm9fzt59q5y2s8qwgbqhvf6d3z5bjy3qb2t4.m3u8 -#EXTINF:-1 tvg-id="StarGoldHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" user-agent="stream" group-title="",Star Gold HD (1080p) [Offline] -#EXTVLCOPT:http-user-agent=stream -http://103.81.104.118/hls/stream19.m3u8 -#EXTINF:-1 tvg-id="StarMaa.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/oBXBjk6.png" group-title="Entertainment",Star Maa [Geo-blocked] -http://maatv-i.akamaihd.net/hls/live/569930/maatv/master_2000.m3u8 -#EXTINF:-1 tvg-id="StarPlusHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/Hgl0JGO.png" user-agent="stream" group-title="",Star Plus HD (720p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=stream -http://208.115.215.42/Utsav_Plus_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="StarUtsav.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Star Utsav [Offline] -https://dolv5imquuojb.cloudfront.net/ST_UTSAV.m3u8 -#EXTINF:-1 tvg-id="SteelbirdMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/5r4gCMh.jpg" group-title="Music",Steelbird Music (720p) [Not 24/7] -http://cdn25.live247stream.com/steelbirdmusic/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StudioOnePlus.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/DBbajAs.jpg" group-title="Movies",Studio One Plus (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEoaVUxpFlmCxwRBy9yhb1Q/live -#EXTINF:-1 tvg-id="StudioOnePlus.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/DBbajAs.jpg" group-title="Movies",Studio One Plus (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0oh/index.m3u8 -#EXTINF:-1 tvg-id="StudioOneYuva.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/nACKF3x.jpg" group-title="Movies",Studio One Yuva (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqR2tCs8ufgAjRd6rn4a2wg/live -#EXTINF:-1 tvg-id="StudioOneYuva.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/nACKF3x.jpg" group-title="Movies",Studio One Yuva (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0sr/index.m3u8 -#EXTINF:-1 tvg-id="SunNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/mQWpBdv.png" group-title="News",Sun News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_fR9xWEOa7Q -#EXTINF:-1 tvg-id="SunTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/U30x7Y4.jpg" user-agent="stream" group-title="",Sun TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=stream -http://uk4.zecast.com:1935/star-live/suntv.stream/index.m3u8 -#EXTINF:-1 tvg-id="SuryaMusic.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/jsC8FC7.png" group-title="Music",Surya Music (480p) [Not 24/7] -https://indo51.gcdn.co/MALYLAM-SuryaMusic/index.m3u8 -#EXTINF:-1 tvg-id="SuryaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ENrptYg.png" group-title="Entertainment",Surya TV (720p) [Not 24/7] -https://indo51.gcdn.co/MALYLAM-SuryaHD/index.m3u8 -#EXTINF:-1 tvg-id="Swantham.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/oodBB6x.png" group-title="Entertainment",Swantham (720p) [Not 24/7] -http://cdn1.logicwebs.in:1935/SWANTHAM/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SwarajExpress.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Swaraj Express (720p) [Not 24/7] -https://live.wmncdn.net/highnews/swaraj.stream/index.m3u8 -#EXTINF:-1 tvg-id="TehelkaTV.in" tvg-country="IN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/15/Sangsad_Television_Logo.jpg" group-title="General",Tehelka TV (480p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/tehelkatv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ThanthiTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://images-eu.ssl-images-amazon.com/images/I/71QprgRT4rL.png" group-title="News",Thanthi TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=wc3Y6vI-poI -#EXTINF:-1 tvg-id="ThanthiTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://images-eu.ssl-images-amazon.com/images/I/71QprgRT4rL.png" group-title="News",Thanthi TV (720p) [Not 24/7] -https://vidcdn.vidgyor.com/thanthi-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/K5rlUey.png" group-title="News",Time TV (360p) [Not 24/7] -https://cloudflare-cdn301.ottpro.in/live/timetv/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeVisionNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/YSQVbIm.png" group-title="News",Time Vision News (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/timevision/timevision/playlist.m3u8 -#EXTINF:-1 tvg-id="TimesNow.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/aa/Times_Now_2010.png" group-title="News",Times Now (480p) [Geo-blocked] -https://timesnow-lh.akamaihd.net/i/TNHD_1@129288/master.m3u8 -#EXTINF:-1 tvg-id="Tunes6.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/ClpXKNR.png" group-title="Music",Tunes 6 [Geo-blocked] -https://m-c18-j2apps.s.llnwi.net/hls/3731.Tunes6.in.m3u8 -#EXTINF:-1 tvg-id="TV9Kannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://d2jo35ozacw6sq.cloudfront.net/wp-content/themes/tv9kannada/images/Tv9-Kannada-57x57.png" group-title="News",TV9 Kannada (720p) [Not 24/7] -https://vidcdn.vidgyor.com/tv9kannada-origin/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV9News.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/tv-9-telugu-in.png" group-title="News",TV9 News (720p) -https://vidcdn.vidgyor.com/tv9telugu-origin/live/tv9telugu-origin/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="TwentyFourNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/eS2fVDh.png" group-title="News",Twenty Four News (576p) [Not 24/7] -http://103.199.160.85/Content/24news/Live/Channel(24news)/index.m3u8 -#EXTINF:-1 tvg-id="UBLHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/pt7gl1T.png" group-title="",UBL HD (1080p) [Not 24/7] -https://cdn.logicwebs.in/hls/ublhdkey.m3u8 -#EXTINF:-1 tvg-id="UthradamMovies.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/KdsS0g5.png" group-title="Movies",Uthradam Movies (576p) [Not 24/7] -http://185.105.4.245:1935/livesp/uthradam/playlist.m3u8 -#EXTINF:-1 tvg-id="UtsavGold.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FYym7gH.png" group-title="Movies",Utsav Gold (720p) [Geo-blocked] -http://208.115.215.42/Utsav_Gold_HD/index.m3u8 -#EXTINF:-1 tvg-id="Vaanavil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/etr1k08.png" group-title="Music",Vaanvavil (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nx/index.m3u8 -#EXTINF:-1 tvg-id="VasanthTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Entertainment",Vasanth TV [Offline] -http://vasanth.live.cdn.bitgravity.com/vasanth/secure/live/feed03?bgsecuredir=1&e=0&h=a9be0836bc39f96d0a9a958a659dfc1d -#EXTINF:-1 tvg-id="VathanamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="",Vathanam TV [Timeout] -http://95.216.167.183:5080/LiveApp/streams/443106610169904881506470.m3u8 -#EXTINF:-1 tvg-id="Velicham.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/YeR3mm9.png" group-title="Entertainment",Velicham (360p) [Not 24/7] -https://rtmp.smartstream.video/velichamtv/velichamtv/playlist.m3u8 -#EXTINF:-1 tvg-id="VismayaNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/TIj6xBg.png" group-title="",Vismaya News (720p) -http://live.singamcloud.in:1935/vismayanews/vismayanews/playlist.m3u8 -#EXTINF:-1 tvg-id="Wion.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",Wion (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-wion -#EXTINF:-1 tvg-id="WowCinemaOne.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/s690F67.png" group-title="Movies",Wow Cinema One (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0n3/index.m3u8 -#EXTINF:-1 tvg-id="XploreChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Xplore Channel (720p) -http://cdn18.live247stream.com/ndachannel/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Yolo.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/kzudV52.jpg" group-title="Entertainment",Yolo (410p) [Not 24/7] -http://cdn.logicwebs.in/hls/yolo.m3u8 -#EXTINF:-1 tvg-id="YuppThirai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/6E8SbCf.png" group-title="Movies",Yupp Thirai (270p) -http://119.81.82.28/encoded/yuppthirai_800/playlist.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r/index.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r/index.m3u8 -#EXTINF:-1 tvg-id="Zee24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/kalak/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/kalak/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee24Ghanta.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/OrhmAikO.png" group-title="",Zee 24 Ghanta (576p) [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-24ghantatv -#EXTINF:-1 tvg-id="Zee24MadyaPradeshChhattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 Madhya Pradesh Chhattisgarh [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeemadhyapradeshchat -#EXTINF:-1 tvg-id="Zee24Taas.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oSPJiEzV.png" group-title="",Zee 24 Taas (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zee24taas -#EXTINF:-1 tvg-id="ZeeAction.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BvAXCNf.png" group-title="Movies",Zee Action (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/action/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAction.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BvAXCNf.png" group-title="Movies",Zee Action (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/action/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAnmolCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oRDt6fY8.png" group-title="",Zee Anmol Cinema (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAnmolCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oRDt6fY8.png" group-title="",Zee Anmol Cinema (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/USKY2MD6.png" group-title="Movies",Zee Bangla (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebangla -#EXTINF:-1 tvg-id="ZeeBanglaCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/QFqJax5.png" group-title="Movies",Zee Bangla Cinema (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebanglacinema -#EXTINF:-1 tvg-id="ZeeBiharJharkhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/JdOC9ieM.png" group-title="",Zee Bihar Jharkhand (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebiharjharkhand -#EXTINF:-1 tvg-id="ZeeBioskop.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/CdXieB6.png" group-title="",Zee Bioskop (360p) [Geo-blocked] -http://210.210.155.35/qwr9ew/s/s32/index.m3u8 -#EXTINF:-1 tvg-id="ZeeBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/gq8mpPvf.png" group-title="Movies",Zee Bollywood (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeeclassic -#EXTINF:-1 tvg-id="ZeeBusiness.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/vExrDK9r.png" group-title="Business",Zee Business [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebusiness -#EXTINF:-1 tvg-id="ZeeCafe.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/YIRC9m5.png" group-title="",Zee Cafe (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecafehd -#EXTINF:-1 tvg-id="ZeeCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecinema -#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinema Middle East (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zeecinemame/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinema Middle East (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zeecinemame/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUK.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema UK (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/cinemauk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUK.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema UK (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/cinemauk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-cinema.png" group-title="",Zee Cinema USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/cinemausa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaluHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinemalu HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecinemalu -#EXTINF:-1 tvg-id="ZeeClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VAG3BbPb.png" group-title="",Zee Classic (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/classic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VAG3BbPb.png" group-title="",Zee Classic (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/classic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeHindustan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Hindustan (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeehindustan -#EXTINF:-1 tvg-id="ZeeKeralamHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/mM0KQj7.png" group-title="",Zee Keralam HD (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zkeralamhd/index.m3u8 -#EXTINF:-1 tvg-id="ZeeMarathiHD.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeemarathi -#EXTINF:-1 tvg-id="ZeeMarathiUSA.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/marathiusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMarathiUSA.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/marathiusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMundo.in" tvg-country="IN" tvg-language="Spanish" tvg-logo="https://zeemundo.com/wp-content/uploads/2018/06/logo-120.png" group-title="Movies",Zee Mundo (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/mundohd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMundo.in" tvg-country="IN" tvg-language="Spanish" tvg-logo="https://zeemundo.com/wp-content/uploads/2018/06/logo-120.png" group-title="Movies",Zee Mundo (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/mundohd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Music (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/magic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Music (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/magic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNews.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/T4jA4k1h.png" group-title="",Zee News [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-zeenews -#EXTINF:-1 tvg-id="ZeeNewsMPCG.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News MPCG (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/newsmpcg/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNewsMPCG.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News MPCG (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/newsmpcg/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNewsUttarPradeshUttrakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News Uttar Pradesh Uttrakhand [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_265145625 -#EXTINF:-1 tvg-id="ZeePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-punjabi-logo.png" group-title="",Zee Punjabi (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/punjabi/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-punjabi-logo.png" group-title="",Zee Punjabi (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/punjabi/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeRajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/qt5hnBfe.png" group-title="",Zee Rajasthan (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zinguk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeRajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/qt5hnBfe.png" group-title="",Zee Rajasthan (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zinguk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeSalaam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/2rykW8Xa.png" group-title="",Zee Salaam (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeesalaam -#EXTINF:-1 tvg-id="ZeeSmileUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Smile USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/smileusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeSmileUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Smile USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/smileusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTalkies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/fh6tPTh6.png" group-title="",Zee Talkies (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeetalkies -#EXTINF:-1 tvg-id="ZeeTamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/HgMdBRk5.png" group-title="",Zee Tamil (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeetamil -#EXTINF:-1 tvg-id="ZeeTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV (480p) [Timeout] -https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/ZEETV/ZEETV.isml/index.m3u8 -#EXTINF:-1 tvg-id="ZeeTVAPAC.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV APAC (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/apacsea/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVAPAC.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV APAC (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/apacsea/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVCanada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV Canada (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/canadahd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVCanada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV Canada (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/canadahd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV Middle East (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/ztvme/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV Middle East (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/ztvme/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVRussia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000160028ee79cb039d83f096f593bb8/160x120" group-title="",Zee TV Russia (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/russia/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVRussia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000160028ee79cb039d83f096f593bb8/160x120" group-title="",Zee TV Russia (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/russia/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeVajwa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/FBCchEhm.png" group-title="",Zee Vajwa (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-353 -#EXTINF:-1 tvg-id="ZeeWorld.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/07/DStv_ZeeWorld_4-3_001_xlrg.png" group-title="",Zee World (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/world/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeWorld.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/07/DStv_ZeeWorld_4-3_001_xlrg.png" group-title="",Zee World (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/world/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Originals.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Originals (1080p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zee5_originals/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Originals.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Originals (1080p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zee5_originals/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Romance.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Romance (1080p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zee5_romance/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Romance.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Romance (1080p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zee5_romance/playlist.m3u8 -#EXTINF:-1 tvg-id="Zing.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SUWblss.png" group-title="",Zing (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zing/playlist.m3u8 -#EXTINF:-1 tvg-id="Zing.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SUWblss.png" group-title="",Zing (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zing/playlist.m3u8 -#EXTINF:-1 tvg-id="Zoom.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/rjKh2jqQ.png" group-title="",Zoom (1080p) [Offline] -http://103.81.104.118/hls/stream8.m3u8 diff --git a/channels/in_samsung.m3u b/channels/in_samsung.m3u deleted file mode 100644 index a68207276..000000000 --- a/channels/in_samsung.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -http://failarmy-international-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] -https://spi-filmstream-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-12-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GoUSAIndia.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KhdR4wa.jpg" group-title="",Go USA (India) (720p) [Offline] -https://brandusa-gousa-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] -https://gustotv-samsung-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InshortIndia.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Inshort (India) (720p) -https://inshort-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) -https://introuble-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) -https://inwild-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVIndia.us" tvg-country="IN" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV India (720p) [Offline] -http://mavtv-mavtvglobal-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeIndia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome India (720p) [Offline] -https://jukin-peopleareawesome-2-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveIndia.us" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective India (720p) [Offline] -https://the-pet-collective-international-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy India (720p) [Offline] -https://jukin-weatherspy-2-in.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/iq.m3u b/channels/iq.m3u deleted file mode 100644 index 870a3824b..000000000 --- a/channels/iq.m3u +++ /dev/null @@ -1,121 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABNsat.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="http://vidmgr.abnvideos.com/images/playlists/phpENpJQS.jpeg" group-title="Religious",ABNsat (720p) -http://rtmp1.abnsat.com/hls/arabic.m3u8 -#EXTINF:-1 tvg-id="AfarinTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/Uw4DX17.png" group-title="Kids",Afarin TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/afarinTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHurra.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/8EmVL2d.jpg" group-title="News",Al Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 -#EXTINF:-1 tvg-id="AlHurra.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/8EmVL2d.jpg" group-title="News",Al Hurra (486p) [Not 24/7] -https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 -#EXTINF:-1 tvg-id="AlIraqiyaAl3ama.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://imn.iq/wp-content/uploads/2018/03/Logo.jpg" group-title="General",Al Iraqiya Al 3ama (720p) [Not 24/7] -https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8 -#EXTINF:-1 tvg-id="AlIraqiyaNews.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://imn.iq/wp-content/uploads/2018/03/Logo.jpg" group-title="News",Al Iraqiya News (720p) [Not 24/7] -https://cdn.catiacast.video/abr/78054972db7708422595bc96c6e024ac/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRafidain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x5buqzt.jpg" group-title="News",Al Rafidain (1024p) [Not 24/7] -http://149.202.79.190:8081/arrafidaintv/publish/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRafidain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x5buqzt.jpg" group-title="News",Al Rafidain (1024p) [Not 24/7] -https://cdg8.edge.technocdn.com/arrafidaintv/abr_live/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRasheed.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alrasheedmedia.com/wp-content/themes/alrasheedv4/alr-logo.png" group-title="General",Al Rasheed (408p) [Not 24/7] -https://media1.livaat.com/AL-RASHEED-HD/index.m3u8 -#EXTINF:-1 tvg-id="AlSharqiya.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="" group-title="General",Al Sharqiya (1080p) [Not 24/7] -http://ns8.indexforce.com:1935/home/mystream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSharqiyaNews.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qNi4rwG.jpg" group-title="News",Al Sharqiya News (1080p) -http://ns8.indexforce.com:1935/alsharqiyalive/mystream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSumaria.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.alsumaria.tv/uploadImages/ProgramsImages/Channels-LW-1-636916940695846700.png" group-title="General",Al Sumaria (1080p) [Not 24/7] -http://iptv.repl.co/Arabic/Al_summaria -#EXTINF:-1 tvg-id="AlEtejah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/jFKKRjP.png" group-title="News",Al-Etejah (576p) [Not 24/7] -https://streaming.aletejahtv.iq:1937/etejah-live/smil:etejah.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlJawadain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tLekUZU.png" group-title="Religious",Al-Jawadain TV (1080p) [Not 24/7] -https://live.aljawadain.org/live/aljawadaintv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlGhadeer.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/U1TEfvn.png" group-title="News",AlGhadeer (720p) [Not 24/7] -https://asdiuhiu12.myvodu.app:3356/live/Alghadeer/index.m3u8 -#EXTINF:-1 tvg-id="AlkafeelBetweenthetwoholyshrines.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: Between the two holy shrines (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot4/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelTheentranceoftheholysanctuary.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The entrance of the holy sanctuary (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot3/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelTheHolyTomb.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The Holy Tomb (360p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot2/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelThewindowofAlKafeel.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The window of Al-Kafeel (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot1/manifest.m3u8 -#EXTINF:-1 tvg-id="AmozhgaryTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/SRotZrm.png" group-title="Religious",Amozhgary TV (1080p) -https://media.streambrothers.com:1936/8248/8248/playlist.m3u8 -#EXTINF:-1 tvg-id="AssyrianANB.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/way7KwN.jpg" group-title="General",Assyrian ANB (720p) [Offline] -https://597f64b67707a.streamlock.net/anbsat.com/anb2/playlist.m3u8 -#EXTINF:-1 tvg-id="AvaEntertainment.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/me5igxY.jpg" group-title="",Ava Entertainment (720p) [Not 24/7] -https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/playlist.m3u8 -#EXTINF:-1 tvg-id="BabylonTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://babylontv.net/wp-content/themes/babylontv/images/logo.png" group-title="General",Babylon TV (720p) [Offline] -https://iqlivestream.com/live/babylontv.flv -#EXTINF:-1 tvg-id="CihanTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/FoDSbvF.png" group-title="General",Cihan TV (576p) [Not 24/7] -http://cdn.liveshell.net:1935/live/cihann/playlist.m3u8 -#EXTINF:-1 tvg-id="Dijlah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/logo-new1.png" group-title="News",Dijlah (1080p) -http://91.134.145.75:10001/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="Dijlah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/logo-new1.png" group-title="News",Dijlah (1080p) -https://ghaasiflu.online/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="DijlahTarab.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/tarab-logo.png" group-title="Music",Dijlah Tarab (576p) [Not 24/7] -https://ghaasiflu.online/tarab/index.m3u8 -#EXTINF:-1 tvg-id="DuaTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/nntvc3o.png" group-title="Religious",Dua TV (720p) [Not 24/7] -https://live.ishiacloud.com/W67H7ddMzVHyXPrG.m3u8 -#EXTINF:-1 tvg-id="GaliKurdistan.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/t2qyVmX.png" group-title="",Gali Kurdistan (760p) [Not 24/7] -http://51.75.66.91:8080/gksat.mp4 -#EXTINF:-1 tvg-id="ImamHusseinTV1Farsi.iq" tvg-country="IQ" tvg-language="Persian" tvg-logo="https://ihttps://www.dijlah.tv/templates/default-2/images/dlogo.png.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 1 Farsi (360p) -https://live.imamhossaintv.com/live/ih1.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 2 Arabic (360p) -https://ar.imamhusseintv.com/live/ih201/index.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 2 Arabic (360p) -https://live.imamhossaintv.com/live/ih2.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV3English.iq" tvg-country="IQ" tvg-language="English" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 3 English (360p) -https://live.imamhossaintv.com/live/ih3.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq" tvg-country="IQ" tvg-language="Urdu" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 4 Urdu (720p) -https://ur.imamhusseintv.com/live/ih4.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq" tvg-country="IQ" tvg-language="Urdu" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 4 Urdu (360p) -https://live.imamhossaintv.com/live/ih4.m3u8 -#EXTINF:-1 tvg-id="iNEWS.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PeuBkaH.png" group-title="News",iNEWS (1080p) [Not 24/7] -https://svs.itworkscdn.net/inewsiqlive/inewsiq.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Iraq24.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dsLW8ex.png" group-title="News",Iraq 24 (1080p) [Not 24/7] -https://113483.global.ssl.fastly.net/edge-en/ngrp:live_31b220e0e20611eab1b9cfce247e5d5f_all/index.m3u8 -#EXTINF:-1 tvg-id="IraqFuture.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Z7woTe5.png" group-title="General",Iraq Future (576p) -https://streaming.viewmedia.tv/viewsatstream40/viewsatstream40.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IraqiaSport.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zL78RX9.png" group-title="Sports",Iraqia Sport (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149075_0.m3u8?session= -#EXTINF:-1 tvg-id="IshtarTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="http://live.ishtartv.com/files/ishtar_animated.gif" group-title="General",Ishtar TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://vimeo.com/event/1243782 -#EXTINF:-1 tvg-id="KarbalaTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/63/Karbala_tv.jpg" group-title="Religious",Karbala TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/karbalaatv/live -#EXTINF:-1 tvg-id="KirkukTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Kirkuk TV (576p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/IHTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Kurdistan24.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Kurdistan 24 (720p) -https://d1x82nydcxndze.cloudfront.net/live/index.m3u8 -#EXTINF:-1 tvg-id="KurdistanTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/GLfhYSH.png" group-title="General",Kurdistan TV (720p) [Not 24/7] -https://5a3ed7a72ed4b.streamlock.net/live/SMIL:myStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxSorani.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/%D9%A1_1.png" group-title="",KurdMax (1080p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxMusic.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/music_2.png" group-title="Music",KurdMax Music (720p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/music/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxShow.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/show_2.png" group-title="",KurdMax Show (720p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:SHOW1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxKurmanci.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/%D9%A1_1.png" group-title="",KurdMax Sorani (240p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdSat.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/show_2.png" group-title="",KurdSat (720p) -http://ikomg2.s.llnwi.net/kurdsathd/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdSatNews.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/c5ACcvv.jpg" group-title="News",KurdSat News (720p) -http://ikomg2.s.llnwi.net/kurdsatnewshd/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdSatNews.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/c5ACcvv.jpg" group-title="News",KurdSat News (1080p) [Not 24/7] -https://ikomg2.mmdlive.lldns.net/ikomg2/107b7df8f5444d778f349100739a09cd/manifest.m3u8 -#EXTINF:-1 tvg-id="NetTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/CKY1SD8.png" group-title="",Net TV (1080p) [Not 24/7] -http://nettvstreampaid.flashmediacast.com:1935/nettvstreampaid/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/CKY1SD8.png" group-title="",Net TV (1080p) [Not 24/7] -https://live.karwan.tv/karwan.tv/net-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NRTTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/4li5hRA.png" group-title="",NRT TV (720p) [Not 24/7] -https://media.streambrothers.com:1936/8226/8226/playlist.m3u8 -#EXTINF:-1 tvg-id="PayamTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Payam TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/PayamTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RudawTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/5ZQ4GTu.jpg" group-title="News",Rudaw TV (1080p) -https://svs.itworkscdn.net/rudawlive/rudawlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SpedaTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/va3TVSd.jpg" group-title="",Speda TV (720p) [Not 24/7] -http://liveshell.net:1935/live/speda084k/playlist.m3u8 -#EXTINF:-1 tvg-id="SterkTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/IbvZcPc.png" group-title="",SterkTV (720p) [Not 24/7] -https://602ccc850c9bb.streamlock.net/sterktv/smil:sterk.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WAARTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/ebX8IFk.png" group-title="General",WAAR TV (720p) [Not 24/7] -https://live.karwan.tv/karwan.tv/waar-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Zagros.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.zagrosnews.net/sites/default/files/zagros-logo-01_1.png" group-title="General",Zagros (720p) [Not 24/7] -https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8 diff --git a/channels/ir.m3u b/channels/ir.m3u deleted file mode 100644 index bc8383979..000000000 --- a/channels/ir.m3u +++ /dev/null @@ -1,253 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1TvPersian.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",1TvPersian (720p) [Not 24/7] -https://1-215-11778-1.b.cdn13.com/onetvpersia001.m3u8 -#EXTINF:-1 tvg-id="4UTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Icob3E3.jpg" group-title="Entertainment",4U TV (720p) [Not 24/7] -http://116.202.255.113:1935/4utv/livehd/playlist.m3u8 -#EXTINF:-1 tvg-id="4UTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Icob3E3.jpg" group-title="Entertainment",4U TV (480p) [Not 24/7] -http://116.202.255.113:1935/4utv/livesd/playlist.m3u8 -#EXTINF:-1 tvg-id="AFNTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",AFN TV (720p) [Not 24/7] -https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8 -#EXTINF:-1 tvg-id="AlAlam.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/jY1u1zz.png" group-title="News",Al Alam (360p) [Not 24/7] -https://live2.alalam.ir/alalam.m3u8 -#EXTINF:-1 tvg-id="AlKawtharTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Al Kawthar TV (240p) [Not 24/7] -http://178.252.143.156:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlWilayah.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OI1HQv5.png" group-title="Religious",Al Wilayah (720p) [Not 24/7] -https://nl.livekadeh.com/hls2/alwilayah.tv.m3u8 -#EXTINF:-1 tvg-id="AlZahraTV.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ffFbUmd.jpg" group-title="",Al Zahra TV (720p) [Not 24/7] -https://live.al-zahratv.com/live/playlist2/index.m3u8 -#EXTINF:-1 tvg-id="AVAFamily.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Family",AVA Family (720p) [Not 24/7] -http://51.210.199.5/hls/stream.m3u8 -#EXTINF:-1 tvg-id="AVASeries.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Series",AVA Series (720p) -http://51.210.199.4/hls/stream.m3u8 -#EXTINF:-1 tvg-id="AyenehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.ayeneh.org/wp-content/uploads/2016/04/Ayeneh-TV-April-16-400x223.png" group-title="",Ayeneh TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BeitolAbbasTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",BeitolAbbas TV (720p) [Not 24/7] -http://live.beitolabbas.tv/live/beitolabbastv.m3u8 -#EXTINF:-1 tvg-id="CaltexTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Caltex TV (720p) [Not 24/7] -https://vid1.caltexmusic.com/hls/caltextv.m3u8 -#EXTINF:-1 tvg-id="CanadaStarTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="http://canadastartv.com/resimler/sistem/logo.png" group-title="",Canada Star TV (360p) [Offline] -https://live.livestreamtv.ca/canadastartv/smil:canadastartv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Legislative",Channel 1 (480p) [Not 24/7] -https://2nbyjjx7y53k-hls-live.5centscdn.com/cls040317/0070c5b7ef083bdc8de09065c61a34d8.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DiyarTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Diyar TV (720p) [Not 24/7] -http://51.210.199.28/hls/stream.m3u8 -#EXTINF:-1 tvg-id="EBC1TV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.livefarsi.com/uploads/tv_image/ebc1-tv.jpg" group-title="Music",EBC1 TV (720p) [Geo-blocked] -https://vsn1-cdn-phx.icastcenter.com/EBC1/EBC1/playlist.m3u8 -#EXTINF:-1 tvg-id="EcranTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Ecran TV (720p) [Not 24/7] -http://51.210.199.40/hls/stream.m3u8 -#EXTINF:-1 tvg-id="EkranMovie.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Ekran Movie (720p) [Offline] -http://159.69.58.154/ekran/ekrantv.m3u8 -#EXTINF:-1 tvg-id="FarazTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Faraz TV (720p) [Not 24/7] -https://faraztv.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:fars/playlist.m3u8 -#EXTINF:-1 tvg-id="Film1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Film 1 (720p) [Offline] -http://159.69.58.154/film1/film1tv.m3u8 -#EXTINF:-1 tvg-id="GEM24b.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/24b.png" group-title="Music",GEM 24b (1080p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=24b -https://d2e40kvaojifd6.cloudfront.net/stream/24b/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMAcademy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemusa.png" group-title="Movies",GEM Academy (540p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemusa -https://d2e40kvaojifd6.cloudfront.net/stream/gem_usa/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMArabia.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_arabia.png" group-title="Music",GEM Arabia (576p) [Not 24/7] -http://216.66.42.47:7777/GemArabia_HD.m3u8 -#EXTINF:-1 tvg-id="GEMAZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_az.png" group-title="Music",GEM AZ (576p) [Not 24/7] -http://216.66.42.47:7777/GemAZ_HD.m3u8 -#EXTINF:-1 tvg-id="GEMBollywood.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gembollywood.png" group-title="Movies",GEM Bollywood (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gembollywood -https://stream-cdn.gemonline.tv/live/gembollywood/index.m3u8 -#EXTINF:-1 tvg-id="GEMClassic.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_az.png?14" group-title="Classic",GEM Classic (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemclassic -https://stream-cdn.gemonline.tv/live/gemclassic/index.m3u8 -#EXTINF:-1 tvg-id="GEMComedy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_comedy.png" group-title="Movies",GEM Comedy (576p) [Not 24/7] -http://216.66.42.47:7777/GemComedy_HD.m3u8 -#EXTINF:-1 tvg-id="GEMCrypto.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/Pt59QNN.png" group-title="",GEM Crypto (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_crypto -https://stream-cdn.gemonline.tv/live/gemcrypto/index.m3u8 -#EXTINF:-1 tvg-id="GEMDrama.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemdrama.png" group-title="Movies",GEM Drama (360p) [Timeout] -http://65.21.196.79/gem_drama/master.m3u8 -#EXTINF:-1 tvg-id="GEMFilm.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_film.png?14" group-title="Movies",GEM Film (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_film -https://stream-cdn.gemonline.tv/live/gemfilm/index.m3u8 -#EXTINF:-1 tvg-id="GEMFit.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.net/Assets/channels-box/gem_fit.png?14" group-title="Sports",GEM Fit (360p) [Timeout] -http://65.21.196.79/30tv/master.m3u8 -#EXTINF:-1 tvg-id="GEMFood.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_food.png?14" group-title="Cooking",GEM Food (360p) [Timeout] -http://65.21.196.79/gem_food/master.m3u8 -#EXTINF:-1 tvg-id="GEMJunior.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemjunior.png" group-title="Kids",GEM Junior (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemjunior -https://stream-cdn.gemonline.tv/live/gemjunior/index.m3u8 -#EXTINF:-1 tvg-id="GEMKids.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemkids.png" group-title="Kids",GEM Kids (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemkids -https://stream-cdn.gemonline.tv/live/gemkids/index.m3u8 -#EXTINF:-1 tvg-id="GEMLatino.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.net/Assets/channels-box/gem_latino.png?14" group-title="Music",GEM Latino (540p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_latino -https://d2e40kvaojifd6.cloudfront.net/stream/gem_latino/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMLifeTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_life.png?14" group-title="Music",GEM Life (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_life -https://stream-cdn.gemonline.tv/live/gemlife/index.m3u8 -#EXTINF:-1 tvg-id="GEMMaxx.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/maxx.png?14" group-title="Entertainment",GEM Maxx (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=maxx -https://stream-cdn.gemonline.tv/live/gemmaxx/index.m3u8 -#EXTINF:-1 tvg-id="GEMMifa.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/mifa.png" group-title="Music",GEM Mifa (360p) [Timeout] -http://65.21.196.79/mifa/master.m3u8 -#EXTINF:-1 tvg-id="GEMModernEconomy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/modern_economy.png" group-title="Documentary",GEM Modern Economy (540p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=modern_economy -https://d2e40kvaojifd6.cloudfront.net/stream/modern_economy/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMNature.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_nature.png" group-title="Entertainment",GEM Nature (360p) [Timeout] -http://65.21.196.79/gem_nature/master.m3u8 -#EXTINF:-1 tvg-id="GEMOnyx.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/onyx.png" group-title="Movies",GEM Onyx (1080p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=onyx -https://d2e40kvaojifd6.cloudfront.net/stream/onyx/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMProperty.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_property.png?14" group-title="",GEM Property (540p) [Geo-blocked] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_property -https://d2e40kvaojifd6.cloudfront.net/stream/gem_property/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMRiver.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/river.png?14" group-title="Entertainment",GEM River (360p) [Timeout] -http://65.21.196.79/gem_river/master.m3u8 -#EXTINF:-1 tvg-id="GEMRubix.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/rubix.png?14" group-title="Movies",GEM Rubix (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=rubix -https://stream-cdn.gemonline.tv/live/rubix/index.m3u8 -#EXTINF:-1 tvg-id="GEMSeries.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemseries.png" group-title="Movies",GEM Series (360p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemseries -http://65.21.196.79/gem_series/master.m3u8 -#EXTINF:-1 tvg-id="GEMTravel.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_travel.png" group-title="Entertainment",GEM Travel (576p) [Offline] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_travel -https://stream-cdn.gemonline.tv/live/gemtravel/index.m3u8 -#EXTINF:-1 tvg-id="GEMTv.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemtv.png" group-title="Movies",GEM Tv (360p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemtv -http://65.21.196.79/gem_tv/master.m3u8 -#EXTINF:-1 tvg-id="GOLESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",GOLESTAN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:golestan/playlist.m3u8 -#EXTINF:-1 tvg-id="HastiTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Hasti TV (1080p) -https://live.hastitv.com/hls/livetv.m3u8 -#EXTINF:-1 tvg-id="Hispantv.ir" tvg-country="IR;ES;HISPAM" tvg-language="Spanish" tvg-logo="https://en.wikipedia.org/wiki/File:HispanTv_logo.svg" group-title="News",HispanTV (480p) -https://live.presstv.ir/live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Hispantv.ir" tvg-country="IR;ES;HISPAM" tvg-language="Spanish" tvg-logo="https://en.wikipedia.org/wiki/File:HispanTv_logo.svg" group-title="News",HispanTV (480p) -https://live1.presstv.ir/live/hispan.m3u8 -#EXTINF:-1 tvg-id="HodHodTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/TMxCgX1.jpg" group-title="",HodHod TV (720p) -http://51.210.199.12/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IcnetTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Icnet TV (720p) [Not 24/7] -http://51.210.199.7/hls/stream.m3u8 -#EXTINF:-1 tvg-id="iFILM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/ir-ifilm-4421.jpg" group-title="",iFILM (720p) [Not 24/7] -https://live.presstv.ir/ifilmlive/smil:ifilmtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="iFILMArabic.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RPwKZUD.jpg" group-title="Movies",iFILM Arabic (720p) -https://live.presstv.ir/ifilmlive/smil:ifilmar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="iFILMEnglish.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/GgmXZRU.png" group-title="Movies",iFILM English (480p) [Geo-blocked] -https://live1.presstv.ir/live/ifilmen.m3u8 -#EXTINF:-1 tvg-id="iFILMPersian2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://fa2.ifilmtv.com/img/test-final02.png" group-title="Movies",iFILM Persian 2 (480p) [Not 24/7] -https://live1.presstv.ir/live/ifilm2.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/FPfq4O5.png" group-title="Religious",Imam Hussein TV (720p) -https://fa.imamhusseintv.com/live/ih1.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/FPfq4O5.png" group-title="Religious",Imam Hussein TV 1 (360p) -https://live.imamhossaintv.com/live/ih103/index.m3u8 -#EXTINF:-1 tvg-id="INTVSimayeAzadi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/CTIINTk.png" group-title="",INTV Simaye Azadi (1080p) -https://sima-i.akamaihd.net/hls/live/624111/sima/index.m3u8 -#EXTINF:-1 tvg-id="IranBeauty.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/e8vc8vh.jpg" group-title="",Iran Beauty (720p) [Not 24/7] -http://51.210.199.57/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IraneAryaee.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Legislative",Irane Aryaee (480p) [Offline] -http://159.69.58.154/irane_arya/irane_arya.m3u8 -#EXTINF:-1 tvg-id="ITN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",ITN (720p) [Not 24/7] -http://51.210.199.31/hls/stream.m3u8 -#EXTINF:-1 tvg-id="iToon.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/2HoOHwF.png" group-title="Kids",iToon (360p) [Offline] -http://159.69.58.154/itoon/master.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/HQjLbwm.png" group-title="Religious",Kalemeh TV (1080p) [Not 24/7] -https://live.kalemehtv.tv/live/ngrp:kalemeh_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KhaterehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Khatereh TV (368p) [Geo-blocked] -https://5caf24a595d94.streamlock.net:1937/8130/8130/playlist.m3u8 -#EXTINF:-1 tvg-id="Manoto.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://dwphh95xlnw84.cloudfront.net/images/static/placeholder/manotologo.png" group-title="Entertainment",Manoto TV (1080p) -https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 -#EXTINF:-1 tvg-id="Marjaeyat.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Marjaeyat (1080p) [Not 24/7] -https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8 -#EXTINF:-1 tvg-id="MihanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="http://mihantv.com/wp-content/themes/mihantv/images/logo.png" group-title="News",Mihan TV (360p) [Not 24/7] -https://iptv.mihantv.com/live/playlist1/index.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/espyPNl.png" group-title="Religious",Mohabat TV (540p) -http://204.11.235.251:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/r1VblfT.png" group-title="Religious",Mohabat TV (540p) -https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MonoTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Sports",Mono TV (720p) [Offline] -http://51.210.227.137/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Music1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Music 1 [Offline] -http://159.69.58.154/music1/music1_tv.m3u8 -#EXTINF:-1 tvg-id="NAVAHANG.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",NAVAHANG (720p) -http://51.210.227.130/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Nour.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Nour (720p) [Not 24/7] -https://cdn.videoevent.live:19360/elfaro4/elfaro4.m3u8 -#EXTINF:-1 tvg-id="OmideIran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Omide Iran (720p) [Not 24/7] -http://51.210.199.38/hls/stream.m3u8 -#EXTINF:-1 tvg-id="OXIRTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/q3cxxW3.jpg" group-title="",OXIR TV (720p) [Offline] -http://51.210.199.36/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ParnianTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/ca-parnian-tv-9509.jpg" group-title="",Parnian TV (1080p) [Not 24/7] -https://live2.parnian.tv/hls/live/play.m3u8 -#EXTINF:-1 tvg-id="ParsTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/EKS7sPr.png" group-title="",Pars TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls032817/18e2bf34e2035dbabf48ee2db66405ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="Parsiland.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Parsiland (540p) [Not 24/7] -http://vps.parsiland.net/hls/ParsiLand.m3u8 -#EXTINF:-1 tvg-id="PayamJavanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://payamjavan.com/wp-content/uploads/2019/05/logo-Payam-Javan.png" group-title="Entertainment",Payam Javan TV (720p) [Not 24/7] -https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="PayvandTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="http://nebula.wsimg.com/e903234fabf798439adab0207277eb7b?AccessKeyId=2686ECEA8341253D570E&disposition=0&alloworigin=1" group-title="Religious",Payvand TV (720p) [Not 24/7] -https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8 -#EXTINF:-1 tvg-id="PBCTapeshTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/J0Oj78g.jpg" group-title="",PBC Tapesh TV (720p) [Not 24/7] -http://iptv.tapesh.tv/tapesh/playlist.m3u8 -#EXTINF:-1 tvg-id="PersianBazar.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Shop",Persian Bazar (720p) [Not 24/7] -https://stream.persiantv1.com/ptv1/playlist1/index.m3u8 -#EXTINF:-1 tvg-id="PersianFilm.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persian Film (720p) [Not 24/7] -http://51.210.227.135/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PMC.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/srVaOna.png" group-title="Music",PMC (1080p) -https://hls.pmchd.live/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PMCRoyale.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/srVaOna.png" group-title="Music",PMC Royale (720p) [Not 24/7] -http://51.210.199.29/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PressTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/TNQKahI.png" group-title="News",Press TV English (720p) -https://live.presstv.ir/liveprs/smil:liveprs/playlist.m3u8 -#EXTINF:-1 tvg-id="PressTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/TNQKahI.png" group-title="News",Press TV French (1080p) [Not 24/7] -https://live1.presstv.ir/live/presstvfr/index.m3u8 -#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFarda.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/NqTGH0Q.png" group-title="",Radio Farda (576p) [Not 24/7] -https://rfe-lh.akamaihd.net/i/rfe_tvmc1@383622/master.m3u8 -#EXTINF:-1 tvg-id="RadioJavanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/4XTyMST.jpg" group-title="Music",Radio Javan TV (1080p) [Not 24/7] -https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RangarangTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/s5yF9aU.jpg" group-title="",Rangarang TV (720p) [Not 24/7] -https://iptv.rangarang.us/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="Sahar.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Sahar (480p) -http://cdnlive.irib.ir/live-channels/smil:sahar3/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHARKURDI.ir" tvg-country="IR" tvg-language="Kurdish" tvg-logo="" group-title="",SAHAR KURDI (576p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/56 -#EXTINF:-1 tvg-id="SalamTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Salam TV (720p) -https://iptv.salaamtv.org/salaam/playlist.m3u8 -#EXTINF:-1 tvg-id="SepanjTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Sepanj TV (720p) [Not 24/7] -http://51.210.199.30/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SL1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/n9cuM2W.jpg" group-title="Movies",SL 1 (720p) -http://51.210.199.3/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SL2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/BVuUx5R.jpg" group-title="Movies",SL 2 (720p) -http://51.210.199.2/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SNN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/SNN_Logo.svg/320px-SNN_Logo.svg.png" group-title="Entertainment",SNN TV (720p) [Not 24/7] -https://live.snn.ir/hls/snn/index.m3u8 -#EXTINF:-1 tvg-id="T2TV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/BwyQR6n.png" group-title="Music",T2 TV (720p) [Not 24/7] -http://208.113.204.104:8123/live/tapesh-live-stream/index.m3u8 -#EXTINF:-1 tvg-id="Tapesh2Movies.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Tapesh 2 Movies (720p) [Not 24/7] -http://159.69.58.154/t2_movies/master.m3u8 -#EXTINF:-1 tvg-id="TBNNejatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://nejattv.org/assets/img/tbn-nejat-logo.png" group-title="",TBN Nejat TV (540p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266913/live.m3u8 -#EXTINF:-1 tvg-id="TehranTV24.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",TehranTV 24 (720p) -http://51.210.227.132/hls/stream.m3u8 -#EXTINF:-1 tvg-id="TinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Tin TV (720p) [Not 24/7] -https://bozztv.com/1gbw5/tintv/tintv/playlist.m3u8 -#EXTINF:-1 tvg-id="Toonix.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Kids",Toonix (720p) [Not 24/7] -http://51.210.227.134/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Valiasr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Valiasr (480p) [Offline] -https://ir13.livekadeh.com/hls2/valiasr.m3u8 -#EXTINF:-1 tvg-id="Varzesh.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Varzesh (1080p) -http://cdn1.live.irib.ir:1935/channel-live/smil:varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (1080p) -http://cdn1.live.irib.ir:1935/live-channels/smil:varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="VarzeshTVFarsi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/ADQM8Pk.png" group-title="",Varzesh TV Farsi (720p) [Not 24/7] -http://51.210.199.16/hls/stream.m3u8 -#EXTINF:-1 tvg-id="VOX1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/OFuIRFI.jpg" group-title="",VOX1 (720p) [Not 24/7] -http://51.210.199.8/hls/stream.m3u8 -#EXTINF:-1 tvg-id="VOX2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/DN5wvFg.jpg" group-title="",VOX2 (720p) [Not 24/7] -http://51.210.199.9/hls/stream.m3u8 -#EXTINF:-1 tvg-id="YourTimeTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://yourtime.tv/img/utv-logo.png" group-title="Entertainment",YourTime TV (720p) [Not 24/7] -https://hls.yourtime.live/hls/stream.m3u8 diff --git a/channels/ir_telewebion.m3u b/channels/ir_telewebion.m3u deleted file mode 100644 index 110a234ca..000000000 --- a/channels/ir_telewebion.m3u +++ /dev/null @@ -1,207 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABADAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ABADAN (576p) -https://sdm.telewebion.com/live/abadan/playlist.m3u8 -#EXTINF:-1 tvg-id="ABADAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ABADAN (576p) [Timeout] -https://sdw.telewebion.com/live/abadan/playlist.m3u8 -#EXTINF:-1 tvg-id="AFLAK.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFLAK (576p) -https://sdm.telewebion.com/live/aflak/playlist.m3u8 -#EXTINF:-1 tvg-id="AFLAK.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFLAK (240p) [Timeout] -https://sdw.telewebion.com/live/aflak/playlist.m3u8 -#EXTINF:-1 tvg-id="AFTAB.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFTAB (576p) -https://sdm.telewebion.com/live/aftab/playlist.m3u8 -#EXTINF:-1 tvg-id="AFTAB.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFTAB (576p) [Timeout] -https://sdw.telewebion.com/live/aftab/playlist.m3u8 -#EXTINF:-1 tvg-id="ALBORZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ALBORZ (576p) -https://sdm.telewebion.com/live/alborz/playlist.m3u8 -#EXTINF:-1 tvg-id="ALBORZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ALBORZ (576p) [Timeout] -https://sdw.telewebion.com/live/alborz/playlist.m3u8 -#EXTINF:-1 tvg-id="AMOOZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AMOOZESH (576p) -https://sdm.telewebion.com/live/amouzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="AMOOZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AMOOZESH (576p) -https://sdw.telewebion.com/live/amouzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Azarbayjan Gharbi (576p) -https://sdw.telewebion.com/live/azarbayjangharbi/playlist.m3u8 -#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Azarbayjan Gharbi (576p) [Timeout] -https://sdm.telewebion.com/live/azarbayjangharbi/playlist.m3u8 -#EXTINF:-1 tvg-id="Baran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Baran (576p) -https://sdm.telewebion.com/live/baran/playlist.m3u8 -#EXTINF:-1 tvg-id="Baran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Baran (576p) -https://sdw.telewebion.com/live/baran/playlist.m3u8 -#EXTINF:-1 tvg-id="Bushehr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Bushehr (576p) [Not 24/7] -https://sdm.telewebion.com/live/bushehr/playlist.m3u8 -#EXTINF:-1 tvg-id="Bushehr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Bushehr (576p) [Not 24/7] -https://sdw.telewebion.com/live/bushehr/playlist.m3u8 -#EXTINF:-1 tvg-id="Dena.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Dena (576p) -https://sdw.telewebion.com/live/dena/playlist.m3u8 -#EXTINF:-1 tvg-id="Dena.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Dena (576p) [Timeout] -https://sdm.telewebion.com/live/dena/playlist.m3u8 -#EXTINF:-1 tvg-id="ESFAHAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESFAHAN (576p) -https://sdw.telewebion.com/live/esfahan/playlist.m3u8 -#EXTINF:-1 tvg-id="ESFAHAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESFAHAN (576p) [Timeout] -https://sdm.telewebion.com/live/esfahan/playlist.m3u8 -#EXTINF:-1 tvg-id="ESHRAGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESHRAGH (576p) -https://sdm.telewebion.com/live/eshragh/playlist.m3u8 -#EXTINF:-1 tvg-id="ESHRAGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESHRAGH (576p) [Timeout] -https://sdw.telewebion.com/live/eshragh/playlist.m3u8 -#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (576p) -https://sdw.telewebion.com/live/fars/playlist.m3u8 -#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (576p) [Timeout] -https://sdm.telewebion.com/live/fars/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMEDAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMEDAN (576p) -https://sdm.telewebion.com/live/sina/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMEDAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMEDAN (576p) -https://sdw.telewebion.com/live/sina/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMOON.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMOON (576p) -https://sdm.telewebion.com/live/hamoon/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMOON.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMOON (576p) -https://sdw.telewebion.com/live/hamoon/playlist.m3u8 -#EXTINF:-1 tvg-id="ILAM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ILAM (576p) -https://sdm.telewebion.com/live/ilam/playlist.m3u8 -#EXTINF:-1 tvg-id="ILAM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ILAM (576p) -https://sdw.telewebion.com/live/ilam/playlist.m3u8 -#EXTINF:-1 tvg-id="IRANKALA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",IRANKALA (576p) [Not 24/7] -https://sdw.telewebion.com/live/irankala/playlist.m3u8 -#EXTINF:-1 tvg-id="IRANKALA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",IRANKALA (576p) [Timeout] -https://sdm.telewebion.com/live/irankala/playlist.m3u8 -#EXTINF:-1 tvg-id="IRINN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://s3.ott.tva.tv/rosing-tva-production/44d0105b6c9ec94b5c3e_512x512c.png" group-title="",IRINN (1080p) [Not 24/7] -https://sdm.telewebion.com/live/irinn/playlist.m3u8 -#EXTINF:-1 tvg-id="IRINN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://s3.ott.tva.tv/rosing-tva-production/44d0105b6c9ec94b5c3e_512x512c.png" group-title="",IRINN (1080p) [Timeout] -https://sdw.telewebion.com/live/irinn/playlist.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (576p) -https://sdm.telewebion.com/live/jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (576p) [Timeout] -https://sdw.telewebion.com/live/jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMAN (576p) -https://sdm.telewebion.com/live/kerman/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMAN (576p) -https://sdw.telewebion.com/live/kerman/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMANSHAH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMANSHAH (576p) -https://sdm.telewebion.com/live/zagros/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMANSHAH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMANSHAH (576p) [Timeout] -https://sdw.telewebion.com/live/zagros/playlist.m3u8 -#EXTINF:-1 tvg-id="KHJONOOBI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.JONOOBI (576p) -https://sdm.telewebion.com/live/khavaran/playlist.m3u8 -#EXTINF:-1 tvg-id="KHJONOOBI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.JONOOBI (576p) [Timeout] -https://sdw.telewebion.com/live/khavaran/playlist.m3u8 -#EXTINF:-1 tvg-id="KHRAZAVI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.RAZAVI (576p) -https://sdm.telewebion.com/live/khorasanrazavi/playlist.m3u8 -#EXTINF:-1 tvg-id="KHRAZAVI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.RAZAVI (576p) [Not 24/7] -https://sdw.telewebion.com/live/khorasanrazavi/playlist.m3u8 -#EXTINF:-1 tvg-id="KHSHOMALI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.SHOMALI (576p) -https://sdw.telewebion.com/live/atrak/playlist.m3u8 -#EXTINF:-1 tvg-id="KHSHOMALI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.SHOMALI (576p) [Not 24/7] -https://sdm.telewebion.com/live/atrak/playlist.m3u8 -#EXTINF:-1 tvg-id="KHALIJEFARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHALIJEFARS (576p) [Not 24/7] -https://sdm.telewebion.com/live/khalijefars/playlist.m3u8 -#EXTINF:-1 tvg-id="KHALIJEFARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHALIJEFARS (576p) [Not 24/7] -https://sdw.telewebion.com/live/khalijefars/playlist.m3u8 -#EXTINF:-1 tvg-id="KHOOZESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHOOZESTAN (576p) -https://sdm.telewebion.com/live/khoozestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KHOOZESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHOOZESTAN (576p) [Not 24/7] -https://sdw.telewebion.com/live/khoozestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KISH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KISH (576p) -https://sdm.telewebion.com/live/kish/playlist.m3u8 -#EXTINF:-1 tvg-id="KISH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KISH (576p) [Timeout] -https://sdw.telewebion.com/live/kish/playlist.m3u8 -#EXTINF:-1 tvg-id="KORDESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KORDESTAN (576p) -https://sdm.telewebion.com/live/kordestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KORDESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KORDESTAN (576p) -https://sdw.telewebion.com/live/kordestan/playlist.m3u8 -#EXTINF:-1 tvg-id="MAHABAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAHABAD (576p) -https://sdm.telewebion.com/live/mahabad/playlist.m3u8 -#EXTINF:-1 tvg-id="MAHABAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAHABAD (576p) -https://sdw.telewebion.com/live/mahabad/playlist.m3u8 -#EXTINF:-1 tvg-id="MAZANDARAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAZANDARAN (576p) -https://sdm.telewebion.com/live/tabarestan/playlist.m3u8 -#EXTINF:-1 tvg-id="MAZANDARAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAZANDARAN (576p) -https://sdw.telewebion.com/live/tabarestan/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSTANAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MOSTANAD (1080p) -https://sdw.telewebion.com/live/mostanad/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSTANAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MOSTANAD (480p) [Timeout] -https://sdm.telewebion.com/live/mostanad/playlist.m3u8 -#EXTINF:-1 tvg-id="NAMAYESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NAMAYESH (1080p) -https://sdm.telewebion.com/live/namayesh/playlist.m3u8 -#EXTINF:-1 tvg-id="NAMAYESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NAMAYESH (1080p) [Timeout] -https://sdw.telewebion.com/live/namayesh/playlist.m3u8 -#EXTINF:-1 tvg-id="NASIM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NASIM (1080p) -https://sdm.telewebion.com/live/nasim/playlist.m3u8 -#EXTINF:-1 tvg-id="NASIM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NASIM (1080p) [Timeout] -https://sdw.telewebion.com/live/nasim/playlist.m3u8 -#EXTINF:-1 tvg-id="Noor.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Noor (576p) -https://sdw.telewebion.com/live/noor/playlist.m3u8 -#EXTINF:-1 tvg-id="Noor.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Noor (576p) [Timeout] -https://sdm.telewebion.com/live/noor/playlist.m3u8 -#EXTINF:-1 tvg-id="OFOGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OFOGH (1080p) [Not 24/7] -https://sdm.telewebion.com/live/ofogh/playlist.m3u8 -#EXTINF:-1 tvg-id="OFOGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OFOGH (1080p) [Not 24/7] -https://sdw.telewebion.com/live/ofogh/playlist.m3u8 -#EXTINF:-1 tvg-id="OMID.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OMID (576p) -https://sdm.telewebion.com/live/omid/playlist.m3u8 -#EXTINF:-1 tvg-id="OMID.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OMID (576p) -https://sdw.telewebion.com/live/omid/playlist.m3u8 -#EXTINF:-1 tvg-id="POUYA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",POUYA (1080p) -https://sdm.telewebion.com/live/pooya/playlist.m3u8 -#EXTINF:-1 tvg-id="POUYA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",POUYA (720p) -https://sdw.telewebion.com/live/pooya/playlist.m3u8 -#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (576p) -https://sdw.telewebion.com/live/qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (576p) [Timeout] -https://sdm.telewebion.com/live/qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="QURAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QURAN (576p) -https://sdw.telewebion.com/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="QURAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QURAN (576p) [Timeout] -https://sdm.telewebion.com/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="SABALAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SABALAN (576p) -https://sdm.telewebion.com/live/sabalan/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (576p) -https://sdm.telewebion.com/live/sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (576p) -https://sdw.telewebion.com/live/sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="SALAMAT.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SALAMAT (576p) -https://sdw.telewebion.com/live/salamat/playlist.m3u8 -#EXTINF:-1 tvg-id="SALAMAT.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SALAMAT (576p) [Timeout] -https://sdm.telewebion.com/live/salamat/playlist.m3u8 -#EXTINF:-1 tvg-id="SEMNAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEMNAN (576p) -https://sdm.telewebion.com/live/semnan/playlist.m3u8 -#EXTINF:-1 tvg-id="SEMNAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEMNAN (576p) -https://sdw.telewebion.com/live/semnan/playlist.m3u8 -#EXTINF:-1 tvg-id="SEPEHR.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEPEHR (576p) -https://sdm.telewebion.com/live/sepehr/playlist.m3u8 -#EXTINF:-1 tvg-id="SEPEHR.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEPEHR (576p) -https://sdw.telewebion.com/live/sepehr/playlist.m3u8 -#EXTINF:-1 tvg-id="SHOMA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SHOMA (576p) -https://sdm.telewebion.com/live/shoma/playlist.m3u8 -#EXTINF:-1 tvg-id="SHOMA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SHOMA (576p) -https://sdw.telewebion.com/live/shoma/playlist.m3u8 -#EXTINF:-1 tvg-id="TAMASHA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TAMASHA (1080p) -https://sdw.telewebion.com/live/hdtest/playlist.m3u8 -#EXTINF:-1 tvg-id="TAMASHA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TAMASHA (1080p) [Timeout] -https://sdm.telewebion.com/live/hdtest/playlist.m3u8 -#EXTINF:-1 tvg-id="TV1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV1 (1080p) [Not 24/7] -https://sdm.telewebion.com/live/tv1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV1 (1080p) [Timeout] -https://sdw.telewebion.com/live/tv1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV2 (576p) -https://sdm.telewebion.com/live/tv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV2 (576p) -https://sdw.telewebion.com/live/tv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TV3.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV3 (1080p) [Not 24/7] -https://sdw.telewebion.com/live/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TV3.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV3 (360p) [Not 24/7] -https://sdm.telewebion.com/live/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TV4.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV4 (576p) -https://sdm.telewebion.com/live/tv4/playlist.m3u8 -#EXTINF:-1 tvg-id="TV4.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV4 (576p) -https://sdw.telewebion.com/live/tv4/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV5 (576p) -https://sdm.telewebion.com/live/tehran/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV5 (576p) -https://sdw.telewebion.com/live/tehran/playlist.m3u8 -#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (1080p) [Not 24/7] -https://sdw.telewebion.com/live/varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (1080p) [Timeout] -https://sdm.telewebion.com/live/varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="YAZD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",YAZD (576p) -https://sdm.telewebion.com/live/taban/playlist.m3u8 -#EXTINF:-1 tvg-id="YAZD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",YAZD (576p) [Not 24/7] -https://sdw.telewebion.com/live/taban/playlist.m3u8 diff --git a/channels/is.m3u b/channels/is.m3u deleted file mode 100644 index eff15744a..000000000 --- a/channels/is.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="N4.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/bLA64K0.png" group-title="",N4 (720p) -https://live.tv.c.is/n4/index.m3u8 -#EXTINF:-1 tvg-id="RUV.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/mtMIIT0.png" group-title="",RÚV (360p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/iceland/ruv -#EXTINF:-1 tvg-id="RUV2.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/mtMIIT0.png" group-title="",RÚV 2 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/iceland/ruv2 diff --git a/channels/it.m3u b/channels/it.m3u deleted file mode 100644 index 93ba6530f..000000000 --- a/channels/it.m3u +++ /dev/null @@ -1,492 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="12TVParma.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.12tvparma.it/static/img/12tvparma.png" group-title="General",12 TV Parma (540p) [Not 24/7] -https://5929b138b139d.streamlock.net/12TVParma/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="20Mediaset.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/e/e4/20_Mediaset_-_Logo_2018.svg" group-title="",20 Mediaset [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(lb)/index.m3u8 -#EXTINF:-1 tvg-id="51RadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://i65.tinypic.com/wmf409.jpg" group-title="",51 Radio TV (480p) [Geo-blocked] -http://wms.shared.streamshow.it/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="A2itv.it" tvg-country="IT" tvg-language="English;French" tvg-logo="" group-title="",A2itv (1080p) [Not 24/7] -https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ABChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/y5564NI.png" group-title="",AB Channel (720p) [Not 24/7] -https://tsw.streamingwebtv24.it:1936/abchanneltv/abchanneltv/playlist.m3u8 -#EXTINF:-1 tvg-id="ABChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/d/d4/Ab_channel_i_logo.png" group-title="",AB Channel (768p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/abchannel/abchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Gfy3pb1.jpg" group-title="",Alma TV (576p) [Timeout] -http://151.0.207.99:1935/AlmaTv/AlmaTv/playlist.m3u8 -#EXTINF:-1 tvg-id="AltoAdigeTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Alto Adige TV (720p) -https://5f204aff97bee.streamlock.net/AltoAdigeTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AntennaTreVeneto.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Antenna Tre Veneto (480p) [Geo-blocked] -https://59d8c0cee6f3d.streamlock.net/antennatreveneto/antennatreveneto.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AuroraArte.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Y1Yq3iV.png" group-title="",Aurora Arte (480p) -https://59d7d6f47d7fc.streamlock.net/auroraarte/auroraarte/playlist.m3u8 -#EXTINF:-1 tvg-id="AzzurraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.vcoazzurratv.it/images/1_tg_loghi/logo_vcoazzurratv_old_03.png" group-title="",Azzurra TV (576p) [Not 24/7] -https://sb.top-ix.org/avtvlive/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="Bike.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/wZh7aI8.png" group-title="",Bike (720p) [Timeout] -http://backup.superstreaming.inaria.me/BikeSmartMobilityDTT/playlist.m3u8 -#EXTINF:-1 tvg-id="BoingFrance.it" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mIbmYs1.png" group-title="Kids",Boing France (720p) [Not 24/7] -http://flusonic-1.platinum-tv.com/boing/index.m3u8?token=test -#EXTINF:-1 tvg-id="BoingSpain.it" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mIbmYs1.png" group-title="Kids",Boing Spain [Offline] -http://149.62.177.157:8000/play/a010 -#EXTINF:-1 tvg-id="CafeTV24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Ta05IbG.jpg" group-title="",CafeTV24 (720p) -https://srvx1.selftv.video/cafe/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CafeTV24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.jennigandolfi.com/wp-content/uploads/2018/04/LOGO-CAFETV24-2018_01_12-15_26_50-UTC.png" group-title="",CafèTV24 (720p) -http://srv3.meway.tv:1957/cafe/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CameradeiDeputativiaRR.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Camera dei Deputati (via RR) (240p) -https://video-ar.radioradicale.it/diretta/camera2/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale2Altamura.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/uh4R5Ih.png" group-title="",Canale 2 Altamura (576p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/canale2/canale2/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/02/Canale_5_-_2018_logo.svg" group-title="",Canale 5 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(C5)/index.m3u8 -#EXTINF:-1 tvg-id="Canale7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://canale7.tv/assets/front/img/fb_logo.jpg" group-title="",Canale 7 (480p) -http://wms.shared.streamshow.it/canale7/canale7/playlist.m3u8 -#EXTINF:-1 tvg-id="CANALE7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",CANALE 7 (480p) -http://wms.shared.streamshow.it/canale7/mp4:canale7/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale8.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/c/cc/LogoCanale8.jpg" group-title="",Canale 8 (480p) -http://wms.shared.streamshow.it/canale8/canale8/playlist.m3u8 -#EXTINF:-1 tvg-id="CANALE8.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",CANALE 8 (480p) -http://wms.shared.streamshow.it/canale8/mp4:canale8/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale10.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://pbs.twimg.com/profile_images/942825876533727234/P7MmeqqD_400x400.jpg" group-title="",Canale 10 (540p) [Not 24/7] -http://37.187.142.147:1935/ch10live/high.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale10Ostia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/v9q5LKw.png" group-title="",Canale 10 Ostia (540p) [Not 24/7] -http://canale10.cloud:1935/ch10live/high.stream/master.m3u8 -#EXTINF:-1 tvg-id="Canale21Lazio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/mU6Cq89.png" group-title="",Canale 21 Lazio (480p) [Not 24/7] -https://stream.mariatvcdn.com/canaleventuno/f5d2060b3682e0dfffd5b2f18e935ad3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CanaleItalia83.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9VY1Kor.jpg" group-title="",Canale Italia 83 (576p) [Not 24/7] -http://ovp-live.akamaized.net/ac024_live/video1/playlist.m3u8 -#EXTINF:-1 tvg-id="CarinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.altrostudio.tv/images/portfolio/carinatv.jpg" group-title="",Carina TV (720p) -http://wms.shared.streamshow.it/carinatv/carinatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CarinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.altrostudio.tv/images/portfolio/carinatv.jpg" group-title="",Carina TV (720p) -http://wms.shared.streamshow.it/carinatv/mp4:carinatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cine34.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d7/Cine34_logo.svg" group-title="",Cine 34 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(b6)/index.m3u8 -#EXTINF:-1 tvg-id="ClassCNBC.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Business",Class CNBC (576p) -https://streamcdnb10-859c1818ed614cc5b0047439470927b0.msvdn.net/live/S76890577/tDoFkZD3T1Lw/playlist.m3u8 -#EXTINF:-1 tvg-id="CompanyTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Music",Company TV (720p) -http://wma10.fluidstream.net/CompanyTV/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CompanyTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Music",Company TV (720p) -https://5929b138b139d.streamlock.net/CompanyTV/smil:CompanyTV.smil/master.m3u8 -#EXTINF:-1 tvg-id="CusanoItaliaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Cusano Italia TV (720p) [Not 24/7] -https://stream9.xdevel.com/video0s975363-691/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DeeJayTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/9/93/Logo_Deejay.svg/1024px-Logo_Deejay.svg.png" group-title="Music",DeeJay TV (360p) -https://deejay_tv-lh.akamaihd.net/i/DeejayTv_1@129866/master.m3u8 -#EXTINF:-1 tvg-id="DonnaShopping.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Shop",Donna Shopping (1080p) [Not 24/7] -https://media.streambrothers.com:1936/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="EliveTVBrescia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.elivebrescia.tv/wp-content/uploads/2018/09/Logo_nuovo_CLAIM.png" group-title="",Elive TV Brescia (720p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/elivebresciatv/elivebresciatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EntellaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Entella TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/EntellaTV/EntellaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/81/ESPERIATV18_verde.png" group-title="",Esperia TV (480p) -http://wms.shared.streamshow.it/esperiatv/esperiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/81/ESPERIATV18_verde.png" group-title="",Esperia TV (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/esperiatv/esperiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroIndieMusicChartTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/UDFBYpN.png" group-title="Music",Euro Indie Music Chart TV (360p) -http://178.33.224.197:1935/euroindiemusic/euroindiemusic/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/zTYnT18.png" group-title="",Euro TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/eurotv/eurotv/playlist.m3u8 -#EXTINF:-1 tvg-id="FMITALIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/EroYlvc.jpg" group-title="",FM ITALIA (404p) [Not 24/7] -https://stream7.xdevel.com/video0s975817-411/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Gold78.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Gold 78 (1080p) -https://stream2.xdevel.com/video1s86-22/stream/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="GoldTVItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/7a/LOGO-GOLD-TV.png" group-title="",Gold TV Italia (576p) [Timeout] -http://151.0.207.99:1935/GoldTV/GOLD_17/playlist.m3u8 -#EXTINF:-1 tvg-id="HalowKidsHD.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Halow Kids HD (480p) [Offline] -http://halowtv.online:8080/HalowTV/FSyzHfEhvb/139 -#EXTINF:-1 tvg-id="HilandoFino.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Hilando Fino (1080p) [Not 24/7] -http://4k-server-mia.2cdn.eu/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 -#EXTINF:-1 tvg-id="HistoryLab.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9D754nx.png" group-title="",History Lab (270p) [Not 24/7] -https://5929b138b139d.streamlock.net/HistoryLab/livestream/playlis.m3u8 -#EXTINF:-1 tvg-id="IcaroTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/nWBWzNy.png" group-title="",Icaro TV (720p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/icarotv/icarotv/playlist.m3u8 -#EXTINF:-1 tvg-id="Iris.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/iris.png" group-title="",Iris [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ki)/index.m3u8 -#EXTINF:-1 tvg-id="Italia1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/italia1-logo.png" group-title="",Italia 1 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i1)/index.m3u8 -#EXTINF:-1 tvg-id="Italia2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/italia2.png" group-title="",Italia 2 (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/italia2/italia2/playlist.m3u8 -#EXTINF:-1 tvg-id="Italia2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/italia2.png" group-title="",Italia 2 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i2)/index.m3u8 -#EXTINF:-1 tvg-id="Italia2TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/TDSgG28.png" group-title="",Italia 2 TV (480p) [Geo-blocked] -http://wms.shared.streamshow.it/italia2/mp4:italia2/playlist.m3u8 -#EXTINF:-1 tvg-id="Italia7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/PIeNjOA.jpg" group-title="",Italia 7 (576p) [Timeout] -http://151.0.207.99:1935/italia7/italia7/playlist.m3u8 -#EXTINF:-1 tvg-id="IuniorTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/FBOJnfT.png" group-title="",Iunior TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/iuniortv/iuniortv/playlist.m3u8 -#EXTINF:-1 tvg-id="JuweloItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Juwelo Italia (480p) -https://sdn-global-live-streaming-packager-cache.3qsdn.com/7841/7841_264_live.m3u8 -#EXTINF:-1 tvg-id="KissKissNapoliTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Qawc6g8.jpg" group-title="",Kiss Kiss Napoli TV (720p) -https://58f12ffd2447a.streamlock.net/KKTVNapoli/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KissKissTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/pETXOU7.jpg" group-title="",Kiss Kiss TV (1080p) -https://58f12ffd2447a.streamlock.net/KKMulti/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioKissKissItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://kisskissitalia.it/wp-content/uploads/2021/07/cropped-logo-kisskissitalia.png" group-title="",Kiss Kiss TV (720p) -https://58f12ffd2447a.streamlock.net/KKTV01/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KissKissTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/pETXOU7.jpg" group-title="",Kiss Kiss TV (720p) -https://59253971be783.streamlock.net/KissKissTV/KissKissTV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="La5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/la5.png" group-title="",La 5 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ka)/index.m3u8 -#EXTINF:-1 tvg-id="LaCTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/123hRnI.png" group-title="",La C TV (720p) [Not 24/7] -http://streamcdng3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 -#EXTINF:-1 tvg-id="LaCTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.lactv.it/wp-content/uploads/2017/12/lactv-new-2.png" group-title="",La CTV (720p) [Not 24/7] -http://streamcdnc3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTr3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.tvdream.net/immagini/latr3.jpg" group-title="",La Tr3 (720p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/eslife/eslife/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTR3Marsala.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/IFPpG7X.png" group-title="",La TR3 Marsala (720p) -https://tsw.streamingwebtv24.it:1936/eslife1/eslife1/playlist.m3u8 -#EXTINF:-1 tvg-id="LazioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/CaKRuRT.png" group-title="",Lazio TV (576p) [Timeout] -http://151.0.207.99:1935/live/LAZIOTV12/playlist.m3u8 -#EXTINF:-1 tvg-id="LiraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/sC9ELuY.jpg" group-title="",Lira TV (720p) [Not 24/7] -https://5d79ae45bc63b.streamlock.net/Liratv/Liratv/playlist.m3u8 -#EXTINF:-1 tvg-id="LucaniaChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/4RKmGcr.png" group-title="",Lucania Channel (480p) [Not 24/7] -http://wms.shared.streamshow.it/lucaniatv/mp4:lucaniatv/playlist.m3u8 -#EXTINF:-1 tvg-id="m2oTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Radio_m2o_-_Logo_2019.svg/936px-Radio_m2o_-_Logo_2019.svg.png" group-title="Music",m2o TV (224p) [Not 24/7] -https://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/master.m3u8 -#EXTINF:-1 tvg-id="MediasetExtra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/mediasetextra.png" group-title="",Mediaset Extra [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kq)/index.m3u8 -#EXTINF:-1 tvg-id="NSL.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/WmnmG2D.jpeg" group-title="",NSL (1080p) -https://streannunsec-lh.akamaihd.net/i/tv_1@868496/master.m3u8 -#EXTINF:-1 tvg-id="OndaNovaraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Onda Novara TV (720p) [Not 24/7] -https://585b674743bbb.streamlock.net/9006/9006/master.m3u8 -#EXTINF:-1 tvg-id="OrlerTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Ia7iULa.png" group-title="",Orler TV (420p) [Not 24/7] -https://w1.mediastreaming.it/orlertv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="OttoFMTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/2jE6ItV.png" group-title="",Otto FM TV (576p) -http://streaming.bitonlive.net:8080/hls/ottofm2/index.m3u8 -#EXTINF:-1 tvg-id="PadrePioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/7/78/Tele_Radio_Padre_Pio.png" group-title="",Padre Pio TV (330p) [Offline] -https://56972e8bd3345.streamlock.net/TRPP_live/smil:bcffcc98-ac2f-4b73-b0a5-ad1bfb96d845_all.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ParadiseTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/OKhpyWr.png" group-title="",Paradise TV (720p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/paradisetv/paradisetv/playlist.m3u8 -#EXTINF:-1 tvg-id="ParolediVita.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Parole di Vita (720p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Paroledivita/Paroledivita/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimaTivvu.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/WBYb7DV.jpg" group-title="",Prima Tivvu (272p) [Offline] -https://celinel.akamaized.net/hls/live/2032089/2032089/primativvu/primativvu/playlist.m3u8 -#EXTINF:-1 tvg-id="Primocanale.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ltoMTJV.png" group-title="",Primocanale (1080p) [Not 24/7] -https://msh0203.stream.seeweb.it/live/flv:stream2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="R101ItaliaIT.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",R 101 Italia IT (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(er)/index.m3u8 -#EXTINF:-1 tvg-id="R101.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/R101_-_Logo_2015.svg/1010px-R101_-_Logo_2015.svg.png" group-title="",R101 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(er)/index.m3u8 -#EXTINF:-1 tvg-id="Radio24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio 24 (1080p) [Not 24/7] -http://radio24-lh.akamaihd.net/i/radio24video_1@379914/master.m3u8 -#EXTINF:-1 tvg-id="Radio51.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://mytuner.global.ssl.fastly.net/media/tvos_radios/dr4z3umuxbjr.png" group-title="",Radio 51 (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio51TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio 51 TV (480p) [Geo-blocked] -http://178.32.140.155/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio101.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.105.net/images/logos/3/logo_colored.jpg" group-title="",Radio 101 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ER)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.105.net/images/logos/3/logo_colored.jpg" group-title="",Radio 105 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(EC)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/0/01/105.png" group-title="",Radio 105 TV (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/0/01/105.png" group-title="",Radio 105 TV (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 -#EXTINF:-1 tvg-id="RadioBirikinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kzvsNo2.png" group-title="",Radio Birikina TV (720p) [Not 24/7] -https://56b50ada2d659.streamlock.net/RadioBirikinaTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioCapitalTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/0bv1gID.png" group-title="Music",Radio Capital TV (360p) -http://capital-live-tv-01-hls.akamai.media.kataweb.it/i/CapitalTv_1@183098/master.m3u8 -#EXTINF:-1 tvg-id="RadioCapitalTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/3/38/Radio_Capital_logo_%282020%29.svg/1280px-Radio_Capital_logo_%282020%29.svg.png" group-title="Music",Radio Capital TV (360p) -https://capital_tv-lh.akamaihd.net/i/CapitalTv_1@183098/master.m3u8 -#EXTINF:-1 tvg-id="RADIOFRECCIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/O8ByUjT.png" group-title="",RADIO FRECCIA (360p) [Offline] -https://rtl-video2-stream.thron.com/live-video/video2/ngrp:video2/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIbizaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/sH8FGqv.png" group-title="",Radio Ibiza TV (720p) [Not 24/7] -https://5929b138b139d.streamlock.net/RadioIbizaTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIglesias.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://static.radio.net/images/broadcasts/3e/ec/29681/c175.png" group-title="",Radio Iglesias (576p) [Geo-blocked] -http://wms.shared.streamshow.it/visualradio/mp4:visualradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIglesiasSardegna.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/KDtVpLl.png" group-title="",Radio Iglesias Sardegna (576p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/visualradio/visualradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioItaliaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://api.superguidatv.it/v1/channels/165/logo?width=120&theme=light" group-title="Music",Radio Italia TV (480p) -https://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/master.m3u8 -#EXTINF:-1 tvg-id="RadioLombardiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.nododigordio.org/assets/uploads/2018/10/RL_06-300x168.png" group-title="",Radio Lombardia TV (720p) -https://flash7.xdevel.com/radiolombardiatv/radiolombardiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioMontecarlo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.radiomontecarlo.net/images/logos/1/logo_white.jpg" group-title="",Radio Montecarlo (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(bb)/index.m3u8 -#EXTINF:-1 tvg-id="RadioNumberOne.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/8cpuaG5.png" group-title="",Radio Number One (720p) -https://56b50ada2d659.streamlock.net/RN1TV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPiterPanTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/DfugVgy.png" group-title="Music",Radio Piter Pan TV (720p) [Not 24/7] -https://58d921499d3d3.streamlock.net/RadioPiterpanTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRadicaleTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio Radicale TV (240p) [Not 24/7] -https://video-ar.radioradicale.it/diretta/padtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio Radio TV (720p) -http://api.new.livestream.com/accounts/11463451/events/3679884/live.m3u8 -#EXTINF:-1 tvg-id="RadioStudioDeltaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ISk4odR.jpg" group-title="",Radio Studio Delta TV (1080p) [Not 24/7] -https://5ce9406b73c33.streamlock.net/RSD/ngrp:livestream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTaorminaSicilia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/SrhtocV.png" group-title="",Radio Taormina Sicilia (720p) [Not 24/7] -https://stream2.xdevel.com/video1s3-7/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZeta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Radio_Zeta_-_Logo_2020.svg/1024px-Radio_Zeta_-_Logo_2020.svg.png" group-title="",Radio Zeta (432p) [Offline] -https://rtl-video3-stream.thron.com/live-video/video3/ngrp:video3/playlist.m3u8 -#EXTINF:-1 tvg-id="radionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",radionorba TV (404p) [Offline] -http://46.165.210.112/radionorbatv/norbatv_source.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://guidatv.sky.it/app/guidatv/images/epgimages/channels/home/25780_home.png" group-title="Music",Radionorba TV (404p) [Offline] -http://flash2.xdevel.com/norbatv/smil:norbatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://guidatv.sky.it/app/guidatv/images/epgimages/channels/home/25780_home.png" group-title="Music",Radionorba TV (404p) [Offline] -http://flash5.streaming.xdevel.com/radionorbatv/smil:radionorbatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZeta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Radio_Zeta_-_Logo_2020.svg/1024px-Radio_Zeta_-_Logo_2020.svg.png" group-title="",RadioZeta (480p) [Timeout] -https://unlimited1-cl.dps.live/radioztv/radioztv.smil/radioztv/livestream2/chunks.m3u8 -#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Rai 1 (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s29/04.m3u8 -#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" group-title="",Rai 1 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803 -#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" group-title="",Rai 1 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai1Geo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 1 (Geo) (576p) -http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=2606803 -#EXTINF:-1 tvg-id="Rai2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.ipko.com/epg/logo/rai2.png" group-title="",Rai 2 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308718 -#EXTINF:-1 tvg-id="Rai2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.ipko.com/epg/logo/rai2.png" group-title="",Rai 2 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308709 -#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (432p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (720p) [Not 24/7] -http://wzstreaming.rai.it/TVlive/liveStream/chunklist_w823540263.m3u8 -#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (720p) [Not 24/7] -http://wzstreaming.rai.it/TVlive/liveStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (576p) -http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=746966 -#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746966 -#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/rai5.png" group-title="",Rai 5 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=395276 -#EXTINF:-1 tvg-id="Rai5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/rai5.png" group-title="",Rai 5 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai5.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RaiGulp.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/anMBVB2.png" group-title="",Rai Gulp (576p) -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746953 -#EXTINF:-1 tvg-id="RaiMovie.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/raimovie.png" group-title="",Rai Movie (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747002 -#EXTINF:-1 tvg-id="RaiNews24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Rai_News_24.svg/1920px-Rai_News_24.svg.png" group-title="News",Rai News 24 (720p) -https://rainews1-live.akamaized.net/hls/live/598326/rainews1/rainews1/playlist.m3u8 -#EXTINF:-1 tvg-id="RaiPremium.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/raipremium.png" group-title="",Rai Premium (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746992 -#EXTINF:-1 tvg-id="RaiScuola.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/rovwgYW.png" group-title="",Rai Scuola (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747011 -#EXTINF:-1 tvg-id="RaiSport.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Lqtz4tS.jpg" group-title="",Rai Sport [Geo-blocked] -http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=179975 -#EXTINF:-1 tvg-id="RaiSport.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Lqtz4tS.jpg" group-title="",Rai Sport (404p) [Offline] -https://everyrai-lh.akamaihd.net/i/raisportjolly1_1@177967/master.m3u8 -#EXTINF:-1 tvg-id="RaiSportPlus.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai Sport+ [Geo-blocked] -http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=4145 -#EXTINF:-1 tvg-id="RaiSportPlus.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai Sport+ [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=358025 -#EXTINF:-1 tvg-id="RaiStoria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/xKt2SJw.png" group-title="",Rai Storia (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746990 -#EXTINF:-1 tvg-id="RaiYoYo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Elw5ZtU.png" group-title="",Rai YoYo (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746899 -#EXTINF:-1 tvg-id="RDSSocialTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://image.winudf.com/v2/image/aXQucmRzLnR2LnJkc3NvY2lhbHR2X3NjcmVlbl8wXzE1MjU0MzE0MzlfMDY2/screen-0.jpg?h=355&fakeurl=1&type=.jpg" group-title="",RDS Social TV (720p) -https://stream.rdstv.radio/out/v1/ec85f72b87f04555aa41d616d5be41dc/index.m3u8 -#EXTINF:-1 tvg-id="ReggioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/60/Reggio_TV_logo.png" group-title="",ReggioTV (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/reggiotv/reggiotv/playlist.m3u8 -#EXTINF:-1 tvg-id="Rete4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/rete4-logo.png" group-title="",Rete 4 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(r4)/index.m3u8 -#EXTINF:-1 tvg-id="Rete55.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/z6SjRc2.jpg" group-title="",Rete 55 (720p) [Not 24/7] -https://stream.internet.one/Rete55_Live/index.m3u8 -#EXTINF:-1 tvg-id="ReteBiellaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/CzjqIz8.png" group-title="",Rete Biella TV (720p) [Not 24/7] -https://sb.top-ix.org/retebiella/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="ReteOro.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/rHLJNLR.jpg" group-title="",Rete Oro (720p) [Not 24/7] -https://5926fc9c7c5b2.streamlock.net/9094/9094/playlist.m3u8 -#EXTINF:-1 tvg-id="Retemia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/3M5wGVg.png" group-title="",Retemia (720p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Retemia/Retemia/playlist.m3u8 -#EXTINF:-1 tvg-id="RetesoleLazio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/vvVgZN2.png" group-title="",Retesole Lazio (240p) [Geo-blocked] -http://5c389faa13be3.streamlock.net:1935/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="Reteveneta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/d/df/Logo_Rete_Veneta.png" group-title="",Reteveneta (480p) -https://59d7d6f47d7fc.streamlock.net/reteveneta/reteveneta/playlist.m3u8 -#EXTINF:-1 tvg-id="RMKTVSciacca.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Pk5flAT.png" group-title="",RMK TV Sciacca (720p) [Not 24/7] -http://vod1.kronopress.com:1935/tmk_live/5123-CA5C-9EBE-428A/playlist.m3u8 -#EXTINF:-1 tvg-id="RTCTelecalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.telecalabria.it/logoRTCnew.jpg" group-title="",RTC Telecalabria (720p) [Not 24/7] -http://fl1.mediastreaming.it:1935/calabriachannel/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTCTelecalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/IZtIFM2.png" group-title="",RTC Telecalabria (720p) [Not 24/7] -https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL1025.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/7Ep1zt8.jpg" group-title="Music",RTL 102.5 (432p) [Offline] -https://rtl-video1-stream.thron.com/live-video/video1/ngrp:video1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL1025BEST.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/E4G6PiA.png" group-title="",RTL 102.5 BEST (432p) [Offline] -https://rtl-video4-stream.thron.com/live-video/video4/ngrp:video4/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/8/86/Logo_Radio_Televisione_Peloritana.svg/1200px-Logo_Radio_Televisione_Peloritana.svg.png" group-title="",RTP (404p) -https://flash2.xdevel.com/rtptv/rtptv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTTRTrento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9houwTS.png" group-title="",RTTR Trento (720p) -https://5f204aff97bee.streamlock.net/RTTRlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SardegnaUno.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.sardegna1.tv/wp-content/uploads/2015/07/logo.png" group-title="",Sardegna Uno (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/sardegnauno/sardegnauno/playlist.m3u8 -#EXTINF:-1 tvg-id="SenatoTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/u7wlwXg.png" group-title="",Senato TV (1080p) -https://senato-live.morescreens.com/SENATO_1_001/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/RPXusvS.png" group-title="",Sophia TV (720p) -https://www.onairport.live/sophiatv-it-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Sportitalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sportitaliahd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Sportitalia24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia 24 (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:silive24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SportitaliaMotori.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia Motori (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:simotori.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SportitaliaSolocalcio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia Solocalcio (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sisolocalcio.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Stereo5TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/HnrRo2k.jpg" group-title="",Stereo 5 TV (720p) -https://stream1.aswifi.it/stereo5/live/index.m3u8 -#EXTINF:-1 tvg-id="Studio100Puglia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Logoicona.png/200px-Logoicona.png" group-title="",Studio 100 Puglia (480p) -http://wms.shared.streamshow.it:1935/studio100ta/studio100ta/playlist.m3u8 -#EXTINF:-1 tvg-id="Super.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Live-TV_Blue.png?raw=true" group-title="",Super (480p) [Not 24/7] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@357018/master.m3u8 -#EXTINF:-1 tvg-id="SuperJTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super J TV (720p) [Timeout] -https://54627d4fc5996.streamlock.net/SuperJtv/SuperJtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperJTVTeramo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/H3uItqg.png" group-title="",Super J TV Teramo (720p) [Not 24/7] -http://uk4.streamingpulse.com:1935/SuperJtv/SuperJtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV (720p) -http://wms.shared.streamshow.it/supertv/mp4:supertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV Brescia (720p) -http://wms.shared.streamshow.it:1935/supertv/supertv/live.m3u8 -#EXTINF:-1 tvg-id="SuperTVOristano.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV Oristano (720p) [Not 24/7] -http://193.70.81.40:1935/supertvoristano/supertvoristano/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperSixLombardia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",SuperSix Lombardia (720p) -https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleAbruzzo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/XymK2PR.png" group-title="",Tele Abruzzo (336p) -http://uk4.streamingpulse.com:1935/TeleabruzzoTV/TeleabruzzoTV/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleLiguriaSud.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Liguria Sud (224p) [Not 24/7] -https://live.teleliguriasud.it/hls/tls/index.m3u8 -#EXTINF:-1 tvg-id="TelePavia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/3oWB2li.jpg" group-title="",Tele Pavia (720p) -http://wms.shared.streamshow.it/telepavia/telepavia/playlist.m3u8 -#EXTINF:-1 tvg-id="TelePegasoCatania.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/alKlcEp.png" group-title="",Tele Pegaso Catania (404p) [Not 24/7] -https://flash2.xdevel.com/telepegasocanale812/telepegasocanale812/playlist.m3u8 -#EXTINF:-1 tvg-id="TelePordenone.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Pordenone (576p) [Not 24/7] -http://213.187.12.18/telepn/telepn.m3u8 -#EXTINF:-1 tvg-id="TeleQuattro.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.saladellamemoriaheysel.it/IMMAGINI/Logo_Tele_Quattro.png" group-title="",Tele Quattro (480p) [Not 24/7] -http://wms.shared.streamshow.it/telequattro/telequattro/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleRadioSciacca.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Radio Sciacca (240p) [Not 24/7] -http://5cbd3bc28341f.streamlock.net:1935/trs_live/teleradiosciacca-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSondrioNews.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",Tele Sondrio News (480p) [Not 24/7] -https://59d8c0cee6f3d.streamlock.net/tsn/tsn_mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleArena.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleArena (480p) -http://5ce9406b73c33.streamlock.net/TeleArena/TeleArena.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Telebelluno.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telebelluno (720p) -https://live.mariatvcdn.com/telebelluno/a3b80388da9801906adf885282e73bc3.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="TeleBoario.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleBoario (720p) [Not 24/7] -http://flash7.streaming.xdevel.com/teleboario/teleboario/playlist.m3u8 -#EXTINF:-1 tvg-id="Telechiara.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telechiara (720p) -http://fms.tvavicenza.it:1935/telechiara/diretta/playlist.m3u8 -#EXTINF:-1 tvg-id="TelecolorLombardia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.postimg.cc/G2s6Zncv/telecolor.png" group-title="",Telecolor Lombardia (1080p) [Not 24/7] -https://1aadf145546f475282c5b4e658c0ac4b.msvdn.net/live/324149/hlbAWtl/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecupole.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telecupole (540p) [Offline] -https://live.livevideosolution.it/telecupole/dd6d85e5b7452f7b85a099509292b421.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefoggia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ImvO2rV.png" group-title="",Telefoggia (480p) [Not 24/7] -http://wms.shared.streamshow.it/telefoggia/mp4:telefoggia/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefoggia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ImvO2rV.png" group-title="",Telefoggia (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/telefoggia/telefoggia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleFormula.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/jR6taXt.png" group-title="",TeleFormula (720p) [Not 24/7] -https://wms60.tecnoxia.com/radiof/abr_radioftele/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefriuli.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://beyondprod.it/images/telefriuli_positivo.jpg" group-title="",Telefriuli (720p) [Not 24/7] -https://streamtechglobal.akamaized.net/hls/live/2024685/telefriuli/Group01/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleGenova.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleGenova (404p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Telegenova/Telegenova/playlist.m3u8 -#EXTINF:-1 tvg-id="Telegranda.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telegranda (720p) [Not 24/7] -http://live.sloode.com:1935/telegranda_live/C2AD-0664-DC75-4744/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleliberta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Teleliberta (720p) [Not 24/7] -http://api.new.livestream.com/accounts/17114188/events/4902226/live.m3u8 -#EXTINF:-1 tvg-id="TeleMia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://1.bp.blogspot.com/-8gAN3pOqt7M/UK8We1rH1yI/AAAAAAAADjU/bya6H2ZbcJk/s1600/logo-telemia.png" group-title="",TeleMia (576p) -https://playerssl.telemia.tv/fileadmin/hls/TelemiaHD/telemia85_mediachunks.m3u8 -#EXTINF:-1 tvg-id="TeleMiaExtra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleMia Extra (720p) [Not 24/7] -https://playerssl.telemia.tv/fileadmin/hls/TelemiaExtra/stream.m3u8 -#EXTINF:-1 tvg-id="Telemolise.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/aTs88Es.png" group-title="",Telemolise (1080p) -http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemolise.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/aTs88Es.png" group-title="",Telemolise (406p) [Offline] -http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream_tlm/playlist.m3u8 -#EXTINF:-1 tvg-id="teleMonteneve.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.osm1816.it/site/wp-content/uploads/2015/05/Logo_09_teleMonteneve1.jpg" group-title="",teleMonteneve (480p) [Not 24/7] -http://wms.shared.streamshow.it:1935/telemonteneve/telemonteneve/live.m3u8 -#EXTINF:-1 tvg-id="Telenord.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://telenord.it/assets/images/logo.png" group-title="",Telenord (576p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Telenord/Telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] -https://59d8c0cee6f3d.streamlock.net/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] -https://wms.shared.streamshow.it/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="telePAVIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/66/LOGO_telePAVIA.png" group-title="",telePAVIA (720p) -http://wms.shared.streamshow.it:1935/telepavia/telepavia/live.m3u8 -#EXTINF:-1 tvg-id="telePAVIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/66/LOGO_telePAVIA.png" group-title="",telePAVIA (720p) -http://wms.shared.streamshow.it/telepavia/mp4:telepavia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleRent7Gold.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleRent 7Gold (720p) [Offline] -https://stream2.xdevel.com/video0s86-21/stream/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="TelesudTrapani.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telesud Trapani (720p) [Not 24/7] -http://5cbd3bc28341f.streamlock.net:1935/telesud/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TelesudTrapani.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telesud Trapani (720p) [Not 24/7] -https://5cbd3bc28341f.streamlock.net:444/telesud/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTerni.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/U1BjkEl.png" group-title="",TeleTerni (720p) [Not 24/7] -https://diretta.teleterni.it/live/stream_src.m3u8 -#EXTINF:-1 tvg-id="Teletricolore.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.teletricolore.it/wp-content/uploads/2018/02/logo.png" group-title="",Teletricolore (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/rs2/rs2/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTusciaSabina2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/K6tTjJC.png" group-title="",TeleTusciaSabina 2000 (576p) [Not 24/7] -http://ts2000tv.streaming.nextware.it:8081/ts2000tv/ts2000tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleVenezia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/RG4o4Ni.png" group-title="",TeleVenezia (576p) -https://59d8c0cee6f3d.streamlock.net/televenezia/televenezia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleVideoAgrigento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/crMQmn4.png" group-title="",TeleVideo Agrigento (480p) -https://59d7d6f47d7fc.streamlock.net/tva/tva/playlist.m3u8 -#EXTINF:-1 tvg-id="TevereTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.teveretv.it/Images/Icone/logo.png" group-title="",Tevere TV (576p) [Not 24/7] -https://5926fc9c7c5b2.streamlock.net/9098/9098/playlist.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) -http://flash5.streaming.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) -https://flash2.xdevel.com/tgnorba_24/tgnorba_24_source.stream/index.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) -https://flash5.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGCom24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/tgcom24-logo.png" group-title="News",TGCom 24 [Geo-blocked] -https://live2-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kf)/index.m3u8 -#EXTINF:-1 tvg-id="TLNTeleLazioNord.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.telelazionord.it/wp-content/uploads/2019/02/TLN.png" group-title="",TLN Tele Lazio Nord (720p) [Not 24/7] -http://tln.srfms.com:1935/TLN/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TopCrime.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://latina.biz/wp-content/uploads/2020/04/top-crime.jpg" group-title="",Top Crime [Geo-blocked] -https://live3-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(lt)/index.m3u8 -#EXTINF:-1 tvg-id="TrentinoTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/2paGMKT.jpg" group-title="",Trentino TV (720p) [Not 24/7] -https://5e73cf528f404.streamlock.net/TrentinoTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TRMh24Basilicata.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/JEw9RCq.png" group-title="",TRM h24 Basilicata (480p) [Not 24/7] -http://w1.streamingmedia.it:1935/trmh24/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TSNTeleSondrioNews.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",TSN Tele Sondrio News (480p) [Not 24/7] -http://wms.shared.streamshow.it/tsn/tsn_mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV 2000 (360p) [Not 24/7] -http://cld04wz.tv2000.it/tv2000_main.m3u8 -#EXTINF:-1 tvg-id="TV2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV 2000 (540p) [Offline] -http://mi1.wz.tv2000.it/mirror/High/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuiModena.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/154AQjl.png" group-title="",TV Qui (Modena) (480p) -https://59d7d6f47d7fc.streamlock.net/tvqui/tvqui/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSei.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV Sei (576p) [Not 24/7] -http://185.202.128.1:1935/Tv6Stream/tv6TV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSei.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV Sei (406p) [Not 24/7] -http://185.202.128.1:1935/Tv6Stream/tv6TV.stream_tlm/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUNO.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV UNO (240p) -http://ftp.tiscali.it/francescovernata/TVUNO/monoscopioTvUNOint-1.wmv -#EXTINF:-1 tvg-id="TV7Azzurra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV7 Azzurra (270p) [Not 24/7] -http://217.61.26.46:8080/hls/azzurra.m3u8 -#EXTINF:-1 tvg-id="TV7Benevento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.neikos.it/wp-content/uploads/2014/04/logo_tvsette.png" group-title="",TV7 Benevento (288p) [Not 24/7] -http://streaming.senecadot.com/live/flv:tv7.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7News.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",TV7 News (270p) [Not 24/7] -http://217.61.26.46:8080/hls/news.m3u8 -#EXTINF:-1 tvg-id="TV7Triveneta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ndFoo4V.png" group-title="",TV7 Triveneta (270p) [Not 24/7] -http://217.61.26.46:8080/hls/triveneta.m3u8 -#EXTINF:-1 tvg-id="TVAVicenza.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0f/TVA_Vicenza_-_Logo_2018.svg/675px-TVA_Vicenza_-_Logo_2018.svg.png" group-title="",TVA (Vicenza) (720p) -http://fms.tvavicenza.it:1935/live/diretta_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVL.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.tvl.it/photos/big-thumbs/logo-tvl.png" group-title="",TVL (720p) [Not 24/7] -https://live.mariatvcdn.com/mariatvcdn/70564e1c6884c007c76f0c128d679eed.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRS.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn.firstonetv.eu/images/logos/it/TVRS.png" group-title="",TVRS (576p) [Not 24/7] -http://wms.shared.streamshow.it:1935/tvrs/tvrs/live.m3u8 -#EXTINF:-1 tvg-id="UmbriaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Umbria TV (576p) [Not 24/7] -https://umbriatv.stream.rubidia.it:8083/live/umbriatv/playlist.m3u8 -#EXTINF:-1 tvg-id="VeraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Vera TV (1080p) [Not 24/7] -http://wms.shared.streamshow.it/veratv/mp4:veratv/playlist.m3u8 -#EXTINF:-1 tvg-id="VeraTVMarche.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kXDdx0h.png" group-title="",Vera TV (Marche) (1080p) [Not 24/7] -http://wms.shared.streamshow.it/veratv/veratv/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoBresciaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Video Brescia TV (720p) [Not 24/7] -http://wms.shared.streamshow.it/videobrescia/videobrescia/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoCalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/QPISrvr.png" group-title="",Video Calabria (480p) [Not 24/7] -http://wms.shared.streamshow.it/videocalabria/videocalabria/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoRola.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/MWBk2hQ.jpg" group-title="Music",Video Rola (1080p) -https://d3b2epqdk0p7vd.cloudfront.net/out/v1/8a448b5e16384af4a3c8146a7b049c32/index.m3u8 -#EXTINF:-1 tvg-id="VideolinaSardegna.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.dinamobasket.com/sites/default/files/videolina2012_tr.png" group-title="",Videolina (Sardegna) (404p) [Not 24/7] -http://livestreaming.videolina.it/live/Videolina/playlist.m3u8 -#EXTINF:-1 tvg-id="Videonovara.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/AJAYgyN.png" group-title="",Videonovara (576p) [Not 24/7] -https://sb.top-ix.org/avtv04/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="VideostarCanale193.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kuisqG7.jpg" group-title="",Videostar Canale 193 (480p) [Not 24/7] -https://5cbd3bc28341f.streamlock.net:444/videostar_live/videostar/playlist.m3u8 -#EXTINF:-1 tvg-id="VirginRadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Virgin Radio TV (576p) [Not 24/7] -https://live2-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ew)/index.m3u8 -#EXTINF:-1 tvg-id="VisualRadio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Visual Radio (576p) [Not 24/7] -http://wms.shared.streamshow.it:1935/visualradio/visualradio/live.m3u8 -#EXTINF:-1 tvg-id="Vuemme.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Vuemme (480p) -https://5db313b643fd8.streamlock.net/Vuemme/Vuemme/playlist.m3u8 -#EXTINF:-1 tvg-id="WineChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Live-TV_Blue.png?raw=true" group-title="",Wine Channel (720p) [Offline] -http://212.43.97.35:1935/winechannel/winechannel/playlist.m3u8 -#EXTINF:-1 tvg-id="YviiTVSicilia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/NaEgFUJ.png" group-title="",Yvii TV Sicilia (1080p) [Not 24/7] -https://yviistreamer.kernel.online/hls/yviitv.m3u8 diff --git a/channels/it_samsung.m3u b/channels/it_samsung.m3u deleted file mode 100644 index 14c8459fc..000000000 --- a/channels/it_samsung.m3u +++ /dev/null @@ -1,69 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AmuseAnimation.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/H7GtB0T.jpg" group-title="",Amuse Animation (720p) [Offline] -https://amuse-amuseanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AtresSeries.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/g5iBSq4.png" group-title="",Atres Series (720p) [Offline] -https://atresmedia-atreseries-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BigName.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hChduSn.png" group-title="",Big Name (720p) [Offline] -https://alchimie-big-names-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BizzarroMovies.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/W9zQhyr.jpg" group-title="Movies",Bizzarro Movies (720p) [Offline] -https://minerva-bizzarromovies-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe UHD (2160p) -https://bloomberg-bloombergtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BrindiamoChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9eJ3dVa.jpg" group-title="",Brindiamo Channel (720p) [Offline] -https://okproductions-brindiamochannel-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanaleEuropa.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Canale Europa (720p) -https://canaleeuropa-canaleeuropa-1-it.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CGEntertainment.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/HB0LSjW.jpg" group-title="",CG Entertainment (720p) [Offline] -https://cgentertainment-cgtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CinemaSegreto.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/E9PCiwM.png" group-title="",Cinema Segreto (720p) [Offline] -https://minerva-cinemasegreto-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicalHarmony.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/JQaZblm.jpg" group-title="",Classical Harmony (720p) [Offline] -https://alchimie-classical-harmony-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) -https://mmm-ducktv-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsItaliano.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Italiano (720p) -https://rakuten-euronews-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsItalianoviaAlchimie.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Italiano via Alchimie (720p) [Offline] -https://alchimie-euronews-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVItaly.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (Italy) (1080p) -https://fashiontv-fashiontv-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/DFjN26b.jpg" group-title="",Humanity (720p) [Offline] -https://alchimie-humanity-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] -https://alchimie-mmatv-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MondoKids.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/AeHlXnK.jpg" group-title="Kids",Mondo Kids (720p) [Offline] -https://mondotv-mondotvkids-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] -https://alchimie-moods-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MotorTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/muS5HF5.jpg" group-title="",Motor TV (720p) [Offline] -https://motorsportnetwork-motor1tv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] -https://alchimie-mysurf-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesItaly.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Italy) (720p) [Offline] -https://rakuten-documentaries-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies Italy (720p) [Offline] -https://rakuten-actionmovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies Italy (720p) [Offline] -https://rakuten-comedymovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/oMXfdkV.png" group-title="Movies",Rakuten TV Drama Italy (720p) [Offline] -https://rakuten-tvshows-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies Italy (720p) [Offline] -https://rakuten-family-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Rakuten TV Spotlight Italy (720p) [Offline] -https://rakuten-spotlight-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) -https://sofytv-samsungit.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportOutdoortv.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Outdoor",SportOutdoor.tv (720p) [Offline] -https://gto2000-sportoutdoortv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-4-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (720p) [Offline] -https://dhx-teletubbies-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveItaly.us" tvg-country="IT" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Italy (720p) [Offline] -https://the-pet-collective-international-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="YamatoAnimation.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Yamato Animation (720p) [Offline] -https://yamatovideo-yamatoanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/jm.m3u b/channels/jm.m3u deleted file mode 100644 index 994e5dfef..000000000 --- a/channels/jm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="JamaicaTV.jm" tvg-country="JM" tvg-language="English" tvg-logo="" group-title="",Jamaica Online TV (1080p) [Not 24/7] -https://vse2-sa-all4.secdn.net/tvstartup11-channel/live/mp4:jotvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsMax.jm" tvg-country="JM" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/49559/s49559_h3_aa.png" group-title="Sports",SportsMax (720p) [Timeout] -http://cdn.tvmatic.net/sport.m3u8 diff --git a/channels/jo.m3u b/channels/jo.m3u deleted file mode 100644 index db8494213..000000000 --- a/channels/jo.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlMamlakaTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6njRt6c.png" group-title="General",Al Mamlaka TV (1080p) -https://almamlka-live.ercdn.net/almamlka/almamlka.m3u8 -#EXTINF:-1 tvg-id="AmmanTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vkqYIO4.jpg" group-title="General",Amman TV (720p) -https://ammantv.c.s73cdn.net/23153d43-375a-472a-bc5f-9827582b5d22/elemental/live/master.m3u8 -#EXTINF:-1 tvg-id="FajerTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="",Fajer TV (720p) -http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="JawharaFM.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://www.jawharafm.net/ar/static/fr/image/png/logo-jfm.png" group-title="Music",Jawhara FM (720p) [Not 24/7] -http://streaming.toutech.net:1935/live/mp4:jawharafm.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="JordanSport.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://static.jrtv.gov.jo/resize-width/380/content/y/B5/2/Poster.png" group-title="Sports",Jordan Sport [Offline] -https://jrtv-live.ercdn.net/jordansporthd/jordansporthd.m3u8 -#EXTINF:-1 tvg-id="Jordan TV" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://static.jrtv.gov.jo/resize-width/380/content/x/Mp/1/Poster.png" group-title="General",Jordan TV (1080p) -https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8 -#EXTINF:-1 tvg-id="MelodyFM.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://melody-fm.com/img/Logo.png" group-title="Music",Melody FM Jordan (720p) [Not 24/7] -https://cdn3.wowza.com/1/ZFBldUlPNjRBRDZM/ZW90V2ZW/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NojoumTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6ttWNu0.jpg" group-title="Music",Nojoum TV (720p) -https://nojoumhls.wns.live/hls/stream.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/RadioFann/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: Control Studio (220p) -http://188.247.86.66/RadioFann/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/RadioFann/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/MixFM/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: Control Studio (180p) [Not 24/7] -http://188.247.86.66/MixFM/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/MixFM/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: City View (180p) -http://188.247.86.66/RotanaRadio/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: Control Studio (180p) -http://188.247.86.66/RotanaRadio/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/RotanaRadio/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaTarabJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Rotana Tarab Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/RadioFann/Audio32/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaTarabJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Rotana Tarab Jordan: Control Studio (180p) [Not 24/7] -http://188.247.86.66/RotanaRadio/Audio32/playlist.m3u8 -#EXTINF:-1 tvg-id="RoyaTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Sa2nBTP.png" group-title="General",Roya TV (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_roya/index.m3u8 -#EXTINF:-1 tvg-id="ToyorAlJannah.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/bNTHzP5g/toyor-al-janah.png" group-title="Kids",Toyor Al-Jannah (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/toyorlive/live diff --git a/channels/jp.m3u b/channels/jp.m3u deleted file mode 100644 index 1284ec3e2..000000000 --- a/channels/jp.m3u +++ /dev/null @@ -1,201 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (720p) -http://50.7.74.29:8880/hls/j00026/index.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00026/index.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Indonesian" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h02/01.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Indonesian" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h144/01.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Thai" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Thai Subs) [Offline] -http://27.254.130.62/feed/LC38/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Vietnamese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Animation",Animax Japan (Vietnamese Subs) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://livecdn.fptplay.net/hda3/animaxport_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (720p) [Not 24/7] -https://sub2.neetball.net/live/neet.m3u8 -#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00052/index.m3u8 -#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00052/index.m3u8 -#EXTINF:-1 tvg-id="BSAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00048/index.m3u8 -#EXTINF:-1 tvg-id="BSAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00048/index.m3u8 -#EXTINF:-1 tvg-id="BSFujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00049/index.m3u8 -#EXTINF:-1 tvg-id="BSFujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00049/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00047/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00047/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00005/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (540p) [Offline] -http://50.7.74.29:8880/hls/j00005/index.m3u8 -#EXTINF:-1 tvg-id="BSTVTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00050/index.m3u8 -#EXTINF:-1 tvg-id="BSTVTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00050/index.m3u8 -#EXTINF:-1 tvg-id="BSTBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS-TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00051/index.m3u8 -#EXTINF:-1 tvg-id="BSTBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS-TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00051/index.m3u8 -#EXTINF:-1 tvg-id="CGNTVJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/rXrSsiI.jpg" group-title="Religious",CGNTV Japan (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_jp/playlist.m3u8 -#EXTINF:-1 tvg-id="FamilyGekijo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00011/index.m3u8 -#EXTINF:-1 tvg-id="FamilyGekijo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00011/index.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00010/index.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00010/index.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (540p) [Not 24/7] -https://fujitv1.mov3.co/hls/fujitv.m3u8 -#EXTINF:-1 tvg-id="GAORA.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",GAORA (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00045/index.m3u8 -#EXTINF:-1 tvg-id="GAORA.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",GAORA (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00045/index.m3u8 -#EXTINF:-1 tvg-id="GSTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/8AM9fC8.jpg" group-title="Shop",GSTV (720p) -https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GTNTyphome.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/gFKvgAd.jpg" group-title="",GTN Typhome (English Subs) (720p) [Not 24/7] -https://hamada.gaki-no-tsukai.eu:2087/hls/test.m3u8 -#EXTINF:-1 tvg-id="GunmaTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gtv_logo_ja_01.svg/800px-Gtv_logo_ja_01.svg.png" group-title="Local",Gunma TV (720p) -https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8 -#EXTINF:-1 tvg-id="HiroshimaWeatherInformation.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/ZoYNgdd.png" group-title="Weather",Hiroshima Weather Information [Offline] -https://hiroshima-tv-live.hls.wselive.stream.ne.jp/hiroshima-tv-live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="JSports1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00042/index.m3u8 -#EXTINF:-1 tvg-id="JSports1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00042/index.m3u8 -#EXTINF:-1 tvg-id="JSports2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 2 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00041/index.m3u8 -#EXTINF:-1 tvg-id="JSports2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 2 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00041/index.m3u8 -#EXTINF:-1 tvg-id="JSports3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00040/index.m3u8 -#EXTINF:-1 tvg-id="JSports3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00040/index.m3u8 -#EXTINF:-1 tvg-id="JSports4.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 4 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00039/index.m3u8 -#EXTINF:-1 tvg-id="JSports4.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 4 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00039/index.m3u8 -#EXTINF:-1 tvg-id="KansaiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",Kansai TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00006/index.m3u8 -#EXTINF:-1 tvg-id="KansaiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",Kansai TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00006/index.m3u8 -#EXTINF:-1 tvg-id="MBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00038/index.m3u8 -#EXTINF:-1 tvg-id="MBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00038/index.m3u8 -#EXTINF:-1 tvg-id="NewJapanProWrestlingWorld.jp" tvg-country="JP" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/1/1c/New_Japan_Pro_Wrestling_Logo_2.svg/480px-New_Japan_Pro_Wrestling_Logo_2.svg.png" group-title="Sports",New Japan Pro Wrestling World (540p) -https://aka-amd-njpwworld-hls-enlive.akamaized.net/hls/video/njpw_en/njpw_en_channel01_3/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK + NHE (Sub Audio) (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhkg2.m3u8 -#EXTINF:-1 tvg-id="NHKEducational.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK + NHKE (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhke.m3u8 -#EXTINF:-1 tvg-id="NHKEducational.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK + NHKE (Sub Audio) (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhke2.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK + NHKG (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhkg.m3u8 -#EXTINF:-1 tvg-id="NHKBS1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BS1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00037/index.m3u8 -#EXTINF:-1 tvg-id="NHKBS1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BS1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00037/index.m3u8 -#EXTINF:-1 tvg-id="NHKBSPremium.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BSP (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00036/index.m3u8 -#EXTINF:-1 tvg-id="NHKBSPremium.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BSP (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00036/index.m3u8 -#EXTINF:-1 tvg-id="NHKChineseVision.jp" tvg-country="JP" tvg-language="Chinese" tvg-logo="https://i.imgur.com/4yRulEZ.png" group-title="News",NHK Chinese Vision (720p) -https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKChineseVision.jp" tvg-country="JP" tvg-language="Chinese" tvg-logo="https://i.imgur.com/4yRulEZ.png" group-title="News",NHK Chinese Vision (720p) -https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00034/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00035/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00034/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00035/index.m3u8 -#EXTINF:-1 tvg-id="NHKGOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00032/index.m3u8 -#EXTINF:-1 tvg-id="NHKGOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00032/index.m3u8 -#EXTINF:-1 tvg-id="NHKGTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00033/index.m3u8 -#EXTINF:-1 tvg-id="NHKGTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00033/index.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK General TV (540p) [Not 24/7] -https://nhk1.mov3.co/hls/nhk.m3u8 -#EXTINF:-1 tvg-id="NHKWorld.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www3.nhk.or.jp/nhkworld/common/site_images/nw_webapp_1500x1500.png" group-title="",NHK World (720p) -https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/sycc-live/zh/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/SQISXoD.jpg" group-title="News",NHK World Japan (1080p) -https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/SQISXoD.jpg" group-title="News",NHK World Japan (720p) [Not 24/7] -https://b-nhkwlive-xjp.webcdn.stream.ne.jp/hls/live/2003458-b/nhkwlive-xjp-en/index.m3u8 -#EXTINF:-1 tvg-id="NHKHuaYuShiJie.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="http://www.tvyan.com/uploads/dianshi/nhkhuayu.jpg" group-title="",NHK华语视界 (360p) -https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00004/index.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00004/index.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (540p) [Not 24/7] -https://ntv1.mov3.co/hls/ntv.m3u8 -#EXTINF:-1 tvg-id="NTVNews24.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/Ya4yHpC.jpg" group-title="News",NTV News24 (480p) -https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 -#EXTINF:-1 tvg-id="ShopChannel.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/3K36JEA.jpg" group-title="Shop",Shop Channel (1080p) [Not 24/7] -https://stream3.shopch.jp/HLS/master.m3u8 -#EXTINF:-1 tvg-id="Star1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00019/index.m3u8 -#EXTINF:-1 tvg-id="Star1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00019/index.m3u8 -#EXTINF:-1 tvg-id="Star2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 2 (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00018/index.m3u8 -#EXTINF:-1 tvg-id="Star2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 2 (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00018/index.m3u8 -#EXTINF:-1 tvg-id="Star3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00017/index.m3u8 -#EXTINF:-1 tvg-id="Star3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00017/index.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00031/index.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00031/index.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (540p) [Not 24/7] -https://tbs.mov3.co/hls/tbs.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) -https://movie.mcas.jp/mcas/mx_live_2/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) -https://movie.mcas.jp/mcas/mx1_2/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (360p) -https://movie.mcas.jp/mcas/smil:mx1_prod.smil/master.m3u8 -#EXTINF:-1 tvg-id="JOMXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00030/index.m3u8 -#EXTINF:-1 tvg-id="JOMXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00030/index.m3u8 -#EXTINF:-1 tvg-id="TokyoMX2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX2 (720p) -https://movie.mcas.jp/mcas/mx2_2/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX2 (360p) -https://movie.mcas.jp/mcas/smil:mx2_prod.smil/master.m3u8 -#EXTINF:-1 tvg-id="TVAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00014/index.m3u8 -#EXTINF:-1 tvg-id="TVAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00014/index.m3u8 -#EXTINF:-1 tvg-id="TVOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00013/index.m3u8 -#EXTINF:-1 tvg-id="TVOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00013/index.m3u8 -#EXTINF:-1 tvg-id="JOTXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/vgEnHX6.png" group-title="Local",TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00012/index.m3u8 -#EXTINF:-1 tvg-id="JOAXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/vgEnHX6.png" group-title="Local",TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00012/index.m3u8 -#EXTINF:-1 tvg-id="WakuWakuJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.dialog.lk/dialogdocroot/content/images/channel-highlights/waku-waku-large.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36" group-title="",WakuWaku Japan [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36 -https://liveanevia.mncnow.id/live/eds/WakuWakuJapan/sa_dash_vmx/WakuWakuJapan.mpd -#EXTINF:-1 tvg-id="WeatherChanneluezaniyusuBSWNI.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Weather Channel (ウェザーニュース) (BS | WNI) (720p) -http://movie.mcas.jp/mcas/wn1_2/master.m3u8 -#EXTINF:-1 tvg-id="WeatherNews.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://dbbovgtu2bg0x.cloudfront.net/uploads/program/main_image/749853303/app_app_wether_news.png" group-title="Weather",Weather News (720p) -https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8 diff --git a/channels/ke.m3u b/channels/ke.m3u deleted file mode 100644 index 4fafa18e1..000000000 --- a/channels/ke.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CitizenTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/05/Webp.net-resizeimage.png" group-title="General",Citizen TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/kenyacitizentv/live -#EXTINF:-1 tvg-id="EbruTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/download-1.jpg" group-title="General",Ebru TV (360p) [Not 24/7] -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 -#EXTINF:-1 tvg-id="GBSTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/GBS-TV-1.jpg" group-title="General",GBS TV (720p) [Not 24/7] -https://goliveafrica.media:9998/live/6045ccbac3484/index.m3u8 -#EXTINF:-1 tvg-id="K24.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/K24-1.jpg" group-title="General",K24 (480p) [Not 24/7] -https://5f4db0f94b000.streamlock.net/k24/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="KamemeTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/ke-kameme-tv-1383.jpg" group-title="General",Kameme TV (184p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6ol8sj -#EXTINF:-1 tvg-id="KassTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/kasstvlogo.png" group-title="General",Kass TV (540p) [Not 24/7] -https://goliveafrica.media:9998/live/60755313b36db/index.m3u8 -#EXTINF:-1 tvg-id="KBC.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/KBC-1.jpg" group-title="General",KBC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x74211t -#EXTINF:-1 tvg-id="KTNNews.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/unnamed.jpg" group-title="News",KTN News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/standardgroupkenya/live -#EXTINF:-1 tvg-id="NTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/NTV-1.jpg" group-title="General",NTV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6shkab -#EXTINF:-1 tvg-id="SwitchTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/Switch-TV-1.jpg" group-title="General",Switch TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x7sxle3 -#EXTINF:-1 tvg-id="TV47.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://tv47.co.ke/wp-content/uploads/2020/10/tv-47-logo-600-e1617870103726.png" group-title="General",TV47 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tv47kenya/ -#EXTINF:-1 tvg-id="UTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/UTV-1.jpg" group-title="General",UTV (240p) [Not 24/7] -https://goliveafrica.media:9998/live/6049f726546e1/index.m3u8 diff --git a/channels/kg.m3u b/channels/kg.m3u deleted file mode 100644 index 20b3aef72..000000000 --- a/channels/kg.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV1KG.kg" tvg-country="KG" tvg-language="Russian" tvg-logo="" group-title="",TV1 KG (1080p) -http://212.2.225.30:1935/live/site.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Balastan.kg" tvg-country="KG" tvg-language="Kyrgyz;Russian" tvg-logo="http://www.ktrk.kg/images/channels/balastan_white_notext.png" group-title="Kids",Баластан (576p) [Not 24/7] -http://onlinetv.ktrk.kg:1935/live/myStream6/playlist.m3u8 -#EXTINF:-1 tvg-id="LyubimyyHDTNT4.kg" tvg-country="KG" tvg-language="Russian" tvg-logo="" group-title="",Любимый HD/ТНТ4 (576p) -http://92.245.103.126:1935/live/live.stream/playlist.m3u8 diff --git a/channels/kh.m3u b/channels/kh.m3u deleted file mode 100644 index df51eaaed..000000000 --- a/channels/kh.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BayonTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/2jbulL2.jpg" group-title="News",Bayon TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/bayontv_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BayonTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/2jbulL2.jpg" group-title="News",Bayon TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/bayontv1_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FreshNews.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="News",Fresh News (720p) -http://167.99.65.12:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="FreshNewsTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/6p0TK7e.png" group-title="News",Fresh News TV (720p) -http://167.99.65.12:1935/live/ngrp:myStream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="PNN.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/1xZmAvQ.jpg" group-title="",PNN (360p) [Not 24/7] -http://203.176.130.123:8989/live/pnn_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SEATV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",SEA TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/seatv_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TV9.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/KGbDcg1.jpg" group-title="",TV9 (360p) [Not 24/7] -http://203.176.130.123:8989/live/ctv9_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVK.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK (360p) [Not 24/7] -http://203.176.130.123:8989/live/tvk_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKCamboya.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK Camboya (720p) -https://livefta.malimarcdn.com/tvkedge/tvk2.stream/master.m3u8 -#EXTINF:-1 tvg-id="TVKCamboya.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK Camboya (720p) -https://livefta.malimarcdn.com/tvkedge/tvkhd.stream/master.m3u8 diff --git a/channels/kp.m3u b/channels/kp.m3u deleted file mode 100644 index 8a2ddc48d..000000000 --- a/channels/kp.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KCTV.kp" tvg-country="KP" tvg-language="Korean" tvg-logo="https://i.imgur.com/rEn31ub.png" group-title="",Korean Central Television (KCTV) (576p) -https://tv.nknews.org/tvdash/stream.mpd -#EXTINF:-1 tvg-id="KCTV.kp" tvg-country="KP" tvg-language="Korean" tvg-logo="https://i.imgur.com/rEn31ub.png" group-title="",Korean Central Television (KCTV) (810p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/kctv_elufa diff --git a/channels/kr.m3u b/channels/kr.m3u deleted file mode 100644 index 3e3057458..000000000 --- a/channels/kr.m3u +++ /dev/null @@ -1,117 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AniPlus.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",AniPlus (Malay subtitles) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h02/01.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) -http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) -http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) -http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) -http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/arirang_edge/index.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) -http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) -http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) -http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) [Not 24/7] -http://amdlive.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/.m3u8 -#EXTINF:-1 tvg-id="BBSBuddhistBroadcasting.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/i7uUG2m.png" group-title="",BBS Buddhist Broadcasting (1080p) [Not 24/7] -http://bbstv.clouducs.com:1935/bbstv-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CBS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/Iy0yBaM.jpg" group-title="General",CBS (1080p) -http://cbs-live.gscdn.com/cbs-live/cbs-live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CGNTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/SQI9PAz.png" group-title="Religious",CGNTV (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_kr01/playlist.m3u8 -#EXTINF:-1 tvg-id="CGNTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/SQI9PAz.png" group-title="Religious",CGNTV (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_kr02/playlist.m3u8 -#EXTINF:-1 tvg-id="CJBceongjubangsongSBSQingZhou.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.cjb.co.kr/home/images/layout/f_logo.gif" group-title="",CJB청주방송 (SBS 淸州) (540p) [Not 24/7] -http://1.222.207.80:1935/live/cjbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="CTSgidoggyoTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.bbsi.co.kr/HOME/img/common/imgLogo.png" group-title="",CTS기독교TV (720p) -https://d34t5yjz1ooymj.cloudfront.net/out/v1/875039d5eba0478fa8375a06b3aa5a37/index.m3u8 -#EXTINF:-1 tvg-id="EBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://global.ebs.co.kr/global/img/sub/Channels_ebs1.png" group-title="",EBS 1 (400p) -http://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/s1y2zoe.png" group-title="",EBS 1 (400p) -http://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBS2.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS 2 (400p) -http://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSe.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS e (400p) -http://ebsonair.ebs.co.kr/plus3familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSKIDS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://global.ebs.co.kr/global/img/sub/Channels_IPTV_04.png" group-title="Kids",EBS KIDS (400p) -http://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSPlus1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS+ 1 (400p) -http://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSPlus2.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS+ 2 (400p) -http://ebsonair.ebs.co.kr/plus2familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EdailyTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/UvRoc22.png" group-title="",Edaily TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Sv6O3Ux8ePVqorx8aOBMg/live -#EXTINF:-1 tvg-id="GCN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFb1QuujJWU3nuUMCNPhNiA/live -#EXTINF:-1 tvg-id="GCN24English.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 English (720p) [Not 24/7] -http://liveen24-manminglobal3.ktcdn.co.kr/liveen24/gcnus_high/playlist.m3u8 -#EXTINF:-1 tvg-id="GCN24Korean.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 Korean (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqGxkgVnPc7arUR7MdCi99g/live -#EXTINF:-1 tvg-id="GCN24Korean.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 Korean (480p) [Not 24/7] -http://liveko24-manminglobal3.ktcdn.co.kr/liveko24/gcnko_high/playlist.m3u8 -#EXTINF:-1 tvg-id="GugbangTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/f1tz5fg.png" group-title="",Gugbang TV (404p) [Not 24/7] -http://mediaworks.dema.mil.kr:1935/live_edge/cudo.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="JIBSSBS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://jibs.co.kr/resources/common/img/bottom_logo.png" group-title="",JIBS SBS (720p) [Not 24/7] -http://123.140.197.22/stream/1/play.m3u8 -#EXTINF:-1 tvg-id="KPlus.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/4DEUpdm.jpg" group-title="",K+ (576p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h08/index.m3u8 -#EXTINF:-1 tvg-id="KBCgwangjubangsongSBSGuangZhou.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.cjb.co.kr/home/images/layout/f_logo.gif" group-title="",KBC 광주방송 (SBS 光州) (1080p) -http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/KBS_1_logo.svg/langfr-220px-KBS_1_logo.svg.png" group-title="",KBS 1 (1080p) [Not 24/7] -http://121.130.210.101:9981/stream/channelid/637185705 -#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/b7uMB9T.png" group-title="",KBS LiveCam DokDo (540p) -http://kbs-dokdo.gscdn.com/dokdo_300/dokdo_300.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/b7uMB9T.png" group-title="",KBS LiveCam DokDo (540p) [Offline] -http://kbs-dokdo.gscdn.com/sec_kbshomepage_300/sec_kbshomepage_300.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSWorld.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/KBS.png" group-title="",KBS World (720p) -https://livecdn.fptplay.net/sdb/kbs_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KCTVgwangjuCH05.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.kctv.co.kr/img/index/top_logo.png" group-title="",KCTV 광주 CH05 (720p) [Not 24/7] -http://119.77.96.184:1935/chn05/chn05/playlist.m3u8 -#EXTINF:-1 tvg-id="MBC.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/672.png" group-title="",MBC (1080p) -http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCYeosu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/672.png" group-title="",MBC Yeosu (720p) [Not 24/7] -https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="MTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QMDDHd1.gif" group-title="",MTN (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClErHbdZKUnD1NyIUeQWvuQ/live -#EXTINF:-1 tvg-id="MTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QMDDHd1.gif" group-title="",MTN (720p) [Not 24/7] -http://183.110.27.87/mtnlive/720/playlist.m3u8 -#EXTINF:-1 tvg-id="NBSKoreaAgriculturalBroadcasting.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/loWf3B5.jpg" group-title="",NBS Korea Agricultural Broadcasting (720p) -https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="One.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",One (Indonesian Sub) (360p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h143/02.m3u8 -#EXTINF:-1 tvg-id="SBSKNN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/KNN_logo.svg/120px-KNN_logo.svg.png" group-title="",SBS KNN (450p) [Not 24/7] -http://211.220.195.200:1935/live/mp4:KnnTV.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TBCdaeguSBSDaQiu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.tbc.co.kr/tbc_common/images/sm12_ci.png" group-title="",TBC 대구 (SBS 大邱) (540p) [Geo-blocked] -http://221.157.125.239:1935/live/psike/playlist.m3u8 -#EXTINF:-1 tvg-id="TBSSeoul.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/wqlTcbI.png" group-title="",TBS Seoul (720p) -https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TJBdaejeonbangsongSBSDaTian.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/ko/8/8b/TJB_Logo.jpg" group-title="",TJB 대전방송 (SBS 大田) (720p) [Not 24/7] -http://1.245.74.5:1935/live/tv/.m3u8 -#EXTINF:-1 tvg-id="TVWorkNet.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/xLL7Sxm.png" group-title="",TVWorkNet (480p) -http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="YTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://static.epg.best/kr/YTN.kr.png" group-title="",YTN (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChlgI3UHCOnwUGzWzbJ3H5w/live -#EXTINF:-1 tvg-id="YTNDMB.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/fdFQonN.jpg" group-title="",YTN DMB [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC38IlqMxZ_YtFg3eSGmmJnQ/live -#EXTINF:-1 tvg-id="YTNSCIENCE.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/FIzME5L.jpg" group-title="Science",YTN SCIENCE (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZdBJIbJz0P9xyFipgOj1fA/live -#EXTINF:-1 tvg-id="gayoTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://gayotv.co.kr/image/logo.jpg" group-title="",가요TV (1080p) [Not 24/7] -http://gayotv.net:1935/live/gayotv/playlist.m3u8 -#EXTINF:-1 tvg-id="gugagbangsong.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.futurekorea.co.kr/news/photo/202001/127326_129561_5346.jpg" group-title="News",국악방송 (1080p) -http://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCDaegu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://dg.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2019/12/0df66e127a9d1c68d0d56dd7567a5b52943a71122c8fc5aecf792ff11fba3d93bb1cd98f1d1c9e2fd83a294d26e2d5f270b705711cc20b5bdaf39ed2188c5075.png" group-title="",대구 MBC (MBC Daegu) (480p) [Not 24/7] -https://5e04aba713813.streamlock.net/live/livetv/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCDaejeon.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://busan.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2018/12/6e1a8d912bd32dca479bbf74667f7caf0716dd4e358e61136cecb8ca29b5b99a46b47b1d42b4a487d582c6ad6132929ff20a4cb41b344da26694ca115f5ee90a.png" group-title="",대전MBC (MBC Daejeon) (720p) [Not 24/7] -https://5c482867a8b63.streamlock.net/live/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCJeju.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://jeju.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2019/06/2a42c0e8f353c0d091bd145d7384670af46a6cdf647b0d0be45f76a8faccf7ad0b144cbb6fe11b0ff81bd830478e8e5e8dc43ec1ce76bfead41eac377fcfbdc0.png" group-title="",제주 MBC (MBC Jeju) (352p) [Not 24/7] -https://5cf58a556f9b2.streamlock.net/live/tv_jejumbc/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCChuncheon.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://data1.chmbc.co.kr/2018/12/d0fba52ecd26cdc49a893b9af6d468561f88e70c58accae0c6e1718bd112efc69511ffd56f9c167d6e1b215c065f844f250b1fa6df470afb30abf5cdd0153016.png" group-title="",춘천MBC (MBC Chuncheon) (1080p) [Not 24/7] -https://5c74939c891dc.streamlock.net/live/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="hangugseongeobangsong.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.etv.go.kr/images/newimg/logo.png" group-title="",한국선거방송 (720p) -http://necgokr2-724.acs.wecandeo.com/ms/2528/724/index_1.m3u8 diff --git a/channels/kw.m3u b/channels/kw.m3u deleted file mode 100644 index 91ce08c30..000000000 --- a/channels/kw.m3u +++ /dev/null @@ -1,41 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlMaaliTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/l7zer94.png" group-title="Religious",Al Maali TV (1080p) -https://video1.getstreamhosting.com:1936/8484_1/8484_1/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMaaref.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://almaaref.ch/wp-content/uploads/2018/10/almaaref-logo-2.png" group-title="Religious",Al Maaref (350p) [Timeout] -https://5e74a9d684b2e.streamlock.net/liveTrans/ngrp:channel23_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ALRAI.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="" group-title="",Al Rai (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8779mb -#EXTINF:-1 tvg-id="AlSabah.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kKPppEz.png" group-title="News",Al Sabah (360p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/live/Al-Sabah_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="AlBawadi.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://ewsat.com/img/AL_BAWADI.png" group-title="",Al-Bawadi (360p) -https://gulfsat.cdn.easybroadcast.fr/live/Al-Bawadi_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="AlShahed.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://alshahed.tv/wp-content/themes/twentyfifteen/asset/img/logo.png" group-title="",Al-Shahed (720p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/abr_live/Al-Shahed/playlist.m3u8 -#EXTINF:-1 tvg-id="AlraiTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eqCEXk6.png" group-title="Entertainment",Alrai TV (720p) -https://media.streambrothers.com:1936/8724/8724/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.atvkuwait.com/img/logo/atv_logo.png" group-title="",ATV (360p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/live/Aladalah_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Ch4Teen.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/JeG9K1y.png" group-title="Religious",Ch4Teen (480p) [Not 24/7] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835787/master.m3u8 -#EXTINF:-1 tvg-id="Funoon.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="" group-title="Entertainment",Funoon (360p) -https://gulfsat.cdn.easybroadcast.fr/live/FunoonHd_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="KTV1.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/03_logo/KTV1_Kuwait.jpg" group-title="",KTV 1 (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtv1.m3u8 -#EXTINF:-1 tvg-id="KTV2.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/03_logo/ktv2_Kuwait.jpg" group-title="",KTV 2 (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtv2.m3u8 -#EXTINF:-1 tvg-id="KTVAlMajlis.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i4.yhk0.net/cha/kw/almajlis-95x41.gif" group-title="",KTV Al Majlis (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvmajlis.m3u8 -#EXTINF:-1 tvg-id="KTVAlQurain.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i5.satexpat.com/cha/kw/ktvQuran-95x88.gif" group-title="",KTV Al Qurain (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvqurain.m3u8 -#EXTINF:-1 tvg-id="KTVArabe.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://content.osn.com/bob/745x419/KTA.jpg" group-title="",KTV Arabe (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvarabi.m3u8 -#EXTINF:-1 tvg-id="KTVEthraa.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i5.satexpat.com/cha/kw/ktv_ethra_95x94.gif" group-title="",KTV Ethraa (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvethraa.m3u8 -#EXTINF:-1 tvg-id="KTVKhallikBilbait.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i5.satexpat.com/cha/kw/khallikBilbait-95x73.gif" group-title="",KTV Khallik Bilbait (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvkids.m3u8 -#EXTINF:-1 tvg-id="KTVSport.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.goalzz.com/images/logo_sport/kuwaitsport.jpg" group-title="Sports",KTV Sport (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsports.m3u8 -#EXTINF:-1 tvg-id="KTVSportPlus.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.1arablive.com/livetv/assets/images/1536610958.png" group-title="",KTV Sport Plus (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsportsplus.m3u8 -#EXTINF:-1 tvg-id="MarinaTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/MRN.png" group-title="",Marina TV (720p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/abr_live/MarinaTv/playlist.m3u8 diff --git a/channels/kz.m3u b/channels/kz.m3u deleted file mode 100644 index d0756e9a2..000000000 --- a/channels/kz.m3u +++ /dev/null @@ -1,47 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7kanal.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",7 канал (576p) [Not 24/7] -https://sc.id-tv.kz/7_kanal.m3u8 -#EXTINF:-1 tvg-id="31kanal.kz" tvg-country="KZ" tvg-language="Russian" tvg-logo="" group-title="",31 канал (576p) [Not 24/7] -https://sc.id-tv.kz/31Kanal.m3u8 -#EXTINF:-1 tvg-id="AsylArnaAsylarna.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Asyl Arna (Асыл арна) (432p) [Not 24/7] -https://sc.id-tv.kz/AsylArna.m3u8 -#EXTINF:-1 tvg-id="AtamekenBusiness.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001662eb7cce159eda2661b206fb448/z" group-title="Business",Atameken Business (1080p) [Not 24/7] -http://live-atameken.cdnvideo.ru/atameken/atameken.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AtamekenBusiness.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001662eb7cce159eda2661b206fb448/z" group-title="Business",Atameken Business (576p) [Not 24/7] -https://sc.id-tv.kz/Atameken.m3u8 -#EXTINF:-1 tvg-id="CaspianNews.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="News",Caspian News (576p) [Not 24/7] -https://sc.id-tv.kz/CaspianNews.m3u8 -#EXTINF:-1 tvg-id="DombyraTV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Dombyra TV (576p) [Not 24/7] -https://sc.id-tv.kz/Dombyra.m3u8 -#EXTINF:-1 tvg-id="Gakku.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Gakku (576p) [Not 24/7] -https://sc.id-tv.kz/Gakku.m3u8 -#EXTINF:-1 tvg-id="HitTV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Hit TV (576p) [Not 24/7] -https://sc.id-tv.kz/HitTV.m3u8 -#EXTINF:-1 tvg-id="Almaty.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://i.imgur.com/GXlYCXz.jpg" group-title="",Алматы (720p) [Not 24/7] -http://live-almatytv.cdnvideo.ru/almatytv/almatytv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Almaty.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://i.imgur.com/GXlYCXz.jpg" group-title="",Алматы (576p) [Not 24/7] -https://sc.id-tv.kz/Almaty.m3u8 -#EXTINF:-1 tvg-id="Astana.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Астана (576p) [Not 24/7] -https://sc.id-tv.kz/Astana.m3u8 -#EXTINF:-1 tvg-id="ElArna.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="Movies",Ел Арна (576p) [Not 24/7] -https://sc.id-tv.kz/ElArna.m3u8 -#EXTINF:-1 tvg-id="KMA.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",КМА (1080p) [Not 24/7] -https://sc.id-tv.kz/KMA.m3u8 -#EXTINF:-1 tvg-id="KTK.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/BGy7EMr.png" group-title="",КТК (576p) [Not 24/7] -https://sc.id-tv.kz/KTK.m3u8 -#EXTINF:-1 tvg-id="KTK.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/BGy7EMr.png" group-title="",КТК (360p) [Not 24/7] -http://89.218.30.37/ktklive/live.hq/playlist.m3u8 -#EXTINF:-1 tvg-id="MTRK.kz" tvg-country="KZ" tvg-language="Russian" tvg-logo="https://i.imgur.com/XMyRwDk.png" group-title="",МТРК (576p) [Not 24/7] -https://tvcdn01.oktv.kz/tv/mtrk/playlist.m3u8 -#EXTINF:-1 tvg-id="Novoetelevidenie.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/HLiv5Hq.jpg" group-title="",Новое телевидение (576p) [Not 24/7] -http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="STV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://avatars.mds.yandex.net/get-tv-shows/30293/2a0000015185958d1c16e063f32ce0de9e49/orig" group-title="",СТВ (576p) [Not 24/7] -https://sc.id-tv.kz/STV.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://24.kz/media/k2/items/cache/55a9ec53054b140fa3784d6b9508fcf5_L.jpg" group-title="",Хабар 24 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnAFKvDuqBGkIfV8Vn0J_CQ/live -#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (720p) [Not 24/7] -http://serv30.vintera.tv:8081/habar/habar24/playlist.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (720p) [Not 24/7] -https://live-24kz.cdnvideo.ru/24kz/24kz.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar_24.m3u8 diff --git a/channels/la.m3u b/channels/la.m3u deleted file mode 100644 index d6d5271a8..000000000 --- a/channels/la.m3u +++ /dev/null @@ -1,63 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AirTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Air TV (720p) -https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="BrianTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Brian TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DaoLaneXang.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Dao Lane Xang (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DhammasaphaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Dhammasapha TV (1080p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="GoodIdeaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Good Idea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongStarTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Hmong Star TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongUSATV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",HmongUSA TV (360p) -https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HoungFa.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Houng Fa (720p) -https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",ISTV (480p) -https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KhomsanhTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Khomsanh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://i.malimarcdn.com/laochampatvHD.jpg" group-title="",Lao Champa TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV2.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://i.malimarcdn.com/laochampatv2HD.jpg" group-title="",Lao Champa TV 2 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV3.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://aetlive.s3-us-west-2.amazonaws.com/assets/img/2018/03/03231638/newLaoChampa3.jpg" group-title="",Lao Champa TV 3 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Heritage Foundation TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoMuslimTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Muslim TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoNetTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Net TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoSVTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao SV TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaosPlanetTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Laos Planet TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LookThoongTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Look Thoong TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LSTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",LS TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NATTV.vn" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",NAT TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NingTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Ning TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OhMuangLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Oh Muang Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OyLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Oy Lao TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PNTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",PNTV (720p) -https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Tea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV2.la" tvg-country="LA" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Tea TV 2 (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="UniquelyThai.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Uniquely Thai (720p) -https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VajtswvTxojlus.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vajtswv Txojlus (720p) -https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VanphenhTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vanphenh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VatiLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vati Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 diff --git a/channels/lb.m3u b/channels/lb.m3u deleted file mode 100644 index 0963abdb8..000000000 --- a/channels/lb.m3u +++ /dev/null @@ -1,62 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AghaniAghani.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://aghaniaghani.com/images/logo.png" group-title="Music",Aghani Aghani (1080p) [Not 24/7] -https://svs.itworkscdn.net/aghanilive/aghanilive/playlist.m3u8 -#EXTINF:-1 tvg-id="AlIttihad.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://alittihad.tv/assets/images/logo.png" group-title="General",Al Ittihad (552p) [Not 24/7] -https://live.alittihad.tv/ittihad/index.m3u8 -#EXTINF:-1 tvg-id="AljadeedTv.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qtQQJQc.png" group-title="General",Al Jadeed (480p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7ztkw7 -#EXTINF:-1 tvg-id="AlManar.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dmDzNQO.png" group-title="News",Al Manar (576p) [Not 24/7] -https://manar.live/iptv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlManar.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dmDzNQO.png" group-title="News",Al Manar (576p) [Not 24/7] -https://manar.live/x.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMayadeen.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://media.almayadeen.tv/uploads/archive/web-logo.png" group-title="News",Al Mayadeen (576p) -https://lmdstrm.cdn.octivid.com/mayadeen-live/smil:mayadeen.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlhayatTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://www.alhayat.tv/images/logo/main.34f5c635.png" group-title="General",Alhayat TV (720p) [Not 24/7] -https://wowzaprod140-i.akamaihd.net/hls/live/750788/7552102e/playlist.m3u8 -#EXTINF:-1 tvg-id="AlimanTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/817xRPg.png" group-title="Religious",Aliman TV (240p) [Not 24/7] -https://svs.itworkscdn.net/alimanlive/imantv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArabicaMusic.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://arabicagroup.tv/images/app1.png" group-title="Music",Arabica TV (720p) -http://istream.binarywaves.com:8081/hls/arabica/playlist.m3u8 -#EXTINF:-1 tvg-id="CharityTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://kreim-storage.fra1.digitaloceanspaces.com/APP%20Logo%20PNG.png" group-title="Religious",CharityTV (1080p) [Not 24/7] -http://185.105.4.236:1935/live/ngrp:livestream_all/live.m3u8 -#EXTINF:-1 tvg-id="FutureTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://futuretvnetwork.com/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="General",Future TV (576p) [Not 24/7] -#EXTVLCOPT:http-referrer=http://azrotv.com/ -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://teledunet.com:8080/live/azrotv/azrotv2021/10007.m3u8 -#EXTINF:-1 tvg-id="LBCInternational.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/YPR45yP.png" group-title="General",LBC International (1080p) [Geo-blocked] -https://shls-lbci-prod-dub.shahid.net/out/v1/d8cce30036e743318a7f338539689968/index.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] -http://31.14.40.237:1935/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] -http://31.14.40.238:1935/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] -https://5dc7d824154d0.streamlock.net/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NBN.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="" group-title="",NBN (720p) [Not 24/7] -https://nbntv.me:8443/nbntv/index.m3u8 -#EXTINF:-1 tvg-id="Newvision.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.newvision.tv/wp-content/uploads/2020/05/Logo.jpg" group-title="News",Newvision (480p) [Not 24/7] -https://master.starmena-cloud.com/hls/newv.m3u8 -#EXTINF:-1 tvg-id="NourAlKoddas.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5VvPLEl.jpg" group-title="Religious",Nour Al Koddas (406p) [Not 24/7] -https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NourAlSharq.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/hiAwky4.jpg" group-title="Religious",Nour Al Sharq (576p) -https://svs.itworkscdn.net/nour8satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NourMariam.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Ow5Lqh6.jpg" group-title="Religious",Nour Mariam (576p) -https://svs.itworkscdn.net/nour9satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NourSAT.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/QrwZu4W.png" group-title="Religious",NourSAT (576p) -https://svs.itworkscdn.net/nour4satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" group-title="General",OTV (1080p) [Geo-blocked] -https://iptv-all.lanesh4d0w.repl.co/lebanon/otv -#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" group-title="General",OTV (720p) [Not 24/7] -http://62.182.82.104/OTV/index.m3u8?token=test -#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="General",OTV (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=http://azrotv.com/ -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -http://teledunet.com:8080/live/azrotv/azrotv2021/10015.m3u8 -#EXTINF:-1 tvg-id="SawtElMada.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.sawtelmada.com/assets/themes/sawt%20al%20mada/images/logo.png" group-title="",Sawt El Mada (460p) [Not 24/7] -https://svs.itworkscdn.net/madalive/mada/playlist.m3u8 -#EXTINF:-1 tvg-id="TahaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://tahatv.com/images/menue%20bar/77_46.png" group-title="Kids",Taha TV (360p) [Not 24/7] -https://media2.livaat.com/TAHA-TV/index.m3u8 -#EXTINF:-1 tvg-id="TeleLiban.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.teleliban.com.lb/images/telelogo.png" group-title="General",Tele Liban (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://www.teleliban.com.lb/live -https://cdn.catiacast.video/abr/ed8f807e2548db4507d2a6f4ba0c4a06/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSeventeen.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://www.tvseventeen.com/img/logo.png" group-title="News",TV Seventeen (720p) -https://cdn.tvseventeen.com/test_tv_seventeen/index.m3u8 diff --git a/channels/li.m3u b/channels/li.m3u deleted file mode 100644 index aa52d2663..000000000 --- a/channels/li.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KommuTV.li" tvg-country="LI" tvg-language="German" tvg-logo="https://i.imgur.com/hNA8pC9.png" group-title="",Kommu TV (720p) [Not 24/7] -http://31.10.19.12:8066/live/999/0.m3u8 -#EXTINF:-1 tvg-id="MediashopTV.li" tvg-country="LI" tvg-language="German" tvg-logo="https://i.imgur.com/Drxu8Du.png" group-title="Shop",Mediashop TV (576p) -https://mediashop.akamaized.net/hls/live/2032402/Meine_Einkaufswelt/1.m3u8 diff --git a/channels/lk.m3u b/channels/lk.m3u deleted file mode 100644 index 0cecc9185..000000000 --- a/channels/lk.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="athavantv.com" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/U4RQ4pT.png" group-title="",Athavan TV (720p) [Not 24/7] -http://45.77.66.224:1935/athavantv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="channeleye.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/dDCHZwA.png" group-title="",Channel Eye (480p) [Geo-blocked] -http://dammikartmp.tulix.tv/slrc2/slrc2/playlist.m3u8 -#EXTINF:-1 tvg-id="HiruTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/u4et3kY.png" group-title="",Hiru TV (360p) [Not 24/7] -http://cdncities.com/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="hirutv.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/u4et3kY.png" group-title="",Hiru TV (360p) [Not 24/7] -https://eu10b.serverse.com:1936/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="rupavahini.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/3krjTFe.png" group-title="",Rupavahini (480p) [Not 24/7] -http://dammikartmp.tulix.tv/slrc1/slrc1/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/yJs9KYP.png" group-title="",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/yJs9KYP.png" group-title="",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="SooriyanTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/nqAvA6W.png" group-title="",Sooriyan TV (810p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/Sooriyantv/Sooriyantv/playlist.m3u8 -#EXTINF:-1 tvg-id="SriSankaraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/1QrwZKp.png" group-title="",Sri Sankara TV (360p) [Not 24/7] -https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VerbumTV.com" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/BzaJlR9.jpg" group-title="",VerbumTV (414p) [Not 24/7] -https://verbumtv.livebox.co.in/verbumtvhls/live.m3u8 diff --git a/channels/lt.m3u b/channels/lt.m3u deleted file mode 100644 index 5ddb87ed0..000000000 --- a/channels/lt.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KOKFights.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",KOK Fights (720p) [Not 24/7] -https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LRTLituanica.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",LRT Lituanica (720p) -https://lituanica-dvr.lrt.lt/lrt-ndvr/hls/lituanica_720p/index.m3u8 -#EXTINF:-1 tvg-id="M1.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",M-1 (480p) -http://m-1.data.lt/m-1/smil:m-1.smil/chunklist_b1000000.m3u8 -#EXTINF:-1 tvg-id="tv3.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="https://i.imgur.com/X5ulUxA.jpg" group-title="",Power Hit Radio (720p) [Not 24/7] -https://baltlive.tv3.lt/studija/smil:studija.smil/playlist.m3u8 diff --git a/channels/lu.m3u b/channels/lu.m3u deleted file mode 100644 index 6b759f6fd..000000000 --- a/channels/lu.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChamberTV.lu" tvg-country="LU" tvg-language="Luxembourgish" tvg-logo="https://i.imgur.com/YldMnap.jpg" group-title="",Chamber TV (1080p) -https://media02.webtvlive.eu/chd-edge/smil:chamber_tv_hd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="eldoTV.lu" tvg-country="LU" tvg-language="Luxembourgish" tvg-logo="https://i.imgur.com/4ntor8S.png" group-title="",eldo.TV (1080p) -https://eldo-streaming.eldo.lu/eldotv/smil:eldotv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JasminTV.lu" tvg-country="LU" tvg-language="English" tvg-logo="https://www.parsatv.com/index_files/channels/jasmintv.png" group-title="XXX",Jasmin TV (720p) -http://109.71.162.112/live/hd.jasminchannel.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JasminTV.lu" tvg-country="LU" tvg-language="English" tvg-logo="https://www.parsatv.com/index_files/channels/jasmintv.png" group-title="XXX",Jasmin TV (720p) -http://109.71.162.112/live/sd.jasminchannel.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL.lu" tvg-country="LU" tvg-language="French" tvg-logo="https://i.imgur.com/bJrUjIC.png" group-title="",RTL (1080p) -https://live-edge.rtl.lu/channel1/smil:channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL.lu" tvg-country="LU" tvg-language="French" tvg-logo="https://i.imgur.com/bJrUjIC.png" group-title="",RTL (1080p) -https://rtlradio-streaming.rtl.lu/rtlradiowebtv/smil:rtlradiowebtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL2.lu" tvg-country="LU" tvg-language="French" tvg-logo="" group-title="",RTL2 (1080p) -https://live-edge.rtl.lu/channel2/smil:channel2/playlist.m3u8 diff --git a/channels/lu_samsung.m3u b/channels/lu_samsung.m3u deleted file mode 100644 index 440209ba8..000000000 --- a/channels/lu_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews Français (720p) -https://rakuten-africanews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] -https://rakuten-euronews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/lv.m3u b/channels/lv.m3u deleted file mode 100644 index aba209909..000000000 --- a/channels/lv.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChauTV.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/W9RtBZN.jpg" group-title="",Chau TV [Offline] -https://video.chaula.tv/hls/live/high/playlist_high.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio1.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/hsspORI.png" group-title="",Latvijas Radio 1 (360p) [Not 24/7] -https://5a44e5b800a41.streamlock.net/liveVLR1/mp4:LR1/playlist.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio2.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/hsspORI.png" group-title="",Latvijas Radio 2 (240p) -https://5a44e5b800a41.streamlock.net/liveVLR2/mp4:LR2/playlist.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio3Klasika.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/4npOpPj.png" group-title="",Latvijas Radio 3 Klasika (240p) -https://5a44e5b800a41.streamlock.net/liveVLR3/mp4:Klasika/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNET.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/r4rlHUt.png" group-title="",TVNET (360p) -https://player.tvnet.lv/stream/amlst:61659/playlist.m3u8 diff --git a/channels/ly.m3u b/channels/ly.m3u deleted file mode 100644 index 3cc235ef2..000000000 --- a/channels/ly.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlwasatTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://alwasat.ly/themes/default/assets/images/logo.png" group-title="",Alwasat TV (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/alwasattv-live.m3u8 -#EXTINF:-1 tvg-id="FebruaryTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://www.februarychannel.com/webroot/theam/images/feb-logo-1.png" group-title="",February TV [Offline] -https://linkastream.co/headless?url=https://www.youtube.com/c/FebruaryTv/live -#EXTINF:-1 tvg-id="JamahiriaTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://www.ljbctv.tv/logo.png" group-title="News",Jamahiria TV (480p) [Not 24/7] -https://master.starmena-cloud.com/hls/jam.m3u8 -#EXTINF:-1 tvg-id="Libya218.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/N9dO8AE.png" group-title="News",Libya 218 (1080p) [Not 24/7] -https://stream.218tv.net/libya218TV/playlist.m3u8 -#EXTINF:-1 tvg-id="Libya218News.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mzwdt39.jpg" group-title="News",Libya 218 News (1080p) [Not 24/7] -http://95.85.47.43/libya218news/playlist.m3u8 -#EXTINF:-1 tvg-id="Libya218News.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mzwdt39.jpg" group-title="News",Libya 218 News (1080p) [Not 24/7] -https://stream.218tv.net/libya218news/playlist.m3u8 -#EXTINF:-1 tvg-id="LibyaAlAhrarTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://pbs.twimg.com/profile_images/953959542928412673/wYWx5MRY.jpg" group-title="News",Libya Al Ahrar TV (720p) [Not 24/7] -https://video.zidivo.com/live983/GrtjM_FNGC/playlist.m3u8 -#EXTINF:-1 tvg-id="LibyaAlHadath.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://www.elahmad.com/tv/images/libyaalhadath.jpg" group-title="News",Libya Al Hadath (576p) [Not 24/7] -https://master.starmena-cloud.com/hls/hd.m3u8 -#EXTINF:-1 tvg-id="LibyaChannel.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://www.1arablive.com/livetv/assets/images/1524006480.jpg" group-title="News",Libya Channel (576p) [Not 24/7] -https://master.starmena-cloud.com/hls/libyas.m3u8 -#EXTINF:-1 tvg-id="Tanasuh.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://tanasuh.tv/wp-content/uploads/2018/01/Website-LOGO-01.png" group-title="",Tanasuh (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRaoHR6b3zViY9QxfgFNntQ/live diff --git a/channels/ma.m3u b/channels/ma.m3u deleted file mode 100644 index 5b8ea8a1d..000000000 --- a/channels/ma.m3u +++ /dev/null @@ -1,47 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="2MMonde.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/CwwRn4b.png" group-title="General",2M Monde (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/2m_monde/hls_video_ts_hy217612tge1f21j83/2m_monde.m3u8 -#EXTINF:-1 tvg-id="AlAoula.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoula.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula Laayoune (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula Laayoune (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlMaghribia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZlmQSBl.png" group-title="General",Al Maghribia (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlMaghribia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZlmQSBl.png" group-title="General",Al Maghribia (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arrabiaa.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/FvgdLdG.png" group-title="General",Arrabiaa (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arrabiaa.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/FvgdLdG.png" group-title="General",Arrabiaa (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arryadia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/liFebM9.png" group-title="Sports",Arryadia (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/arriadia/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arryadia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/liFebM9.png" group-title="Sports",Arryadia (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arriadia/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Assadissa.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Assadissa (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/assadissa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Assadissa.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Assadissa (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/assadissa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="CanalAtlasFight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Canal Atlas Fight (616p) [Offline] -https://edge.vedge.infomaniak.com/livecast/ik:atlasfight/manifest.m3u8 -#EXTINF:-1 tvg-id="M24TV.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J7GdM3L.png" group-title="News",M24 TV (720p) [Not 24/7] -http://79.137.106.241/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="M24TV.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J7GdM3L.png" group-title="News",M24 TV (720p) [Not 24/7] -https://www.m24tv.ma/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MaghrebArabePress.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="" group-title="",Maghreb Arabe Press (720p) [Not 24/7] -https://www.maptvnews.ma/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVAfrique.ma" tvg-country="MA" tvg-language="French" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Afrique (720p) [Not 24/7] -http://streaming2.medi1tv.com/live/smil:medi1fr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVArabic.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Arabic (1080p) [Not 24/7] -http://5f72f3a9b06b7.streamlock.net/live/smil:medi1ar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVMaghreb.ma" tvg-country="MA" tvg-language="French;Arabic" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Maghreb (1080p) [Not 24/7] -http://streaming1.medi1tv.com/live/smil:medi1tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Tamazight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uC6IF9P.png" group-title="General",Tamazight (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Tamazight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uC6IF9P.png" group-title="General",Tamazight (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="TeleMaroc.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7sibv0t.png" group-title="General",Télé Maroc (1080p) -https://api.new.livestream.com/accounts/27130247/events/8196478/live.m3u8 diff --git a/channels/mc.m3u b/channels/mc.m3u deleted file mode 100644 index 71d6c316d..000000000 --- a/channels/mc.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MonacoInfo.mc" tvg-country="MC" tvg-language="French" tvg-logo="" group-title="",Monaco Info (720p) [Not 24/7] -https://webtvmonacoinfo.mc/live/prod_720/index.m3u8 diff --git a/channels/md.m3u b/channels/md.m3u deleted file mode 100644 index 935c3cfdf..000000000 --- a/channels/md.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AcasaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/k1bTMPT.png" group-title="",Acasa TV (576p) -http://hls.protv.md/acasatv/acasatv.m3u8 -#EXTINF:-1 tvg-id="BaltiTV.md" tvg-country="MD" tvg-language="Russian" tvg-logo="" group-title="",Bălţi TV (1080p) [Geo-blocked] -http://77.89.199.174:8000/play/1024/index.m3u8 -#EXTINF:-1 tvg-id="CanalRegional.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/ZiwyCkA.png" group-title="",Canal Regional (576p) [Not 24/7] -https://canalregional.md/tv/live/canalregional.m3u8 -#EXTINF:-1 tvg-id="Drochia.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Drochia (1080p) [Not 24/7] -https://hls.drochia.tv/tv/web.m3u8 -#EXTINF:-1 tvg-id="ElitaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Z27Eyqv.jpg" group-title="",Elita TV (576p) [Timeout] -http://46.55.111.242:8080/Rezina.m3u8 -#EXTINF:-1 tvg-id="Moldova1.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Moldova1 (1080p) [Offline] -http://212.0.209.209:1935/live/M1Mlive/playlist.m3u8 -#EXTINF:-1 tvg-id="Moldova2.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Moldova2 (1080p) [Offline] -http://212.0.209.209:1935/live/M2Mlive/playlist.m3u8 -#EXTINF:-1 tvg-id="NorocTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/39qL2Ht.png" group-title="",Noroc TV (576p) -http://live.noroc.tv/hls/noroctv_chisinau.m3u8 -#EXTINF:-1 tvg-id="PublikaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Hquii9k.jpg" group-title="News",Publika TV (720p) -http://livebeta.publika.md/LIVE/P/6810.m3u8 -#EXTINF:-1 tvg-id="PublikaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Hquii9k.jpg" group-title="News",Publika TV (540p) -https://livebeta.publika.md/LIVE/P/1500.m3u8 -#EXTINF:-1 tvg-id="TeleM.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/FVldFIy.jpg" group-title="",Tele M [Offline] -http://webmobile.xdev.ro:81/tv16/playlist.m3u8 -#EXTINF:-1 tvg-id="VoceaBasarabieiTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Vocea Basarabiei TV (406p) [Not 24/7] -http://hls.voceabasarabiei.md/hls/vocea_basarabiei.m3u8 -#EXTINF:-1 tvg-id="ТНТExclusivTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",ТНТ Exclusiv TV (576p) -http://89.28.25.122/hls/tnt_md.m3u8 diff --git a/channels/me.m3u b/channels/me.m3u deleted file mode 100644 index eac7ea5b2..000000000 --- a/channels/me.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TelevizijaTV7.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/vAzXsBM.jpg" group-title="",Televizija TV7 (480p) [Timeout] -http://109.123.70.27:1935/tehnikatv777/tehnikatv777/index.m3u8 -#EXTINF:-1 tvg-id="TelevizijaTV7.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/IKlrt7F.jpg" group-title="",Televizija TV7 (480p) [Timeout] -http://109.123.70.27:1935/tehnikatv777/tehnikatv777/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCG1.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="" group-title="",TVCG 1 (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cg1/smil:cg1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCG2.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="" group-title="",TVCG 2 (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cg2/smil:cg2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) -http://rtcg3.videostreaming.rs:1935/rtcg/smil:rtcg.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cgsat/smil:cgsat.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] -http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.1.stream/index.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] -http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.2.stream/playlist.m3u8 diff --git a/channels/mk.m3u b/channels/mk.m3u deleted file mode 100644 index 5645d637d..000000000 --- a/channels/mk.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KohaTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/AJ472ot.png" group-title="",Koha TV (720p) [Offline] -rtmp://live.tvkoha.tv:1935/live/koha/livestream -#EXTINF:-1 tvg-id="LiveTVHD.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="" group-title="Music",LiveTV HD [Offline] -rtmp://live.livetvhd.cf/live/livetvhd -#EXTINF:-1 tvg-id="SkyFolkTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/8JY3Tcj.jpg" group-title="Music",Sky Folk TV (720p) [Not 24/7] -https://eu.live.skyfolk.mk/live.m3u8 -#EXTINF:-1 tvg-id="SkyFolkTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/8JY3Tcj.jpg" group-title="Music",Sky Folk TV (720p) [Not 24/7] -https://skyfolk.mk/live.m3u8 -#EXTINF:-1 tvg-id="TVPlus.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/C67vLVL.jpg" group-title="",TVPlus [Timeout] -http://141.136.14.18/kanal1/kanal1.m3u8 diff --git a/channels/ml.m3u b/channels/ml.m3u deleted file mode 100644 index 5290a8a80..000000000 --- a/channels/ml.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ORTM1.ml" tvg-country="ML" tvg-language="French" tvg-logo="" group-title="",ORTM1 (576p) [Not 24/7] -http://51.210.1.13:18000/ortm/hls/playlist.m3u8 diff --git a/channels/mm.m3u b/channels/mm.m3u deleted file mode 100644 index e5868be8c..000000000 --- a/channels/mm.m3u +++ /dev/null @@ -1,24 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChannelK.mm" tvg-country="MM" tvg-language="Burmese" tvg-logo="http://www.myanmartvchannel.com/assets/images/channel/channelk.jpg" group-title="",Channel K [Offline] -https://d3cs5y5559s57s.cloudfront.net/live/channelk.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsportshd.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsporthd_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports1.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports1.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 1 (480p Scaled) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport1_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports2.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 2 (480p Scaled) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport2_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports3.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 3 (480p Scaled) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport3_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports4.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 4 (480p Scaled) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport4_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports5.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports5.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 5 (480p Scaled) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport5_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports6.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports6.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 6 (480p Scaled) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/03_skynetsport6_480p/chunklist.m3u8 diff --git a/channels/mn.m3u b/channels/mn.m3u deleted file mode 100644 index a72082bde..000000000 --- a/channels/mn.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MongolynMedee.mn" tvg-country="MN" tvg-language="Mongolian" tvg-logo="http://www.mnb.mn/images/mini/mnews.png" group-title="News",Монголын Мэдээ (576p) [Offline] -http://103.14.38.107:1935/live/mn2.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="MUONT1.mn" tvg-country="MN" tvg-language="Mongolian" tvg-logo="http://www.mnb.mn/images/mini/tv.png" group-title="",МҮОНТ-1 (576p) [Offline] -http://103.14.38.107:1935/live/mnb.stream/chunklist.m3u8 diff --git a/channels/mo.m3u b/channels/mo.m3u deleted file mode 100644 index fdf58de2f..000000000 --- a/channels/mo.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalMacau.mo" tvg-country="MO" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/0eGv67Q.png" group-title="General",Canal Macau (720p) [Not 24/7] -http://live4.tdm.com.mo/ch2/_definst_/ch2.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMInfoMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="",TDM Info. Macau (720p) [Not 24/7] -http://live4.tdm.com.mo/ch5/_definst_/info_ch5.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="",TDM Macau (720p) -http://live4.tdm.com.mo/ch1/_definst_/ch1.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMMacauSatelite.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/59lAsao.png" group-title="",TDM Macau Satelite (720p) -http://live4.tdm.com.mo/ch3/_definst_/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMSportsMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="Sports",TDM Sports Macau (720p) -http://live4.tdm.com.mo/ch4/_definst_/sport_ch4.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoShiAoMen.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmaomen.jpg" group-title="",澳视澳门 (720p) -http://live3.tdm.com.mo:1935/ch1/ch1.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoMenZongYi.mo" tvg-country="MO" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/TDM_Entertainment.png/640px-TDM_Entertainment.png" group-title="",澳門綜藝 (720p) -http://live4.tdm.com.mo/ch6/_definst_/hd_ch6.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoMenTiYu.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmty.jpg" group-title="",澳门体育 (720p) -http://live3.tdm.com.mo:1935/ch4/sport_ch4.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoMenWeiXing.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/aomen-macau.jpg" group-title="",澳门卫星 (720p) -http://live3.tdm.com.mo:1935/ch3/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoMenZongYi.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmgq.jpg" group-title="",澳门综艺 (720p) [Not 24/7] -http://live2.tdm.com.mo:1935/ch6/hd_ch6.live/playlist.m3u8 -#EXTINF:-1 tvg-id="AoMenZiXun.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmzxt.jpg" group-title="",澳门资讯 (720p) -http://live3.tdm.com.mo:1935/ch5/info_ch5.live/playlist.m3u8 diff --git a/channels/mq.m3u b/channels/mq.m3u deleted file mode 100644 index d72aab168..000000000 --- a/channels/mq.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EsperanceTV.mq" tvg-country="MQ" tvg-language="French" tvg-logo="https://i.imgur.com/wnz50vR.png" group-title="Religious",Espérance TV (720p) [Not 24/7] -https://hcinteram.mmdlive.lldns.net/hcinteram/5fb30e8b271544039e79f93d4d496b25/manifest.m3u8 -#EXTINF:-1 tvg-id="Martiniquela1ère.mq" tvg-country="MQ" tvg-language="French" tvg-logo="https://i.imgur.com/z3AeEbJ.png" group-title="General",Martinique la 1ère (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgA9V57lQlZFXkDfhVGTWSg/live diff --git a/channels/mt.m3u b/channels/mt.m3u deleted file mode 100644 index 8f2f3b7a5..000000000 --- a/channels/mt.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ONE.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://www.one.com.mt/assets/img/design/logos/menu_one_grey.png" group-title="",One (720p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_124/201830-1293592-1/playlist.m3u8 -#EXTINF:-1 tvg-id="SmashTV.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://i.imgur.com/abqTjYB.png" group-title="",Smash TV (720p) [Not 24/7] -http://s3.smashmalta.com/hls/smash/smash.m3u8 -#EXTINF:-1 tvg-id="TVM.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://www.tvm.com.mt/en/wp-content/themes/tvm/dist/images/tvm-logo.svg" group-title="",TVM (360p) [Not 24/7] -https://iptv--iptv.repl.co/Maltese/TVM diff --git a/channels/mv.m3u b/channels/mv.m3u deleted file mode 100644 index fa3868dc2..000000000 --- a/channels/mv.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="VTV.mv" tvg-country="MV" tvg-language="Dhivehi" tvg-logo="" group-title="",VTV (1080p) -http://vtvstreaming.myvnc.com:1935/vtvlive/vmedia/chunklist.m3u8 diff --git a/channels/mw.m3u b/channels/mw.m3u deleted file mode 100644 index cd776ede6..000000000 --- a/channels/mw.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MBC.mw" tvg-country="MW" tvg-language="Chichewa;English" tvg-logo="http://mbc.globemw.net/img/home_logo.png" group-title="General",MBC (614p) [Not 24/7] -http://41.216.229.205:8080/live/livestream/index.m3u8 diff --git a/channels/mx.m3u b/channels/mx.m3u deleted file mode 100644 index 25d5c38e4..000000000 --- a/channels/mx.m3u +++ /dev/null @@ -1,203 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ADN40.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x8lwsjM.png" group-title="",ADN 40 (480p) -https://mdstrm.com/live-stream-playlist/60b578b060947317de7b57ac.m3u8 -#EXTINF:-1 tvg-id="ADN40.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x8lwsjM.png" group-title="",ADN 40 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7k--FhnJzhPTrbtldMSoQQ/live -#EXTINF:-1 tvg-id="AlcarriaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9Xn7ZEZ.jpg" group-title="",Alcarria TV (576p) [Not 24/7] -http://217.182.77.27/live/alcarriatv-livestream.m3u8 -#EXTINF:-1 tvg-id="AMXNoticias.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/snIU1UA.jpg" group-title="News",AMX Noticias (720p) [Not 24/7] -https://5e50264bd6766.streamlock.net/mexiquense2/videomexiquense2/playlist.m3u8 -#EXTINF:-1 tvg-id="Azcorazon.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Azcorazon (480p) [Offline] -http://181.115.72.65:8099/play/a016/index.m3u8 -#EXTINF:-1 tvg-id="Azmundo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Azmundo (480p) [Offline] -http://181.115.72.65:8099/play/a025/index.m3u8 -#EXTINF:-1 tvg-id="XHJKTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/1.1.png" group-title="Local",Azteca Uno (XHJK-TDT) (480p) [Not 24/7] -http://190.122.96.187:8888/http/002 -#EXTINF:-1 tvg-id="Canal5.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/5_de_mexico-mediano.png" group-title="",Canal 5 (480p) [Offline] -http://45.174.77.243:8000/play/a0fl/index.m3u8 -#EXTINF:-1 tvg-id="Canal8CostaRica.mx" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.telediario.cr/bundles/appcamusassets/images/logo-canal8.svg" group-title="",Canal 8 Costa Rica (720p) -https://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 -#EXTINF:-1 tvg-id="Canal10Cancun.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://s3-us-west-1.amazonaws.com/canal10/photos/96800/original.jpg" group-title="Local",Canal 10 Cancún (720p) [Not 24/7] -http://stream2.dynalias.com:1935/live/tvlive1/playlist.m3u8 -#EXTINF:-1 tvg-id="XEWTTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/12.1.png" group-title="Local",Canal 12 (XETW-TDT) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjwXjnO3BGePtB7gSKEpoqA/live -#EXTINF:-1 tvg-id="Canal28.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lr4MZFg.png" group-title="",Canal 28 (720p) [Not 24/7] -https://api.new.livestream.com/accounts/3789491/events/8003011/live.m3u8 -#EXTINF:-1 tvg-id="Canal44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YDp8MlN.png" group-title="",Canal 44 Chihuahua (720p) [Not 24/7] -https://5e50264bd6766.streamlock.net/canal442/videocanal442/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YDp8MlN.png" group-title="",Canal 44 Ciudad Juárez (720p) [Geo-blocked] -https://5e50264bd6766.streamlock.net/canal44/videocanal44/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCatorce.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canalcatorcemx/picture?width=200&height=200" group-title="Local",Canal Catorce (720p) -https://d3nljkrx6mjqra.cloudfront.net/out/v1/1b9d9efd27814b3b8dc570113ae54409/index.m3u8 -#EXTINF:-1 tvg-id="CanaldelasEstrellas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.lasestrellas.tv/assets/08680ecc38e44f53/images/icn_lasestrellas_512x512.png" group-title="Local",Canal de Las Estrellas (480p) [Offline] -http://170.83.242.153:8000/play/a012 -#EXTINF:-1 tvg-id="CanalMundoPlus.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9BtSyV2.png" group-title="",Canal Mundo+ (560p) [Not 24/7] -http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 -#EXTINF:-1 tvg-id="Capital21.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/P1pHy3j.jpg" group-title="Local",Capital 21 (720p) [Not 24/7] -https://video.cdmx.gob.mx/livestream/stream.m3u8 -#EXTINF:-1 tvg-id="ClaroCinema.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Movies",Claro Cinema (480p) [Offline] -http://170.83.242.153:8000/play/a00d -#EXTINF:-1 tvg-id="ClaroSinLimites.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Music",Claro Sin Limites (480p) [Offline] -http://170.83.242.153:8000/play/a01k -#EXTINF:-1 tvg-id="ClaroSports.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Sports",Claro Sports (480p) -http://45.179.140.242:8000/play/a0ht -#EXTINF:-1 tvg-id="ConectaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9TGQZzk.png" group-title="Music",Conecta TV (720p) -http://204.12.211.210:1935/conectatv/conectatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CortTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/g6ABkaV.png" group-title="",CorTV (800p) -https://stream.oursnetworktv.com/latin/encoder29/playlist.m3u8 -#EXTINF:-1 tvg-id="EnergíaMusical.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Energía Musical TV (360p) [Not 24/7] -https://ss2.domint.net:3224/emtv_str/energiamusical/playlist.m3u8 -#EXTINF:-1 tvg-id="Forotv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uNQVYem.png" group-title="News",ForoTV (720p) [Geo-blocked] -https://live-streams-notusa.televisa.com/channel02-b/index.m3u8 -#EXTINF:-1 tvg-id="GenesisTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hMtKE60.png" group-title="",Genesis TV (720p) [Not 24/7] -http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GoldenLatinoamerica.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/golden-mediano.png" group-title="Movies",Golden Latinoamérica (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8026/8026/playlist.m3u8 -#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.hipodromo.com.mx/desktop/images/LOGO_HIPODROMO_bco.png" group-title="",Hipodromo de las Americas (360p) [Not 24/7] -http://wms10.tecnoxia.com/soelvi/slv423/playlist.m3u8 -#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.hipodromo.com.mx/desktop/images/LOGO_HIPODROMO_bco.png" group-title="",Hipódromo de las Américas (480p) [Geo-blocked] -http://wms.tecnoxia.com:1935/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="IcrtvColima.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Dru29kQ.png" group-title="",Icrtv Colima (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal11/videocanal11/playlist.m3u8 -#EXTINF:-1 tvg-id="ImagenMulticast.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KDZ50eC.jpg" group-title="Local",Imagen Multicast (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClqo4ZAAZ01HQdCTlovCgkA/live -#EXTINF:-1 tvg-id="ImagenRadio.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SINYy29.png" group-title="",Imagen Radio (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCB0BUmdBOrH9mYU2ebs1eWA/live -#EXTINF:-1 tvg-id="Imagentv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mRGetOJ.png" group-title="",Imagen TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82z4if -#EXTINF:-1 tvg-id="JaliscoTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/N4meE8I.png" group-title="",Jalisco TV (720p) [Geo-blocked] -https://5fa5de1a545ae.streamlock.net/sisjalisciense/sisjalisciense/playlist.m3u8 -#EXTINF:-1 tvg-id="LaOctava.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qQjenrC.png" group-title="",La Octava TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x80mow9 -#EXTINF:-1 tvg-id="MariaVisionMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bLSCeSB.png" group-title="Religious",María Visión Mexico (360p) [Not 24/7] -https://1601580044.rsc.cdn77.org/live/_jcn_/amlst:Mariavision/master.m3u8 -#EXTINF:-1 tvg-id="MexicoTravelChannel.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TnHaCDB.png" group-title="",México Travel Channel (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7v76vf -#EXTINF:-1 tvg-id="MexiquenseTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IjE1ORI.png" group-title="",Mexiquense TV (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/mexiquense/videomexiquense/playlist.m3u8 -#EXTINF:-1 tvg-id="Milenio.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d4/Milenio_Television.png" group-title="",Milenio Televisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFxHplbcoJK9m70c4VyTIxg/live -#EXTINF:-1 tvg-id="MonteMaria.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OzVUVoX.jpg" group-title="Religious",Monte Maria (720p) [Timeout] -https://rbaca.livestreamingcdn.com/envivo3/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MultimediosGuadalajara.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0bznKvP.jpg" group-title="",Multimedios Guadalajara (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5c54d38ca392a5119bb0aa0d.m3u8 -#EXTINF:-1 tvg-id="MultimediosLaguna.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Zj8mOEo.png" group-title="",Multimedios Laguna (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/57bf686a61ff39e1085d43e1.m3u8 -#EXTINF:-1 tvg-id="MultimediosMonterrey.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7OHMuRl.png" group-title="",Multimedios Monterrey (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/57b4dbf5dbbfc8f16bb63ce1.m3u8 -#EXTINF:-1 tvg-id="Multipremier.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="Movies",Multipremier (480p) [Timeout] -http://201.168.205.12:8000/play/a0cp/index.m3u8 -#EXTINF:-1 tvg-id="MVMNoticias.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/AdP9s9a.png" group-title="News",MVM Noticias (Oaxaca) (400p) [Not 24/7] -https://dcunilive21-lh.akamaihd.net/i/dclive_1@59479/master.m3u8 -#EXTINF:-1 tvg-id="NoticiasCanal10.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/y4akKrD.png" group-title="",Noticias Canal 10 (360p) [Not 24/7] -https://canal10.mediaflix.istream.mx/wza_live/live/movil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceInternacional.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Internacional [Offline] -http://live.canaloncelive.tv:1935/livepkgr2/smil:internacional.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Mexico (720p) [Not 24/7] -http://live.canaloncelive.tv/livepkgr/smil:nacional.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Mexico (720p) [Not 24/7] -https://live2.canaloncelive.tv/livepkgr3/cepro/playlist.m3u8 -#EXTINF:-1 tvg-id="XHTJBTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/20551-80512.png" group-title="Local",Once Niñas y Niños (XHTJB-TDT) (432p) [Offline] -https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt2.m3u8 -#EXTINF:-1 tvg-id="XHTJBTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/20551-48379.png" group-title="Local",Once TV (XHTJB-TDT) (1080p) [Offline] -https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt.m3u8 -#EXTINF:-1 tvg-id="POPTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcShLhiaq_qKJnVjmogg7QWaHm1cOyXpuo8Y2A&usqp=CAU" group-title="",POP TV (542p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico3/smil:obregon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="QuieroTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/k0XbBp8.png" group-title="",Quiero TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8452uw -#EXTINF:-1 tvg-id="RCGTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1qrh5SC.png" group-title="",RCG TV (1080p) -https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV2.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hzJu6QT.png" group-title="",RCG TV 2 (360p) [Not 24/7] -http://wowzacontrol.com:1936/stream23/stream23/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV2.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NIlUdoZ.jpg" group-title="",RCG TV 2 (360p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/stream23/stream23/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV3.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hzJu6QT.png" group-title="",RCG TV 3 (360p) [Not 24/7] -http://wowzacontrol.com:1936/stream56/stream56/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV3.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/beUQopw.jpg" group-title="",RCG TV 3 (360p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/stream56/stream56/playlist.m3u8 -#EXTINF:-1 tvg-id="RTQQueretaro.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/H1AFRJh.png" group-title="",RTQ Queretaro (360p) [Not 24/7] -http://wms.tecnoxia.com:1935/rytqrolive/rytqrolive/master.m3u8 -#EXTINF:-1 tvg-id="SetPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/osgOMAu.png" group-title="Local",SET Televisión Canal 26.1 (720p) [Not 24/7] -http://189.240.210.28:1935/envivo/puecom/playlist.m3u8 -#EXTINF:-1 tvg-id="SetPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/osgOMAu.png" group-title="Local",SET Televisión Canal 26.2 (720p) [Not 24/7] -http://189.240.210.28:1935/live/setpuebla/playlist.m3u8 -#EXTINF:-1 tvg-id="sintesistv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FJPDf2K.png" group-title="General",SintesisTV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/sintesistv -#EXTINF:-1 tvg-id="TELESISTEMACANAL9.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="http://mastelevisioncr.com/wp-content/uploads/2020/08/WhatsApp-Image-2020-08-02-at-12.42.47-300x300.jpeg" group-title="",TELE SISTEMA CANAL 9 (486p) [Geo-blocked] -http://k4.usastreams.com/ARBtv/ARBtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleformula.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/aH9uKk0.jpg" group-title="",Telefórmula (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7u0spq -#EXTINF:-1 tvg-id="TelemarCampeche.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ysowtzb.png" group-title="",Telemar Campeche (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/8410/8410/playlist.m3u8 -#EXTINF:-1 tvg-id="XEWHTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bjGgLrA.jpg" group-title="",Telemax (XEWH-TDT) (720p) -http://s5.mexside.net:1935/telemax/telemax/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleritmo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/teleritmo-logo.png" group-title="",Teleritmo (720p) [Geo-blocked] -http://mdstrm.com/live-stream-playlist/57b4dc126338448314449d0c.m3u8 -#EXTINF:-1 tvg-id="TelevisaAguascalientes.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iVF17fh.png" group-title="Local",Televisa Aguascalientes (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5ZtV3bu3bjSuOLoA6oCFIg/live -#EXTINF:-1 tvg-id="TelevisaChihuahua.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CAuAu0Z.png" group-title="Local",Televisa Chihuahua (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjfxDe7In59Jbfw2HmIh_Vg/live -#EXTINF:-1 tvg-id="TelevisaCiudadJuarez.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4vEFJxf.png" group-title="Local",Televisa Ciudad Juarez (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCot4t8PVKz8TT5xVM8Eb00w/live -#EXTINF:-1 tvg-id="TelevisaDelBajio" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LkeCdc5.png" group-title="Local",Televisa Del Bajio [Offline] -http://viptv-query/?streaming-ip=https://www.youtube.com/channel/UC-uYy4_jIvDoJ4wigEv1S5A/live -#EXTINF:-1 tvg-id="TelevisaDelGolfo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/35fsRTS.jpg" group-title="Local",Televisa Del Golfo [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQ08tNTPiBn44c975S81ftg/live -#EXTINF:-1 tvg-id="TelevisaEstado.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/gyZCypH.png" group-title="Local",Televisa Estado (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9DH82HVSf4katwMeUpY80w -#EXTINF:-1 tvg-id="TelevisaGuadalajara.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Vp4B0BM.jpg" group-title="Local",Televisa Guadalajara (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRujF_YxVVFmTRWURQH-Cww/live -#EXTINF:-1 tvg-id="TelevisaGuerrero.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lOAnjFs.png" group-title="Local",Televisa Guerrero (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnxTRk2K1iNsQkgpWXxyj4w/live -#EXTINF:-1 tvg-id="TelevisaLaguna.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/L4GDHQm.png" group-title="Local",Televisa Laguna (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC_mwCcsKDJLSWjply5s0h8w/live -#EXTINF:-1 tvg-id="TelevisaMexicali.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NIEWc2s.jpg" group-title="Local",Televisa Mexicali (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcmuFsMIIIHO3LBqeBVfm8Q/live -#EXTINF:-1 tvg-id="TelevisaMonterrey.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ierlYM1.jpg" group-title="Local",Televisa Monterrey (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCGDJLLphnP0zQQaE3kgo5Wg/live -#EXTINF:-1 tvg-id="TelevisaMorelos.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QiJoBVs.png" group-title="Local",Televisa Morelos [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcC9ykApQrgl4UxbKg2U4zw/live -#EXTINF:-1 tvg-id="TelevisaNewsMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KVc1hqI.png" group-title="News",Televisa News Mexico (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCUsm-fannqOY02PNN67C0KA/live -#EXTINF:-1 tvg-id="TelevisaNoreste.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rHCKwYB.jpg" group-title="Local",Televisa Noreste (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC752DYv5vPlTSMrvEjfZXcw/live -#EXTINF:-1 tvg-id="TelevisaPiedrasNegras.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fEtvxpz.jpg" group-title="Local",Televisa Piedras Negras (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCxK8C1E8UZ5RipNXIBYEvTA/live -#EXTINF:-1 tvg-id="TelevisaPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2dqF5S8.jpg" group-title="Local",Televisa Puebla [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC-HNztluSQSffhIWJTL-LUw/live -#EXTINF:-1 tvg-id="TelevisaQueretaro.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/47c1AIS.png" group-title="Local",Televisa Queretaro [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9QNz6VS3gGz55dzxAQtgtA/live -#EXTINF:-1 tvg-id="TelevisaSanLuisPotosí.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oxt91dr.jpg" group-title="Local",Televisa San Luis Potosí (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCaRuyaHshLdq462E9_pLzdA/live -#EXTINF:-1 tvg-id="TelevisaSinaloa.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/nZ9HE94.png" group-title="Local",Televisa Sinaloa [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtm1LvYEIQ_NrfOUVJ08YhQ/live -#EXTINF:-1 tvg-id="TelevisaSonora.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3FjHKAC.jpg" group-title="Local",Televisa Sonora (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCyzWMHGS7bs0sot6KZk5EZg/live -#EXTINF:-1 tvg-id="TelevisaVeracruz.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4hPbfbg.png" group-title="Local",Televisa Veracruz (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5EnLdE7ASjYzWt7wvT-QSg/live -#EXTINF:-1 tvg-id="TelevisaZacatecas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/vsbl0u6.png" group-title="Local",Televisa Zacatecas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQb3i7gu9J8A4zzQU7j6C1Q/live -#EXTINF:-1 tvg-id="TlaxcalaTelevisión.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6YKFW2G.png" group-title="",Tlaxcala Televisión (360p) [Not 24/7] -https://vid.mega00.com:5443/LiveApp/streams/928111829917388844551988/928111829917388844551988.m3u8?token=null -#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kpffqTI.png" group-title="",Transmedia Televisión Morelia (614p) [Not 24/7] -http://streamingcws20.com:1935/tmtv/videotmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kpffqTI.png" group-title="",Transmedia Televisión Morelia (614p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/tmtv/videotmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVLobo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/XZ8GmZW.png" group-title="",TV Lobo (720p) [Not 24/7] -http://streamingcws20.com:1935/lobodurango/videolobodurango/playlist.m3u8 -#EXTINF:-1 tvg-id="TV.Unam.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OxxROZI.png" group-title="",TV Unam (720p) -https://5ca3e84a76d30.streamlock.net/tvunam/videotvunam/playlist.m3u8?DVR= -#EXTINF:-1 tvg-id="XHGVTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/15kcNRb.png" group-title="",TVMÁS (XHGV-TDT) (360p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/rtv/videortv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVP.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico4/smil:mazatlan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPCuliacán.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iuaYGK2.png" group-title="",TVP Culiacán (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico1/smil:gpculiacan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPLosMochis.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP Los Mochis (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico2/mochis.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPObregon.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP Obregón (542p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico3/obregon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UDG44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/UDGTV44/picture?width=320&height=320" group-title="General",UDG44 TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3m1xfy -#EXTINF:-1 tvg-id="UnoTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Uno TV (720p) [Not 24/7] -https://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8 diff --git a/channels/mx_samsung.m3u b/channels/mx_samsung.m3u deleted file mode 100644 index 7085d836c..000000000 --- a/channels/mx_samsung.m3u +++ /dev/null @@ -1,31 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArcadeCloudMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXOuzsx.png" group-title="",Arcade Cloud (Mexico) (720p) [Offline] -https://arcade-cloud-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-5-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DemandAfricaMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (Mexico) (1080p) -https://demandafrica-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) -https://euronews-euronews-spanish-2-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-11-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkMexico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Mexico (720p) -https://appletree-mytime-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Mexico (720p) [Offline] -https://jukin-peopleareawesome-2-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Mexico) (1080p) -https://runtimemx-samsungmx.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (1080p) [Not 24/7] -https://samsung-mx.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) -https://tastemadees16intl-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveMexico.us" tvg-country="MX" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Mexico (720p) [Offline] -https://the-pet-collective-international-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyMexico.us" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Mexico (720p) [Offline] -https://jukin-weatherspy-2-mx.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/my.m3u b/channels/my.m3u deleted file mode 100644 index 289cb9545..000000000 --- a/channels/my.m3u +++ /dev/null @@ -1,39 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AstroAwani.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/dLzgBUj.png" group-title="",Astro Awani (720p) [Not 24/7] -https://awanitv.akamaized.net/hls/live/2017836/LiveTV1/index.m3u8 -#EXTINF:-1 tvg-id="AstroVaanavil.my" tvg-country="MY" tvg-language="Tamil" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/397_144.png" group-title="",Astro Vaanavil [Geo-blocked] -https://agsplayback01.astro.com.my/CH3/master_VAANGOSHOP5.m3u8 -#EXTINF:-1 tvg-id="BeritaRTM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/Berita-NEW-PlayerLogo.jpg" group-title="",Berita RTM (1080p) -https://rtmlive03tv.secureswiftcontent.com/rtmchannel/03-manifest.mpd -#EXTINF:-1 tvg-id="BernamaTV.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/502_300.png" group-title="",Bernama TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcZg5r9hBqK_VPUT2I7eYVw/live -#EXTINF:-1 tvg-id="CinemaWorld.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/gHCOcuF.png" group-title="",CinemaWorld (576p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h04/index.m3u8 -#EXTINF:-1 tvg-id="DramaSangat.my" tvg-country="MY" tvg-language="Malay" tvg-logo="" group-title="",Drama Sangat (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/Drama_Sangat.m3u8 -#EXTINF:-1 tvg-id="Hello.my" tvg-country="MY" tvg-language="English" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/702_300.png" group-title="",Hello [Geo-blocked] -https://agsplayback01.astro.com.my/CH1/master_HELLOGOSHOP6.m3u8 -#EXTINF:-1 tvg-id="MaahTV.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/MRWFcox.jpg" group-title="",Maah TV (720p) [Not 24/7] -http://51.210.199.33/hls/stream.m3u8 -#EXTINF:-1 tvg-id="NTV7.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/ntv7.png" group-title="",NTV 7 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/DidikTVKPM.m3u8 -#EXTINF:-1 tvg-id="OKEY.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/TVlogotvokay.jpg" group-title="",OKEY (1080p) -https://rtmlive02tv.secureswiftcontent.com/rtmchannel/02-manifest.mpd -#EXTINF:-1 tvg-id="SukanRTM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/tvSUKANlogo_NEW.jpg" group-title="",Sukan RTM (1080p) -https://rtmlive06tv.secureswiftcontent.com/rtmchannel/06-manifest.mpd -#EXTINF:-1 tvg-id="TV1.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/Logo-TV1-May21-JPG.jpg" group-title="",TV1 (1080p) -https://rtmlive01tv.secureswiftcontent.com/rtmchannel/01-manifest.mpd -#EXTINF:-1 tvg-id="TV2.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://tv2.rtm.gov.my/assets/img/TV2.png" group-title="",TV2 (1080p) -https://rtmlive05tv.secureswiftcontent.com/rtmchannel/05-manifest.mpd -#EXTINF:-1 tvg-id="TV3.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv3.png" group-title="",TV3 (720p) [Timeout] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV3.m3u8 -#EXTINF:-1 tvg-id="TV6.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/TV6-PlayerLogo-JPG.jpg" group-title="",TV6 (1080p) -https://rtmlive07tv.secureswiftcontent.com/rtmchannel/07-manifest.mpd -#EXTINF:-1 tvg-id="TV8.my" tvg-country="MY" tvg-language="Chinese" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv8.png" group-title="",TV8 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/8TV.m3u8 -#EXTINF:-1 tvg-id="TV9.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv9.png" group-title="",TV9 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV9.m3u8 -#EXTINF:-1 tvg-id="TVIKIM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/Z0dyJK7.jpg" group-title="",TVIKIM (720p) [Not 24/7] -http://edge.vediostream.com/abr/tvikim/playlist.m3u8 -#EXTINF:-1 tvg-id="TVS.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/429_144.png" group-title="",TVS (576p) [Geo-blocked] -https://agsplayback01.astro.com.my/CH1/master_AGS_TVS.m3u8 diff --git a/channels/mz.m3u b/channels/mz.m3u deleted file mode 100644 index 52442c6e3..000000000 --- a/channels/mz.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TVManaMocambique.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5UIy5tD.png" group-title="Religious",TV Maná Moçambique (576p) [Not 24/7] -http://c3.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_5.png" group-title="General",TVM (480p) -http://196.28.226.121:1935/live/smil:Channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_5.png" group-title="General",TVM (480p) [Not 24/7] -http://online.tvm.co.mz:1935/live/smil:Channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMInternacional.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_1.png" group-title="General",TVM Internacional (480p) [Not 24/7] -http://online.tvm.co.mz:1935/live/smil:Channel2.smil/playlist.m3u8 diff --git a/channels/ne.m3u b/channels/ne.m3u deleted file mode 100644 index abafade9d..000000000 --- a/channels/ne.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TeleSahel.ne" tvg-country="NE" tvg-language="French" tvg-logo="" group-title="",Télé Sahel (480p) [Geo-blocked] -https://iptv--iptv.repl.co/French/tele_sahel diff --git a/channels/ng.m3u b/channels/ng.m3u deleted file mode 100644 index 59fff2a61..000000000 --- a/channels/ng.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AfricaTV1.ng" tvg-country="NG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vn9jvdV.png" group-title="",Africa TV1 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 -#EXTINF:-1 tvg-id="AfricaTV2.ng" tvg-country="NG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vn9jvdV.png" group-title="",Africa TV2 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="AfricaTV3.ng" tvg-country="NG" tvg-language="English" tvg-logo="http://www.africagroup.tv/img/logo-h-tv3.png" group-title="",Africa TV3 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv3/playlist.m3u8 -#EXTINF:-1 tvg-id="Channels24.ng" tvg-country="NG" tvg-language="English" tvg-logo="" group-title="",Channels 24 [Offline] -http://93.152.174.144:4000/play/ch24ng/index.m3u8 -#EXTINF:-1 tvg-id="ComedyChannel.ng" tvg-country="NG" tvg-language="English" tvg-logo="" group-title="",Comedy Channel [Offline] -http://93.152.174.144:4000/play/comedych/index.m3u8 -#EXTINF:-1 tvg-id="EMTV.ng" tvg-country="NG" tvg-language="English;French" tvg-logo="" group-title="",EM.tv [Offline] -http://93.152.174.144:4000/play/kingsword/index.m3u8 -#EXTINF:-1 tvg-id="EmmanuelTV.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/pjoBzRS.jpg" group-title="",Emmanuel TV (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/23202872/events/7200883/live.m3u8 -#EXTINF:-1 tvg-id="LagosTelevision.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/rjLxSfx.png" group-title="",Lagos Television (360p) [Not 24/7] -http://185.105.4.193:1935/ltv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTAInternational.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/FlqaUpt.png" group-title="",NTA International (576p) [Not 24/7] -https://api.visionip.tv/live/ASHTTP/visiontvuk-entertainment-ntai-hsslive-25f-4x3-MB/playlist.m3u8 diff --git a/channels/ni.m3u b/channels/ni.m3u deleted file mode 100644 index 204415cd6..000000000 --- a/channels/ni.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal6.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/a/ac/Canal_6_Nicaraguense.png" group-title="Local",Canal 6 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/canal6nicaraguaoficial -#EXTINF:-1 tvg-id="Canal9.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/1f/Canal_9_Nicaragua_nuevo.png" group-title="Local",Canal 9 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH09-HD-CVS/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/4f/Canal_10_Nicaragua.png" group-title="Local",Canal 10 (576p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH10-SD-ZUK/playlist.m3u8 -#EXTINF:-1 tvg-id="jbn.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://www.jbn39.com/wp-content/uploads/2019/02/logo-01-1.png" group-title="Religious",JBN (720p) [Not 24/7] -https://inliveserver.com:1936/17510/17510/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/6/6a/Nicavision1993.png/revision/latest?cb=20180426154048" group-title="Local",Nicavisión Canal 12 (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal12/videocanal12/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal8.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/e/e0/Tn8_logotipo_2021.png" group-title="Local",Telenica Canal 8 (tn8) (720p) [Not 24/7] -https://60417ddeaf0d9.streamlock.net/tn8/videotn8/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/28/Canal_2_%28Nicaragua%29_logo.png" group-title="Local",Televicentro Canal 2 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH02-HD-YON/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b4/Canal_11_Nicaragua_2010_3.png" group-title="Local",TV RED Canal 11 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH11-SD-GZN/playlist.m3u8 -#EXTINF:-1 tvg-id="VivaNicaraguaCanal13.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/97/VivaCanal13current.png" group-title="Local",Viva Nicaragua Canal 13 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vivanicaragua13 -#EXTINF:-1 tvg-id="vostv.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/8/86/VosTV_2010.png" group-title="Local",Vos Tv (720p) [Not 24/7] -http://ott.streann.com:8080/loadbalancer/services/public/channels/59e60c4997381ef50d15c041/playlist.m3u8 -#EXTINF:-1 tvg-id="wtv.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://wmediosnicaragua.com/img/LOGO-CANAL.png" group-title="Entertainment",WTV Canal 20 (720p) -https://cloudvideo.servers10.com:8081/8130/index.m3u8 diff --git a/channels/nl.m3u b/channels/nl.m3u deleted file mode 100644 index 1a9360eb9..000000000 --- a/channels/nl.m3u +++ /dev/null @@ -1,217 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BazmeAsheghan.nl" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Bazme Asheghan (720p) [Offline] -https://5dc143936e9ae.streamlock.net/saeed_nl/saeed_nl/chunklist.m3u8 -#EXTINF:-1 tvg-id="BNRNieuwsradio.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wYbO6ch.jpg" group-title="",BNR Nieuwsradio (720p) [Geo-blocked] -https://bnr-cache-cdp.triple-it.nl/studio/index.m3u8 -#EXTINF:-1 tvg-id="BR6TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3155_1_5fb76467cc1520.28496650.svg" group-title="Local",BR6 TV (720p) -https://58c04fb1d143f.streamlock.net/slob/slob/playlist.m3u8 -#EXTINF:-1 tvg-id="DenHaagTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/gkzlRED.jpg" group-title="",Den Haag TV (1080p) [Not 24/7] -http://wowza5.video-streams.nl:1935/denhaag/denhaag/playlist.m3u8 -#EXTINF:-1 tvg-id="EDETV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",EDE TV (480p) [Not 24/7] -https://ms7.mx-cd.net/tv/113-474263/EdeTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FeelGoodTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Feelgood.svg" group-title="Local",Feel Good TV (720p) [Not 24/7] -https://58c04fb1d143f.streamlock.net/feel_good_radio_1/feel_good_radio_1/playlist.m3u8 -#EXTINF:-1 tvg-id="GigantFM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/7AC8etU.png" group-title="",Gigant FM (720p) [Timeout] -https://streams.uitzending.tv/gigantfm/gigantfm/playlist.m3u8 -#EXTINF:-1 tvg-id="GORTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/zAFt893.png" group-title="Music",GO-RTV (720p) -http://593aed234297b.streamlock.net:1935/gotvsjoerd/gotvsjoerd/playlist.m3u8 -#EXTINF:-1 tvg-id="Groningen1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Groningen1 (1080p) [Not 24/7] -http://59132e529e3d1.streamlock.net/Groningen1/Groningen1/playlist.m3u8 -#EXTINF:-1 tvg-id="HK13TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",HK13 TV (1080p) [Not 24/7] -http://mtxstr001.matrixdata.nl/live/hk13/playlist.m3u8 -#EXTINF:-1 tvg-id="IdeaalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Ideaal%20TV.svg" group-title="Local",Ideaal TV (480p) -https://ms2.mx-cd.net/dtv-09/236-2051366/Ideaal_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JenZ.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/jenztv.svg" group-title="Local",JenZ (1080p) -https://ms2.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JENZ.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/R1UP2cj.png" group-title="Music",JENZ (1080p) -https://ms7.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) -https://live.jintv.org:12443/medialive/jintv.m3u8 -#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/27 -#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/27.m3u8 -#EXTINF:-1 tvg-id="L1 TV NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/8bqkwkG.png" group-title="",L1mburg (720p) [Not 24/7] -https://d34pj260kw1xmk.cloudfront.net/live/l1/tv/index.m3u8 -#EXTINF:-1 tvg-id="LansingerlandTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Lansingerland%20TV.svg" group-title="Local",Lansingerland TV (1080p) -https://streaming-outbound-video-02.rtvlansingerland.nl/hls/livetv/index.m3u8 -#EXTINF:-1 tvg-id="LOETV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3188_1_60059b84b6b032.35066844.svg" group-title="Local",LOE TV (720p) -https://58c04fb1d143f.streamlock.net/loemedia/loemedia/playlist.m3u8 -#EXTINF:-1 tvg-id="LONTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/LON%20TV.svg" group-title="Local",LON TV (720p) [Timeout] -https://streamingserver01.omroepnuenen.nl/lon/lonweb_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MeerTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/hG2k4QL.png" group-title="",Meer TV (720p) [Not 24/7] -https://593aed234297b.streamlock.net/meervandaag/meervandaag/playlist.m3u8 -#EXTINF:-1 tvg-id="ML5TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/ML5%20TV.svg" group-title="Local",ML5 TV (480p) -https://ms2.mx-cd.net/dtv-02/204-1147034/3ML_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-1.png" group-title="",NPO 1 (1080p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-1.png" group-title="",NPO 1 (342p) [Geo-blocked] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo1/npo1.isml/.m3u8 -#EXTINF:-1 tvg-id="NPO2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-2.png" group-title="",NPO 2 (342p) -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo2/npo2.isml/.m3u8 -#EXTINF:-1 tvg-id="NPO2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-2.png" group-title="",NPO 2 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-3.png" group-title="",NPO 3 (1080p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-3.png" group-title="",NPO 3 (342p) [Not 24/7] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo3/npo3.isml/.m3u8 -#EXTINF:-1 tvg-id="NPONieuws.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/nponieuws.svg" group-title="News",NPO Nieuws (576p) [Offline] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/journaal24/journaal24.isml/.m3u8 -#EXTINF:-1 tvg-id="NPOPolitiek.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/npopolitiek.svg" group-title="",NPO Politiek (576p) [Offline] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/politiek24/politiek24.isml/.m3u8 -#EXTINF:-1 tvg-id="OmroepBrabant.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KLYsKKC.png" group-title="",Omroep Brabant (1080p) -https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/tv/index.m3u8 -#EXTINF:-1 tvg-id="OmroepBrabantRadio.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KLYsKKC.png" group-title="",Omroep Brabant Radio (1080p) -https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/visualradio/index.m3u8 -#EXTINF:-1 tvg-id="OmroepCentraalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="Local",Omroep Centraal TV (480p) -https://ms7.mx-cd.net/tv/208-1258878/Omroep_Centraal_GB.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepFlevoland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/b6eHPxa.jpg" group-title="",Omroep Flevoland (540p) [Not 24/7] -https://d5ms27yy6exnf.cloudfront.net/live/omroepflevoland/tv/index.m3u8 -#EXTINF:-1 tvg-id="TV Gelderland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2LZJo7k.png" group-title="",Omroep Gelderland (720p) [Not 24/7] -https://web.omroepgelderland.nl/live/livetv.m3u8 -#EXTINF:-1 tvg-id="TV Gelderland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2LZJo7k.png" group-title="",Omroep Gelderland (1080p) [Timeout] -https://rrr.sz.xlcdn.com/?account=omroepgelderland&file=livetv&output=playlist.m3u8&protocol=http&service=wowza&type=live -#EXTINF:-1 tvg-id="OmroepHulstTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/omroephulsttv.svg" group-title="Local",Omroep Hulst TV (720p) [Not 24/7] -https://stream.iconbroadcastgroup.com:1443/OH-Playout/smil:OH-Playout.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepOnsWestBrabant.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Omroep Ons West Brabant (480p) -https://ms2.mx-cd.net/tv/177-710139/Ons_West_Brabant_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepPM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/1uxxeWX.png" group-title="",Omroep P&M (480p) [Offline] -https://ms7.mx-cd.net/tv/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepPMTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.omroeppenm.nl/views/peelmaas/images/logo.png" group-title="Local",Omroep P&M TV (1080p) -https://ms7.mx-cd.net/dtv-10/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepTilburg.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/rhazkU7.png" group-title="",Omroep Tilburg (480p) -https://ms2.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepTilburgTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Omroep%20Tilburg%20TV.svg" group-title="Local",Omroep Tilburg TV (480p) -https://ms7.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV West NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2YELwRl.jpg" group-title="",Omroep West (1080p) [Not 24/7] -https://d2dslh4sd7yvc1.cloudfront.net/live/omroepwest/ngrp:tv-feed_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Omroep Zeeland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/3c3QUSn.png" group-title="",Omroep Zeeland (1080p) -https://d3isaxd2t6q8zm.cloudfront.net/live/omroepzeeland/tv/index.m3u8 -#EXTINF:-1 tvg-id="OmropFryslan.nl" tvg-country="NL" tvg-language="Dutch;Western Frisian" tvg-logo="https://www.omropfryslan.nl/data/omrop/favicon/favicon-96x96.png" group-title="",Omrop Fryslân (1080p) [Not 24/7] -https://d3pvma9xb2775h.cloudfront.net/live/omropfryslan/stream04/index.m3u8 -#EXTINF:-1 tvg-id="OpenRotterdam.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="http://www.juliette-events.nl/wp-content/uploads/2014/09/Logo-OPEN-Rotterdam-november-20131.png" group-title="",Open Rotterdam (480p) [Not 24/7] -http://ms2.mx-cd.net/tv/141-573555/OPEN_Rotterdam.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ORTS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",ORTS (480p) -http://ms7.mx-cd.net/tv/200-1006554/ORTS_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PodiumTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC1&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="PodiumTV2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV 2 (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC2&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="PodiumTV3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV 3 (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC3&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="Qmusic.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/P8cVMle.jpg" group-title="Music",Qmusic (720p) -https://dpp-qmusicnl-live.akamaized.net/streamx/QmusicNL.m3u8 -#EXTINF:-1 tvg-id="Radio10.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wDB4Gd2.png" group-title="",Radio 10 (720p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/698637/VR-Radio10-1/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio350.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio 350 (360p) [Not 24/7] -https://stream.radio350.nl/hls/radio350.m3u8 -#EXTINF:-1 tvg-id="Radio538.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/sd7BX9H.png" group-title="",Radio 538 (270p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/624107/VR-Radio538-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioA1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio A1 (1080p) [Not 24/7] -http://stream.a1mediagroep.eu/hls/a1studio.m3u8 -#EXTINF:-1 tvg-id="RadioAalsmeerTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/radioaalsmeer.svg" group-title="Local",Radio Aalsmeer TV (720p) [Not 24/7] -https://radioaalsmeer.nl:4443/live/tv.m3u8 -#EXTINF:-1 tvg-id="RadioNL.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio NL (1080p) [Not 24/7] -http://558bd16067b67.streamlock.net:1935/radionl/radionl/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRN7.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio RN7 (576p) [Geo-blocked] -http://streaming.rn7.nl/rn7tv/live_576/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioVeronica.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/OTyX1vp.png" group-title="",Radio Veronica (270p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/585615/VR-Veronica-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioVOSFM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio VOS FM (720p) [Not 24/7] -http://593aed234297b.streamlock.net:1935/henrymeeuws/henrymeeuws/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVNieuws.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/PIUI2zZ.png" group-title="",Regio TV Nieuws (1080p) [Not 24/7] -http://highvolume04.streampartner.nl/regiomedia/regiomedia/playlist.m3u8 -#EXTINF:-1 tvg-id="Regio8TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Regio%208%20TV.svg" group-title="Local",Regio8 TV (1080p) -https://ms7.mx-cd.net/tv/71-475821/Regio8TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Regio90TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/regio90tv.svg" group-title="Local",Regio90 TV (480p) -https://ms7.mx-cd.net/MC-Monitoring/260-2403096/90TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RN7TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/RN7_Logo.jpg/32px-RN7_Logo.jpg" group-title="",RN 7 TV (1080p) [Geo-blocked] -https://streaming.rn7.nl/rn7live_abr/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVAmstelveen.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://d3kle7qwymxpcy.cloudfront.net/images/broadcasts/51/71/17115/1/c175.png" group-title="",RTV Amstelveen (720p) [Not 24/7] -https://live.rtva.nl/live/zender.m3u8 -#EXTINF:-1 tvg-id="RTVArnhem.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xqBGPA1.png" group-title="",RTV Arnhem (480p) -https://ms2.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVConnectTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.rtvconnect.nl/templates/localgrid/omroep/rtvconnect/images/rtvconnect.png" group-title="Local",RTV Connect TV (480p) -https://ms7.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDordrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/vryzDJk.jpg" group-title="",RTV Dordrecht (480p) -https://ms2.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDordrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/vryzDJk.jpg" group-title="",RTV Dordrecht (480p) -https://ms7.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDrenthe.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/DsD7Tsu.png" group-title="",RTV Drenthe (1080p) -https://cdn.rtvdrenthe.nl/live/rtvdrenthe/tv/index.m3u8 -#EXTINF:-1 tvg-id="RTVGO.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV GO! (1080p) [Not 24/7] -http://59132e529e3d1.streamlock.net:1935/Groningen1/Groningen1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVMaastricht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/5m3d7cP.jpg" group-title="",RTV Maastricht (720p) [Not 24/7] -http://stream.rtvmaastricht.nl:8081/rtvm_live/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNOF1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV NOF 1 (720p) -http://593aed234297b.streamlock.net:1935/rtvnof/rtvnof/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNOF2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV NOF 2 (720p) [Not 24/7] -http://593aed234297b.streamlock.net:1935/rtvnof2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNoord.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/yZEsfsv.png" group-title="",RTV Noord (1080p) [Not 24/7] -https://media.rtvnoord.nl/live/rtvnoord/tv/index.m3u8 -#EXTINF:-1 tvg-id="RTVNoordExtra.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/yZEsfsv.png" group-title="",RTV Noord Extra (1080p) [Not 24/7] -https://media.rtvnoord.nl/live/rtvnoord/extra/index.m3u8 -#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xC9hOVK.png" group-title="",RTV Noordoost Friesland (720p) -https://593aed234297b.streamlock.net/rtvnof/rtvnof/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xC9hOVK.png" group-title="",RTV Noordoost Friesland (720p) [Not 24/7] -http://cdn15.streampartner.nl:1935/rtvnof2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVOost.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV Oost (720p) [Offline] -https://mediacdn.rtvoost.nl/live/rtvoost/tv-oost/index.m3u8 -#EXTINF:-1 tvg-id="RTVPurmerend.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_10018_1_6156d066d31357.29556375.svg" group-title="Local",RTV Purmerend (720p) -https://ms2.mx-cd.net/dtv-10/268-2641474/RTV_Purmerend_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVRijnmond.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/TYsLlr0.png" group-title="",RTV Rijnmond (1080p) -https://d3r4bk4fg0k2xi.cloudfront.net/rijnmondTv/index.m3u8 -#EXTINF:-1 tvg-id="RTVRijnstreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/RTV%20Rijnstreek%20TV.svg" group-title="Local",RTV Rijnstreek TV (720p) [Not 24/7] -https://vdo.verrips.email:3789/live/televisielive.m3u8 -#EXTINF:-1 tvg-id="RTVSlingeland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/slingelandtv.svg" group-title="",RTV Slingeland (1080p) [Not 24/7] -https://ms7.mx-cd.net/dtv-10/105-475831/RTV_Slingeland.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVUtrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/5cVkPR3.png" group-title="",RTV Utrecht (1080p) -https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/rtvutrecht/index.m3u8 -#EXTINF:-1 tvg-id="RTVWesterwolde.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/86oiZRV.jpg" group-title="",RTV Westerwolde (432p) [Offline] -http://59132e529e3d1.streamlock.net:1935/westerwolde/westerwolde/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVWesterwolde.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/86oiZRV.jpg" group-title="",RTV Westerwolde (432p) [Offline] -https://59132e529e3d1.streamlock.net/westerwolde/westerwolde/playlist.m3u8 -#EXTINF:-1 tvg-id="rtvutrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",rtvutrecht (1080p) -http://media.rtvutrecht.nl/live/rtvutrecht/rtvutrecht/index.m3u8 -#EXTINF:-1 tvg-id="Salto4.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="",Salto 4 (1080p) [Offline] -https://salto-streams.nl/hls/sotv2_high.m3u8 -#EXTINF:-1 tvg-id="SaltoADE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="",Salto ADE (1080p) -https://live.salto.nl/hls/at5_high.m3u8 -#EXTINF:-1 tvg-id="SaltoBrasaMusic.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="Music",Salto Brasa Music (1080p) -https://salto-streams.nl/hls/sotv1_high.m3u8 -#EXTINF:-1 tvg-id="Samen1TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/RTV Apeldoorn TV.svg" group-title="Local",Samen1 TV (720p) -https://server-67.stream-server.nl:1936/Samen1TV/Samen1TV/playlist.m3u8 -#EXTINF:-1 tvg-id="SilenceTV.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/826gz7r.jpg" group-title="",Silence TV (720p) [Not 24/7] -http://93.190.140.42:8081/SilenceTV/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SirisTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_10010_1_6034f690b98141.63824269.svg" group-title="Local",Siris TV (720p) [Not 24/7] -https://videostream.siris.nl/hls/playoutweb/index.m3u8 -#EXTINF:-1 tvg-id="StreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/streektvdewolden.svg" group-title="",Streek TV (720p) [Not 24/7] -http://cdn22.streampartner.nl/streektv/streektv/playlist.m3u8 -#EXTINF:-1 tvg-id="StreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/streektvdewolden.svg" group-title="",Streek TV (720p) [Not 24/7] -https://58e4d59f4ba2c.streamlock.net/streektv/streektv/playlist.m3u8 -#EXTINF:-1 tvg-id="TommyTeleshopping.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/cNgwmz3.jpg" group-title="Shop",Tommy Teleshopping (480p) -http://ms7.mx-cd.net/tv/71-1356094/Tommy_Teleshopping.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEllef.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/4kURvuH.png" group-title="",TV Ellef (540p) [Not 24/7] -https://58e4d59f4ba2c.streamlock.net/tvellef/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVValkenburg.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bpqkkX7.jpg" group-title="",TV Valkenburg (720p) [Not 24/7] -https://livestream.tvvalkenburg.tv/hls/tv-valkenburg/tv-valkenburg.m3u8 -#EXTINF:-1 tvg-id="UStad.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.ustad.nl/inc/css/images/logo-rtvutrecht.png" group-title="",UStad (1080p) -https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/ustad/index.m3u8 -#EXTINF:-1 tvg-id="VechtdalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/vechtdalleefttv.svg" group-title="",Vechtdal TV (480p) -https://ms2.mx-cd.net/tv/81-334271/VechtdalTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV (720p) [Not 24/7] -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) -https://ms2.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) -https://ms7.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) -https://ms7.mx-cd.net/tv/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="XITE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/xite.png" group-title="",XITE (720p) [Not 24/7] -https://ms2.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="XITEBE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wvo2EYr.jpg" group-title="Music",XITE (BE) (720p) [Not 24/7] -https://ms7.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZO34.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KrEBHLw.jpg" group-title="",ZO!34 (720p) [Timeout] -https://streams.uitzending.tv/zo34/zo34/playlist.m3u8 -#EXTINF:-1 tvg-id="ZuidWestTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="hhttps://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Zuidwesttv.svg" group-title="Local",ZuidWest TV (1080p) -https://live.zuidwesttv.nl/live/zwtv.m3u8 diff --git a/channels/nl_samsung.m3u b/channels/nl_samsung.m3u deleted file mode 100644 index 110a305fc..000000000 --- a/channels/nl_samsung.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) [Not 24/7] -http://fueltv-fueltv-14-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeNetherlands.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Netherlands (720p) [Not 24/7] -https://jukin-peopleareawesome-2-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionNetherland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Netherland) (720p) [Offline] -https://rakuten-action-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Netherlands) (720p) [Offline] -https://rakuten-comedy-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesNetherland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Netherland) (720p) [Offline] -https://rakuten-documentaries-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Netherlands) (720p) [Offline] -https://rakuten-drama-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Netherlands) (720p) [Offline] -https://rakuten-family-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Netherlands) (720p) [Offline] -https://rakuten-spotlight-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKarokeNetherland.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karoke (Netherland) (1080p) -https://stingray-karaoke-4-nl.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/no.m3u b/channels/no.m3u deleted file mode 100644 index adcc93d1f..000000000 --- a/channels/no.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalMotor.no" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/BHm0wem.png" group-title="Sports",Canal Motor (720p) -http://digicom.hls.iptvdc.com/canalmotor/index.m3u8 -#EXTINF:-1 tvg-id="CanalMotor.no" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/BHm0wem.png" group-title="Sports",Canal Motor (720p) -https://digicom.hls.iptvdc.com/motorstv/index.m3u8 -#EXTINF:-1 tvg-id="FatstoneTV.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.vimeocdn.com/video/438638085_780x439.jpg" group-title="",Fatstone TV [Offline] -http://bgo1.cdn.s3m.no/fs/live/ngrp:live_all/chunklist_b5196000.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Kanal10Asia.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="" group-title="",Kanal 10 Asia (540p) -http://cdn-kanal10.crossnet.net:1935/kanal10/kanal10asia/playlist.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) -http://194.132.85.39/19333-live0/_definst_/push-stortinget_1/chunklist_w1136072204.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) [Not 24/7] -https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) [Not 24/7] -https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetHS2.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS2 (576p) -https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetHS2.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS2 (576p) [Not 24/7] -https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetN202.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget N-202 (576p) [Not 24/7] -https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetN202.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget N-202 (576p) [Not 24/7] -https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetNettTV.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/3U1p695.png" group-title="",Stortinget Nett-TV (576p) -http://flash0.19333-live0.dna.qbrick.com:1935/19333-live0/push-stortinget_1/playlist.m3u8 -#EXTINF:-1 tvg-id="StortingetStortingssalen.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget Stortingssalen (576p) -https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetStortingssalen.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget Stortingssalen (576p) [Not 24/7] -https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="TV2Sporten.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/SCeh3KR.png" group-title="Sports",TV 2 Sporten (720p) -https://ws31-hls-live.akamaized.net/out/u/1416253.m3u8 -#EXTINF:-1 tvg-id="TVHaugaland.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/lHDz1bm.png" group-title="",TV Haugaland (720p) [Not 24/7] -https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.ip-only.net/90216-cachelive0/smil:APPLETV/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHaugaland.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/lHDz1bm.png" group-title="",TV Haugaland (720p) [Not 24/7] -https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.qbrick.com/90216-cachelive0/smil:APPLETV/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2 Nyhetsstrommen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/horCLMX.jpg" group-title="",TV2 Nyhetsstrømmen (720p) -https://ws15-hls-live.akamaized.net/out/u/1153546.m3u8 diff --git a/channels/no_samsung.m3u b/channels/no_samsung.m3u deleted file mode 100644 index 2c5cf54ff..000000000 --- a/channels/no_samsung.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) -https://rakuten-africanews-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) -https://mmm-ducktv-4-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavtVNorway.us" tvg-country="NO" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV Norway (720p) [Offline] -https://mavtv-mavtvglobal-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Norway) (720p) [Offline] -https://rakuten-action-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Norway) (720p) [Offline] -https://rakuten-comedy-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Norway) (720p) [Offline] -https://rakuten-documentaries-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Norway) (720p) [Offline] -https://rakuten-drama-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Norway) (720p) [Offline] -https://rakuten-family-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Norway) (720p) [Offline] -https://rakuten-spotlight-11-no.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/np.m3u b/channels/np.m3u deleted file mode 100644 index 98c8d991c..000000000 --- a/channels/np.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AvenuesKhabar.np" tvg-country="NP" tvg-language="Nepali" tvg-logo="https://i.imgur.com/GDetViR.jpg" group-title="News",Avenues Khabar (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCMDzPE_7fcZSRJgpwIVor_A/live -#EXTINF:-1 tvg-id="KantipurTV.np" tvg-country="NP" tvg-language="Nepali" tvg-logo="http://jcss-cdn.ekantipur.com//kantipur-tv/images/ktv-hd.png" group-title="Entertainment",Kantipur TV (1080p) -https://ktvhdnpicc.ekantipur.com/ktv_desktop_02347834/hd/kantipurtv/hd_1080/chunks.m3u8 diff --git a/channels/nz.m3u b/channels/nz.m3u deleted file mode 100644 index 2099c898a..000000000 --- a/channels/nz.m3u +++ /dev/null @@ -1,31 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BreezeTV.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/3dpH9XF.jpg" group-title="Music",Breeze TV (720p) -https://livestreamdirect-breezetv.mediaworks.nz/breezetv.m3u8 -#EXTINF:-1 tvg-id="Firstlight.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/2TKL6BX.png" group-title="",Firstlight (576p) -https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JuiceTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.juice.png" group-title="",Juice TV (1080p) [Not 24/7] -https://juicex.nz/hls/mystream.m3u8 -#EXTINF:-1 tvg-id="KordiaTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/7FCjq7C.png" group-title="",Kordia TV (1080p) -https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8 -#EXTINF:-1 tvg-id="MaoriTV.nz" tvg-country="NZ" tvg-language="Maori" tvg-logo="https://freeviewnz.tv/nonumbracoimages/ChannelsOpg/freeview-channel-logos-38.png" group-title="",Maori TV (1080p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/720612/1614493167001_1/master.m3u8 -#EXTINF:-1 tvg-id="parliament.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/BsHt9f2.png" group-title="Legislative",Parliament TV (1080p) -https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8 -#EXTINF:-1 tvg-id="TeReo.nz" tvg-country="NZ" tvg-language="Maori" tvg-logo="http://www.freeviewnz.tv/nonumbracoimages/ChannelsOpg/te-reo.png" group-title="",Te Reo (1080p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/720613/1614493167001_2/master.m3u8 -#EXTINF:-1 tvg-id="TheEdge.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/ZHJVvOj.png" group-title="Music",The Edge (720p) -https://livestreamdirect-edgetv.mediaworks.nz/edgetv.m3u8 -#EXTINF:-1 tvg-id="Three.nz" tvg-country="NZ" tvg-language="English" tvg-logo="" group-title="General",Three [Geo-blocked] -https://livestreamdirect-three.mediaworks.nz/three.m3u8 -#EXTINF:-1 tvg-id="TVNZ1.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/58puzcK.png" group-title="General",TVNZ 1 [Geo-blocked] -https://d2ce82tpc3p734.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_1/master.m3u8 -#EXTINF:-1 tvg-id="TVNZ2.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/7W7J7CN.png" group-title="General",TVNZ 2 [Geo-blocked] -https://duoak7vltfob0.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_2/master.m3u8 -#EXTINF:-1 tvg-id="TVNZDuke.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/EVvp5nh.png" group-title="General",TVNZ Duke [Geo-blocked] -https://dayqb844napyo.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_Duke/master.m3u8 -#EXTINF:-1 tvg-id="tv.45" tvg-country="NZ" tvg-language="English" tvg-logo="http://iptv.matthuisman.nz/nz/images/freeviewnz.45.png" group-title="Shop",TVSN Shopping (360p) -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn_nz/tvsn_nz_750.m3u8 -#EXTINF:-1 tvg-id="WairarapaTV.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://www.freeviewnz.tv/nonumbracoimages/ChannelsOpg/LogoforFreeviewWebsite.png" group-title="",Wairarapa TV (1080p) [Not 24/7] -https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8 -#EXTINF:-1 tvg-id="WairarapaTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/qwGFZKE.png" group-title="",Wairarapa TV (360p) [Not 24/7] -http://stream.wairarapatv.co.nz/Cellular_High/playlist.m3u8 diff --git a/channels/om.m3u b/channels/om.m3u deleted file mode 100644 index 2d5bc502e..000000000 --- a/channels/om.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlIstiqamaTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H7D7dmK.png" group-title="Religious",Al Istiqama TV (576p) -https://jmc-live.ercdn.net/alistiqama/alistiqama.m3u8 -#EXTINF:-1 tvg-id="OmanAlthakafia.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="" group-title="",Oman Althakafia (1080p) -https://partwo.cdn.mangomolo.com/omcultural/smil:omcultural.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanLive.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="" group-title="",Oman Live (1080p) -https://partwo.cdn.mangomolo.com/omlive/smil:omlive.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanSportsTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="http://part.gov.om/part/images/oman_sport.png" group-title="Sports",Oman Sports TV (1080p) [Offline] -https://partne.cdn.mangomolo.com/omsport/smil:omsport.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C7kfubs.png" group-title="General",Oman TV (1080p) -https://partne.cdn.mangomolo.com/omantv/smil:omantv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C7kfubs.png" group-title="General",Oman TV (272p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/oman_tv/hls1/oman_tv.m3u8 diff --git a/channels/pa.m3u b/channels/pa.m3u deleted file mode 100644 index 4decec887..000000000 --- a/channels/pa.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ASondeSalsa.pa" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/asondesalsa/picture?width=320&height=320" group-title="Music",A Son de Salsa (720p) [Not 24/7] -https://stmv1.panelzcast.com/asondesalsa/asondesalsa/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVPanama.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://static-cdn.jtvnw.net/jtv_user_pictures/dfa1f6bf-3760-4b79-8f4e-2fcf956444c6-profile_image-300x300.png" group-title="",BTV Panamá (480p) [Offline] -https://stream.oursnetworktv.com/latin/btvp/playlist.m3u8 -#EXTINF:-1 tvg-id="CabinaRPCRadio.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2017_01/RPC_(2010).png.4630b569f7c275038611229447482050.png" group-title="",Cabina RPC Radio (360p) -https://mdstrm.com/live-stream-playlist/5d976689ab55a60f94ec98e8.m3u8 -#EXTINF:-1 tvg-id="CabinaTelemetroRadio.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/s-live-5d97ca5673de440761ff194e.png" group-title="",Cabina Telemetro Radio (480p) -https://mdstrm.com/live-stream-playlist/5d97ca5673de440761ff194e.m3u8 -#EXTINF:-1 tvg-id="DreikoTv.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/dreikoartsstudio/picture?width=320&height=320" group-title="Animation",DreikoTv (480p) [Not 24/7] -https://stmv3.voxtvhd.com.br/reikotv/reikotv/playlist.m3u8 -#EXTINF:-1 tvg-id="HosannaVision.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tUHkolc.png" group-title="Religious",Hosanna Vision (480p) [Not 24/7] -https://1206618505.rsc.cdn77.org/LS-ATL-59020-1/playlist.m3u8 -#EXTINF:-1 tvg-id="NexTV.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="" group-title="",Nex TV (Canal 21) [Timeout] -http://209.91.213.10:8088/play/a01o -#EXTINF:-1 tvg-id="OyeTV.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IqLT2CC.png" group-title="Music",Oye TV (480p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88df173853e7072f3f953f.m3u8 -#EXTINF:-1 tvg-id="RPC.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2017_01/RPC_(2010).png.4630b569f7c275038611229447482050.png" group-title="",RPC (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88d659120a717cf93ce620.m3u8 -#EXTINF:-1 tvg-id="Teleclásicos.pa" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/109037038122033/picture?width=320&height=320" group-title="",Teleclásicos (480p) [Not 24/7] -https://tvdatta.com:3484/stream/play.m3u8 -#EXTINF:-1 tvg-id="Telemetro.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/e/e0/Telemetro_2010_logo.png/revision/latest?cb=20181013042937&path-prefix=es" group-title="",Telemetro (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88dd2229b0890723df2165.m3u8 -#EXTINF:-1 tvg-id="Telemetro.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/e/e0/Telemetro_2010_logo.png/revision/latest?cb=20181013042937&path-prefix=es" group-title="",Telemetro (480p) [Timeout] -http://209.91.213.10:8088/play/a00h -#EXTINF:-1 tvg-id="TVN.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-e1scDLqFQd8/Vx4ithci-rI/AAAAAAAACYk/Qds1kNnpYT8WnBgoJnx7jnS197He2QLngCLcB/s1600/logo-tvn.png" group-title="",TVN (720p) -https://bcovlive-a.akamaihd.net/2f670e324b9b46bba7582e919ed90924/us-east-1/6058004209001/playlist.m3u8 diff --git a/channels/pe.m3u b/channels/pe.m3u deleted file mode 100644 index 3671cb4b0..000000000 --- a/channels/pe.m3u +++ /dev/null @@ -1,423 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AndesTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CsW4Op8.png" group-title="Local",Andes Televisión (Sicusani) (720p) [Not 24/7] -https://stmv1.voxhdnet.com/tvsicuani/tvsicuani/playlist.m3u8 -#EXTINF:-1 tvg-id="AntaresTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/antaresTvRadioOficial/picture?width=320&height=320" group-title="Local",Antares Televisión (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvantares/liveantarestv/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiritv.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Asiritv/picture?width=320&height=320" group-title="Local",AsiriTV (Lima) (720p) [Not 24/7] -https://video2.lhdserver.es/asiritv/live.m3u8 -#EXTINF:-1 tvg-id="ATMTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ATMTelevisionApurimac/picture?width=320&height=320" group-title="Local",ATM Televisión (Apurimac) (720p) [Not 24/7] -https://v4.tustreaming.cl/atmtv/index.m3u8 -#EXTINF:-1 tvg-id="ATV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ATV.pe/picture?width=320&height=320" group-title="General",ATV (480p) [Not 24/7] -https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATVPlus.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/atvmasnoticias/picture?width=320&height=320" group-title="News",ATV+ Noticias (480p) [Not 24/7] -https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv-mas.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AuténticaTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Autenticatelevision/picture?width=320&height=320" group-title="Local",Auténtica Televisión (720p) [Not 24/7] -https://live.obslivestream.com/autenticatvmux/index.m3u8 -#EXTINF:-1 tvg-id="BellaAbanquinaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/2135035553436599/picture?width=320&height=320" group-title="Local",Bella Abanquina TV (Apurimac) (720p) [Not 24/7] -https://v4.tustreaming.cl/bellatv/index.m3u8 -#EXTINF:-1 tvg-id="BellaAsuncionTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Bella Asuncion TV (352p) [Not 24/7] -https://tvdatta.com:3602/stream/play.m3u8 -#EXTINF:-1 tvg-id="BestCableMasCumbia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableMusicCanal97/picture?width=320&height=320" group-title="Music",Best Cable Más Cumbia (720p) [Not 24/7] -https://ca.inka.net.pe/mascumbiatvonline/mascumbiatvonline/index.m3u8 -#EXTINF:-1 tvg-id="BestCableMusic.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableMusicCanal97/picture?width=320&height=320" group-title="Music",Best Cable Music (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablemusic/bestcablemusic/index.m3u8 -#EXTINF:-1 tvg-id="BestCablePeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableTvCanal3/picture?width=320&height=320" group-title="General",Best Cable Perú (720p) [Not 24/7] -https://ca.inka.net.pe/bestcable/bestcable/index.m3u8 -#EXTINF:-1 tvg-id="BestCableSportsPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableSportsCanal6/picture?width=320&height=320" group-title="Sports",Best Cable Sports Perú (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablesports/bestcablesports/index.m3u8 -#EXTINF:-1 tvg-id="BethelTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/hn_bethel_m.png" group-title="Religious",Bethel TV (720p) [Not 24/7] -https://ott.streann.com/loadbalancer/services/public/channels/5e0689c82cdcb4fdbcd79151/playlist.m3u8 -#EXTINF:-1 tvg-id="BeXtremeTVLima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/d9n0sOZ.png" group-title="Local",BeXtreme TV (Lima) (1080p) [Geo-blocked] -https://video1.getstreamhosting.com:1936/8106/8106/playlist.m3u8 -#EXTINF:-1 tvg-id="BHTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7hP4nps.png" group-title="General",BHTV (720p) [Not 24/7] -http://cdn1.ujjina.com:1935/iptvbhtv/livebhtvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBellezaAndina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/bellezandina/picture?width=320&height=320" group-title="Music",Cable Netword Belleza Andina TV (720p) [Not 24/7] -https://ca.inka.net.pe/bellezaandina/index.m3u8 -#EXTINF:-1 tvg-id="CNCumbia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limanortenoticias3/picture?width=320&height=320" group-title="Music",Cable Netword Cumbia TV (720p) [Not 24/7] -https://ca.inka.net.pe/cumbiatv/index.m3u8 -#EXTINF:-1 tvg-id="CNTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limanortenoticias3/picture?width=320&height=320" group-title="Local",Cable Netword TV (480p) [Not 24/7] -https://ca.inka.net.pe/cntv/index.m3u8 -#EXTINF:-1 tvg-id="CadenaTVHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/CadenaTVHuancayo//picture?width=320&height=320" group-title="Local",Cadena TV Huancayo (720p) [Not 24/7] -https://tvdatta.com:3262/live/cadenatvlive.m3u8 -#EXTINF:-1 tvg-id="CajamarcaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CajamarcaTV/picture?width=320&height=320" group-title="Local",Cajamarca TV (480p) [Not 24/7] -https://ca.inka.net.pe/cajamarcatv/cajamarcatv/index.m3u8 -#EXTINF:-1 tvg-id="Canal8Catacaos.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canal8catacaos/picture?width=320&height=320" group-title="Local",Canal 8 (Catacaos) (360p) [Not 24/7] -https://tvdatta.com:3838/live/canalcatacaoslive.m3u8 -#EXTINF:-1 tvg-id="Canal43Sudamericana.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Canal43Sudamericana/picture?width=320&height=320" group-title="Local",Canal 43 Sudamericana (Ica) (360p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8014/index.m3u8 -#EXTINF:-1 tvg-id="CanalEvelyn.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cableEvelynsac/picture?width=320&height=320" group-title="Local",Canal E (Evelyn) (Altomayo) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/8006/index.m3u8 -#EXTINF:-1 tvg-id="CanalEvelyn.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cableEvelynsac/picture?width=320&height=320" group-title="Local",Canal E (Evelyn) (Nororiente) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/8004/index.m3u8 -#EXTINF:-1 tvg-id="CANALIPE.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Identidad_Peruana_ipe_2020.png/1200px-Identidad_Peruana_ipe_2020.png" group-title="Family",CANAL IPE (1080p) [Not 24/7] -https://cdnh8.iblups.com/hls/OVJNKV4pSr.m3u8 -#EXTINF:-1 tvg-id="CanalB.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://canalb.pe/assets/uploads/images/digital-tv-mundo-vivo.svg" group-title="News",CanalB (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alfonsobaella/live -#EXTINF:-1 tvg-id="CaribeTelevisionOtuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CaribeTvcanal25/picture?width=320&height=320" group-title="Local",Caribe Televisión (Otuzco) (1080p) [Not 24/7] -http://191.97.56.183:1935/caribetv/caribetv/playlist.m3u8 -#EXTINF:-1 tvg-id="CentralTVChosica.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CentralTVperuLima/picture?width=320&height=320" group-title="Local",Central TV (Chosica) (614p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvcentraltv/livecentraltvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ChicosIPe.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FI1Hd4E.png" group-title="Family",Chicos IPe (1080p) [Not 24/7] -http://cdnh4.iblups.com/hls/OVJNKV4pSr.m3u8 -#EXTINF:-1 tvg-id="ClipsTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/clipstv/picture?width=320&height=320" group-title="Local",ClipsTV (Ica) (360p) [Not 24/7] -https://7.innovatestream.pe:19360/clipstv/clipstv.m3u8 -#EXTINF:-1 tvg-id="CNCCajamarca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cncsenaldigital/picture?width=320&height=320" group-title="Local",CNC (Cajamarca) (720p) [Offline] -https://7.innovatestream.pe:19360/cnctv/cnctv.m3u8 -#EXTINF:-1 tvg-id="CNCDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cnc.digital.pe/picture?width=320&height=320" group-title="Local",CNC Digital (Iquitos) (480p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8150/index.m3u8 -#EXTINF:-1 tvg-id="Conecta2TV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioConecta2/picture?width=320&height=320" group-title="Local",Conecta2TV (Lima) (720p) [Not 24/7] -https://servilive.com:3528/live/conect2tvlive.m3u8 -#EXTINF:-1 tvg-id="CongresoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CongresoPeru/picture?width=320&height=320" group-title="Legislative",Congreso TV (Perú) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/congresodelarepublicadelperútvenvivo/live -#EXTINF:-1 tvg-id="ContactoDeportivo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/contactodeportivomoyobamba/picture?width=320&height=320" group-title="Sports",Contacto Deportivo (720p) [Not 24/7] -https://live.obslivestream.com/cdeportivomux/index.m3u8 -#EXTINF:-1 tvg-id="ControversiaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ControversiaMoyobamba/picture?width=320&height=320" group-title="Local",Controversia TV (Moyobamba) (360p) [Not 24/7] -https://live.obslivestream.com/controversiamux/index.m3u8 -#EXTINF:-1 tvg-id="CRTelevisionMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/crtvmoyobamba/picture?width=320&height=320" group-title="Local",CR Television (Moyobamba) (720p) [Not 24/7] -https://live.obslivestream.com/crtvmux/index.m3u8 -#EXTINF:-1 tvg-id="CreoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CanalCreoTv/picture?width=320&height=320" group-title="Local",CreoTV (Cajamarca) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/creotv/index.m3u8 -#EXTINF:-1 tvg-id="CTC.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Local",CTC (720p) -http://190.108.83.142:8000/play/a007/index.m3u8 -#EXTINF:-1 tvg-id="Cultura24tv.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2mSwwpH.png" group-title="Culture",Cultura 24 (360p) [Not 24/7] -https://vs8.live.opencaster.com/cultura24/smil:cultura24/playlist.m3u8 -#EXTINF:-1 tvg-id="CVMTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/174810627418446/picture?width=320&height=320" group-title="Music",CVM TV Digital (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/cvmtv/cvmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="DeltaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/DELTATVPACAYZAPA/picture?width=320&height=320" group-title="Local",DeltaTV (Pacayzapa | San Martín) (480p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8038/index.m3u8 -#EXTINF:-1 tvg-id="DiarioHechiceraTumbes.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/diariohechicera/picture?width=320&height=320" group-title="Local",Diario Hechicera (Tumbes) (720p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/8108/8108/playlist.m3u8 -#EXTINF:-1 tvg-id="DMJ.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1169958533100680/picture?width=320&height=320" group-title="Local",DMJ (Cuzco) (720p) [Not 24/7] -https://v4.tustreaming.cl/s1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/DTVtelevisiondigital/picture?width=320&height=320" group-title="Local",DTV (Junin) [Not 24/7] -https://ed5ov.live.opencaster.com/ArEetgEqqozh/index.m3u8 -#EXTINF:-1 tvg-id="ExitosaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Exitosanoticias/picture?width=320&height=320" group-title="News",Exitosa TV (720p) -https://cu.onliv3.com/livevd1/user2.m3u8 -#EXTINF:-1 tvg-id="Expresion.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Expresión (Tacna) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/radioilo.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/FUEGOTVLIMA/picture?width=320&height=320" group-title="Local",FuegoTV (Lima) (720p) [Not 24/7] -http://190.108.83.142:8000/play/a003/index.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/FUEGOTVLIMA/picture?width=320&height=320" group-title="Local",FuegoTV (Lima) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="FullTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/106695150818425/picture?width=320&height=320" group-title="Local",FullTV (Lima) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/8018/8018/playlist.m3u8 -#EXTINF:-1 tvg-id="GacetaUcayalina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/GacetaUcayalinaTelevision/picture?width=320&height=320" group-title="News",Gaceta Ucayalina (720p) [Not 24/7] -https://tvsource.gacetaucayalina.com/hls/prueba.m3u8 -#EXTINF:-1 tvg-id="GalacticaTVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RCGalacticatv/picture?width=320&height=320" group-title="Music",Galáctica TV (Peru) (720p) [Not 24/7] -https://pacific.direcnode.com:3715/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="GeniosTVMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/geniostvmoyobamba/picture?width=320&height=320" group-title="Local",Genios TV (Moyobamba) (720p) [Not 24/7] -https://live.obslivestream.com/geniostvmux/index.m3u8 -#EXTINF:-1 tvg-id="GoldValleyTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Goldvalleytvcasma/picture?width=320&height=320" group-title="Local",Gold Valley TV (Casma) (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/gold/gold/playlist.m3u8 -#EXTINF:-1 tvg-id="GORESAMTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/regionsanmartin/picture?width=320&height=320" group-title="Local",GORESAM TV [Not 24/7] -https://video.obslivestream.com/gtv/index.m3u8 -#EXTINF:-1 tvg-id="HatunTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhI0HKESXrVQ8-ktPCeRap6-cP_4upPtEpAlwPa=s88-c-k-c0x00ffffff-no-rj" group-title="Music",Hatun TV (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablehatuntv/bestcablehatuntv/index.m3u8 -#EXTINF:-1 tvg-id="Hoynet.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Hoynet (540p) [Not 24/7] -https://tv.portalexpress.es:3641/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="HuachoPeruTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huachotvperu/picture?width=320&height=320" group-title="Local",Huacho Perú TV (720p) [Not 24/7] -https://tv.portalexpress.es:3124/live/hchoperutvlive.m3u8 -#EXTINF:-1 tvg-id="HuachoPeruTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huachotvperu/picture?width=320&height=320" group-title="Local",Huacho Perú TV (720p) [Offline] -https://tv.portalexpress.es:3124/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="HuantaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/HuantaTV/picture?width=320&height=320" group-title="Local",Huanta TV (288p) [Not 24/7] -https://inliveserver.com:1936/19002/19002/playlist.m3u8 -#EXTINF:-1 tvg-id="HuanucoenVivo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huanucoenvivo/picture?width=320&height=320" group-title="Local",Huánuco en Vivo (480p) [Not 24/7] -https://cp.sradiotv.com:1936/8006/8006/playlist.m3u8 -#EXTINF:-1 tvg-id="IdentidadTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/IDENTIDADTVOFICIAL/picture?width=320&height=320" group-title="News",Identidad TV (1080p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvrci/livercitv/playlist.m3u8 -#EXTINF:-1 tvg-id="ImagenTelevisionRioja.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104338684346756/picture?width=320&height=320" group-title="Local",Imagen Televisión (Rioja) (720p) [Not 24/7] -http://191.97.56.183:1935/imagentv/imagentv/playlist.m3u8 -#EXTINF:-1 tvg-id="ImpactoTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WWW.RADIOIMPACTODECAJAMARCA.COM.PE/picture?width=320&height=320" group-title="Local",Impacto Televisión (Cajamarca) (720p) -https://eu1.servers10.com:8081/impactotv/index.m3u8 -#EXTINF:-1 tvg-id="ImperialTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radioimperialtv/picture?width=320&height=320" group-title="Local",Imperial Televisión (Huancayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/imperu/imperu/playlist.m3u8 -#EXTINF:-1 tvg-id="Inkavision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Inkavisionoficial/picture?width=320&height=320" group-title="Local",Inkavisión (Cuzco) [Offline] -https://7.innovatestream.pe:19360/inkavision/inkavision.m3u8 -#EXTINF:-1 tvg-id="Innovafm.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioInnovaSeSiente/picture?width=320&height=320" group-title="Local",Innova FM (Bagua Grande) (480p) [Not 24/7] -https://live.tvcontrolcp.com:1936/8170/8170/playlist.m3u8 -#EXTINF:-1 tvg-id="JN19.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canaljn19tv/picture?width=320&height=320" group-title="Religious",JN19 (720p) [Not 24/7] -https://servilive.com:3149/live/jn19tvlive.m3u8 -#EXTINF:-1 tvg-id="JNETV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/JNE.Peru/picture?width=320&height=320" group-title="Legislative",JNE TV (720p) [Not 24/7] -https://dc1.webstream.eu/hls/hls/jnetvhdstreaming_high/index.m3u8 -#EXTINF:-1 tvg-id="Kachorro.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Local",Kachorro (Super TV | Amazonas) (720p) [Not 24/7] -https://tvdatta.com:3517/live/kachorrotvlive.m3u8 -#EXTINF:-1 tvg-id="Karibena.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaKaribena/picture?width=320&height=320" group-title="Music",Karibeña (720p) [Not 24/7] -https://cu.onliv3.com/livevd/user1.m3u8 -#EXTINF:-1 tvg-id="KBOQuillabamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OficialKBO/picture?width=320&height=320" group-title="Local",KBO Quillabamba (1080p) [Not 24/7] -https://cdnhd.iblups.com/hls/YGpW43RUOD.m3u8 -#EXTINF:-1 tvg-id="KeBuenaBarranca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/kebuena91.1fm/picture?width=320&height=320" group-title="Local",KeBuena (Barranca) (480p) [Not 24/7] -https://inliveserver.com:1936/18016/18016/playlist.m3u8 -#EXTINF:-1 tvg-id="KoraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/JJRODRIGUEZKORARTV/picture?width=320&height=320" group-title="Entertainment",Kora TV (360p) [Not 24/7] -https://megastreamm.com:3129/live/koratvlive.m3u8 -#EXTINF:-1 tvg-id="LaAbeja.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/laabeja.pe/picture?width=320&height=320" group-title="News",La Abeja (720p) [Not 24/7] -http://cdnhd.iblups.com/hls/F87ppt1YAT.m3u8 -#EXTINF:-1 tvg-id="LaLuzTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaLuzTv/picture?width=320&height=320" group-title="Religious",La Luz TV (720p) [Not 24/7] -http://ott.streann.com:8080/loadbalancer/services/public/channels/59ce7f292cdc7ba015a93b82/playlist.m3u8 -#EXTINF:-1 tvg-id="RTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/larepublicape/picture?width=320&height=320" group-title="News",La República TV (RTV) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVLaRepública/live -#EXTINF:-1 tvg-id="LaRiberena.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/lariberenapucallpa/picture?width=320&height=320" group-title="Local",La Ribereña (Pucallpa) (480p) [Not 24/7] -https://inliveserver.com:1936/19020/19020/playlist.m3u8 -#EXTINF:-1 tvg-id="Latina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Latina.pe/picture?width=320&height=320" group-title="General",Latina (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5ce7109c7398b977dc0744cd.m3u8 -#EXTINF:-1 tvg-id="LimaLive.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/GrupoLimaLive/picture?width=320&height=320" group-title="Local",LimaLive (536p) [Not 24/7] -https://stmv.panel.grupolimalive.com/limalive/limalive/playlist.m3u8 -#EXTINF:-1 tvg-id="LotPlusTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Lotplustv2021/picture?width=320&height=320" group-title="Local",LotPlus TV (Chiclayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/lotplustv/lotplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="MasterTVTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/169404973238869/picture?width=320&height=320" group-title="Local",Master TV (Tarapoto) (480p) [Not 24/7] -https://tv.oyotunstream.com:1936/master/master/playlist.m3u8 -#EXTINF:-1 tvg-id="MaticesTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/aldiaconmatices/picture?width=320&height=320" group-title="Local",MaticesTV (Cañete) (720p) [Not 24/7] -http://v4.tustreaming.cl/matices/index.m3u8 -#EXTINF:-1 tvg-id="MegaTVAQP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MTVAQP/picture?width=320&height=320" group-title="Local",Mega TV (Arequipa) (360p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8008/index.m3u8 -#EXTINF:-1 tvg-id="MegaTVJaen.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatvjaen/picture?width=320&height=320" group-title="Local",Mega TV (Jaen) (720p) [Not 24/7] -https://tv.portalexpress.es:3399/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="MegaTVTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatvtarapotooficial/picture?width=320&height=320" group-title="Local",Mega TV (Tarapoto) (480p) [Not 24/7] -https://tv.portalexpress.es:3870/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="MetropolitanadelCuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/113907773339257/picture?width=320&height=320" group-title="Music",Metropolitana del Cuzco (CCTVRadio) (576p) [Not 24/7] -https://video1.earthcam.com/myearthcam/075ff02f78c35af55564cf3af3b3f750.flv/playlist.m3u8 -#EXTINF:-1 tvg-id="Millenium49TVPucallpa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zYpMHhQ.png" group-title="Local",Millenium 49 TV (Pucallpa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/milleniuntv/milleniuntv/playlist.m3u8 -#EXTINF:-1 tvg-id="Millenium109FM.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/milleniumradiotv/picture?width=320&height=320" group-title="Local",Millenium 109 FM (Lamas) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/millenium/millenium/playlist.m3u8 -#EXTINF:-1 tvg-id="MINEDUiptv1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mineduperu/picture?width=320&height=320" group-title="Education",MINEDU IPTV 1 (320p) [Not 24/7] -http://iptv.perueduca.pe:1935/canal1/canal11/playlist.m3u8 -#EXTINF:-1 tvg-id="MINEDUiptv2.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mineduperu/picture?width=320&height=320" group-title="Education",MINEDU IPTV 2 (320p) [Not 24/7] -http://iptv.perueduca.pe:1935/canal2/canal22/playlist.m3u8 -#EXTINF:-1 tvg-id="MitosTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w4ISMBI.png" group-title="Local",MitosTV (Mitos de la Selva | Pucallpa) (480p) [Not 24/7] -https://inliveserver.com:1936/19018/19018/playlist.m3u8 -#EXTINF:-1 tvg-id="ModaHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ModaHuancayoTv/picture?width=320&height=320" group-title="Local",Moda Huancayo TV [Offline] -https://tvdatta.com:3383/live/huancayotvlive.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (1080p) [Not 24/7] -http://vs8.live.opencaster.com/20100152275/jcpstream/playlist.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (1080p) [Not 24/7] -https://ed1ov.live.opencaster.com/jcpstream_hd720/index.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (360p) [Not 24/7] -https://ed1ov.live.opencaster.com/jcpstream_mid/index.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (360p) [Not 24/7] -https://www.opencaster.com/resources/hls_stream/hipodromojcp2.m3u8 -#EXTINF:-1 tvg-id="MTVMasAncash.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MtvMasTelevision/picture?width=320&height=320" group-title="Local",MTV Más (Ancash) (720p) [Not 24/7] -https://mediacp.hostradios.com.ar:19360/8044/8044.m3u8 -#EXTINF:-1 tvg-id="NacionalTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NacionalTVComunicaciones/picture?width=320&height=320" group-title="General",NacionalTV (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/nacionaltv/nacionaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="NazarenasTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/nazarenastv/picture?width=320&height=320" group-title="Religious",Nazarenas TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvnazarenas/livenazarenastv/playlist.m3u8 -#EXTINF:-1 tvg-id="NorSelvaRTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/norselva.peru/picture?width=320&height=320" group-title="Local",NorSelva RTV (Rioja) (288p) [Not 24/7] -https://live.tvcontrolcp.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="NuestraTVLima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NUESTRATVPERU/picture?width=320&height=320" group-title="Local",Nuestra TV (Lima) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/nuestratvlima -#EXTINF:-1 tvg-id="OasisRTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Oasisrtv/picture?width=320&height=320" group-title="Local",Oasis RTV (Trujillo) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/oasisrtv/oasisrtv.m3u8 -#EXTINF:-1 tvg-id="OKTeVe.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OKTelevision.pe/picture?width=320&height=320" group-title="Local",OK TeVe (Yurimaguas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/wesdey3/wesdey3/playlist.m3u8 -#EXTINF:-1 tvg-id="OmegaTVYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/omegatvyurimaguas/picture?width=320&height=320" group-title="Local",Omega TV (Yurimaguas) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/omega/omega.m3u8 -#EXTINF:-1 tvg-id="OndaDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3R2emx7.jpg" group-title="General",Onda Digital (720p) [Not 24/7] -https://ed1ov.live.opencaster.com/CwCfFGFdtebB/index.m3u8 -#EXTINF:-1 tvg-id="OndaDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3R2emx7.jpg" group-title="General",Onda Digital (720p) [Not 24/7] -https://tv.ondadigital.pe:1936/ondatv2/ondatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="OrientalTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OrientalTV.pe/picture?width=320&height=320" group-title="Local",Oriental TV 21 (Pucallpa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/orientaltv/orientaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="OvacionTV.pe" tvg-country="PE;UY" tvg-language="Spanish" tvg-logo="https://ovacion.pe/sites/default/files/logo-ovacion.png" group-title="Sports",Ovacion TV (720p) [Not 24/7] -http://cdn2.ujjina.com:1935/iptvovacion1/liveovacion1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OvacionTV.pe" tvg-country="PE;UY" tvg-language="Spanish" tvg-logo="https://ovacion.pe/sites/default/files/logo-ovacion.png" group-title="Sports",Ovación TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvovacion1/liveovacion1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PanamericanaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uQhEDES.png" group-title="General",Panamericana TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/PanamericanaPTV -#EXTINF:-1 tvg-id="PanamericanaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uQhEDES.png" group-title="General",Panamericana TV (298p) [Not 24/7] -https://cdnhd.iblups.com/hls/ptv2.m3u8 -#EXTINF:-1 tvg-id="PaxTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/B89KuHO.png" group-title="Religious",Pax TV (480p) [Not 24/7] -https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PBO.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/PBOPeru/picture?width=320&height=320" group-title="News",PBO Digital (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgR0st4ZLABi-LQcWNu3wnQ/live -#EXTINF:-1 tvg-id="PeruMagico.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/263.png" group-title="General",Peru Magico (480p) [Not 24/7] -http://38.131.11.9:1080/play/a0dh -#EXTINF:-1 tvg-id="PeruvianRadioTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://peruvianradiotv.pe/wp-content/uploads/2021/03/Logo-Peruvian-6.png" group-title="Local",PeruvianRadio TV (268p) [Not 24/7] -https://stmv.panel.grupolimalive.com/peruviantv/peruviantv/playlist.m3u8 -#EXTINF:-1 tvg-id="PiuraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/piuratvcanal/picture?width=320&height=320" group-title="Local",PiuraTV (720p) [Not 24/7] -http://190.108.83.142:8000/play/a00d/index.m3u8 -#EXTINF:-1 tvg-id="PlanetaTVBagua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/planeatvperu/picture?width=320&height=320" group-title="Local",Planeta TV Bagua (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/planeatv/planeatv/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetaTVMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/PlanetaTeleInformativo/picture?width=320&height=320" group-title="Local",Planeta TV Moyobamba (720p) [Not 24/7] -https://live.obslivestream.com/planetatvmux/index.m3u8 -#EXTINF:-1 tvg-id="Primavera15RadiotelevisionMoquegua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radioprimaveramoquegua/picture?width=320&height=320" group-title="Local",Primavera 15 Radiotelevisión (Moquegua) (720p) [Not 24/7] -https://tv.portalexpress.es:3270/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="ProyectaTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/101589915090069/picture?width=320&height=320" group-title="Local",Proyecta Televisión (Huacho) (720p) [Not 24/7] -https://servilive.com:3194/live/proyectatvlive.m3u8 -#EXTINF:-1 tvg-id="PucallpaTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/pucallpatelevision/picture?width=320&height=320" group-title="Local",Pucallpa Televisión (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/pucallpatv/pucallpatv/playlist.m3u8 -#EXTINF:-1 tvg-id="PymeTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Pyme.tv.pe/picture?width=320&height=320" group-title="Business",PymeTV [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/PymeTV/live -#EXTINF:-1 tvg-id="QTTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/QTTelevision/picture?width=320&height=320" group-title="Local",QT Televisión (Cuzco) (720p) [Not 24/7] -https://servilive.com:3753/live/qosqotimeslive.m3u8 -#EXTINF:-1 tvg-id="QuattroTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/572791252093919232/DKxHh5Oj_200x200.png" group-title="Local",Quattro TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/quatrotvgo -#EXTINF:-1 tvg-id="Quillavision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/459651607763457/picture?width=320&height=320" group-title="Local",Quillavision (Cuzco) (720p) [Not 24/7] -http://v4.tustreaming.cl/quillavision/index.m3u8 -#EXTINF:-1 tvg-id="RadioCalorHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioCalorHuancayo/picture?width=320&height=320" group-title="Local",Radio Calor (Huancayo) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/calortv -#EXTINF:-1 tvg-id="RadioChalaca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiochalacafm/picture?width=320&height=320" group-title="Music",Radio Chalaca (720p) [Not 24/7] -https://servilive.com:3162/multi_web/play.m3u8 -#EXTINF:-1 tvg-id="RadioDigital941TV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotvdigitalcampanilla/picture?width=320&height=320" group-title="Local",Radio Digital 94.1 TV (Juanjui) (240p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8018/index.m3u8 -#EXTINF:-1 tvg-id="RadioInkaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Radio Inka TV (272p) [Not 24/7] -https://tv.portalexpress.es:3175/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="RadioLibertadArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiolibertadarequipa/picture?width=320&height=320" group-title="Local",Radio Libertad (Arequipa) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/radiolibertadarequipa -#EXTINF:-1 tvg-id="RadioPachatusan.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1260738527355956/picture?width=320&height=320" group-title="Local",Radio Pachatusan (Cuzco) (720p) [Not 24/7] -https://tvdatta.com:3413/live/pachatusanlive.m3u8 -#EXTINF:-1 tvg-id="RadioSanBorjaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiosanborja/picture?width=320&height=320" group-title="Music",Radio San Borja TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvsanborja/livesanborjatv/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTropicalTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1331243814548287489/RCVGVH6L_400x400.jpg" group-title="Local",Radio Tropical Tarapoto (480p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/raditropical/raditropical/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVBinacional.pe" tvg-country="BO;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BinacionaltvGo/picture?width=320&height=320" group-title="Local",Radio TV Binacional (Desaguadero) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/binacional/binacional/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVCharles.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiocharles.bambamarca/picture?width=320&height=320" group-title="Local",Radio TV Charles (Bambamarca) [Not 24/7] -https://media2.cdnlayer.biz:8081/8032/index.m3u8 -#EXTINF:-1 tvg-id="RadioTVJuanjui.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/74HCPRODUCCIONES/picture?width=320&height=320" group-title="Local",Radio TV Juanjui (480p) [Not 24/7] -https://tv.portalexpress.es:3611/live/radiotvjuanjuilive.m3u8 -#EXTINF:-1 tvg-id="RadioUnoTacna.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiouno.pe/picture?width=320&height=320" group-title="Local",Radio Uno (Tacna) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCK0lpuL9PQb3I5CDcu7Y7bA/live -#EXTINF:-1 tvg-id="RadioVictoria780AM.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/108571667620282/picture?width=320&height=320" group-title="Religious",Radio Victoria 780 AM (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2pEdgRlAdGozFhlEb73PKA/live -#EXTINF:-1 tvg-id="RadioXtrema.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Music",Radio Xtrema (360p) [Not 24/7] -https://tv.portalexpress.es:3090/stream/play.m3u8 -#EXTINF:-1 tvg-id="RadioyTvFiladelfia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/iglesiafiladelfialadp/picture?width=320&height=320" group-title="Religious",Radio y Tv Filadelfia (720p) [Not 24/7] -https://streamlive7.hearthis.at/hls/9355343.m3u8 -#EXTINF:-1 tvg-id="RadioInka.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104110050971073/picture?width=320&height=320" group-title="Local",RadioInka (Abancay) (272p) [Not 24/7] -https://tv.portalexpress.es:3175/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="RadioTVOrienteYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/www.roriente.org/picture?width=320&height=320" group-title="Local",RadioTV Oriente (Yurimaguas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/orientetv/orientetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RCR.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rcrradiotv/picture?width=320&height=320" group-title="Local",Red de Comunicación Regional (RCR) (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvrcrperu/livercrperutv/playlist.m3u8 -#EXTINF:-1 tvg-id="RegionTVCallao.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/regiontv/picture?width=320&height=320" group-title="Local",Región TV (Callao) (480p) [Not 24/7] -https://servilive.com:3757/live/regiontvlive.m3u8 -#EXTINF:-1 tvg-id="RiberenaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/lariberenabellavista/picture?width=320&height=320" group-title="Local",Ribereña TV (Bellavista) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/riberenatv/riberenatv.m3u8 -#EXTINF:-1 tvg-id="RNTelevisionYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rnyurimaguas/picture?width=320&height=320" group-title="Local",RN Televisión (Yurimaguas) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/rntelevision/rntelevision/playlist.m3u8 -#EXTINF:-1 tvg-id="RPP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="News",RPP (480p) [Not 24/7] -http://38.131.11.9:1080/play/a0d8 -#EXTINF:-1 tvg-id="RSelvaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://radioselvatv.pe/wp-content/uploads/2020/12/favicon.png" group-title="News",RSelvaTV (Tarapoto) (720p) [Not 24/7] -https://live.obslivestream.com/selvatvmux/index.m3u8 -#EXTINF:-1 tvg-id="RTVTotalYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rtvtotal/picture?width=320&height=320" group-title="News",RTV Total (Yurimaguas) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/rtvtotal/rtvtotal.m3u8 -#EXTINF:-1 tvg-id="RumbaMixTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/109388704194807/picture?width=320&height=320" group-title="Music",RumbaMix TV (860p) [Not 24/7] -https://tvdatta.com:3344/live/rumbamixlive.m3u8 -#EXTINF:-1 tvg-id="RWTelevisionTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rwtelevision/picture?width=320&height=320" group-title="Local",RW Televisión (Tarapoto) [Not 24/7] -https://tvdatta.com:3952/live/rwtelevisionlive.m3u8 -#EXTINF:-1 tvg-id="SalgalúTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/salgalucomunicacionquenosacerca/picture?width=320&height=320" group-title="Culture",Salgalú TV [Not 24/7] -https://6075e60da1f27.streamlock.net/live/wowza/playlist.m3u8 -#EXTINF:-1 tvg-id="SanjuaneraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Sanjuaneratv/picture?width=320&height=320" group-title="Music",SanjuaneraTV (720p) [Not 24/7] -https://live.obslivestream.com/sanjuaneramux/playlist.m3u8 -#EXTINF:-1 tvg-id="SatelTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/SatelPeru/picture?width=320&height=320" group-title="Local",SatelTV (Puno) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/satel/satel.m3u8 -#EXTINF:-1 tvg-id="SelvaMiaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/103910101231367/picture?width=320&height=320" group-title="Local",SelvaMía TV (Aguaytía) (360p) [Not 24/7] -https://inliveserver.com:1936/18022/18022/playlist.m3u8 -#EXTINF:-1 tvg-id="Sistema1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sistema1tv/picture?width=320&height=320" group-title="Local",Sistema 1 (Huaraz) (720p) [Not 24/7] -https://tv.portalexpress.es:3839/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="Sistema1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sistema1tv/picture?width=320&height=320" group-title="Local",Sistema 1 (Huaraz) (720p) [Not 24/7] -https://tv.portalexpress.es:3839/live/sistema1tvlive.m3u8 -#EXTINF:-1 tvg-id="SolStereoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/solstereotvcasma/picture?width=320&height=320" group-title="Local",Sol Stereo TV (Casma) (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/solstereotv/solstereotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SoriTVPicota.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/2290376027898746/picture?width=320&height=320" group-title="Local",SoriTV (Picota) (720p) [Not 24/7] -https://lamasremixes.com/hls/cadenasurrtv/index.m3u8 -#EXTINF:-1 tvg-id="StereoTVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/StereotvOficial/picture?width=320&height=320" group-title="Music",Stereo TV (Peru) (720p) [Not 24/7] -https://servers.amelbasoluciones.co:19360/5medialive/5medialive.m3u8 -#EXTINF:-1 tvg-id="SumacTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sumac2021/picture?width=320&height=320" group-title="Local",Sumac TV (Lima) (480p) [Not 24/7] -https://vps1.lnx.pe/sumactv-web/envivo/index.m3u8 -#EXTINF:-1 tvg-id="SuperCanalYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/supercanalyuri/picture?width=320&height=320" group-title="Local",Super Canal (Yurimaguas) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/supercanal/supercanal.m3u8 -#EXTINF:-1 tvg-id="SurTVIlo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/surtvilo/picture?width=320&height=320" group-title="Local",SurTV (Ilo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/surtv/surtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele2000.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Tele2000oficial/picture?width=320&height=320" group-title="Local",Tele2000 (Ayacucho) (720p) [Not 24/7] -https://servilive.com:3126/live/tele2000live.m3u8 -#EXTINF:-1 tvg-id="TelesurCamana.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Camana) (480p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/camana.m3u8 -#EXTINF:-1 tvg-id="TelesurIlo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Ilo) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/ilo.m3u8 -#EXTINF:-1 tvg-id="TelesurMollendo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Mollendo) (240p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/mollendo.m3u8 -#EXTINF:-1 tvg-id="TelesurMoquegua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Moquegua) (360p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/moquegua.m3u8 -#EXTINF:-1 tvg-id="TelesurTacna.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Tacna) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/tacna.m3u8 -#EXTINF:-1 tvg-id="TelevisionTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/televisiontarapoto/picture?width=320&height=320" group-title="Local",Televisión Tarapoto (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/televisiontpp/televisiontpp/playlist.m3u8 -#EXTINF:-1 tvg-id="TelSatelCineTVArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Movies",TelSatel Cine TV (Arequipa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/cinperu/cinperu/playlist.m3u8 -#EXTINF:-1 tvg-id="TopFMTVAtalaya.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotopf/picture?width=320&height=320" group-title="Local",Top FM TV (Atalaya) (240p) [Not 24/7] -https://tvdatta.com:3084/live/toptvaguaytialive.m3u8 -#EXTINF:-1 tvg-id="TopLatino.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/toplatinotv/picture?width=320&height=320" group-title="Music",Top Latino TV (404p) [Not 24/7] -https://5cefcbf58ba2e.streamlock.net/tltvweb/tvweb.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TPTO.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TPTOCHANNEL/picture?width=320&height=320" group-title="Local",TPTO TV (Tarapoto) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/tptotv/tptotv/playlist.m3u8 -#EXTINF:-1 tvg-id="TropicalTVPuertoMaldonado.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotropical105.7fm/picture?width=320&height=320" group-title="Local",Tropical TV (Puerto Maldonado) (720p) [Not 24/7] -https://tv.oyotunstream.com:1936/tropicaltv/tropicaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="TumpisTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tumpisperu/picture?width=320&height=320" group-title="Local",Tumpis TV (Tumbes) (720p) [Not 24/7] -https://servilive.com:3531/live/tumpistvlive.m3u8 -#EXTINF:-1 tvg-id="TurboMixRadioTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/235129376518344/picture?width=320&height=320" group-title="Music",Turbo Mix Radio TV (360p) [Not 24/7] -https://7.innovatestream.pe:19360/turbomixoficial/turbomixoficial.m3u8 -#EXTINF:-1 tvg-id="TVAndahuaylas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/panoramanoticiasandahuaylas/picture?width=320&height=320" group-title="Local",TV Andahuaylas [Not 24/7] -https://pe-lim01-live-us01.cdnlayer.biz/panoramatv/index.m3u8 -#EXTINF:-1 tvg-id="TVCosmos.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://tvcosmos.pe/includes/iso-cosmos.png" group-title="General",TV Cosmos (720p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8134/8134/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHuarmey.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TV6Huarmey/picture?width=320&height=320" group-title="Local",TV Huarmey (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tvhuarmey -#EXTINF:-1 tvg-id="TVMundoArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tvmundo.pe/picture?width=320&height=320" group-title="Local",TV Mundo (Arequipa) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQH-6sv6ovHg4Nx-niZ_C1g/live -#EXTINF:-1 tvg-id="TVNorteChiclayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tvnorte7/picture?width=320&height=320" group-title="Local",TV Norte (Chiclayo) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/TVNORTEHD -#EXTINF:-1 tvg-id="TVNoticias73.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/-TT4fesr5OEU/AAAAAAAAAAI/AAAAAAAAAAA/bcrXYkOAjdA/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="News",TV Noticias 7.3 (768p) -http://cdnh4.iblups.com/hls/RMuwrdk7M9.m3u8 -#EXTINF:-1 tvg-id="TVPalmeras.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Noticias.TvPalmeras/picture?width=320&height=320" group-title="General",TV Palmeras (480p) [Not 24/7] -https://srv.panelcast.net/palmerastv/palmerastv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_PLAY.png" group-title="General",TV Perú (450p) [Not 24/7] -https://cdnh8.iblups.com/hls/R9WtilpKKB.m3u8 -#EXTINF:-1 tvg-id="TVPeruInternacional.pe" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_PLAY.png" group-title="General",TV Perú Internacional (460p) [Not 24/7] -http://cdnh4.iblups.com/hls/irtp.m3u8 -#EXTINF:-1 tvg-id="TVPeruNoticias.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_NOTICIAS_PLAY.png" group-title="News",TV Perú Noticias (768p) [Not 24/7] -https://cdnh8.iblups.com/hls/RMuwrdk7M9.m3u8 -#EXTINF:-1 tvg-id="TVPeruanisima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/HenryAyalaProductions/picture?width=320&height=320" group-title="Music",TV Peruanísima (720p) [Not 24/7] -http://k4.usastreams.com/TVperuanisima/TVperuanisima/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSensacion.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/492483611619635/picture?width=320&height=320" group-title="Local",TV Sensación (Tacna) (1080p) [Not 24/7] -https://ca.inka.net.pe/tvsensacion/tvsensacion/index.m3u8 -#EXTINF:-1 tvg-id="TVSistemasCuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVSISTEMASCUSCOPERU/picture?width=320&height=320" group-title="Local",TV Sistemas Cuzco (Cuzco) (360p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/kdlrqjcp/kdlrqjcp/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/499987990368435/picture?width=320&height=320" group-title="Local",TV5 Soritor (720p) [Not 24/7] -https://live.obslivestream.com/tv5soritormux/index.m3u8 -#EXTINF:-1 tvg-id="TVenLinea.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVenLineaCanalDigital/picture?width=320&height=320" group-title="Local",TVenLinea (Cuzco) (720p) [Not 24/7] -https://s1.tvdatta.com:3883/live/tvenlinealive.m3u8 -#EXTINF:-1 tvg-id="TvfacesOnline.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/110490054146572/picture?width=320&height=320" group-title="Entertainment",Tvfaces Online (360p) [Not 24/7] -https://tvdatta.com:3211/stream/play.m3u8 -#EXTINF:-1 tvg-id="UCI.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/uncanalinteligente/picture?width=320&height=320" group-title="General",UCI (720p) [Not 24/7] -https://servilive.com:3449/live/mlecaroslive.m3u8 -#EXTINF:-1 tvg-id="Unitel.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Unitelperu/picture?width=320&height=320" group-title="Local",Unitel (Huancayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/uniteltv/uniteltv/playlist.m3u8 -#EXTINF:-1 tvg-id="UniversitariaTVChanchamayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/universitariatvchanchamayo/picture?width=320&height=320" group-title="Local",Universitaria TV (Chanchamayo) (480p) [Not 24/7] -https://tvdatta.com:3670/live/universitariatvlive.m3u8 -#EXTINF:-1 tvg-id="UranioTVYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/uraniotv/picture?width=320&height=320" group-title="Local",Uranio TV (Yurimaguas) (720p) [Not 24/7] -https://live.obslivestream.com/uraniomux/index.m3u8 -#EXTINF:-1 tvg-id="USILTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/usiltv/picture?width=320&height=320" group-title="General",USIL TV (720p) [Not 24/7] -https://video.produccionesmagicorp.com/redes/video.m3u8 -#EXTINF:-1 tvg-id="USMPTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/USMPTV/picture?width=320&height=320" group-title="Culture",USMPTV (720p) [Not 24/7] -https://streamusmptv.ddns.net/dash/stream.mpd -#EXTINF:-1 tvg-id="VamisaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioVamisaTelevision/picture?width=320&height=320" group-title="Local",VamisaTV (Lima) (480p) [Not 24/7] -https://vps1.lnx.pe/vamisa/envivo/index.m3u8 -#EXTINF:-1 tvg-id="ViaAltomayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/viaaltomayo/picture?width=320&height=320" group-title="Local",Vía Altomayo (720p) [Not 24/7] -https://live.obslivestream.com/viaaltomayomux/index.m3u8 -#EXTINF:-1 tvg-id="VIATelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/viatelevisionperu/picture?width=320&height=320" group-title="Local",Vía Televisión (Tarapoto) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/viatv2021/viatv2021/playlist.m3u8 -#EXTINF:-1 tvg-id="VirgendeNatividadParuro.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/danzasvirgendenatividadparuro/picture?width=320&height=320" group-title="Religious",Virgen de Natividad de Paruro [Not 24/7] -https://srv6.zcast.com.br/virgennatividad/virgennatividad/playlist.m3u8 -#EXTINF:-1 tvg-id="VisionNoticiasPeruVNP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vnptv.pe/picture?width=320&height=320" group-title="News",Visión Noticias Perú (VNP) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/visionnoticias/visionnoticias/playlist.m3u8 -#EXTINF:-1 tvg-id="VisionTVMusica.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/visiontvmusica/picture?width=320&height=320" group-title="Music",Visión TV Musica (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/visionmusica/visionmusica/playlist.m3u8 -#EXTINF:-1 tvg-id="WillaxTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/willaxtv/picture?width=320&height=320" group-title="General",Willax (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/WillaxTV -#EXTINF:-1 tvg-id="WtvBambamarca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WtvCanal19Bambamarca/picture?width=320&height=320" group-title="Local",Wtv (Bambamarca) (480p) [Not 24/7] -https://ca.inka.net.pe/wtv/wtv/index.m3u8 -#EXTINF:-1 tvg-id="WtvChincha.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-u2cQaqrC-MM/XtMgGoEPjuI/AAAAAAAAAi0/MdatufRBFL8tzM7UQ-W6QlN4EwCrwBprgCLcBGAsYHQ/s400/71062193_108412730561392_4146096209032904704_o.png" group-title="Local",Wtv (La Verdad y Punto) (Chincha) (720p) [Not 24/7] -https://v4.tustreaming.cl/wtv/index.m3u8 -#EXTINF:-1 tvg-id="XTVChachapoyas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canalxtvperu/picture?width=320&height=320" group-title="Local",X TV (Chachapoyas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/xtv/xtv/playlist.m3u8 diff --git a/channels/pf.m3u b/channels/pf.m3u deleted file mode 100644 index 15f6ae0cb..000000000 --- a/channels/pf.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TNTV.pf" tvg-country="PF" tvg-language="French" tvg-logo="https://i.imgur.com/NzDscwm.png" group-title="General",TNTV (720p) [Not 24/7] -https://bcovlive-a.akamaihd.net/304fe71ee59a4d9692c5fa03548aa91a/us-west-2/5816339219001/playlist.m3u8 diff --git a/channels/ph.m3u b/channels/ph.m3u deleted file mode 100644 index cf90c495d..000000000 --- a/channels/ph.m3u +++ /dev/null @@ -1,37 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CCTN47.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",CCTN 47 (1080p) [Not 24/7] -http://122.55.252.134:8443/live/bba5b536faeacb9b56a3239f1ee8e3b3/1.m3u8 -#EXTINF:-1 tvg-id="DepEdTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",DepEd TV (480p) [Geo-blocked] -https://d3cbe0gidjd4k2.cloudfront.net/channel_7/channel7/playlist.m3u8 -#EXTINF:-1 tvg-id="DZRHNewsTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/qr0w2eZ.jpg" group-title="News",DZRH News TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/DZRHNewsTelevision/live -#EXTINF:-1 tvg-id="GMAPinoyTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/gmapinoy.png" group-title="",GMA Pinoy TV (360p) [Offline] -http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Philippines/cd1b220644affbb.m3u8 -#EXTINF:-1 tvg-id="GreatCommissionTVGCTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",Great Commission TV (GCTV) (360p) [Not 24/7] -http://45.32.115.103/live/livestream/index.m3u8 -#EXTINF:-1 tvg-id="INCTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/FcLAaMT.png" group-title="",INC TV (1080p) -http://churchrus2-lh.akamaihd.net/i/coctesting_1@57550/master.m3u8 -#EXTINF:-1 tvg-id="KapamilyaChannel.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",Kapamilya Channel [Offline] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCstEtN0pgOmCf02EdXsGChw/live -#EXTINF:-1 tvg-id="LifeTVAsia.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/nqwE9ij.jpg" group-title="",Life TV Asia (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_6/channel6/playlist.m3u8 -#EXTINF:-1 tvg-id="NET25.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",NET 25 (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/Net25Tv/live -#EXTINF:-1 tvg-id="PEPTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/BhTSFnR.png" group-title="",PEP TV [Not 24/7] -https://iptv--iptv.repl.co/streamlink?url=https://www.twitch.tv/communitytv3/ -#EXTINF:-1 tvg-id="PilipinasHD.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/Wis8fVO.jpg" group-title="",Pilipinas HD (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_5/channel5/playlist.m3u8 -#EXTINF:-1 tvg-id="PilipinasHD.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/Wis8fVO.jpg" group-title="",Pilipinas HD (360p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_5/smil:channel_5.smil/chunklist_w1281634943_b300000_sleng.m3u8 -#EXTINF:-1 tvg-id="PTV4.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/EPnbcPp.png" group-title="News",PTV 4 (480p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x5cr6b9 -#EXTINF:-1 tvg-id="ShopTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/RUQASCU.png" group-title="Shop",Shop TV (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_1/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="SMNI.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/l2JSQme.png" group-title="",SMNI (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19079954/events/7831871/live.m3u8 -#EXTINF:-1 tvg-id="SuperRadyoDZBB.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",Super Radyo DZBB (720p) [Not 24/7] -http://stream.gmanews.tv/ioslive/livestream/chunklist.m3u8?wowzasessionid=693701106 -#EXTINF:-1 tvg-id="TVMaria.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",TV Maria [Offline] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/TVMariaLIVE/live -#EXTINF:-1 tvg-id="UNTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/CAlBD49.png" group-title="",UNTV (1080p) [Timeout] -https://cdn.untvweb.com/live-stream/untvweb.m3u8 diff --git a/channels/pk.m3u b/channels/pk.m3u deleted file mode 100644 index 4fd4cb920..000000000 --- a/channels/pk.m3u +++ /dev/null @@ -1,68 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="92News.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/OifwcrE.png" group-title="News",92 News (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsgC5cbz3DE2Shh34gNKiog/live -#EXTINF:-1 tvg-id="92NewsUK.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/SzaGz3D.jpg" group-title="Local",92 News UK (576p) -https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-92_news-hsslive-25f-16x9-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="ARYDigital.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/TVP7g03.png" group-title="",ARY Digital (1080p) [Offline] -#EXTVLCOPT:http-referrer=https://live.arydigital.tv/ -https://6zklx4wryw9b-hls-live.5centscdn.com/arydigital/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ARYDigitalUsa.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/TVP7g03.png" group-title="",ARY Digital Usa (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://live.arydigital.tv/ -https://6zklx4wryw9b-hls-live.5centscdn.com/arydigitalusa/498f1704b692c3ad4dbfdf5ba5d04536.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ARYNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/R4KtTbJ.jpg" group-title="News",ARY News (720p) [Offline] -#EXTVLCOPT:http-referrer=https://live.arynews.tv/ -https://6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AVTKhyber.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/uh8HAPY.jpg" group-title="",AVT Khyber (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/index_150_av-p.m3u8 -#EXTINF:-1 tvg-id="AVTKhyber.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/uh8HAPY.jpg" group-title="",AVT Khyber (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/master.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnMBV5Iw4WqKILKue1nP6Hg/live -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (480p) [Not 24/7] -https://imob.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (360p) [Not 24/7] -https://imob.dunyanews.tv/live/_definst_/ngrp:dunyalive_1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (INT Feed) (480p) [Not 24/7] -https://intl.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu;English" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (UK Feed) (360p) [Not 24/7] -https://ukintl.dunyanews.tv/liveuk/ngrp:dunyalive_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu;English" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (USA Feed) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCpgLvM8Oor7kZHU6HHfwWVQ/live -#EXTINF:-1 tvg-id="ExpressNewsPakistan.pk" tvg-country="PK" tvg-language="English" tvg-logo="" group-title="News",Express News Pakistan (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/expressdigital1/livestream/master.m3u8 -#EXTINF:-1 tvg-id="GeoNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="" group-title="News",Geo News (576p) [Not 24/7] -https://jk3lz82elw79-hls-live.5centscdn.com/Geo/eae835e83c0494a376229f254f7d3392.sdp/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Kay2TV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/Hw94SaM.jpg" group-title="",Kay2 TV (404p) [Not 24/7] -https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/index_150_av-p.m3u8 -#EXTINF:-1 tvg-id="Kay2TV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/Hw94SaM.jpg" group-title="",Kay2 TV (404p) [Not 24/7] -https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/master.m3u8 -#EXTINF:-1 tvg-id="KhyberMiddleEastTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/mqFWpXX.png" group-title="",Khyber Middle East TV (720p) [Not 24/7] -https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 -#EXTINF:-1 tvg-id="KhyberNewsTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/NL1cqS2.png" group-title="News",Khyber News TV (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 -#EXTINF:-1 tvg-id="LahoreNews.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://lahorenews.tv/images_new/lahorenews-logo-footer.png.pagespeed.ce.a6y3_7cI59.png" group-title="News",Lahore News (720p) [Not 24/7] -http://mlive.lahorenews.tv/lahorelive/lnews_1/chunklist_DVR.m3u8 -#EXTINF:-1 tvg-id="LahoreNews.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://lahorenews.tv/images_new/lahorenews-logo-footer.png.pagespeed.ce.a6y3_7cI59.png" group-title="News",Lahore News (720p) [Not 24/7] -https://vcdn.dunyanews.tv/lahorelive/_definst_/ngrp:lnews_1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelBangla.pk" tvg-country="PK" tvg-language="Bengali" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Bangla (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/madanitvbangla.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelBangla.pk" tvg-country="PK" tvg-language="Bengali" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Bangla (1080p) [Offline] -https://madnitv.vdn.dstreamone.net/madnitvbangla/madnibanglaabr/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelEnglish.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel English (1080p) [Offline] -https://madnitv.vdn.dstreamone.net/madnitvenglish/madnienglishabr/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelUrdu.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Urdu (1080p) [Geo-blocked] -https://madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8 -#EXTINF:-1 tvg-id="OneGolf.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://i.imgur.com/CKnSeT7.png" group-title="Sports",One Golf (720p) -http://162.250.201.58:6211/pk/ONEGOLF/index.m3u8 -#EXTINF:-1 tvg-id="PTVHome.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/mJxpdBU.png" group-title="",PTV Home (238p) [Not 24/7] -https://live.ptv.com.pk/live/stream/ptvhome/playlist.m3u8 -#EXTINF:-1 tvg-id="PTVNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/LyqGxwv.jpg" group-title="News",PTV News (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA/live -#EXTINF:-1 tvg-id="PTVSports.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://i.imgur.com/MWm7yEa.png" group-title="",PTV Sports (1080p) [Offline] -http://103.81.104.118/hls/stream11.m3u8 -#EXTINF:-1 tvg-id="PTVWorld.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/eeDFRgN.png" group-title="",PTV World (360p) [Not 24/7] -https://live.ptv.com.pk/live/ptvworld/playlist.m3u8 -#EXTINF:-1 tvg-id="SuchTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/WlxWJm1.png" group-title="News",Such TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x72hrde -#EXTINF:-1 tvg-id="ZindagiTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/RtHeRwp.png" group-title="",Zindagi TV (576p) [Not 24/7] -https://5ad386ff92705.streamlock.net/live_transcoder/ngrp:zindagitv.stream_all/chunklist.m3u8 diff --git a/channels/pl.m3u b/channels/pl.m3u deleted file mode 100644 index 9e407a5ef..000000000 --- a/channels/pl.m3u +++ /dev/null @@ -1,83 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="4FUNTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",4FUN TV (576p) [Not 24/7] -https://stream.4fun.tv:8888/hls/4f_high/index.m3u8 -#EXTINF:-1 tvg-id="dlaCiebietv.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/N318K6a.jpg" group-title="",dlaCiebie.tv (1080p) [Not 24/7] -http://94.246.128.53:1935/tv/dlaCiebieTv/playlist.m3u8 -#EXTINF:-1 tvg-id="Echo24.tv" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/a5DX4nh.jpg" group-title="",Echo24 (720p) [Not 24/7] -https://live-insysgo.cf.insyscd.net/echo24.720.smil/manifest.mpd -#EXTINF:-1 tvg-id="EzoTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/hJAoLIq.png" group-title="",Ezo TV (576p) [Not 24/7] -http://live.ezotv.pl:1935/live/EZOTV/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioCzworka.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Radio Czworka (1080p) -http://stream14.polskieradio.pl:1935/pr4_video/video_pr4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SferaTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/kgE2maL.jpg" group-title="",Sfera TV (480p) [Not 24/7] -http://stream.sferatv.pl:1935/sferalive/smil:sferalive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelewizjaPograniczeGlubczyce.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/ilGvIug.jpeg" group-title="",Telewizja Pogranicze (Głubczyce) (720p) [Not 24/7] -http://95.160.28.218:1935/pogranicze/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TelewizjaTorun.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Telewizja Toruń (1080p) [Not 24/7] -http://217.173.176.107:1935/live/ngrp:tvk.stream_mobile/chunks.m3u8 -#EXTINF:-1 tvg-id="TrwamTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Trwam TV (480p) -http://trwamtv.live.e57-po.insyscd.net/cl01/out/u/trwam_3.m3u8 -#EXTINF:-1 tvg-id="TVKujawy.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/tgLWe9o.jpg" group-title="",TV Kujawy (576p) [Not 24/7] -http://stream.tvkujawy.pl:8080/live/broadcast.m3u8 -#EXTINF:-1 tvg-id="TVRegionalnaLubin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/l8tRJVW.jpg" group-title="",TV Regionalna (Lubin) (576p) [Not 24/7] -https://tvreg.klemit.net/regionalna/stream/index.m3u8 -#EXTINF:-1 tvg-id="TVRepublika.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/VaiHvZ3.jpg" group-title="",TV Republika (1080p) -https://ec08.luz1.cache.orange.pl/jupiter/o2-cl7/live/tvrepublika/live.m3u8 -#EXTINF:-1 tvg-id="TVRepublika.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/VaiHvZ3.jpg" group-title="",TV Republika (540p) [Not 24/7] -http://m1-tvrepublika.4vod.tv/smil:premium_abr.ism/playlist.m3u8 -#EXTINF:-1 tvg-id="TVREPUBLIKA.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",TV REPUBLIKA (1080p) [Offline] -http://188.47.212.71/jupiter/o1-cl1/live/tvrepublika/live.m3u8 -#EXTINF:-1 tvg-id="TVTorun.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/GdbkqCM.png" group-title="",TV Toruń (1080p) -http://217.173.176.107:1935/live/tvk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTrwam.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/k6zdLLu.jpg" group-title="",TV Trwam (480p) -https://trwamtv.live.e59-po.insyscd.net/cl01/out/u/trwam_3.m3u8 -#EXTINF:-1 tvg-id="TVP1.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/TVP1.png" group-title="",TVP 1 (720p) [Offline] -http://207.110.52.61:8080/s/hls/5/9584/tvp1_276/1/1/index.m3u8 -#EXTINF:-1 tvg-id="TVP3Bialystok.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/zPSpvss.jpg" group-title="",TVP 3 Białystok (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbialystok -#EXTINF:-1 tvg-id="TVP3Bydgoszcz.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/b0Xevsc.jpg" group-title="",TVP 3 Bydgoszcz (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbydgoszcz -#EXTINF:-1 tvg-id="TVP3Gdansk.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/wGZCj7G.jpg" group-title="",TVP 3 Gdańsk (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgdansk -#EXTINF:-1 tvg-id="TVP3GorzowWielkopolski.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/H3jtBQm.jpg" group-title="",TVP 3 Gorzów Wielkopolski (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgorzow -#EXTINF:-1 tvg-id="TVP3Katowice.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/burRKHa.jpg" group-title="",TVP 3 Katowice (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkatowice -#EXTINF:-1 tvg-id="TVP3Kielce.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/YcQxM94.jpg" group-title="",TVP 3 Kielce (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkielce -#EXTINF:-1 tvg-id="TVP3Krakow.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/MbAKxD1.jpg" group-title="",TVP 3 Kraków (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkrakow -#EXTINF:-1 tvg-id="TVP3Lodz.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/r5wxdkB.jpg" group-title="",TVP 3 Łódź (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplodz -#EXTINF:-1 tvg-id="TVP3Lublin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/h7oq2yg.jpg" group-title="",TVP 3 Lublin (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplublin -#EXTINF:-1 tvg-id="TVP3Olsztyn.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/Aa0HedU.jpg" group-title="",TVP 3 Olsztyn (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpolsztyn -#EXTINF:-1 tvg-id="TVP3Opole.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/dYRtDRA.jpg" group-title="",TVP 3 Opole (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpopole -#EXTINF:-1 tvg-id="TVP3Poznan.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/mTnjVGQ.jpg" group-title="",TVP 3 Poznań (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvppoznan -#EXTINF:-1 tvg-id="TVP3Rzeszow.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/6jGX6Xy.jpg" group-title="",TVP 3 Rzeszów (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvprzeszow -#EXTINF:-1 tvg-id="TVP3Szczecin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/NRb6S8z.jpg" group-title="",TVP 3 Szczecin (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpszczecin -#EXTINF:-1 tvg-id="TVP3Warszawa.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/AfZOO8U.jpg" group-title="",TVP 3 Warszawa (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwarszawa -#EXTINF:-1 tvg-id="TVP3Wroclaw.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/0em2QIh.jpg" group-title="",TVP 3 Wrocław (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwroclaw -#EXTINF:-1 tvg-id="TVPInfo.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/idt6Zz3.jpg" group-title="",TVP Info (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpinfo -#EXTINF:-1 tvg-id="TVPParlament1.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Parlament (kanał 1) (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal1 -#EXTINF:-1 tvg-id="TVPParlament2.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Parlament (kanał 2) (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal2 -#EXTINF:-1 tvg-id="TVPSejm.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Sejm (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=sejm -#EXTINF:-1 tvg-id="TVPSenat.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Senat (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=senat -#EXTINF:-1 tvg-id="TVT.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",TVT (720p) [Not 24/7] -http://176.107.129.219/media/tvt/index.m3u8 -#EXTINF:-1 tvg-id="TVTZgorzelec.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/zhzVpgf.jpg" group-title="",TVT Zgorzelec (576p) [Not 24/7] -http://gargoyle.tomkow.pl/hls/tvt.m3u8 -#EXTINF:-1 tvg-id="BelsatTV.pl" tvg-country="BY" tvg-language="Belarusian" tvg-logo="https://belsat.eu/wp-content/themes/bel-cms/assets/images/belsat_logo.png" group-title="General",Белсат ТВ (1080p) -http://f1.stream.devkom.pro:1063/ramowka/video.m3u8 diff --git a/channels/pr.m3u b/channels/pr.m3u deleted file mode 100644 index 4cc4c799e..000000000 --- a/channels/pr.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CDMInternational.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KlJnXF3.jpg" group-title="",CDM International (480p) [Not 24/7] -https://59825a54e4454.streamlock.net:8443/marcos536/marcos536/playlist.m3u8 -#EXTINF:-1 tvg-id="CDMTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",CDM TV (480p) [Not 24/7] -http://205.164.56.130:1935/marcos536/marcos536/playlist.m3u8 -#EXTINF:-1 tvg-id="ConectateTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/conectatetvpr/picture?width=320&height=320" group-title="",Conéctate TV (ACS Network) (480p) [Not 24/7] -https://play.amelbasoluciones.co:3257/live/acsnetworklive.m3u8 -#EXTINF:-1 tvg-id="CTNiChristianTelevisionNetworkInternational.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2018/07/CTNi.png" group-title="Religious",CTNi (Christian Television Network International) (480p) [Not 24/7] -https://584097344c1f0.streamlock.net/48/smil:48.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MasTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",Mas TV (1080p) -https://video1.getstreamhosting.com:1936/8212/8212/playlist.m3u8 -#EXTINF:-1 tvg-id="NotiUnoPuertoRico.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",Noti Uno Puerto Rico (854p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/unoradio/unoradio1/playlist.m3u8 -#EXTINF:-1 tvg-id="PuraPalabra.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i1.wp.com/unored.tv/wp-content/uploads/2016/03/Pura-Palabra-TV.jpg" group-title="",Pura Palabra (718p) [Not 24/7] -https://59825a54e4454.streamlock.net:8443/william233/william233/playlist.m3u8 -#EXTINF:-1 tvg-id="WKAQNoticias.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WKAQ Noticias Puerto Rico (1080p) [Offline] -https://wkaqlive-lh.akamaihd.net/i/PR_STREAM1@311877/master.m3u8 diff --git a/channels/ps.m3u b/channels/ps.m3u deleted file mode 100644 index 71fa2c936..000000000 --- a/channels/ps.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7alaTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",7ala TV [Geo-blocked] -http://vstream3.hadara.ps:8081/7alafm2020/7alafm2020/playlist.m3u8 -#EXTINF:-1 tvg-id="Ajyal TV" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j1Xmygq.jpg" group-title="General",Ajyal TV (720p) [Not 24/7] -http://htvajyal.mada.ps:8888/ajyal/index.m3u8 -#EXTINF:-1 tvg-id="Ajyal TV" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j1Xmygq.jpg" group-title="General",Ajyal TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/ajyal/index.m3u8 -#EXTINF:-1 tvg-id="AlAqsaChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="http://aqsatv.ps/style/atyaf/assets/images/logo-footer.png" group-title="Religious",Al Aqsa Channel (416p) [Not 24/7] -https://live-1.linuxway.info/aqsatv/live/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfajerTV1.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H8SaZXN.png" group-title="General",Alfajer TV 1 (304p) [Not 24/7] -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="AlfajerTV2.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H8SaZXN.png" group-title="General",Alfajer TV 2 (720p) -http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="Audeh.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Audeh (480p) -http://htvpalsat.mada.ps:8888/audeh/index.m3u8 -#EXTINF:-1 tvg-id="Falastini.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="http://www.falastini.tv/wp-content/uploads/2018/10/logo.png" group-title="Music",Falastini (720p) [Offline] -http://51.255.84.28:8081/palestiniantv_source/live/playlist.m3u8 -#EXTINF:-1 tvg-id="HebronTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Hebron TV (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/newhebron/newheb/playlist.m3u8 -#EXTINF:-1 tvg-id="HekayaTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Hekaya TV (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/Hekaya/hekayamix/playlist.m3u8 -#EXTINF:-1 tvg-id="MarahFM.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PeIYCXs.jpg" group-title="Music",Marah FM (720p) [Not 24/7] -http://vstream3.hadara.ps:8081/marahFM_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="Mawal.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Mawal (720p) [Not 24/7] -http://vstream3.hadara.ps:8081/MawwalHD_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="MusawaChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PEFW4Vy.png" group-title="General",MusawaChannel (404p) [Not 24/7] -http://htvpalsat.mada.ps:8888/musawa/index.m3u8 -#EXTINF:-1 tvg-id="NablusTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Nablus TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/nabluslive/index.m3u8 -#EXTINF:-1 tvg-id="PalestineMubasher.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/bYz6HUG.png" group-title="General",Palestine Mubasher (404p) -http://htvpalsat.mada.ps:8888/PBCLive/index.m3u8 -#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KcSgZg0.jpg" group-title="General",Palestine Satellite Channel (404p) -http://htvpalsat.mada.ps:8888/PBC/index.m3u8 -#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KcSgZg0.jpg" group-title="General",Palestine Satellite Channel (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/palestinian_satellite_channel/hls1/palestinian_satellite_channel.m3u8 -#EXTINF:-1 tvg-id="PalestineToday.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://paltoday.tv/style/assets/images/logo.png" group-title="News",Palestine Today (480p) [Geo-blocked] -https://live.paltoday.tv/paltv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="palestiniantv.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",palestiniantv (720p) -http://palestiniantv.origin.technostreaming.net:8081/palestiniantv_source/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioAlbaladTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Radio Albalad TV (1080p) [Not 24/7] -http://streaming.zaytonatube.com:8080/radioalbalad/radioalbalad/playlist.m3u8 -#EXTINF:-1 tvg-id="RajeenTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Rajeen TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/palabroad/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ShababFM.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Shabab FM (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/ShababFM/shabab/index.m3u8 -#EXTINF:-1 tvg-id="WatarTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Watar TV (720p) [Not 24/7] -http://htvint.mada.ps:8889/orient/index.m3u8 -#EXTINF:-1 tvg-id="WattanTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Wattan TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/wattan/index.m3u8 diff --git a/channels/pt.m3u b/channels/pt.m3u deleted file mode 100644 index 6629f44b3..000000000 --- a/channels/pt.m3u +++ /dev/null @@ -1,118 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal11.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.one.accedo.tv/files/5da5efcea0e845000ed0e5d4?sessionKey=01FNEJ1BS1DAS4AGH38M9E3DZ01A65B14752.png" group-title="Sports",Canal 11 (720p) -https://d2ve4fchffi4n1.cloudfront.net/out/v1/df356edd16f3434ab417f2c48cb1d516/index.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://canal.parlamento.pt/images/ARTV_Logo.png" group-title="Legislative",Canal Parlamento (432p) [Not 24/7] -https://playout175.livextend.cloud/livenlin4/2liveartvpub/playlist.m3u8 -#EXTINF:-1 tvg-id="IgrejaOnline.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://www.igreja-online.tv/img/logo.png" group-title="",Igreja Online (574p) [Not 24/7] -http://195.22.11.11:1935/igronline/igronline2/playlist.m3u8 -#EXTINF:-1 tvg-id="KuriakosCine.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/CZViCwB.jpg" group-title="Movies",Kuriakos Cine (1080p) [Not 24/7] -http://c2.manasat.com:1935/kcine/kcine3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosKids.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/aNVzKYJ.png" group-title="Kids",Kuriakos Kids (1080p) -http://c2.manasat.com:1935/kkids/kkids3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosMusic.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Zl40NYi.jpg" group-title="Music",Kuriakos Music (1080p) -http://c2.manasat.com:1935/kmusic/kmusic3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/M5i4hfh.png" group-title="Religious",Kuriakos TV (1080p) -http://195.22.11.11:1935/ktv/ktv1/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.teleon.tv/logo/kuriakos_tv_pt.png" group-title="Religious",Kuriakos TV (576p) -http://195.22.11.11:1935/ktv/ktv2/playlist.m3u8 -#EXTINF:-1 tvg-id="PortoCanal.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/b/ba/Logo_Porto_Canal.jpg" group-title="General",Porto Canal (360p) [Not 24/7] -https://streamer-a01.videos.sapo.pt/live/portocanal/playlist.m3u8 -#EXTINF:-1 tvg-id="PortoCanal.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/b/ba/Logo_Porto_Canal.jpg" group-title="General",Porto Canal (360p) [Not 24/7] -https://streamer-b02.videos.sapo.pt/live/portocanal/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioClubeTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/2TO0u6Z.png" group-title="General",Radio Clube TV (720p) [Not 24/7] -https://stmv1.srvsite.com/clubefmradio/clubefmradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAcores.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/106-563419141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Açores (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtpacoresHD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAcores.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/106-563419141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Açores (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtpacores.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAfrica.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/27-363219141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP África (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtpafrica.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/120-344318101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Internacional (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtpi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/120-344318101410.png" group-title="General",RTP Internacional (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s38/index.m3u8 -#EXTINF:-1 tvg-id="RTPMadeira.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/107-443519141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64)" group-title="General",RTP Madeira (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) -https://streaming-live.rtp.pt/liverepeater/smil:rtpmadeira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPMemoria.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/80-584819141705.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Memória (360p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtpmem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPRadiozigzag.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/zigzagtv2020.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="Music",RTP Rádio Zig Zag (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:zigzagHD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPRadiozigzag.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/zigzagtv2020.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="Music",RTP Rádio Zig Zag [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:zigzag.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/5-563718101410.png" group-title="General",RTP1 (480p) -http://162.212.178.69:41042/bysid/608 -#EXTINF:-1 tvg-id="RTP1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/5-563718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP1 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/rtpClean1HD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/3-363718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP2 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/rtpClean2HD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/3-363718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP2 (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/liverepeater/smil:rtp2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/64-393818101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",RTP3 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/livetvhlsDVR/rtpnHDdvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/64-393818101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",RTP3 (504p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 -https://streaming-live.rtp.pt/livetvhlsDVR/rtpndvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SICInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_sic_m.png" group-title="General",SIC Internacional (720p) [Offline] -http://live.impresa.pt/live/sicint/sicint.m3u8 -#EXTINF:-1 tvg-id="SICNoticias.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/a/ab/SN_300x130-escuro.png" group-title="News",SIC Noticias [Geo-blocked] -http://live.impresa.pt/live/sicnot/sicnot.m3u8 -#EXTINF:-1 tvg-id="SobrenaturalTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/jYIf7Mz.png" group-title="Religious",Sobrenatural TV (1080p) -http://213.13.26.11:1935/live/sobrenaturaltv/livestream.m3u8 -#EXTINF:-1 tvg-id="SobrenaturalTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VgzVZto.png" group-title="Religious",Sobrenatural TV (360p) [Not 24/7] -http://livestreamcdn.net:1935/SobrenaturalTV/SobrenaturalTV/playlist.m3u8 -#EXTINF:-1 tvg-id="SportTV1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv1.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 1 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 2 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 3 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV4.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 4 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="STVNoticias.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="" group-title="News",STV Noticias (240p) [Not 24/7] -http://dcunilive36-lh.akamaihd.net/i/dclive_1@668002/master.m3u8 -#EXTINF:-1 tvg-id="TVFatima.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hCFVc5S.jpg" group-title="Religious",TV Fátima (1080p) -http://213.13.26.11:1935/live/santuario.stream/livestream.m3u8 -#EXTINF:-1 tvg-id="TVFatima.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hCFVc5S.jpg" group-title="Religious",TV Fátima (1080p) [Not 24/7] -https://streamer-b02.videos.sapo.pt/live/santuario.stream/livestream.m3u8 -#EXTINF:-1 tvg-id="TVMANAENG.pt" tvg-country="PT" tvg-language="English" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (ENG) (484p) -http://c2.manasat.com:1935/church-online/ingles3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANAESP.pt" tvg-country="PT" tvg-language="Spanish" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (ESP) (488p) -http://c2.manasat.com:1935/iglesia-online/espanhol3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANAFR.pt" tvg-country="PT" tvg-language="French" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (FR) (484p) -http://c2.manasat.com:1935/eglise-online/frances3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANARU.pt" tvg-country="PT" tvg-language="Russian" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (RU) (486p) -http://c2.manasat.com:1935/tserkov-online/russo3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMana1BRA.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.tvmana1.com/wp-content/uploads/2020/04/logo_tv_mana_1.png" group-title="Religious",TV Maná 1 (320p) [Not 24/7] -http://195.22.11.11:1935/tvmana/tvmana1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMana2BRA.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.tvmana1.com/wp-content/uploads/2020/04/logo_tv_mana_1.png" group-title="Religious",TV Maná 2 (576p) [Not 24/7] -http://195.22.11.11:1935/tvmana/tvmana2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVManaCordoba.pt" tvg-country="PT" tvg-language="Spanish" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV Maná Córdoba (576p) [Not 24/7] -http://csvl03.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANAMAPUTO.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA MAPUTO (576p) [Not 24/7] -http://csvl03.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANAMAPUTO.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA MAPUTO (526p) [Not 24/7] -http://streamspub.manasat.com:1935/tvmz/tvmz2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANA1PORTUGAL.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA-1 PORTUGAL (1080p) [Not 24/7] -http://csvl04.manasat.com:1935/tvmana/tvmana3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVI.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/tvi.png" group-title="General",TVI (480p) -https://video-auth2.iol.pt/live_edge/tvi_abr/edge_servers/tvi-480p/chunks.m3u8 -#EXTINF:-1 tvg-id="TVIReality.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="" group-title="",TVI Reality (480p) -https://video-auth2.iol.pt/live_tvi_direct/live_tvi_direct/edge_servers/tvireality-480p/chunks.m3u8 -#EXTINF:-1 tvg-id="TVI24.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/5/50/Tvi_24.png" group-title="News",TVI24 (480p) -https://video-auth2.iol.pt/live_edge/tvi24_abr/edge_servers/tvi24-480p/chunks.m3u8 diff --git a/channels/pt_samsung.m3u b/channels/pt_samsung.m3u deleted file mode 100644 index 06a60a92a..000000000 --- a/channels/pt_samsung.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsPortugues.fr" tvg-country="PT;BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Português (720p) -https://rakuten-euronews-8-pt.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/py.m3u b/channels/py.m3u deleted file mode 100644 index d004547b2..000000000 --- a/channels/py.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABCTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tBdgllD.png" group-title="",ABC TV (720p) -https://d2e809bgs49c6y.cloudfront.net/live/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851/live.isml/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851.m3u8 -#EXTINF:-1 tvg-id="C9N.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",C9N (1080p) [Offline] -http://170.83.242.153:8000/play/c9nhd -#EXTINF:-1 tvg-id="C9N.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",C9N (480p) [Offline] -http://170.83.242.153:8000/play/a022 -#EXTINF:-1 tvg-id="FarraPlay.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",Farra Play (720p) [Not 24/7] -http://159.203.148.226/live/farra.m3u8 -#EXTINF:-1 tvg-id="GEN.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://lanacionpy.nyc3.cdn.digitaloceanspaces.com/img/logo-gen.svg" group-title="",GEN (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/paraguay/gentv -#EXTINF:-1 tvg-id="LaTele.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",La Tele (480p) [Offline] -http://170.83.242.153:8000/play/a00j -#EXTINF:-1 tvg-id="LIMTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limtvok/picture?width=300&height=300" group-title="",LIM TV (720p) [Not 24/7] -https://live.admefy.com/live/default/ashamed_crimson_3360d.m3u8 -#EXTINF:-1 tvg-id="MasTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mastvok/picture?width=300&height=300" group-title="",Más TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/mastvonline -#EXTINF:-1 tvg-id="NPY.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",NPY (480p) [Offline] -http://170.83.242.153:8000/play/a024 -#EXTINF:-1 tvg-id="Paravision.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Paravision (480p) [Offline] -http://170.83.242.153:8000/play/a021 -#EXTINF:-1 tvg-id="RadioUniverso.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://lanacionpy.nyc3.cdn.digitaloceanspaces.com/img/logo-universo.svg" group-title="",Radio Universo (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/paraguay/universo -#EXTINF:-1 tvg-id="SNT.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",SNT (480p) [Offline] -http://170.83.242.153:8000/play/a03d -#EXTINF:-1 tvg-id="SURTVItapua.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/804016687108521985/L4G3JMvc_400x400.jpg" group-title="",SUR TV Itapúa (480p) [Offline] -http://170.83.242.153:8000/play/a025 -#EXTINF:-1 tvg-id="Telefuturo.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qZ9LcJb.jpeg" group-title="",Telefuturo (480p) [Offline] -http://170.83.242.153:8000/play/a03e -#EXTINF:-1 tvg-id="TreceParaguay.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",Trece Paraguay (720p) [Not 24/7] -http://174.138.118.252/live/trece.m3u8 -#EXTINF:-1 tvg-id="Unicanal.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/cgTD2TW.png" group-title="",Unicanal (720p) [Not 24/7] -http://45.55.127.106/live/unicanal.m3u8 diff --git a/channels/qa.m3u b/channels/qa.m3u deleted file mode 100644 index 7ceba5f2c..000000000 --- a/channels/qa.m3u +++ /dev/null @@ -1,32 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlJazeeraArabic.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/DBJTZaS.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Al Jazeera Arabic (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s69/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraArabic.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x9TQYI3.jpg" group-title="News",Al Jazeera Arabic (420p) -https://live-hls-web-aja.getaj.net/AJA/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraBalkans.qa" tvg-country="BA;HR;MK;ME;RS;SI" tvg-language="Bosnian;Serbian;Croatian;Montenegrin" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Al_Jazeera_Balkans.png/220px-Al_Jazeera_Balkans.png" group-title="News",Al Jazeera Balkans (1080p) -https://live-hls-web-ajb.getaj.net/AJB/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraDocumentary.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/El2hhYb.png" group-title="Documentary",Al Jazeera Documentary (270p) [Geo-blocked] -https://live-hls-web-ajd.getaj.net/AJD/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraDocumentary.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/El2hhYb.png" group-title="Documentary",Al Jazeera Documentary (576p) [Not 24/7] -#EXTVLCOPT:http-referrer=http://azrotv.com/ -http://teledunet.com:8080/live/azrotv/azrotv2021/10040.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraEnglish.qa" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/BB93NQP.png" group-title="News",Al Jazeera English (1080p) -https://live-hls-web-aje.getaj.net/AJE/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraEnglish.qa" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/BB93NQP.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Al Jazeera English (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s23/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraMubasher.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/xx6uOhZ.png" group-title="Legislative",Al Jazeera Mubasher (1080p) -https://live-hls-web-ajm.getaj.net/AJM/index.m3u8 -#EXTINF:-1 tvg-id="AlKassFive.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="" group-title="Sports",Al Kass Five (304p) -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="AlRassoul.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/pTmN1X9T/al-rassoul.png" group-title="Religious",Al Rassoul (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/AlRassoulChannel/live -#EXTINF:-1 tvg-id="AlRayyan.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uQMoKXn.png" group-title="General",Al Rayyan (1080p) -https://svs.itworkscdn.net/alrayyanlive/alrayyan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRayyanAlQadeem.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mVwHGbc.png" group-title="Classic",Al Rayyan Al Qadeem (1080p) -https://svs.itworkscdn.net/alrayyanqadeemlive/alrayyanqadeem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="QatarTV.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="http://www.qtv.qa/assets/images/logos/qtv.png" group-title="General",Qatar TV (360p) -https://qatartv.akamaized.net/hls/live/2026573/qtv1/master.m3u8 -#EXTINF:-1 tvg-id="QatarTV2.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="http://www.qtv.qa/assets/images/logos/qtvTwo2.png" group-title="General",Qatar TV 2 (480p) -https://qatartv.akamaized.net/hls/live/2026574/qtv2/master.m3u8 diff --git a/channels/ro.m3u b/channels/ro.m3u deleted file mode 100644 index 2a3c5cf2f..000000000 --- a/channels/ro.m3u +++ /dev/null @@ -1,146 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="A7TV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/RmFg8BN.png" group-title="General",A7TV (720p) [Not 24/7] -https://play.streamkit.tv/content/channel/aseventv/live/aseventv.player.m3u8 -#EXTINF:-1 tvg-id="AgroTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/agro-tv.jpg" group-title="General",AgroTV (404p) [Not 24/7] -https://stream1.1616.ro:1945/agro/livestream/playlist.m3u8?wowzatokenhash=NqSD4qaHc94SbTW05NBB-lXC78ZiAOIbnbUBOHj1DAM= -#EXTINF:-1 tvg-id="AlephNews.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/MQ5PkKB.png" group-title="News",Aleph News (720p) -https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaOmegaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/StJg6Pu.png" group-title="Religious",Alfa Omega TV (540p) [Not 24/7] -http://s5.alfaomega.tv:1935/alfaomega/alfaomega1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaOmegaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/StJg6Pu.png" group-title="Religious",Alfa Omega TV (540p) [Not 24/7] -http://s5.alfaomega.tv:1935/alfaomega/smil:alfaomegatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Antena1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/26D3mCb.png" group-title="General",Antena 1 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/a1 -#EXTINF:-1 tvg-id="Antena3.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/91/Antena_3_%282016-present%29.png" group-title="News",Antena 3 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/a3 -#EXTINF:-1 tvg-id="AntenaComedy.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Comedy",Antena Comedy (432p) [Not 24/7] -http://stream1.antenaplay.ro/live/smil:ComedyPlay.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaInternational.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/3/34/Antena_Interna%C8%9Bional_%282016%29.png" group-title="General",Antena International (576p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/ai -#EXTINF:-1 tvg-id="AntenaMonden.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Antena Monden (720p) [Not 24/7] -http://stream1.antenaplay.ro/live/smil:AntenaMonden.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaStars.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/UnkDhbr.png" group-title="Lifestyle",Antena Stars (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/astars -#EXTINF:-1 tvg-id="AntenaSport.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/UnkDhbr.png" group-title="Sports",AntenaSport (720p) [Not 24/7] -https://stream1.antenaplay.ro/dfs/farasecrete5/playlist.m3u8 -#EXTINF:-1 tvg-id="B1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/VQqgkzw.jpg" group-title="News",B1 (272p) [Not 24/7] -https://stream.adunity.com/b1/b1.m3u8 -#EXTINF:-1 tvg-id="BucovinaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/7QHdiTO.png" group-title="",Bucovina TV (480p) -http://46.4.14.12:9999/btvsvlive/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/BxUibFh.png" group-title="Business",Canal33 (480p) [Timeout] -https://fms-https1.mediadirect.ro/live3/canal33.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ColumnaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Tyrzwr2.png" group-title="Local",Columna TV (576p) [Not 24/7] -rtmp://columna1.arya.ro/live/columnatv1 -#EXTINF:-1 tvg-id="CooknPlay.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/0/08/Cook%26Play.png" group-title="Cooking",Cook&Play (480p/720p) (720p) [Not 24/7] -https://stream1.antenaplay.ro/live/smil:CookPlay.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CorneaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/cn89fLa.jpg" group-title="",Cornea TV (720p) [Not 24/7] -http://89.149.30.158:1935/CorneaTV/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CredoTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/credo.png" group-title="",Credo TV (720p) [Not 24/7] -http://cdn.credonet.tv:1935/ctv/smil:livecredo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Digi24.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/digi-24.jpg" user-agent="iPhone" group-title="",Digi 24 (720p) [Offline] -#EXTVLCOPT:http-user-agent=iPhone -https://iptv-all.lanesh4d0w.repl.co/romania/digi24 -#EXTINF:-1 tvg-id="ElitaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Lmbmx3y.png" group-title="",Elita TV (576p) [Timeout] -http://46.55.111.242:8080/Rezina.m3u8 -#EXTINF:-1 tvg-id="EstTVNeamt.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/kQJ10r8/est-tv-ro.png" group-title="Local",Est TV (Neamt) (576p) [Not 24/7] -http://89.38.8.130:39435 -#EXTINF:-1 tvg-id="GTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/bJVG9HX/GTV.jpg" group-title="Local",GTV (576p) [Not 24/7] -rtmp://gtv1.arya.ro:1935/live/gtv1.flv -#EXTINF:-1 tvg-id="HappyChannel.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c3/Happy_Channel_%282020-present%29.png" group-title="Entertainment",Happy Channel (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/romania/happy-channel -#EXTINF:-1 tvg-id="IntermediaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/jo5fei5.png" group-title="",Intermedia TV (576p) -http://46.4.14.12:9999/intermedia1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalD.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a6/Kanal_D_Romania.png" group-title="General",Kanal D (384p) [Not 24/7] -https://stream1.kanald.ro/iphone/live.m3u8 -#EXTINF:-1 tvg-id="KissTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c4/Kiss_TV_%282014-present%29.png" group-title="Music",Kiss TV (576p) [Not 24/7] -https://fms-https1.mediadirect.ro/live3/_definst_/kiss.smil/playlist.m3u8?publisher=83 -#EXTINF:-1 tvg-id="LightChannel.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (480p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/GMIlcbgM/playlist.m3u8 -#EXTINF:-1 tvg-id="MEDIAREGIONAL.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",MEDIA REGIONAL (576p) -http://83.103.150.198:8080 -#EXTINF:-1 tvg-id="Mireasa.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Mireasa (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/mireasa -#EXTINF:-1 tvg-id="MoozDance.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-dance.jpg" group-title="Music",MoozDance (576p) -#EXTVLCOPT:http-referrer=https://mooz.tv/ -https://rtmp.digitalbroadcast.ro/moozdance/moozdance.m3u8 -#EXTINF:-1 tvg-id="MoozHits.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-hits.jpg" group-title="Music",MoozHits (576p) -#EXTVLCOPT:http-referrer=https://mooz.tv/ -https://rtmp.digitalbroadcast.ro/moozhits/moozhits.m3u8 -#EXTINF:-1 tvg-id="MoozRo.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-ro1.png" group-title="Music",MoozRo (576p) -#EXTVLCOPT:http-referrer=https://mooz.tv/ -https://rtmp.digitalbroadcast.ro/moozro/moozro.m3u8 -#EXTINF:-1 tvg-id="MusicChannelRomania.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/PRgvj4c.png" group-title="Music",Music Channel Romania (576p) [Offline] -https://edge126.rcs-rds.ro/utvedge/musicchannelhq.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NasulTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/nasul-tv.jpg" group-title="",Naşul TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/NasulTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaTVBrasov.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/DYO1tVZ.png" group-title="",Nova TV Brasov (576p) [Not 24/7] -http://novapress.ro:1935/live/nova/playlist.m3u8 -#EXTINF:-1 tvg-id="PloiestiTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/2dgyYGy/Ploiesti-TV.jpg" group-title="",Ploiesti TV [Offline] -rtmp://v1.arya.ro:1935/live/ptv1.flv -#EXTINF:-1 tvg-id="PrimaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/oLuxC2P.png" group-title="General",Prima TV (404p) [Not 24/7] -https://stream1.1616.ro:1945/prima/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= -#EXTINF:-1 tvg-id="ProTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/pro-tv.jpg" group-title="",Pro TV (1080p) -https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0 -#EXTINF:-1 tvg-id="Profitro.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Profit.ro (404p) -https://stream1.1616.ro:1945/profit/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= -#EXTINF:-1 tvg-id="Profitro.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Profit.ro (404p) [Not 24/7] -https://stream1.profit.ro:1945/profit/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RapsodiaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/TH1T2Y2/Rapsodia-TV.png" group-title="",Rapsodia TV (576p) [Offline] -rtmp://rapsodia1.arya.ro/live/rapsodiatv1 -#EXTINF:-1 tvg-id="RealitateaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/L0Givzu.png" group-title="",Realitatea FM (Studio) (576p) [Not 24/7] -https://live.realitatea.net/livertmp/plus/playlist.m3u8 -#EXTINF:-1 tvg-id="RealitateaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/L0Givzu.png" group-title="",Realitatea Plus (720p) [Timeout] -https://livestream.realitatea.net/livestream/liverealitatea.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RockTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/F69gAWa.png" group-title="Music",Rock TV (180p) -https://fms-https1.mediadirect.ro/live3/_definst_/rocktv.smil/master.m3u8 -#EXTINF:-1 tvg-id="SangeorzTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qFE5PUx.png" group-title="",Sangeorz TV (396p) [Not 24/7] -http://s2.streamnet.ro:8035/stream.flv -#EXTINF:-1 tvg-id="SomaxTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/3LdXQxm.png" group-title="",Somax TV [Offline] -http://webmobile.xdev.ro:81/tv12/playlist.m3u8 -#EXTINF:-1 tvg-id="SperantaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Speranta TV (720p) [Not 24/7] -http://play.streamkit.tv/content/channel/sperantatv/live/sperantatv.player.m3u8 -#EXTINF:-1 tvg-id="SperantaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Speranta TV (720p) [Not 24/7] -http://us200.streamkit.tv/edge/sperantatv_1200/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",SuperTV (1080p) [Not 24/7] -http://live.supertv.ro:1935/live/smil:hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telestar1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qSd8DTI.png" group-title="",Telestar1 (480p) [Not 24/7] -http://s1.streamnet.ro:8053/stream.flv -#EXTINF:-1 tvg-id="Telestar1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qSd8DTI.png" group-title="",Telestar1 (576p) [Offline] -http://193.34.109.10:8090 -#EXTINF:-1 tvg-id="TravelMix.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/travel-mix.jpg" group-title="Travel",Travel Mix (1080p) [Not 24/7] -http://89.38.8.131:39520 -#EXTINF:-1 tvg-id="TVSE.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/9c/TV_Sud_Est_%282017%29.png" group-title="",TV SE (576p) [Not 24/7] -http://89.38.8.130:39419 -#EXTINF:-1 tvg-id="TVPlusSuceava.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/6T7w975.png" group-title="",TVPlus Suceava (576p) -http://85.186.146.34:8080 -#EXTINF:-1 tvg-id="TVR1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/CKQ7mpB.png" group-title="General",TVR 1 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr1_hd_live/smil:tvr1_hd_live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR2.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/TxM5dwY.png" group-title="General",TVR 2 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr2_test/smil:tvr2_test.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVR3.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/k6Qx4vl.png" group-title="General",TVR 3 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr3_test/smil:tvr3_test.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRCluj.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/8DqsGHO.png" group-title="General",TVR Cluj (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrcluj_new/smil:tvrcluj_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRCraiova.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/6/67/TVR_Craiova_%282008%29.png" group-title="General",TVR Craiova (720p) [Not 24/7] -https://mn-nl.mncdn.com/tvrcraiova_new/smil:tvrcraiova_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRIasi.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b7/TVR_Ia%C8%99i_%282008%29.png" group-title="General",TVR Iași (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvriasi_new/smil:tvriasi_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRInternational.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/AlW8jyl.png" group-title="General",TVR International (720p) [Not 24/7] -https://mn-nl.mncdn.com/tvri_test/smil:tvri_test.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRMoldova.ro" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/tvr-moldova.jpg" group-title="General",TVR Moldova (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrmoldova_new/smil:tvrmoldova_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRTarguMures.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/94/TVR_T%C3%AErgu_Mure%C8%99_%282008%29.png" group-title="General",TVR Târgu Mureș (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrtgmures_new/smil:tvrtgmures_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRTimisoara.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/0/0e/TVR_Timi%C8%99oara.png" group-title="General",TVR Timișoara (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrtimisoara_new/smil:tvrtimisoara_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVSat.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/PFqmmSp/TVSat-RO.png" group-title="",TVSat (576p) [Not 24/7] -http://89.38.8.130:39443 -#EXTINF:-1 tvg-id="UTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/utv.jpg" user-agent="iPhone" group-title="Music",UTV (576p) [Offline] -#EXTVLCOPT:http-user-agent=iPhone -https://iptv-all.lanesh4d0w.repl.co/romania/utv -#EXTINF:-1 tvg-id="VPTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/Rb2ff23/VPTV-RO.png" group-title="",VP TV (576p) [Not 24/7] -http://89.38.8.130:39437 -#EXTINF:-1 tvg-id="ZURadioTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Music",ZU Radio TV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/zuradiotv -#EXTINF:-1 tvg-id="ZUTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Music",ZU TV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/zutv diff --git a/channels/rs.m3u b/channels/rs.m3u deleted file mode 100644 index 3aa2a9264..000000000 --- a/channels/rs.m3u +++ /dev/null @@ -1,95 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdriaMusicTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Adria Music TV (1080p) -https://srv1.adriatelekom.com/AdriaMusicTV/index.m3u8 -#EXTINF:-1 tvg-id="DjakTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Djak TV (720p) -https://srv1.adriatelekom.com/DjakTV/index.m3u8 -#EXTINF:-1 tvg-id="KurirTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/oUwwB9s.png" group-title="",Kurir TV (720p) -https://kurir-tv.haste-cdn.net/providus/live2805.m3u8 -#EXTINF:-1 tvg-id="MarsTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="http://marsh.rs/wp-content/uploads/2015/09/marsh-favicon-iOS.png" group-title="",Marš TV (576p) [Not 24/7] -http://cdn.dovecher.tv:8081/live/marsh/chunks.m3u8 -#EXTINF:-1 tvg-id="MISTelevizija.rs" tvg-country="AU;NZ" tvg-language="English" tvg-logo="https://i.imgur.com/XaXRbxj.png" group-title="",MIS Televizija (720p) [Not 24/7] -https://5afd52b55ff79.streamlock.net/MISTV/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikAMVA2020.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/yRgMvpz.png" group-title="Music",Muzzik AMVA 2020 (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-8/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikCafeClubSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Cafe&Club Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-3/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikHipHopSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik HipHop Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a4/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikJekaSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Jeka Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-4/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikMediteraneoSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Mediteraneo Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a5/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikOKKSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik OKK Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikReplaySerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Replay Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a3/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikRockRollSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Rock&Roll Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-1/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikSaculatacSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Saculatac Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikTVSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik TV Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-6/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikWorldwideSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Worldwide Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-5/playlist.m3u8 -#EXTINF:-1 tvg-id="N1.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 BIH (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1bos&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 HRVATSKA (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1hrv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 RS (576p) [Not 24/7] -https://best-str.umn.cdn.united.cloud/stream?channel=n1srp&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 SLOVENSKA (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1slv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="PinkExtra.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/ec344345d2e4a7f1f73999973d81fddb.png" group-title="",Pink Extra (576p) -http://109.105.201.198/PINKEXTRA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFamily.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/f071e32f2d8372fc9c117023396132a1.png" group-title="",Pink Family (576p) -http://109.105.201.198/PINKFAMILY/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFilm.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/a7732413e1e8ba399f798707a0c63168.png" group-title="",Pink Film (576p) -http://109.105.201.198/PINKFILM/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFolk1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="http://ottepg2.nexttv.ht.hr:33200/EPG/jsp/images/universal/film/logo/fileEntity/20200420/000200/XTV100002033/38f3e459-db42-4934-99f6-52d6450d2d4d.png" group-title="",Pink Folk 1 (576p) -http://109.105.201.198/PINKFOLK/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkKoncert.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/6e4ab583ca61bfa9941171c5892598d2.png" group-title="",Pink Koncert (576p) -http://109.105.201.198/PINKKONCERT/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkMovies.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/be0d53ad208c00beeeb1b35dafa556b7.png" group-title="",Pink Movies (576p) -http://109.105.201.198/PINKMOVIES/playlist.m3u8 -#EXTINF:-1 tvg-id="PinknRoll.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/8abb9df9cd832d2a67bf30d592c97cd5.png" group-title="",Pink n Roll (360p) -http://109.105.201.198/PINKROLL/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkPedia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/4f2e530f631bf86047ddd4f95ad8c7f9.png" group-title="",Pink Pedia (576p) -http://109.105.201.198/PINKPEDIA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkPremium.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/d32a517e7a64059726b753c5402d8aa2.png" group-title="",Pink Premium (576p) -http://109.105.201.198/PINKPREMIUM/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkSciFiFantasy.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/e10521af711eb40cef503d8e9b49106f.png" group-title="",Pink Sci-Fi & Fantasy (576p) -http://109.105.201.198/PINKSCIFI/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkSerije.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/d31a491b8750ad7d1f4a52e5c098ffde.png" group-title="",Pink Serije (576p) -http://109.105.201.198/PINKSERIJE/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkWorld.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/4fe0cd06c858d1102b7cf75122c90e23.png" group-title="",Pink World (360p) -http://109.105.201.198/PINKWORLD/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkWorldCinema.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Pink World Cinema (576p) -http://109.105.201.198/PINKWORLDCINEMA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkZabava.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/bbeeab15f75d21f7806b36305f4f4f36.png" group-title="",Pink Zabava (360p) -http://109.105.201.198/PINKZABAVA/playlist.m3u8 -#EXTINF:-1 tvg-id="RedTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/F2Qv4Kt.png" group-title="",Red TV (720p) -https://live.rednet.rs/providus/redtv_multi.m3u8 -#EXTINF:-1 tvg-id="RTV1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 1 (576p) [Not 24/7] -mmsh://212.200.255.151/rtv1 -#EXTINF:-1 tvg-id="RTV1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 1 (576p) [Offline] -rtsp://212.200.255.151/rtv1 -#EXTINF:-1 tvg-id="RTV2.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 2 (576p) [Not 24/7] -mmsh://212.200.255.151/rtv2 -#EXTINF:-1 tvg-id="RTV2.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 2 (576p) [Not 24/7] -rtsp://212.200.255.151/rtv2 -#EXTINF:-1 tvg-id="RTVAS.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/wcXNcP6.png" group-title="",RTV AS (576p) -https://srv1.adriatelekom.com/TVAS/index.m3u8 -#EXTINF:-1 tvg-id="RTVCityUb.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/Sz4G9ns.png" group-title="",RTV City Ub (576p) [Not 24/7] -http://167.172.39.13/hls/tvcityub.m3u8 -#EXTINF:-1 tvg-id="RTVNoviPazar.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/eNspJAS.png" group-title="",RTV Novi Pazar (576p) -https://rtvnp.rs/hls/rtvnp.m3u8 -#EXTINF:-1 tvg-id="SuperSatTVHD.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",SuperSat TV HD (1080p) [Not 24/7] -https://srv1.adriatelekom.com/SuperSatTV/index.m3u8 -#EXTINF:-1 tvg-id="belami.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/UAlVp6G.jpg" group-title="",TV Belle Amie (540p) [Not 24/7] -http://92.60.238.10:1935/live/belleamie/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDugaPlus.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/0RcNFXt.jpg" group-title="Music",TV Duga Plus (480p) [Not 24/7] -http://109.92.29.10:1935/tvduga/tvduga/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHram.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/Msxeu2S.png" group-title="",TV Hram (576p) [Not 24/7] -https://vod1.laki.eu/live/hram/index.m3u8 -#EXTINF:-1 tvg-id="TVPiCanal.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/0kTq4Rj.jpg" group-title="",TV Pi Canal Pirot (576p) [Not 24/7] -http://stream.pikanal.rs/pikanal/pgm.m3u8 diff --git a/channels/ru.m3u b/channels/ru.m3u deleted file mode 100644 index 538440c7d..000000000 --- a/channels/ru.m3u +++ /dev/null @@ -1,811 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1HDMusicTelevision.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.lyngsat.com/logo/tv/num/1hd-music-tv-ru.png" group-title="Music",1HD Music Television (1080p) [Not 24/7] -http://1hdru-hls-otcnet.cdnvideo.ru/onehdmusic/tracks-v1a1/index.m3u8 -#EXTINF:-1 tvg-id="1HDMusicTelevision.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.lyngsat.com/logo/tv/num/1hd-music-tv-ru.png" group-title="Music",1HD Music Television (404p) [Not 24/7] -https://sc.id-tv.kz/1hd.m3u8 -#EXTINF:-1 tvg-id="2x2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.ibb.co/DrvTgDc/2x2.png" group-title="Entertainment",2x2 (720p) -https://bl.uma.media/live/317805/HLS/4614144_3,2883584_2,1153024_1/1613019214/3754dbee773afc02014172ca26d3bb79/playlist.m3u8 -#EXTINF:-1 tvg-id="2x2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.ibb.co/DrvTgDc/2x2.png" group-title="Entertainment",2x2 (576p) [Geo-blocked] -http://176.114.16.54/2x2/index.m3u8 -#EXTINF:-1 tvg-id="8KanalKrym.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Family",8 канал Крым (576p) -http://176.99.110.252/stream8/playlist.m3u8 -#EXTINF:-1 tvg-id="9Volna.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000016fe6167945ca56e4f444cb0015ad/z" group-title="Entertainment",9 Волна (720p) [Geo-blocked] -https://strm.yandex.ru/kal/acb/acb0.m3u8 -#EXTINF:-1 tvg-id="9Volna.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000016fe6167945ca56e4f444cb0015ad/z" group-title="Entertainment",9 Волна (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/9volna/playlist.m3u8 -#EXTINF:-1 tvg-id="43kanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",43 канал (720p) -http://sochinskayatrk.ru/hdtv/hls/43Channel_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (720p) -https://video1.in-news.ru/360/index.m3u8 -#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (1080p) [Not 24/7] -https://edge2-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/index.m3u8 -#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (576p) [Offline] -https://strm.yandex.ru/kal/360tv/360tv0.m3u8 -#EXTINF:-1 tvg-id="360degNovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",360° Новости (1080p) [Offline] -https://edge2-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/index.m3u8 -#EXTINF:-1 tvg-id="A1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lXlwfyw.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Series",A1 (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s45/index.m3u8 -#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Series",A2 (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s33/index.m3u8 -#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" group-title="Series",A2 (576p) [Not 24/7] -https://sc.id-tv.kz/A2.m3u8 -#EXTINF:-1 tvg-id="AkudjiTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Akudji TV (720p) [Offline] -https://hls.goodgame.ru/hls/5346.m3u8 -#EXTINF:-1 tvg-id="AmediaHit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016653697bea0c072bf5c5bc1c11ec/260x160" group-title="Movies",Amedia Hit (1080p) [Not 24/7] -https://sc.id-tv.kz/amedia_hit_hd.m3u8 -#EXTINF:-1 tvg-id="AmediaPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/UHo6cwX.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Amedia Premium (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s64/index.m3u8 -#EXTINF:-1 tvg-id="BackusTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YTcmkfW.png" group-title="Movies",Backus TV (720p) [Not 24/7] -http://stream.backustv.ru/live/btv/index.m3u8 -#EXTINF:-1 tvg-id="BackusTVStrashnoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GGX4vDW.png" group-title="Movies",Backus TV Страшное (720p) [Not 24/7] -http://stream.backustv.ru/live/btv2/index.m3u8 -#EXTINF:-1 tvg-id="BollywoodHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://ocdn.eu/ptv2-images-transforms/1/MU_kr5sb2dvLW1pZ3JhdGVkL2JvbGx5d29vZC1oZC5qcGeSlQJkAMLDlQIAKMLD" group-title="Movies",Bollywood HD (1080p) [Not 24/7] -https://sc.id-tv.kz/bollywood_hd.m3u8 -#EXTINF:-1 tvg-id="BridgeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/L71iY9t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Bridge TV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s34/index.m3u8 -#EXTINF:-1 tvg-id="BridgeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/L71iY9t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Bridge TV (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s78/index.m3u8 -#EXTINF:-1 tvg-id="Cinema.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.magticom.ge/images/channels/MjAxOC8wOS8xMC84YTkyNTgwNC00NDUzLTQ0YTYtYmI4NS1jYzkwZTIzNGQwZGMuanBn.jpg" group-title="Movies",Cinema (576p) [Not 24/7] -https://sc.id-tv.kz/Cinema.m3u8 -#EXTINF:-1 tvg-id="FAN.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Animation",FAN (576p) [Not 24/7] -http://194.9.27.164:8103/play/FAN/index.m3u8 -#EXTINF:-1 tvg-id="FreshTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Ju3mLgq.png" group-title="Music",FreshTV (720p) [Geo-blocked] -https://strm.yandex.ru/kal/fresh/fresh0.m3u8 -#EXTINF:-1 tvg-id="GlobalStarTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BJJN5Zp.jpg" group-title="",Global Star TV (720p) [Timeout] -http://stream2.hardlife.tv:8134/hls-live/hlsGS/_definst_/liveevent/gs.m3u8 -#EXTINF:-1 tvg-id="HDlife.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",HD life (1080p) [Not 24/7] -http://37.193.6.155:34040/udp/239.1.9.2:1234 -#EXTINF:-1 tvg-id="HDMedia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/hd-media.png" group-title="Entertainment",HD Медиа (720p) [Geo-blocked] -https://strm.yandex.ru/kal/hdmedia/hdmedia0.m3u8 -#EXTINF:-1 tvg-id="HDL.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000165a45450d78511a9a90be1b893e7/160x160" group-title="Documentary",HDL (404p) [Not 24/7] -https://sc.id-tv.kz/hdl.m3u8 -#EXTINF:-1 tvg-id="HITV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000015a657a4a9a5bdf7861005eb28a46/z" group-title="Music",HITV (1080p) [Offline] -https://strm.yandex.ru/kal/hittv/hittv0.m3u8 -#EXTINF:-1 tvg-id="Leomax24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Leomax 24 (1080p) -https://tvshops.bonus-tv.ru/cdn/shop24/playlist.m3u8 -#EXTINF:-1 tvg-id="LeomaxPlus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Leomax Plus (576p) -https://tvshops.bonus-tv.ru/cdn/discount/playlist.m3u8 -#EXTINF:-1 tvg-id="Luxury.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/luxury.png" group-title="Shop",Luxury (1080p) -http://nano.teleservice.su:8080/hls/luxury.m3u8 -#EXTINF:-1 tvg-id="MilleniumTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Millenium TV (1080p) -http://tv1.mmg.ooo/live/hd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MilleniumTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Millenium TV (540p) [Offline] -http://tv1.mmg.ooo/live/sd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSOBRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/WInGwXw.png" group-title="",MOSOBR.TV (720p) -http://retj.educom.ru/mosobrtv/tv1/index.m3u8 -#EXTINF:-1 tvg-id="MOSOBRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/WInGwXw.png" group-title="",MOSOBR.TV (720p) [Not 24/7] -http://retc.educom.ru/mosobrtv/tv1/index.m3u8 -#EXTINF:-1 tvg-id="MTVmix.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",MTVmix (Уфа) (384p) [Timeout] -http://81.30.182.82:18092/hls/live.m3u8 -#EXTINF:-1 tvg-id="MusicBoxRussia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/russian_musicbox.jpg" group-title="Music",Music Box Russia (1080p) [Offline] -https://strm.yandex.ru/kal/rmbox/rmbox0.m3u8 -#EXTINF:-1 tvg-id="Olala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="XXX",O-la-la (576p) [Not 24/7] -http://194.9.27.164:8103/play/O_la_la/index.m3u8 -#EXTINF:-1 tvg-id="OceanTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a00000169818d10b7d02c8149dccf3ddbbf/368x280" group-title="",Ocean TV (576p) [Offline] -http://91.192.168.242:9091 -#EXTINF:-1 tvg-id="RadostMoya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a000001704427a91257203d4045e4fd2f2e/170x100" group-title="Kids",Radost Moya (576p) [Geo-blocked] -https://cdn-01.bonus-tv.ru/radostmoya_edge/index.m3u8 -#EXTINF:-1 tvg-id="RTAmerica.ru" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",RT America (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s96/index.m3u8 -#EXTINF:-1 tvg-id="RTAmerica.ru" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" group-title="News",RT America (1080p) [Not 24/7] -https://rt-usa.gcdn.co/live/rtusa/playlist.m3u8 -#EXTINF:-1 tvg-id="RTArabic.ru" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/RUS.png" group-title="News",RT Arabic (1080p) -https://rt-arb.gcdn.co/live/rtarab/playlist.m3u8 -#EXTINF:-1 tvg-id="RTArabic.ru" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/RUS.png" group-title="News",RT Arabic (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsP3Clx2qtH2mNZ6KolVoZQ/live -#EXTINF:-1 tvg-id="RTDocumentary.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/XJGki3v.png" group-title="Documentary",RT Documentary (1080p) -https://rt-rtd.gcdn.co/live/rtdoc/playlist.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) -https://hls.rt.com/hls/rtdru.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) -https://rtmp.api.rt.com/hls/rtdru.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Documentary",RT Documentary Russian (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s93/index.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) [Not 24/7] -http://uiptv.do.am/1ufc/300663722/playlist.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) [Not 24/7] -https://strm.yandex.ru/kal/rtd_hd/rtd_hd0.m3u8 -#EXTINF:-1 tvg-id="RTenEspanol.ru" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="" group-title="News",RT en Español (1080p) [Not 24/7] -https://rt-esp.gcdn.co/live/rtesp/playlist.m3u8 -#EXTINF:-1 tvg-id="RTFrance.ru" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/gVedXRh.png" group-title="News",RT France (1080p) -https://rt-fra.gcdn.co/live/rtfrance/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNews.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" group-title="News",RT News (1080p) [Not 24/7] -https://rt-glb.gcdn.co/live/rtnews/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNews.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/XYJEasM.png" group-title="News",RT News (1080p) [Timeout] -https://strm.yandex.ru/kal/rt_hd/rt_hd0.m3u8 -#EXTINF:-1 tvg-id="RTUK.ru" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/zdTA0ha.png" group-title="News",RT UK (1080p) -https://rt-uk.gcdn.co/live/rtuk/playlist.m3u8 -#EXTINF:-1 tvg-id="RTGTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/x3IE7sE.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",RTG (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s80/index.m3u8 -#EXTINF:-1 tvg-id="RTGHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NymtU1E.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",RTG HD (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s63/index.m3u8 -#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (1080p) [Offline] -https://rutv.gcdn.co/streams/1410_95/playlist.m3u8 -#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (1080p) [Offline] -https://strm.yandex.ru/kal/rutv_cv/rutv_cv0.m3u8 -#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (360p) [Offline] -https://rut-v.gcdn.co/streams/1410_95/playlist.m3u8 -#EXTINF:-1 tvg-id="SGDF24RU.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://lime-tv.ru/uploads/posts/2018-06/thumbs/1529009151_sgdf24.png" group-title="Local",SGDF24.RU (Свердлов) (720p) [Not 24/7] -http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoppingLive.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Shopping Live (576p) [Not 24/7] -http://serv30.vintera.tv:8081/shoppinglive/shoppinglive_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ShotTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000017218405591631a616f60e82872eb/170x100" group-title="Movies",Shot TV [Not 24/7] -http://cdn.tvmatic.net/shot.m3u8 -#EXTINF:-1 tvg-id="SochiLiveHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Sochi Live HD (720p) [Not 24/7] -http://serv30.vintera.tv:8081/sochi/sochi_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TRK555.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",TRK 555 (720p) -http://trk555.tv:8888/live -#EXTINF:-1 tvg-id="TVBRICSChinese.ru" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Chinese (1080p) [Not 24/7] -https://brics.bonus-tv.ru/cdn/brics/chinese/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSEnglish.ru" tvg-country="IN;ZA" tvg-language="English" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS English (1080p) -https://brics.bonus-tv.ru/cdn/brics/english/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSPortuguese.ru" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Portuguese (1080p) -https://brics.bonus-tv.ru/cdn/brics/portuguese/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSRussian.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Russian (1080p) -https://brics.bonus-tv.ru/cdn/brics/russian/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPRO.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",TV PRO (576p) [Not 24/7] -http://rtmp.tvpro-online.ru/hls/ch1.m3u8 -#EXTINF:-1 tvg-id="TVGuberniya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000152365a4eef84a2834ed51cf5645c/z" group-title="Local",TV Губерния (Воронеж) (720p) -https://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMChannel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001600303993465ba81955db7454887/160x120" group-title="",TVMChannel (720p) [Geo-blocked] -https://strm.yandex.ru/kal/tvm_supres/tvm_supres0.m3u8 -#EXTINF:-1 tvg-id="TVMChannel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001600303993465ba81955db7454887/160x120" group-title="",TVMChannel (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/tvm_edge/playlist.m3u8 -#EXTINF:-1 tvg-id="UniverTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Univer TV (1080p) -https://cdn.universmotri.ru/live/smil:univer.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UniverTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Univer TV (1080p) [Not 24/7] -https://cdn.universmotri.ru/live/smil:mbr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VIVARussia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/VIVA_2011_logo.svg/1280px-VIVA_2011_logo.svg.png" group-title="Music",VIVA Russia (1080p) [Not 24/7] -https://live.prd.dlive.tv/hls/live/viva-russia.m3u8 -#EXTINF:-1 tvg-id="WorldFashionChannel.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/JyslMHb.jpg" group-title="Lifestyle",World Fashion Channel (1080p) -https://wfcint.mediacdn.ru/cdn/wfcintweb/playlist.m3u8 -#EXTINF:-1 tvg-id="AbazaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Абаза ТВ (576p) [Offline] -http://watcher-node5.apsny.camera/tv_abaza_tv/index.m3u8 -#EXTINF:-1 tvg-id="Avto24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.magticom.ge/images/channels/MjAxOC8wOS8xMC9kYWM5NzU5YS1jNzNhLTRlMmYtYmQzOS1kZDUxZmM0OThhYjAuanBn.jpg" group-title="",Авто 24 (576p) [Geo-blocked] -http://185.52.77.67:8080/Avto24/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="Aris24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Арис 24 (720p) [Not 24/7] -http://serv25.vintera.tv:8081/test/aris/playlist.m3u8 -#EXTINF:-1 tvg-id="Arsenal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Арсенал (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s68/index.m3u8 -#EXTINF:-1 tvg-id="Arhyz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/LOGO_ARKHYZ24.tif/lossy-page1-1200px-LOGO_ARKHYZ24.tif.jpg" group-title="Local",Архыз 24 (1080p) -https://live.mediacdn.ru/sr1/arhis24/playlist.m3u8 -#EXTINF:-1 tvg-id="Arhyz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/LOGO_ARKHYZ24.tif/lossy-page1-1200px-LOGO_ARKHYZ24.tif.jpg" group-title="Local",Архыз 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/arhyz24/arhyz240.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) -https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/astrahan24/astrahan240.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) [Not 24/7] -http://83.234.104.142/astrakhan24hd/playlist.m3u8 -#EXTINF:-1 tvg-id="AstrahanRuSport.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Sports",Астрахань.Ru Sport (720p) -https://streaming.astrakhan.ru/astrakhanrusporthd/playlist.m3u8 -#EXTINF:-1 tvg-id="AstrahanRuTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Астрахань.Ru TV (480p) -https://streaming.astrakhan.ru/astrakhanrulivehd/playlist.m3u8 -#EXTINF:-1 tvg-id="Afontovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Афонтово (Красноярск) (1080p) [Geo-blocked] -http://xstream.afontovo.ru/afontovo_ya.m3u8 -#EXTINF:-1 tvg-id="Bashkortostan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Башкортостан 24 (1080p) -http://live.gtrk.tv/hls/b24-hls.m3u8 -#EXTINF:-1 tvg-id="Bashkortostan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Башкортостан 24 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/bashkortostan24/bashkortostan240.m3u8 -#EXTINF:-1 tvg-id="Belgorod24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Белгород 24 (1080p) -http://belnovosti.cdn.easyhoster.ru:8080/stream.m3u8 -#EXTINF:-1 tvg-id="BelRos.ru" tvg-country="BY;RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Emss0Lk.png" group-title="",БелРос (576p) -http://live2.mediacdn.ru/sr1/tro/playlist.m3u8 -#EXTINF:-1 tvg-id="Bober.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001760a042565fb0b5528e2362a8c08/184x140" group-title="",Бобер (576p) [Not 24/7] -https://sc.id-tv.kz/bober.m3u8 -#EXTINF:-1 tvg-id="BolshayaAziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/bolshaya-azia.png" group-title="",Большая Азия (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/bigasia/bigasia0.m3u8 -#EXTINF:-1 tvg-id="BST.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/rxwTjuT.jpg" group-title="",БСТ (Башкирское спутниковое телевидение) (576p) -https://bsttv.bonus-tv.ru/cdn/bst/playlist.m3u8 -#EXTINF:-1 tvg-id="Vera24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Вера 24 (720p) [Timeout] -http://62.32.67.187:1935/WEB_Vera24/Vera24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VestnikNadymaPlus2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Вестник Надыма +2 (720p) [Not 24/7] -http://live-trknadym.cdnvideo.ru/trknadym-pub/trknadym.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Vetta24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a00000158de05f9d1b65984a0e705878a69/160x120" group-title="Local",Ветта 24 (Пермь) (576p) [Not 24/7] -http://serv24.vintera.tv:8081/vetta/vetta_office/playlist.m3u8 -#EXTINF:-1 tvg-id="VechernyayaMoskva.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/hLD874K.jpg" group-title="Local",Вечерняя Москва (1080p) [Not 24/7] -https://vmvideo.gcdn.co/streams/1503_161/playlist.m3u8 -#EXTINF:-1 tvg-id="VmesteRF.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a000001703efa3b743e4fd720ec96375736/170x100" group-title="",Вместе-РФ (1080p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/vmesterf/index.m3u8 -#EXTINF:-1 tvg-id="VmesteRF.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a000001703efa3b743e4fd720ec96375736/170x100" group-title="",Вместе-РФ (1080p) [Geo-blocked] -http://uiptv.do.am/1ufc/118056781/playlist.m3u8 -#EXTINF:-1 tvg-id="Volgograd1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Волгоград 1 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/volgograd1/volgograd10.m3u8 -#EXTINF:-1 tvg-id="Volgograd1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Волгоград 1 (576p) [Offline] -http://213.234.30.38/Live/1000k/stream.m3u8 -#EXTINF:-1 tvg-id="Vremya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001760a065ea1993452925ecf9814b5/184x140" group-title="",Время (576p) -http://91.185.3.218:4000/play/607 -#EXTINF:-1 tvg-id="VTVPlyusHerson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ВТВ Плюс (Херсон) (576p) -http://193.107.128.8:8552/play/a007 -#EXTINF:-1 tvg-id="VTVPlyusHerson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ВТВ Плюс (Херсон) (576p) -http://iptv.rubintele.com:8552/play/a007 -#EXTINF:-1 tvg-id="GALTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ГАЛ ТВ (576p) [Offline] -http://watcher-node5.apsny.camera/tv_gal_tv_hd_online/index.m3u8 -#EXTINF:-1 tvg-id="GorodskoytelekanalYaroslavl.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Городской телеканал (Ярославль) (576p) -http://www.gtk.tv/hls/gtyar.m3u8 -#EXTINF:-1 tvg-id="GuberniyaSamara.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.guberniatv.ru/img/logo.png" group-title="",Губерния (Самара) (576p) -http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Guberniya33.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Губерния 33 (Владимир) (360p) -https://live-trc33.cdnvideo.ru/trc33/trc33.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Dagestan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Дагестан (1080p) -https://dagestan.mediacdn.ru/cdn/dagestan/playlist.m3u8 -#EXTINF:-1 tvg-id="DayvingTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Outdoor",Дайвинг.TV (720p) [Geo-blocked] -https://strm.yandex.ru/kal/diving/diving0.m3u8 -#EXTINF:-1 tvg-id="Dialogiorybalke.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Диалоги о рыбалке (1080p) [Offline] -http://strm.yandex.ru/kal/dialogi/dialogi0.m3u8 -#EXTINF:-1 tvg-id="Dozhd.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000017b735a0205a0c9947555ae175d64/340x200" group-title="",Дождь (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/tvrain/tvrain0.m3u8 -#EXTINF:-1 tvg-id="Doktor.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Доктор (720p) [Not 24/7] -http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/512/index.m3u8 -#EXTINF:-1 tvg-id="Domkino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Дом кино (576p) -http://91.185.3.218:4000/play/606 -#EXTINF:-1 tvg-id="DomKinoPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.domkino-premium.tv/im/logo3d.png" group-title="Movies",Дом Кино Премиум (1080p) [Not 24/7] -https://sc.id-tv.kz/domkino_hd.m3u8 -#EXTINF:-1 tvg-id="DomkinoPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.domkino-premium.tv/im/logo3d.png" group-title="Movies",Дом кино Премиум (1080p) [Offline] -http://87.247.44.26/btv/SWM/Dom_kino_Prem/Dom_kino_Prem.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",Домашний (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s88/index.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" group-title="Entertainment",Домашний (576p) [Timeout] -http://31.128.159.41:8080/domashniy/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="Dorama.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lHn6OlM.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Дорама (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s95/index.m3u8 -#EXTINF:-1 tvg-id="Dorama.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lHn6OlM.png" group-title="Movies",Дорама (1080p) [Not 24/7] -https://sc.id-tv.kz/dorama_hd.m3u8 -#EXTINF:-1 tvg-id="Evraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://eurasia.orsk.ru/images/bg.jpg" group-title="Local",Евразия (Орск) (720p) -http://infochhdcdn.trkeurasia.ru/orsk-infochhd/infochhd/playlist.m3u8 -#EXTINF:-1 tvg-id="Evraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://eurasia.orsk.ru/images/bg.jpg" group-title="Local",Евразия (Орск) (720p) -https://infochh.trkeurasia.ru/hlsinfoch/infochhd.m3u8 -#EXTINF:-1 tvg-id="Evronovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Евроновости (540p) -http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist.m3u8 -#EXTINF:-1 tvg-id="Evronovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Евроновости (720p) [Offline] -https://strm.yandex.ru/kal/euronews_supres/euronews_supres0.m3u8 -#EXTINF:-1 tvg-id="Enisey.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Енисей (1080p) [Not 24/7] -http://hls-eniseytv.cdnvideo.ru/eniseytv/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="ZharPtica.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zhar-ptica.tv/sites/default/files/logo.png" group-title="Music",Жар Птица (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/firebird/firebird0.m3u8 -#EXTINF:-1 tvg-id="ZharPtica.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zhar-ptica.tv/sites/default/files/logo.png" group-title="Music",Жар Птица (404p) [Geo-blocked] -http://streamer.rtcommufa.ru:1935/ptica/ptica1/playlist.m3u8 -#EXTINF:-1 tvg-id="Zhara.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Жара (576p) [Not 24/7] -http://185.161.224.216/dash/JaraTv_SD.ism/playlist.mpd -#EXTINF:-1 tvg-id="Zagorodnyy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/RAfV5p7.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Загородный (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s31/index.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Звезда (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s85/index.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" group-title="General",Звезда (1080p) [Not 24/7] -https://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/yy0YpWT.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Зоо ТВ (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s92/index.m3u8 -#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (1080p) -http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8 -#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (720p) -https://hls-igi.cdnvideo.ru/igi/igi_sq/playlist.m3u8 -#EXTINF:-1 tvg-id="Indiyskoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Индийское кино (576p) [Not 24/7] -https://sc.id-tv.kz/Indiiskoe_kino.m3u8 -#EXTINF:-1 tvg-id="Istoriya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/7fZXK7y.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",История (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s40/index.m3u8 -#EXTINF:-1 tvg-id="K16Sarov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",К16 (Саров) (406p) [Not 24/7] -http://serv25.vintera.tv:8081/test/k16/playlist.m3u8 -#EXTINF:-1 tvg-id="KabbalaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://kab.tv/static/images/kab_tv_rus.gif" group-title="Religious",Каббала ТВ (360p) [Not 24/7] -https://edge2.uk.kab.tv/live/tvrus-rus-medium/playlist.m3u8 -#EXTINF:-1 tvg-id="Kavkaz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Кавказ 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/kavkaz24_supres/kavkaz24_supres0.m3u8 -#EXTINF:-1 tvg-id="KarapuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Карапуз ТВ (1080p) [Offline] -https://karapuztv.fenixplustv.xyz/content/33418/index.m3u8 -#EXTINF:-1 tvg-id="Karusel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a0000017019a2436d387c572a4650c86f92/160x120" group-title="Kids",Карусель (576p) -http://91.185.3.218:4000/play/604 -#EXTINF:-1 tvg-id="Kinokomediya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Comedy",Кинокомедия (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinokomediya_hd.m3u8 -#EXTINF:-1 tvg-id="Kinomiks.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000015bb472ae3ff1dedcb38b4b362388/160x160" group-title="Movies",Киномикс (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinomix_hd.m3u8 -#EXTINF:-1 tvg-id="Kinopremera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Кинопремьера (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinopremiera_hd.m3u8 -#EXTINF:-1 tvg-id="Kinosvidanie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015bb474d235c58fbb8b79da50b038/160x120" group-title="Movies",Киносвидание (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinosvidanie_hd.m3u8 -#EXTINF:-1 tvg-id="Kinosemya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Киносемья (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinosemiya_hd.m3u8 -#EXTINF:-1 tvg-id="Kinohit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000015bb478064785642d83eab5025536/160x160" group-title="Movies",Кинохит (404p) [Not 24/7] -https://sc.id-tv.kz/Kinohit_hd.m3u8 -#EXTINF:-1 tvg-id="KlassikaKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Классика Кино (720p) [Geo-blocked] -https://strm.yandex.ru/kal/kinoclassic/kinoclassic0.m3u8 -#EXTINF:-1 tvg-id="Komediynoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016929eb3477b344281e4cc3d0850b/170x100" group-title="",Комедийное (540p) [Timeout] -http://185.97.150.19:8082/2402 -#EXTINF:-1 tvg-id="Komediya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Comedy",Комедия (576p) [Not 24/7] -http://188.40.68.167/russia/komediya/playlist.m3u8 -#EXTINF:-1 tvg-id="KonnyyMir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Конный Мир (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru/konnyimir/playlist.m3u8 -#EXTINF:-1 tvg-id="Krasnayaliniya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Красная линия (480p) -https://kprf-htlive.cdn.ngenix.net/live/stream_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KrasnogorskTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Красногорск ТВ (480p) [Not 24/7] -http://live-krtv.cdnvideo.ru/krtv/krtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KrikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://ricekb.ru/img/logo.png" group-title="",Крик-ТВ (576p) [Geo-blocked] -https://strm.yandex.ru/kal/krik_tv/krik_tv0.m3u8 -#EXTINF:-1 tvg-id="Krym24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://1tvcrimea.ru/assets/images/live_crimea24.png" group-title="",Крым 24 (540p) [Not 24/7] -http://mr2live.1tvcrimea.ru:8080/24tvcrimea.m3u8 -#EXTINF:-1 tvg-id="Kuban24Orbita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a00000179f0403b82971b0d6690045629c4/428x280" group-title="",Кубань 24 Орбита (576p) -https://stream.kuban24.tv:1500/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Kuzbass1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Кузбасс 1 (1080p) [Not 24/7] -https://www.10kanal.ru:1443/10kanal/k24/playlist.m3u8 -#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Culture",Культура (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s16/index.m3u8 -#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" user-agent="Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.84 Safari/537.36 CrKey/1.21a.76178" group-title="Culture",Культура (1920p) [Geo-blocked] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.84 Safari/537.36 CrKey/1.21a.76178 -https://zabava-htlive.cdn.ngenix.net/hls/CH_RUSSIAK/variant.m3u8 -#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" group-title="Culture",Культура (576p) [Timeout] -http://uiptv.do.am/1ufc/000000005/playlist.m3u8 -#EXTINF:-1 tvg-id="Kuray.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/AxgNvdp.png" group-title="",Курай (576p) -https://bsttv.bonus-tv.ru/cdn/kurai/playlist.m3u8 -#EXTINF:-1 tvg-id="KFUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",КФУ ТВ (1080p) [Not 24/7] -https://cdn.universmotri.ru/live/kfu.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (720p) -http://46.46.143.222:1935/live/mp4:ldpr.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (480p) -http://46.46.143.222:1935/live/mp4:ldpr.stream_480p/playlist.m3u8 -#EXTINF:-1 tvg-id="Lipeckoevremya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Липецкое время (576p) [Not 24/7] -http://serv25.vintera.tv:8081/liptime/liptime/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVProza.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Проза (720p) -http://hls-rossp.cdnvideo.ru/hls/5ace67f0dc96bf0a90d8a2b7/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVSlovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Слово (720p) -http://hls-rossp.cdnvideo.ru/hls/5ace6814e563f22e4ddc1f44/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVStihi.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Стихи (720p) -http://hls-rossp.cdnvideo.ru/hls/5aac88ffdc96bf05a7f78899/playlist.m3u8 -#EXTINF:-1 tvg-id="LuchPurovsk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://trk-luch.ru.opt-images.1c-bitrix-cdn.ru/bitrix/templates/.default/static/images/logo.png" group-title="Local",Луч (Пуровск) (720p) [Not 24/7] -https://live.trk-luch.ru/hls/live.m3u8 -#EXTINF:-1 tvg-id="LyubimoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Любимое.ТВ (720p) [Geo-blocked] -https://strm.yandex.ru/kal/lovedtv/lovedtv0.m3u8 -#EXTINF:-1 tvg-id="MirPlus3.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мir +3 (576p) [Not 24/7] -https://sc.id-tv.kz/Mir.m3u8 -#EXTINF:-1 tvg-id="MaturTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Матур ТВ (1080p) -https://public.streaming.matur-tv.ru/hls/h264_aac/stream.m3u8 -#EXTINF:-1 tvg-id="MezhduNetMezhdurechensk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Между.Net (Междуреченск) (720p) [Not 24/7] -http://212.77.128.179:8089/www_mezhdunet/mezhdunet/playlist.m3u8 -#EXTINF:-1 tvg-id="Millet.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Миллет (540p) [Not 24/7] -http://live.trkmillet.ru/millet/index.m3u8 -#EXTINF:-1 tvg-id="Ministerstvoidey.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Министерство идей (720p) -http://live-minidey.cdnvideo.ru/minidey/minidey.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (1080p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (1080p) [Not 24/7] -http://uiptv.do.am/1ufc/113500247/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мир +2 (540p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv2_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus4.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CrFWXTD.png" group-title="",Мир +4 (540p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv3_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus7.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мир +7 (540p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv7_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mir24_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) [Not 24/7] -http://188.40.68.167/russia/mir24/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Mir24.m3u8 -#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир/0белогорья_логотип.jpg" group-title="Local",Мир Белагорья (720p) [Geo-blocked] -http://mirbelogorya.ru:8080/mirbelogorya/index.m3u8 -#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир/0белогорья_логотип.jpg" group-title="Local",Мир Белогорья (720p) [Geo-blocked] -http://live-mirbelogorya.cdnvideo.ru/mirbelogorya/mirbelogorya1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир%20белогорья_логотип.jpg" group-title="Local",Мир Белогорья (720p) [Geo-blocked] -http://stream.tvbelgorod.ru:8080/mirbelogorya/index.m3u8 -#EXTINF:-1 tvg-id="MirSeriala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-shows/30293/2a0000015185955d7731ca25c05f77b58880/orig" group-title="",Мир Сериала (576p) [Not 24/7] -http://185.161.224.216/dash/Mir_seriala_SD.ism/playlist.mpd -#EXTINF:-1 tvg-id="Mirseriala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Мир сериала (576p) [Not 24/7] -http://188.40.68.167/russia/mir_seriala/playlist.m3u8 -#EXTINF:-1 tvg-id="Mistoplyus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мисто плюс (720p) [Timeout] -http://93.78.206.172:8080/stream5/stream.m3u8 -#EXTINF:-1 tvg-id="Mistoplyus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мисто плюс (480p) [Timeout] -http://93.78.206.172:8080/stream4/stream.m3u8 -#EXTINF:-1 tvg-id="Mordoviya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Мордовия 24 (360p) [Not 24/7] -https://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8 -#EXTINF:-1 tvg-id="Morskoy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Морской (720p) [Not 24/7] -http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/742/index.m3u8 -#EXTINF:-1 tvg-id="Moskva24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BOry400.png" group-title="Local",Москва 24 (576p) -https://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist.m3u8 -#EXTINF:-1 tvg-id="Moskva24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BOry400.png" group-title="Local",Москва 24 (720p) [Offline] -https://strm.yandex.ru/kal/msk24_supres/msk24_supres0.m3u8 -#EXTINF:-1 tvg-id="Moyaplaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://digitalrussia.tv/upload/files/mp.png" group-title="",Моя планета (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/master.m3u8 -#EXTINF:-1 tvg-id="MoyaPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70263/2a00000164125e2a9c190a856c5f1c67d358/260x160" group-title="",Моя Планета (576p) [Offline] -https://a3569456481-s26881.cdn.ngenix.net/live/smil:mplan.smil/index.m3u8 -#EXTINF:-1 tvg-id="MTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://xn--b1ats.xn--80asehdb/img/logo.png" group-title="Local",МТВ (Волгоград) (720p) [Not 24/7] -http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Muzhskoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мужское кино (1080p) [Not 24/7] -https://sc.id-tv.kz/Mujskoe_kino_hd.m3u8 -#EXTINF:-1 tvg-id="Muzsoyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Муз союз (576p) -http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Муз-ТВ (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s28/index.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" group-title="Music",Муз-ТВ (720p) [Offline] -https://strm.yandex.ru/kal/muztv_supres/muztv_supres0.m3u8 -#EXTINF:-1 tvg-id="MuzSoyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a0000016585fe3d303aaed2be3e04b85166/170x100" group-title="",МузСоюз (576p) -http://hls.tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzikaPervogo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/muz1.png" group-title="Music",Музыка Первого (576p) -http://91.185.3.218:4000/play/608 -#EXTINF:-1 tvg-id="Multilandiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/OwA1zSH.png" group-title="Kids",Мультиландия (576p) [Geo-blocked] -http://serv30.vintera.tv:8081/detskiy/multimania20/playlist.m3u8 -#EXTINF:-1 tvg-id="Nadezhda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://hopetv.ru/wp-content/themes/hope.ua/public/img/header-hopeLogo.png" group-title="Religious",Надежда (720p) -https://live-tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Nadezhda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://hopetv.ru/wp-content/themes/hope.ua/public/img/header-hopeLogo.png" group-title="Religious",Надежда (720p) -https://tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Nano.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Нано (540p) -http://nano.teleservice.su:8080/hls/nano.m3u8 -#EXTINF:-1 tvg-id="Nauka.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a0000017014a842438531fe936e01c14776/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Наука (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s98/index.m3u8 -#EXTINF:-1 tvg-id="Nashdom.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://pp.userapi.com/c5200/g33405934/a_1fa4a8a6.jpg" group-title="",Наш дом [Not 24/7] -http://85.234.33.60/stream/c11.m3u8 -#EXTINF:-1 tvg-id="NashaSibir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/nasha-sibir.png" group-title="Travel",Наша Сибирь (1080p) [Offline] -https://strm.yandex.ru/kal/sibir/sibir0.m3u8 -#EXTINF:-1 tvg-id="NashaSibirKemerovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Наша Сибирь / Кемерово (480p) [Not 24/7] -https://strm.yandex.ru/kal/sibir/sibir0_169_480p.json/index-v1-a1.m3u8 -#EXTINF:-1 tvg-id="NasheKrutoeHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Наше Крутое HD (1080p) [Not 24/7] -http://ba5729d5.krasnafhg.ru/iptv/EAEWFFWBXPVVLY/915/index.m3u8 -#EXTINF:-1 tvg-id="NasheNovoeKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000015bb47bf0be402e2ca5127a767647/z" group-title="",Наше Новое Кино [Not 24/7] -https://s1.idata.uz/stch_temp6/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="NVKSaha.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",НВК Саха (1080p) [Not 24/7] -http://live-saha.cdnvideo.ru/saha/saha/playlist.m3u8 -#EXTINF:-1 tvg-id="NizhniyNovgorod24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Нижний Новгород 24 (720p) [Not 24/7] -https://live-vestinn.cdnvideo.ru/vestinn/nn24-khl/playlist.m3u8 -#EXTINF:-1 tvg-id="NikaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://nikatv.ru/public/img/logo2.png" group-title="",Ника ТВ (576p) [Not 24/7] -https://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Novoeradio.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Новое радио (1080p) -https://hls-video01.cdnvideo.ru/video01/smil:video01.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новое ТВ (576p) [Not 24/7] -http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новое ТВ (404p) [Not 24/7] -https://sc.id-tv.kz/New_Television.m3u8 -#EXTINF:-1 tvg-id="NovorossiyaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новороссия ТВ (720p) -http://ott.inmart.tv:8081/19/index.m3u8 -#EXTINF:-1 tvg-id="Novyymir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новый мир (406p) [Not 24/7] -http://stream.studio360.tv/nw/nw_576p/playlist.m3u8 -#EXTINF:-1 tvg-id="Noyabrsk24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Ноябрьск 24 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/noyabrsk24/noyabrsk240.m3u8 -#EXTINF:-1 tvg-id="NTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/i6wrwKy.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",НТВ (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s17/index.m3u8 -#EXTINF:-1 tvg-id="NTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/i6wrwKy.png" group-title="",НТВ (576p) [Timeout] -http://31.128.159.41:8080/ntv/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="NTVStil.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",НТВ Стиль (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s77/index.m3u8 -#EXTINF:-1 tvg-id="NTM.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",НТМ (Народное телевидение Мордовии) (720p) [Not 24/7] -https://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NTSSevastopol.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",НТС (Севастополь) (1080p) [Not 24/7] -https://peqk71plnjy.a.trbcdn.net/livemaster/w4kz7pki62_nts_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="O.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",О! (576p) [Not 24/7] -https://sc.id-tv.kz/o.m3u8 -#EXTINF:-1 tvg-id="O2TV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://ustanovca-tricorol-tv.ru/wp-content/uploads/2017/12/o-tv.png" group-title="",О2ТВ (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/o2/o20.m3u8 -#EXTINF:-1 tvg-id="Oplot2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Оплот 2 (1080p) -http://ott.inmart.tv:8081/17/index.m3u8 -#EXTINF:-1 tvg-id="OplotTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Оплот ТВ (1080p) -http://ott.inmart.tv:8081/54/index.m3u8 -#EXTINF:-1 tvg-id="Ostrosyuzhetnoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Остросюжетное (540p) [Timeout] -http://185.97.150.19:8082/2235 -#EXTINF:-1 tvg-id="OTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ОТВ (Одинцово) (576p) -http://185.18.4.16/live/3m/playlist.m3u8 -#EXTINF:-1 tvg-id="OTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/otr_ru.png" group-title="General",ОТР (720p) [Offline] -https://strm.yandex.ru/kal/otr/otr0.m3u8 -#EXTINF:-1 tvg-id="OTS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ОТС (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/otstv/otstv0.m3u8 -#EXTINF:-1 tvg-id="OhotnikiRybolov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/k1Gt1Rc.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Outdoor",Охотник и Рыболов (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s62/index.m3u8 -#EXTINF:-1 tvg-id="OhotnikirybolovInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Outdoor",Охотник и рыболов International (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/ohotnik/ohotnik0.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал (576p) -http://91.185.3.218:4000/play/603 -#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Первый канал (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s14/04.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал [Offline] -https://cdn1.mobiletv.bg/T5/perviy_kanal/perviy_kanal_794613_850k.m3u8 -#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Первый канал Евразия (576p) [Not 24/7] -https://sc.id-tv.kz/1KanalEvraziya.m3u8 -#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Первый канал Евразия (396p) [Not 24/7] -http://stream.euroasia.lfstrm.tv/perviy_evrasia/1/index.m3u8 -#EXTINF:-1 tvg-id="Pervyykrymskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://1tvcrimea.ru/assets/images/live_1tvcrimea.png" group-title="",Первый крымский (540p) [Not 24/7] -http://mrlive.1tvcrimea.ru:8080/1tvcrimea.m3u8 -#EXTINF:-1 tvg-id="PervyyPskovskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый Псковский (540p) [Not 24/7] -http://194.190.78.91/pskov/rewind-10800.m3u8 -#EXTINF:-1 tvg-id="Pervyyrespublikanskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый республиканский (720p) -http://ott.inmart.tv:8081/18/index.m3u8 -#EXTINF:-1 tvg-id="PervyyTulskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый Тульский (576p) [Not 24/7] -http://5.164.24.83/tula/1tv_low/index.m3u8 -#EXTINF:-1 tvg-id="Planeta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Планета [Offline] -https://cdn1.mobiletv.bg/T5/planeta/planeta_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Pobeda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/DOtCK9V.png" group-title="",Победа (576p) [Not 24/7] -https://sc.id-tv.kz/Pobeda.m3u8 -#EXTINF:-1 tvg-id="Pobeda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/DOtCK9V.png" group-title="",Победа (576p) [Offline] -http://87.247.44.26/btv/SWM/Pobeda/Pobeda.m3u8 -#EXTINF:-1 tvg-id="Poehali.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a00000176184d54b879d516f6f83670c5af/260x160" group-title="",Поехали! (576p) [Not 24/7] -https://sc.id-tv.kz/poehali.m3u8 -#EXTINF:-1 tvg-id="Prima.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Прима (1920p) -https://rt-sib-krsk-htlive.cdn.ngenix.net/hls/CH_R11_OTT_SIB_KRSK_STS/variant.m3u8 -#EXTINF:-1 tvg-id="PRNK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ПРНК (720p) [Not 24/7] -http://serv25.vintera.tv:8081/1pnk/1pnk/playlist.m3u8 -#EXTINF:-1 tvg-id="Prodvizhenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Продвижение (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/prodvizheniye/prodvizheniye0.m3u8 -#EXTINF:-1 tvg-id="Prosveshchenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Просвещение (540p) [Geo-blocked] -https://cdn-01.bonus-tv.ru/prosveschenie_edge/playlist.m3u8 -#EXTINF:-1 tvg-id="PyatnicaInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CNOYAUN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Пятница! International (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s50/index.m3u8 -#EXTINF:-1 tvg-id="Radio10.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио 10 (1024p) [Not 24/7] -http://langate.tv/acc/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio1018.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио 101.8 (540p) -https://video.penzainform.ru/e/r1018.m3u8 -#EXTINF:-1 tvg-id="RadioGovoritMoskva.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Говорит Москва (404p) [Not 24/7] -http://video.govoritmoskva.ru:8080/live/rufmbk-1/index.m3u8 -#EXTINF:-1 tvg-id="RadioGovoritMoskvaVebkamera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Говорит Москва (Веб-камера) (720p) -https://video.govoritmoskva.ru/rufm/index.m3u8 -#EXTINF:-1 tvg-id="RadioPilot.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Пилот (720p) [Not 24/7] -https://pilotfm.ru/cam/hls/pilothd.m3u8 -#EXTINF:-1 tvg-id="RadioRossiiChuvashiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио России (Чувашия) (720p) [Not 24/7] -https://chgtrk.ru/pl/stream/hls/RR_720p/index.m3u8 -#EXTINF:-1 tvg-id="radioHitTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",радио Хит ТВ (300p) -http://lova.me/hls/hit.m3u8 -#EXTINF:-1 tvg-id="RadioShanson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://lion-tv.com/uploads/posts/2016-09/1472964269_178.png" group-title="Music",Радио Шансон (720p) [Not 24/7] -http://chanson-video.hostingradio.ru:8080/hls/chansonabr/live.m3u8 -#EXTINF:-1 tvg-id="RamenskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Раменское ТВ (720p) [Timeout] -https://rtv.facecast.io/rtv/0.m3u8 -#EXTINF:-1 tvg-id="Ratnik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015edc52c7dc8869cca66117c5a828/z" group-title="Entertainment",Ратник (1080p) -https://online-video.rbc.ru/online/rbctv.m3u8 -#EXTINF:-1 tvg-id="Ratnik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015edc52c7dc8869cca66117c5a828/z" group-title="Entertainment",Ратник (1080p) [Geo-blocked] -http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (576p) -http://uiptv.do.am/1ufc/701293058/playlist.m3u8 -#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (560p) -http://92.50.128.180/utv/1358/index.m3u8 -#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (720p) [Geo-blocked] -https://strm.yandex.ru/kal/rbc_supres/rbc_supres0.m3u8 -#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/AGj8EJF.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Business",РБК (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s36/index.m3u8 -#EXTINF:-1 tvg-id="Region29.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Регион 29 (Архангельск) (720p) [Geo-blocked] -http://live-atkmedia.cdnvideo.ru/atkmedia/atkmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="RENTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016e89588796d4590c9dd4dda32ffc/170x100" group-title="General",РЕН ТВ (576p) -http://ad-hls-rentv.cdnvideo.ru/ren/smil:ren.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RENTVInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",РЕН ТВ International (576p) [Not 24/7] -https://sc.id-tv.kz/RenTV.m3u8 -#EXTINF:-1 tvg-id="RZhDTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rzd_russian_railways.jpg" group-title="",РЖД ТВ (720p) [Geo-blocked] -http://hls.tva.cdnvideo.ru/tva/tvahd.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="RZhDTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rzd_russian_railways.jpg" group-title="",РЖД ТВ (360p) [Geo-blocked] -http://hls.tva.cdnvideo.ru/tva/tva.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Rodnoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Родное кино (576p) [Not 24/7] -https://sc.id-tv.kz/Rodnoe_kino.m3u8 -#EXTINF:-1 tvg-id="Rodnoykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Родной канал (720p) [Not 24/7] -https://n1.slavmir.tv/live/slavmir/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Kaluga.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="Local",Россия 1 (Калуга) (202p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/vgtrkrtmp/smil:kaluga_r1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1MariyEl.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="Local",Россия 1 (Марий Эл) (720p) [Offline] -http://gtrkmariel-live.cdnvideo.ru/gtrkmariel/gtrkmariel/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Plus6.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 +6 (360p) -https://gtrkchita.ru:8081/hls/r1-chita_360p.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Plus6.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 +6 (180p) -https://gtrkchita.ru:8081/hls/r1-chita_180p.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (720p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (720p) [Not 24/7] -https://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (576p) -http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (576p) [Not 24/7] -http://uiptv.do.am/1ufc/000000006/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Россия 24 (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s21/index.m3u8 -#EXTINF:-1 tvg-id="Rossiya24NNovgorod.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Н.Новгород) (576p) [Not 24/7] -https://live-vestinn.cdnvideo.ru/vestinn/vestinn/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya24Chita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Чита) (576p) -https://gtrkchita.ru:8081/hls/r24-chita_576p.m3u8 -#EXTINF:-1 tvg-id="Rossiya24Chita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Чита) (360p) -https://gtrkchita.ru:8081/hls/r24-chita_360p.m3u8 -#EXTINF:-1 tvg-id="RossiyaK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600801de5fbb57debf44353568ee/orig" group-title="Culture",Россия К (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist.m3u8 -#EXTINF:-1 tvg-id="RossiyaRTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Россия РТР (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RossiyaRTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Россия РТР [Timeout] -https://a3569455801-s26881.cdn.ngenix.net/live/smil:rtrp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Rostovpapa.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ростов-папа (1080p) -http://live-rostovpapa.cdnvideo.ru/rostovpapa/rostovpapa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="RTRPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/5D1gwiv.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",РТР-Планета (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s15/index.m3u8 -#EXTINF:-1 tvg-id="RusskiyDetektiv.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001519d38ee83d3d076e8fb0c6d1e54/z" group-title="",Русский Детектив (576p) [Timeout] -http://78.58.133.179:28000/play/a01t/index.m3u8 -#EXTINF:-1 tvg-id="RusskiyDetektiv.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001519d38ee83d3d076e8fb0c6d1e54/z" group-title="",Русский Детектив (576p) [Timeout] -http://193.33.88.172/rus-detective/playlist.m3u8 -#EXTINF:-1 tvg-id="RusskiySever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Русский Север (Вологда) (1080p) -http://185.186.142.16/streams.rs.m3u8 -#EXTINF:-1 tvg-id="RusskiyEkstrim.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Русский Экстрим [Timeout] -http://vid.extremtv.ru/hls_get/cameraFeed.m3u8 -#EXTINF:-1 tvg-id="Rybolov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70263/2a000001715ed9f583fff05677a02fd9c186/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Рыболов (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s55/index.m3u8 -#EXTINF:-1 tvg-id="Ryzhiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/QlncxbD.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Рыжий (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s57/index.m3u8 -#EXTINF:-1 tvg-id="Ryzhiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/QlncxbD.png" group-title="",Рыжий (576p) [Geo-blocked] -http://serv30.vintera.tv:8081/detskiy/ryzhiy_08/playlist.m3u8 -#EXTINF:-1 tvg-id="S1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://sitv.ru/img/stv-news/111111/S1_logo.jpg" group-title="Local",С1 (Сургут) (1080p) [Not 24/7] -https://sitv.ru/hls/stv.m3u8 -#EXTINF:-1 tvg-id="Salyam.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/thfF7IJ.jpg" group-title="",Салям (576p) -https://bsttv.bonus-tv.ru/cdn/salyam/playlist.m3u8 -#EXTINF:-1 tvg-id="SamaraGIS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Самара ГИС (1080p) [Not 24/7] -http://45.67.57.9:8080/new/new/playlist.m3u8 -#EXTINF:-1 tvg-id="Saratov24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Саратов 24 (1080p) [Not 24/7] -https://saratov24.tv/online/playlist.php -#EXTINF:-1 tvg-id="Sarafan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/AgX6qoz.png" group-title="",Сарафан (576p) [Not 24/7] -http://195.26.83.96:7024/play/82 -#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) -https://live.mediacdn.ru/sr1/sever/playlist.m3u8 -#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) -https://live2.mediacdn.ru/sr1/sever-mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) -https://live2.mediacdn.ru/sr1/sever/playlist.m3u8 -#EXTINF:-1 tvg-id="SelengaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Селенга ТВ (576p) -http://90.188.37.86/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Siesta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Сиеста (720p) [Not 24/7] -https://1hdru-hls-otcnet.cdnvideo.ru/siesta/index.m3u8 -#EXTINF:-1 tvg-id="SmaylikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://smilik.tv/wp-content/uploads/2016/02/Desktop_-1.png" group-title="Kids",Смайлик ТВ (720p) [Not 24/7] -http://62.32.67.187:1935/WEB_Smilik/ngrp:Smilik.stream-adaptive/playlist.m3u8 -#EXTINF:-1 tvg-id="SmaylikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://smilik.tv/wp-content/uploads/2016/02/Desktop_-1.png" group-title="Kids",Смайлик ТВ (720p) [Timeout] -http://62.32.67.187:1935/WEB_Smilik/Smilik.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SolnechnogorskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://solntv.ru/images/stv-logo-hq.png" group-title="Local",Солнечногорское ТВ (360p) [Geo-blocked] -http://hls.solntv.cdnvideo.ru/solntv/solntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Soyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://tv-soyuz.ru/static/img/logo.png" group-title="Religious",Союз (576p) -http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz/soyuz/playlist.m3u8 -#EXTINF:-1 tvg-id="Soyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://tv-soyuz.ru/static/img/logo.png" group-title="Religious",Союз (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/soyuz/soyuz0.m3u8 -#EXTINF:-1 tvg-id="Spas.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6IcWl5r.png" group-title="Religious",СПАС (576p) -http://spas.mediacdn.ru/cdn/spas/playlist.m3u8 -#EXTINF:-1 tvg-id="Start.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Sports",Старт (1080p) [Offline] -https://strm.yandex.ru/kal/start/start0.m3u8 -#EXTINF:-1 tvg-id="STVKazahstan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",СТВ Казахстан (576p) [Not 24/7] -https://sc.id-tv.kz/STV.m3u8 -#EXTINF:-1 tvg-id="StranaFM.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Страна FM (720p) [Not 24/7] -http://live.stranafm.cdnvideo.ru/stranafm/stranafm_hd.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="STRK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",СТРК (720p) [Not 24/7] -http://sochinskayatrk.ru/hdtv/hls/strc_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Family",СТС (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s52/04.m3u8 -#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" group-title="Family",СТС (576p) [Not 24/7] -https://sc.id-tv.kz/STS.m3u8 -#EXTINF:-1 tvg-id="Surgut24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://online-red.com/images/tv/surgut-24.png" group-title="Local",Сургут 24 (720p) [Not 24/7] -https://video1.in-news.ru/c24/index.m3u8 -#EXTINF:-1 tvg-id="TaktRenTVKursk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Такт/Рен ТВ (Курск) (294p) [Not 24/7] -http://109.194.62.29:8080 -#EXTINF:-1 tvg-id="Tamyr.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/ySedtZl.png" group-title="Kids",Тамыр (576p) -https://bsttv.bonus-tv.ru/cdn/tamyr/playlist.m3u8 -#EXTINF:-1 tvg-id="Tatarstan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zelenodolsk.ru/share/images/base/7/170_157352.jpg" group-title="Local",Татарстан24 (1080p) [Not 24/7] -http://stream.efir24.tv:1935/live/efir24tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TBN.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТБН (720p) [Timeout] -http://62.32.67.187:1935/WEB_TBN/TBN.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEvropa.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВ Европа [Offline] -https://cdn1.mobiletv.bg/T10/tvevropa/tvevropa_794613_850k.m3u8 -#EXTINF:-1 tvg-id="TVKvarc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ТВ Кварц (576p) [Not 24/7] -https://video.quartztelecom.ru:18080/hls/2386168/71fe656b993c510f39a5/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCentr.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fIkd01t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",ТВ Центр (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s54/index.m3u8 -#EXTINF:-1 tvg-id="TVCentr.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fIkd01t.png" group-title="",ТВ Центр (432p) -http://uiptv.do.am/1ufc/000000009/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEkstra.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВ Экстра (720p) -http://live-1.otcnet.ru/tvextra720b/index.m3u8 -#EXTINF:-1 tvg-id="TV3.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600802e79513a318979d766e2a3b/orig" group-title="",ТВ-3 (1080p) [Timeout] -http://bar-timeshift-inet.ll-bar.zsttk.ru:8080/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVK24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВК 24 (576p) -http://air.tvk6.ru/tvk24/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ТВР24 (Сергиев Посад) (1080p) [Not 24/7] -https://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTUR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Travel",ТВТУР (720p) [Geo-blocked] -https://strm.yandex.ru/kal/tvtour/tvtour0.m3u8 -#EXTINF:-1 tvg-id="TVCMezhdunarodnyy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВЦ (Международный) (576p) [Timeout] -http://ad-hls-tvc.cdnvideo.ru/tvc-p222/smil:tvc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TDK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/tdk.png" group-title="",ТДК (576p) [Not 24/7] -https://sc.id-tv.kz/TDK-42.m3u8 -#EXTINF:-1 tvg-id="Telekanal86.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://online-red.com/images/tv/86.png" group-title="Local",Телеканал 86 (Сургут) (1080p) [Not 24/7] -https://sitv.ru/hls/s86.m3u8 -#EXTINF:-1 tvg-id="Telecafe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016285b7ee7ed6e5120fb155f395f6/428x280" group-title="",Телекафе (576p) -http://91.185.3.218:4000/play/605 -#EXTINF:-1 tvg-id="Teleputeshestviya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001662fa9eb27aefc58bb87bcf68f33/260x160" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",Телепутешествия (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s71/index.m3u8 -#EXTINF:-1 tvg-id="TelestanciyaMIRNovosibirsk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Телестанция МИР (Новосибирск) (720p) [Not 24/7] -http://serv30.vintera.tv:8081/stanciya_mir/mir/playlist.m3u8 -#EXTINF:-1 tvg-id="TelplyusTVAstrahan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Телплюс ТВ (Астрахань) (360p) [Not 24/7] -http://streaming.astrakhan.ru/telplushd/playlist.m3u8 -#EXTINF:-1 tvg-id="Tivikom.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Тивиком (Улан-Удэ) (1080p) [Not 24/7] -http://tvcom.stream.intelema.ru/tvcom/studio/playlist.m3u8 -#EXTINF:-1 tvg-id="TKAlmaznyykray.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТК Алмазный край (576p) -https://stream.almaz-media.tv:8080/hls/576.m3u8 -#EXTINF:-1 tvg-id="TKRRyazan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТКР (Рязань) (1080p) [Not 24/7] -http://live.tkr.cdnvideo.ru/tkr/tkr.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TNVPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a00000151869753910c522399c2749fd174/z" group-title="",ТНВ-Планета (576p) -http://tnv.bonus-tv.ru/cdn/tnvplanet/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a00000162f2e7fc95aee02fbc1efd20c3d6/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",ТНТ International (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s19/04.m3u8 -#EXTINF:-1 tvg-id="TNT4.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a00000160931f198cccad25e259a608ae77/160x120" group-title="",ТНТ4 (576p) [Not 24/7] -https://sc.id-tv.kz/tnt4.m3u8 -#EXTINF:-1 tvg-id="ToyDuman.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Той Думан (576p) [Not 24/7] -https://sc.id-tv.kz/ToiDuman.m3u8 -#EXTINF:-1 tvg-id="Tolyatti24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://ladamedia.ru/site/upload/lBPQBGJZ1hc.jpg" group-title="Local",Тольятти 24 (720p) -http://91.234.108.26/hls-live/livepkgr/_definst_/liveevent1/vazlivestream1.m3u8 -#EXTINF:-1 tvg-id="Tonus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/mVhchwI.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Тонус (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s90/index.m3u8 -#EXTINF:-1 tvg-id="TriAngela.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.3angels.ru/assets/img/themes/logo-menu.png" group-title="",Три Ангела (720p) -https://hls.tv.3angels.ru/stream/HQ.m3u8 -#EXTINF:-1 tvg-id="TuganTel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6rbVqcY.png" group-title="",Туган Тел (576p) [Offline] -http://195.20.196.69:1935/tugantel/tugantel1/playlist.m3u8 -#EXTINF:-1 tvg-id="TuganTel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6rbVqcY.png" group-title="",Туган Тел (576p) [Offline] -http://streamer.rtcommufa.ru:1935/tugantel/tugantel1/playlist.m3u8 -#EXTINF:-1 tvg-id="TuranTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Туран ТВ (576p) [Not 24/7] -https://sc.id-tv.kz/TuranTV.m3u8 -#EXTINF:-1 tvg-id="Udmurtiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000015674c3cfa3ba882ae1a1a678797a/160x160" group-title="Local",Удмуртия (404p) [Offline] -https://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="UchalyTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Учалы ТВ (576p) [Not 24/7] -http://live-uchalytv.cdnvideo.ru/uchalytv/uchalytv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Futbol.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/g24DSFV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Футбол (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s41/index.m3u8 -#EXTINF:-1 tvg-id="Habar.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Хабар (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar.m3u8 -#EXTINF:-1 tvg-id="Habar24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Хабар 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar_24.m3u8 -#EXTINF:-1 tvg-id="HuzurTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.tildacdn.com/tild6230-3662-4537-a334-363564306535/Untitled-4.png" group-title="",Хузур ТВ (720p) [Not 24/7] -https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="Centralnoetelevidenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/2Ydfgw4.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Центральное телевидение (ЦТВ) (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s20/index.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Шансон ТВ (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s43/index.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] -http://uiptv.do.am/1ufc/602079679/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] -https://hls-shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (512p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Shokiruyushchee.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Шокирующее (540p) [Timeout] -http://185.97.150.19:8082/2401 -#EXTINF:-1 tvg-id="ShchyolkovskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://tv41.ru/images/00.png" group-title="Local",Щёлковское ТВ (576p) [Not 24/7] -http://stream0.tv41.ru/live.m3u8 -#EXTINF:-1 tvg-id="EhoTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Эхо TV (Рязань) (576p) [Not 24/7] -https://live-echotv.cdnvideo.ru/echotv/echotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Yu.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/1j5q5Ff.png" group-title="Entertainment",Ю (576p) [Offline] -https://strm.yandex.ru/kal/utv/utv0.m3u8 -#EXTINF:-1 tvg-id="YuvelirochkaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ювелирочка ТВ (576p) -http://live-uvelirochka.cdnvideo.ru/uvelirochka/uvelirochka_720p3/playlist.m3u8 -#EXTINF:-1 tvg-id="Yugra.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/ugra_tv.jpg" group-title="Local",Югра (360p) -http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Yurgan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.xn--80af5aj3e.xn--p1ai/assets/images/logo.png" group-title="Local",Юрган (1080p) -http://yurgan.bonus-tv.ru/cdn/yurgan/playlist.m3u8 -#EXTINF:-1 tvg-id="YuTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ЮТВ (Чебоксары) (432p) [Not 24/7] -http://serv24.vintera.tv:8081/utv/Stream/playlist.m3u8 diff --git a/channels/ru_catcast.m3u b/channels/ru_catcast.m3u deleted file mode 100644 index 53c68d9d2..000000000 --- a/channels/ru_catcast.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Eurodance90HD.ru" tvg-country="RU" tvg-language="English" tvg-logo="" group-title="Music",Eurodance 90 HD (1080p) [Not 24/7] -https://eurodance90.catcast.tv/content/36987/index.m3u8 -#EXTINF:-1 tvg-id="KinderTV.ua" tvg-country="CIS" tvg-language="Russian" tvg-logo="https://img.catcast.tv/uploads/02062021/banners/38144-60b7e4bbc80fc.png" group-title="Family",FilmTV Kinder (400p) [Not 24/7] -https://v2.catcast.tv/content/38144/index.m3u8 -#EXTINF:-1 tvg-id="FreshTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://img.catcast.tv/uploads/09072021/logos/33718-60e8114945a4a.png" group-title="Music",Fresh TV (720p) -https://freshtv.catcast.tv/content/33718/index.m3u8 -#EXTINF:-1 tvg-id="GravityFouls.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Gravity Fouls (480p) [Not 24/7] -https://v3.catcast.tv/content/38105/index.m3u8 -#EXTINF:-1 tvg-id="MetalTV.ru" tvg-country="INT" tvg-language="Catalan;Arabic;Pashto;English;Albanian;Armenian;Portuguese;Spanish;German;Dutch;Swedish;Azerbaijani;Bosnian;Bengali;French;Bulgarian;Malay;Dzongkha;Norwegian;Belarusian;Chinese;Greek;Czech;Danish;Estonian;Tigrinya;Amharic;Finnish;Faroese;Georgian;Greenlandic;Croatian;Hungarian;Indonesian;Irish;Hebrew;Hindi;Persian;Icelandic;Italian;Japanese;Kirghiz;Khmer;Korean;Kazakh;Lao;Sinhala;Lithuanian;Latvian;Romanian;Serbian;Macedonian;Burmese;Mongolian;Maltese;Dhivehi;Nepali;Polish;Russian;Kinyarwanda;Slovenian;Slovak;Somali;Thai;Tajik;Turkmen;Turkish;Swahili;Ukrainian;Uzbek;Vietnamese;Bislama;Samoan;Afrikaans" tvg-logo="" group-title="Music",Metal TV (360p) [Not 24/7] -https://v2.catcast.tv/content/33816/index.m3u8 -#EXTINF:-1 tvg-id="KinozalVHS90s.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Кинозал (VHS 90s) (720p) [Not 24/7] -https://v2.catcast.tv/content/37925/index.m3u8 -#EXTINF:-1 tvg-id="Premera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Премьера (304p) [Not 24/7] -https://v2.catcast.tv/content/39161/index.m3u8 -#EXTINF:-1 tvg-id="SSSRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",СССР ТВ (464p) [Not 24/7] -https://v2.catcast.tv/content/38821/index.m3u8 -#EXTINF:-1 tvg-id="Uzhastik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ужастик (300p) [Not 24/7] -https://v2.catcast.tv/content/38896/index.m3u8 -#EXTINF:-1 tvg-id="FantastikaSciFi.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Фантастика Sci-Fi (272p) [Not 24/7] -https://v2.catcast.tv/content/38801/index.m3u8 diff --git a/channels/ru_okkotv.m3u b/channels/ru_okkotv.m3u deleted file mode 100644 index c7c600c97..000000000 --- a/channels/ru_okkotv.m3u +++ /dev/null @@ -1,91 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BlackRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/rzrOS3N.png" group-title="Entertainment",.black Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_Turbo.m3u8 -#EXTINF:-1 tvg-id="RedRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/xUGWmyh.png" group-title="Entertainment",.red Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_ET.m3u8 -#EXTINF:-1 tvg-id="SciFiRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/5ezLSwB.png" group-title="Science",.sci-fi Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_SciFi.m3u8 -#EXTINF:-1 tvg-id="5kanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/tWULJqX.png" group-title="General",5 канал (480p) -https://okkotv-live.cdnvideo.ru/channel/5_OTT.m3u8 -#EXTINF:-1 tvg-id="A1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lXlwfyw.png" group-title="Series",A1 (720p) -https://okkotv-live.cdnvideo.ru/channel/A1_HD.m3u8 -#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" group-title="Series",A2 (1080p) -https://okkotv-live.cdnvideo.ru/channel/A2_HD.m3u8 -#EXTINF:-1 tvg-id="AmediaHit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016653697bea0c072bf5c5bc1c11ec/260x160" group-title="Movies",Amedia Hit (1080p) -https://okkotv-live.cdnvideo.ru/channel/Amedia_Hit_HD.m3u8 -#EXTINF:-1 tvg-id="BabyTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/9sWVrgR.png" group-title="Kids",Baby TV (480p) [Not 24/7] -http://okkotv-live.cdnvideo.ru/channel/BabyTV.m3u8 -#EXTINF:-1 tvg-id="FoxLifeRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/27k3DtT.png" group-title="Series",Fox Life Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Fox_Life_HD.m3u8 -#EXTINF:-1 tvg-id="FoxRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="Movies",Fox Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Fox_HD.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeo.id.png" group-title="Documentary",National Geographic (1080p) -https://okkotv-live.cdnvideo.ru/channel/NGC_HD.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="",National Geographic Wild Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/NGC_Wild_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000ActionRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/dzOFwC0.png" group-title="Movies",TV1000 Action Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_Action_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000HDRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/7s3v0on.png" group-title="Movies",TV1000 Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000RusskoeKino.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iCUmr4k.png" group-title="Movies",TV1000 Русское кино (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_Rus_Kino_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatExploreRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CnKhbJ3.png" group-title="",Viasat Explore Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_Explore_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatHistoryRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YU2vfQX.png" group-title="Documentary",Viasat History Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_History_ad_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatNatureRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YkvX94D.png" group-title="",Viasat Nature Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_Nature_ad_HD.m3u8 -#EXTINF:-1 tvg-id="ViPComedyRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/kHTdkiW.png" group-title="Comedy",ViP Comedy Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Comedy_HD.m3u8 -#EXTINF:-1 tvg-id="VIPMegahitRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/KIy4kdc.png" group-title="Movies",VIP Megahit Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Megahit_HD.m3u8 -#EXTINF:-1 tvg-id="VIPPremiereRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/s33q57W.png" group-title="Entertainment",VIP Premiere Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Premiere_HD.m3u8 -#EXTINF:-1 tvg-id="VIPSerialRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/qtjt9qv.png" group-title="Series",VIP Serial Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Serial_HD.m3u8 -#EXTINF:-1 tvg-id="Dikayaohota.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/zO4fl6B.png" group-title="Outdoor",Дикая охота (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dikaya_Ohota_HD.m3u8 -#EXTINF:-1 tvg-id="Dikayarybalka.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/SdenWkP.png" group-title="Outdoor",Дикая рыбалка (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dikaya_Rybalka_HD.m3u8 -#EXTINF:-1 tvg-id="Dikiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/s9IkQPo.png" group-title="Outdoor",Дикий (480p) -https://okkotv-live.cdnvideo.ru/channel/Dikiy.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" group-title="Entertainment",Домашний (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dom_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" group-title="General",Звезда (480p) -https://okkotv-live.cdnvideo.ru/channel/Zvezda_SD.m3u8 -#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (1080p) -https://okkotv-live.cdnvideo.ru/channel/Izvestiya_HD_2.m3u8 -#EXTINF:-1 tvg-id="Kaleydskop.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/sgDCVyG.png" group-title="",Калейдскоп (480p) -https://okkotv-live.cdnvideo.ru/channel/Kaleidoskop.m3u8 -#EXTINF:-1 tvg-id="KanalDisney.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Q9KoVy9.png" group-title="Kids",Канал Disney (480p) -https://okkotv-live.cdnvideo.ru/channel/Disney.m3u8 -#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (480p) -https://okkotv-live.cdnvideo.ru/channel/Mir_OTT.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" group-title="Music",Муз-ТВ (480p) -https://okkotv-live.cdnvideo.ru/channel/MuzTV.m3u8 -#EXTINF:-1 tvg-id="Multilandiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/OwA1zSH.png" group-title="Kids",Мультиландия (1080p) -https://okkotv-live.cdnvideo.ru/channel/Multilandia_HD.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал (1080p) -https://okkotv-live.cdnvideo.ru/channel/Pervii_Kanal_OTT_HD.m3u8 -#EXTINF:-1 tvg-id="RENTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016e89588796d4590c9dd4dda32ffc/170x100" group-title="General",РЕН ТВ (1080p) -https://okkotv-live.cdnvideo.ru/channel/Rentv_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (1080p) -https://okkotv-live.cdnvideo.ru/channel/Russia1HD.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (480p) -https://okkotv-live.cdnvideo.ru/channel/Russia24.m3u8 -#EXTINF:-1 tvg-id="RossiyaK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600801de5fbb57debf44353568ee/orig" group-title="Culture",Россия К (480p) -https://okkotv-live.cdnvideo.ru/channel/Russia_K_SD.m3u8 -#EXTINF:-1 tvg-id="Spas.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6IcWl5r.png" group-title="Religious",СПАС (480p) -https://okkotv-live.cdnvideo.ru/channel/Spas.m3u8 -#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" group-title="Family",СТС (1080p) -https://okkotv-live.cdnvideo.ru/channel/CTC_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="CTCKids.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/knWklye.png" group-title="Kids",СТС Kids (1080p) -https://okkotv-live.cdnvideo.ru/channel/CTC_Kids_HD.m3u8 -#EXTINF:-1 tvg-id="STSLove.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GqaOhZp.png" group-title="Family",СТС Love (480p) -https://okkotv-live.cdnvideo.ru/channel/CTC_Love_OTT_2.m3u8 -#EXTINF:-1 tvg-id="FeniksKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/JHPnrqe.png" group-title="Movies",Феникс Кино (480p) -https://okkotv-live.cdnvideo.ru/channel/Phoenix.m3u8 -#EXTINF:-1 tvg-id="Che.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/nRD61Dw.png" group-title="Entertainment",Че (480p) -https://okkotv-live.cdnvideo.ru/channel/Che_OTT_2.m3u8 -#EXTINF:-1 tvg-id="Yu.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/1j5q5Ff.png" group-title="Entertainment",Ю (480p) -https://okkotv-live.cdnvideo.ru/channel/Yu_OTT.m3u8 diff --git a/channels/rw.m3u b/channels/rw.m3u deleted file mode 100644 index 70125f22a..000000000 --- a/channels/rw.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KC2.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="https://i.imgur.com/13N8UX5.jpg" group-title="",KC2 (720p) [Not 24/7] -http://197.243.19.131:1935/kc2/kc2/chunklist.m3u8 -#EXTINF:-1 tvg-id="KC2.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="https://i.imgur.com/13N8UX5.jpg" group-title="",KC2 (720p) [Not 24/7] -https://5c46fa289c89f.streamlock.net/kc2/kc2/chunklist.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (576p) [Not 24/7] -https://1600706787.rsc.cdn77.org/1600706787/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] -http://197.243.19.131:1935/rtv/rtv/chunklist_w2093872577.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] -http://197.243.19.131:1935/rtv/rtv/chunklist.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] -https://5c46fa289c89f.streamlock.net/rtv/rtv/playlist.m3u8 diff --git a/channels/sa.m3u b/channels/sa.m3u deleted file mode 100644 index 3533d7848..000000000 --- a/channels/sa.m3u +++ /dev/null @@ -1,111 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AhluAlQuranTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://www.ahlu.tv/uploads/logo.png" group-title="Religious",Ahlu Al Quran TV (576p) -https://ahlualquran.tv/live/ysfbfBvecZ/SaNVjgaYnE/8.m3u8 -#EXTINF:-1 tvg-id="AlEkhbariya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/NciF5rO.png" group-title="News",Al Ekhbariya (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Ekhbariyah -#EXTINF:-1 tvg-id="ALHOKAIRGroupTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15819734874770.jpg" group-title="General",AL HOKAIR Group TV (576p) -http://82.212.74.3:8000/live/7513.m3u8 -#EXTINF:-1 tvg-id="AlKhalij.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://www.al-khalij.tv/wp-content/uploads/2015/03/logo-1.png" group-title="General",Al Khalij (720p) -https://mn-nl.mncdn.com/khalij/khalij/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/0aMNwQa.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Quran_TV -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zmVCXIK.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (720p) [Not 24/7] -http://m.live.net.sa:1935/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zmVCXIK.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_quran/hls1/saudi_quran.m3u8 -#EXTINF:-1 tvg-id="AlSaudiya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/MOiapKB.png" group-title="General",Al Saudiya (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Saudi1_TV -#EXTINF:-1 tvg-id="AlSaudiya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/SMk1hAy.png" group-title="General",Al Saudiya (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_tv/hls1/saudi_tv.m3u8 -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/84nqj99.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Sunnah_TV -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://www.sba.sa/assets/uploads/2018/04/Mask-Group-55@2x.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (720p) [Not 24/7] -http://m.live.net.sa:1935/live/sunnah/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://www.sba.sa/assets/uploads/2018/04/Mask-Group-55@2x.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_sunnah/hls1/saudi_sunnah.m3u8 -#EXTINF:-1 tvg-id="AlResalah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/assets/themes/TriTheme-new/images/channels/resala.png" group-title="Religious",Al-Resalah (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-risala.m3u8 -#EXTINF:-1 tvg-id="AlResalah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/assets/themes/TriTheme-new/images/channels/resala.png" group-title="Religious",Al-Resalah (1080p) [Geo-blocked] -https://shls-rotana-alresalah-prod-dub.shahid.net/out/v1/936b89606b5e48db8ca28caa40adc886/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) -https://shls-asharq-prod-dub.shahid.net/out/v1/3b6b4902cf8747a28619411239584002/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) -https://svs.itworkscdn.net/bloomberarlive/bloomberg.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) [Offline] -https://bcsecurelivehls-i.akamaihd.net/hls/live/1021447/6203311941001/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (Portrait) (1280p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/VERTICAL_1@301860/master.m3u8 -#EXTINF:-1 tvg-id="AtfalWaMawaheb.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://atfal1.com/wp-content/uploads/2018/02/logo.png" group-title="Kids",Atfal Wa Mawaheb (1080p) -https://5d658d7e9f562.streamlock.net/atfal1.com/atfal2/playlist.m3u8 -#EXTINF:-1 tvg-id="Beity.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7aD1yan.jpg" group-title="Outdoor",Beity [Offline] -http://82.212.74.2:8000/live/7312.m3u8 -#EXTINF:-1 tvg-id="ENTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15817550307058.png" group-title="General",EN TV [Timeout] -http://82.212.74.100:8000/live/8130.m3u8 -#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Adkar Nawn) (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_iPASlANiI8 -#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Surat Stream 1) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=hoKsZRXS7vo -#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Surat Stream 2) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=plqRs-gWAOk -#EXTINF:-1 tvg-id="Iqraa.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/3bug9dU.png" group-title="Religious",Iqraa (576p) [Not 24/7] -https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar1.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraaEuropeAfrica.sa" tvg-country="SA" tvg-language="English" tvg-logo="https://i.imgur.com/3bug9dU.png" group-title="Religious",Iqraa Europe Africa (576p) [Not 24/7] -https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar2.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JascoEventsTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Travel",Jasco Events TV (576p) [Offline] -http://82.212.74.100:8000/live/hls/8131.m3u8 -#EXTINF:-1 tvg-id="KaifTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/q2qHUKF.png" group-title="Religious",Kaif TV (576p) [Not 24/7] -http://82.212.74.2:8000/live/hls/7311.m3u8 -#EXTINF:-1 tvg-id="KSASports1.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",KSA Sports 1 (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport1 -#EXTINF:-1 tvg-id="KSASports2.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",KSA Sports 2 (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport2 -#EXTINF:-1 tvg-id="LBC" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/YLcmYCR.png" group-title="General",LBC (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-lbc.m3u8 -#EXTINF:-1 tvg-id="MakkahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5p2yUBb.png" group-title="Religious",Makkah TV (480p) -http://makkahtv.srfms.com:1935/makkahtv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="MakkahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5p2yUBb.png" group-title="Religious",Makkah TV (480p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/makkahtv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="PanoramaFM.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Music",Panorama FM (1080p) -https://shls-panoramafm-prod-dub.shahid.net/out/v1/66262e420d824475aaae794dc2d69f14/index.m3u8 -#EXTINF:-1 tvg-id="RotanaCinema.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema-egypt.png" group-title="Movies",Rotana Cinema (1080p) -https://shls-rotanacinema-egy-prod-dub.shahid.net/out/v1/c39c0ecbcbdb46e890e91106776397a8/index.m3u8 -#EXTINF:-1 tvg-id="Rotana Cinema" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema.png" group-title="Movies",Rotana Cinema (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-cinema.m3u8 -#EXTINF:-1 tvg-id="RotanaCinemaKSA.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema.png" group-title="Movies",Rotana Cinema KSA (1080p) -https://shls-rotanacinema-ksa-prod-dub.shahid.net/out/v1/6cee1c57ea7841e697eb15cefc98e0a6/index.m3u8 -#EXTINF:-1 tvg-id="Rotana Classic" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/classic.png" group-title="Classic",Rotana Classic (1080p) -https://shls-rotanaclassic-prod-dub.shahid.net/out/v1/4eebed211c8441228321b4f67a46c5a5/index.m3u8 -#EXTINF:-1 tvg-id="Rotana Classic" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/classic.png" group-title="Classic",Rotana Classic (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-classical.m3u8 -#EXTINF:-1 tvg-id="Rotana Comedy" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/comedy.png" group-title="Comedy",Rotana Comedy (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-comedy.m3u8 -#EXTINF:-1 tvg-id="Rotana Drama" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/drama.png" group-title="General",Rotana Drama (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-drama.m3u8 -#EXTINF:-1 tvg-id="Rotana Drama" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/drama.png" group-title="General",Rotana Drama (1080p) [Geo-blocked] -https://shls-rotanadrama-prod-dub.shahid.net/out/v1/20c617b40dc743589ecc9d08d9d3345d/index.m3u8 -#EXTINF:-1 tvg-id="Rotana Khalijiah" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/khalijiat.png" group-title="Music",Rotana Khalijia (1080p) -https://shls-rotanakhalijia-prod-dub.shahid.net/out/v1/a639fd49db684f1b8c063d398101a888/index.m3u8 -#EXTINF:-1 tvg-id="Rotana Khalijiah" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/khalijiat.png" group-title="Music",Rotana Khalijia (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-khaleejiya.m3u8 -#EXTINF:-1 tvg-id="RotanaKids.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/kids.png" group-title="Kids",Rotana Kids (1080p) -https://shls-rotanakids-prod-dub.shahid.net/out/v1/df6e0eb3cdc4410b98209aafc8677cef/index.m3u8 -#EXTINF:-1 tvg-id="RotanaKids.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/kids.png" group-title="Kids",Rotana Kids (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-kids.m3u8 -#EXTINF:-1 tvg-id="RotanaMusic.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/music.png" group-title="Music",Rotana Music (1080p) [Offline] -https://shls-rotanamusic-prod-dub.shahid.net/out/v1/edfe0095261648908a3a931b72489f3f/index.m3u8 -#EXTINF:-1 tvg-id="RotanaPlus.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/hd.png" group-title="General",Rotana+ (1080p) -https://shls-rotanaplus-prod-dub.shahid.net/out/v1/1fc6103458be480b96e6a574b00fe1c0/index.m3u8 -#EXTINF:-1 tvg-id="SBC.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/yazkC4P.png" group-title="General",SBC (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/SBC -#EXTINF:-1 tvg-id="SSCActionWaleed.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",SSC Action Waleed (1080p) [Not 24/7] -https://shls-live-event2-prod-dub.shahid.net/out/v1/0456ede1a39145d98b3d8c8062ddc998/index.m3u8 -#EXTINF:-1 tvg-id="SSCActionWaleedExtra.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",SSC Action Waleed Extra (1080p) [Not 24/7] -https://d2x08mwxhmpplo.cloudfront.net/out/v1/587631773e55495a8aa3dd4050318f6e/index.m3u8 -#EXTINF:-1 tvg-id="SSC1HD.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i5.satexpat.com/cha/sa/ssc-95x31.gif" group-title="Sports",SSC1 HD (1080p) -https://ssc-5-ak.akamaized.net/out/v1/6ae0a2ebab224c72ab9c298afeec8d91/index.m3u8 -#EXTINF:-1 tvg-id="ThikrayatTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fAkScnI.png" group-title="Classic",Thikrayat TV (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Zikrayat -#EXTINF:-1 tvg-id="WesalTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/SfG32dL.png" group-title="Religious",Wesal TV [Not 24/7] -http://live.noorlive.com:1935/wesal/wesal1/playlist.m3u8 -#EXTINF:-1 tvg-id="ZADTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",ZAD TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOll3M-P7oKs5cSrQ9ytt6g/live diff --git a/channels/sd.m3u b/channels/sd.m3u deleted file mode 100644 index ae0dfd7d6..000000000 --- a/channels/sd.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlAlamiya2.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15592492499912.jpg" group-title="",Al Alamiya 2 [Timeout] -http://82.212.74.98:8000/live/7815.m3u8 -#EXTINF:-1 tvg-id="SudanBukra.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tkBFpJu.jpg" group-title="",Sudan Bukra (720p) [Offline] -http://live.ditve.tv:1935/sudanbukra/sudanbukra.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SudanTV.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="" group-title="",Sudan TV (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/sudan_tv/hls1/sudan_tv.m3u8 diff --git a/channels/se.m3u b/channels/se.m3u deleted file mode 100644 index 02a28c623..000000000 --- a/channels/se.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AftonbladetTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/LsAz0UW.jpg" group-title="",Aftonbladet TV (144p) -https://aftonbladetlive-lh.akamaihd.net/i/livestream01_1@182509/master.m3u8 -#EXTINF:-1 tvg-id="ATG.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/5CdW62M.png" group-title="Sports",ATG (432p) -https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free_3.m3u8 -#EXTINF:-1 tvg-id="ATG.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/8ZFQ93Z.png" group-title="Sports",ATG (432p) -https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free.m3u8 -#EXTINF:-1 tvg-id="AzerbaijanNewsTV.se" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.aznews.tv/wp-content/uploads/2019/04/headerlogo.fw_.png" group-title="News",Azerbaijan News TV (720p) [Not 24/7] -https://edge1.socialsmart.tv/aznews/smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DiTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/zApTDWn.png" group-title="News",Di TV (720p) -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx4_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ExpressenTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Kt88QxS.png" group-title="News",Expressen TV (720p) [Not 24/7] -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/chunklist_b3628000.m3u8 -#EXTINF:-1 tvg-id="ExpressenTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/wXvWBJp.png" group-title="News",Expressen TV (720p) [Offline] -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal10Asia.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",Kanal 10 Asia (540p) [Not 24/7] -https://cdn-kanal10.crossnet.net/kanal10/ngrp:kanal10asia_all/chunklist_w522739009_b2128000.m3u8 -#EXTINF:-1 tvg-id="MiracleChannel.se" tvg-country="SE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x3XqZxs.png" group-title="News",Miracle Channel (576p) -https://yjh3p.stream.miraclechannel.com/hls/miracle1_high/index.m3u8 -#EXTINF:-1 tvg-id="MiracleChannel.se" tvg-country="SE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x3XqZxs.png" group-title="News",Miracle Channel (360p) -https://yjh3p.stream.miraclechannel.com/hls/miracle1_med/index.m3u8 -#EXTINF:-1 tvg-id="OppnaKanalen.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/O1wCZTZ.jpg" group-title="Local",Oppna Kanalen (540p) -https://edg03-prd-se-ixn.solidtango.com/edge/_451iw2h_/451iw2h/playlist.m3u8 -#EXTINF:-1 tvg-id="OPPNAKANALEN.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",OPPNA KANALEN (540p) [Offline] -http://83.140.64.214/edge/_451iw2h_/451iw2h/chunklist_w348058882.m3u8 -#EXTINF:-1 tvg-id="OppnaKanalen.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/O1wCZTZ.jpg" group-title="Local",Öppna Kanalen (540p) [Offline] -http://83.140.64.214/edge/_451iw2h_/451iw2h/playlist.m3u8 -#EXTINF:-1 tvg-id="SVT2Varmland.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",SVT2 Värmland [Offline] -http://51.91.73.99:25461/sweden/PM66f7Y43H/12476 -#EXTINF:-1 tvg-id="TV4.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/mvwiSqt.png" group-title="",TV4 (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791716.m3u8 -#EXTINF:-1 tvg-id="TV4.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/mvwiSqt.png" group-title="",TV4 (576p) [Offline] -https://lbs-aws-hls.tv4play.se/dailive/bbr-event1-p/master3404.m3u8 -#EXTINF:-1 tvg-id="TV4SvenskPolitik.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",TV4 Svensk Politik (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791553.m3u8 -#EXTINF:-1 tvg-id="TV4Nyheterna.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/psAAPIE.jpg" group-title="",TV4Nyheterna (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791350.m3u8 -#EXTINF:-1 tvg-id="VastmanlandsTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Mol9GKz.jpg" group-title="",Västmanlands TV (720p) -https://edg01-prd-se-dcs.solidtango.com/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 -#EXTINF:-1 tvg-id="VastmanlandsTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Mol9GKz.jpg" group-title="",Västmanlands TV (720p) [Offline] -http://83.140.64.214/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 -#EXTINF:-1 tvg-id="ViPComedyRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/kHTdkiW.png" group-title="Comedy",ViP Comedy Russia (720p) [Not 24/7] -http://188.40.68.167/russia/vip_comedy/playlist.m3u8 diff --git a/channels/se_samsung.m3u b/channels/se_samsung.m3u deleted file mode 100644 index 3a71eae23..000000000 --- a/channels/se_samsung.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) [Not 24/7] -https://rakuten-euronews-1-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] -https://failarmy-international-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-13-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeSweden.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Sweden (720p) [Offline] -https://jukin-peopleareawesome-2-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Sweden) (720p) [Offline] -https://rakuten-action-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedySweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Sweden) (720p) [Offline] -https://rakuten-comedy-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Sweden) (720p) [Offline] -https://rakuten-documentaries-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Sweden) (720p) [Not 24/7] -https://rakuten-drama-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilySweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Sweden) (720p) [Offline] -https://rakuten-family-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Sweden) (720p) [Offline] -https://rakuten-spotlight-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraokeSweden.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (Sweden) (1080p) -https://stingray-karaoke-3-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveSweden.us" tvg-country="SE" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Sweden (720p) [Offline] -https://the-pet-collective-international-se.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/sg.m3u b/channels/sg.m3u deleted file mode 100644 index 0d6c5ef85..000000000 --- a/channels/sg.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Channel5.sg" tvg-country="SG" tvg-language="English" tvg-logo="" group-title="",Channel 5 [Geo-blocked] -https://ddftztnzt6o79.cloudfront.net/hls/clr4ctv_okto/master.m3u8 -#EXTINF:-1 tvg-id="Channel5.sg" tvg-country="SG" tvg-language="English" tvg-logo="" group-title="",Channel 5 [Geo-blocked] -https://dlau142f16b92.cloudfront.net/hls/clr4ctv_ch5/master.m3u8 -#EXTINF:-1 tvg-id="Channel8.sg" tvg-country="SG" tvg-language="Chinese" tvg-logo="" group-title="",Channel 8 [Geo-blocked] -https://d34e90s3s13i7n.cloudfront.net/hls/clr4ctv_ch8/master.m3u8 -#EXTINF:-1 tvg-id="CNA.sg" tvg-country="SG" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/CNA_new_logo.svg/225px-CNA_new_logo.svg.png" group-title="News",CNA (1080p) -https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 -#EXTINF:-1 tvg-id="CNA.sg" tvg-country="SG" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/CNA_new_logo.svg/225px-CNA_new_logo.svg.png" group-title="News",CNA (1080p) [Geo-blocked] -https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 -#EXTINF:-1 tvg-id="Suria.sg" tvg-country="SG" tvg-language="Malay" tvg-logo="" group-title="",Suria [Geo-blocked] -https://d11h6a6nhl9kj9.cloudfront.net/hls/clr4ctv_suria/master.m3u8 -#EXTINF:-1 tvg-id="Suria.sg" tvg-country="SG" tvg-language="Malay" tvg-logo="" group-title="",Suria (720p) [Offline] -http://50.7.161.82:8278/streams/d/Suria/playlist.m3u8 -#EXTINF:-1 tvg-id="Vasantham.sg" tvg-country="SG" tvg-language="Tamil;English" tvg-logo="" group-title="",Vasantham [Geo-blocked] -https://d39v9xz8f7n8tk.cloudfront.net/hls/clr4ctv_vsnthm/master.m3u8 diff --git a/channels/si.m3u b/channels/si.m3u deleted file mode 100644 index 14804d5fb..000000000 --- a/channels/si.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="GTV.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="" group-title="",GTV (360p) [Not 24/7] -http://91.220.221.60/gtv_hls/gtv_03.m3u8 -#EXTINF:-1 tvg-id="MMC.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/ogq22B7.png" group-title="",MMC (720p) [Not 24/7] -https://29-rtvslo-tv-mmc-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKOPER.si" tvg-country="SI" tvg-language="Italian" tvg-logo="https://i.imgur.com/XzkurJ3.png" group-title="",TV Koper-Capodistria (720p) -https://27-rtvslo-tv-kp-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMARIBOR.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/jnEPJoV.png" group-title="",TV MARIBOR (720p) [Not 24/7] -https://25-rtvslo-tv-mb-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSLOVENIJA1.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/3t60yS0.png" group-title="",TV SLOVENIJA 1 (1080p) -https://31-rtvslo-tv-slo1-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSLOVENIJA2.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/QweABvP.png" group-title="",TV SLOVENIJA 2 (720p) -https://21-rtvslo-tv-slo2-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSLOVENIJA3.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/uO0QUzi.png" group-title="",TV SLOVENIJA 3 (720p) -https://16-rtvslo-tv-slo3-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="tvdx.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="" group-title="",TVDX (486p) [Not 24/7] -http://5ca49f2417d90.streamlock.net/live/dolnykubin1/playlist.m3u8 -#EXTINF:-1 tvg-id="veseljaktv.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/Y0EyEeU.png" group-title="",Veseljak TV (1080p) -https://stream.veseljak.tv/hls/stream.m3u8 diff --git a/channels/sk.m3u b/channels/sk.m3u deleted file mode 100644 index 537793e4b..000000000 --- a/channels/sk.m3u +++ /dev/null @@ -1,69 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/hgdR9cp.png" group-title="",BTV (720p) [Not 24/7] -rtmp://s1.media-planet.sk:80/live/bardejov1 -#EXTINF:-1 tvg-id="FashionTVCzechSlovak.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/hrhfs9p.png" group-title="Lifestyle",FashionTV Czech&Slovak (450p) -http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wKJpGke.jpg" group-title="",JOJ (720p) [Not 24/7] -https://nn.geo.joj.sk/hls/joj-720.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wKJpGke.jpg" group-title="",JOJ (720p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/joj-720.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="",JOJ (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/joj-540.m3u8 -#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/family-540.m3u8 -#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/family-540.m3u8 -#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (360p) [Not 24/7] -https://nn.geo.joj.sk/hls/family-360.m3u8 -#EXTINF:-1 tvg-id="Kosicednes.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/ypZ4H5m.jpg" group-title="",Košice:dnes (450p) [Offline] -http://lb.streaming.sk/tvnasa/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Lifetv.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/Rvy8Wdu.png" group-title="",Life.tv (720p) [Timeout] -http://86.110.233.68:1935/lifetv/lifetv.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="LocAll.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/zaemQoz.png" group-title="",LocAll (406p) -http://tv.geniusnet.sk:8081/localltv/pl.m3u8 -#EXTINF:-1 tvg-id="NoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Nove Zamky (486p) -http://s1.media-planet.sk/live/novezamky/playlist.m3u8 -#EXTINF:-1 tvg-id="Plus.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/1hKwMpt.png" group-title="",Plus (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/jojplus-540.m3u8 -#EXTINF:-1 tvg-id="RajTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GKBwOFF.jpg" group-title="",Raj TV (720p) [Not 24/7] -https://ottst05.flexitv.sk/2827-tv-pc.m3u8 -#EXTINF:-1 tvg-id="Reduta.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Reduta (486p) -http://s1.media-planet.sk/live/reduta/playlist.m3u8 -#EXTINF:-1 tvg-id="Rik.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Rik (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/rik-540.m3u8 -#EXTINF:-1 tvg-id="SenziTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/3w4SA3V.jpg" group-title="",Senzi TV [Offline] -http://109.74.144.130/live/senzitest/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleviziaOSEM.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/JeiED2h.jpg" group-title="",Televizia OSEM (360p) -http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleviziaOSEM.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/JeiED2h.jpg" group-title="",Televízia OSEM (576p) -http://109.74.145.11:1935/tv8/ngrp:tv8.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDK.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",TV DK (486p) [Not 24/7] -http://80.94.54.11:1935/live/dolnykubin1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJojko.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="Kids",TV Jojko (540p) [Offline] -https://nn.geo.joj.sk/live/rik-index.m3u8 -#EXTINF:-1 tvg-id="TVLux.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/QQK4sJs.jpg" group-title="",TV Lux (1080p) [Not 24/7] -http://live.tvlux.sk:1935/lux/lux.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMarkiza.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://static-media.streema.com/media/cache/da/4f/da4f346af8f63ae80914f9b565315cbe.jpg" group-title="",TV Markíza (720p) [Geo-blocked] -http://ntv-st01-vod01-bts10-stage.orange.sk:8000/dna-5106-tv-pc/hls/4001v102.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) -http://s1.media-planet.sk/live/novezamky/lihattv.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) [Not 24/7] -http://s1.media-planet.sk/live/novezamky/BratuMarian.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) [Offline] -rtmp://s1.media-planet.sk:80/live/novezamky -#EXTINF:-1 tvg-id="TVPoprad.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",TV Poprad (1080p) [Not 24/7] -http://213.81.153.221:8080/poprad -#EXTINF:-1 tvg-id="TVPovazie.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/3cEG19H.jpg" group-title="",TV Povazie (400p) -http://213.181.128.248:8090/tvpovazie-h264.flv -#EXTINF:-1 tvg-id="TVReduta.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/gBMtpOS.png" group-title="",TV Reduta (486p) [Offline] -rtmp://s1.media-planet.sk:80/live/reduta -#EXTINF:-1 tvg-id="TVRuzinov.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wmkg1FG.png" group-title="",TV Ružinov (1080p) -http://lb.streaming.sk/tvruzinov/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSeverka.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/vtI89AA.png" group-title="",TV Severka (576p) [Timeout] -http://88.212.7.11/live/test_severka_web_player/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTurzovka.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/WsDAqKc.png" group-title="",TV Turzovka (486p) [Not 24/7] -rtmp://s1.media-planet.sk:80/live/turzovka -#EXTINF:-1 tvg-id="TVWAU.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/nRDWpNs.jpg" group-title="",TV WAU (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/wau-540.m3u8 -#EXTINF:-1 tvg-id="TVWAU.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/nRDWpNs.jpg" group-title="",TV WAU (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/wau-540.m3u8 diff --git a/channels/sl.m3u b/channels/sl.m3u deleted file mode 100644 index 0bbbb65e1..000000000 --- a/channels/sl.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AYV.sl" tvg-country="SL" tvg-language="English" tvg-logo="https://i.imgur.com/rJfAEod.png" group-title="",AYV (720p) [Not 24/7] -https://1219373429.rsc.cdn77.org/live/stream-1/chunklist.m3u8 diff --git a/channels/sm.m3u b/channels/sm.m3u deleted file mode 100644 index 017b00023..000000000 --- a/channels/sm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="SanMarinoRTV.sm" tvg-country="SM;IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/lJpOlLv.png" group-title="",San Marino RTV (720p) -https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch01/_definst_/smil:ch-01.smil/chunklist_b1692000_slita.m3u8 -#EXTINF:-1 tvg-id="SanMarinoRTVSport.sm" tvg-country="SM;IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/PGm944g.png" group-title="Sports",San Marino RTV Sport (720p) -https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch02/smil:ch-02.smil/master.m3u8 diff --git a/channels/sn.m3u b/channels/sn.m3u deleted file mode 100644 index 86effd28a..000000000 --- a/channels/sn.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="2STV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/3mbeewx.png" group-title="",2STV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vidbb -#EXTINF:-1 tvg-id="7TV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",7TV (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/7tv -#EXTINF:-1 tvg-id="A2iMusic.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="Music",A2i Music (720p) [Not 24/7] -https://stream.sen-gt.com/A2iMusic/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iNaja.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="",A2i Naja (720p) [Not 24/7] -https://stream.sen-gt.com/A2iNaija/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iReligion.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="Religious",A2i Religion (720p) [Not 24/7] -https://stream.sen-gt.com/A2iReligion/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="",A2i TV (1080p) [Not 24/7] -https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Africa7.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/ncOuLg6.jpg" group-title="",Africa 7 (480p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7xq2dw -#EXTINF:-1 tvg-id="DTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",DTV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/dtv -#EXTINF:-1 tvg-id="LabelTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",Label TV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/label-tv -#EXTINF:-1 tvg-id="RFM.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/TN9SHFj.png" group-title="",RFM (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wi5y1 -#EXTINF:-1 tvg-id="RTS1.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",RTS1 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/rts1 -#EXTINF:-1 tvg-id="RTS2.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",RTS2 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/rts2 -#EXTINF:-1 tvg-id="SenTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",SenTV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/sentv -#EXTINF:-1 tvg-id="TFM.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tT3YSNF.png" group-title="",TFM (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wcr45 diff --git a/channels/so.m3u b/channels/so.m3u deleted file mode 100644 index ff29b9f9b..000000000 --- a/channels/so.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HornCableTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://i.imgur.com/71UKcdB.png" group-title="",Horn Cable TV (720p) [Not 24/7] -http://cdn.mediavisionuae.com:1935/live/hctvlive.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="KalsanTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://www.saabtv.com/wp-content/uploads/2018/02/SaabTV_191x180transparent.png" group-title="",Kalsan TV (360p) -https://ap02.iqplay.tv:8082/iqb8002/s03btv/chunks.m3u8 -#EXTINF:-1 tvg-id="KalsanTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="http://kalsantv.com/wp-content/uploads/2017/11/new-size.png" group-title="",Kalsan TV (1080p) [Not 24/7] -http://cdn.mediavisionuae.com:1935/live/kalsantv.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="PuntlandTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://www.puntlandtvradio.net/wp-content/uploads/2016/04/cropped-puntlandtv1-1.png" group-title="",Puntland TV (360p) [Offline] -https://ap02.iqplay.tv:8082/iqb8002/p2t25/chunks.m3u8 -#EXTINF:-1 tvg-id="Somalicable.so" tvg-country="SO" tvg-language="Somali" tvg-logo="http://shaashada.com/images/somalicable.png" group-title="",Somali cable (576p) -https://ap02.iqplay.tv:8082/iqb8002/somc131/chunks.m3u8 -#EXTINF:-1 tvg-id="SomaliNationalTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/SNTV_REBRANDED_LOGO.png" group-title="",Somali National TV (360p) -https://ap02.iqplay.tv:8082/iqb8002/s4ne/chunks.m3u8 diff --git a/channels/sv.m3u b/channels/sv.m3u deleted file mode 100644 index 40b887dcf..000000000 --- a/channels/sv.m3u +++ /dev/null @@ -1,34 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AgapeTVCanal8.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="" group-title="",Agape TV 8 (480p) [Offline] -https://can1.krakeniptv.com:25463/live/agape/CPLdE2EadX/1764.m3u8 -#EXTINF:-1 tvg-id="Canal10.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Iy5jUjV.png" group-title="",Canal 10 (720p) -http://streamingcws20.com:1935/tves/tves.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://sivar.tv/wp-content/uploads/2016/05/canal-11-sv.png" group-title="",Canal 11 TuTV (254p) [Not 24/7] -https://algochivo.com:1936/canal11/canal11/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.canal12.com.sv/wp-content/uploads/2020/12/logo-1.png" group-title="",Canal 12 (220p) [Not 24/7] -https://sv-canal12-canal12-live.ned.media/canal12/smil:canal12.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://canal33.tv/home/wp-content/uploads/2019/08/200.png" group-title="",Canal 33 (1080p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal33/smil:canal33.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://canal33.tv/home/wp-content/uploads/2019/08/200.png" group-title="",Canal 33 (1080p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal33/videocanal33/playlist.m3u8 -#EXTINF:-1 tvg-id="ElimTV.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://i.imgur.com/AonXAXu.png" group-title="",Elim TV (480p) [Offline] -http://live-15.viewer.dacast.com/i/dclive_1@397642/master.m3u8 -#EXTINF:-1 tvg-id="OrbitaTVCanal25.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-T6GUy9Xq7dk/XHqhBG7oE1I/AAAAAAAAHcI/JthcJF6_nZ8VDmiy0QGGXaVKrsgDsBvogCLcBGAs/s1600/%25C3%2593rbita%2BTV%2BCanal%2B25%2Bhd.png" group-title="",Órbita TV Canal 25 (480p) [Not 24/7] -https://5dcabf026b188.streamlock.net/orbitatv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TCS.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/3/34/Logotipo-tcs-sv.png" group-title="",TCS (720p) -https://secure-video.tcsgo.com/tcshd/index.m3u8 -#EXTINF:-1 tvg-id="Tele1.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.tele1.sv/wp-content/uploads/2019/06/TELE1_FINAL_BLUE-1-149x84.png" group-title="",Tele1 (720p) [Not 24/7] -http://streamingcws40.com:1935/canaluno/videocanaluno/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele1.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.tele1.sv/wp-content/uploads/2019/06/TELE1_FINAL_BLUE-1-149x84.png" group-title="",Tele1 (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canaluno/smil:canaluno.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TribunaTV.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://hostlagarto.com/streaming/wp-content/uploads/2019/05/TRIBUNA-TV-253x194.jpg" group-title="",TribunaTV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/TRIBUNA-TV/tribuna.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMElSalvador.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://tvm.com.sv/wp-content/uploads/2020/02/TVM2.png" user-agent="Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36" group-title="News",TVM El Salvador (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 -http://168.227.22.18:1935/tvm/tvm.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOCanal23.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/sv_23-tv-oriente_m.png" group-title="",TVO Canal 23 (720p) [Not 24/7] -https://5fc584f3f19c9.streamlock.net/tvo/smil:tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVX.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://tvx.com.sv/wp-content/uploads/2020/07/TVX-Favicon.png" group-title="",TVX (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canaltvx -#EXTINF:-1 tvg-id="WOWTV.sv" tvg-country="SV;PE" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2020_05/large.wowtv2020.png.4fa9c9f8cb5ec86eb2b81a45780bdc93.png" group-title="General",WOW TV (576p) [Not 24/7] -https://cdn.elsalvadordigital.com:1936/wowtv/smil:wowtv.smil/playlist.m3u8 diff --git a/channels/sy.m3u b/channels/sy.m3u deleted file mode 100644 index e764482de..000000000 --- a/channels/sy.m3u +++ /dev/null @@ -1,58 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="alltv.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="" group-title="Music",alltv (400p) [Timeout] -http://185.96.70.242:1935/live/alltv/playlist.m3u8 -#EXTINF:-1 tvg-id="ANN.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/01_logo/arab_news_network.jpg" group-title="News",ANN [Not 24/7] -http://ns8.indexforce.com:1935/ann/ann/playlist.m3u8 -#EXTINF:-1 tvg-id="HalabTodayTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://halabtodaytv.net/wp-content/uploads/2020/12/%D8%AD%D9%84%D8%A8-%D8%A7%D9%84%D9%8A%D9%88%D9%85-170-01.png" group-title="News",Halab Today TV (480p) [Not 24/7] -http://streaming.tootvs.com:1935/8010/8010/playlist.m3u8 -#EXTINF:-1 tvg-id="HalabTodayTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://halabtodaytv.net/wp-content/uploads/2020/12/%D8%AD%D9%84%D8%A8-%D8%A7%D9%84%D9%8A%D9%88%D9%85-170-01.png" group-title="News",Halab Today TV (480p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/8010/8010/playlist.m3u8 -#EXTINF:-1 tvg-id="LanaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://lanacanal.tv/lana/wp-content/uploads/2021/07/LTV-final-logo-150x150.png" group-title="General",Lana TV (720p) -https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc/master22-vod.m3u8 -#EXTINF:-1 tvg-id="LanaTVPlus.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://lanacanal.tv/LanaTVPlus/wp-content/uploads/2021/07/LTV-logo_Approved04-2-150x150.png" group-title="General",Lana TV Plus (720p) -https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc2/m3u8/sdi2-720p.m3u8 -#EXTINF:-1 tvg-id="MinbijTV.sy" tvg-country="MENA" tvg-language="Arabic" tvg-logo="" group-title="",Minbij TV (576p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/45 -#EXTINF:-1 tvg-id="NoorAlSham.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Dy2Eo33.png" group-title="Religious",Noor Al-Sham (160p) [Not 24/7] -http://82.137.248.16:1935/Nour/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="RojavaTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Rojava TV (1080p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/55 -#EXTINF:-1 tvg-id="RojavaTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Rojava TV (1080p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/55.m3u8 -#EXTINF:-1 tvg-id="RonahiTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Ronahî TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/26.m3u8 -#EXTINF:-1 tvg-id="SamaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Bg52GiG.png" group-title="General",Sama TV (540p) [Not 24/7] -http://stream5.sama-tv.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ShamFM.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://sham.fm/assets/img/logo.webp" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="",Sham FM (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 -https://linkastream.co/headless?url=https://ok.ru/live/1366568541799 -#EXTINF:-1 tvg-id="ShamIPTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://sham.fm/assets/img/logo.webp" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="",Sham IPTV (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 -https://linkastream.co/headless?url=https://ok.ru/live/1366902775399 -#EXTINF:-1 tvg-id="SouryanaRadio.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j5o8ZPm.png" group-title="Music",Souryana Radio (160p) [Not 24/7] -http://82.137.248.16:1935/Souryana/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="Spacetoon.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RzPOwqI.png" group-title="Kids",Spacetoon (1080p) -https://shls-spacetoon-prod-dub.shahid.net/out/v1/6240b773a3f34cca95d119f9e76aec02/index.m3u8 -#EXTINF:-1 tvg-id="Spacetoon.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RzPOwqI.png" group-title="Kids",Spacetoon (576p) -https://streams.spacetoon.com/live/stchannel/smil:livesmil.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SuboroTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PrNVVOu.png" group-title="Religious",Suboro TV (576p) [Not 24/7] -https://streaming.viewmedia.tv/viewsatstream12/viewsatstream12.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Syria Drama" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5EnxvkU.png" group-title="Movies",Syria Drama (160p) [Not 24/7] -http://82.137.248.16:1935/Drama/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="Syria Satellite Channel" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ajsrKzA.png" group-title="General",Syria Satellite Channel (160p) [Not 24/7] -http://82.137.248.16:1935/Sat/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyriaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rKTE8Qw.png" group-title="General",Syria TV (1080p) -https://svs.itworkscdn.net/syriatvlive/syriatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianEducationTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PrXBgQG.png" group-title="Education",Syrian Education TV (160p) [Not 24/7] -http://82.137.248.16:1935/SEdu/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (360p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjmUU7Zy3BYHGSyUdRFuFIg/live -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (160p) [Not 24/7] -http://82.137.248.16:1935/Snews/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (160p) [Not 24/7] -http://vod.alikhbaria.net:1935/Snews/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="UgaritTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4x2uwpx.png" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="General",Ugarit TV (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 -https://linkastream.co/headless?url=https://ok.ru/live/2231907917430 -#EXTINF:-1 tvg-id="UgaritTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4x2uwpx.png" group-title="General",Ugarit TV (160p) [Not 24/7] -http://82.137.248.16:1935/Ugarit/stream19042021/playlist.m3u8 diff --git a/channels/th.m3u b/channels/th.m3u deleted file mode 100644 index 859a887ab..000000000 --- a/channels/th.m3u +++ /dev/null @@ -1,96 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ALTV.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.altv.tv/_nuxt/img/84f4d59.png" group-title="",ALTV (1080p) -https://thaipbs-ujxrch.cdn.byteark.com/live/playlist_1080p/index.m3u8 -#EXTINF:-1 tvg-id="ASTVNews1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="Local",ASTV News 1 (1080p) [Not 24/7] -http://news1.live14.com/stream/news1.m3u8 -#EXTINF:-1 tvg-id="Channel5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.tv5.co.th/tv5hd1-web/img/tv5hd1_logo_light.png" group-title="",Channel 5 (1080p) -http://110.170.117.27:1935/apptv5hd1live/vdo-tv5hd1/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.tv5.co.th/tv5hd1-web/img/tv5hd1_logo_light.png" group-title="",Channel 5 (480p) -https://tc-live1.sanook.com/live/22302_ch5.m3u8 -#EXTINF:-1 tvg-id="Channel7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/f3/BBTV_Channel_7.png" group-title="",Channel 7 (240p) -https://bcovlive-a.akamaihd.net/2d37038b355f4ea6a6b0d46993dc285c/ap-southeast-1/5282994675001/profile_0/chunklist.m3u8 -#EXTINF:-1 tvg-id="Channel8.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/hzdMjA1.jpg" group-title="",Channel 8 (720p) [Not 24/7] -http://usa.login.in.th:1935/ch8/ch8/playlist.m3u8 -#EXTINF:-1 tvg-id="DLTV1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-01.png" group-title="",DLTV 1 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv01.m3u8 -#EXTINF:-1 tvg-id="DLTV2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-02.png" group-title="",DLTV 2 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv02.m3u8 -#EXTINF:-1 tvg-id="DLTV3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-03.png" group-title="",DLTV 3 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv03.m3u8 -#EXTINF:-1 tvg-id="DLTV4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-04.png" group-title="",DLTV 4 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv04.m3u8 -#EXTINF:-1 tvg-id="DLTV5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-05.png" group-title="",DLTV 5 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv05.m3u8 -#EXTINF:-1 tvg-id="DLTV6.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-06.png" group-title="",DLTV 6 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv06.m3u8 -#EXTINF:-1 tvg-id="DLTV7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-07.png" group-title="",DLTV 7 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv07.m3u8 -#EXTINF:-1 tvg-id="DLTV8.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-08.png" group-title="",DLTV 8 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv08.m3u8 -#EXTINF:-1 tvg-id="DLTV9.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-09.png" group-title="",DLTV 9 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv09.m3u8 -#EXTINF:-1 tvg-id="DLTV10.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-10.png" group-title="",DLTV 10 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv10.m3u8 -#EXTINF:-1 tvg-id="DLTV11.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-11.png" group-title="",DLTV 11 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv11.m3u8 -#EXTINF:-1 tvg-id="DLTV12.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-12.png" group-title="",DLTV 12 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv12.m3u8 -#EXTINF:-1 tvg-id="DLTV13.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-13.png" group-title="",DLTV 13 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv13.m3u8 -#EXTINF:-1 tvg-id="DLTV14.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-14.png" group-title="",DLTV 14 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv14.m3u8 -#EXTINF:-1 tvg-id="DLTV15.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-15.png" group-title="",DLTV 15 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv15.m3u8 -#EXTINF:-1 tvg-id="GolfChannelThailand.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-golf.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Golf Channel Thailand (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_golfhd_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="Mono29.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d5/Mono_29_Logo.png" group-title="",Mono 29 (1080p) [Geo-blocked] -https://edge2-bkk.3bb.co.th:9443/MONO29_HLS_1080P/mono29hls_1080TH.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NBTBangkok.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",NBT Bangkok (1080p) [Not 24/7] -http://live.prd.go.th:1935/live/ch1_L.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="ThaiPBSOpt4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",Thai PBS (Opt-4) (480p) -https://thaipbs-live.cdn.byteark.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ThairathTV32.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/0AiJcrC.png" group-title="",Thairath TV 32 (720p) -https://live.thairath.co.th/trtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TPTV.th" tvg-country="TH" tvg-language="Thai" tvg-logo="http://live.parliament.go.th/images/coronationceremony/logo.png" group-title="",TPTV (286p) [Not 24/7] -https://cdn-edge.i-iptv.com/live3/91b1-ff25-f5ee-c27f-283a/playlist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl1.png" user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 1 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_PremierHD1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 2 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_PremierHD2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 3 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_PremierHD3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 4 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_PremierHD4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl5.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 5 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_PremierHD5_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSport5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/c275f890-f972-11e9-a1fc-5dda12c8d080_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport 5 (480p Scaled) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_sport5_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSport7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/e52c8980-f972-11e9-a1fc-5dda12c8d080_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport 7 (480p Scaled) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_sport7_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/feddd690-f972-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 1 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_2sporthd1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/1e8bbb60-f973-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 2 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_2sporthd2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/2dc8f250-f973-11e9-86dd-238985cbbd60_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 3 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_2sporthd3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/3f554960-f973-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 4 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_2sporthd4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueTennisHD.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-tennis.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Tennis HD (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 -https://smart-tv.livedoomovie.com:4431/02_TennisHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVMuslim.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",TV Muslim (1080p) [Not 24/7] -http://vip2.liveanywhere.asia:1935/tvmuslim/tvmuslim/playlist.m3u8 -#EXTINF:-1 tvg-id="WhiteChannel.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/lK52fpm.png" group-title="",White Channel (1080p) -http://symc-cdn.violin.co.th:1935/tndedge/whitechannel/chunklist.m3u8 diff --git a/channels/tj.m3u b/channels/tj.m3u deleted file mode 100644 index 7c98f1cab..000000000 --- a/channels/tj.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HuzurTV.tj" tvg-country="TJ" tvg-language="Russian" tvg-logo="https://i.imgur.com/Abg1fct.png" group-title="",Хузур ТВ (720p) [Not 24/7] -https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 diff --git a/channels/tm.m3u b/channels/tm.m3u deleted file mode 100644 index dc80883d3..000000000 --- a/channels/tm.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AltynAsyr.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/altyn.png" group-title="",Altyn Asyr (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch001.m3u8 -#EXTINF:-1 tvg-id="AltynAsyr.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/altyn.png" group-title="",Altyn Asyr (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch001.m3u8 -#EXTINF:-1 tvg-id="Asgabat.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/ashgabat.png" group-title="",Aşgabat (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch006.m3u8 -#EXTINF:-1 tvg-id="Asgabat.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/ashgabat.png" group-title="",Aşgabat (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch006.m3u8 -#EXTINF:-1 tvg-id="Miras.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/miras.png" group-title="",Miras (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch003.m3u8 -#EXTINF:-1 tvg-id="Miras.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/miras.png" group-title="",Miras (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch003.m3u8 -#EXTINF:-1 tvg-id="TurkmenOwazy.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/owaz.png" group-title="",Türkmen Owazy (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch005.m3u8 -#EXTINF:-1 tvg-id="TurkmenOwazy.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/owaz.png" group-title="",Türkmen Owazy (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch005.m3u8 -#EXTINF:-1 tvg-id="Turkmenistan.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://i.imgur.com/zKWfwAw.png" group-title="General",Türkmenistan (226p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch007.m3u8 -#EXTINF:-1 tvg-id="Turkmenistan.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://i.imgur.com/zKWfwAw.png" group-title="General",Türkmenistan (226p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch007.m3u8 -#EXTINF:-1 tvg-id="TurkmenistanSport.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/sport.png" group-title="Sports",Türkmenistan Sport (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch004.m3u8 -#EXTINF:-1 tvg-id="TurkmenistanSport.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/sport.png" group-title="Sports",Türkmenistan Sport (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch004.m3u8 -#EXTINF:-1 tvg-id="Yaslyk.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/yaslyk.png" group-title="",Ýaşlyk (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch002.m3u8 -#EXTINF:-1 tvg-id="Yaslyk.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/yaslyk.png" group-title="",Ýaşlyk (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch002.m3u8 diff --git a/channels/tn.m3u b/channels/tn.m3u deleted file mode 100644 index 04e5eb70e..000000000 --- a/channels/tn.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.elhiwarettounsi.com/images/news/logo.png" group-title="General",El Hiwar El Tounsi (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k2IuM11CZakq4ZvrUkv -#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.elhiwarettounsi.com/images/news/logo.png" user-agent="TNAgexpl212C" group-title="General",El Hiwar El Tounsi (400p) [Not 24/7] -#EXTVLCOPT:http-user-agent=TNAgexpl212C -http://217.182.137.206/elhiwar.m3u8 -#EXTINF:-1 tvg-id="Hannibal.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="http://www.hannibaltv.com.tn/static/fr/image/png/hannibaltv.png" user-agent="TNAgexpl212C" group-title="General",Hannibal (400p) [Offline] -#EXTVLCOPT:http-user-agent=TNAgexpl212C -http://217.182.137.206/hannibal.m3u8 -#EXTINF:-1 tvg-id="IFMTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.ifm.tn/images/logo.png" group-title="Music",IFM TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RadioIfmTunisia/live -#EXTINF:-1 tvg-id="JawharaTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/xT9fsvYQ/jawhara-fm-tv.jpg" group-title="Music",JAWHARA TV (720p) -https://streaming.toutech.net/live/jtv/index.m3u8 -#EXTINF:-1 tvg-id="MosaiqueFM.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.mosaiquefm.net/images/front2020/logoar.png" group-title="Music",Mosaïque FM (480p) [Not 24/7] -https://webcam.mosaiquefm.net:1936/mosatv/studio/playlist.m3u8 -#EXTINF:-1 tvg-id="Nessma.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.nessma.tv/images/logonessmamenu.png" group-title="Entertainment",Nessma (720p) [Offline] -https://query-streamlink-us.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7lmd4f -#EXTINF:-1 tvg-id="SahelTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://saheltv.tn/wp-content/uploads/2018/03/saheltv_logox2.png" group-title="Local",Sahel TV (720p) [Not 24/7] -http://142.44.214.231:1935/saheltv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TunisieImmobilierTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://i.imgur.com/cZM2t0P.png" group-title="Travel",Tunisie Immobilier TV (720p) [Not 24/7] -https://5ac31d8a4c9af.streamlock.net/tunimmob/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TunisnaTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisie360.net/img/tv/min/tunisna-tv.png" group-title="General",Tunisna TV [Timeout] -http://streaming.tunisna.tv:1935/live/tunisna/playlist.m3u8 -#EXTINF:-1 tvg-id="Watania1.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/El_Wataniya_1_Logo.png" group-title="General",Watania 1 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/WataniaReplay/live -#EXTINF:-1 tvg-id="Watania1.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/El_Wataniya_1_Logo.png" user-agent="TNAgexpl212C" group-title="General",Watania 1 (400p) [Offline] -#EXTVLCOPT:http-user-agent=TNAgexpl212C -http://217.182.137.206/tunisie1.m3u8 -#EXTINF:-1 tvg-id="Watania2.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/Logo_Wataniya_2.png" group-title="General",Watania 2 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/Watania2Replay/live -#EXTINF:-1 tvg-id="Watania2.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/Logo_Wataniya_2.png" user-agent="TNAgexpl212C" group-title="General",Watania 2 (400p) [Not 24/7] -#EXTVLCOPT:http-user-agent=TNAgexpl212C -http://217.182.137.206/tunisie2.m3u8 diff --git a/channels/tr.m3u b/channels/tr.m3u deleted file mode 100644 index 93ecafdcc..000000000 --- a/channels/tr.m3u +++ /dev/null @@ -1,471 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8FO41es.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",24 TV (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/kanal24/smil:kanal24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8FO41es.png" group-title="",24 TV (1080p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/134.m3u8 -#EXTINF:-1 tvg-id="360TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",360 TV (720p) [Not 24/7] -https://turkmedya-live.ercdn.net/tv360/tv360.m3u8 -#EXTINF:-1 tvg-id="AALive.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",AA Live (720p) [Not 24/7] -http://mtulqxgomrllive.mediatriple.net/mtulqxgomrllive/broadcast_59f9c0c785b88.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AfyonTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/tXbD8Sz/8A1HOMZ.png" group-title="",Afyon Türk TV (720p) -https://5be5d840359c6.streamlock.net/afyonturktv/afyonturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="AkitTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/zG7NM55/Jagn7PG.png" group-title="",Akit TV (720p) -https://akittv-live.ercdn.net/akittv/akittv.m3u8 -#EXTINF:-1 tvg-id="AKSUTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",AKSU TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/aksutv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="AlZahraTVTurkic.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/1LGHMzQ/lwkowCS.png" group-title="",Al-Zahra TV Turkic (720p) [Not 24/7] -https://live.al-zahratv.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="AlanyaPostaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Alanya Posta TV (1080p) -http://win4.yayin.com.tr/postatv/postatv/playlist.m3u8 -#EXTINF:-1 tvg-id="ALTASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ALTAS TV (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/altastv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ALTASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ALTAŞ TV (720p) [Not 24/7] -https://broadcasttr.com:446/altastv/bant1/index.m3u8 -#EXTINF:-1 tvg-id="ARASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ARAS TV (576p) [Not 24/7] -http://1.rtmp.org/tv217/yayin.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATVAlanya.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/Jo6DJUe.png" group-title="",ATV Alanya (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/alanyatv/alanyatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BENGUTURKTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",BENGÜTÜRK TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/benguturk/index.m3u8 -#EXTINF:-1 tvg-id="BeratTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Berat TV (720p) [Not 24/7] -http://cdn-berattv.yayin.com.tr/berattv/berattv/playlist.m3u8 -#EXTINF:-1 tvg-id="BesiktasWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/bRhnM6W/qti5aea.png" group-title="",Beşiktaş Web TV (360p) -https://s01.vpis.io/besiktas/besiktas.m3u8 -#EXTINF:-1 tvg-id="BeyazTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Msq17kK/beyaztv.png" group-title="",Beyaz TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/beyaztv/index.m3u8 -#EXTINF:-1 tvg-id="BeyazTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Msq17kK/beyaztv.png" group-title="",Beyaz TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/87 -#EXTINF:-1 tvg-id="BodrumBelediyesiWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Bodrum Belediyesi Web TV (720p) -https://win2.yayin.com.tr/bodrumbeltv/bodrumbeltv/playlist.m3u8 -#EXTINF:-1 tvg-id="BRTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",BRTV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/brtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Bursa AS TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/astv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9gta3PU.png" group-title="",Bursa TV (720p) [Not 24/7] -https://cdn-bursatv.yayin.com.tr/bursatv/bursatv/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9gta3PU.png" group-title="",Bursa TV (720p) [Not 24/7] -https://win1.yayin.com.tr/bursatv/bursatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qdBr2fH/kgwc6oT.jpg" group-title="",Can TV (720p) -http://canbroadcast.com:7000/canlican/tv.m3u8 -#EXTINF:-1 tvg-id="CanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qdBr2fH/kgwc6oT.jpg" group-title="",Can TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/105.m3u8 -#EXTINF:-1 tvg-id="CANTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",CAN TV (720p) [Not 24/7] -http://176.10.117.18:8000/play/a004/index.m3u8 -#EXTINF:-1 tvg-id="CayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/80d40Qb/e2K5ixJ.png" group-title="",Cay TV (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/caytv/bant1/CAYTV.m3u8 -#EXTINF:-1 tvg-id="CekmekoyTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/sjAGFWu.png" group-title="",Cekmeköy TV (1080p) -https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv/playlist.m3u8 -#EXTINF:-1 tvg-id="CemTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/20140406/001300/001300000008479048/646fea6f-1ac6-4ce1-9975-de445f45d28b.png" group-title="",Cem TV (576p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/104.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/ciftcitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (1080p) [Not 24/7] -http://stream.taksimbilisim.com:1935/ciftcitv/smil:ciftcitv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (720p) [Not 24/7] -https://waw1.artiyerelmedya.net/ciftcitv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="Cine5TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Cine5 TV (720p) [Geo-blocked] -https://host.onlineradyotv.net:1936/cine5/cine5/playlist.m3u8 -#EXTINF:-1 tvg-id="CRITürkBelgesel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/xXjjbq6/yhzxKnt.png" group-title="",CRI Türk Belgesel (480p) [Offline] -http://cri.aa.net.tr:1935/belgesel/belgesel/playlist.m3u8 -#EXTINF:-1 tvg-id="DehaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deha TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/dehatv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DenizPostasiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deni̇z Postasi TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/denizpostasitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DenizPostasiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deniz Postası TV (720p) [Not 24/7] -http://waw1.artiyerelmedya.net:1935/denizpostasitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Dersim62TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://dersim62.tv/wp-content/uploads/2016/05/3v3.jpg" group-title="",Dersim62 TV (720p) -http://live.arkumedia.com:1935/dersim62tv/dersim62tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DHA.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.dha.com.tr/15648/imgs/090720181434122198539.png" group-title="",DHA (720p) [Not 24/7] -https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8 -#EXTINF:-1 tvg-id="DIMTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",DİM TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/dimtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DiyanetTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5c6e6779cfef0b613d9fedcd" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Diyanet TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_diyanet/smil:diyanet_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DRTTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/uOMuhrI.jpg" group-title="",DRT TV (720p) [Not 24/7] -https://broadcasttr.com:446/drt/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="EgeTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/DdJWGOk.jpg" group-title="",Ege Türk TV (480p) -https://5be5d840359c6.streamlock.net/egeaturktv/egeaturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="EgeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ege TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/egetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ElmasTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Elmas TV (720p) [Not 24/7] -https://5be5d840359c6.streamlock.net/elmas67tv/elmas67tv/chunklist.m3u8 -#EXTINF:-1 tvg-id="EmTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/pHlRi8m.jpg" group-title="",Em TV (486p) -https://cdn.yayin.com.tr/TVEM/TVEM/playlist.m3u8 -#EXTINF:-1 tvg-id="ErTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Er TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/ertv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ErtSahTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/J2OSHdh.png" group-title="",Ert Sah TV (720p) [Not 24/7] -http://win20.yayin.com.tr/ertsahtv/ertsahtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ErzurumWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Erzurum Web TV (720p) -https://win29.yayin.com.tr/erzurumwebtv/erzurumwebtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ETVManisa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/QKXtdkz/sOd3INg.png" group-title="",ETV Manisa (1080p) [Not 24/7] -https://broadcasttr.com:446/manisaetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Euro90Channel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Euro 90 Channel (1080p) [Not 24/7] -https://ssl4.radyotvonline.com/e90tv/e90tvlive/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroGenc.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/63pj9bF.jpg" group-title="",Euro Genc (1080p) [Not 24/7] -https://dcunilive258-lh.akamaihd.net/i/dclive_1@126972/master.m3u8 -#EXTINF:-1 tvg-id="FenerbahceTVFBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Fenerbahçe TV (FBTV) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x21oo10 -#EXTINF:-1 tvg-id="FinansTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/wBwmB1T/iY0osc7.png" group-title="",Finans Turk TV (720p) -http://live.arkumedia.com:1935/finansturktv/finansturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="GaziantepOlayTv.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Gaziantep Olay Tv (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/olaytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GencTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Genç TV (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_genc.m3u8 -#EXTINF:-1 tvg-id="GoncaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/0N5jh8z.jpg" group-title="",Gonca TV (720p) [Not 24/7] -https://broadcasttr.com:446/tuncerciftci/smil:tuncerciftci.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GRT.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",GRT (720p) -https://waw2.artiyerelmedya.net/grt/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="GRTGaziantep.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",GRT Gaziantep (720p) [Geo-blocked] -http://yerelmedya.tv:1935/grt/_definst_/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GSTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/fC3KuwT.jpg" group-title="",GSTV [Geo-blocked] -https://owifavo5.rocketcdn.com/gstv/gstv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GunesTVKibris.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Güneş TV Kibris (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_gunes.m3u8 -#EXTINF:-1 tvg-id="GuneyTVTarsus.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://www.guneytv.com.tr/img/logo.png" group-title="",Guney TV Tarsus (270p) [Offline] -http://stream2.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GuneydoguTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/JT5pp3Y.png" group-title="",Guneydoğu TV (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/gtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GuneydoguTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/JT5pp3Y.png" group-title="",Guneydoğu TV (720p) [Not 24/7] -https://broadcasttr.com:446/gtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="HaberGlobal.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5f607969cfef0b1593f28f74" group-title="",Haber Global (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/haberglobal/index.m3u8 -#EXTINF:-1 tvg-id="Haber61TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/RhPIYKu.jpg" group-title="",Haber61 TV (720p) [Not 24/7] -https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8 -#EXTINF:-1 tvg-id="Haber61.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/RhPIYKu.jpg" group-title="",Haber61 TV (720p) [Not 24/7] -https://win8.yayin.com.tr/haber61tv/smil:haber61tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HabertürkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Habertürk TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/haberturk/index.m3u8 -#EXTINF:-1 tvg-id="HabertürkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Habertürk TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/130 -#EXTINF:-1 tvg-id="HalkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/vYEnfbj.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Halk TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_halktv/smil:halktv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HunatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Hunat TV (480p) [Geo-blocked] -https://waw2.artiyerelmedya.net/hunattv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="HunatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Hunat TV (480p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/hunattv/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/aXxAz84.png" group-title="",IBB TV (1080p) -http://wowza.istweb.tv:1935/webtv/webtv_wowza1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/aXxAz84.png" group-title="",IBB TV (1080p) [Not 24/7] -https://npserver1.ibb.gov.tr/webtv/webtv_wowza1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/d0T2jfg/ibb-tv-logo-white.png" group-title="",İBB TV [Not 24/7] -rtmp://wowza.istweb.tv:1935/webtv/webtv_wowza1 -#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/d0T2jfg/ibb-tv-logo-white.png" group-title="",İBB TV (720p) [Offline] -http://wowza.istweb.tv:1935/dp/istanbul2/playlist.m3u8 -#EXTINF:-1 tvg-id="IcelTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/CGwImKv.png" group-title="",Icel TV (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/iceltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="IcelTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/CGwImKv.png" group-title="",Icel TV (720p) [Not 24/7] -https://broadcasttr.com:446/iceltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Jq49Y1g/uHAGsRk.png" group-title="",Kanal 3 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/kanal3/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Jq49Y1g/uHAGsRk.png" group-title="",Kanal 3 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal3/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal7.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/439/Image/70x46.png" group-title="",Kanal 7 (1080p) -https://live.kanal7.com/live/kanal7LiveDesktop/index.m3u8 -#EXTINF:-1 tvg-id="Kanal7.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/439/Image/70x46.png" group-title="",Kanal 7 (576p) [Not 24/7] -https://live.kanal7.com/live/kanal7LiveMobile/index.m3u8 -#EXTINF:-1 tvg-id="Kanal7Avrupa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/oHq0PKQ.jpg" group-title="",Kanal 7 Avrupa (1080p) [Not 24/7] -https://live.kanal7.com/live/kanal7AvrupaLive/index.m3u8 -#EXTINF:-1 tvg-id="Kanal12.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VOpaZcu.png" group-title="",Kanal 12 (720p) [Not 24/7] -https://waw1.artiyerelmedya.net/kanal12/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal15.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jF9bf3u.png" group-title="",Kanal 15 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal15/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal23.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200327/202003270730438110om_op.png" group-title="",Kanal 23 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal23/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal26.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/w1MUkRe.png" group-title="",Kanal 26 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal26/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal32.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal 32 (480p) [Not 24/7] -https://edge1.socialsmart.tv/kanal32/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal33.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202103/20210324/16/202103241155383682ej_op.png" group-title="",Kanal 33 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/kanal33/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal34.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gFzHUE6.png" group-title="",Kanal 34 (720p) -https://5be5d840359c6.streamlock.net/kanal34tv/kanal34tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal34.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gFzHUE6.png" group-title="",Kanal 34 (720p) [Not 24/7] -http://live.arkumedia.com:1935/kanal34tv/kanal34tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal38.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal 38 (540p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/kanal38/playlist.m3u8 -#EXTINF:-1 tvg-id="KANAL58.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",KANAL 58 (720p) [Not 24/7] -https://broadcasttr.com:446/kanal58/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal68.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gx7m6Fz.jpg" group-title="",Kanal 68 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal68/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalAvrupa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/56/K_AVRUPA_LOGO.png" group-title="",Kanal Avrupa (1080p) [Not 24/7] -http://51.15.2.151/hls/kanalavrupa.m3u8 -#EXTINF:-1 tvg-id="KanalB.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal B (480p) [Not 24/7] -http://212.174.58.161/hls-live/livepkgr/_definst_/liveevent/kanalb.m3u8 -#EXTINF:-1 tvg-id="KanalD.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/66.m3u8 -#EXTINF:-1 tvg-id="KanalD.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D (540p) [Offline] -https://2122248074.duhnet.tv/S2/HLS_LIVE/kanaldnp/track_3_750/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalDRomania.tr" tvg-country="RO" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D Romania (384p) [Not 24/7] -https://stream1.kanald.ro/iphone/live.m3u8 -#EXTINF:-1 tvg-id="KanalFirat.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/QhfTGyS.jpg" group-title="",Kanal Firat (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanalfirat/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalT.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal T (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_kanalt.m3u8 -#EXTINF:-1 tvg-id="KanalUrfa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/lACpflT.png" group-title="",Kanal Urfa (576p) [Not 24/7] -https://broadcasttr.com:446/kanalurfa/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/fileEntity/20170221/001300/001300000002742527/d3cdff38-e389-49f1-a54c-63f9bf4194aa.png" group-title="",Kanal V (720p) [Not 24/7] -http://yerelmedya.tv:1935/kanalv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalZ.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/elAlSno.png" group-title="",Kanal Z (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/kanalz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KardelenTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kardelen TV [Offline] -http://cdn1.streamencoding.com:1935/kardelen_live/HD/playlist.m3u8 -#EXTINF:-1 tvg-id="KayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kay TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/kaytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kay TV (256p) [Not 24/7] -http://yayin3.canlitv.com:1935/canlitv/kaytv/playlist.m3u8 -#EXTINF:-1 tvg-id="KentTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://yerelmedya.tv/logosTV/38kenttv.png" group-title="",Kent Türk (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/38kenttv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KRTTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",KRT TV (1080p) [Offline] -http://live1.krttv.com.tr/show/krttv_mobil/index.m3u8 -#EXTINF:-1 tvg-id="KudusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VyTYjaH.png" group-title="",Kudüs TV (480p) [Geo-blocked] -https://yayin.kudustv.com/981680400/kudustv/playlist.m3u8 -#EXTINF:-1 tvg-id="KudusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VyTYjaH.png" group-title="",Kudüs TV (480p) [Offline] -http://yayin10.canliyayin.org/P981680400/kudustv/playlist.m3u8 -#EXTINF:-1 tvg-id="LalegulTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Lalegül TV (720p) [Not 24/7] -http://lalegultv.netmedya.net/hls/lalegultv.m3u8 -#EXTINF:-1 tvg-id="LalegulTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Lalegül TV (720p) [Not 24/7] -http://lalegultv.netmedya.net/lalegul-tv/lalegultv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LifeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Life TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/lifetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="LineTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6GNp7f8.png" group-title="",Line TV (404p) [Not 24/7] -https://broadcasttr.com:446/linetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="LuysTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Luys TV [Offline] -http://luyse.mediatriple.net/luystv/luystv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/KqWGaZ6.png" group-title="",Mar TV (480p) [Not 24/7] -http://marmaratv.canliyayin.org/P324353563/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="MarmaraTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Marmara TV (480p) [Geo-blocked] -https://yayin.marmaratv.com.tr/P324353563/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="MaviKaradeniz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MaviKaradeniz (720p) [Geo-blocked] -http://yerelmedya.tv:1935/mavikaradeniz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MaviKaradeniz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MaviKaradeniz (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/mavikaradeniz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MEDMUZIK.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="" group-title="",Med Müzik TV (1080p) [Not 24/7] -http://137.74.205.201/medmuzik/MedStream/playlist.m3u8 -#EXTINF:-1 tvg-id="MEDMUZIK.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="" group-title="",Med Müzik TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/29.m3u8 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (1080p) -https://602ccc850c9bb.streamlock.net/Medya/smil:1280.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/23 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/23.m3u8 -#EXTINF:-1 tvg-id="Mercan TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Mercan TV (720p) [Not 24/7] -http://yerelmedya.tv:1935/mercantv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MercanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Mercan TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/mercantv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MeteorolojiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/EXj5xpO.jpg" group-title="",Meteoroloji TV (720p) [Offline] -https://b01c02nl.mediatriple.net/videoonlylive/mtfgdbkwkjllolive/broadcast_5b1673b7c36b7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MilyonTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/LNcC7EH.jpg" group-title="",Milyon TV (720p) [Offline] -https://milyontv-live.ercdn.net/milyontv/milyontv_720p.m3u8 -#EXTINF:-1 tvg-id="MiskFM.tr" tvg-country="TR" tvg-language="Arabic" tvg-logo="https://www.miskfm.net/wp-content/uploads/2020/07/%D9%84%D9%88%D8%AC%D9%88.png" group-title="",Misk FM (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCrvsAwtrxZ0q31yU9JEBdWA/live -#EXTINF:-1 tvg-id="MSBCKanal2000.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MSBC Kanal 2000 (360p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/kanal-2000/playlist.m3u8 -#EXTINF:-1 tvg-id="NaturalTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/SBw828K/f460YQg.png" group-title="",Natural TV (720p) [Not 24/7] -http://broadcasttr.com:1935/naturaltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="NaturalTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://naturaltv.com.tr/sites/default/files/naturaltv-logo.png" group-title="",Natural TV (720p) [Not 24/7] -https://broadcasttr.com:446/naturaltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="NTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/28/Image/NTV.png" group-title="",NTV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/128 -#EXTINF:-1 tvg-id="NTVSpor.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",NTV Spor [Timeout] -http://46.4.193.238:8484/hls/ntvspor/playlist.m3u8 -#EXTINF:-1 tvg-id="OgunTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ogün TV (360p) -https://s01.vpis.io/ogun/ogun.m3u8 -#EXTINF:-1 tvg-id="OlayTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Olay Türk TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/olayturk/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="OlayTurkKayseri.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",OlayTürk Kayseri (720p) [Geo-blocked] -http://waw1.artiyerelmedya.net:1935/olayturk/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ONMedyaHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ON Medya Haber (720p) [Geo-blocked] -http://live.arkumedia.com:1935/marmaratv/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="On4TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/TtbYRZD/i3ua14I.jpg" group-title="",On4 TV (1080p) [Not 24/7] -http://yayin.netradyom.com:1935/live/on4/playlist.m3u8 -#EXTINF:-1 tvg-id="OncuTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/TGPNYrD.jpg" group-title="",Öncü TV (1024p) [Not 24/7] -https://broadcasttr.com:446/oncurtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="PetraTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Petra TV (1080p) [Not 24/7] -http://tt61.mine.nu/live/PetraTV/Fw99Gpq7Gq/6478.m3u8 -#EXTINF:-1 tvg-id="PowerTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9OPoXQG.png" group-title="",Power Turk (1080p) [Not 24/7] -https://livetv.powerapp.com.tr/powerturkTV/powerturkhd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9OPoXQG.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Power Turk (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_powerturk/smil:powerturk_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/291uOcR.png" group-title="",Power TV (1080p) -https://livetv.powerapp.com.tr/powerTV/powerhd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/power_turk_tr_tv.png" group-title="",PowerTürk TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/powerturktv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="RehberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Rehber TV (720p) [Not 24/7] -http://rehbertv.canliyayin.org/P871000884/rehbertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SabanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Şaban TV (720p) [Geo-blocked] -http://145.239.37.125:20458/sabantv3/sabantv3/playlist.m3u8 -#EXTINF:-1 tvg-id="SamsunCanliHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Samsun Canli Haber TV (720p) [Not 24/7] -https://cdn-samsuncanlihabertv.yayin.com.tr/samsuncanlihabertv/samsuncanlihabertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SariyerTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sarıyer TV (360p) -http://s01.vpis.io/sariyer/sariyer.m3u8 -#EXTINF:-1 tvg-id="Sat7Pars.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sat7 Pars (720p) -https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Sat7Turk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/cKQIK4i.png" group-title="",Sat7 Türk (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SatrancTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Satranç TV (480p) [Not 24/7] -http://139.162.182.79/live/test/index.m3u8 -#EXTINF:-1 tvg-id="SemerkandTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/WD0JaKP.png" group-title="",Semerkand TV (720p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtisvwurbfcyslive/broadcast_58d915bd40efc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Show Türk TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_showturk/showturk_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/q0jrHyZ/show.png" group-title="",Show TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/showtv/index.m3u8 -#EXTINF:-1 tvg-id="Sinema1001.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sinema 1001 (1080p) [Offline] -http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Turkish/8b8823ce5525d9b.m3u8 -#EXTINF:-1 tvg-id="SinopYildizTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/qk102lK.png" group-title="",Sinop Yildiz TV (360p) -https://s01.vpis.io/sinopyildiz/sinopyildiz.m3u8 -#EXTINF:-1 tvg-id="SportsTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/tGTVcVe.jpg" group-title="Sports",Sports TV (720p) [Geo-blocked] -https://live.sportstv.com.tr/hls/low/sportstv.m3u8 -#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.startv.com.tr/assets/images/content/logo.png" group-title="",Star TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.dailymotion.com/video/x729whv -#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/FKfPTrd/star-tv.png" group-title="",Star TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/69 -#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/FKfPTrd/star-tv.png" group-title="",Star TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/69.m3u8 -#EXTINF:-1 tvg-id="SterkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sterk TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/24.m3u8 -#EXTINF:-1 tvg-id="SunRTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sun RTV (720p) [Not 24/7] -https://tr.socialsmart.tv/suntv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="TarsusGuneyTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Tarsus Güney TV (270p) [Offline] -http://stream.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Tay TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_taytv/smil:taytv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="teve2.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",teve2 (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_teve2/smil:teve2_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/VvjSpv8/Tj2G5lV.png" group-title="",TGRT Belgesel TV (576p) -https://tv.ensonhaber.com/tv/tr/tgrtbelgesel/index.m3u8 -#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/VvjSpv8/Tj2G5lV.png" group-title="",TGRT Belgesel TV (288p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe462afc6a0e.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGRTEU.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da8ee" group-title="",TGRT EU (576p) -https://tv.ensonhaber.com/tv/tr/tgrteu/index.m3u8 -#EXTINF:-1 tvg-id="TGRTHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/59f19761cfef0b221f7da8ea" group-title="News",TGRT Haber (360p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe4598be8e5d.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ThaqalaynTV.tr" tvg-country="TR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qlfjzN1.png" group-title="Religious",Thaqalayn TV (720p) [Not 24/7] -https://live.thaqalayn.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="TonTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ton TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/tontv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="ToprakTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Toprak TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/topraktv/playlist.m3u8 -#EXTINF:-1 tvg-id="TorbaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Torba TV (1080p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/torbatv/playlist.m3u8 -#EXTINF:-1 tvg-id="TR24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TR24 TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/24tv/index.m3u8 -#EXTINF:-1 tvg-id="TRT1.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/OoONVyI.png" group-title="",TRT 1 (720p) [Geo-blocked] -https://tv-trt1.medya.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRT1.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/OoONVyI.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TRT 1 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_trt1/smil:trt1_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRT2.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5c6fb96bcfef0b613da060f6" group-title="",TRT 2 [Geo-blocked] -https://tv-trt2.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRT3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/r41SGOT.png" group-title="",TRT 3 (720p) [Offline] -https://tv-trt3.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTArabi.tr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.ibb.co/HTzkq9P/iJIHMq9.png" group-title="News",TRT Arabi (720p) [Not 24/7] -https://tv-trtarabi.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTArabi.tr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.ibb.co/HTzkq9P/iJIHMq9.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="News",TRT Arabi̇ (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_trtarapca/smil:trtarapca_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTAvaz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/56kyxmQ/05zMtgQ.png" group-title="",TRT Avaz (720p) -https://tv-trtavaz.medya.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTBelgesel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9lW0TV2.png" group-title="",TRT Belgesel (720p) -https://tv-trtbelgesel.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTCocuk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/c1zC46V/idYZDje.jpg" group-title="Kids",TRT Çocuk (720p) -https://tv-trtcocuk.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTDiyanet.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TRT Diyanet (1080p) -https://eustr73.mediatriple.net/videoonlylive/mtikoimxnztxlive/broadcast_5e3bf95a47e07.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTEBAIlkokul.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Ilkokul (720p) [Offline] -https://tv-e-okul00.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTEBALise.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Lise (720p) [Offline] -https://tv-e-okul02.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTEBAOrtaokul.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Ortaokul (720p) [Offline] -https://tv-e-okul01.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/3pKN9gx/BYsl7Nc.jpg" group-title="News",TRT Haber (720p) [Offline] -https://tv-trthaber.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTKurdi.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="https://i.ibb.co/bB4yG1Y/cWIvunZ.png" group-title="",TRT Kurdî (720p) [Offline] -https://tv-trtkurdi.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTMuzik.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/59f19761cfef0b221f7da94b" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TRT Muzik (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_trtmuzik/smil:trtmuzik_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTSpor.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/N2wGZyf.png" group-title="",TRT Spor [Offline] -https://tv-trtspor1.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Br1knP7/R8SJH2m.png" group-title="",TRT Türk (720p) [Offline] -https://tv-trtturk.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTWorld.tr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.ibb.co/phw4pjP/mjTjJ1N.png" group-title="News",TRT World (720p) [Not 24/7] -https://tv-trtworld.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TV8.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/428/Image/70x46_tv8hd.png" group-title="",TV 8 (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/74.m3u8 -#EXTINF:-1 tvg-id="TV85.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5924449cd6f439663be1e725" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TV 8.5 (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_tv8_5/smil:tv8_5_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV35.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/XRX9fGi.png" group-title="",TV 35 (720p) [Offline] -https://59cba4d34b678.streamlock.net/canlitv/tv35/playlist.m3u8 -#EXTINF:-1 tvg-id="TV38.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/KDBXLqn.png" group-title="",TV 38 (360p) [Not 24/7] -https://59cba4d34b678.streamlock.net/live/tv38/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Geo-blocked] -https://waw1.artiyerelmedya.net/tv41/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/bant1/TV41.m3u8 -#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/smil:tv41.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV52.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jt92HbR.jpg" group-title="",TV 52 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv52/smil:tv52.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV52.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jt92HbR.jpg" group-title="",TV 52 (720p) [Not 24/7] -https://broadcasttr.com:446/tv52/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDen.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/PFWOkNh.png" group-title="",TV Den (576p) [Not 24/7] -http://canli.tvden.com.tr/hls/live.m3u8 -#EXTINF:-1 tvg-id="TVEm.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV Em (486p) -http://cdn-tvem.yayin.com.tr/TVEM/TVEM/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEm.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV Em (486p) -https://cdn.yayin.com.tr/TVEM/TVEM/chunklist.m3u8 -#EXTINF:-1 tvg-id="TV4.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://orsatek.tv/wp-content/uploads/2017/03/logo_tv4-1.png" group-title="",TV4 (720p) -https://turkmedya-live.ercdn.net/tv4/tv4_720p.m3u8 -#EXTINF:-1 tvg-id="TV8.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/428/Image/70x46_tv8hd.png" group-title="",TV8 (576p) [Not 24/7] -http://62.112.9.63:88/TV8_TR/index.m3u8?token=test -#EXTINF:-1 tvg-id="TV24.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TV24 (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_kanal24/smil:kanal24_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV41 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/tv41/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="tv100.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=8jEXHzMTR7s -#EXTINF:-1 tvg-id="tv100.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 (720p) [Not 24/7] -https://livex458745.livestreamlive.xyz/tv100.m3u8 -#EXTINF:-1 tvg-id="tv100Ekonomi.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 Ekonomi (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=32enbX7XKnw -#EXTINF:-1 tvg-id="UcanKusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qF8Rstv/0PTAYbs.jpg" group-title="",UçanKuş TV (720p) -https://ucankus-live.cdnnew.com/ucankus/ucankus.m3u8 -#EXTINF:-1 tvg-id="UcanKusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qF8Rstv/0PTAYbs.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",UçanKuş TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_ucankus/ucankus_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UlkeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Ulke_TV_TR_logo.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Ülke TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://mn-nl.mncdn.com/blutv_ulketv/smil:ulketv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UniversiteTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Üniversite TV (720p) [Not 24/7] -https://5be5d840359c6.streamlock.net/unitv/unitv/playlist.m3u8 -#EXTINF:-1 tvg-id="UUTVUskudarUniversitesiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ÜÜ TV Üsküdar Üniversitesi TV (1080p) [Not 24/7] -http://uskudarunv.mediatriple.net/uskudarunv/uskudar2/playlist.m3u8 -#EXTINF:-1 tvg-id="Vizyon58TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Vizyon 58 TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/vizyon58/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="VTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/FRripYx.png" group-title="",VTV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanalv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/vuslattv/HasBahCa.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/vuslattv/playlist.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/live/vuslattv/playlist.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/vuslattv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="YeniMalatyasporTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Yeni Malatyaspor TV (720p) [Not 24/7] -https://592f1881b3d5f.streamlock.net:1443/santraltv_925/santraltv_925/playlist.m3u8 -#EXTINF:-1 tvg-id="YolTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Yol TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/107.m3u8 diff --git a/channels/tt.m3u b/channels/tt.m3u deleted file mode 100644 index 0a1b0e0bc..000000000 --- a/channels/tt.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TheIslamicNetwork.tt" tvg-country="TT" tvg-language="English" tvg-logo="https://i.imgur.com/Z2Io8n4.png" group-title="Religious",The Islamic Network (480p) [Not 24/7] -http://daruttarbiyah.srfms.com:1935/daruttarbiyah/livestream/playlist.m3u8 diff --git a/channels/tw.m3u b/channels/tw.m3u deleted file mode 100644 index 1fb3c2b92..000000000 --- a/channels/tw.m3u +++ /dev/null @@ -1,149 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CTITVAsia.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/424_144.png" group-title="",CTI TV Asia (720p) [Geo-blocked] -http://free.fullspeed.tv/query?url=https://www.youtube.com/channel/UC5l1Yto5oOIgRXlI4p4VKbw/live -#EXTINF:-1 tvg-id="FTVNews.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://en.wikipedia.org/wiki/Formosa_Television#/media/File:FTV_Show_Group.png" group-title="News",FTV News (720p) [Offline] -http://210.61.56.23/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH1ZongHeTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/1_file.jpg" group-title="Religious",GOOD TV CH1 綜合台 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech1.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH2ZhenLiTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/2_file.jpg" group-title="Religious",GOOD TV CH2 真理台 (720p) -https://live.streamingfast.net/osmflivech2.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH3ZhenQingBuLuoGeDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/3_file.jpg" group-title="Religious",GOOD TV CH3 真情部落格 短版 (720p) -https://live.streamingfast.net/osmflivech3.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH5GongXiangGuanDianDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/5_file.jpg" group-title="Religious",GOOD TV CH5 共享觀點 短版 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech5.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH6QinJinShenShiGeYinLe.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/6_file.jpg" group-title="Religious",GOOD TV CH6 親近神 詩歌音樂 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech6.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH7DaoGaoDaJunXinXi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/7_file.jpg" group-title="Religious",GOOD TV CH7 禱告大軍 信息 (720p) -https://live.streamingfast.net/osmflivech7.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH8XingFuXueTangDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/8_file.jpg" group-title="Religious",GOOD TV CH8 幸福學堂 短版 (720p) -https://live.streamingfast.net/osmflivech8.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH9AiPlusHaoYiShengDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/9_file.jpg" group-title="Religious",GOOD TV CH9 愛+好醫生 短版 (720p) -https://live.streamingfast.net/osmflivech9.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH10KaoXiangDuShuHuiDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/10_file.jpg" group-title="Religious",GOOD TV CH10 烤箱讀書會 短版 (720p) -https://live.streamingfast.net/osmflivech10.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH12WeiTaMingShi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/12_file.jpg" group-title="Religious",GOOD TV CH12 維他命施 (720p) -https://live.streamingfast.net/osmflivech12.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH13JianKangXinZhuLiuDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/13_file.jpg" group-title="Religious",GOOD TV CH13 健康新煮流 短版 (720p) -https://live.streamingfast.net/osmflivech13.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH14ZhenQingBuLuoGe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/14_file.jpg" group-title="Religious",GOOD TV CH14 真情部落格 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech14.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH15ZhenQingZhiYe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/15_file.jpg" group-title="Religious",GOOD TV CH15 真情之夜 (720p) -https://live.streamingfast.net/osmflivech15.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH16XieGuangMing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/16_file.jpg" group-title="Religious",GOOD TV CH16 葉光明 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech16.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH17DaWeiBaoSen.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/17_file.jpg" group-title="Religious",GOOD TV CH17 大衛鮑森 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech17.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH18GuoJiJiangYuan.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/18_file.jpg" group-title="Religious",GOOD TV CH18 國際講員 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech18.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH19GongXiangGuanDian.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/19_file.jpg" group-title="Religious",GOOD TV CH19 共享觀點 (720p) -https://live.streamingfast.net/osmflivech19.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH20EnDianShiFen.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/20_file.jpg" group-title="Religious",GOOD TV CH20 恩典時分 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech20.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH21HuaYuJiangYuan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/21_file.jpg" group-title="Religious",GOOD TV CH21 華語講員 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech21.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH22ZhiChangXinShiYe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/22_file.jpg" group-title="Religious",GOOD TV CH22 職場新視野 (720p) -https://live.streamingfast.net/osmflivech22.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH23KongZhongZhuRiXueShengHuo.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/23_file.jpg" group-title="Religious",GOOD TV CH23 空中主日學 生活 (720p) -https://live.streamingfast.net/osmflivech23.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH24LiuSanJiangGu.tw" tvg-country="TW" tvg-language="Chinese;Min Nan Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/24_file.jpg" group-title="Religious",GOOD TV CH24 劉三講古 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech24.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH25FuQiRenSheng.tw" tvg-country="TW" tvg-language="Chinese;Min Nan Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/25_file.jpg" group-title="Religious",GOOD TV CH25 福氣人生 (720p) -https://live.streamingfast.net/osmflivech25.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH26KongZhongZhuRiXueChaJing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/26_file.jpg" group-title="Religious",GOOD TV CH26 空中主日學 查經 (720p) -https://live.streamingfast.net/osmflivech26.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH27KongZhongShengJingXueYuan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/27_file.jpg" group-title="Religious",GOOD TV CH27 空中聖經學院 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech27.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH28XianDaiShiGe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/28_file.jpg" group-title="Religious",GOOD TV CH28 現代詩歌 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech28.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH29JingDianYinLeHe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/29_file.jpg" group-title="Religious",GOOD TV CH29 經典音樂河 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech29.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH30TianTangJingBai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/30_file.jpg" group-title="Religious",GOOD TV CH30 天堂敬拜 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech30.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH31FuYinBuDaoYinLeHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/31_file.jpg" group-title="Religious",GOOD TV CH31 福音佈道音樂會 (720p) -https://live.streamingfast.net/osmflivech31.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH32TeHuiXiLieDaoGaoYuZhuanHua.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/32_file.jpg" group-title="Religious",GOOD TV CH32 特會系列:禱告與轉化 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech32.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH33TeHuiXiLieYanJingPeiLing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/33_file.jpg" group-title="Religious",GOOD TV CH33 特會系列:研經培靈 (720p) -https://live.streamingfast.net/osmflivech33.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH36TeHuiXiLieChaoZiRanDaNengYiZhiShiFang.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/36_file.jpg" group-title="Religious",GOOD TV CH36 特會系列:超自然大能.醫治釋放 (720p) -https://live.streamingfast.net/osmflivech36.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH37TeHuiXiLieYiSeLieZhuanTi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/37_file.jpg" group-title="Religious",GOOD TV CH37 特會系列:以色列專題 (720p) -https://live.streamingfast.net/osmflivech37.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH38TeHuiXiLieQingNianTeHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/38_file.jpg" group-title="Religious",GOOD TV CH38 特會系列:青年特會 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech38.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH40JiaTing8DianDangZhuanZhuanFaXianAi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/40_file.jpg" group-title="Religious",GOOD TV CH40 家庭8點檔轉轉發現愛 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech40.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH41XingFuXueTang.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/41_file.jpg" group-title="Religious",GOOD TV CH41 幸福學堂 (720p) -https://live.streamingfast.net/osmflivech41.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH44KaoXiangDuShuHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/44_file.jpg" group-title="Religious",GOOD TV CH44 烤箱讀書會 (720p) -https://live.streamingfast.net/osmflivech44.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH45QiaTong.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/45_file.jpg" group-title="Religious",GOOD TV CH45 卡通 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech45.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH47MuZhePinDao.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/47_file.jpg" group-title="Religious",GOOD TV CH47 牧者頻道 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech47.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH49DaoGaoPinDao.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/49_file.jpg" group-title="Religious",GOOD TV CH49 禱告頻道 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech49.m3u8 -#EXTINF:-1 tvg-id="GOODTVCH50GuoJiJiangYuanZhongWenFaYin.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/50_file.jpg" group-title="Religious",GOOD TV CH50 國際講員 中文發音 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech50.m3u8 -#EXTINF:-1 tvg-id="GSTVXingFuKongJianJuJiaTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/g9FKTkv.png" group-title="Lifestyle",GSTV Gorgeous Space TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCoo-jAsJgM8z09ddlhcBlSA/live -#EXTINF:-1 tvg-id="IndigenousTV.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/RuAYuSM.png" group-title="",Indigenous TV (720p) -http://streamipcf.akamaized.net/live/_definst_/smil:liveabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBSXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://poster.starhubgo.com/Linear_channels2/808_1920x1080_HTV.png" group-title="News",TVBS新聞 [Geo-blocked] -http://seb.sason.top/sc/tvbsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="SanLiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/e/e1/SETN_logo.png" group-title="News",三立新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/sllive_fhd.m3u8 -#EXTINF:-1 tvg-id="ZhongTianXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/908.png" group-title="News",中天新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/ztxw_fhd.m3u8 -#EXTINF:-1 tvg-id="ZhongShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://new.ctv.com.tw/Cms_Data/Sites/CTV3/Themes/default/images/logo_news.png" group-title="News",中視新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/zsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="YuanZuMin.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://titv.ipcf.org.tw/images/logo.png" group-title="General",原住民電視 (720p) -http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8 -#EXTINF:-1 tvg-id="TaiShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ttv.com.tw/news/15/images/TTV-N_logo200-min.png" group-title="News",台視新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/tsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="WeiXingDianShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/weixin.png" group-title="Religious",唯心電視 (480p) -http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8 -#EXTINF:-1 tvg-id="YiDianShiXinWenTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://store-images.s-microsoft.com/image/apps.14454.9007199266706361.be7aa2de-7429-4e34-b9a4-eca9a55157c1.3eb6a511-ff23-46aa-bf3a-b8b7e7e5c808?mode=scale&q=90&h=270&w=270&background=%23FFFFFF" group-title="News",壹電視新聞台 (1080p) -http://stream.nexttv.com.tw/n001/hd/live.m3u8 -#EXTINF:-1 tvg-id="DaAi1.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://www.daai.tv/images/logo.png" group-title="General",大愛1 (720p) -https://pulltv1.wanfudaluye.com/live/tv1.m3u8 -#EXTINF:-1 tvg-id="DaAi2.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.cns.net.tw/web/upload/20141017171303RmzVY9Z.png" group-title="General",大愛2 (720p) -https://pulltv2.wanfudaluye.com/live/tv2.m3u8 -#EXTINF:-1 tvg-id="DaLiDianShi.tw" tvg-country="TW" tvg-language="Min Nan Chinese" tvg-logo="http://www.dalitv.com.tw/img/LOGOn.png" group-title="General",大立電視 (720p) -http://www.dalitv.com.tw:4568/live/dali/index.m3u8 -#EXTINF:-1 tvg-id="DongLingXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://img.news.ebc.net.tw/EbcNews/logoes/pc_logo.png" group-title="News",東森新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/dsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="DongLingCaiJingXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://img-fnc.ebc.net.tw/EbcFnc/logoes/pc_logo.png" group-title="News",東森財經新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/dscjxw_fhd.m3u8 -#EXTINF:-1 tvg-id="MinShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_01.png" group-title="General",民視 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=ms -#EXTINF:-1 tvg-id="MinShiTaiWan.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_03.png" group-title="News",民視台灣 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=tw -#EXTINF:-1 tvg-id="MinShiXinWenTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/6jbjVNy.png" group-title="News",民視新聞台 (720p) [Offline] -https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="MinShiDiYi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_02.png" group-title="General",民視第一 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=dy -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJiaoTongWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播交通委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live6/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoNeiZhengWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播內政委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live7/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoSiFaJiFaZhiWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播司法及法制委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live9/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoWaiJiaoJiGuoFangWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播外交及國防委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live8/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJiaoYuJiWenHuaWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播教育及文化委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live4/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoZhaoYeXieShang.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播朝野協商 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live10/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoSheHuiFuLiJiWeiShengHuanJingWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播社會福利及衛生環境委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live3/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJingJiWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播經濟委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live5/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoCaiZhengWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播財政委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live2/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播院會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live1/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="HuaShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/2/27/Cts_news_info.png/200px-Cts_news_info.png" group-title="News",華視新聞資訊 [Geo-blocked] -http://seb.sason.top/sc/hsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="HuaZhangWeiShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.hwazan.org/statics/images/newhztv_logo.png" group-title="Religious",華藏衛視 (1080p) [Not 24/7] -http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 diff --git a/channels/tz.m3u b/channels/tz.m3u deleted file mode 100644 index f033cf7ef..000000000 --- a/channels/tz.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AzamSports1.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://azamtv.co.tz/tan/thumb/c/124/70/channels/channel_image1444752374.jpg" group-title="Sports",Azam Sports 1 (540p) [Offline] -https://1446000130.rsc.cdn77.org/1446000130/index.m3u8 -#EXTINF:-1 tvg-id="AzamSports2.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://azamtv.co.tz/tan/thumb/c/124/70/channels/channel_image1508329528.png" group-title="Sports",Azam Sports 2 (540p) [Offline] -https://1326605225.rsc.cdn77.org/1326605225/index.m3u8 -#EXTINF:-1 tvg-id="ChannelTen.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSlgi36jeSD2_aTBenoZYVRo53N_WjRVK9EcA&usqp=CAU" group-title="",Channel Ten (240p) [Not 24/7] -http://hls-pull-switchinternational.speedws.com/live/test1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBNTV.tz" tvg-country="TZ" tvg-language="English" tvg-logo="https://i.imgur.com/Wf2BlTG.png" group-title="Religious",IBN TV (360p) -http://138.68.138.119:8080/low/5a8993709ea19/index.m3u8 diff --git a/channels/ua.m3u b/channels/ua.m3u deleted file mode 100644 index fabc8f2ef..000000000 --- a/channels/ua.m3u +++ /dev/null @@ -1,271 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1Plus1Sport.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/VpBVorp.png" group-title="",1+1 Спорт (720p) [Not 24/7] -https://live-k2301-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (1080p) -http://95.67.106.10/hls/nta_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (720p) -http://95.67.106.10/hls/nta_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (576p) -http://95.67.106.10/hls/nta_ua_low/index.m3u8 -#EXTINF:-1 tvg-id="7kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/nJvGdoj.jpg" group-title="",7 канал (720p) -https://cdn10.live-tv.od.ua:8083/7tvod/7tvod/playlist.m3u8 -#EXTINF:-1 tvg-id="7kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/nJvGdoj.jpg" group-title="",7 канал (Одесса) (720p) -https://cdn10.live-tv.od.ua:8083/7tvod/7tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="24Kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",24 Канал (1080p) -http://streamvideol1.luxnet.ua/news24/news24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="24Kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",24 Канал (1080p) -http://streamvideol1.luxnet.ua/news24/smil:news24.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="34kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",34 канал (576p) [Not 24/7] -http://streamvideol.luxnet.ua/34ua/34ua.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="100News.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/11llLr1.jpg" group-title="News",100% News (576p) -http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8 -#EXTINF:-1 tvg-id="ATR.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/ysvDr1D.jpg" group-title="",ATR (504p) -http://stream.atr.ua/atr/live/index.m3u8 -#EXTINF:-1 tvg-id="BamBarBiaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LIk85IA.png" group-title="Travel",BamBarBia TV (1080p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/bbb/bbbtv-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="CNLEvropa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lozzdS7.png" group-title="Religious",CNL Европа (216p) -http://live-mobile.cdn01.net/hls-live/202E1F/default/mobile/stream_10429_3.m3u8 -#EXTINF:-1 tvg-id="DonezkTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/dHqUHfw.png" group-title="",Donezk TV (720p) [Offline] -http://stream.dn.ua/hls/stream.m3u8 -#EXTINF:-1 tvg-id="GIT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/v5J8tiS.png" group-title="",GIT (720p) -https://stream.uagit.tv/gittv.m3u8 -#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (720p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (720p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (480p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-480p/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (224p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-240p/playlist.m3u8 -#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LtQL1q9.jpg" group-title="Lifestyle",HDFashion & LifeStyle (1080p) -http://95.67.47.114/hls/hdfashion_ua.m3u8 -#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LtQL1q9.jpg" group-title="Lifestyle",HDFashion & LifeStyle (1080p) -http://95.67.47.115/hls/hdfashion_ua.m3u8 -#EXTINF:-1 tvg-id="IDFashion.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Y50tmIN.png" group-title="Lifestyle",ID Fashion (1080p) [Not 24/7] -https://idfashion.cdn-02.cosmonova.net.ua/hls/idfashion_ua.m3u8 -#EXTINF:-1 tvg-id="IHTEP.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/R06gbuT.png" group-title="",IHTEP (576p) -https://edge1.iptv.macc.com.ua/img/inter_3/index.m3u8 -#EXTINF:-1 tvg-id="Inter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0n7Bk5s.png" group-title="",Iнтер (576p) -https://edge3.iptv.macc.com.ua/img/inter_3/index.m3u8 -#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",K1 (512p) -https://edge2.iptv.macc.com.ua/life/k1_2/index.m3u8 -#EXTINF:-1 tvg-id="Kratu.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Kratu (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/kratu/kratu-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Kratu.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Kratu (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/kratu/kratu/playlist.m3u8 -#EXTINF:-1 tvg-id="Lale.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Kids",Lale (504p) -http://stream.atr.ua/lale/live/index.m3u8 -#EXTINF:-1 tvg-id="M1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.postimg.cc/SRCMK3vb/m1-ua.png" group-title="Music",M1 (720p) -http://live.m2.tv/hls2/stream.m3u8 -#EXTINF:-1 tvg-id="M2.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Music",M2 (540p) -http://live.m2.tv/hls3/stream.m3u8 -#EXTINF:-1 tvg-id="Micto.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/p7bzHf4.png" group-title="",Micto (360p) [Timeout] -http://93.78.206.172:8080/stream3/stream.m3u8 -#EXTINF:-1 tvg-id="MostVideoTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",MostVideo.TV (720p) [Not 24/7] -http://w4.mostvideo.tv/tv/ch1.m3u8 -#EXTINF:-1 tvg-id="OdessaFashion.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Lifestyle",Odessa Fashion (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/ofod/ofod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Renome.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Uy9gD3l.jpg" group-title="",Renome (576p) -http://85.238.112.40:8810/hls_sec/online/list-renome.m3u8 -#EXTINF:-1 tvg-id="Simon.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/RaVchcn.jpg" group-title="",Simon (576p) [Not 24/7] -https://hls.simon.ua/live-HD/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Skrypinua.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Skrypin.ua (1080p) [Not 24/7] -https://open-cdn.lanet.tv/live/1008.m3u8 -#EXTINF:-1 tvg-id="Sport1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wBJI5Jw.png" group-title="Sports",Sport 1 (576p) [Not 24/7] -https://95-213-224-183.livesports24.online/sport1ua.m3u8 -#EXTINF:-1 tvg-id="TravelGuideTV.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="" group-title="Travel",Travel Guide TV (720p) -https://cdn10.live-tv.od.ua:8083/leonovtv/test-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelGuideTV.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="" group-title="Travel",Travel Guide TV (720p) -https://cdn10.live-tv.od.ua:8083/leonovtv/test1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) -https://hls.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) -https://hls.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) -https://rtsp.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) -https://rtsp.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Plus.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/5qwIslT.jpg" group-title="Local",TV7+ (Хмельницький) (576p) [Not 24/7] -https://tv7plus.com/hls/tv7.m3u8 -#EXTINF:-1 tvg-id="UAOdesa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",UA: Одеса (384p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/odtrkod/odtrkod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) -http://95.67.106.242/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) -https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) -https://ua-tv-hls3.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (576p) -https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_low/index.m3u8 -#EXTINF:-1 tvg-id="UkrLive.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Ukr Live (1080p) [Not 24/7] -http://95.67.12.149:9005 -#EXTINF:-1 tvg-id="Z.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/f0nOjL8.png" group-title="",Z (Запорожье) (1080p) -https://stream.ztv.zp.ua/hls/live.m3u8 -#EXTINF:-1 tvg-id="A1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0DUi5fO.jpg" group-title="",А1 (Одесса) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/a1od/a1od-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Avtoradio.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Авторадио (720p) [Not 24/7] -https://rtmp.radiogroup.com.ua:8080/live/avto/index.m3u8 -#EXTINF:-1 tvg-id="AkademiyaOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Академия (Одесса) (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/36chod/36chod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="ArhatTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Qdgntk1.jpg" group-title="",Архат ТВ (720p) -https://arhat.tv/public/720p/index.m3u8 -#EXTINF:-1 tvg-id="BaltaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Балта ТВ (768p) -http://194.50.51.34/playlist.m3u8 -#EXTINF:-1 tvg-id="VTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/JG493Vn.png" group-title="",ВТВ (576p) -http://video.vtvplus.com.ua:81/hls/online/index.m3u8 -#EXTINF:-1 tvg-id="Glas.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Глас (576p) -http://85.238.112.69:8811/hls_sec/239.0.4.18-.m3u8 -#EXTINF:-1 tvg-id="GlassRU.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="" group-title="",Гласс (RU) (576p) [Not 24/7] -https://glas.org.ua/hls/glassru.m3u8 -#EXTINF:-1 tvg-id="GlassUA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Гласс (UA) (576p) [Not 24/7] -https://glas.org.ua/hls/glassua.m3u8 -#EXTINF:-1 tvg-id="DonbasOnline.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Донбас Online (1080p) [Not 24/7] -http://176.110.1.30:1935/live/donbasonline/playlist.m3u8 -#EXTINF:-1 tvg-id="DumskayaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Думская ТВ (1080p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/dumska/dumska-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Zdorove.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Здоровье (504p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/zdorovood/zdorovo/playlist.m3u8 -#EXTINF:-1 tvg-id="IzmailTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/mpMjj7o.png" group-title="",Измаил ТВ (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/izod/izod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="IzmailTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/mpMjj7o.png" group-title="",Измаил ТВ (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/izod/izod/playlist.m3u8 -#EXTINF:-1 tvg-id="Inter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0n7Bk5s.png" group-title="",Интер (512p) [Not 24/7] -http://109.68.40.67/img/inter_2/index.m3u8 -#EXTINF:-1 tvg-id="IRT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ИРТ (Днепр) (576p) [Not 24/7] -http://91.193.128.233:1935/live/irt.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Inshiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Інший (720p) -https://cdn1.live-tv.od.ua:8083/ktkod/ktkod/playlist.m3u8 -#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",К1 (576p) -http://109.68.40.67/life/k1.m3u8 -#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",К1 (576p) -http://edge3.iptv.macc.com.ua/life/k1_3/index.m3u8 -#EXTINF:-1 tvg-id="Krug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/krugod/krugod/playlist.m3u8 -#EXTINF:-1 tvg-id="Krug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="LanetTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Ланет.TV (486p) -http://kiev1-cdn.lanet.tv/live/1008.m3u8 -#EXTINF:-1 tvg-id="NadiyaNovyykanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Надия/Новый канал (576p) [Not 24/7] -http://nadiya.home-net.com.ua/mob/mystream.m3u8 -#EXTINF:-1 tvg-id="Nadiya.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="",Надія (720p) [Not 24/7] -https://stream.hope.ua/hopeua/live_1/playlist.m3u8 -#EXTINF:-1 tvg-id="NLOTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",НЛО ТВ (576p) [Geo-blocked] -https://xx001.vivat.live/t-0301.0f6f.d/sd/00047/2m/index.m3u8 -#EXTINF:-1 tvg-id="NTK.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",НТК (1080p) [Not 24/7] -https://stream.ntktv.ua/s/ntk/ntk.m3u8 -#EXTINF:-1 tvg-id="NTN.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ntn.png" group-title="",НТН (576p) -https://edge2.iptv.macc.com.ua/img/ntn_3/index.m3u8 -#EXTINF:-1 tvg-id="NTN.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ntn.png" group-title="",НТН (576p) [Not 24/7] -https://edge3.iptv.macc.com.ua/img/ntn_3/index.m3u8 -#EXTINF:-1 tvg-id="ObshchestvennoeNezavisimoeTelevidenie.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="http://4.bp.blogspot.com/-2jLl6rP9uB0/UWCjNwyiHqI/AAAAAAAABXA/giDBQTC3Gvw/s1600/ont3+copy.jpg" group-title="",Общественное Независимое Телевидение (576p) -http://85.238.112.40:8810/hls_sec/239.33.75.33-.m3u8 -#EXTINF:-1 tvg-id="Obektiv59.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Объектив 59 (576p) -https://hls.simon.ua/live-HD/live/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Odessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://mediacast.tv/wp-content/uploads/2018/03/pershui-dilovyi.png" group-title="",Одесса (576p) [Geo-blocked] -https://cdn1.live-tv.od.ua:8083/riood/riood-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Odessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://mediacast.tv/wp-content/uploads/2018/03/pershui-dilovyi.png" group-title="",Одесса (576p) [Geo-blocked] -https://cdn1.live-tv.od.ua:8083/riood/riood/playlist.m3u8 -#EXTINF:-1 tvg-id="OrbitaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Орбіта ТВ (360p) [Not 24/7] -http://ftp.orbita.dn.ua/hls/orbita.m3u8 -#EXTINF:-1 tvg-id="OTVDnepr.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ОТВ (Днепр) (576p) -http://91.193.128.233:1935/live/otv.stream_576p/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyygorodskoyKrivoyRog.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="http://big-tv.org/uploads/posts/2017-11/thumbs/1510692123_pervyy-gorodskoy-krivoy-rog.png" group-title="",Первый городской (Кривой Рог) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyGorodskoyKrivoyRog.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Кривой Рог) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (576p) -http://91.194.79.46:8081/stream2/channel2/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (504p) -https://cdn1.live-tv.od.ua:8083/1tvod/1tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (504p) -https://cdn1.live-tv.od.ua:8083/1tvod/1tvod/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyygorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://sun9-18.userapi.com/c639227/v639227583/45ae7/tw3dA0ptuXI.jpg" group-title="",Первый городской (Одесса) (1080p) [Not 24/7] -http://91.194.79.46:8081/stream1/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (720p) -http://95.67.127.156/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (720p) -http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (576p) [Not 24/7] -http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="PershiyDiloviy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Діловий (720p) -http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PershiyDiloviy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Діловий (576p) -http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="PershiyZahidniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Західний (Львов) (576p) -http://hls.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="PershiyZahidniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Західний (Львов) (576p) -http://rtmp.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) -https://app.live.112.events/hls/112hd_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) -https://app.live.112.events/hls/112hd_mid/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) [Not 24/7] -http://app.live.112.events/hls-ua/112hd_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) [Timeout] -https://app.live.112.events/hls-ua/112hd_mid/index.m3u8 -#EXTINF:-1 tvg-id="PravdaTUT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ПравдаТУТ (720p) -http://95.67.17.131/hls/pravdatytkievshina_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PravdaTUT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ПравдаТУТ (720p) -http://pravdatytkievshina-hls2.cosmonova.net.ua/hls/pravdatytkievshina_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (720p) -http://95.67.21.100/hls/prm_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (720p) -http://prm-hls1.cosmonova.net.ua/hls/prm_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (576p) -http://prm-hls1.cosmonova.net.ua/hls/prm_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="RadioLyuks.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.i.ua/radio/logo/1/161.jpg" group-title="",Радио Люкс (1080p) -https://stream1.luxnet.ua/luxstudio/smil:luxstudio.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Reporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Репортер (720p) [Not 24/7] -http://cdn1.live-tv.od.ua:8081/31chod/31chod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Reporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Репортер (720p) [Not 24/7] -http://cdn1.live-tv.od.ua:8081/31chod/31chod/playlist.m3u8 -#EXTINF:-1 tvg-id="Svarozhichi.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Сварожичи (720p) -http://80.91.177.102:1935/live/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="Svarozhichi.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Сварожичи (720p) -http://tv.tv-project.com:1935/live/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (480p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt480p/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (256p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt240p/playlist.m3u8 -#EXTINF:-1 tvg-id="STB.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Av0pftd.png" group-title="",СТБ [Timeout] -http://188.35.9.11:11021/j -#EXTINF:-1 tvg-id="TVDom.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="" group-title="",ТВ Дом [Offline] -http://46.149.48.21:1234 -#EXTINF:-1 tvg-id="TVA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТВА (Чернiвцi) (576p) -http://hls.cdn.ua/tva.ua_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТВА (Чернiвцi) (576p) -http://rtsp.cdn.ua/tva.ua_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="prm.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://prm.ua/wp-content/uploads/2020/10/cropped-Favicon-1-180x180.png" group-title="",Телеканал Прямий (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCH9H_b9oJtSHBovh94yB5HA/live -#EXTINF:-1 tvg-id="TisTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Тис ТВ (480p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/riood/tisod504/playlist.m3u8 -#EXTINF:-1 tvg-id="TretiyCifrovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="http://tretiy.tv/wp-content/uploads/2017/12/logo.png" group-title="",Третий Цифровой (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/3tvod/3tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="TRKAleks.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Алекс (576p) -http://46.46.112.223/live/livestream1.m3u8 -#EXTINF:-1 tvg-id="TRKKrug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod/playlist.m3u8 -#EXTINF:-1 tvg-id="TRKReporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Репортер (480p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/31chod/31chod-sub/playlist.m3u8 -#EXTINF:-1 tvg-id="TrofeyTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/3LSDHHJ.png" group-title="",Трофей ТВ (720p) [Offline] -https://5db1ab4f970be.streamlock.net/live/smil:trofey.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Futbol1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/J1VuYAB.png" group-title="Sports",Футбол 1 (576p) [Not 24/7] -https://95-213-224-183.livesports24.online/uafootballua1.m3u8 -#EXTINF:-1 tvg-id="HersonPlyus.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://khersontv.com/wp-content/themes/hueman/img/logo.png" group-title="",Херсон Плюс (576p) -http://46.175.163.130/ks_plus/index.m3u8 -#EXTINF:-1 tvg-id="Cherniveckiypromin.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Чернівецький промінь (720p) [Not 24/7] -https://langate.tv/promin/live_720/index.m3u8 -#EXTINF:-1 tvg-id="ChPInfo.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ЧП Инфо (576p) -http://edge3.iptv.macc.com.ua/life/magnolia_3/index.m3u8 -#EXTINF:-1 tvg-id="ChPinfo.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://iptvx.one/icn/chpinfo.png" group-title="",ЧП.інфо (576p) -http://109.68.40.67/life/magnolia.m3u8 -#EXTINF:-1 tvg-id="YuzhnayaVolna.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Южная Волна (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/wave/wave-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="YuzhnayaVolnaTVOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Южная Волна ТВ (Одесса) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/wave/wave-720/playlist.m3u8 -#EXTINF:-1 tvg-id="YaTB.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ЯТБ (576p) -http://46.175.163.130/live_yatb/playlist.m3u8 diff --git a/channels/ug.m3u b/channels/ug.m3u deleted file mode 100644 index ee8ad13b3..000000000 --- a/channels/ug.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArkTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="" group-title="",Ark TV (576p) -https://arktelevision.org/hlslive/test/test.m3u8 -#EXTINF:-1 tvg-id="NBSTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="https://rndcdn.dstv.com/dstvcms/2018/07/03/NBS_logo_4-3_001_xlrg.png" group-title="",NBS TV (480p) [Not 24/7] -https://vse-cdn1-readymedia.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/5-20-hls/live.m3u8 -#EXTINF:-1 tvg-id="NBSTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="https://rndcdn.dstv.com/dstvcms/2018/07/03/NBS_logo_4-3_001_xlrg.png" group-title="",NBS TV (360p) [Not 24/7] -https://cdn1.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/10-hls/live-media.m3u8 -#EXTINF:-1 tvg-id="SaltTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="http://thedronemedia.ug/wp-content/uploads/2017/07/salt.png" group-title="Religious",Salt TV (720p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692676/master.m3u8 diff --git a/channels/uk.m3u b/channels/uk.m3u deleted file mode 100644 index 63e06854d..000000000 --- a/channels/uk.m3u +++ /dev/null @@ -1,401 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="4Music.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://d126oek9ze5bb6.cloudfront.net/uploads/2018/07/4Music_primary.png" group-title="Music",4Music (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,4music-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/4music/ -#EXTINF:-1 tvg-id="Afrobeats.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Iaey8k5.jpg" group-title="Music",Afrobeats (1080p) -https://stream.ecable.tv/afrobeats/index.m3u8 -#EXTINF:-1 tvg-id="AhlulbaytTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qLqHPhK.png" group-title="Religious",Ahlulbayt TV (1080p) [Not 24/7] -http://109.123.126.14:1935/live/livestream1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AhlulbaytTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qLqHPhK.png" group-title="Religious",Ahlulbayt TV (1080p) [Not 24/7] -https://5f3e23ac71915.streamlock.net:4434/live/livestream1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Ahwazna.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://www.ahwazna.net/uploads/2018/04/AhwaznaLogo.png" group-title="",Ahwazna (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ahwaznach -#EXTINF:-1 tvg-id="AkaalTV.uk" tvg-country="UK" tvg-language="Punjabi;English" tvg-logo="https://i.imgur.com/62IpVDn.png" group-title="Religious",Akaal TV (396p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/akaal_tv/hls1_smart_akaal/akaal_tv.m3u8 -#EXTINF:-1 tvg-id="AkaalTV.uk" tvg-country="UK" tvg-language="Punjabi;English" tvg-logo="https://i.imgur.com/62IpVDn.png" group-title="Religious",Akaal TV (360p) [Not 24/7] -http://akaal.zecast.net/akaal-live/smil:akaaltv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlarabyTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/LNI1HNi.png" group-title="News",Alaraby TV (720p) -https://alaraby.cdn.octivid.com/alaraby/smil:alaraby.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlhiwarTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ooiJwD5.png" group-title="",Alhiwar TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AnandTV.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/QMPfzzt.png" group-title="General",Anand TV (720p) -https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8 -#EXTINF:-1 tvg-id="AriseNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BlNMp0k.png" group-title="News",Arise News (576p) -https://news.ashttp9.visionip.tv/live/visiontvuk-news-arise-tv-hsslive-25f-16x9-SD/playlist.m3u8 -#EXTINF:-1 tvg-id="AriseNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BlNMp0k.png" group-title="News",Arise News (480p) -https://contributionstreams.sechls01.visionip.tv/live/visiontv-contributionstreams-arise-tv-25f-16x9-SDh/playlist.m3u8 -#EXTINF:-1 tvg-id="AwraasTV.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://www.awraas.tv/assets/img/logo.png" group-title="",Awraas TV (540p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtqtqloqdxtlive/broadcast_5cefc3677caee.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCAlba.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Alba (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_alba/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (540p) -https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 -#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (540p) -https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 -#EXTINF:-1 tvg-id="BBCEarth.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://static.epg.best/kr/BBCEarth.kr.png" group-title="",BBC Earth [Geo-blocked] -https://livecdn.fptplay.net/qnetlive/bbcearth_hls.smil/chunklist_b2500000.m3u8 -#EXTINF:-1 tvg-id="BBCFour.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/bbcfour.png" group-title="",BBC Four (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCFourHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Four HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCLifestyle.uk" tvg-country="PL" tvg-language="Polish;English" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/BBCLifestyle.png" group-title="Lifestyle",BBC Lifestyle (576p) [Geo-blocked] -https://livecdn.fptplay.net/qnetlive/bbclifestyle_2000.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Geo-blocked] -https://cdnuk001.broadcastcdn.net/KUK-BBCNEWSHD/index.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="BBCOneCambridge.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Cambridge (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_cambridge/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneChannelIslands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Channel Islands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_channel_islands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEastMidlands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East Midlands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEastYorkshire.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East Yorkshire (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_yorkshire/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneLondon.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24865/bbconelondon_colordark.png" group-title="",BBC One London (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_london/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One North East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One North West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthernIreland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Northern Ireland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthernIrelandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Northern Ireland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneOxford.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Oxford (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_oxford/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24870/bbconescotlandtv.png" group-title="",BBC One Scotland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotlandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Scotland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouth.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouthEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouthWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWales.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Wales (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWalesHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Wales HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWestMidlands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One West Midlands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneYorks.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Yorks (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_yorks/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCParliament.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24973/bbcparliamerntchannel.png" group-title="",BBC Parliament (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_parliament/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (540p) -https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (540p) -https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (360p) [Not 24/7] -http://159.69.58.154/bbc/master.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24907/bbcredbutton_colordark.png" group-title="",BBC Red Button 1 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_01.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 2 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_02.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton3.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 3 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_03.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton4.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 4 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_04.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton5.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 5 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_05.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton6.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 6 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_06.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton7.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 7 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_07.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton8.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 8 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_08.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton9.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 9 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_09.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton10.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 10 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_10.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton11.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 11 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_11.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton12.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 12 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_12.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton13.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 13 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_13.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton14.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 14 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_14.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton15.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 15 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_15.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton16.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 16 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_16.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton17.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 17 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_17.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton18.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 18 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_18.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton19.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 19 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_19.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton20.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 20 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_20.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton21.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 21 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_21.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton22.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 22 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_22.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton23.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 23 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_23.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton24.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 24 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_24.m3u8 -#EXTINF:-1 tvg-id="BBCScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Scotland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCScotlandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Scotland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/content/x=3/v=pv14/b=5070016/t=3840/i=urn:bbc:pips:service:bbc_scotland_hd/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoEngland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two England (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCTwoHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoNorthenIreland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Northen Ireland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCTwoNorthernIrelandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Northern Ireland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoWales.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Wales (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_wales_digital/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCUHDTrial1.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 1 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_01.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 2 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_02.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial3.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 3 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_03.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial4.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 4 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_04.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial5.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 5 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_05.mpd -#EXTINF:-1 tvg-id="BBCWorldNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/Nx0BRdV.png" group-title="News",BBC World News (576p) -http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8 -#EXTINF:-1 tvg-id="BBCWorldNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/Nx0BRdV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",BBC World News (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s24/index.m3u8 -#EXTINF:-1 tvg-id="BoxHits.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://tvepg.eu/img/united_kingdom/logo/box_hits.png" group-title="Music",Box Hits (576p) -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/boxhits/ -#EXTINF:-1 tvg-id="BoxHits.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://tvepg.eu/img/united_kingdom/logo/box_hits.png" group-title="Music",Box Hits (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/boxhits/ -#EXTINF:-1 tvg-id="BritAsiaLiveUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BPS22GM.png" group-title="",Brit Asia Live (US Eastern) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0500/c.m3u8 -#EXTINF:-1 tvg-id="BritAsiaLiveUSPacific.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BPS22GM.png" group-title="",Brit Asia Live (US Pacific) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0800/c.m3u8 -#EXTINF:-1 tvg-id="BritishMuslimTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://www.britishmuslim.tv/images/BMTV_Identity.svg" group-title="Religious",British Muslim TV (576p) [Not 24/7] -https://api.visionip.tv/live/ASHTTP/visiontvuk-international-britishmuslimtv-hsslive-25f-16x9-MB/playlist.m3u8 -#EXTINF:-1 tvg-id="BTSport1.uk" tvg-country="UK" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",BT Sport 1 (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://sport.livedoomovie.com/02_BTSPORTHD_1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="BTSport2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",BT Sport 2 (576p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://sport.livedoomovie.com/02_BTSPORTHD_2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="CBBC.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/bbcthree.png" group-title="",CBBC (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="CBBCHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBBC HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="CBeebies.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBeebies (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="CBeebiesHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBeebies HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="ChannelS.uk" tvg-country="UK;IE;BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/TjVJT22.png" group-title="Local",Channel S (720p) [Not 24/7] -https://a.jsrdn.com/r-373576a3/publish/22679_24MrQma9TX/index.m3u8 -#EXTINF:-1 tvg-id="ChannelS.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="https://www.chsuk.tv/img/cateringcircle.png" group-title="Local",Channel S (576p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/chsukoff.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelSUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hJxFLvF.png" group-title="",Channel S (US Eastern) (720p) -https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0500/c.m3u8 -#EXTINF:-1 tvg-id="ChannelSUSPacific.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hJxFLvF.png" group-title="",Channel S (US Pacific) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0800/c.m3u8 -#EXTINF:-1 tvg-id="ChelseaTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Chelsea TV (576p) -http://c0.cdn.trinity-tv.net/stream/hujuv8xpr4gdugis2szd4rqrvpzip8iuwn2jwpt68wmvpmdz79qime8idwrxga95rnghp64hfimevyvrp6n7p3c52yg3rfsuhxe9u9az35ti8te625sxerfwaxr2cbefyau4tmfa4nwqvca6ckmtwv2=.m3u8 -#EXTINF:-1 tvg-id="CraftStoreTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://thecraftstore.com/Styles/craft_store_logo.svg" group-title="Shop",Craft Store TV (720p) -https://live-hochanda.simplestreamcdn.com/hochanda/live.m3u8 -#EXTINF:-1 tvg-id="Cruise1stTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/q50kqOG.jpg" group-title="Shop",Cruise1st TV (396p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/cruise_tv/hls_video/index.m3u8 -#EXTINF:-1 tvg-id="DeenTV.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://deentv.uk/wp-content/uploads/2021/08/cropped-DEEN-TV-LOGO-FINAL-80x80-1.png" group-title="General",Deen TV (576p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deentv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) [Offline] -https://csm-e-stv.tls1.yospace.com/csm/live/195300285.m3u8 -#EXTINF:-1 tvg-id="EDGEsports.uk" tvg-country="US" tvg-language="English" tvg-logo="https://static1.squarespace.com/static/5a6f534f017db2d628751be1/t/5a6f5557652deada67290f54" group-title="Sports",EDGEsport (1080p) [Offline] -https://imgedge.akamaized.net/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EmanChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/NWljgKa.png" group-title="Religious",Eman Channel (576p) -https://ap02.iqplay.tv:8082/iqb8002/3m9n/playlist.m3u8 -#EXTINF:-1 tvg-id="EnglishClubTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://ocdn.eu/images/program-tv/NTU7MDA_/e7114237dc0731c7dd660c32d6822432.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",English Club TV (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s37/index.m3u8 -#EXTINF:-1 tvg-id="FadakTV.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/13/FadakTV.png" group-title="Religious",Fadak TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/ddrricky/live -#EXTINF:-1 tvg-id="FadakTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/P72KE0t.png" group-title="Religious",Fadak TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBgM-sKkB4ySrdiCsk0ikUA/live -#EXTINF:-1 tvg-id="FreeSports.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/595831-freesports.jpg" group-title="Sports",FreeSports (1080p) [Not 24/7] -https://csm-e-stv.tls1.yospace.com/csm/live/203444271.m3u8 -#EXTINF:-1 tvg-id="GarshomTV.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="" group-title="",Garshom TV (360p) [Not 24/7] -http://og2qd3aal7an-hls-live.5centscdn.com/garshomtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="GBNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.gbnews.uk/view-resources/dachser2/public/gbnews/logo.svg" group-title="News",GB News (1080p) -https://live-gbnews.simplestreamcdn.com/gbnews/gbnews/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="GemsTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/9fJlCNW.png" group-title="Shop",Gems TV (360p) -http://57d6b85685bb8.streamlock.net:1935/abrgemporiaukgfx/livestream_360p/index.m3u8 -#EXTINF:-1 tvg-id="GodTVUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://ocdn.eu/program-tv-transforms/1/dXCktlEYWRtL2IzNzk5OGMwYTExODlhNWNmYzA4ZWY5OTQwNTllNTQ4N2Q3N2U2Y2RkMWVlMTIxMGU4NTRmYjdiYzllNmNmNjKSlQJkAMLDlQIAKMLD" group-title="Religious",God TV UK (720p) -https://zypelive-lh.akamaihd.net/i/default_1@745545/master.m3u8 -#EXTINF:-1 tvg-id="GodTV.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZMYRG9h.jpg" group-title="Religious",God TV US (720p) -https://zypelive-lh.akamaihd.net/i/default_1@710958/master.m3u8 -#EXTINF:-1 tvg-id="HalaLondon.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://i.imgur.com/BVJWUpc.png" group-title="",Hala London (1080p) -https://halaldn.cdn.mangomolo.com/halavd/smil:halavd.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HealthMedia.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Health Media (720p) [Not 24/7] -https://j78dpkrjlq5r-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseCountryTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://horseandcountry.tv/wp-content/themes/hctv/img/hc_logo_header.png" group-title="Outdoor",Horse & Country TV (1080p) -https://hnc-free-viewlift.amagi.tv/HNC_AUSTRALIA.m3u8 -#EXTINF:-1 tvg-id="IdealWorldTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.idealworld.tv/gb/common/images/Cms/Header/iw-square.jpg" group-title="Shop",Ideal World TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/IdealworldTvShopping/live -#EXTINF:-1 tvg-id="IonTV.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://www.iontv.co.uk/wp-content/uploads/thegem-logos/logo_5052020503c1c4324dda9918122bbb46_2x.png" group-title="General",iON TV (576p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/iontvuk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraBangla.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/GK5BlnN.jpg" group-title="Religious",Iqra Bangla (576p) -https://ap02.iqplay.tv:8082/iqb8002/iq53la/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://iqra.tv/wp-content/uploads/2019/12/IQ-logo-light-120px.png" group-title="Religious",Iqra TV (576p) -https://ap02.iqplay.tv:8082/iqb8002/iq6a7k/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraaTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Iqraa TV (576p) [Geo-blocked] -http://wowzaprod3-lh.akamaihd.net/i/83372732_1@141298/master.m3u8 -#EXTINF:-1 tvg-id="IranInternational.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) -https://dev-live.livetvstream.co.uk/LS-63503-4/index.m3u8 -#EXTINF:-1 tvg-id="IranInternational.uk" tvg-country="UK" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) -https://live.playstop.me/1816184091/index.m3u8 -#EXTINF:-1 tvg-id="IranInternational.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) -https://live.playstop.me/LS-63503-4/index.m3u8 -#EXTINF:-1 tvg-id="IslamChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://simplestream-portal.s3.eu-west-1.amazonaws.com/172/642f780c-islamtv.png" group-title="Religious",Islam Channel (576p) [Not 24/7] -https://live.islamchannel.tv/islamtv/islamtv_english/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="ITV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/SsgOgRF.png" group-title="",ITV (302p) [Geo-blocked] -http://31.220.41.88:8081/live/itv1.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv2.png" group-title="",ITV2 (432p) [Geo-blocked] -http://31.220.41.88:8081/live/itv2.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv2.png" group-title="",ITV2 (576p) [Not 24/7] -http://93.190.139.35:8278/streams/d/itv2_antik/playlist.m3u8 -#EXTINF:-1 tvg-id="ITV3.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv3.png" group-title="",ITV3 (432p) [Geo-blocked] -http://31.220.41.88:8081/live/itv3.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV4.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv4.png" group-title="",ITV4 (302p) [Geo-blocked] -http://31.220.41.88:8081/live/itv4.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="JewelleryMaker.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/azSptPw.png" group-title="Lifestyle",Jewelery Maker (1080p) -https://lo2-1.gemporia.com/abrjewellerymaker/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JimJamRossiya.uk" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a0000016a8c5ad959476a67bab7ba71792c/160x120" group-title="Kids",JimJam Россия (576p) [Not 24/7] -http://188.40.68.167/russia/jimjam/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Kalemeh TV (576p) [Not 24/7] -http://51.210.199.37/hls/stream.m3u8 -#EXTINF:-1 tvg-id="KanshiTV.uk" tvg-country="UK" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jxf9gQd.jpg" group-title="",Kanshi TV (720p) [Not 24/7] -https://live.kanshitv.co.uk/mobile/kanshitvkey.m3u8 -#EXTINF:-1 tvg-id="Kerrang.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nn2VfkP.png" group-title="",Kerrang (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kerrang/ -#EXTINF:-1 tvg-id="Kerrang.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nn2VfkP.png" group-title="",Kerrang (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/kerrang/ -#EXTINF:-1 tvg-id="Kiss.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/AqVdlpz.png" group-title="",Kiss (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,kiss-inapp.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kiss/ -#EXTINF:-1 tvg-id="kMTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.kentonline.co.uk/_assets/kmtvlogo2017_2.png" group-title="",KMTV (576p) -https://dk7psf0dh3v1r.cloudfront.net/KMTV/playlist.m3u8 -#EXTINF:-1 tvg-id="KoolLondonRadio.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://undergroundbass.co.uk/image/koollondon.png" group-title="Music",Kool London Radio (720p) [Timeout] -http://w10.streamgb.com:1935/kool/kool/playlist.m3u8 -#EXTINF:-1 tvg-id="LondonLive.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/londonlive.png" group-title="",London Live (720p) [Offline] -http://bcoveliveios-i.akamaihd.net/hls/live/217434/3083279840001/master.m3u8 -#EXTINF:-1 tvg-id="Loveworld.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6orW2BN.png" group-title="Religious",Loveworld TV (1080p) [Not 24/7] -https://cdn.lwuk.live/live/smil:lwukweb.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Magic.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/HXfKkwj.png" group-title="",Magic (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,magic-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/magic/ -#EXTINF:-1 tvg-id="Magnavision.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yRdGchJ.jpg" group-title="Entertainment",Magna Vision (1080p) [Not 24/7] -https://j78dpa3edq5r-hls-live.5centscdn.com/abr/0864028584026e6ad9cdf922473177a4/playlist.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto +1 (720p) [Offline] -http://159.69.58.154/manoto_plus1/manoto_plus.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto +2 [Offline] -http://159.69.58.154/manoto_plus2/manoto2.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto TV (1080p) -https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 -#EXTINF:-1 tvg-id="MTA1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 (720p) [Offline] -https://cflive-emea.live-delivery.ooyala.com/out/u/3vkkbgnvsm2r5/101593/1lanVtaDE6sCK6v0vDomDayqoKeSal6G/cn/8fb839e3a82045bd99a92ecd9df257e5.m3u8 -#EXTINF:-1 tvg-id="MTA1English.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 English (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaeng_delivery@345736/master.m3u8 -#EXTINF:-1 tvg-id="MTA1Original.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 Original (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaorigin_delivery@353498/master.m3u8 -#EXTINF:-1 tvg-id="MTA1Urdu.uk" tvg-country="UK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 Urdu (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaurdu_delivery@350117/master.m3u8 -#EXTINF:-1 tvg-id="MTA2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/V6uUz9l.png" group-title="",MTA 2 (720p) -https://ooyalahd2-f.akamaihd.net/i/mtach7audio_delivery@65519/master.m3u8 -#EXTINF:-1 tvg-id="MTA2Urdu.uk" tvg-country="UK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/V6uUz9l.png" group-title="",MTA 2 Urdu (720p) -https://ooyalahd2-f.akamaihd.net/i/mtageraudio_delivery@308889/master.m3u8 -#EXTINF:-1 tvg-id="MTA3.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C5nT9yi.png" group-title="",MTA 3 (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtach7_delivery@348438/master.m3u8 -#EXTINF:-1 tvg-id="MTAAfrica.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/xT3X6L9.png" group-title="",MTA Africa (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaengaudio_delivery@138280/master.m3u8 -#EXTINF:-1 tvg-id="nTVUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/l75bDTx.png" group-title="",n TV (US Eastern) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22680_3BR3zocwi9/-0500/c.m3u8 -#EXTINF:-1 tvg-id="NoorTV.uk" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/oeV42l0.jpg" group-title="Religious",Noor TV (480p) [Not 24/7] -https://ls1.serverdump.com/stream3.m3u8 -#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Qello Concerts by Stingray (1080p) [Not 24/7] -https://csm-e-stv.tls1.yospace.com/csm/live/211935407.m3u8 -#EXTINF:-1 tvg-id="RugbyMensSevens.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby Men's Sevens (288p) -https://esmhls1-i.akamaihd.net/hls/live/510580/hls1/playlist.m3u8 -#EXTINF:-1 tvg-id="RugbyWomensSevens.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby Women's Sevens (288p) -https://esmhls2-i.akamaihd.net/hls/live/510581/hls2/playlist.m3u8 -#EXTINF:-1 tvg-id="RugbyWorldTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby World TV (720p) -https://esmhls3-i.akamaihd.net/hls/live/510582/hls3/playlist.m3u8 -#EXTINF:-1 tvg-id="S4C.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",S4C (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:s4cpbs/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="SangatTelevision.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KcPEkHh.png" group-title="",Sangat Television (368p) [Not 24/7] -https://api.new.livestream.com/accounts/6986636/events/5362122/live.m3u8 -#EXTINF:-1 tvg-id="SheffieldLiveTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eUqnYU1.png" group-title="Local",Sheffield Live TV (360p) [Not 24/7] -http://tv.sheffieldlive.org/hls/main.m3u8 -#EXTINF:-1 tvg-id="SkiTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://content.weyyak.com/af0ecf95-8dc9-443d-9b4f-bc01eab7bd30/poster-image" group-title="Sports",Ski TV (1080p) [Not 24/7] -https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-Zee/193.m3u8 -#EXTINF:-1 tvg-id="SkyNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WvNd8yg.png" group-title="News",Sky News (720p) [Geo-blocked] -http://skynews-sn-cdhls.ak-cdn.skydvn.com/cdhlsskynews/1404/latest.m3u8 -#EXTINF:-1 tvg-id="SkyNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WvNd8yg.png" group-title="News",Sky News (576p) [Geo-blocked] -http://skydvn-sn-mobile-prod.skydvn.com/skynews/1404/latest.m3u8 -#EXTINF:-1 tvg-id="SkyNewsArabia.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kF7TvcH.png" group-title="News",Sky News Arabia (720p) [Not 24/7] -https://stream.skynewsarabia.com/hls/sna.m3u8 -#EXTINF:-1 tvg-id="SkyNewsArabia.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kF7TvcH.png" group-title="News",Sky News Arabia (Portrait) (1280p) [Not 24/7] -https://stream.skynewsarabia.com/vertical/vertical.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra1.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 1 (540p) -https://skynewsau-live.akamaized.net/hls/live/2002689/skynewsau-extra1/master.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra2.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 2 (540p) [Not 24/7] -https://skynewsau-live.akamaized.net/hls/live/2002690/skynewsau-extra2/master.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra3.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 3 (1080p) -https://skynewsau-live.akamaized.net/hls/live/2002691/skynewsau-extra3/master.m3u8 -#EXTINF:-1 tvg-id="Spike.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Spike (480p) [Offline] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 -#EXTINF:-1 tvg-id="SportsTonight.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nh4LyPv.png" group-title="Sports",Sports Tonight (576p) [Not 24/7] -http://sports.ashttp9.visionip.tv/live/visiontvuk-sports-sportstonightlive-hsslive-25f-4x3-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportyStuffTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sportystuff.tv/src/img/logo-purple.png" group-title="Sports",Sporty Stuff TV (720p) -https://ayozat-live.secure2.footprint.net/egress/bhandler/ayozat/sportystufftv/playlist.m3u8 -#EXTINF:-1 tvg-id="SpotlightTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/axXipp8.png" group-title="",Spotlight TV (576p) -https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-spotlighttv-hsslive-25f-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="STV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/617962-stv.png" group-title="",STV (1080p) [Timeout] -https://csm-e-stv.tls1.yospace.com/csm/live/139900483.m3u8 -#EXTINF:-1 tvg-id="STVPlus1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/607358-stv-1.jpg" group-title="",STV+1 (1080p) [Timeout] -https://csm-e-stv.tls1.yospace.com/csm/live/181023311.m3u8 -#EXTINF:-1 tvg-id="TheBoxUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/16/The_Box_2013.png" group-title="Music",The Box UK (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/thebox/ -#EXTINF:-1 tvg-id="TheBoxUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/16/The_Box_2013.png" group-title="Music",The Box UK (576p) [Not 24/7] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/thebox/ -#EXTINF:-1 tvg-id="TJC.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/cFlNhjV.png" group-title="",TJC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(TJCOTT)/index.m3u8 -#EXTINF:-1 tvg-id="V2BEAT.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://graph.facebook.com/vtwobeat/picture?width=320&height=320" group-title="Music",V2BEAT (720p) [Not 24/7] -https://abr.de1se01.v2beat.live/playlist.m3u8 -#EXTINF:-1 tvg-id="V2BEAT.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Ll6GlqY.png" group-title="Music",V2BEAT (720p) [Not 24/7] -https://de1se01.v2beat.live/playlist.m3u8 -#EXTINF:-1 tvg-id="WilliamHillBTV1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/nnX0NGt.png" group-title="",William Hill BTV 1 (720p) -https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_tklzcakd_1_1/chunklist.m3u8 -#EXTINF:-1 tvg-id="WilliamHillBTV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/nnX0NGt.png" group-title="",William Hill BTV 2 (720p) -https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_3838s0ja_1_1/chunklist.m3u8 diff --git a/channels/uk_samsung.m3u b/channels/uk_samsung.m3u deleted file mode 100644 index 1f34e2fcf..000000000 --- a/channels/uk_samsung.m3u +++ /dev/null @@ -1,125 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BeanoTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XvBi1Ou.png" group-title="",Beano TV (720p) [Offline] -https://beanostudios-beanotv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubbingTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aqMhht6.png" group-title="",Clubbing TV (720p) -https://clubbingtv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNInternationalUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International UK (720p) [Not 24/7] -https://cnn-cnninternational-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WyHp7Wa.jpg" group-title="Comedy",Comedy Channel (1080p) -https://uksono1-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="UK" tvg-language="Spanish" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00434-tricoast-darkmatter-spanish-samsunguk/playlist.m3u8 -#EXTINF:-1 tvg-id="DiscoverFilm.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/yjIYUim.jpg" group-title="",Discover.Film (720p) [Offline] -https://discoverfilm-discoverfilm-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] -https://dust-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) -https://edgesport-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://rakuten-euronews-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglishviaAlchimie.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English via Alchimie (720p) [Offline] -https://alchimie-euronews-4-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/RIXSg4L.png" group-title="Comedy",FailArmy (720p) [Offline] -https://failarmy-international-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEngland.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (England) (1080p) [Not 24/7] -https://fashiontv-fashiontv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] -https://spi-filmstream-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Filmzie.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/jUWffic.png" group-title="",Filmzie (720p) [Offline] -https://filmzie-filmzie-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FTFForthefans.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Db8nWyW.png" group-title="",FTF For the fans (720p) -https://elevensports-uk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) -https://fueltv-fueltv-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GoUSA.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KhdR4wa.jpg" group-title="",Go USA (720p) [Offline] -https://brandusa-gousa-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) -https://gustotv-samsung-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseandCountry.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FNFFhEq.png" group-title="",Horse and Country (720p) -https://hncfree-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XZSCpl2.jpg" group-title="",Humanity (720p) [Offline] -https://alchimie-humanity-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) -https://inwild-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGamerTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dSPmDU7.png" group-title="Kids",Kid Gamer TV (1080p) [Offline] -https://studio71-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LuxeTV.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/8tWhfap.png" group-title="",Luxe TV (720p) [Offline] -https://alchimie-luxe-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV UK (720p) [Offline] -https://mavtv-mavtvglobal-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] -https://alchimie-mmatv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoviesCentral.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dwOoEmE.jpg" group-title="Movies",Movies Central (720p) [Offline] -https://alchimie-movies-central-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphereuk-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J4zE5z9.jpg" group-title="General",PBS America (720p) -https://pbs-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetKnowledge.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/U8GADbT.jpg" group-title="",Planet Knowledge (720p) [Offline] -https://vod365-planet-knowledge-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) -https://playerstv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Pocketwatch.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/CiQdnud.png" group-title="",Pocket watch (720p) [Offline] -https://pocketwatch-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Qello Concerts by Stingray (1080p) -https://stingray-qelloconcerts-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Classical (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestclassic-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Jazz & Beyond (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestjazz-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Mix (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestmix-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies UK (720p) [Offline] -https://rakuten-actionmovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eQKFgpa.png" group-title="Movies",Rakuten TV Comedy Movies UK (720p) [Offline] -https://rakuten-comedymovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama UK (720p) [Offline] -https://rakuten-tvshows-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies UK (720p) [Offline] -https://rakuten-family-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vbb3bjW.png" group-title="",Rakuten TV Spotlight UK (720p) [Offline] -https://rakuten-spotlight-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/TVfuBfJ.jpg" group-title="",Real Stories (720p) -https://realstories-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) -https://sofytv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SparkTv.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vTGknv3.png" group-title="",Spark Tv (720p) -https://sparktv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsChannelNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ytimg.com/vi/2FtbPXeYTvo/maxresdefault.jpg" group-title="Sports",Sports Channel Network (720p) [Offline] -https://vod365-sports-channel-network-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="",Stingray Karaoke (1080p) -https://stingray-karaoke-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Supertoons.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iVeuci8.jpg" group-title="Kids",Supertoons (720p) [Offline] -https://kedoo-supertoonstv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dwMUVhs.png" group-title="",Tastemade (720p) -https://tastemade-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (720p) [Offline] -https://dhx-teletubbies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://ott-gateway.sinclairstoryline.com/optimized/90/17ec0fba-d4ec-4421-a665-c8dcab0f80ee-small3x1_TheTChannel.png" group-title="Sports",Tennis Channel (720p) -https://tennischannel-intl-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TennisChannelUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WEM9B83.png" group-title="Sports",Tennis Channel (UK) (720p) -https://tennischannel-int-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveEngland.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective UK (720p) [Offline] -https://the-pet-collective-international-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeLine.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/AzZhwWR.jpg" group-title="",Time Line (720p) -https://timeline-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Toongoggles.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/8PEf3Vn.jpg" group-title="Family",Toongoggles (720p) [Offline] -https://toongoggles-toongoggles-3-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Truly.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/MWkm3no.png" group-title="",Truly (720p) [Offline] -https://barcroft-truly-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Unearth.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/bMqTNs1.jpg" group-title="",Unearth (720p) [Offline] -https://alchimie-unearth-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) [Offline] -https://venntv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/450pJvs.png" group-title="",Wonder (720p) -https://wonder-samsung-uk.amagi.tv/playlist.m3u8 diff --git a/channels/unsorted.m3u b/channels/unsorted.m3u deleted file mode 100644 index ebdfa19b0..000000000 --- a/channels/unsorted.m3u +++ /dev/null @@ -1,415 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",1A Network (720p) -https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Adria Music RS [Timeout] -http://91.212.150.248/AdriaMusicTV/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AdriaNet -http://79.106.48.2:4578/live/adriamed/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ahi TV Kirsehir (576p) -http://yayin3.canlitv.com:1935/canlitv/ahitv/playlist.m3u8 -#EXTINF:-1 tvg-id="AkilliTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/20140406/001300/001300000008478998/8a5fe430-9a6e-4835-92fb-245947ce17fc.png" group-title="",Akilli TV [Timeout] -https://stream41.radyotelekom.com.tr/stream/m3u8/a5a7e883a71429fe9e605bb5d25d6185/chunklist_w895929071.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Hurra Iraq (720p) -https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Iraqiya [Offline] -https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/imn/general2/chunks.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Rasheed (408p) -https://media1.livaat.com/AL-RASHEED-HD/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Sharqiya (1080p) -https://5d94523502c2d.streamlock.net/home/mystream/chunklist_w1408191520.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Sharqiya News (1080p) -https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/chunklist_w449457930.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ALB Music (720p) [Not 24/7] -http://albmusic.dyndns.tv:1935/albuk/albmus.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AlbDreams TV (720p) -http://live.albavision.net:1123/live/albdreams.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AlbKanale Music TV -https://albportal.net/albkanalemusic.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ATN Europe [Offline] -https://d10rltuy0iweup.cloudfront.net/ATNINT/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ava Entertainment (720p) -https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/c9aa559e_1_3310000/chunklist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AXS TV NOW -https://dikcfc9915kp8.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Bajo Cero TV [Offline] -https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Banovina TV -https://5b57bb229a2e6.streamlock.net/live/televizija/playlist.m3u8 -#EXTINF:-1 tvg-id="Belarus24.by" tvg-country="BY" tvg-language="Belarusian" tvg-logo="https://resizer.mail.ru/p/c3c06eec-6613-5514-91ec-b20923cdbd84/AQACWrxNebO0hItmKwDaej2ry4kAMudX6qjoQkOx_7QLCDly1v7ftHI7GZuK0lSB_-8lsAmRc_DBFCjDbWWlP2tYTUE.png" group-title="",Belarus 24 (720p) -http://serv30.vintera.tv:8081/belarus24/belarus24/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Beteve -https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/protocol/https/uiConfId/42816492/a.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Bitlis TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/bitlistv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_26-tv_m.png" group-title="",Canal 26 (720p) -http://live-edge01.telecentro.net.ar:1935/live/26hd-720/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Acequia (432p) [Not 24/7] -https://api.new.livestream.com/accounts/6450028/events/5813077/live.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Coín -http://stream.fion.es:1936/Canal_Coin/canalcoin.stream/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Orbe 21 -https://cdn2.zencast.tv:30443/orbe/orbe21smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://programacion-tv.elpais.com/imagenes/canales/604.jpg" group-title="",Canal Parlamento (360p) -http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canalcosta TV -https://5d8d85cf2c308.streamlock.net:1936/CanalcostaTV/WXP6YT/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Carolina TV -https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/carolinatv/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CBTV Now (1080p) -https://oj7lng29dg82-hls-live.5centscdn.com/lives/f7b44cfafd5c52223d5498196c8a2e7b.sdp/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cekmeköy TV -https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv_1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CGNTV -http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Chive TV -http://a.jsrdn.com/broadcast/4df1bf71c1/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Contact Vision TV (540p) -http://contactvision.flashmediacast.com:1935/contactvision/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CostadelSol TV -https://limited11.todostreaming.es/live/benalmadena-livestream.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cowboy Theater (720p) -https://simultv.s.llnwi.net/o054/CowboyTheater/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cut Up N Cook (720p) -https://simultv.s.llnwi.net/n4s4/CutUpNCook/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cycle World [Offline] -http://a.jsrdn.com/broadcast/3e5befe5dd/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="Arabic" tvg-logo="http://www.daawah.tv/img/logo.png" group-title="Religious",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",DeepHouse District -https://eu-nl-012.worldcast.tv/dancetelevisiontwo/dancetelevisiontwo.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dijlah Tarab -https://ghaasiflu.online/tarab/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dijlah TV -https://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dimensions -https://simultv.s.llnwi.net/o054/Dimensions/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Drita TV -https://nesertv.live/DRITATV-5879/playlist.m3u8 -#EXTINF:-1 tvg-id="DRTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3159_1_5fb764b2532f64.07272953.svg" group-title="",DRT TV (720p) -https://broadcasttr.com:446/drt/bant1/chunklist_w172830844.m3u8?hash=ff9087a17e9ff7a7a214048d240d21c0 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",EBS Kids [Offline] -rtsp://ebsonair.ebs.co.kr/ebsutablet500k/tablet500k -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Elbekanal Schönebeck -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ems TV Lingen (280p) -https://5889e7d0d6e28.streamlock.net/ev1tv-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ESTV -https://stream.ads.ottera.tv/playlist.m3u8?network_id=461 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Fibracat TV (1080p) -https://cdn-02.fibracat.cat/fibracattv/index.m3u8 -#EXTINF:-1 tvg-id="FightNetwork.ca" tvg-country="" tvg-language="" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/81448/s81448_h3_aa.png" group-title="",Fight Network (1080p) -https://d12a2vxqkkh1bo.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Filstalwelle Göppingen (576p) -http://62.113.210.2/filstalwelle-live/_definst_/mp4:livestream/chunklist_w660034089.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Folk TV -http://584b0aa350b92.streamlock.net:1935/folk-tv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Friesischer Rundfunk Friedeburg [Offline] -https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/_definst_/mp4:friesischerrundfunk/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Fun Radio (720p) -https://livevideo.infomaniak.com/streaming/livecast/funradiovisionhd/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Funnybone (720p) -https://simultv.s.llnwi.net/o054/FunnyBone/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Glas Drine -http://glasdrine.cutuk.net:8081/433ssdsw/GlasDrineSD/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Haldensleben TV (720p) -https://578d8e1867e87.streamlock.net/medienasa-vod/_definst_/mp4:hdl_sendung_720p.mp4/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",HD 365 -https://netstreaming.eu:8080/hls/hd365.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Honor TV -https://a.jsrdn.com/broadcast/d5b48/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Hrvatski Radio Karlovac [Offline] -https://5b57bb229a2e6.streamlock.net/live/_definst_/karlovac/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",IDG (720p) -http://a.jsrdn.com/broadcast/529a360c04/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Impact Wrestling (1080p) -https://d2tuwvs0ja335j.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",India TV (480p) -https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/indiatv-origin/live2/chunks.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Iranintl.Radio -http://51.210.199.46/hls/stream.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Jesus Shelanu (720p) -https://1247634592.rsc.cdn77.org/1247634592/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kanal Alanya -https://broadcasttr.com:446/kanala/bant1/chunklist_w343770598.m3u8?hash=2ed1974639ec674a33ed440298136dcd -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kartoon Circus -https://simultv.s.llnwi.net/o062/KartoonCircus/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kid Central (720p) -https://simultv.s.llnwi.net/o058/KidCentral/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Klan Kosova -http://93.157.62.180/KlanKosova/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Klan Plus -http://93.157.62.180/KlanPlus/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Korça + (1080p) [Not 24/7] -http://32.shqiptv.org/korca/albplus/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",KulturMD Magdeburg -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KurirTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/d0dc766d74abb2a0cb1cf16ddd146701.png" group-title="",Kurir TV (720p) -http://51.15.154.138/providus/live2805_hq/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",KVF Faroe Island (360p) -https://w2.kringvarp.fo/uttanlands/_definst_/smil:uttanlands.smil/chunklist_w587901821_b772000_slfao.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",La Muscle TV (360p) -https://streamcdn.lamuscle.com/lamtv-origin/smil:monsterworkout-tricepspt1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ländle Tv (1080p) -https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Latest TV [Not 24/7] -https://5a0e89631aa14.streamlock.net/LatestTV/LatestTV/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Latvijas Radio 1 -http://5a44e5b800a41.streamlock.net:1935/liveVLR1/mp4:LR1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Lausitzwelle Fernsehen (1080p) -https://5856e1a25f71a.streamlock.net/easycast9-live/_definst_/mp4:livestreamhd10/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Lifestyle -https://simultv.s.llnwi.net/o058/Lifestyle/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MDF.1 Magdeburg -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Messinia TV -http://176.9.123.140:1935/messinia/messinia/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Military Home Life (720p) -https://simultv.s.llnwi.net/n4s4/MilitaryHomeLife/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Minhaj TV (720p) -https://api.new.livestream.com/accounts/547271/events/4237509/live.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MMA Junkie -http://a.jsrdn.com/broadcast/80f6ba72c8/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mola TV (720p) -http://ventdelnord.tv:8080/mola/directe.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Monarch TV (360p) -https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/low/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Motorcyclist [Offline] -http://a.jsrdn.com/broadcast/256ad9e679/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="MotorvisionTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/55802c752581d.png" group-title="",Motorvision TV (720p) -https://stream.ads.ottera.tv/playlist.m3u8?network_id=535 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Movie Kingdom TV -https://a.jsrdn.com/broadcast/e9b4093a41/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MTC -http://mellitv.tulix.tv:1935/mellitv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mundo TV -https://59f1cbe63db89.streamlock.net:1443/mundotv/_definst_/mundotv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MUSIC + -http://s02.diazol.hu:10192/stream.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Muxx.tv (1080p) -https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mythos -https://simultv.s.llnwi.net/o058/Mythos/interlink.m3u8 -#EXTINF:-1 tvg-id="NasaTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://prd-static-mkt.spectar.tv/rev-1636968170/image_transform.php/transform/1/instance_id/1/video_id/54" group-title="",Naša TV (1080p) [Not 24/7] -https://stream.nasatv.com.mk/hls/nasatv_live.m3u8 -#EXTINF:-1 tvg-id="NeaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014344&t=1544180306377" group-title="",Nea TV (720p) -https://live.neatv.gr:8888/hls/neatv_high/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Neser TV -https://nesertv.live/ntv/livestream/tracks-v1a1/index.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_net-tv_m.png" group-title="",NET TV (720p) -https://unlimited1-us.dps.live/nettv/nettv.smil/nettv/livestream1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",News 24 Albania -http://tv.balkanweb.com:8081/news24/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="News18Lokmat.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VxKW2nPp.png" group-title="",News18 Lokmat (504p) -https://news18lokmat-lh.akamaihd.net/i/n18lokmat_1@178974/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Nisville TV RS -http://92.60.237.32:1935/live/nisville/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OF-TV Offenbach (720p) -https://5864df9ceac85.streamlock.net/germanpictures-live/_definst_/mp4:streamschedule/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Offener Kanal Fulda -https://s.ok54.de/mok-fu/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Dessau -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Magdeburg (1080p) -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Mainz -https://s.ok54.de/oktvmainz/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Merseburg -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Salzwedel -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Wernigerode -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ORA News -http://93.157.62.180/OraNews/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Pardesi TV (720p) -http://stream.pardesitv.online/pardesi/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Persian Bazar -http://stream.persiantv1.com/ptv1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Popular Science TV [Offline] -http://a.jsrdn.com/broadcast/447912f76b/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="PrimeAsiaTV.ca" tvg-country="" tvg-language="" tvg-logo="" group-title="",Prime Asia TV (720p) -http://primeasia.dyndns.tv:8080/Live_web_250/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Prime Time Drama -https://simultv.s.llnwi.net/o064/PrimeTimeDrama/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Providence Christian Network -https://simultv.s.llnwi.net/n4s4/ProvidenceNetwork/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Punjabi TV -http://cdn9.live247stream.com/punjabitvcanada/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Punkteins -https://5852afe96c9bb.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",PunktUm Hettstedt (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Radio Javan TV (1080p) -https://stream.rjtv.tv/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Radio Weser TV Bremen -https://5857499ee635b.streamlock.net/radiowesertv-live/_definst_/mp4:livestreamTV/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ran1 Dessau-Roßlau (1080p) -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RBW Bitterfeld-Wolfen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ready Set Action (720p) -https://simultv.s.llnwi.net/o059/ReadySetAction/interlink.m3u8 -#EXTINF:-1 tvg-id="RedBullTV.at" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/7NeBmWX.jpg" group-title="Sports",Red Bull TV (360p) -https://rbmn-live.akamaized.net/hls/live/622817/BoRB-US/master_928.m3u8 -#EXTINF:-1 tvg-id="RedTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/eb36e114680b1a8a4da0438ecb670663.png" group-title="",Red TV (720p) -https://live.rednet.rs/providus/redtv_multi_hq/index.m3u8 -#EXTINF:-1 tvg-id="RedeTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-tv_m.png" group-title="",RedeTV! Tocantins (720p) [Offline] -https://59f1cbe63db89.streamlock.net:1443/redetvro/_definst_/redetvro/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Report TV -https://deb10stream.duckdns.org/hls/stream.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Rete 7 (576p) -https://stream.ets-sistemi.it/live.rete7/rete7/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Retro Plus 2 HD -https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/_definst_/retroplussenal2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Retro Plus HD -https://59f1cbe63db89.streamlock.net:1443/retroplustv/_definst_/retroplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RFH Harz (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RheinMainTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24539-1.png" group-title="",RheinMain TV (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RMC -https://rmc2hdslive-lh.akamaihd.net/i/DVMR_RMC@167269/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 1 -http://79.106.48.2:4578/live/rtsh_1mob_pp2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 2 -http://79.106.48.2:4578/live/rtsh_2mob_p2/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 3 (270p) -http://79.106.48.2:4578/live/rtsh3mobp1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 24 -http://79.106.48.2:4578/live/rtsh_24_mob/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Film (270p) -http://79.106.48.2:4578/live/rtsh_film_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Gjirokastra (360p) -http://79.106.48.2:4578/live/rtsh_gjirokastra_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Kids -http://79.106.48.2:4578/live/rtsh_femije_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Korça (360p) -http://79.106.48.2:4578/live/rtsh_korca_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Kukesi -http://79.106.48.2:4578/live/rtsh_kukesi_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Muzike -http://79.106.48.2:4578/live/rtsh_muzike_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Plus -http://79.106.48.2:4578/live/rtsh_plus_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Sat (360p) -http://79.106.48.2:4578/live/rtsh_sat_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Shkodra (360p) -http://79.106.48.2:4578/live/rtsh_shkodra_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Shqip -http://79.106.48.2:4578/live/rtsh_shqip_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Arberia Musik -http://rtvarberia4.flashmediacast.com:1935/RtvArberia4/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Herceg-Bosne -https://prd-hometv-live-open.spectar.tv/ERO_1_083/576p/chunklist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Ilirida -http://uk4.streamingpulse.com:1935/rtvilirida/rtvilirida/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV MIR [Offline] -https://rtvmir.info/MIR/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV USK -http://wslb.dobratv.net:8877/uzivo/usk/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Rudana -https://live.rudana.com.ua/hls/stream_FHD.m3u8 -#EXTINF:-1 tvg-id="SandzakTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/78b8b0fe8b35f5afd2a9971e91adb2d4.png" group-title="",Sandzak TV (576p) -https://vod1.laki.eu/sandzak/video.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sat7 Türk (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/sat7turkpublish/sat7turk_720p/chunks_dvr.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Seenluft24 -https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/mp4:livestreamhd20/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",SimSi TV [Timeout] -https://simultv.s.llnwi.net/o060/SimSiTV/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Slap Tech -https://simultv.s.llnwi.net/o061/SlapTech/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="http://190.211.140.13/soltv/img/logomenu.png" group-title="",Sol Televisión -http://190.211.140.89:8081/SVTranscoder/SOLTVabr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sonus FM TV [Not 24/7] -https://60015180a7f57.streamlock.net:444/public/stream_source/chunklist_w1017805699.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sophia TV (720p) -https://www.onairport.live/sophiatv-es-live/livestream_high/master.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Space Channel -https://stream.ads.ottera.tv/playlist.m3u8?network_id=565 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Spydar -https://simultv.s.llnwi.net/o062/Spydar/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Start TV -https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Studio 47 -https://5852afe96c9bb.streamlock.net/studio47-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",STV (720p) -http://89.201.163.244:8080/hls/hdmi.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Super TV Media -https://mirtv.club/live/mirtv/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Switch (720p) -https://simultv.s.llnwi.net/o062/Switch/interlink.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sylt1 -https://5aec29c5dd23b.streamlock.net:8443/sylt1/_definst_/sylt1_high1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Syri TV (720p) -https://tv.syri.net/syrilive/webtv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Teleonuba -https://5d8d85cf2c308.streamlock.net:1936/Teleonuba/605oPXx3/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Televizija Radio Banovina [Offline] -https://5b57bb229a2e6.streamlock.net/live/smil:banovina.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",teltOwkanal -https://5856e1a25f71a.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd8/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Temple TV -https://streaming.temple.edu/tutvlive/_definst_/mp4:8BRYCQMB/chunklist_w1944862924.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Tempo TV -https://waw2.artiyerelmedya.net/tempotv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",The Archive (1080p) -https://ov.ottera.tv/live/master.m3u8?channel=mcom_ta_us -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",The Grapevine -https://ov.ottera.tv/live/master.m3u8?channel=mcom_gv_us -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Tide TV (1080p) -https://5889e7d0d6e28.streamlock.net/tide-live/_definst_/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Top News -http://93.157.62.180/TopNews/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TopEstrada TV -http://live.topestrada.com/live/topestrada/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Birigui (640p) -https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/_definst_/tvdigitalbirigui/chunklist_w763334596.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Brusque (720p) -https://5ad482a77183d.streamlock.net/rodrigotvbrusque.com.br/_definst_/5d880199c902eb4a1e8df00d/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Destak (360p) -https://59f2354c05961.streamlock.net:1443/pascoal/_definst_/pascoal/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Dielli (720p) -http://stream.tvdielli.com:8081/dielli/index.m3u8 -#EXTINF:-1 tvg-id="TVGazeta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-gazeta_m.png" group-title="",TV Gazeta (720p) -http://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 -#EXTINF:-1 tvg-id="TVGuara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-guara-hd_m.png" group-title="",TV Guará (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvguara/_definst_/tvguara/chunklist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Halle (720p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Johaniter -https://nesertv.live/webstream/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Marajoara (720p) -https://video01.kshost.com.br:4443/tv31966/tv31966/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="Portuguese" tvg-logo="" group-title="",TV Max -https://59f1cbe63db89.streamlock.net:1443/tvmax/_definst_/tvmax/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Pai Eterno -https://59f1cbe63db89.streamlock.net:1443/teste01/_definst_/teste01/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVPirot.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/9532e04a1fbf22a3e3d49a3ceea71bcf.png" group-title="",TV Pirot (240p) [Not 24/7] -https://5bc45691ca49f.streamlock.net/tvpirot/uzivo/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV S1 -https://sradio.ipradio.rs/sradio/radiostv/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Sharri -http://uk4.streamingpulse.com:1935/TVSHARRI/TVSHARRI/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Tema -http://134.209.238.38/hls/test.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV União (720p) [Not 24/7] -https://596639ebdd89b.streamlock.net/tvuniao/tvuniao/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV2 Fyn (1080p) -https://cdnapisec.kaltura.com/p/1966291/sp/196629100/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/uiConfId/30288171/a.m3u8 -#EXTINF:-1 tvg-id="TVEBahia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tve-bahia_m.png" group-title="",TVE RS (1080p) -http://streaming.procergs.com.br:1935/tve/stve/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TVnet -https://mn-nl.mncdn.com/tvnet/tvnet/chunklist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TVW -https://wowzaprod13-i.akamaihd.net/hls/live/254985/29c28f19/persisTarget_9375922947_TVWAIR_247_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Urban Revolution -https://www.urbanrevolution.es:444/live/5e6d8470a3832/index.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",WATAN-E-MAA -https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",WTV Wettin -http://62.113.210.250:1935/medienasa-live/ok-wettin_high/playlist.m3u8 -#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",XZone (720p) -https://simultv.s.llnwi.net/o060/xzone/interlink.m3u8 diff --git a/channels/us.m3u b/channels/us.m3u deleted file mode 100644 index 9745862c3..000000000 --- a/channels/us.m3u +++ /dev/null @@ -1,1953 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="WKYC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tjlSkyp.jpg" group-title="Local",3 Studios Cleveland OH (WKYC) (1080p) -https://livevideo01.wkyc.com/hls/live/2015504/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="3ABN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GVZuKc7.png" group-title="Religious",3ABN (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652042/secure/master.m3u8 -#EXTINF:-1 tvg-id="K17JIDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zI6jr9L.png" group-title="Religious",3ABN Dare to Dream (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652313/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNFrancais.us" tvg-country="US" tvg-language="French" tvg-logo="https://i.imgur.com/V6bL5MJ.png" group-title="Religious",3ABN Français (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652314/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vhb8zvB.png" group-title="Religious",3ABN International (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652312/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eOvzf3d.png" group-title="Religious",3ABN Kids (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652318/secure/master.m3u8 -#EXTINF:-1 tvg-id="K17JIDT4.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4ydVVIA.png" group-title="Religious",3ABN Latino (480p) -http://uni5rtmp.tulix.tv:1935/bettervida/bettervida/playlist.m3u8 -#EXTINF:-1 tvg-id="K18JLD2.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4ydVVIA.png" group-title="Religious",3ABN Latino (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652315/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNPraiseHimMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t6Ydwqg.png" group-title="Religious",3ABN Praise Him Music Channel (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/554145/secure/playlist.m3u8 -#EXTINF:-1 tvg-id="K17JIDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KiMtKUL.png" group-title="Religious",3ABN Proclaim! (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652317/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNRussia.us" tvg-country="US" tvg-language="Russian" tvg-logo="https://i.imgur.com/8fKWpo3.png" group-title="Religious",3ABN Russia (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652316/secure/master.m3u8 -#EXTINF:-1 tvg-id="WHDH.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/b5/WHDH_7_logo.png" group-title="Local",7News Boston MA (WHDH) (540p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/598046/4744899807001_1/livestream/master.m3u8 -#EXTINF:-1 tvg-id="KBMT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/boVFg14.jpg" group-title="Local",12 News Beaumont TX (KBMT) (1080p) -https://livevideo01.12newsnow.com/hls/live/2017379/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KEROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://scripps.com/wp-content/uploads/2019/01/local_media_23_abc.png" group-title="Local",23 ABC Bakersfield CA (KERO) (720p) -https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8 -#EXTINF:-1 tvg-id="30ADarcizzleOffshore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l2O0fY1.png" group-title="Outdoor",30A Darcizzle Offshore (720p) -https://30a-tv.com/darcizzle.m3u8 -#EXTINF:-1 tvg-id="30AInvestmentPitch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CKCtZo7.png" group-title="Business",30A Investment Pitch (720p) -https://30a-tv.com/feeds/xodglobal/30atv.m3u8 -#EXTINF:-1 tvg-id="30AMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gNWg9tl.png" group-title="Music",30A Music (720p) -https://30a-tv.com/music.m3u8 -#EXTINF:-1 tvg-id="30ASidewalks.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sidewalkstv.com/wp-content/uploads/2013/10/sw-tep-large-300x125.png" group-title="Entertainment",30A Sidewalks (720p) -https://30a-tv.com/sidewalks.m3u8 -#EXTINF:-1 tvg-id="30ATheBeachShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0j5Aget.png" group-title="Local",30A The Beach Show (720p) -https://30a-tv.com/beachy.m3u8 -#EXTINF:-1 tvg-id="247RetroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/247RetroTV.png" group-title="Classic",247 Retro TV (432p) [Not 24/7] -http://hlsdpi-cdn-chqtx02.totalstream.net/dpilive/247retro/ret/dai/playlist.m3u8 -#EXTINF:-1 tvg-id="A3Bikini.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/A3Network_A3Bikini.png?raw=true" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="XXX",A3Bikini (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://vcnbikininetwork.teleosmedia.com/stream/bikininetwork/a3bikini/playlist.m3u8 -#EXTINF:-1 tvg-id="ABTV.us" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/ytH4Ncu.png" group-title="General",AB TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/abtvusa.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WSBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HkY10xX.jpg" group-title="Local",ABC 2 Atlanta GA (WSB-TV) (720p) -https://d2rwx6gwduugne.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10010_183ec1c7-4183-4661-803b-3ed282ffb625_LE/in/cmg-wsbtvnow-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="WBRZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/86/WBRZ_Logo_2013.png" group-title="Local",ABC 2 Baton Rouge LA (WBRZ) (720p) [Not 24/7] -http://cms-wowza.lunabyte.io/wbrz-live-1/_definst_/smil:wbrz-live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KIII.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/svfSv3O.jpg" group-title="Local",ABC 3 Corpus Christi TX (KIII) (1080p) -https://livevideo01.kiiitv.com/hls/live/2017378/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8vXRrRe.jpg" group-title="Local",ABC 4 Seattle WA (KOMO-TV) (720p) -https://content.uplynk.com/2c88dfe19e1447e6a6aa27e8e143a140.m3u8 -#EXTINF:-1 tvg-id="WEWSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606e0f9a9739652ec518e8c1" group-title="Local",ABC 5 Cleveland OH (WEWS-TV) (1080p) -https://wews-syndication.ewscloud.com/out/v1/72729e3f4dbe4aafbab93d6b1117e5f1/index.m3u8 -#EXTINF:-1 tvg-id="WOI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1jA3nKg.jpg" group-title="Local",ABC 5 Des Moines IA (WOI) (1080p) -https://livevideo01.weareiowa.com/hls/live/2011593/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KSTPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UZWNjGs.png" group-title="News",ABC 5 Minneapolis MN (KSTP) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/kstp-tv -#EXTINF:-1 tvg-id="KMGHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JExsI09.png" group-title="Local",ABC 7 Denver CO (KMGH) (720p) -https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8 -#EXTINF:-1 tvg-id="KABCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://imgur.com/nKAUCLF.jpg" group-title="News",ABC 7 Los Angeles CA (KABC-TV) (720p) -https://content.uplynk.com/channel/ext/2118d9222a87420ab69223af9cfa0a0f/kabc_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WJLATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LttuGfq.png" group-title="Local",ABC 7 Washington DC (WJLA) (720p) -https://content.uplynk.com/40cec2bf074c40f08932da03ab4510be.m3u8 -#EXTINF:-1 tvg-id="WFAA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0a0FVSv.jpg" group-title="Local",ABC 8 Dallas TX (WFAA) (1080p) -https://livevideo01.wfaa.com/hls/live/2014541/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WQAD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CZZBTGv.jpg" group-title="Local",ABC 8 Davenport IA (WQAD) (1080p) -https://livevideo01.wqad.com/hls/live/2011657/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WFTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://mediaweb.wftv.com/theme/images/placeholder-square.jpg" group-title="Local",ABC 9 Orlando FL (WFTV) (720p) -https://d3qm7vzp07vxse.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10070_fe1f5f6c-cd0b-4993-a4a4-6db66be4f313_LE/in/cmg-wftvtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="KXTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aqxCgyG.jpg" group-title="Local",ABC 10 Sacramento CA (KXTV) (1080p) -https://livevideo01.abc10.com/hls/live/2014547/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WHAS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ATiQ6J9.jpg" group-title="Local",ABC 11 Louisville KY (WHAS) (1080p) -https://livevideo01.whas11.com/hls/live/2016284/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WZZM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eapvJpP.jpg" group-title="Local",ABC 13 Grand Rapids MI (WZZM) (1080p) -https://livevideo01.wzzm13.com/hls/live/2016280/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KTNVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QbkW7zY.png" group-title="Local",ABC 13 Las Vegas NV (KTNV) (720p) -https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8 -#EXTINF:-1 tvg-id="WVEC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/P5PtUcR.jpg" group-title="Local",ABC 13 Norfolk VA (WVEC) (1080p) -https://livevideo01.13newsnow.com/hls/live/2014545/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KNXVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/99/KNXV_Logo.png" group-title="Local",ABC 15 Phoenix AZ (KNXV-TV) (720p) -https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8 -#EXTINF:-1 tvg-id="WNEP.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1s3Euh5.jpg" group-title="Local",ABC 16 Wilkes Barre PA (WNEP) (1080p) -https://livevideo01.wnep.com/hls/live/2011655/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KVUETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nLBEhIx.jpg" group-title="Local",ABC 24 Austin TX (KVUE) (1080p) -https://livevideo01.kvue.com/hls/live/2016282/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WATNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ukf1WZ0.jpg" group-title="Local",ABC 24 Memphis TN (WATN-TV) (1080p) -https://livevideo01.localmemphis.com/hls/live/2011654/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WKBW-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Buffalo NY (WKBW-TV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ABCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Detroit MI (WXYZ-TV1) (720p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Detroit MI (WXYZ-TV1) (480p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington/playlist.m3u8 -#EXTINF:-1 tvg-id="ABCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="News",ABC News (720p) -https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive1.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 1 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023560/abcnews1/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive2.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 2 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023561/abcnews2/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive3.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 3 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023562/abcnews3/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive4.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 4 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023563/abcnews4/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive5.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 5 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023564/abcnews5/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive6.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 6 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023565/abcnews6/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive7.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 7 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023566/abcnews7/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive8.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 8 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023567/abcnews8/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive9.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 9 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023568/abcnews9/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive10.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 10 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023569/abcnews10/master.m3u8 -#EXTINF:-1 tvg-id="WABCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="Local;News",ABC News New York NY (WABC-TV) (720p) -https://content.uplynk.com/channel/ext/72750b711f704e4a94b5cfe6dc99f5e1/wabc_24x7_news.m3u8 -#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Seattle WA (KOMO-TV1) (720p) -http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Seattle WA (KOMO-TV1) (480p) -http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="KXLYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Spokane WA (KXLY-TV1) (720p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KXLY-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Spokane WA (KXLY-TV1) (480p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="WTXLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Tallahassee FL (WTXL-TV1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WTXLHD.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (720p) -https://a.jsrdn.com/broadcast/542cb2ce3c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="KCKSLD3.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="",Ace TV (KCKS-LD3) (480p) -https://cdn.igocast.com/channel3_hls/channel3_master.m3u8 -#EXTINF:-1 tvg-id="KCKSLD4.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="",Action (KCKS-LD4) (480p) -https://cdn.igocast.com/channel4_hls/channel4_master.m3u8 -#EXTINF:-1 tvg-id="Actionable.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Actionable (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e25a1932c8368bdbfd87d/playlist.m3u8 -#EXTINF:-1 tvg-id="ActionMaxEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Snba5W2.jpg" group-title="Movies",ActionMax East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cinemaxaction.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AdoracionReal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AdoracionReal1/picture?width=320&height=320" group-title="Music",Adoración Real (360p) [Not 24/7] -https://tv.tvcontrolcp.com:1936/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wZk4nZI.png" group-title="Sports",Adventure Sports TV (720p) [Not 24/7] -https://gizmeon.s.llnwi.net/channellivev3/live/master.m3u8?channel=275 -#EXTINF:-1 tvg-id="Akaku53.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 53 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch1.m3u8 -#EXTINF:-1 tvg-id="Akaku54.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 54 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch2.m3u8 -#EXTINF:-1 tvg-id="Akaku55.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 55 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch3.m3u8 -#EXTINF:-1 tvg-id="AKCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV (1080p) -https://broadcast.blivenyc.com/speed/broadcast/22/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AKCTVMeettheBreeds.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV Meet the Breeds (1080p) -https://broadcast.blivenyc.com/speed/broadcast/71/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AKCTVPuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV Puppies (1080p) -https://broadcast.blivenyc.com/speed/broadcast/29/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AlHorreyaTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VCfZB73.png" group-title="Religious",Al Horreya TV (1080p) -http://media.smc-host.com:1935/alhorreya.tv/alhorreya.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHorreyaTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VCfZB73.png" group-title="Religious",Al Horreya TV (1080p) -http://media.smc-host.com:1935/alhorreya.tv/mp4:alhorreya3/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHurra.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GRl09vk.jpg" group-title="News",Al Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 -#EXTINF:-1 tvg-id="AlHurra.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GRl09vk.jpg" group-title="News",Al Hurra (486p) [Not 24/7] -https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 -#EXTINF:-1 tvg-id="AlientoVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0qwmBEm.png" group-title="Religious",Aliento Vision (720p) [Not 24/7] -http://209.133.209.195:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlientoVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0qwmBEm.png" group-title="Religious",Aliento Vision (720p) [Not 24/7] -http://livestreamcdn.net:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-AU.png" group-title="Religious",Alkarma TV Australia (1080p) -https://5a8308add0b31.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-AU.png" group-title="Religious",Alkarma TV Australia (720p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVFamily.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i2.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Family.png" group-title="Religious",Alkarma TV Family (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaNA2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVMiddleEast.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i2.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-ME.png" group-title="Religious",Alkarma TV Middle East (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVNorthAmericaCanada.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-NA.png" group-title="Religious",Alkarma TV North America & Canada (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmana1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVPraise.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Praise.png" group-title="Religious",Alkarma TV Praise (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmapa.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVTalmazaDiscipleship.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Talmaza.png" group-title="Religious",Alkarma TV Talmaza (Discipleship) (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVYouthEnglish.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/11/Logo-US-1024x576-1.png" group-title="Religious",Alkarma TV Youth & English (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmaus.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Alkerazatv.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",Alkerazatv (720p) -https://597f64b67707a.streamlock.net/alkerazatv.org/alkerazatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AllSportsTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qHwCima.jpg" group-title="Sports",All Sports TV Network (404p) [Offline] -https://2-fss-2.streamhoster.com/pl_120/amlst:203932-1476320/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmagdTVMiddleEast.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://www.almagd.tv/en/images/logo.png" group-title="Religious",Almagd TV Middle East (1080p) -https://597f64b67707a.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmagdTVNorthAmerica.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://www.almagd.tv/en/images/logo.png" group-title="Religious",Almagd TV North America (1080p) -https://5aafcc5de91f1.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCLatinAmerica.us" tvg-country="US" tvg-language="English;Spanish" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="",AMC Latin America [Timeout] -http://209.91.213.10:8088/play/a013 -#EXTINF:-1 tvg-id="America.us" tvg-country="US" tvg-language="English" tvg-logo="https://s-media-cache-ak0.pinimg.com/originals/40/48/2c/40482cf6af582372c2a22072a2394a80.png" group-title="",America (720p) [Not 24/7] -http://45.6.4.154/americatuc/vivo.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) -https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8 -#EXTINF:-1 tvg-id="KCKSLD5.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="News",America's Voice (KCKS-LD5) (480p) [Not 24/7] -https://cdn.igocast.com/channel5_hls/channel5_master.m3u8 -#EXTINF:-1 tvg-id="AmericanHorrors.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JLkzt7v.jpg" group-title="Movies",American Horrors (480p) -http://170.178.189.66:1935/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="AMGTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://amgtv.tv/wp-content/uploads/2019/11/new_amgtv_top.png" group-title="Family",AMG TV (1080p) -https://2-fss-2.streamhoster.com/pl_138/201660-1270634-1/playlist.m3u8 -#EXTINF:-1 tvg-id="AmgaTV.us" tvg-country="AM" tvg-language="Armenian;Russian;English" tvg-logo="https://i.imgur.com/3vQVwUV.jpg" group-title="General",Amga TV (720p) [Not 24/7] -https://streamer1.connectto.com/AMGA_WEB_1202/playlist.m3u8 -#EXTINF:-1 tvg-id="ARTNTV.us" tvg-country="AM" tvg-language="Russian;Armenian" tvg-logo="https://www.artn.tv/assets/5ba5a4abe66dd.png" group-title="General",ARTN TV (1080p) [Not 24/7] -https://streamer1.connectto.com/ARTN_mobile/index.m3u8 -#EXTINF:-1 tvg-id="ATDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qZtN1WI.jpg" group-title="",ATD TV (American TV of Dardania) (1080p) -http://46.99.146.236/0.m3u8 -#EXTINF:-1 tvg-id="AtlantaChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hSYez3V.png" group-title="Local",Atlanta Channel (720p) -http://media4.tripsmarter.com:1935/LiveTV/ACVBHD/playlist.m3u8 -#EXTINF:-1 tvg-id="AtlantaChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hSYez3V.png" group-title="Local",Atlanta Channel (720p) -https://5b0f5374bdf0c.streamlock.net:444/LiveTV/ATLHD/playlist.m3u8 -#EXTINF:-1 tvg-id="AudioDungeon.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.prunderground.com/wp-content/uploads/2019/04/Audio-Dungeon-1.png" group-title="Entertainment",Audio Dungeon (720p) -https://content.uplynk.com/channel/5688add7ce704ce1a27ab62bb44044b9.m3u8 -#EXTINF:-1 tvg-id="AvangTV.us" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.lyngsat.com/logo/tv/aa/avang-tv-us.png" group-title="Music",Avang TV (1080p) [Not 24/7] -http://appavang.flashmediacast.com:1935/Appavang/livestream/palylist.m3u8 -#EXTINF:-1 tvg-id="AWEEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60482f63cfbf071d6151ca95" group-title="General",AWE Encore (720p) [Geo-blocked] -https://cdn.herringnetwork.com/80A4DFF/awee_nva/AWE_Encore.m3u8 -#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="ID;TH" tvg-language="English;Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",AXN East Asia (Thai) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_AXNHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Movies",AXN East Asia (Vietnamese) (1080p) [Offline] -http://103.81.104.118/hls/stream2.m3u8 -#EXTINF:-1 tvg-id="AXNLatinoamerica.us" tvg-country="HISPAM" tvg-language="English;Spanish" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Entertainment",AXN Latinoamérica (576p) [Timeout] -http://209.91.213.10:8088/play/a011 -#EXTINF:-1 tvg-id="AXSTVNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d1bba10396351a3042dd4" group-title="General",AXS TV Now (1080p) -https://dikcfc9915kp8.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="AyenehTV.us" tvg-country="US" tvg-language="Persian" tvg-logo="https://i.imgur.com/TpnmasZ.png" group-title="General",Ayeneh TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BabyFirstTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/50338/s50338_h3_aa.png" group-title="Kids",BabyFirst TV (1080p) -https://babyfirst.akamaized.net/hls/live/2028842/bftvusaott/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVCSULB.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.cla.csulb.edu/departments/polisci/wp-content/uploads/2016/01/Beach-TV-Logo-300x169.jpg" group-title="Education",Beach TV CSULB (720p) [Not 24/7] -http://stream04.amp.csulb.edu:1935/Beach_TV/smil:BeachTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qjzj4TJ.png" group-title="Local",Beach TV Florida & Alabama (720p) -http://media4.tripsmarter.com:1935/LiveTV/DTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qjzj4TJ.png" group-title="Local",Beach TV Florida & Alabama (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/DTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p2YKsil.png" group-title="Local",Beach TV Key West & Florida Keys (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/KTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p2YKsil.png" group-title="Local",Beach TV Key West & Florida Keys (720p) [Offline] -https://media4.tripsmarter.com:1935/LiveTV/KTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LddMCWt.png" group-title="Local",Beach TV Myrtle Beach & The Grand Strand (720p) -http://media4.tripsmarter.com:1935/LiveTV/MTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LddMCWt.png" group-title="Local",Beach TV Myrtle Beach & The Grand Strand (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/MTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVPanamaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GaUcUCZ.png" group-title="Local",Beach TV Panama City (720p) -http://media4.tripsmarter.com:1935/LiveTV/BTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVPanamaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GaUcUCZ.png" group-title="Local",Beach TV Panama City (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/BTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeautyIQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qtirIFA.png" group-title="Shop",Beauty IQ (1080p) -https://lsqvc4us-lh.akamaihd.net/i/lsqvc4us_01@802711/master.m3u8 -#EXTINF:-1 tvg-id="BekSportsEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/media/DfLqnf4VMAA0m27.png" group-title="Sports",Bek Sports East (720p) -https://wowzaprod188-i.akamaihd.net/hls/live/728897/54d0bcd5/playlist.m3u8 -#EXTINF:-1 tvg-id="BekSportsWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/media/DfLqnf4VMAA0m27.png" group-title="Sports",Bek Sports West (720p) -https://wowzaprod188-i.akamaihd.net/hls/live/728897/89b077e6/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterHealthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/paFX8ZJ.png" group-title="Lifestyle",Better Health TV (480p) -https://uni5rtmp.tulix.tv/betterhealth/betterhealth/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterHealthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/paFX8ZJ.png" group-title="Lifestyle",Better Health TV (480p) -https://uni10rtmp.tulix.tv/betterhealth/betterhealth.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Relax",Better Life Nature Channel (480p) -https://uni5rtmp.tulix.tv/betternature/betternature/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Relax",Better Life Nature Channel (480p) -https://uni10rtmp.tulix.tv/betternature/betternature.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Religious",Better Life TV (720p) -https://uni5rtmp.tulix.tv/betterlife/betterlife/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Religious",Better Life TV (720p) -https://uni10rtmp.tulix.tv/betterlife/betterlife.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BibleExplorations.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wwUtlBi.png" group-title="Religious",Bible Explorations (480p) [Not 24/7] -http://stream.iphonewebtown.com:1935/bibleexplorations/bexplorationsmobile.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (1080p) -https://thegateway.app/BizAndYou/BizTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (576p) [Not 24/7] -http://gideommd.mmdlive.lldns.net/gideommd/46c072b287224782a4d4ce93c3646589/manifest.m3u8 -#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/m3u8/us_biztv.m3u8 -#EXTINF:-1 tvg-id="BlazeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HcRKP5P.jpg" group-title="Entertainment",Blaze TV (720p) -https://theblaze4.akamaized.net/hls/live/699982/theblaze/cm-dvr/master.m3u8 -#EXTINF:-1 tvg-id="BloombergHT.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6aarbHM.jpg" group-title="Business",Bloomberg HT (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/bloomberght/index.m3u8 -#EXTINF:-1 tvg-id="BloombergHT.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6aarbHM.jpg" group-title="Business",Bloomberg HT (720p) [Offline] -https://ciner.daioncdn.net/bloomberght/bloomberght.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-02-oNnPi5xc6sq_live.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (720p) -https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-03-qPp9HnlfNtK_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAsia.us" tvg-country="APAC" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Asia (720p) -https://liveprodapnortheast.global.ssl.fastly.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAsiaLiveEvent.us" tvg-country="APAC" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Asia Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/asia-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Australia (720p) -https://liveprodapnortheast.global.ssl.fastly.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Australia (270p) -https://liveprodapnortheast.akamaized.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-440-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEMEALiveEvent.us" tvg-country="EMEA" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV EMEA Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/eu-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe (720p) -https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe (360p) -https://liveprodeuwest.global.ssl.fastly.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) -https://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) -https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (360p) -https://liveprodapnortheast.akamaized.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (360p) -https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (180p) -https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-240-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUSLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/us-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUSPoliticsLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US Politics Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/politics.m3u8 -#EXTINF:-1 tvg-id="BluegrassMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nm3N3aw.png" group-title="Music",Bluegrass Music 4U (360p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/blugrassmusic/blugrassmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="BoomerangLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Kids",Boomerang Latinoamérica [Geo-blocked] -http://45.5.8.78:8000/play/a00i -#EXTINF:-1 tvg-id="WFXTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YGdDVAQ.jpg" group-title="Local",Boston 25 News (WFXT) (720p) -https://d2dy6pkj44n6e7.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10020_27d61a9c-67b2-4d7c-9486-626a6a071467_LE/in/cmg-wftxtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="BounceEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/bounce-us.png" group-title="Entertainment",Bounce Tallahassee FL (WTXL-TV2) (480p) -https://5e6cea03e25b6.streamlock.net/live/BOUNCE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BowieTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZgrlVYT.jpg" group-title="Local",Bowie TV (360p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/cityofbowie/G0466_001/playlist.m3u8 -#EXTINF:-1 tvg-id="BrazzersLatinoamerica.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="XXX",Brazzers Latinoamérica [Geo-blocked] -http://45.5.8.78:8000/play/a029 -#EXTINF:-1 tvg-id="bspoketv.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jsiHrMV.png" group-title="Lifestyle",bspoketv (720p) [Not 24/7] -https://bspoketv.s.llnwi.net/streams/322/master.m3u8 -#EXTINF:-1 tvg-id="BuffaloTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PD5MCbE.jpg" group-title="Local",Buffalo TV (360p) [Offline] -https://na-all15.secdn.net/pegstream3-live/play/c3e1e4c4-7f11-4a54-8b8f-c590a95b4ade/playlist.m3u8 -#EXTINF:-1 tvg-id="BusinessRockstars.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BusinessRockstars_1400x1400.png?raw=true" group-title="Business",Business Rockstars (720p) -https://content.uplynk.com/channel/7ad2b600b40b4a89933ab6981757f8b3.m3u8 -#EXTINF:-1 tvg-id="BUTV10BostonUniversity.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.butv10.com/wp-content/themes/butv10/_images/favicon.png" group-title="Local",BUTV10 (Boston University) (1080p) [Not 24/7] -http://butv10-livestream.bu.edu/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) -https://buzzrota-web.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) [Offline] -https://a.jsrdn.com/broadcast/ds80weh4/c.m3u8 -#EXTINF:-1 tvg-id="KCKSLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Buzzr (KCKS-LD1) (480p) -https://cdn.igocast.com/channel1_hls/channel1_master.m3u8 -#EXTINF:-1 tvg-id="BYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TDRDF4q.png" group-title="General",byu TV (720p) [Offline] -https://a.jsrdn.com/broadcast/d5b46/+0000/c.m3u8 -#EXTINF:-1 tvg-id="CSPAN.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.dailydot.com/wp-content/uploads/2020/08/CSpan.png" group-title="Legislative",C-SPAN (108p) -https://skystreams-lh.akamaihd.net/i/SkyC1_1@500806/master.m3u8 -#EXTINF:-1 tvg-id="CSPAN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/cspan2.png" group-title="Legislative",C-SPAN 2 (108p) -https://skystreams-lh.akamaihd.net/i/SkyC2_1@500807/master.m3u8 -#EXTINF:-1 tvg-id="CSPAN3.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/cspan3.png" group-title="Legislative",C-SPAN 3 (108p) [Not 24/7] -https://skystreams-lh.akamaihd.net/i/SkyC3_1@500808/master.m3u8 -#EXTINF:-1 tvg-id="CableHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zl7Gzwm.png" group-title="Entertainment",Cable Hits (720p) [Not 24/7] -https://bk7l2w4nlx53-hls-live.5centscdn.com/AETV/514c04b31b5f01cf00dd4965e197fdda.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://3.bp.blogspot.com/-Ngn_IHUGV-E/VoGzyGsSlkI/AAAAAAAAAjc/XTspAPwP2TE/s1600/CMC-Music-Channel.png" group-title="Music",California Music Channel (720p) [Geo-blocked] -https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMC-TV/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://3.bp.blogspot.com/-Ngn_IHUGV-E/VoGzyGsSlkI/AAAAAAAAAjc/XTspAPwP2TE/s1600/CMC-Music-Channel.png" group-title="Music",California Music Channel (720p) [Not 24/7] -https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMCU-92/playlist.m3u8 -#EXTINF:-1 tvg-id="CameraSmileTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NG9W4vU.png" group-title="Comedy",Camera Smile TV (480p) -https://playout4multirtmp.tulix.tv/live7/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="CampSpoopy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t3Jsks7.png" group-title="Kids",Camp Spoopy (1080p) -https://stream.ads.ottera.tv/playlist.m3u8?network_id=269 -#EXTINF:-1 tvg-id="CanelaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/D7HC79b.png" group-title="",Canela TV (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=65 -#EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8w3N2k3.png" group-title="Local",Capital City Connection Montgomery (360p) [Offline] -https://na-us-se13.secdn.net/pegstream3-live/play/5f0d9ca5-4e85-4c01-a426-9ec8d44c2c9c/playlist.m3u8 -#EXTINF:-1 tvg-id="CaptitalOTBBetting.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.capitalotb.com/wp-content/uploads/2019/09/COTB-Logo.png" group-title="Sports",Captital OTB Betting (720p) [Not 24/7] -https://d2up1hmow19bcd.cloudfront.net/livecf/liveracing/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkArabic.us" tvg-country="MENA" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Cartoon_Network_Arabic_logo.png/693px-Cartoon_Network_Arabic_logo.png" group-title="Kids",Cartoon Network Arabic (1080p) -https://shls-cartoon-net-prod-dub.shahid.net/out/v1/dc4aa87372374325a66be458f29eab0f/index.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkAsia.us" tvg-country="ASIA" tvg-language="English" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_47.png" group-title="Kids",Cartoon Network Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Cn/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network India (432p) [Not 24/7] -http://70.39.83.58:8278/cartoonnetworkhindikdin/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network India (576p) [Timeout] -http://103.153.39.34:8000/play/a04k/index.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkLatinAmerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network Latin America [Timeout] -http://209.91.213.10:8088/play/a00k -#EXTINF:-1 tvg-id="CartoonNetworkVietnam.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network Vietnam (720p) [Geo-blocked] -https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CARTOON-SD-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CatholicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RI9GbLX.jpg" group-title="Religious",Catholic TV (720p) [Not 24/7] -http://catholictvhd-lh.akamaihd.net/i/ctvhd_1@88148/master.m3u8 -#EXTINF:-1 tvg-id="CBNEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Gm4fs9W.png" group-title="Religious",CBN Español (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/iptv2_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Gm4fs9W.png" group-title="Religious",CBN Español (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/iptv2_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="CBNFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XpS19dt.png" group-title="Religious",CBN Family (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/iptv1_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XpS19dt.png" group-title="Religious",CBN Family (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/iptv1_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] -http://bcliveuniv-lh.akamaihd.net/i/news_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/news_1@194050/index_3000_av-p.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/news_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="WFMY.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ps6uQSW.jpg" group-title="Local",CBS 2 Greensboro NC (WFMY) (1080p) -https://livevideo01.wfmynews2.com/hls/live/2016285/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KREM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UANdGqv.jpg" group-title="Local",CBS 2 Spokane WA (KREM) (1080p) -https://livevideo01.krem.com/hls/live/2017156/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (720p) -https://content.uplynk.com/4a09fbea28ef4f32bce095e9eae04bd8.m3u8 -#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (720p) -https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8 -#EXTINF:-1 tvg-id="WWLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BvlV1dl.jpg" group-title="Local",CBS 4 New Orleans LA (WWL-TV) (1080p) -https://livevideo01.wwltv.com/hls/live/2016516/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KFSMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/i0KCLny.jpg" group-title="Local",CBS 5 Ft Smith AR (KFSM-TV) (1080p) -https://livevideo01.5newsonline.com/hls/live/2011653/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KENS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zV8X5Fi.jpg" group-title="Local",CBS 5 San Antonio TX (KENS) (1080p) -https://livevideo01.kens5.com/hls/live/2016281/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WRGBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ByPFQGp.png" group-title="Local",CBS 6 Albany NY (WRGB) (720p) -https://content.uplynk.com/channel/bba3e7da884a49bba96341ecf5128f0f.m3u8 -#EXTINF:-1 tvg-id="WHIO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38ZKuE.png" group-title="Local",CBS 7 Dayton OH (WHIO) [Timeout] -https://svc-lvanvato-cxtv-whio.cmgvideo.com/whio/2596k/index.m3u8 -#EXTINF:-1 tvg-id="KIROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://mediaweb.kirotv.com/photo/2018/09/24/kiro7_header_logo_152x60_13118164_ver1.0.png" group-title="Local",CBS 7 Seattle WA (KIRO-TV) [Timeout] -https://svc-lvanvato-cxtv-kiro.cmgvideo.com/kiro/1864k/index.m3u8 -#EXTINF:-1 tvg-id="KFMBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QJyt4n4.jpg" group-title="Local",CBS 8 San Diego CA (KFMB-TV) (1080p) -https://livevideo01.cbs8.com/hls/live/2014967/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WUSATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ekt1an0.png" group-title="Local",CBS 9 Washington DC (WUSA) (1080p) -https://livevideo01.wusa9.com/hls/live/2015498/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WBNSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Wq4M60P.jpg" group-title="Local",CBS 10 Columbus OH (WBNS-TV) (1080p) -https://livevideo01.10tv.com/hls/live/2013836/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WTSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Plp4dZh.jpg" group-title="Local",CBS 10 Tampa FL (WTSP) (1080p) -https://livevideo01.wtsp.com/hls/live/2015503/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KHOUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aTU1n4l.jpg" group-title="Local",CBS 11 Houston TX (KHOU) (1080p) -https://livevideo01.khou.com/hls/live/2014966/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WTOL.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCpIwNs.jpg" group-title="Local",CBS 11 Toledo OH (WTOL) (1080p) -https://livevideo01.wtol.com/hls/live/2017153/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WPECTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SG7iSaA.png" group-title="Local",CBS 12 West Palm Beach FL (WPEC) (720p) -https://content.uplynk.com/channel/0123b306191a4307a31b9fb573213fd3.m3u8 -#EXTINF:-1 tvg-id="WMAZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FAqyK7J.jpg" group-title="Local",CBS 13 Macon GA (WMAZ-TV) (1080p) -https://livevideo01.13wmaz.com/hls/live/2017376/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WLTX.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nSCGzFC.jpg" group-title="Local",CBS 19 Columbia SC (WLTX) (1080p) -https://livevideo01.wltx.com/hls/live/2017152/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KYTXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DXSPhYX.jpg" group-title="Local",CBS 19 Tyler TX (KYTX) (1080p) -https://livevideo01.cbs19.tv/hls/live/2017377/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WGCLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XuzRQjy.png" group-title="Local",CBS 46 Atlanta GA (WGCL-TV) (720p) [Not 24/7] -https://live.field59.com/wgcl/ngrp:wgcl1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="WJAXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LW3Dfbt.png" group-title="Local",CBS 47 Action News Jacksonville FL (WJAX-TV) (720p) -https://d2eit0bra9qkiw.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10050_b9ac3c93-be86-4f7e-82b8-796b7f8bfda3_LE/in/cmg-wjaxtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="WIVB-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Buffalo NY (WIVB-TV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="WWJ-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Detroit MI (WWJ-TV1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WWJ-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Detroit MI (WWJ-TV1) (480p) -http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit/playlist.m3u8 -#EXTINF:-1 tvg-id="CBSNewsBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",CBS News Baltimore (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsDFW.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",CBS News Dallas Ft Worth (720p) -https://cbsn-dal.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBS News Live (360p) -https://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsLA.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc481cda1d430000948a1b4/colorLogoPNG.png" group-title="Local;News",CBS News Los Angeles (720p) -https://cbsn-la.cbsnstream.cbsnews.com/out/v1/57b6c4534a164accb6b1872b501e0028/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsMiami.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",CBS News Miami (720p) -https://cbsn-mia.cbsnstream.cbsnews.com/out/v1/ac174b7938264d24ae27e56f6584bca0/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsNY.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc9b8223687ff000936ed79/colorLogoPNG.png" group-title="Local;News",CBS News New York (720p) -https://www.cbsnews.com/common/video/cbsn-ny-prod.m3u8 -#EXTINF:-1 tvg-id="KOVR.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60cb6df2b2ad610008cd5bea/colorLogoPNG.png" group-title="Local;News",CBS News Sacramento (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnsac_2/master.m3u8 -#EXTINF:-1 tvg-id="KIRO-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Seattle WA (KIRO-TV1) (720p) -http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KIRO-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Seattle WA (KIRO-TV1) (480p) -http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="WCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Tallahassee FL (WCTV1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WCTVDT.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KTHVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PVINnkR.jpg" group-title="Local",CBS THV11 Little Rock AR (KTHV) (1080p) -https://livevideo01.thv11.com/hls/live/2017154/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN (720p) [Not 24/7] -https://cbsnhls-i.akamaihd.net/hls/live/264710/CBSN_mdialog/prodstream/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN (720p) [Offline] -https://cbsn-us-cedexis.cbsnstream.cbsnews.com/out/v1/55a8648e8f134e82a470f83d562deeca/master.m3u8 -#EXTINF:-1 tvg-id="WJZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",CBSN Baltimore (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsBoston.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",CBSN Boston (720p) -https://cbsn-bos.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 -#EXTINF:-1 tvg-id="WBZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",CBSN Boston MA (720p) [Offline] -https://cbsn-bos-cedexis.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 -#EXTINF:-1 tvg-id="KTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",CBSN Dallas Ft Worth TX (720p) [Offline] -https://cbsn-dal-cedexis.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 -#EXTINF:-1 tvg-id="CBSNLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN Live Event (720p) -https://cbsnewshd-lh.akamaihd.net/i/cbsnewsLivePlayer_1@196305/master.m3u8 -#EXTINF:-1 tvg-id="CCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/feFWTb8.jpg" group-title="Local",CC-TV (720p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/charlotte/G0055_002/playlist.m3u8 -#EXTINF:-1 tvg-id="CCXMediaNorthBrooklynParkMN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EOeoqsd.jpg" group-title="Local",CCX Media North Brooklyn Park MN (1080p) -http://156.142.85.152/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="CelebritySceneTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2D1e2bH.png" group-title="",Celebrity Scene TV (720p) -https://playout4multirtmp.tulix.tv/live8/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="CerritosTV3.us" tvg-country="US" tvg-language="English" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/us-cerritos-tv3.jpg" group-title="Local",Cerritos TV3 (360p) -https://granicusliveus4-a.akamaihd.net/cerritos/G0010_002/playlist.m3u8 -#EXTINF:-1 tvg-id="WFTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/S3fqmWY.png" group-title="Local",Channel 9 Orlando FL (WFTV) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wftve2-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="CVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VFPid91.png" group-title="Local",Channel 23 Clark Vancouver TV (CVTV) (1080p) [Not 24/7] -https://wowzaprod3-i.akamaihd.net/hls/live/252233/15b8d438/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelFight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cruTxMF.png" group-title="Sports",Channel Fight (540p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=68 -#EXTINF:-1 tvg-id="Charge.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fuw0hHE.png" group-title="Movies",Charge! (720p) -http://content.uplynk.com/channel/37eb732888614810b512fdd82604244e.m3u8 -#EXTINF:-1 tvg-id="ChargeEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Entertainment",Charge! Tallahassee FL (WTWC-TV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/CHARGE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://live.chdrstatic.com/cbn/index.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://live.chdrstatic.com/cbn/primary/index.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://live.chdrstatic.com/cheddar/primary/index.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) [Offline] -https://content.uplynk.com/channel/4ee18bd581dc4d3b90303e0cb9beeb0f.m3u8 -#EXTINF:-1 tvg-id="ChefChampion.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/15a9pG9.png" group-title="Cooking",Chef Champion (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-chefchampion/mono.m3u8 -#EXTINF:-1 tvg-id="ChefRocShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tn9bRD1.jpg" group-title="Cooking",Chef Roc Show (540p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-chefrock/mono.m3u8 -#EXTINF:-1 tvg-id="ChiveTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/a-/AN66SAz6Ssqjkt5Zn__8q2-hhZEPzoma1h3_IshrpQ=s900-mo-c-c0xffffffff-rj-k-no" group-title="Outdoor",Chive TV (720p) -https://a.jsrdn.com/broadcast/4df1bf71c1/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PfFJy5E.png" group-title="Religious",Christian Youth Channel (CYC) (1080p) -http://media.smc-host.com:1935/cycnow.com/cyc2/playlist.m3u8 -#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PfFJy5E.png" group-title="Religious",Christian Youth Channel (CYC) (1080p) -http://media3.smc-host.com:1935/cycnow.com/smil:cyc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Cinemax.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" group-title="Movies",Cinemax [Geo-blocked] -http://23.237.202.43:7283/CINEMAX-FHD/index.m3u8?sn=Ux0Oojow5FkqHQCpMmUNQKUr4Wb&tm=1626349319&un=rommel07 -#EXTINF:-1 tvg-id="CinemaxAsia.us" tvg-country="US" tvg-language="English;Vietnamese" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Movies",Cinemax Asia (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -https://livecdn.fptplay.net/hda1/cinemax_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CinemaxEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" group-title="Movies",Cinemax East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cinemax.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CinePride.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://image.roku.com/developer_channels/prod/b44cdb31be546ae7551f35354772e943da2cb179c83ba910122623ffd00bd4a5.png" group-title="Lifestyle",CinePride (720p) -https://content.uplynk.com/channel/e54d7e92a0154d67ae0770c9d4210e77.m3u8 -#EXTINF:-1 tvg-id="CircleEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/circle-us.png" group-title="Entertainment",Circle Tallahassee FL (WCTV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/ION.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hNdQFtK.jpg" group-title="Legislative",City of Champaign IL (CGTV) (234p) [Offline] -https://reflect-live-champaign.cablecast.tv/live/CELL-296k-234p/CELL-296k-234p.m3u8 -#EXTINF:-1 tvg-id="Civilized.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ge5SMLV.png" group-title="Lifestyle",Civilized. (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2531932c8368bdbfd87c/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicArtsShowcase.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2LJzdu6.png" group-title="Classic",Classic Arts Showcase (720p) [Offline] -https://d3s1xaoyhrialn.cloudfront.net/CAS/index.m3u8 -#EXTINF:-1 tvg-id="ClassicCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tC4AePW.png" group-title="Classic",Classic Cinema (240p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-classiccinema/mono.m3u8 -#EXTINF:-1 tvg-id="ClassicMoviesChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pltVS6t.png" group-title="Classic",Classic Movies Channel (720p) -https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicTV4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU0OTVf/NostTV_ClassicTV4U.png" group-title="Classic",Classic TV 4U (480p) -https://broadcast.mytvtogo.net/classictv4u/classictv4u/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudflareTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://blog-cloudflare-com-assets.storage.googleapis.com/2020/06/twitter-1-1.png" group-title="Education",Cloudflare TV (720p) -https://cloudflare.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="CNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnbc-prime-neon-us.png" group-title="News",CNBC (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/CNBC/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCArabiya.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/a6QmjRT.png" group-title="Business",CNBC Arabiya (1080p) -https://hiplayer.hibridcdn.net/t/cnbcarabia-live.m3u8 -#EXTINF:-1 tvg-id="CNBCEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/53EgUZN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Business",CNBC Europe (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s65/index.m3u8 -#EXTINF:-1 tvg-id="CNBCIndonesia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/53EgUZN.png" group-title="Business",CNBC Indonesia (720p) -https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCTV18.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/3yumcV3.jpg" group-title="Business",CNBC TV 18 (504p) -https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNN.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cnn.png" group-title="News",CNN (720p) -http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CNN.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cnn.png" group-title="News",CNN (720p) -http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNBrasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/JXb5l9K.png" group-title="News",CNN Brasil (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvdwhh_fDyWccR42-rReZLw/live -#EXTINF:-1 tvg-id="CNNChile.us" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tNxumYO.png" group-title="News",CNN Chile (720p) [Timeout] -https://unlimited1-cl-movistar.dps.live/cnn/cnn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zeg2ZGW.jpg" group-title="News",CNN en Español [Timeout] -http://209.91.213.10:8088/play/a014 -#EXTINF:-1 tvg-id="CNNPhilippines.us" tvg-country="PH" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/CNN_Philippines_Logo.svg/220px-CNN_Philippines_Logo.svg.png" group-title="News",CNN Philippines (720p) [Not 24/7] -https://streaming.cnnphilippines.com/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNTurk.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://haber.sol.org.tr/sites/default/files/styles/newsimagestyle_615x410/public/20110201141238cnn_turk_logosu.png" group-title="News",CNN Türk (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/129 -#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (720p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (480p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_2_1964000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] -http://stream.tvtap.live:8081/live/us-cnn.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_3_1464000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_4_1064000.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) -https://comedydynamics-wurl.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Comet.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/53/Comet_TV_Logo.png" group-title="Entertainment",Comet (720p) -http://content.uplynk.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) -https://d2rir1vttzppfq.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="CookingPanda.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z6pDpzl.png" group-title="Cooking",Cooking Panda (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=46 -#EXTINF:-1 tvg-id="CornerstoneTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cV8FKR9.png" group-title="Religious",Cornerstone TV (640p) -http://cdn.media9.truegod.tv/ctvnlive/smil:ctvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60526b849849524498245b78" group-title="Documentary",Court TV (1080p) -https://cdn-katz-networks-01.vos360.video/Content/HLS/Live/channel(courttv)/index.m3u8 -#EXTINF:-1 tvg-id="CourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60526b849849524498245b78" group-title="Documentary",Court TV (720p) -https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8 -#EXTINF:-1 tvg-id="CourtTVMystery.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/phillybtv/logos/20530-53728.png" group-title="General",Court TV Mystery (WTXL-TV4) (480p) -https://5e6cea03e25b6.streamlock.net/live/QVC.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimePlusInvestigationAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/CrimeInvestigation.id.png" group-title="Entertainment",Crime + Investigation Asia [Offline] -http://203.154.243.31:15001 -#EXTINF:-1 tvg-id="CSatTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cigpFzt.png" group-title="Religious",CSat TV (1080p) [Not 24/7] -http://media.smc-host.com:1935/csat.tv/smil:csat.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CTNCourtFeed.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/He6Ugfn.jpg" group-title="Local",CT-N Court Feed (360p) [Not 24/7] -http://video.ct-n.com/live/ctnSupreme/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="CTNLiveStream2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/He6Ugfn.jpg" group-title="Local",CT-N Live Stream 2 (360p) [Not 24/7] -http://video.ct-n.com/live/web2stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CTNTVConneticut.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pb0TFQt.jpg" group-title="Local",CT-N TV Conneticut (720p) [Not 24/7] -http://video.ct-n.com/live/ctnstream/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (720p) -http://rtmp.ottdemo.rrsat.com/ctntv/ctntvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (404p) -http://admin.ottdemo.rrsat.com:1935/ctntv/ctntv2/playlist.m3u8 -#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (720p) [Not 24/7] -https://rrsatrtmp.tulix.tv/ctntv/ctntvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WFGCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UtaBUfH.png" group-title="Religious",CTN 61 Riviera Beach FL (WFGC) (720p) [Not 24/7] -http://hls1.livestreamingcdn.com:1935/livecdn631/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CWSeed.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZrtfPb.png" group-title="Entertainment",CW Seed (432p) [Geo-blocked] -https://cwseedlive.cwtv.com/ingest/playlist.m3u8 -#EXTINF:-1 tvg-id="CycleWorld.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RZE3Pwf.png" group-title="Auto",Cycle World (720p) [Offline] -https://a.jsrdn.com/broadcast/3e5befe5dd/+0000/c.m3u8 -#EXTINF:-1 tvg-id="DanceStarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xLqyZQQ.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Music",DanceStar TV (720p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 -https://vcndstv.teleosmedia.com/stream/dstv/dstv/playlist.m3u8 -#EXTINF:-1 tvg-id="DCCouncilChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZHST0G2.png" group-title="Legislative",DC Council Channel (1080p) -https://video.oct.dc.gov/out/u/15_12.m3u8 -#EXTINF:-1 tvg-id="DCEagleCam.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VPTRThD.png" group-title="Outdoor",DC Eagle Cam (720p) -http://americaneagle-lh.akamaihd.net/i/AEF_DC1@31049/master.m3u8 -#EXTINF:-1 tvg-id="DigiTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.watchdigitv.com/themes/custom/digitheme/images/digi_assets/digitv_logo/digi-logo-header-transparent.svg" group-title="General",Digi TV (WFTY-DT6) (720p) -https://amg01443-netxholdingsllc-digitv200-ono-zzfy4.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelAsia.us" tvg-country="ASIA" tvg-language="English" tvg-logo="" group-title="Kids",Disney Channel Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Disneyxd/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelEspana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Disney_Channel_logo_%282014%29.svg/792px-Disney_Channel_logo_%282014%29.svg.png" group-title="Kids",Disney Channel España (1080p) [Timeout] -http://5.255.90.184:2004/play/a006/index.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelJapan.us" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/H2O9F2E.png" group-title="Entertainment",Disney Channel Japan (720p) [Not 24/7] -https://redlabmcdn.s.llnwi.net/jp04/bs13hd/index.mpd -#EXTINF:-1 tvg-id="DisneyChannelPortugal.es" tvg-country="PT" tvg-language="Portuguese;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Disney_Channel_logo_%282014%29.svg/792px-Disney_Channel_logo_%282014%29.svg.png" group-title="Kids",Disney Channel Portugal [Offline] -http://185.236.229.21:9981/play/a056 -#EXTINF:-1 tvg-id="DisneyJuniorAsia.us" tvg-country="ASIA" tvg-language="Arabic" tvg-logo="" group-title="Kids",Disney Junior Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Disneyjr/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyJuniorLatinoamerica.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Kids",Disney Junior Latinoamérica [Timeout] -http://209.91.213.10:8088/play/a00n -#EXTINF:-1 tvg-id="DisneyJuniorPortugal.es" tvg-country="PT" tvg-language="Portuguese;English" tvg-logo="" group-title="Kids",Disney Junior Portugal [Offline] -http://185.236.229.21:9981/play/a03q -#EXTINF:-1 tvg-id="DistrictofColumbiaNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GcSXd5s.png" group-title="Legislative",District of Columbia Network (DCN) (1080p) -https://video.oct.dc.gov/out/u/DCN.m3u8 -#EXTINF:-1 tvg-id="DittyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p5rREUo.png" group-title="",Ditty TV (720p) [Not 24/7] -https://azroe0x-lh.akamaihd.net/i/test_1@775856/master.m3u8 -#EXTINF:-1 tvg-id="DivineVision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wjCFvLR.png" group-title="Religious",Divine Vision (480p) [Not 24/7] -https://divineplayout-us2.tulix.tv/live/Stream1/.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] -https://dovenow.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DrGeneScott.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FppLahc.jpg" group-title="Religious",Dr. Gene Scott (480p) -https://wescottcchls-lh.akamaihd.net/i/wcc_wowlivehls@24607/master.m3u8 -#EXTINF:-1 tvg-id="dreamforce.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://dreamforcebtl.online/wp-content/uploads/2021/07/dreamforce-radio-logo-final-e1625783518759-332x191.png" group-title="General",DreamforceBTL (Rhino Radio TV | RRTV) (720p) [Offline] -https://stmv1.panelzcast.com/dreamforcebtl/dreamforcebtl/playlist.m3u8 -#EXTINF:-1 tvg-id="DrinkTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZAqKTkp.png" group-title="Entertainment",Drink TV (720p) [Offline] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=62 -#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) -https://a.jsrdn.com/broadcast/e29bdbbbf3/+0000/c.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] -https://59d39900ebfb8.streamlock.net/molaughtertv/molaughtertv/playlist.m3u8 -#EXTINF:-1 tvg-id="Ecuavisa.us" tvg-country="US" tvg-language="English" tvg-logo="http://2.bp.blogspot.com/-hBXrxjYak44/UwzxFQPotaI/AAAAAAAABDU/xxrf0lEwffk/w1200-h630-p-k-no-nu/ecuavisa.png" group-title="",Ecuavisa (720p) -https://livestreamcdn.net:444/Alientoenvivo/Alientoenvivo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElConflecto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7mMRKee.png" group-title="Series",El Conflecto (480p) -https://content.uplynk.com/channel/c56a6c94a53843c79d3eca411d39f96f.m3u8 -#EXTINF:-1 tvg-id="ElMaqar.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",El Maqar (1080p) -http://135.181.79.179/ElmaqarTVHD/playlist.m3u8?token=mobileuser -#EXTINF:-1 tvg-id="ElMaqar.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",El Maqar (1080p) [Offline] -rtmp://elmaqar.info:1935/icopts/elKarous -#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/APhSi1Y.jpg" group-title="Religious",El Sembrador Nueva Evangelización (ESNE) (720p) -https://zypelive-lh.akamaihd.net/i/default_1@44045/master.m3u8 -#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/APhSi1Y.jpg" group-title="Religious",El Sembrador Nueva Evangelización (ESNE) (720p) -https://zypelive-lh.akamaihd.net/i/default_1@745572/master.m3u8 -#EXTINF:-1 tvg-id="ElbesharaGTV.us" tvg-country="US;EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/wup8DKR.jpg" group-title="Religious",Elbeshara GTV (1080p) [Not 24/7] -http://media3.smc-host.com:1935/elbesharagtv.com/gtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjgzOTI0NjRf/ElectricNow_300x300.png" group-title="Entertainment",Electric Now (720p) [Not 24/7] -https://ov.ottera.tv/live/master.m3u8?channel=elec_en -#EXTINF:-1 tvg-id="EntertainmentTonight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TXamgdB.png" group-title="News",Entertainment Tonight (1080p) -https://etlive-mediapackage-fastly.cbsaavideo.com/dvr/manifest.m3u8 -#EXTINF:-1 tvg-id="Entrepreneur.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Wb4WPPK.jpg" group-title="Series",Entrepreneur (720p) -https://a.jsrdn.com/broadcast/7582ed85f7/+0000/c.m3u8 -#EXTINF:-1 tvg-id="EscambiaCountyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SKfoci2.png" group-title="Legislative",Escambia County TV (720p) [Offline] -https://stream.swagit.com/live-edge/escambiacountyfl/live-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperanzaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/U5vTVsL.jpg" group-title="Religious",Esperanza TV (480p) [Not 24/7] -http://k3.usastreams.com:1935/etvSD/etvSD/playlist.m3u8 -#EXTINF:-1 tvg-id="ESR24x7eSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d2f4c46818164091e1fd4" group-title="Entertainment",ESR 24x7 eSports Network (1080p) -https://eyeonesports.com/ES2RA-628g.m3u8 -#EXTINF:-1 tvg-id="EverydayHeroes.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Iam3ol3.png" group-title="",Everyday Heroes (720p) -https://a.jsrdn.com/broadcast/7b1451fa52/+0000/c.m3u8 -#EXTINF:-1 tvg-id="EWTNAfricaAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Africa-Asia (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-18/ngrp:yjnk-afxc_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNAsiaPacific.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Asia-Pacific (720p) [Not 24/7] -https://cdn3.wowza.com/1/QmVNUVhTNTZSS3Uz/YWQ0aHpi/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNAsiaPacific.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Asia-Pacific (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-12/ngrp:q6ms-g1u9_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (720p) [Not 24/7] -https://cdn3.wowza.com/1/YW5wSWZiRGd2eFlU/bGV0aVBq/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-34/ngrp:1d1d-wqrm_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (720p) [Offline] -https://dyo5cp96eopax.cloudfront.net/p/CANE.m3u8 -#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_ewtn_m.png" group-title="Religious",EWTN el Canal Católico (720p) [Not 24/7] -https://cdn3.wowza.com/1/SmVrQmZCUXZhVDgz/b3J3MFJv/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_ewtn_m.png" group-title="Religious",EWTN el Canal Católico (1080p) [Timeout] -https://live-fd164e1.rmbl.ws/slot-21/ngrp:ajdj-xq6n_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Europe (720p) [Not 24/7] -https://cdn3.wowza.com/1/T2NXeHF6UGlGbHY3/WFluRldQ/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Europe (1080p) [Offline] -https://live-fd164e1.rmbl.ws/slot-27/ngrp:ipy0-yeb3_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNkatholischesTV.us" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ewtnkatholischestv.png" group-title="Religious",EWTN katholisches TV [Not 24/7] -https://cdn3.wowza.com/1/NWFLbEVOVjNsQWhP/YnpVbld5/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN US (720p) [Offline] -https://d3kr0d4mfjxpbv.cloudfront.net/p/SPAS.m3u8 -#EXTINF:-1 tvg-id="ExternalOttera.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",External Ottera (720p) -https://otteravision-tg.ottera.tv/live/master.m3u8?channel=tg_tg_us -#EXTINF:-1 tvg-id="ExtremaTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.unored247.com/bill/templates/smartlinehost/html/images/extrema_client_logo.png" group-title="",Extrema TV (720p) -http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="EYE95America.us" tvg-country="US" tvg-language="Urdu" tvg-logo="https://i.imgur.com/0uRtaTf.jpg" group-title="News",EYE95 America (1080p) [Not 24/7] -https://cdn20.liveonlineservices.com/hls/eye95tv.m3u8 -#EXTINF:-1 tvg-id="FairfaxPublicAccess.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.fcac.org/sites/all/themes/fcac_base/images/logo-icon.png" group-title="Legislative",Fairfax Public Access (544p) [Not 24/7] -https://cs.ebmcdn.net/eastbay-live-hs-1/fairfax-pull/mp4:fairfax.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FaithLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/profile_images/1131290789/fnlLogo_400x400.png" group-title="Religious",Faith & Life TV (720p) [Offline] -https://na-all9.secdn.net/logos-channel/live/faithlifetv/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionBoxHD.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/9bH6PBu.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Lifestyle",Fast&Fun Box (Russian) (480p) [Timeout] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s79/index.m3u8 -#EXTINF:-1 tvg-id="FastWay.us" tvg-country="US;IN" tvg-language="English" tvg-logo="https://i.imgur.com/cBkYHDZ.png" group-title="General",FastWay (576p) [Offline] -http://fastway.ddns.net:6421/fastway/live10/index.m3u8 -#EXTINF:-1 tvg-id="FieldStream.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9NsnVCJ.png" group-title="Outdoor",Field & Stream (720p) [Offline] -https://a.jsrdn.com/broadcast/7536b84786/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FIGHTSPORTS.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",FIGHT SPORTS (1080p) -https://shls-fight-sports-ak.akamaized.net/out/v1/ee7e6475b12e484bbfa5c31461ad4306/index.m3u8 -#EXTINF:-1 tvg-id="FightBoxHD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i0.pngocean.com/files/812/462/345/filmbox-hd-high-definition-television-set-top-box-broadcasting-fightbox.jpg" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Sports",FightBox HD (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 -http://ott-cdn.ucom.am/s86/index.m3u8 -#EXTINF:-1 tvg-id="FightingSpirit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OeVsflz.png" group-title="",Fighting Spirit (720p) -https://a.jsrdn.com/broadcast/47cff5378f/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FireplaceLounge.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1VZZCZU.jpg" group-title="Relax",Fireplace Lounge (720p) -https://a.jsrdn.com/broadcast/aee08372e5/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FishTank.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/L5JDAkh.png" group-title="Relax",Fish Tank (720p) -https://a.jsrdn.com/broadcast/8b43a16c1e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Fite.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/21QWq2v0DGL.png" group-title="Sports",Fite (720p) [Not 24/7] -https://cdn-cf.fite.tv/linear/fite247/playlist.m3u8 -#EXTINF:-1 tvg-id="FolkTVEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hV46zMX.png" group-title="Classic",Folk TV East (480p) [Not 24/7] -https://584b0aa350b92.streamlock.net/folk-tv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KTVI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Hednfc9.png" group-title="Local",Fox 2 St. Louis MO (KTVI) (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/united-states/ktvi-tv -#EXTINF:-1 tvg-id="KMSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WBgiaiB.jpg" group-title="Local",Fox 9 Minneapolis-St. Paul MN (KMSP) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/fox-minneapolis -#EXTINF:-1 tvg-id="KXVATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TSTAkkq.jpg" group-title="Local",Fox 15 West Texas Abilene TX (KXVA) (1080p) -https://livevideo01.myfoxzone.com/hls/live/2017381/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KOKITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pRKEMb1.jpg" group-title="Local",Fox 23 Tulsa OK (KOKI-TV) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-kokitv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="WTGSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/99/FOX28WTGS.PNG" group-title="Local",Fox 28 Savannah GA (WTGS) (720p) -https://content.uplynk.com/channel/e56ba52a1b9d45ad8c8a033fd83fe480.m3u8 -#EXTINF:-1 tvg-id="WFLDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lf5sLNn.png" group-title="Local",Fox 32 Chicago IL (WFLD) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/fox-chicago -#EXTINF:-1 tvg-id="WPMTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kRaIhOa.jpg" group-title="Local",Fox 43 Harrisburg PA (WPMT) (1080p) -https://livevideo01.fox43.com/hls/live/2011656/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WZDXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2HWx7Av.jpg" group-title="Local",Fox 54.1 Huntsville AL (WZDX) (1080p) -https://livevideo01.rocketcitynow.com/hls/live/2011659/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WTICTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6QlmS1C.jpg" group-title="Local",Fox 61 Hartford CT (WTIC-TV) (1080p) -https://livevideo01.fox61.com/hls/live/2011658/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WFXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Boston MA (WFXT1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston/playlist.m3u8 -#EXTINF:-1 tvg-id="WFXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Boston MA (WFXT1) (720p) [Not 24/7] -http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Buffalo NY (WUTV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_FOXHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="FoxBusiness.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/61wD4dV.png" group-title="Business",Fox Business [Geo-blocked] -http://199.66.95.242/1/1172/index.m3u8?token=test -#EXTINF:-1 tvg-id="FoxCrimeAdria.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LCDcM0F.png" group-title="",Fox Crime Adria [Offline] -https://cdn1.mobiletv.bg/T10/fox_crime/fox_crime_794613_850k.m3u8 -#EXTINF:-1 tvg-id="FoxGreece.us" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="General",Fox Greece (480p) [Not 24/7] -http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxMoviesAsia.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/vs51MBW.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Fox Movies Asia (Thai) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_FoxMoviesHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (720p) -http://encodercdn1.frontline.ca/encoder181/output/FOX_News_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (720p) -http://trn03.tulix.tv/AsEAeOtIxz/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (480p) -http://encodercdn1.frontline.ca/encoder181/output/FOX_News/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsRadio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5SATrd.png" group-title="News",Fox News Radio (720p) -https://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8 -#EXTINF:-1 tvg-id="WUHF.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Rochester NY (WUHF-DT1) (720p) -http://encodercdn1.frontline.ca/encoder184/output/FOX_Rochester_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="Movies",Fox Russia (576p) [Not 24/7] -http://188.40.68.167/russia/fox_russia_sd/playlist.m3u8 -#EXTINF:-1 tvg-id="KCPQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Seattle WA (KCPQ1) (720p) -http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KCPQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Seattle WA (KCPQ1) (480p) -http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="KAYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Spokane WA (KAYU-TV1) (720p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KAYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Spokane WA (KAYU-TV1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="WTWC-TV2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Tallahassee FL (WTWC-TV2) (720p) -https://5e6cea03e25b6.streamlock.net/live/WTWC-FX.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxThai.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.we-play.tv//uploads/posters/-poster1602704474.jpeg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Fox Thai (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_FoxThai_TH_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) -https://247wlive.foxweather.com/stream/index.m3u8 -#EXTINF:-1 tvg-id="FreeSpeechTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ixp9SLn.png" group-title="News",Free Speech TV (480p) [Offline] -https://edge.free-speech-tv-live.top.comcast.net/out/u/fstv.m3u8 -#EXTINF:-1 tvg-id="FrightFlix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/rgNQYAl.png" group-title="Movies",FrightFlix (720p) -https://content.uplynk.com/channel/4b3fda1ff2c24556bc2c6034307d117d.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7fueltv.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzFf/FuelTV_720x720.png" group-title="Sports",Fuel TV (1080p) [Offline] -https://stream.ads.ottera.tv/playlist.m3u8?network_id=516 -#EXTINF:-1 tvg-id="FunRoads.us" tvg-country="US" tvg-language="English" tvg-logo="https://funroads.tv/wp-content/uploads/fun-roads-header-horizontal-1.png" group-title="Travel",Fun Roads (720p) -http://104.143.4.5:2080/funroads.m3u8 -#EXTINF:-1 tvg-id="FXPeru.us" tvg-country="PE" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/E32ISMV.png" group-title="Entertainment",FX Peru [Timeout] -http://209.91.213.10:8088/play/a01z -#EXTINF:-1 tvg-id="GalvestonCountyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://img.new.livestream.com/accounts/000000000141794a/1769dc58-4a38-4815-9cb7-feb1140db5ec_170x170.png" group-title="Local",Galveston County TV (720p) [Not 24/7] -https://stream.swagit.com/live-edge/galvestontx/smil:hd-16x9-1-b/playlist.m3u8 -#EXTINF:-1 tvg-id="GalxyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oPnzAPC.png" group-title="",Galxy TV (720p) -https://content.uplynk.com/channel/f467430e4a8e49a59ff3183cf51092b2.m3u8 -#EXTINF:-1 tvg-id="GanjeHozourTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHZGx5L.png" group-title="",Ganj e Hozour TV (720p) -http://topfi.ios.internapcdn.net/topfi/live_1/Test/Test.m3u8 -#EXTINF:-1 tvg-id="GenesisTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i2.wp.com/alfamedianetwork.com/wp-content/uploads/2018/08/genesistelevisionlogo.png" group-title="Religious",Genesis TV (720p) [Not 24/7] -http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Glendale11AZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Zxb1Xyj.jpg" group-title="Local",Glendale 11 AZ (360p) -https://stream.swagit.com/live-edge/glendaleaz/smil:std-4x3-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="GlobalFashionChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/s4eGYEP.jpg" group-title="Lifestyle",Global Fashion Channel (1080p) -https://vcngfcssai.teleosmedia.com/linear/globalfashionchannel/globalfashionchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="GoldenTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kAYiaJS.png" group-title="Classic",Golden TV (240p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-goldentv/mono.m3u8 -#EXTINF:-1 tvg-id="GoodLife45.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t9xHfSV.png" group-title="Religious",GoodLife 45 (720p) [Not 24/7] -http://1-fss29-s0.streamhoster.com/lv_goodlife45f1/broadcast1/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelTruthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7vQrPvk.png" group-title="Religious",Gospel Truth TV [Timeout] -https://bstna.tulix.tv/live/bs_2m/index.m3u8 -#EXTINF:-1 tvg-id="WZRACD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/biG4n2a.jpg" group-title="Entertainment",Greek Voice Live 48 Tampa Bay FL (WZRA-CD1) (480p) -http://wpso.com:1936/hls/wzra.m3u8 -#EXTINF:-1 tvg-id="GreenbeltTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uxUqIVT.png" group-title="",Greenbelt TV (480p) -https://t07113a-lh.akamaihd.net/i/t07113a_1@756729/master.m3u8 -#EXTINF:-1 tvg-id="GreensboroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wHb9BLd.png" group-title="Local",Greensboro TV [Offline] -https://granicusliveus4-a.akamaihd.net/greensboro/G0197_003/chunklist.m3u8 -#EXTINF:-1 tvg-id="GritEST.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.nep.net/images/channels/GRIT.png" group-title="Classic",Grit Tallahassee FL (WTXL-TV3) (480p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/GRIT.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="grvty.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/6065639a7ec4e2633f0c7d83" group-title="Sports",grvty (1080p) -https://d37j5jg7ob6kji.cloudfront.net/index.m3u8 -#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="US;AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/0lJwdDH.jpg" group-title="General",GünAz TV (720p) [Not 24/7] -http://gtv.live.cdn.bitgravity.com/gtv/live/feed03 -#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/a/a3/G%C3%BCnAz_TV.png" group-title="General",GünAz TV (720p) [Not 24/7] -https://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed03/playlist.m3u8 -#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="US;AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/0lJwdDH.jpg" group-title="General",GünAz TV (480p) [Offline] -rtsp://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed02?nc=1 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (1080p) -https://d3cajslujfq92p.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] -https://a.jsrdn.com/broadcast/ebf95254ca/+0000/c.m3u8 -#EXTINF:-1 tvg-id="H2.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-history2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Documentary",H2 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_H2HD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Factory TV (1080p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/e529407a-cb61-45ce-a9ad-94f0ad5e0ad9.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonRacingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Racing TV (720p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/de245a96-516c-413d-81e9-419c05bbc6a7.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonRidesTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Rides TV (1080p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/d4b0111a-3dcb-46fb-b2bb-1c27eca5df35.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson TV (1080p) [Offline] -https://hdtv.prod2.ioio.tv/broker/play/cb4086ca-daba-42f5-8acf-27ee93fee0e8.m3u8 -#EXTINF:-1 tvg-id="WVITTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3czIO1P.png" group-title="Local",Hartford WVIT 30 News (720p) [Offline] -http://wvitlive-f.akamaihd.net/i/wvitb2_1@71164/master.m3u8 -#EXTINF:-1 tvg-id="HBOFamilyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOFamily.us.png" group-title="Family",HBO Family East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/FAMILY/index.m3u8 -#EXTINF:-1 tvg-id="HBOFamilyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOFamily.us.png" group-title="Family",HBO Family East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/FAMILY/index.m3u8 -#EXTINF:-1 tvg-id="HBOHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/HBOHits.id.png" group-title="",HBO Hits (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/HITS/index.m3u8 -#EXTINF:-1 tvg-id="HBOHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/HBOHits.id.png" group-title="",HBO Hits (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/HITS/index.m3u8 -#EXTINF:-1 tvg-id="HBOMalaysia.us" tvg-country="MY" tvg-language="English" tvg-logo="https://static.epg.best/us/HBO.us.png" group-title="Movies",HBO Malaysia (720p) [Offline] -http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8 -#EXTINF:-1 tvg-id="HBOSignatureEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOSignature.us.png" group-title="",HBO Signature East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/SIG/index.m3u8 -#EXTINF:-1 tvg-id="HBOSignatureEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOSignature.us.png" group-title="",HBO Signature East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/SIG/index.m3u8 -#EXTINF:-1 tvg-id="WTLH.us" tvg-country="US" tvg-language="English" tvg-logo="https://sc.dish.com/shared/images/station-logos/HERIC.png" group-title="Classic",Heroes & Icons Tallahassee FL (WTLH1) (720p) -https://5e6cea03e25b6.streamlock.net/live/HI.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HighTimes.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TaeeQnn.png" group-title="Entertainment",High Times (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2503932c8368bdbfd875/playlist.m3u8 -#EXTINF:-1 tvg-id="HighVision.us" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",High Vision (1080p) [Not 24/7] -https://streamer1.connectto.com/HIGHVISION_WEB_1205/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="History.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/history-channel-us.png" group-title="Education",History (540p) [Not 24/7] -http://s1.mysportz.tv:2082/history/playlist.m3u8 -#EXTINF:-1 tvg-id="HistoryAsia.us" tvg-country="TH" tvg-language="Thai" tvg-logo="http://i1.kym-cdn.com/entries/icons/original/000/019/322/photo.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Documentary",History Asia (Thai) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_HISTORYHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="HistoryEast.us" tvg-country="US" tvg-language="English" tvg-logo="http://i1.kym-cdn.com/entries/icons/original/000/019/322/photo.jpg" group-title="Documentary",History East (720p) [Not 24/7] -https://bk7l2w4nlx53-hls-live.5centscdn.com/HISTORY/961ac1c875f5884f31bdd177365ef1e3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HLN.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/ia9B0dcvykqfeoPpckovKdWyc7DuwlaejOKha2f6-oNfVdUdkXw4dWBIPUArMEqNljg5uvL6AiU" group-title="News",HLN (720p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586496/cnngo/hln/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="HmongTVNetwork.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/yfGvM3K.png" group-title="",Hmong TV Network (720p) -https://livefta.malimarcdn.com/ftaedge00/cvabroadcasting.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vcrDETL.png" group-title="Religious",Holly Wire (720p) [Offline] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=141 -#EXTINF:-1 tvg-id="HonorTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/caGRikb.png" group-title="Classic",Honor TV (720p) -https://a.jsrdn.com/broadcast/d5b48/+0000/c.m3u8 -#EXTINF:-1 tvg-id="HopeChannelAfrica.us" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Africa [Offline] -http://93.152.174.144:4000/play/hopechannel/index.m3u8 -#EXTINF:-1 tvg-id="HopeChannelInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel International (1080p) [Geo-blocked] -https://hcintlinc.mmdlive.lldns.net/hcintlinc/60f14a7fec64454e90712421a46ac6f1/manifest.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (720p) -http://media1.adventist.no:1935/live/hope1/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (540p) -http://media1.adventist.no:1935/live/hope2/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (360p) -http://media1.adventist.no:1935/live/hope3/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelPhilippines.us" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Philippines (576p) [Not 24/7] -https://hcfilipino.mmdlive.lldns.net/hcfilipino/f6e775755f2647159e0adefe01a44a0e/manifest.m3u8 -#EXTINF:-1 tvg-id="HorizonArmenian.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/GVUIJiD.png" group-title="",Horizon Armenian (1080p) -http://5.254.76.34:17070/C441/index.m3u8?token=kdsdkwy453wrRq29IIIo -#EXTINF:-1 tvg-id="HorizonArmenian.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/GVUIJiD.png" group-title="",Horizon Armenian (1080p) -http://5.254.76.34:17070/C441/mono.m3u8?token=kdsdkwy453wrRq29IIIo -#EXTINF:-1 tvg-id="HorizonSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sjOIOkK.png" group-title="Sports",Horizon Sports (720p) [Offline] -https://a.jsrdn.com/broadcast/20dc4269f3/+0000/c.m3u8 -#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) -https://html5-lh.akamaihd.net/i/html5_01@182967/master.m3u8 -#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) -https://lshsn1usott-lh.akamaihd.net/i/lshsn1usott_01@838842/master.m3u8 -#EXTINF:-1 tvg-id="HSN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/us-hsn-2.jpg" group-title="Shop",HSN 2 (720p) [Not 24/7] -https://hsn2html5-lh.akamaihd.net/i/hsn2html5_01@13178/master.m3u8 -#EXTINF:-1 tvg-id="HTV1HoustonTelevision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zvj1boM.jpg" group-title="Local",HTV 1 Houston Television (720p) -https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-a/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV2HoustonTelevision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zvj1boM.jpg" group-title="Local",HTV 2 Houston Television (720p) -https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-b/playlist.m3u8 -#EXTINF:-1 tvg-id="HumraazTV.us" tvg-country="US;PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/lzJ9Whg.png" group-title="News",Humraaz TV [Not 24/7] -https://cdn61.liveonlineservices.com/hls/humraaz.m3u8 -#EXTINF:-1 tvg-id="HuntChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DkvWWbE.png" group-title="Outdoor",Hunt Channel (1080p) -https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/index.m3u8 -#EXTINF:-1 tvg-id="HuntChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DkvWWbE.png" group-title="Outdoor",Hunt Channel (1080p) [Offline] -https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/mono.m3u8 -#EXTINF:-1 tvg-id="IDG.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/M0omWCW.jpg" group-title="News",IDG (720p) -https://a.jsrdn.com/broadcast/529a360c04/+0000/c.m3u8 -#EXTINF:-1 tvg-id="IMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605e13c8d9eb3e1df47db303" group-title="Sports",IMPACT! Wrestling (1080p) -https://d2p372oxiwmcn1.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="IndTVUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gWPiYH9.png" group-title="Entertainment",Ind TV USA (720p) -https://t06858-lh.akamaihd.net/i/t06858a_1@719164/master.m3u8 -#EXTINF:-1 tvg-id="InfoWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MBsQp1e.png" group-title="News",InfoWars (720p) -http://wpc.9ec1.edgecastcdn.net/249EC1/infowarshd-edgecast/hd720.m3u8 -#EXTINF:-1 tvg-id="InfoWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MBsQp1e.png" group-title="News",InfoWars (720p) -https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="InspirationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CQnD7yU.png" group-title="Religious",Inspiration TV (360p) -https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/master.m3u8 -#EXTINF:-1 tvg-id="InspirationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CQnD7yU.png" group-title="Religious",Inspiration TV (288p) -https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/index_2_av-p.m3u8 -#EXTINF:-1 tvg-id="WSVI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gTmNrk6.png" group-title="Local",Ion 8 Christiansted VI (WSVI-TV) (300p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@534251/master.m3u8 -#EXTINF:-1 tvg-id="IraneFarda.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QlEmGaH.jpg" group-title="",Irane Farda (576p) [Not 24/7] -http://51.210.199.53/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IslandEscape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZvF6Yin.png" group-title="Relax",Island Escape (720p) -https://a.jsrdn.com/broadcast/41e3e6703e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ISN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pmqYFk9.jpg" group-title="Religious",ISN (1080p) -https://cpdc101-lh.akamaihd.net/i/ISNCPDCMB1_1@314337/master.m3u8 -#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (404p) [Not 24/7] -http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/master.m3u8 -#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (404p) [Not 24/7] -http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (304p) [Not 24/7] -https://uni8rtmp.tulix.tv/shalomtv-pc/smil:shalomtv.smil/master.m3u8 -#EXTINF:-1 tvg-id="JewelryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1HJraea.png" group-title="Shop",Jewelry Television (720p) -https://cdn3.wowza.com/1/eUdsNEcyMmRvckor/K3pydHZw/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="JewelryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1HJraea.png" group-title="Shop",Jewelry Television (720p) [Not 24/7] -https://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8 -#EXTINF:-1 tvg-id="KCKSLD12.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Lifestyle",Jewelry TV (KCKS-LD12) (480p) -https://cdn.igocast.com/channel12_hls/channel12_master.m3u8 -#EXTINF:-1 tvg-id="JewishLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VEoLKzb.png" group-title="Religious",Jewish Life TV (480p) [Not 24/7] -https://d3svwuchx5fp62.cloudfront.net/rtplive/smil:jltv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (432p) -https://johnnycarson-zype.amagi.tv/playlistR432p.m3u8 -#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) -http://d3lzjtrf5mvf3p.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) -https://vcnovation.teleosmedia.com/linear/ovation/journy/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) -https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8 -#EXTINF:-1 tvg-id="JudgeKarensCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/rku6tmo.png" group-title="",Judge Karen's Court (540p) -https://cb5273f195a147f2bcf23544e4495f66.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5eb1e7261474f9020c06f9ec/playlist.m3u8 -#EXTINF:-1 tvg-id="JuventudRenovadaenelEspirituSanto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9Brfh2M.png" group-title="Religious",Juventud Renovada en el Espiritu Santo (720p) [Not 24/7] -http://teleredmcp.com:1935/jrestv/jrestv/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/j4VjHWN.jpg" group-title="Religious",Kalemeh TV (1080p) [Not 24/7] -http://184.75.208.98:1935/live/kalemeh/playlist.m3u8 -#EXTINF:-1 tvg-id="KartoonCircus.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/KartoonFunTime_209x209.png?raw=true" group-title="Kids",Kartoon Circus (720p) -https://simultv.s.llnwi.net/n4s4/KartoonCircus/interlink.m3u8 -#EXTINF:-1 tvg-id="KBPSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QleHNMl.png" group-title="Sports",KBP Sports (720p) [Not 24/7] -https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSVAssyriaSat.us" tvg-country="US" tvg-language="Assyrian Neo-Aramaic;English" tvg-logo="https://i.imgur.com/zEWSSdf.jpg" group-title="",KBSV/AssyriaSat (720p) [Not 24/7] -http://66.242.170.53/hls/live/temp/index.m3u8 -#EXTINF:-1 tvg-id="KCRTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mNK5D5k.jpg" group-title="",KCRT-TV 28 Richmond CA (KCRT) (360p) -http://granicusliveus3-a.akamaihd.net/richmond/G0034_002/playlist.m3u8 -#EXTINF:-1 tvg-id="KFSNNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KFSN News (1080p) [Not 24/7] -https://api.abcotvs.com/v3/kfsn/m3u8/url?id=432725&key=yuemix -#EXTINF:-1 tvg-id="KGOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",KGO-TV News (720p) -https://content.uplynk.com/channel/ext/4413701bf5a1488db55b767f8ae9d4fa/kgo_24x7_news.m3u8 -#EXTINF:-1 tvg-id="KidsFlix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbAVzad.png" group-title="Kids",KidsFlix (720p) [Not 24/7] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50 -#EXTINF:-1 tvg-id="KoolTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aILvazd.jpg" group-title="Local",Kool TV (1080p) [Timeout] -http://209.182.219.50:1935/roku/roku/playlist.m3u8 -#EXTINF:-1 tvg-id="KTLATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JH99Psi.jpg" group-title="Local",KTLA 5 Los Angeles CA (144p) -https://content.uplynk.com/channel/6cbf2d32a5384dc1b787539b1102433c.m3u8 -#EXTINF:-1 tvg-id="KTRKTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KTRK TV News (720p) -https://content.uplynk.com/channel/ext/1efe3bfc4d1e4b5db5e5085a535b510b/ktrk_24x7_news.m3u8 -#EXTINF:-1 tvg-id="KVVBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FzxuNhl.png" group-title="Local",KVVB-TV 33 Victor Valley (1080p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8 -#EXTINF:-1 tvg-id="KweliTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/x9tjDhu.png" group-title="Culture",Kweli TV (720p) -https://a.jsrdn.com/broadcast/9c897f1973/+0000/c.m3u8 -#EXTINF:-1 tvg-id="LaMegaMundial.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/742490028559982592/ddFmTivZ_400x400.jpg" group-title="Music",La Mega Mundial (720p) [Not 24/7] -http://68.235.35.243:1935/lamegamundial/lamegamundial2/playlist.m3u8 -#EXTINF:-1 tvg-id="LaMegaMundial.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/742490028559982592/ddFmTivZ_400x400.jpg" group-title="Music",La Mega Mundial (720p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/lamegamundial/lamegamundial2/playlist.m3u8 -#EXTINF:-1 tvg-id="LakeHavasuCity4.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/REqqKQ9.png" group-title="Local",Lake Havasu City 4 (240p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/lakehavasucity/G0643_002/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoThaiUSTV.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao-Thai US TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laothaius.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LatinosNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.revistalatinanc.com/wp-content/uploads/2019/02/3287_LatinosncTV.jpg" group-title="",Latinos NCTV (480p) [Not 24/7] -https://live.latinosnc.tv:1443/MRR/live/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) -https://lawcrime.s.llnwi.net/h72/lawcrimech2/playlist_scte.m3u8 -#EXTINF:-1 tvg-id="LaxSportsNetworkTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Lt9ZUYA.png" group-title="Sports",Lax Sports Network TV (720p) -https://1840769862.rsc.cdn77.org/FTF/LSN_SCTE.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVEducational.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Educational (720p) -http://edu.leominster.tv/Edu/smil:Edu.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVGovernment.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Government (720p) -http://gov.leominster.tv/Gov/smil:Gov.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVPublic.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Public (720p) [Not 24/7] -http://gov.leominster.tv/Pub/smil:Pub.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LevelOne.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Level One [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5af61be7d5eeee7af3d1db47/playlist.m3u8 -#EXTINF:-1 tvg-id="LexTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OyUrnuD.jpg" group-title="Local",Lex TV (720p) -https://granicusliveus2-a.akamaihd.net/lfucg/G0264_002/playlist.m3u8 -#EXTINF:-1 tvg-id="Lifestyle.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="Lifestyle",Lifestyle (720p) [Not 24/7] -https://bozztv.com/36bay2/gusa-lifestyle/index.m3u8 -#EXTINF:-1 tvg-id="LifevisionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pF6Wowj.jpg" group-title="Religious",LifevisionTV (720p) [Not 24/7] -https://uni5rtmp.tulix.tv/lifevision/lifevision.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LNKTVCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV City (1080p) -http://5tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LNKTVEducation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV Education (1080p) -http://80tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LNKTVHealth.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV Health (1080p) -http://10tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LogosTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logostv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTVEnglish.us" tvg-country="US" tvg-language="English" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV English (1080p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoseng/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV Mubasher (1080p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoshym/playlist.m3u8 -#EXTINF:-1 tvg-id="LoneStar.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzMxMzM1NzJf/LoneStar_250x250.png" group-title="Classic",Lone Star (960p) -https://a.jsrdn.com/broadcast/5oWx2VgEmK/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Loop80sWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s West (1080p) [Geo-blocked] -https://a500d902bdf94ea69ad343720add6036.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/80s_party_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="Loop90sWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K8YV2bR.png" group-title="Music",Loop 90s West (1080p) [Geo-blocked] -https://7626362bfa104137aded60d8d7e72ff5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/90s_kids_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopBeastModeWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/fb8c7ba652305a8700924347d46dcdff.jpeg" group-title="Music",Loop Beast Mode West (1080p) [Geo-blocked] -https://884a4c762d524aad88d463477402fb7d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopBedroomWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/2a347a69ef251082e125c7b15fc721a9.jpeg" group-title="Music",Loop Bedroom West (1080p) [Geo-blocked] -https://3bbe22c035b4409d80f997adc8ad33ee.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/bedroom_beats_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopElectronicaWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/d8d1f2a3ea03ed135a7873ff7c0ce161.jpeg" group-title="Music",Loop Electronica West (1080p) [Geo-blocked] -https://0bdf3efc906045538c63468aa2f86a96.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopFarOutWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/66b982a91d8b8f8383420675781139a1.jpeg" group-title="Music",Loop Far Out West (1080p) [Geo-blocked] -https://957d71ce01dc447384d3978d3cdc55d9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/that_70s_channel_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopFlashbackWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/52a174e6787a4ade949c6f5903777cff.jpeg" group-title="Music",Loop Flashback West (1080p) [Geo-blocked] -https://ea86081fb9454be9b3b50037f9117024.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/like_yesterday_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop West (1080p) [Geo-blocked] -https://e4d2547e0c8c492a883054acd48276be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopHottestEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NY9dKoR.png" group-title="Music",Loop Hottest East (1080p) [Geo-blocked] -https://2e9a0ef101a14c2ebe97c713bc5340be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hottest_of_the_hot_v2_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopLatinWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/20b46f1a2777723aaa45db27e7389a93.jpeg" group-title="Music",Loop Latin West (1080p) [Geo-blocked] -https://c3b9df023def467086d10677827171f8.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/latin_x_pop_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopPartyWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party West (1080p) [Geo-blocked] -https://1d79349342334eb0bdeddd168b5c6e1a.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopRBWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/6edcf875ec3ba823acec994ffd051633.jpeg" group-title="Music",Loop R&B West (1080p) [Geo-blocked] -https://0cf4f660964046daa9e0b7b6467a4e84.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hot_rnb_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopSynapseWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/e21e0005af106ee7bebea46bb17b2e93.jpeg" group-title="Music",Loop Synapse West (1080p) [Geo-blocked] -https://2807722353b745629456a555257b16bc.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTexasTunesWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/c7c4962a327ba3a25ae0dcf17a3d4e06.jpeg" group-title="Music",Loop Texas Tunes West (1080p) [Geo-blocked] -https://2fb88e730c2647d69629c6f90b0b98b9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/texas_sized_hits_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTGIFWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/2487e997c51436f8502ac737144954a7.jpeg" group-title="Music",Loop TGIF West (1080p) [Geo-blocked] -https://480e67fe68b64c35ae48b77192cb1fdf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/friday_feels_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopThatsHotWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/5e4e6c6989bea49734411e5e708f6089.jpeg" group-title="Music",Loop That's Hot West (1080p) [Geo-blocked] -https://dccd6216f2c9471399015e69d64818cd.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/thats_hot_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTrendingWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/0c789462f6e85086d20ccc04da342567.jpeg" group-title="Music",Loop Trending West (1080p) [Geo-blocked] -https://3d26c463850c48c788975a9aad86c508.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/trending_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopUnwindWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/63d5db69985110f57bd35c4cd22ee74a.jpeg" group-title="Music",Loop Unwind West (1080p) [Geo-blocked] -https://8c455e94c5ff44d0ada529dffef58ae5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/unwind_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopYachtRockWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/43a4136e6bc3e153f68bb2dd200a6635.jpeg" group-title="Music",Loop Yacht Rock West (1080p) [Geo-blocked] -https://90a0d12cbaff4b959ea24bb8a3560adf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/yacht_rock_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="Loupe4K.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/03232021/Loupe4K_190x190.png?raw=true" group-title="",Loupe 4K (2160p) -http://d2dw21aq0j0l5c.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNature4K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature 4K [Offline] -https://d27r4t30huw0iy.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveWorldUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YnOZtNm.png" group-title="Religious",LoveWorld USA (1080p) [Offline] -https://loveworldusa-lh.akamaihd.net/i/lwusa2_1@514985/master.m3u8 -#EXTINF:-1 tvg-id="LuckyDog.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1j4gwL3.png" group-title="",Lucky Dog [Offline] -http://d1gsmhzkyjhxg4.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="MadDogandMerrill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="General",Mad Dog and Merrill (540p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-mwg/playlist.m3u8 -#EXTINF:-1 tvg-id="MajestadTelevision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Religious",Majestad Televisión (480p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/majestadtv/majestadtv/playlist.m3u8 -#EXTINF:-1 tvg-id="MarvelHQ.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/QuDem5OD.png" group-title="",Marvel HQ (1080p) [Timeout] -https://feed.play.mv/live/10005200/niZoVrR2vD/master.m3u8 -#EXTINF:-1 tvg-id="MCN6.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="",MCN6 (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MAIN.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="MCN6ArtsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="",MCN6 Arts Channel (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_COMEDY.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="MCN6MusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="Music",MCN6 Music Channel (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MUSIC.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="MeTVEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/me-tv-us.png" group-title="Classic",MeTV Tallahassee FL (WCTV2) (480p) [Offline] -https://5e6cea03e25b6.streamlock.net/live/WCTVDT2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MGMHDUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/giHZyYC.png" group-title="",MGM HD USA (576p) -http://c0.cdn.trinity-tv.net/stream/uq2t763988wmx82xs37vrzrtrvaz686y22jd9gcgvgbhu88g6dntdb82kggx9zgvpvwj5wisyi5mgwwgdqzm7d6xbf7yvctwzvhsu3t57ms3wa4qxwyeuqk3ayrdwx3k2b6cdtnrydx9qa3ezqzea===.m3u8 -#EXTINF:-1 tvg-id="MiamiCityTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HJohrzO.png" group-title="Local",Miami City TV (360p) [Not 24/7] -https://granicusliveus9-a.akamaihd.net/miamifl/G2076_003/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/miamitv/smil:miamitvWEB/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVJennyLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV Jenny Live (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/JennyLive/JennyLive/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVLatino.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV Latino (720p) -https://5ee7c2b857b7f.streamlock.net/latino/latino/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV México (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/mexicotv/smil:miamitvmexicoROKU/playlist.m3u8 -#EXTINF:-1 tvg-id="MihanTV.us" tvg-country="US" tvg-language="Persian" tvg-logo="https://i.imgur.com/E6zzyqZ.jpg" group-title="News",Mihan TV (720p) [Not 24/7] -http://iptv.mihantv.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MillenniumTV24.us" tvg-country="US" tvg-language="English" tvg-logo="https://millenniumtv24.com/wp-content/uploads/2020/07/logo-new-24-02.png" group-title="Local",Millennium TV 24 (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/mnews24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MillenniumTVUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://millenniumtv.org/wp-content/uploads/2021/06/Icon-512.png" group-title="General",Millennium TV USA (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/millenniumtv-odr-up2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MissionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1qJkLDZ.png" group-title="Religious",Mission TV (1080p) [Not 24/7] -https://6096a9cf11ae5.streamlock.net:1943/live/missiontv/playlist.m3u8 -#EXTINF:-1 tvg-id="MissionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1qJkLDZ.png" group-title="Religious",Mission TV (720p) [Not 24/7] -http://stream.missiontv.com:1935/live/missiontv_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MLBNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oDOpMph.png" group-title="Sports",MLB Network [Offline] -https://hlslive-akc-med1.media.mlb.com/ls01/mlbnetwork/NETWORK_LINEAR_1/master_wired.m3u8 -#EXTINF:-1 tvg-id="MMAJunkie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nSUiODh.jpg" group-title="Sports",MMA Junkie (720p) -https://a.jsrdn.com/broadcast/80f6ba72c8/+0000/c.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tucTC1O.jpg" group-title="",Mohabat TV (540p) -http://media.mohabat.tv:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MonarchChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iSqYInb.png" group-title="Documentary",Monarch Channel (480p) -https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Motorcyclist.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QIEhpPp.png" group-title="Auto",Motorcyclist (720p) [Offline] -https://a.jsrdn.com/broadcast/256ad9e679/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Movee4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://mytvtogo.net/wp-content/uploads/2018/11/Network_Movee4U-196x126.jpg" group-title="Movies",Movee 4U (480p) [Not 24/7] -https://broadcast.mytvtogo.net/movee4u/movee4u/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieKingdom.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pIuJqYk.png" group-title="Movies",Movie Kingdom (720p) -https://a.jsrdn.com/broadcast/e9b4093a41/+0000/c.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/396885309/4ad7161a83db264f3ba4b62ef1ab662a?v=1" group-title="News",MSNBC (720p) -http://encodercdn1.frontline.ca/encoder182/output/MSNBC_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/396885309/4ad7161a83db264f3ba4b62ef1ab662a?v=1" group-title="News",MSNBC (480p) -http://encodercdn1.frontline.ca/encoder182/output/MSNBC/playlist.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/msnbc-alt-us.png" group-title="News",MSNBC (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/msnbc/playlist.m3u8 -#EXTINF:-1 tvg-id="MTVHitsEurope.us" tvg-country="EUR" tvg-language="Catalan" tvg-logo="https://i.imgur.com/hwaLKuJ.png" group-title="Music",MTV Hits Europe (576p) [Offline] -http://188.40.68.167/russia/mtv_hits/playlist.m3u8 -#EXTINF:-1 tvg-id="MTVHitsLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwaLKuJ.png" group-title="Music",MTV Hits Latinoamérica (576p) [Timeout] -http://209.91.213.10:8088/play/a00z -#EXTINF:-1 tvg-id="MTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",MTV Latinoamérica (1080p) [Timeout] -http://209.91.213.10:8088/play/a01a -#EXTINF:-1 tvg-id="WISCDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/25125/s51307_h3_aa.png" group-title="",My Madison TV (WISC-DT2) (720p) -https://ad-playlistserver.aws.syncbak.com/playlist/13613390/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkdyYXkyMDE2MDgyOSJ9.eyJtaWQiOjEzNjEzMzkwLCJtZDUiOiI2Y2M5MzczYjIxZWIwNzQ4ZDA0YTRlYzYyMjU2YjBhMiIsImlhdCI6MTQ5NzM4MTU5NywiaXNzIjoiU3luY2JhayIsInN1YiI6IkdyYXkifQ.qJPiMCbnGjAn9wgPrGjVl3M9Xfc4CVSyoZTZ5OH-1jo -#EXTINF:-1 tvg-id="Mythos.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JBEqPZP.png" group-title="Movies",Mythos (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-mythos/playlist.m3u8 -#EXTINF:-1 tvg-id="KCWXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/A43Njed.png" group-title="",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7] -http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV (720p) -http://iphone-streaming.ustream.tv/uhls/6540154/streams/live/iphone/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV (720p) [Not 24/7] -https://hls.ums.ustream.tv/playlist/directhls/channel/6540154/playlist.m3u8?sgn=31d0dfb847c358d4cedcd2256dc4e1c42a7f13a7 -#EXTINF:-1 tvg-id="NASATVISSViews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV ISS Views (480p) [Not 24/7] -http://iphone-streaming.ustream.tv/uhls/9408562/streams/live/iphone/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATVMedia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Education",NASA TV Media (720p) -https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master.m3u8 -#EXTINF:-1 tvg-id="NASATVPublic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CH6VcTR.jpg" group-title="Education",NASA TV Public (720p) -https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Nat_geo_channel_abu_dhabi.png/220px-Nat_geo_channel_abu_dhabi.png" group-title="Documentary",National Geographic Abu Dhabi (1080p) -https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://1000logos.net/wp-content/uploads/2017/04/Color-National-Geographic-Logo-500x250.jpg" group-title="Documentary",National Geographic East (720p) [Geo-blocked] -https://livecdn.fptplay.net/foxlive/natgeohd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicEspaña.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://1000logos.net/wp-content/uploads/2017/04/Color-National-Geographic-Logo-500x250.jpg" group-title="Documentary",National Geographic España [Timeout] -http://5.255.90.184:2001/play/a04i -#EXTINF:-1 tvg-id="NationalGeographicWild.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild [Offline] -https://cdn1.mobiletv.bg/T5/ng_wild_hd/ng_wild_hd_794613_850k.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildMiddleEast.us" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild Middle East (720p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild Russia (1080p) [Not 24/7] -https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8 -#EXTINF:-1 tvg-id="NAUTVNorthernArizonaUniversity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uNKEoa4.png" group-title="",NAU-TV Northern Arizona University (720p) [Not 24/7] -http://stream.ec.nau.edu/live/amlst:channelfour/playlist.m3u8 -#EXTINF:-1 tvg-id="NBATV.us" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-nba.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",NBA TV (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_nbahd_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="WTLVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KQrtvoo.jpg" group-title="Local",NBC / ABC Jacksonville FL (WTLV) (1080p) -https://livevideo01.firstcoastnews.com/hls/live/2014550/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WGRZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/m4MZTtj.jpg" group-title="Local",NBC 2 Buffalo NY (WGRZ) (1080p) -https://livevideo01.wgrz.com/hls/live/2016286/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WRCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/0f/Logo_of_WRC-TV.png" group-title="Local",NBC 4 News Washington DC (WRC-TV) (720p) [Not 24/7] -https://wrclive-f.akamaihd.net/i/wrcb1_1@46880/master.m3u8 -#EXTINF:-1 tvg-id="WMAQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/ac/WMAQ_Logo_2012.png" group-title="Local",NBC 5 News Chicago IL (WMAQ-TV) (1080p) -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM1@22923/master.m3u8 -#EXTINF:-1 tvg-id="KINGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aDqnu8Y.jpg" group-title="Local",NBC 5 Seattle WA (KING) (1080p) -https://livevideo01.king5.com/hls/live/2006665/live/live.m3u8 -#EXTINF:-1 tvg-id="KSDKTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4zQaZBX.jpg" group-title="Local",NBC 5 St. Louis MO (KSDK) (1080p) -https://livevideo01.ksdk.com/hls/live/2014965/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KAGSLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zkkg70O.jpg" group-title="Local",NBC 6 College Station TX (KAGS) (1080p) -https://livevideo01.kagstv.com/hls/live/2016283/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KCENDT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l9T46o3.jpg" group-title="Local",NBC 6 Waco TX (KCEN) (1080p) -https://livevideo01.kcentv.com/hls/live/2017155/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KTVBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2sLPTiM.jpg" group-title="Local",NBC 7 Boise ID (KTVB) (1080p) -https://livevideo01.ktvb.com/hls/live/2014542/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KGW.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tekKgXi.jpg" group-title="Local",NBC 8 Portland OR (KGW) (1080p) -https://livevideo01.kgw.com/hls/live/2015506/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KUSATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uv82wud.jpg" group-title="Local",NBC 9 Denver CO (KUSA) (1080p) -https://livevideo01.9news.com/hls/live/2014548/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WBIRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mMQoVWG.jpg" group-title="Local",NBC 10 Knoxville TN (WBIR-TV) (1080p) -https://livevideo01.wbir.com/hls/live/2016515/newscasts/live-2000.m3u8 -#EXTINF:-1 tvg-id="WXIATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yR2o6Dw.jpg" group-title="Local",NBC 11 Alive Atlanta GA (WXIA-TV) (1080p) -https://livevideo01.11alive.com/hls/live/2015499/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KARETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyLgNR6.jpg" group-title="Local",NBC 11 Minneapolis MN (KARE) (1080p) -https://livevideo01.kare11.com/hls/live/2014544/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WPXITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iud5PUZ.png" group-title="Local",NBC 11 Pittsburgh PA (WPXI) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wpxitv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="KNTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jrWg5qE.jpg" group-title="Local",NBC 11 San Jose CA (KNTV) (416p) [Offline] -https://kntvlive-f.akamaihd.net/i/kntvb1_1@15530/master.m3u8 -#EXTINF:-1 tvg-id="KPNXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/f1FiXuX.jpg" group-title="Local",NBC 12 Phoenix AZ (KPNX) (1080p) -https://livevideo01.12news.com/hls/live/2015501/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WTHRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQK8BrE.jpg" group-title="Local",NBC 13 Indianapolis IN (WTHR) (1080p) -https://livevideo01.wthr.com/hls/live/2013835/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qOO32m6.png" group-title="Local",NBC 15 Madison WI (WMTV) (720p) -https://ad-playlistserver.aws.syncbak.com/playlist/899088/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsImtpZCI6IkdyYXkyMDE2MDgyOSIsInN1YiI6IioiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE3OTAzNjkxMDUsImlzcyI6IldMUyIsIm1kNSI6ImJhZTU4Y2ZlZWM2NmU1MjZkNmVjZmE1YmUzNTQxMzQ4IiwibWlkIjoiODk5MDg4In0.vBWkHmqS3z3dpq8UWfbk4wFd-vQlj6B0up-rpt7X_7Q -#EXTINF:-1 tvg-id="WGBATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://ewscripps.brightspotcdn.com/dims4/default/31cd86c/2147483647/strip/true/crop/600x200+0+0/resize/400x133!/quality/90/?url=https%3A%2F%2Fewscripps.brightspotcdn.com%2F09%2F30%2F6709482a41ef96f6ba6259d6ae66%2Fwgba-geographic-locator-600x200.png" group-title="Local",NBC 26 Green Bay WI (WGBA) (720p) -https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8 -#EXTINF:-1 tvg-id="WCNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2EyiCqw.jpg" group-title="Local",NBC 36 Charlotte NC (WCNC-TV) (1080p) -https://livevideo01.wcnc.com/hls/live/2015505/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WLBZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DJrdp7S.jpg" group-title="Local",NBC 207 Bangor Portland ME (WLBZ) (1080p) -https://livevideo01.newscentermaine.com/hls/live/2014540/newscasts/live/wcsh.m3u8 -#EXTINF:-1 tvg-id="WBTS-CD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Boston MA (WBTS-CD1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WBTS-CD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Boston MA (WBTS-CD1) (480p) [Not 24/7] -http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston/playlist.m3u8 -#EXTINF:-1 tvg-id="WGRZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Buffalo NY (WGRZ1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NBCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="NBCGolfChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nbc-golf-3d-us.png" group-title="Sports",NBC Golf Channel (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/golf/playlist.m3u8 -#EXTINF:-1 tvg-id="WNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC New York (WNBC-DT1) (720p) -http://38.91.57.12:2082/nbc/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) -http://nbcnews2.akamaized.net/hls/live/723426-b/NBCNewsPlaymaker24x7Linear99a3a827-ua/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) [Offline] -https://nbcnewshls.akamaized.net/hls/live/2011820/nnn_live1/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 1 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live11@183427/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent2.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 2 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live12@187393/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent3.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 3 (360p) -https://nbcnews-lh.akamaihd.net/i/nbc_live13@187394/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent4.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 4 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live14@187395/master.m3u8 -#EXTINF:-1 tvg-id="KWESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qshcBQk.jpg" group-title="Local",NBC NewsWest 9 Midland-Odessa TX (KWES) (1080p) -https://livevideo01.newswest9.com/hls/live/2017380/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KING-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Seattle WA (KING-TV1) (720p) -http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KING-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Seattle WA (KING-TV1) (480p) -http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="KHQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Spokane WA (KHQ-TV1) (720p) -http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KHQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Spokane WA (KHQ-TV1) (480p) -http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="WTWC-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Tallahassee FL (WTWC-TV1) (720p) -https://5e6cea03e25b6.streamlock.net/live/WTWC-NB.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WVITNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC-CT WVIT-TV News Hartford CT (1080p) -https://wvitlive-f.akamaihd.net/i/HARTFORD_STREAM1@22924/master.m3u8 -#EXTINF:-1 tvg-id="KNBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC4 KNBC-TV News (1080p) [Not 24/7] -https://knbclive-f.akamaihd.net/i/LA_STREAM1@13988/master.m3u8 -#EXTINF:-1 tvg-id="WNBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/Tapiosinn/tv-logos/raw/master/countries/united-states/us-local/nbc-4-wnbc-us.png" group-title="Local",NBC4 WNBC-TV New York News (1080p) [Not 24/7] -https://wnbclive-f.akamaihd.net/i/NY_STREAM1@13992/master.m3u8 -#EXTINF:-1 tvg-id="WRCNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC4 WRC-TV Washington News (1080p) -https://wrclive-f.akamaihd.net/i/DC_STREAM1@22925/master.m3u8 -#EXTINF:-1 tvg-id="KXASNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC5 KXAS-TV News Dallas TX (1080p) [Not 24/7] -https://kxaslive-f.akamaihd.net/i/DALLAS_STREAM5@5495/master.m3u8 -#EXTINF:-1 tvg-id="WTVJNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC6 WTVJ-TV News Miami FL (1080p) [Not 24/7] -https://wtvjlive-f.akamaihd.net/i/MIAMI_STREAM1@19309/master.m3u8 -#EXTINF:-1 tvg-id="NBCLX.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JSCsJc5.png" group-title="Entertainment",NBCLX (1080p) -https://lxlive-lh.akamaihd.net/i/LX_LIVE@148206/master.m3u8 -#EXTINF:-1 tvg-id="NegahTV.us" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Negah TV (720p) [Not 24/7] -https://iptv.negahtv.com/negahtv/playlist2/index.m3u8 -#EXTINF:-1 tvg-id="NESNNational.us" tvg-country="US" tvg-language="English" tvg-logo="https://lh3.googleusercontent.com/zO2IQHNsszQEwBR_WkdlGo--3qbOfBIDTxNH4CNDpu8jtuASA6CvL7Aw_wcmPFItMSBy" group-title="Sports",NESN National (1080p) -https://bcovlive-a.akamaihd.net/bea11a7dfef34b08be06aaca4a72bcdf/us-east-1/6141518204001/playlist.m3u8 -#EXTINF:-1 tvg-id="NOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tf3KGP4.jpg" group-title="Local",New Orleans Television (NOTV) (720p) -http://media4.tripsmarter.com:1935/LiveTV/NOTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="NOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tf3KGP4.jpg" group-title="Local",New Orleans Television (NOTV) (720p) -https://5b0f5374bdf0c.streamlock.net:444/LiveTV/NOTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) -https://nmxairy.akamaized.net/hls/live/529965/Live_1/index.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (720p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1311088/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (480p) [Not 24/7] -http://broadcastny.yournewsnet.com:8081/master/newsnetweb/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (480p) [Offline] -https://broadcaster1.prolivestream.net:8083/onair/newsnetweb/playlist.m3u8 -#EXTINF:-1 tvg-id="KCKSLD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="News",NewsNet (KCKS-LD2) (480p) [Not 24/7] -https://cdn.igocast.com/channel2_hls/channel2_master.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) -https://547f72e6652371c3.mediapackage.us-east-1.amazonaws.com/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) -https://d3ra88okaj5j4j.cloudfront.net/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) -https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) -https://content.uplynk.com/channel/4bb4901b934c4e029fd4c1abfc766c37.m3u8 -#EXTINF:-1 tvg-id="NewsyTopStories.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy Top Stories (720p) -https://content.uplynk.com/channel/387c33ce09da4de699668c0c7d1244a8.m3u8 -#EXTINF:-1 tvg-id="NFLNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nfl-network-us.png" group-title="Sports",NFL Network (720p) [Not 24/7] -http://s1.mysportz.tv:2082/nfl/playlist.m3u8 -#EXTINF:-1 tvg-id="NFLNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nfl-network-us.png" group-title="Sports",NFL Network (720p) [Not 24/7] -http://s1.mysportz.tv:2082/nfl/playlist.m3u8 -#EXTINF:-1 tvg-id="NickJrEast.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/sa/NickJr.sa.png" group-title="Kids",Nick Jr East [Offline] -https://cdn1.mobiletv.bg/T5/bit/bit_794613_850k.m3u8 -#EXTINF:-1 tvg-id="NickJrLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Kids",Nick Jr Latinoamérica (480p) [Timeout] -http://201.168.205.12:8000/play/a0ck/index.m3u8 -#EXTINF:-1 tvg-id="NickJrTooUK.us" tvg-country="UK;IE" tvg-language="English" tvg-logo="http://neczbm.to/images/channels/NickJrToo.png" group-title="Kids",Nick Jr Too UK (576p) [Geo-blocked] -http://212.224.98.213:2200/EX/Nick_Jr_Too-uk/index.m3u8?token= -#EXTINF:-1 tvg-id="NickelodeonAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/au/Nickelodeon.au.png" group-title="Kids",Nickelodeon Australia (576p) -http://c0.cdn.trinity-tv.net/stream/7tsewn83ddjifz69us9je7eftbm5nuausb4dsvz9g5aydin9672n734qbb9jgcfpiqtpwudvs9dpi2udjc3eh4h462eie5azjmfbfgfjeqfuhjmmgx9zuj736ijg7nffhf8rviq5svkgxbp639y9nfgc.m3u8 -#EXTINF:-1 tvg-id="NickelodeonEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ufHOxMN.png" group-title="Kids",Nickelodeon East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-nick.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyDivorceCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Divorce Court (480p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e76d1474f9020c06f9ee_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyJerrySpringer.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Jerry Springer [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e7f848f1ff2e1d2555a2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyJudgeKarensCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Judge Karen's Court (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e7261474f9020c06f9ec_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyMaury.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Maury [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e88458ad7801fa2cfc2e_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseySteveWilkos.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Steve Wilkos [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e84c95ee0253b97679d7_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NothingScripted.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QSH4Z4p.png" group-title="Local",Nothing Scripted (720p) -https://30a-tv.com/NothingScripted.m3u8 -#EXTINF:-1 tvg-id="NRBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/S3Ujv10.png" group-title="Religious",NRB TV (480p) -https://uni6rtmp.tulix.tv/nrbnetwork/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NYXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KiIzWmO.jpg" group-title="",NYXT (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/19770665/events/5522162/live.m3u8 -#EXTINF:-1 tvg-id="OANEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9S4ZbPL.jpg" group-title="News",OAN Encore (720p) [Geo-blocked] -https://cdn.herringnetwork.com/80A4DFF/oane_oregon/OAN_Encore.m3u8 -#EXTINF:-1 tvg-id="Olelo49.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z7RBRkZ.png" group-title="",Olelo 49 (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/olelo/G0125_009/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo53.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z7RBRkZ.png" group-title="",Olelo 53 (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/olelo/G0125_011/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo54.us" tvg-country="US" tvg-language="English" tvg-logo="http://olelo.org/wp-content/uploads/2017/03/cropped-site-icon-180x180.png" group-title="Local",Olelo 54 (720p) [Not 24/7] -https://granicusliveus12-a.akamaihd.net/olelo/G0125_012/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo55.us" tvg-country="US" tvg-language="English" tvg-logo="http://olelo.org/wp-content/uploads/2017/03/cropped-site-icon-180x180.png" group-title="Local",Olelo 55 (720p) [Not 24/7] -https://granicusliveus12-a.akamaihd.net/olelo/G0125_013/playlist.m3u8 -#EXTINF:-1 tvg-id="OmidJavedan.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G1tOSzq.png" group-title="",Omid Javedan (720p) [Not 24/7] -http://livestream.5centscdn.com/shaditv/23abe62a446fc05ce0a6c810f4045308.sdp/index.m3u8 -#EXTINF:-1 tvg-id="OURTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9uz9lyg.png" group-title="Lifestyle",Opportunities in Urban Renaissance Television (OURTV) (720p) -https://hls-cdn.tvstartup.net/barakyah-channel/play/mp4:ourtvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="OrangeTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://lh4.ggpht.com/rTO2b4xizn7KZy6X-3RUSMWmNi86B116IuF9kgi51fyNTp8mrEhP25svcAMx5BngXwlf=w300" group-title="Local",Orange TV (720p) -http://otv3.ocfl.net:1936/OrangeTV/smil:OrangeTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (720p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7outdoor.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (720p) [Geo-blocked] -https://livecdn.fptplay.net/world/outdoorfhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (1080p) [Offline] -http://ott.watch/stream/E7Q3UVKI5H/211.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7pac12.m3u8 -#EXTINF:-1 tvg-id="KNETCD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/A3kHNyp.jpg" group-title="",Panarmenian TV (KNET-CD 25.2) (360p) [Not 24/7] -http://granicusliveus6-a.akamaihd.net/torrance/G0057_005/playlist.m3u8 -#EXTINF:-1 tvg-id="ParamountComedyRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/u50d1gv.jpg" group-title="Comedy",Paramount Comedy Russia [Timeout] -http://45.145.32.11:20007/paramount_comedy/video.m3u8 -#EXTINF:-1 tvg-id="PartyTymeKaraoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Jj4zvOK.png" group-title="Entertainment",Party Tyme Karaoke (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=64 -#EXTINF:-1 tvg-id="PayameAfghanTV.us" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/G7Zn0gN.png" group-title="",Payam-e-Afghan TV (480p) [Not 24/7] -http://g5nl6xx5lpq6-hls-live.5centscdn.com/live1234/2621b29e501b445fabf227b086123b70.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="PayvandTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/w3LaJja.png" group-title="News",Payvand TV (720p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/ucur1/Payvand/playlist.m3u8 -#EXTINF:-1 tvg-id="PBCTapeshTV.us" tvg-country="US;IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Yry3FXW.png" group-title="General",PBC Tapesh TV (720p) [Offline] -https://iptv.tapesh.tv/tapesh/playlist.m3u8 -#EXTINF:-1 tvg-id="WLVTTV" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS 39 Allentown PA (WLVT) (720p) -https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WPPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS 39 Extra Philadelphia PA (WPPT) (480p) -https://forerunnerrtmp.livestreamingcdn.com/output18-2/output18-2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WNED.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/pbs.png" group-title="Education;Local",PBS Buffalo NY (WNED-TV) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="WNED.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/pbs.png" group-title="Education;Local",PBS Buffalo NY (WNED-TV) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="KLCSDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usba.mybtv.net/logos/22.2-Create.png" group-title="Education",PBS Create Los Angeles CA (KLCS-DT3) (720p) [Geo-blocked] -https://d1mxoeplf1ak5a.cloudfront.net/index.m3u8 -#EXTINF:-1 tvg-id="WFSU-TV3.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usba.mybtv.net/logos/22.2-Create.png" group-title="Education",PBS Create Tallahassee FL (WFSU-TV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/CREATE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KERATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Dallas TX (KERA) (1080p) [Geo-blocked] -https://kera-flash.streamguys1.com/live/eventStream/playlist.m3u8 -#EXTINF:-1 tvg-id="WKMJTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.pbs.org/stations/wkle-color-single-brand-logo-yJUbW1W.png" group-title="Education;Local",PBS KET Louisville KY (WKMJ-TV) (720p) -https://2-fss-1.streamhoster.com/pl_134/amlst:200914-1282960/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSKidsAKST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Alaska (1080p) -https://livestream.pbskids.org/out/v1/2963202df0c142c69b5254a546473308/akst.m3u8 -#EXTINF:-1 tvg-id="PBSKidsEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Eastern/Central (1080p) -https://livestream.pbskids.org/out/v1/1e3d77b418ad4a819b3f4c80ac0373b5/est.m3u8 -#EXTINF:-1 tvg-id="PBSKidsEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Eastern/Central (720p) -https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSKidsHAST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Hawaii (1080p) -https://livestream.pbskids.org/out/v1/19d1d62bf61b4aea9ec20f83b6450a4e/hast.m3u8 -#EXTINF:-1 tvg-id="PBSKidsMST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Mountain (1080p) -https://livestream.pbskids.org/out/v1/00a3b9014fa54c40bee6ca68a104a8a4/mst.m3u8 -#EXTINF:-1 tvg-id="PBSKidsPST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Pacific (1080p) -https://livestream.pbskids.org/out/v1/c707b9310f2848de849b336f9914adbc/pst.m3u8 -#EXTINF:-1 tvg-id="MPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kt0R7ua.jpg" group-title="Education;Local",PBS MPT Baltimore MD (WMPB) (1088p) -https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8 -#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Seattle WA (KCTS-TV1) (720p) -http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Seattle WA (KCTS-TV1) (480p) -http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="KSPSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Spokane WA (KSPS-TV1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="KSPSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Spokane WA (KSPS-TV1) (480p) -http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="WFSU-TV1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Tallahassee FL (WFSU-TV1) (720p) -https://5e6cea03e25b6.streamlock.net/live/WFSU-PBS.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PBSWorld_972x972.png?raw=true" group-title="Education",PBS World Channel (480p) -https://cs.ebmcdn.net/eastbay-live-hs-1/apt/mp4:apt-world/playlist.m3u8 -#EXTINF:-1 tvg-id="PCCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9PEAPwY.png" group-title="Local",PCC-TV Pinellas County FL (480p) [Not 24/7] -http://granicusliveus1-a.akamaihd.net/pinellas/G1551_004/playlist.m3u8 -#EXTINF:-1 tvg-id="Peachtree.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/b/b7/WPCH-TV_logo.svg/320px-WPCH-TV_logo.svg.png" group-title="General",Peachtree TV Atlanta GA (WPCH-TV1) (720p) -http://encodercdn1.frontline.ca/encoder181/output/Peachtree_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Peachtree.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/b/b7/WPCH-TV_logo.svg/320px-WPCH-TV_logo.svg.png" group-title="General",Peachtree TV Atlanta GA (WPCH-TV1) (480p) -http://encodercdn1.frontline.ca/encoder181/output/Peachtree/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) -https://d1qaz9zojo1ayt.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) -https://peopletv-oo.akamaized.net/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) -https://peopletv-samsungus-ingest.akamaized.net/playlist.m3u8 -#EXTINF:-1 tvg-id="WPIXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qDLtnQ6.png" group-title="Local",PIX11 New York NY (720p) -https://content.uplynk.com/channel/98828f7707b84dc496472d5789143df2.m3u8 -#EXTINF:-1 tvg-id="PlantBasedNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iwd9Jxb.png" group-title="",Plant Based Network (1080p) [Not 24/7] -https://hls-cdn.tvstartup.net/barakyah-channel/live/pbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Pop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tTGgNWX.png" group-title="General",Pop (1080p) [Offline] -https://live-poptv-fastly-prod.global.ssl.fastly.net/pop/master.m3u8 -#EXTINF:-1 tvg-id="PopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Entertainment",Popstar! TV (1080p) [Offline] -https://a.jsrdn.com/broadcast/wAlxn4cs/c.m3u8 -#EXTINF:-1 tvg-id="PopularScience.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nAsNU9q.png" group-title="Science",Popular Science (720p) [Offline] -https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 -#EXTINF:-1 tvg-id="PositivTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ULF3iOE.png" group-title="Family",Positiv TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8973036/live.m3u8 -#EXTINF:-1 tvg-id="PrimeTimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K36sd0M.png" group-title="Classic",Prime Time Drama (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-ptd/playlist.m3u8 -#EXTINF:-1 tvg-id="PTLTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EhISpCd.png" group-title="Religious",PTL TV Network (720p) -https://morningside-lh.akamaihd.net/i/jblive_1@303354/master.m3u8 -#EXTINF:-1 tvg-id="PureRock.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EAkvIw8.jpg" group-title="Music",Pure Rock [Offline] -http://159.69.56.148:25461/live/PuroRock/PuroRock24-7.com/25.m3u8 -#EXTINF:-1 tvg-id="QuahzTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KAS3bJt.png" group-title="Music",Quahz TV (360p) -https://t06243a-lh.akamaihd.net/i/t06243a_1@536897/index_750_av-p.m3u8 -#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) -https://lsqvc1uscln-lh.akamaihd.net/i/lsqvc1uscln_01@809410/master.m3u8 -#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) -https://lsqvc1usott-lh.akamaihd.net/i/lsqvc1usott_01@838836/master.m3u8 -#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (German) (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVC2.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC 2 (720p) -https://lsqvc2us-lh.akamaihd.net/i/lsqvc2us_01@809440/master.m3u8 -#EXTINF:-1 tvg-id="QVC3.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC 3 (720p) -https://lsqvc3us-lh.akamaihd.net/i/lsqvc3us_01@809459/master.m3u8 -#EXTINF:-1 tvg-id="QVCBeauty.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Beauty (German) (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCItalia.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Italia (540p) -https://qrg.akamaized.net/hls/live/2017383/lsqvc1it/master.m3u8 -#EXTINF:-1 tvg-id="QVCJapan.us" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Japan (720p) -https://cdn-live1.qvc.jp/iPhone/1501/1501.m3u8 -#EXTINF:-1 tvg-id="QVCPlus.de" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvcplus.png" group-title="Shop",QVC PLUS (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCStyleDeutsch.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Style (Deutsch) (540p) -http://live.qvcde.simplestreamcdn.com/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUK.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK (540p) -https://d1txbbj1u9asam.cloudfront.net/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK +1 (540p) -https://live-qvcuk.simplestreamcdn.com/hera/remote/qvcuk_primary_sdi1/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKBeauty.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Beauty (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKExtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Extra (540p) -https://live-qvcuk.simplestreamcdn.com/live/qvcuk_extra_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKStyle.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Style (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_style_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVC2Deutsch.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC2 (Deutsch) (540p) -http://live.qvcde.simplestreamcdn.com/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X9LBFzK.jpg" group-title="Religious",QVTV (720p) -https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioInmaculada.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Religious",Radio Inmaculada (1080p) [Not 24/7] -https://tv2.fastcast4u.com:3594/live/vsojgreilive.m3u8 -#EXTINF:-1 tvg-id="RadioJavan.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oO6kxWO.png" group-title="",Radio Javan (1080p) -https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRitmo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Music",Radio Ritmo (1080p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/lax/lax/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://radiou.com/wp-content/uploads/2018/06/RadioUSiteFooterTransparent.png" group-title="Music",Radio U TV (720p) [Not 24/7] -https://cdnlive.radiou.com/LS-ATL-43240-1/index.m3u8 -#EXTINF:-1 tvg-id="RadioyTelevisionMarti.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B6C0FyM.png" group-title="Local",Radio y Televisión Martí (1080p) -https://ocb-lh.akamaihd.net/i/ocb_mpls_tvmc1@383606/master.m3u8 -#EXTINF:-1 tvg-id="RealVision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mLUmsCt.png" group-title="Business",Real Vision (720p) -https://a.jsrdn.com/broadcast/2a755012a8/+0000/c.m3u8 -#EXTINF:-1 tvg-id="RedApple21FairfaxCountyPublicSchools.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ICcQUCH.png" group-title="Education",Red Apple 21 (Fairfax County Public Schools) (480p) [Not 24/7] -https://cs.ebmcdn.net/eastbay-live-hs-1/fcps/mp4:fcps/playlist.m3u8 -#EXTINF:-1 tvg-id="Reelz.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/d37066a396/+0000/c.m3u8 -#EXTINF:-1 tvg-id="RelaxingRain.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/USiqGyp.jpg" group-title="",Relaxing Rain (720p) -https://a.jsrdn.com/broadcast/76381deeda/+0000/c.m3u8 -#EXTINF:-1 tvg-id="RetroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/retro-tv-us.png" group-title="Classic",Retro TV (720p) -https://bcovlive-a.akamaihd.net/5e531be3ed6c41229b2af2d9bffba88d/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="KCKSLD9.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/retro-tv-us.png" group-title="Classic",Retro TV (KCKS-LD9) (480p) -https://cdn.igocast.com/channel9_hls/channel9_master.m3u8 -#EXTINF:-1 tvg-id="Revn.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI1NDE5MjRf/Revn_375x375.png" group-title="",Rev'n (720p) -https://bcovlive-a.akamaihd.net/a71236fdda1747999843bd3d55bdd6fa/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="KCKSLD7.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Auto",Rev'n (KCKS-LD7) (480p) -https://cdn.igocast.com/channel7_hls/channel7_master.m3u8 -#EXTINF:-1 tvg-id="RevelationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sOVdYJZ.png" group-title="Religious",Revelation TV (576p) -https://rtv.cdn.mangomolo.com/rtv/smil:rtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RevelationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sOVdYJZ.png" group-title="Religious",Revelation TV (576p) -https://rtv.cdn.mangomolo.com/rtv/smil:switch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RevryQueer.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry Queer (720p) -https://4aafa23ec0a6477ca31466bd83a115a4.mediatailor.us-west-2.amazonaws.com/v1/master/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-GALXY/mt/galxy/43/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RoosterTeethTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3o9cG76.png" group-title="",Rooster Teeth TV (1080p) -https://d2klx6wjx7p5vm.cloudfront.net/Rooster-teeth/ngrp:Rooster-teeth_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RunwayTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/RunwayTV_960x960.png?raw=true" group-title="",Runway TV (720p) [Not 24/7] -https://runway-hls.secdn.net/runway-live/play/runway/playlist.m3u8 -#EXTINF:-1 tvg-id="SafeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sDGZCpL.png" group-title="Religious",SafeTV (1080p) -http://18.191.91.130:1935/live/safetv/playlist.m3u8 -#EXTINF:-1 tvg-id="SamsungWildlife.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/x06npU2.png" group-title="",Samsung Wildlife [Offline] -https://d23gend7a1exlu.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Saveur.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Saveur (720p) [Offline] -https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="SciFi4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU3MThf/NostTV_SciFi4U_576x576.png" group-title="Classic",Sci-Fi 4U (720p) -https://broadcast.mytvtogo.net/SciFiTV4u/SciFiTV4u/playlist.m3u8 -#EXTINF:-1 tvg-id="Screamfest.us" tvg-country="US" tvg-language="English" tvg-logo="https://app.digitickets.co.uk/userfiles/companies/screamfestlogo.300x150.png" group-title="Movies",Screamfest (720p) [Offline] -https://vcnleomarkstudios.teleosmedia.com/stream/leomarkstudios/screamfest/playlist.m3u8 -#EXTINF:-1 tvg-id="ScreenDreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6hIfTMC.jpg" group-title="Relax",Screen Dreams (720p) -https://content.uplynk.com/channel/3e4b9cada2b74cf18977298804134a36.m3u8 -#EXTINF:-1 tvg-id="SeattleChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NfE5jtp.png" group-title="Local",Seattle Channel (720p) [Not 24/7] -https://wowzaprod188-i.akamaihd.net/hls/live/730322/3fa8d5f5/playlist.m3u8 -#EXTINF:-1 tvg-id="SentTVGlobalNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ogvLLji.png" group-title="General",Sent TV Global Network (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-stgn/mono.m3u8 -#EXTINF:-1 tvg-id="SGTN49.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mJtJhjF.png" group-title="General",Sent TV Global Network Atlanta (SGTN-49) (720p) [Timeout] -http://stgn-49.tulix.tv/live19/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="Shabakeh7.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LeYSfhX.png" group-title="",Shabakeh 7 (720p) -http://rtmp.abnsat.com/hls/txministry.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IfF3zyd.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IfF3zyd.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i3.wp.com/unored.tv/wp-content/uploads/2018/10/Shalom-TV-logo-oficial.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] -https://livestreamcdn.net:444/ShalomTV/ShalomTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ShopHQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WVAQvvX.jpg" group-title="Shop",Shop HQ (720p) -https://aos01-evine.secure.footprint.net/evine/clean/appleman.m3u8 -#EXTINF:-1 tvg-id="ShopLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606f94fdf46bcb6017662744" group-title="Shop",Shop LC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/DASH_DASH/Live/channel(ott)/master.mpd -#EXTINF:-1 tvg-id="KCKSLD10.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Shop",Shop LC (KCKS-LD10) (480p) [Not 24/7] -https://cdn.igocast.com/channel10_hls/channel10_master.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) -https://shoutfactory-shoutfactory-zype.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Skwad.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sv7WkKe.png" group-title="Kids",SKWAD (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=71 -#EXTINF:-1 tvg-id="Slimo.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Slimo (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2783932c8368bdbfd8a5/playlist.m3u8 -#EXTINF:-1 tvg-id="SmartLifestyleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CxKWwjx.jpg" group-title="Lifestyle",Smart Lifestyle TV [Offline] -https://t01587-lh.akamaihd.net/i/t01587SmartLifeStyle_1@692079/master.m3u8 -#EXTINF:-1 tvg-id="Smile.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TBN_Smile_512x512.png?raw=true" group-title="",Smile (540p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266916/live.m3u8 -#EXTINF:-1 tvg-id="SoniderosTV.us" tvg-country="US;MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/www.sonideros.tv/picture?width=320&height=320" group-title="Music",Sonideros TV (360p) [Not 24/7] -https://tv2.fastcast4u.com:3728/live/soniderostvlive.m3u8 -#EXTINF:-1 tvg-id="SBN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting (SBN) (270p) -https://sonlife7-i.akamaihd.net/hls/live/585011/ch7/master.m3u8 -#EXTINF:-1 tvg-id="SBN.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting (SBN) (720p) [Offline] -https://sonlife5-i.akamaihd.net/hls/live/584631/ch5/master.m3u8 -#EXTINF:-1 tvg-id="SBNGlobal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting Global (SBN) (720p) [Offline] -https://sonlife10-i.akamaihd.net/hls/live/585013/ch10/master.m3u8 -#EXTINF:-1 tvg-id="SpikeItalia.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Spike_logo_2015.svg/1280px-Spike_logo_2015.svg.png" group-title="",Spike Italia (480p) [Offline] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 -#EXTINF:-1 tvg-id="SpiritTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jR24flK.png" group-title="Religious",Spirit TV (720p) [Not 24/7] -https://cdnlive.myspirit.tv/LS-ATL-43240-2/index.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (720p) -https://playout4multirtmp.tulix.tv/live6/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="SportskoolTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Sportskool TV (486p) -https://a.jsrdn.com/broadcast/fabeab4b08/+0000/c.m3u8 -#EXTINF:-1 tvg-id="SpydarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NostTV_SpydarTV.png" group-title="Entertainment",Spydar TV (720p) -https://simultv.s.llnwi.net/n4s4/Spydar/interlink.m3u8 -#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Not 24/7] -https://stadiumlivein-i.akamaihd.net/hls/live/522512/mux_4/master.m3u8 -#EXTINF:-1 tvg-id="StadiumLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/Stadium.png" group-title="Sports",Stadium | Live (720p) [Offline] -https://bcovlive-a.akamaihd.net/e64d564b9275484f85981d8c146fb915/us-east-1/5994000126001/f3d8696d886f4c3b9612132643061743/playlist_ssaiM.m3u8 -#EXTINF:-1 tvg-id="STARChannel.us" tvg-country="ES" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/e4izZbC.jpg" group-title="",STAR Channel (Spain) [Offline] -http://45.179.140.242:8000/play/a0h5 -#EXTINF:-1 tvg-id="STARLife.us" tvg-country="ES" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/e4izZbC.png" group-title="",STAR Life (Spain) [Offline] -http://45.179.140.242:8000/play/a0h4 -#EXTINF:-1 tvg-id="StockchartsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d.stockcharts.com/img/scc-logo-light.png" group-title="Business",StockCharts TV (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/united-states/stockchartstv -#EXTINF:-1 tvg-id="StreetMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DVfEmq7.png" group-title="Music",Street Music 4U (720p) -https://59d39900ebfb8.streamlock.net/streetmusic/streetmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="StreetMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DVfEmq7.png" group-title="Music",Street Music 4U (720p) [Not 24/7] -https://broadcast.mytvtogo.net/streetmusic/streetmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="SubRangTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/xMN1q8P.jpg" group-title="News",SubRang TV (720p) [Not 24/7] -https://cdn20.liveonlineservices.com/hls/subrang.m3u8 -#EXTINF:-1 tvg-id="SubRangTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/xMN1q8P.jpg" group-title="News",SubRang TV (720p) [Not 24/7] -https://cdn61.liveonlineservices.com/hls/subrang.m3u8 -#EXTINF:-1 tvg-id="SwordandShield.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xwHhiAc.png" group-title="Documentary",Sword and Shield (720p) -https://a.jsrdn.com/broadcast/9e63a1b236/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TAGTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9vosZt4.jpg" group-title="News",TAG TV (1080p) [Not 24/7] -https://cdn30.liveonlineservices.com/hls/tagtv.m3u8 -#EXTINF:-1 tvg-id="TangoTV.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tangotvchannel/picture?width=320&height=320" group-title="Entertainment",TangoTV (768p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/8066/8066/playlist.m3u8 -#EXTINF:-1 tvg-id="TasteItTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Taste It TV (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5af61f59d5eeee7af3d1db8f/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) -https://tastemadessai.akamaized.net/amagi_hls_data_tastemade-tastemade/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Australia (1080p) -https://tastemadeintaus-smindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) -https://tastemadees16intl-brightcove.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es16intl-brightcove/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TBD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fbzbq1y.png" group-title="Entertainment",TBD. (720p) -https://content.uplynk.com/channel/1831163f97674328ad9f4b4814ed39c5.m3u8 -#EXTINF:-1 tvg-id="TBNArmenia.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/zdJeT34.jpg" group-title="Religious",TBN Armenia [Offline] -https://bogtvhdlive-f.akamaihd.net/i/tbn_armenia@198331/master.m3u8 -#EXTINF:-1 tvg-id="TBNAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QyMAyrs.jpg" group-title="Religious",TBN Asia (360p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s39/02.m3u8 -#EXTINF:-1 tvg-id="TBNInspire.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TBN_Hillsong_360x360.png?raw=true" group-title="Religious",TBN Inspire (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266909/live.m3u8 -#EXTINF:-1 tvg-id="TBNUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zlZi5RN.jpg" group-title="Religious",TBN US (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266920/live.m3u8 -#EXTINF:-1 tvg-id="TBNUkraina.us" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/DHwhdRF.png" group-title="Religious",TBN Украина (720p) [Timeout] -http://62.32.67.187:1935/WEB_Ukraine24/Ukraine24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TBSEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/TBS_Network-logo.svg/320px-TBS_Network-logo.svg.png" group-title="General",TBS East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023172/tbseast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TBSWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/TBS_Network-logo.svg/320px-TBS_Network-logo.svg.png" group-title="General",TBS West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023174/tbswest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TCMEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sbrSfhC.jpg" group-title="Classic",TCM East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023186/tcmeast/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="TCMWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sbrSfhC.jpg" group-title="Classic",TCM West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023187/tcmwest/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="TCT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TV29g3L.png" group-title="Religious",TCT (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/tct -#EXTINF:-1 tvg-id="TCTKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YUaeJiC.png" group-title="Kids",TCT Kids (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/tctkids -#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TDAmeritradeNetwork_284x284.png?raw=true" group-title="Business",TD Ameritrade Network (1080p) -https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8 -#EXTINF:-1 tvg-id="TechnoWarehouseUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GyxXMDv.png" group-title="Music",Techno Warehouse (US) (1080p) [Not 24/7] -https://eu-nl-012.worldcast.tv/dancetelevisionthree/dancetelevisionthree.m3u8 -#EXTINF:-1 tvg-id="Telemundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQezVfVamzd08ywLqOjqVqfOtEL-ZyphG2b0w&usqp=CAU" group-title="General",Telemundo (416p) [Offline] -https://wmaqlive-f.akamaihd.net/i/wmaqb1_1@24420/master.m3u8 -#EXTINF:-1 tvg-id="WZDCCD.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/G8Bk8si.png" group-title="General",Telemundo 44 Washington DC (432p) [Offline] -https://wrclive-f.akamaihd.net/i/wrcb2_1@46880/master.m3u8 -#EXTINF:-1 tvg-id="WSCVNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] -https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 -#EXTINF:-1 tvg-id="WSCVNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] -https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 -#EXTINF:-1 tvg-id="WSNSNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 -#EXTINF:-1 tvg-id="WSNSNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 -#EXTINF:-1 tvg-id="TeleRaydo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxKb7yF.jpg" group-title="",TeleRadyo (720p) -https://abscbn-ono.akamaized.net/midroll/amagi_hls_data_abscbnAAA-abscbn-teleradyo-oando/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Tempe11.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Rgy4qWN.gif" group-title="Local",Tempe 11 AZ (720p) [Not 24/7] -https://granicusliveus1-a.akamaihd.net/tempe/G0355_003/playlist.m3u8 -#EXTINF:-1 tvg-id="TGJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cZ4pGmk.png" group-title="",TG Junior (480p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=31 -#EXTINF:-1 tvg-id="TheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjg0MDgzNDBf/TheArchive_300x300.png" group-title="Classic",The Archive (540p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=74 -#EXTINF:-1 tvg-id="TheBeachChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.squarespace-cdn.com/content/5bbd189f840b16624eaaaa54/1564164558355-89YX9OANPEHYV71HWPT1/BC+LOGO_CH5_REVISED.png" group-title="Lifestyle",The Beach Channel (720p) -https://live.lwcdn.com/live/amlst:ALH8QFrg_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/14c063cc-8be5-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips -#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) [Offline] -https://a.jsrdn.com/broadcast/256ccf645e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="KTLADT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="General;Local",The CW Los Angeles CA (KTLA-DT1) (720p) [Not 24/7] -http://trn03.tulix.tv/teleup-N8qwnqgUq2/playlist.m3u8 -#EXTINF:-1 tvg-id="WPIX.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="Local",The CW New York NY (WPIX1) (720p) -http://encodercdn1.frontline.ca/kamino/output/pix11_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WTLF.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="Local",The CW Tallahassee FL (WTLF1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WTLHCW.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) [Geo-blocked] -https://a.jsrdn.com/broadcast/9Kl3dcb5l/c.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) -https://thefirst-distroscale.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="WFSU-TV2.us" tvg-country="US" tvg-language="English" tvg-logo="https://thefloridachannel.org/wp-content/uploads/logo-primary-1.png" group-title="Local",The Florida Channel Tallahassee FL (WFSU-TV2) (480p) -https://5e6cea03e25b6.streamlock.net/live/WFSU-FL.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheHeartlandNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI1NDE5MjJf/Heartland_720x720.png" group-title="",The Heartland Network (720p) -https://bcovlive-a.akamaihd.net/1ad942d15d9643bea6d199b729e79e48/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="TheLoveDestination.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eXBQfaP.png" group-title="Entertainment",The Love Destination (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=43 -#EXTINF:-1 tvg-id="TheNowNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://channels.roku.com/images/be4667a16b1e483b8c7746156192b5ba-hd.jpg" group-title="Religious",The Now Network (480p) [Not 24/7] -https://link.frontlayer.com/services/hls2/fl619843/index.m3u8 -#EXTINF:-1 tvg-id="Ohiochannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://a.thumbs.redditmedia.com/IoXfiVbzWSKlacdkf05KQbNa_4xeavHDe0QWbbgCMe8.jpg" group-title="Local",The Ohio Channel (WOSU-DT3) (720p) -https://5ebe6889de541.streamlock.net/live/stream_10/playlist.m3u8 -#EXTINF:-1 tvg-id="TheOutdoorCookingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PnBXXw4.png" group-title="Cooking",The Outdoor Cooking Channel (480p) [Offline] -http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/playlist.m3u8 -#EXTINF:-1 tvg-id="TheRetroChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t3i1HtE.jpg" group-title="Music",The Retro Channel (1080p) [Not 24/7] -https://5fd5567570c0e.streamlock.net/theretrochannel/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheRockvilleChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0mvGibX.jpg" group-title="",The Rockville Channel (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/rockvillemd/G0458_001/playlist.m3u8 -#EXTINF:-1 tvg-id="TheShoppingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn.iphoneincanada.ca/wp-content/uploads/2015/07/the-shopping-channel-logo.jpg" group-title="Shop",The Shopping Channel (720p) -https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 -#EXTINF:-1 tvg-id="TheSoutheasternChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AG0wZml.jpg" group-title="Local",The Southeastern Channel (540p) -http://147.174.13.196/live/WIFI-1296k-540p/WIFI-1296k-540p.m3u8 -#EXTINF:-1 tvg-id="TheTitanicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/w0P4DRZ.jpg" group-title="Series",The Titanic Channel (720p) -https://a.jsrdn.com/broadcast/e6bdcb5ae9/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZzyXAKm.jpg" group-title="News",The Wall Street Journal Live (720p) -https://d155hi8td9k2ns.cloudfront.net/out/wapo-medialive3-rtmp/live.m3u8 -#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZzyXAKm.jpg" group-title="News",The Wall Street Journal Live (720p) -https://wsjlivehls-lh.akamaihd.net/i/events1_1@174990/master.m3u8 -#EXTINF:-1 tvg-id="ThisTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FQCVaSR.png" group-title="",This TV Network (480p) -https://cdn.igocast.com/channel11_hls/channel11_master.m3u8 -#EXTINF:-1 tvg-id="TNTEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xvL9KPI.png" group-title="General",TNT East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023168/tnteast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TNTSports2Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 2 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_02/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports3Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 3 Brasil (720p) -https://glxlmn026c.singularcdn.net.br/playout_03/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports4Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 4 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_04/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports5Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 5 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_05/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xvL9KPI.png" group-title="General",TNT West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023170/tntwest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=36 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=37 -#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5459795fc9f133a519bc0bef/colorLogoPNG.png" group-title="News",Top Stories by Newsy (720p) -http://content.uplynk.com/channel/04cce35dcd994bbc82d61805ae67a65f.m3u8 -#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SpH5ink.png" group-title="News",Top Stories by Newsy (720p) -https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8 -#EXTINF:-1 tvg-id="TPTNow.us" tvg-country="US" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Local",TPT Now KTCA-DT5 (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://api.new.livestream.com/accounts/12638076/events/8488790/live.m3u8 -#EXTINF:-1 tvg-id="TranquilThunderstorms.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Tranquil Thunderstorms (720p) -https://a.jsrdn.com/broadcast/18b42f9aef/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TrinityChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ytimg.com/vi/_Jt1yB1y-MM/hqdefault.jpg" group-title="Religious",Trinity Channel (480p) [Not 24/7] -http://rtmp1.abnsat.com/hls/trinity.m3u8 -#EXTINF:-1 tvg-id="TruTVEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/e3KabTt.jpg" group-title="",TruTV East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023176/trueast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TruTVWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/e3KabTt.jpg" group-title="",TruTV West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023178/truwest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IX8uInV.png" group-title="Local",TSTV (720p) -http://tstv-stream.tsm.utexas.edu/hls/livestream_hi/index.m3u8 -#EXTINF:-1 tvg-id="TulalipTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2I3OG2n.png" group-title="",Tulalip TV (720p) [Not 24/7] -https://dcunilive262-lh.akamaihd.net/i/dclive_1@303126/index_150_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="TVLand.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/tv-land-us.png" group-title="Classic",TV Land (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/TVLand/playlist.m3u8 -#EXTINF:-1 tvg-id="WHPSCD.us" tvg-country="US" tvg-language="English" tvg-logo="http://313watkins.com/images/logo.png" group-title="Local",TV33 Detroit Live (WHPR) (720p) [Not 24/7] -http://162.244.81.156:1935/whprtv33roku/whprtv33roku/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBJ1.us" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",TVB J1 (720p) [Geo-blocked] -https://bcovlive-a.akamaihd.net/f23dfe49b06b45d8878b55b4b6909595/us-west-2/5324042807001/4a3bca5b047b4564b18bb12dfa26ba62/playlist_ssaiM.m3u8 -#EXTINF:-1 tvg-id="TVS.us" tvg-country="US" tvg-language="English" tvg-logo="https://paraguaype.com/wp-content/uploads/2016/07/tvs-encarnacion-televisora-del-sur-en-vivo-online.jpg" group-title="",TVS (1080p) [Not 24/7] -https://rds3.desdeparaguay.net/tvs/tvs/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSBoxing.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sal5CkX.jpg" group-title="Sports",TVS Boxing (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsboxing/index.m3u8 -#EXTINF:-1 tvg-id="TVSCipherNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Cipher Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmystery/index.m3u8 -#EXTINF:-1 tvg-id="TVSClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VLWDHGs.png" group-title="Classic",TVS Classic Movies (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsclassicmovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSClassicSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ui099xQ.jpg" group-title="Sports",TVS Classic Sports (360p) -http://rpn1.bozztv.com/36bay2/gusa-tvs/index.m3u8 -#EXTINF:-1 tvg-id="TVSComedyNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lHvWCyV.jpg" group-title="Comedy",TVS Comedy Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-comedyclassics/index.m3u8 -#EXTINF:-1 tvg-id="TVSDriveInMovie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RhKSIGQ.jpg" group-title="Movies",TVS Drive In Movie (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsdriveinmovie/index.m3u8 -#EXTINF:-1 tvg-id="TVSFamilyChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iuQyJ7f.jpg" group-title="Family",TVS Family Channel (360p) -https://rpn1.bozztv.com/36bay2/gusa-TVSFamilyChannel/index.m3u8 -#EXTINF:-1 tvg-id="TVSFilmNoirNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Movies",TVS Film Noir Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-TVSFilmNoir/index.m3u8 -#EXTINF:-1 tvg-id="TVSFrontPageDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Front Page Detective (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsfrontpagedetective/index.m3u8 -#EXTINF:-1 tvg-id="TVSHiTops.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Kids",TVS Hi Tops (360p) -https://rpn1.bozztv.com/36bay2/gusa-hitops/index.m3u8 -#EXTINF:-1 tvg-id="TVSHollywoodHistory.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Hollywood History (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvshollywoohistory/mono.m3u8 -#EXTINF:-1 tvg-id="TVSHorrorNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uNQeGHw.jpg" group-title="Classic",TVS Horror Network (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvshorror/index.m3u8 -#EXTINF:-1 tvg-id="TVSInspirationalNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Inspirational Network (360p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-TVSInspirationalNetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSMainstreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/37OGfa3.jpg" group-title="Classic",TVS Mainstreet (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmainst/index.m3u8 -#EXTINF:-1 tvg-id="TVSMusicNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Music",TVS Music Network (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmusic/index.m3u8 -#EXTINF:-1 tvg-id="TVSNostalgia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Nostalgia (472p) -https://rpn1.bozztv.com/36bay2/gusa-nostalgia/index.m3u8 -#EXTINF:-1 tvg-id="TVSNostalgiaMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5Ygj2DL.jpg" group-title="Classic",TVS Nostalgia Movies (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvsNostalgiaMovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSPetParadeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Pet Parade Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-petparadenetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSPinballNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Kids",TVS Pinball Network (694p) -https://rpn1.bozztv.com/36bay2/gusa-TVSCartoonNetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSQuizShowNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Quiz Show Network (272p) -https://rpn1.bozztv.com/36bay2/gusa-tvsgameshow/index.m3u8 -#EXTINF:-1 tvg-id="TVSRareCollectibles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Shop",TVS Rare Collectibles (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsrarecollectibles/index.m3u8 -#EXTINF:-1 tvg-id="TVSSelectNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="General",TVS Select Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsselect/index.m3u8 -#EXTINF:-1 tvg-id="TVSSiloDiscountNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Shop",TVS Silo Discount Network (484p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvssilodiscount/index.m3u8 -#EXTINF:-1 tvg-id="TVSSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OFO86K5.jpg" group-title="Sports",TVS Sports (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvssports/index.m3u8 -#EXTINF:-1 tvg-id="TVSSportsBureau.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Sports",TVS Sports Bureau (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvssportsbureau/index.m3u8 -#EXTINF:-1 tvg-id="TVSTallyHo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t0ly2m8.jpg" group-title="Classic",TVS Tally Ho (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvstallyho/index.m3u8 -#EXTINF:-1 tvg-id="TVSTavern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5UjqDht.jpg" group-title="Classic",TVS Tavern (720p) -https://rpn1.bozztv.com/36bay2/gusa-tavern/index.m3u8 -#EXTINF:-1 tvg-id="TVSTelevisionNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="General",TVS Television Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvstn/index.m3u8 -#EXTINF:-1 tvg-id="TVSTodayHomeEntertainmentNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="",TVS Today Home Entertainment Network (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-TVSTodayHomeEntertainment/index.m3u8 -#EXTINF:-1 tvg-id="TVSTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bgqy4fL.jpg" group-title="Travel",TVS Travel Network (352p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvstravel/index.m3u8 -#EXTINF:-1 tvg-id="TVSTurbo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RMewTGr.jpg" group-title="Sports",TVS Turbo (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsturbo/index.m3u8 -#EXTINF:-1 tvg-id="TVSWesternMovie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UsgbmfF.png" group-title="Classic",TVS Western Movie (270p) -https://rpn1.bozztv.com/36bay2/gusa-tvswesternmovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSWomenSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jQdBjyx.jpg" group-title="Sports",TVS Women Sports (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvswsn/index.m3u8 -#EXTINF:-1 tvg-id="UALRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MrLTXL1.jpg" group-title="Local",UALR TV (720p) [Offline] -https://na-all23.secdn.net/pegstream3-live/play/65ea794b-dd82-41ce-8e98-a9177289a063/master.m3u8 -#EXTINF:-1 tvg-id="UCTVUniversityofCalifornia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ehMz9T5.png" group-title="Education",UCTV University of California (720p) [Not 24/7] -https://59e8e1c60a2b2.streamlock.net/509/509.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="UNWebTV.us" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/lPyJhBN.png" group-title="News",UN Web TV (540p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/un150_A1_1@575439/master.m3u8 -#EXTINF:-1 tvg-id="UnbeatenCombat.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTU1MDBf/UnbeatenCombat_450x450.png" group-title="Sports",Unbeaten Combat (720p) [Offline] -https://d179m5eq83yziw.cloudfront.net/live3/unbeaten_tv/bitrate1-clear.isml/manifest.m3u8 -#EXTINF:-1 tvg-id="Unidentified.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/naYszow.jpg" group-title="Documentary",Unidentified [Offline] -https://a.jsrdn.com/broadcast/4hhfi556/indexR720P.m3u8 -#EXTINF:-1 tvg-id="KCKSLD8.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Sports",Untamed Sports TV (KCKS-LD8) (480p) [Not 24/7] -https://cdn.igocast.com/channel8_hls/channel8_master.m3u8 -#EXTINF:-1 tvg-id="UNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CzIpMK9.jpg" group-title="",UNTV News & Recue (1080p) [Timeout] -https://cdn.untvweb.com/live-stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VallenatoInternacional.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/valleinalradio/picture?width=320&height=320" group-title="Music",Vallenato Internacional (720p) [Not 24/7] -https://59a564764e2b6.streamlock.net/vallenato/Vallenato2/playlist.m3u8 -#EXTINF:-1 tvg-id="VBSTV.us" tvg-country="US" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/IWpevBp.jpg" group-title="",VBS TV (360p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://d80z5qf1qyhbf.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Vevo2K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SG96HGW.jpg" group-title="Music",Vevo 2K (1080p) [Offline] -https://5fa09a21270b74000140368e-samsung.ssai.zype.com/5fa09a21270b74000140368e_samsung/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoCountry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BFdWrhQ.jpg" group-title="Music",Vevo Country (1080p) [Offline] -https://5dcc69faf960dd5dcc551818-s-2.ssai.zype.com/5dcc69faf960dd5dcc551818-s-2/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Lbc9cYw.png" group-title="Music",Vevo Hip Hop (720p) -https://5dcc6a54d90e8c5dc4345c16-s-4.ssai.zype.com/5dcc6a54d90e8c5dc4345c16-s-4/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoHoliday.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/11162020/Vevo_Holiday_190X190.png?raw=true" group-title="",Vevo Holiday (1080p) [Offline] -https://5dcc69bb1621dc5de50b1db7-s-1.ssai.zype.com/5dcc69bb1621dc5de50b1db7-s-1/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoLatino.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/D7SwmuB.png" group-title="Music",Vevo Latino (1080p) [Not 24/7] -https://5dcc6a9f1621dc5dd511ca14-s-5.ssai.zype.com/5dcc6a9f1621dc5dd511ca14-s-5/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoPopEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Me1wLzi.jpg" group-title="Music",Vevo Pop Europe (1080p) -https://5f3491c50b093e00015a3c4c-samsung.eu.ssai.zype.com/5f3491c50b093e00015a3c4c_samsung_eu/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoRB.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fJFzPB7.jpg" group-title="Music",Vevo R&B (1080p) [Offline] -https://5dcc6a2840dfd15e7f8518ef-s-3.ssai.zype.com/5dcc6a2840dfd15e7f8518ef-s-3/manifest.m3u8 -#EXTINF:-1 tvg-id="VH1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/27/VH1_2020.png" group-title="Music",VH1 (1080p) -https://content.uplynk.com/channel/36953f5b6546464590d2fcd954bc89cf.m3u8 -#EXTINF:-1 tvg-id="VictorValleyMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/VictorValleyMovies_229x229.png?raw=true" group-title="Movies",Victor Valley Movies (1080p) [Not 24/7] -https://2-fss-1.streamhoster.com/pl_122/201794-1414514-1/playlist.m3u8 -#EXTINF:-1 tvg-id="VictoryTelevisionNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yqA2PJj.jpg" group-title="Religious",Victory Television Network (240p) [Timeout] -http://184.173.179.163:1935/victorytelevisionnetwork/victorytelevisionnetwork/playlist.m3u8 -#EXTINF:-1 tvg-id="WHOHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oua9m6O.jpg" group-title="Local",Village of Hastings-On-Hudson NY (WHOH-TV) (360p) -http://stream.swagit.com/live-edge/hastingsonhudsonny/smil:std-4x3-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="VoAPersian.us" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/7uEI6ck.png" group-title="News",VoA Persian (1080p) -https://voa-lh.akamaihd.net/i/voapnn_7@72817/master.m3u8 -#EXTINF:-1 tvg-id="VoATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9A6LZ7z.jpg" group-title="News",VoA TV (1080p) -https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/master.m3u8 -#EXTINF:-1 tvg-id="VoATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9A6LZ7z.jpg" group-title="News",VoA TV (1080p) [Not 24/7] -https://voa-lh.akamaihd.net/i/voa_mpls_tvmc3_3@320295/master.m3u8 -#EXTINF:-1 tvg-id="VSiN.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/VSiN_400x400.png?raw=true" group-title="",VSiN (720p) -https://stream.rcncdn.com/live/vsinproxy.m3u8 -#EXTINF:-1 tvg-id="WarnerTV.us" tvg-country="TH" tvg-language="Thai" tvg-logo="http://static.epg.best/fr/WarnerTV.fr.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Warner TV (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 -https://www.livedoomovie.com/02_WarnerTVHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="WarnerTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/fr/WarnerTV.fr.png" group-title="Movies",Warner TV (720p) [Timeout] -http://203.154.243.89:11205 -#EXTINF:-1 tvg-id="WatchItKid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DAhbkLv.png" group-title="Kids",Watch It Kid (486p) -https://content.uplynk.com/channel/ce3b524c342247549e996e7d3a977157.m3u8 -#EXTINF:-1 tvg-id="WatchItScream.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ylPU4Uf.jpg" group-title="Movies",Watch It Scream! (720p) -https://content.uplynk.com/channel/29aff31fecb848ab9044369db2d61642.m3u8 -#EXTINF:-1 tvg-id="WCBI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WCBI-TV News Tupelo MS (720p) -https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 -#EXTINF:-1 tvg-id="WCBI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WCBI-TV News Tupelo MS (720p) -https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 -#EXTINF:-1 tvg-id="WCCATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://worcester.vod.castus.tv/wccalive.png" group-title="Local",WCCA 194 Worcester MA (WCCA-TV) (480p) -https://worcester.vod.castus.tv/live/ch1.m3u8 -#EXTINF:-1 tvg-id="WDAYNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDAY News Fargo ND (720p) -https://player-api.new.livestream.com/accounts/27442514/events/8305246/live.m3u8 -#EXTINF:-1 tvg-id="WDAYX.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local;Weather",WDAY-X Automatic Weather Frago ND (720p) -https://player-api.new.livestream.com/accounts/27442514/events/8331542/live.m3u8 -#EXTINF:-1 tvg-id="WDEF.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDEF-TV News Chattanooga TN (720p) -http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 -#EXTINF:-1 tvg-id="WDEF.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDEF-TV News Chattanooga TN (720p) -http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 -#EXTINF:-1 tvg-id="KCKSLD6.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",WeatherNation (KCKS-LD6) (480p) [Not 24/7] -https://cdn.igocast.com/channel6_hls/channel6_master.m3u8 -#EXTINF:-1 tvg-id="Westerns4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU0OTlf/NostTV_Westerns4U.png" group-title="Classic",Westerns 4U (480p) [Not 24/7] -https://broadcast.mytvtogo.net/westerntv4u/westerntv4u/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (720p) -http://encodercdn1.frontline.ca/encoder182/output/WGN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (720p) -http://trn03.tulix.tv/teleup-mBm5MQ50rA/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/WGN/playlist.m3u8 -#EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us" tvg-country="US" tvg-language="English" tvg-logo="http://wpcommunitymedia.org/images/city-of-white-plains.png" group-title="Local",White Plains Community Media (360p) -https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8 -#EXTINF:-1 tvg-id="WCAT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 3) (480p) -https://frontdoor.wcat-tv.org:8787/live/live.m3u8 -#EXTINF:-1 tvg-id="WCAT15.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 15) (360p) [Not 24/7] -https://edu-wcat.azureedge.net/live/live.m3u8 -#EXTINF:-1 tvg-id="WCAT22.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 22) (480p) -https://frontdoor.wcat-tv.org:8686/live/live.m3u8 -#EXTINF:-1 tvg-id="WLNGRadio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/11r6tgW.png" group-title="Local",WLNG Radio (410p) [Not 24/7] -http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="WLSTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WLS TV News (720p) -https://content.uplynk.com/channel/ext/aac37e2c66614e699fb189ab391084ff/wls_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WMFDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://wmfd.com/images/logo.png" group-title="Local",WMFD-TV 68 Mansfield OH (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/1194911/events/3466400/live.m3u8 -#EXTINF:-1 tvg-id="WMGT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WMGT-TV News Macon GA (720p) -https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 -#EXTINF:-1 tvg-id="WMGT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WMGT-TV News Macon GA (720p) -https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 -#EXTINF:-1 tvg-id="WPIX.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/11462/s51306_h3_aa.png" group-title="Local",WPIX 11 (1080p) [Timeout] -http://71.187.29.220:8000/play/a08o/index.m3u8 -#EXTINF:-1 tvg-id="WPVITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WPVI-TV News (720p) -https://content.uplynk.com/channel/ext/10b98e7c615f43a98b180d51797e74aa/wpvi_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WTVDTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WTVD TV News (720p) -https://content.uplynk.com/channel/ext/f05837c508c44712aa7129d531f7dbe6/wtvd_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WTVQ.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WTVQ-DT News Lexington KY (720p) -https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 -#EXTINF:-1 tvg-id="WTVQ.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WTVQ-DT News Lexington KY (720p) -https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 -#EXTINF:-1 tvg-id="WuTangCollection.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jbMmsjI.png" group-title="Music",Wu Tang Collection (576p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=73 -#EXTINF:-1 tvg-id="WWAY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WWAY News Willmington NC (720p) -https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 -#EXTINF:-1 tvg-id="WWAY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WWAY News Willmington NC (720p) -https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 -#EXTINF:-1 tvg-id="WWENet.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",WWE Network (720p) -http://38.91.57.12:2082/wwe/playlist.m3u8 -#EXTINF:-1 tvg-id="WXXV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WXXV-TV News Biloxi MS (720p) -https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 -#EXTINF:-1 tvg-id="WXXV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WXXV-TV News Biloxi MS (720p) -https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 -#EXTINF:-1 tvg-id="Xcorps.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SDKWWQu.png" group-title="Series",Xcorps (720p) [Timeout] -https://simultv.s.llnwi.net/n4s4/xcorps/interlink.m3u8 -#EXTINF:-1 tvg-id="Xcorps.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SDKWWQu.png" group-title="Series",Xcorps (720p) [Offline] -https://rpn1.bozztv.com/36bay2/gusa-xcorps/playlist.m3u8 -#EXTINF:-1 tvg-id="XploreReisen.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore Reisen (720p) [Not 24/7] -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/1ecb875d-8be7-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) -https://d1ewctnvcwvvvu.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://s.yimg.com/os/creatr-uploaded-images/2019-09/7ce28da0-de21-11e9-8ef3-b3d0b3dcfb8b" group-title="News",Yahoo! News (720p) -https://content.uplynk.com/channel/411ba7ca8cb6403a9e73509e49c3a77b.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) -https://a.jsrdn.com/broadcast/e0f99ab19c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="YoutooAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3se2VEB.png" group-title="Entertainment",Youtoo America (1080p) -https://thegateway.app/YouToo/CueTones/playlist.m3u8 -#EXTINF:-1 tvg-id="YoutooAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3se2VEB.png" group-title="Entertainment",Youtoo America (1080p) -https://thegateway.app/YouToo/YTamerica/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalDisney.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Q9KoVy9.png" group-title="Kids",Канал Disney (576p) [Not 24/7] -http://188.40.68.167/russia/disney/playlist.m3u8 diff --git a/channels/us_adultiptv.m3u b/channels/us_adultiptv.m3u deleted file mode 100644 index db43f2be3..000000000 --- a/channels/us_adultiptv.m3u +++ /dev/null @@ -1,51 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultIPTVnetAnal.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Anal (720p) -http://cdn.adultiptv.net/anal.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetAsian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Asian (720p) -http://cdn.adultiptv.net/asian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Ass (720p) -http://cdn.adultiptv.net/bigass.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Dick (720p) -http://cdn.adultiptv.net/bigdick.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Tits (720p) -http://cdn.adultiptv.net/bigtits.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlonde.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blonde (720p) -http://cdn.adultiptv.net/blonde.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blowjob (720p) -http://cdn.adultiptv.net/blowjob.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBrunette.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Brunette (720p) -http://cdn.adultiptv.net/brunette.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCompilation.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Compilation (720p) -http://cdn.adultiptv.net/compilation.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Cuckold (720p) -http://cdn.adultiptv.net/cuckold.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Fetish (720p) -http://cdn.adultiptv.net/fetish.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gangbang (720p) -http://cdn.adultiptv.net/gangbang.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGay.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gay (720p) -http://cdn.adultiptv.net/gay.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Hardcore (720p) -http://cdn.adultiptv.net/hardcore.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Interracial (720p) -http://cdn.adultiptv.net/interracial.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Latina (720p) -http://cdn.adultiptv.net/latina.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Lesbian (720p) -http://cdn.adultiptv.net/lesbian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLiveCams.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Live Cams (720p) -http://cdn.adultiptv.net/livecams.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net MILF (720p) -http://cdn.adultiptv.net/milf.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Pornstar (720p) -http://cdn.adultiptv.net/pornstar.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net POV (720p) -http://cdn.adultiptv.net/pov.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRough.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Rough (720p) -http://cdn.adultiptv.net/rough.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Russian (720p) -http://cdn.adultiptv.net/russian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Teen (720p) -http://cdn.adultiptv.net/teen.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Threesome (720p) -http://cdn.adultiptv.net/threesome.m3u8 diff --git a/channels/us_adultswim.m3u b/channels/us_adultswim.m3u deleted file mode 100644 index 732df63a7..000000000 --- a/channels/us_adultswim.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultSwimAquaTeenHungerForce.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Animation",Adult Swim Aqua Teen Hunger Force (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/aqua-teen/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimBlackJesus.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/2b/Black_Jesus_title_card.png" group-title="Series",Adult Swim Black Jesus (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/black-jesus/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimChannel5.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sCRPkPk.jpg" group-title="Entertainment",Adult Swim Channel 5 (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/channel-5/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimDreamCorpLLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jOTChgo.jpg" group-title="Comedy",Adult Swim Dream Corp LLC (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/DREAM-CORP-LLC/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimFishcam.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AdultSwim_262x262.png?raw=true" group-title="",Adult Swim Fishcam (1080p) -https://media.cdn.adultswim.com/streams/playlists/fishcam.backup.m3u8 -#EXTINF:-1 tvg-id="AdultSwimFishcam.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AdultSwim_262x262.png?raw=true" group-title="",Adult Swim Fishcam (1080p) -https://media.cdn.adultswim.com/streams/playlists/live-stream.primary.v2.m3u8 -#EXTINF:-1 tvg-id="AdultSwimInfomercials.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Adult Swim Infomercials (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/infomercials/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimLastStreamOnTheLeft.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VsAKoN6.jpg" group-title="",Adult Swim Last Stream On The Left (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/lsotl/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimMetalocalypse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/N0pMBQ7.jpg" group-title="",Adult Swim Metalocalypse (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/metalocalypse/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimOffTheAir.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tFks0c6.jpg" group-title="Relax",Adult Swim Off The Air (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/off-the-air/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimRickAndMorty.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vLzXFTa.jpg" group-title="Animation",Adult Swim Rick and Morty (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/rick-and-morty/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimRobotChicken.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bTWIjIw.jpg" group-title="Animation",Adult Swim Robot Chicken (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/robot-chicken/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimSamuraiJack.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zIjbwSa.jpg" group-title="Animation",Adult Swim Samurai Jack (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/samurai-jack/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimTheEricAndreShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tqHQy32.jpg" group-title="Series",Adult Swim The Eric Andre Show (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/eric-andre/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimTheVentureBros.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QQc2rh8.jpg" group-title="Animation",Adult Swim The Venture Bros (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/venture-bros/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimYourPrettyFaceIsGoingToHell.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yVZAI7F.png" group-title="Series",Adult Swim Your Pretty Face Is Going To Hell (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/ypf/stream.m3u8 diff --git a/channels/us_bumblebee.m3u b/channels/us_bumblebee.m3u deleted file mode 100644 index a1b06a9dd..000000000 --- a/channels/us_bumblebee.m3u +++ /dev/null @@ -1,73 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BumblebeeTVAnimalsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YbD8uHc.png" group-title="Relax",Bumblebee TV Animals Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9537b8932c837b49397343/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVAuroraLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1WIEWK7.png" group-title="Relax",Bumblebee TV Aurora Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953819932c837b49397345/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVAutoMoto.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Se1a8Mm.png" group-title="Auto",Bumblebee TV AutoMoto (720p) -https://stitcheraws.unreel.me/wse-node01.powr.com/live/5bf220fad5eeee0f5a40941a/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVBeachesLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4rIbV7e.png" group-title="Relax",Bumblebee TV Beaches Live (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95396f932c837b49397360/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVClassicsOne.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxPsj2s.png" group-title="Movies",Bumblebee TV Classics #1 (480p) -https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/manifest/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/0d14dc99-cc30-4c0e-8531-40cdfe650694/1.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVClassicsTwo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxPsj2s.png" group-title="Movies",Bumblebee TV Classics #2 (720p) -https://stitcheraws.unreel.me/wse-node05.powr.com/live/60f881602da3a5575eceb854/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCoronaVirusGov.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxq8ZsK.png" group-title="Science",Bumblebee TV CoronaVirus.Gov (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e7559e8a46b495a2283c5e8/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCountryBoyKidsVideo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p14DjHo.png" group-title="Kids",Bumblebee TV Country Boy Kids Video (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf225aed5eeee0f5a4094bd/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCuteZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/unYHTWg.png" group-title="Kids",Bumblebee TV Cute Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22518d5eeee0f5a409486/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVDocsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fqxw3Mx.png" group-title="",Bumblebee TV Docs Channel (480p) -https://0813a4e76b5d404a97a4070b8e087bc4.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609d9d6344257cbfb6ee4/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVEpicM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uu19VR0.png" group-title="",Bumblebee TV Epic M (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22225d5eeee0f5a40941d/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVFGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uRess78.png" group-title="Kids",Bumblebee TV FGTV (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2624990145130f25474620/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVForestLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J84tZzN.png" group-title="Relax",Bumblebee TV Forest Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953836932c837b49397355/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVFunZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SfJuMjV.png" group-title="Kids",Bumblebee TV Fun Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625030145130f25474622/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVGiggleZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CvbLApY.png" group-title="Kids",Bumblebee TV Giggle Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22526d5eeee0f5a4094b8/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLakeLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xAkuMa4.png" group-title="Relax",Bumblebee TV Lake Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95385c932c837b49397356/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLegoToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxHOu8m.png" group-title="Kids",Bumblebee TV Lego Toons (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22549d5eeee0f5a4094ba/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLetsPlayMinecraft.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EqvWDU4.jpg" group-title="Kids",Bumblebee TV Lets Play Minecraft (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625700145130f25474624/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLifeBae.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HaL9vw1.png" group-title="Lifestyle",Bumblebee TV LifeBae (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22681932c8304fc453418/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMasterBuilder.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KQsAdB4.png" group-title="Kids",Bumblebee TV Master Builder (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2256ed5eeee0f5a4094bb/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMotorCyclist.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QIEhpPp.png" group-title="Auto",Bumblebee TV MotorCyclist (360p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2218bd5eeee0f5a40941b/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMountainLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2Ipv14J.png" group-title="Relax",Bumblebee TV Mountain Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95387b932c837b49397357/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/78K3L8J.png" group-title="Education",Bumblebee TV Now You Know (720p) -https://stitcheraws.unreel.me/wse-node01.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/78K3L8J.png" group-title="Education",Bumblebee TV Now You Know [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVPopCornFlixAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ths3dIy.png" group-title="Movies",Bumblebee TV PopCornFlix Action (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5d4b21643f4d602ba521b06c/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVRecoilTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ACrkgIH.png" group-title="",Bumblebee TV Recoil TV (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7dff0f932c8368bdbfd5fd/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVRiversLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ii2IDmA.png" group-title="Relax",Bumblebee TV Rivers Live (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95388f932c837b4939735a/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVShortsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TaihS36.jpg" group-title="",Bumblebee TV Shorts Channel (720p) -https://b29da26d9a17436eafe339c08e488f33.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609010d552957bf5aa546/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVSmosh.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eCBYHJ4.png" group-title="",Bumblebee TV Smosh (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625af5748670f12a3bee9/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVSunsetLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K4GaruD.png" group-title="Relax",Bumblebee TV Sunset Live (1080p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538a5932c837b4939735b/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/puiUDbS.png" group-title="Entertainment",Bumblebee TV Thinknoodles [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5afc8Bumblebee+TV10e932c833522744733/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/puiUDbS.png" group-title="Entertainment",Bumblebee TV Thinknoodles (Test for Bitcentral) (720p) -https://2459f78c2f5d42c996bb24407b76877a.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_60f88620abf1e257404a9250/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVToyZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uRxkOD1.jpg" group-title="Kids",Bumblebee TV Toy Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22491932c8304fc4533e4/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVTrinityBeyond.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ugdU8wg.png" group-title="",Bumblebee TV Trinity & Beyond (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2626030145130f25474626/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVTropicsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8F9qPbt.png" group-title="Relax",Bumblebee TV Tropics Live (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538b9932c837b4939735c/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVWaterfallsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/i43l93j.png" group-title="Relax",Bumblebee TV Waterfalls Live (1080p) -https://95771f8415a84e31bd152fe9c6c9905c.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5c953910932c837b4939735d/playlist.m3u8 diff --git a/channels/us_distro.m3u b/channels/us_distro.m3u deleted file mode 100644 index 338501a6a..000000000 --- a/channels/us_distro.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ClassicRerunsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://classicreruns.com/wp-content/uploads/2021/01/CRTV-1024x1024-logo-nobkg-e1629529582672.png" group-title="Entertainment",Classic Reruns TV (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/wnQPvAN9QBODw9hP-H0rZA/master.m3u8 -#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzA3OTUzMjRf?inline=1" group-title="Sports",Hard Knocks (1080p) [Not 24/7] -https://d397e8970cd346fdac04c0af81290c3a.mediatailor.us-west-2.amazonaws.com/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Hard-Knocks-DistroTV/109.m3u8 -#EXTINF:-1 tvg-id="HumorMill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lYqcF1P.png" group-title="Comedy",Humor Mill (1080p) [Not 24/7] -https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-DistroTV/152.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) -https://nmxdistro.akamaized.net/hls/live/529965/Live_1/index.m3u8 -#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TDAmeritradeNetwork_284x284.png?raw=true" group-title="Business",TD Ameritrade Network (1080p) -https://tdameritrade-distro.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) -https://tfd-distro.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) -https://thefirst-distroscale.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://venntv-distrotv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (1080p) [Not 24/7] -https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-DistroTV/150.m3u8 diff --git a/channels/us_filmon.m3u b/channels/us_filmon.m3u deleted file mode 100644 index c078a6449..000000000 --- a/channels/us_filmon.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News (480p) [Offline] -http://www.filmon.com/vr-streams/27.high/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/c/c1/BBC_One_Scotland_2021.png" group-title="News",BBC One Scotland (480p) [Offline] -http://www.filmon.com/vr-streams/3166.high/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmonEroticSensations.us" tvg-country="INT" tvg-language="English" tvg-logo="https://koditips.com/wp-content/uploads/filmon-not-working.jpg" group-title="XXX",Filmon Erotic Sensations (480p) [Not 24/7] -https://www.filmon.com/vr-streams/6152.high/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmonFetishFactory.us" tvg-country="INT" tvg-language="English" tvg-logo="https://koditips.com/wp-content/uploads/filmon-not-working.jpg" group-title="XXX",Filmon Fetish Factory (480p) [Not 24/7] -https://www.filmon.com/vr-streams/6158.high/playlist.m3u8 diff --git a/channels/us_fubo.m3u b/channels/us_fubo.m3u deleted file mode 100644 index ca15f89f3..000000000 --- a/channels/us_fubo.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FootballDailyXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VJyUVQ2.png" group-title="Sports",Football Daily (XUMO) (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-footballdaily/CDN/master.m3u8 -#EXTINF:-1 tvg-id="fuboSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cArIeKS.png" group-title="Sports",fubo Sports Network (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-fubo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="MotorvisionXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WPklHVE.jpg" group-title="Auto",Motorvision (XUMO) (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-motorvisiontv/CDN/master.m3u8 diff --git a/channels/us_glewedtv.m3u b/channels/us_glewedtv.m3u deleted file mode 100644 index 00ab3f30c..000000000 --- a/channels/us_glewedtv.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) [Not 24/7] -https://redseat-thefirst-glewedtv.amagi.tv/index.m3u8 diff --git a/channels/us_imdbtv.m3u b/channels/us_imdbtv.m3u deleted file mode 100644 index 66e432760..000000000 --- a/channels/us_imdbtv.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AbsoluteRealitybyWETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oOFjyYf.png" group-title="Entertainment",Absolute Reality by WE TV (1080p) -https://amc-absolutereality-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (1080p) -https://amc-amcpresents-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IFCFilmsPicks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",IFC Films Picks (1080p) -https://amc-ifc-films-picks-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RushbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",Rush by AMC (1080p) -https://amc-rushbyamc-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SlightlyOffbyIFC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",Slightly Off by IFC (1080p) -https://amc-slightly-off-by-amc-1.imdbtv.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_klowdtv.m3u b/channels/us_klowdtv.m3u deleted file mode 100644 index c0ed35499..000000000 --- a/channels/us_klowdtv.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AWE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d2pggiv3o55wnc.cloudfront.net/awe/wp-content/uploads/2015/09/AWELogoBlk.jpg" group-title="",AWE (720p) -http://n1.klowdtv.net/live1/awe_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="DemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (720p) -https://demandafrica-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (720p) [Offline] -https://estv-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FidoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kvdqP3H.jpg" group-title="Entertainment",Fido TV (720p) [Not 24/7] -http://n1.klowdtv.net/live3/fido_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.gameshownetwork.com/storage/app/media/2020/Navigation/gsn_logo.jpg" group-title="Entertainment",Game Show Network East (720p) [Not 24/7] -http://n1.klowdtv.net/live2/gsn_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="HNCFree.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xXr4Cnq.png" group-title="",HNC Free (720p) [Offline] -https://hncfree-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) -http://n1.klowdtv.net/live1/oan_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) [Geo-blocked] -https://cdn.klowdtv.net/803B48A/oan_aws_ms/OAN.m3u8 -#EXTINF:-1 tvg-id="PopTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://getlogo.net/wp-content/uploads/2020/10/pop-tv-logo-vector.png" group-title="Entertainment",Pop TV (720p) [Not 24/7] -http://n1.klowdtv.net/live2/pop_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="QVCLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://s3-us-west-2.amazonaws.com/klowdtvstorage/herring/images/channels/qvcLive/logo_small.png" group-title="Shop",QVC Live (720p) [Not 24/7] -http://n1.klowdtv.net/live2/qvclive_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RedseatTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",Redseat The First (720p) -https://redseat-thefirst-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (720p) -https://sportsgrid-klowdtv.amagi.tv/playlist.m3u8 diff --git a/channels/us_localbtv.m3u b/channels/us_localbtv.m3u deleted file mode 100644 index ae3cc70cf..000000000 --- a/channels/us_localbtv.m3u +++ /dev/null @@ -1,190 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KFPHDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/d/d6/GetTV_2016_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",KFPH-DT3 (GetTV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-px.theus6tv.tk/hls/13.3/playlist.m3u8 -#EXTINF:-1 tvg-id="KYWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/9/96/KYW-TV_CBS_2013_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",KYW-DT1 (CBS 3) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/3.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WABCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/WABC_TV_New_2021.svg/1280px-WABC_TV_New_2021.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WABC-DT1 (ABC 7) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/7.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WABCDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/HSN_logo.svg/1024px-HSN_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WABC-DT4 (HSN) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/7.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.squarespace-cdn.com/content/v1/5703cb7722482eac526f8659/1459877956845-45K5TTBZ344E6IK695H4/image-asset.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT1 (TCT) (1080p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/4.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/0/00/AceTV-USA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WACP-DT2 (AceTV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/4.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Logo_of_Liquidation_Channel.svg/1024px-Logo_of_Liquidation_Channel.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT4 (ShopLC) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/4.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/50/Jewelry_television_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT5 (Jewelry TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/4.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT6.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/5f/The_Family_Channel_Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WACP-DT6 (The Family Channel) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/4.6/playlist.m3u8 -#EXTINF:-1 tvg-id="WCAUDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/WCAUlogo2.svg/1024px-WCAUlogo2.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WCAU-DT1 (NBC 10) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/10.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WCAUDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Cozi_TV_logo.svg/1024px-Cozi_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WCAU-DT2 (COZI TV) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/10.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WCBSDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/CBS_2.svg/1024px-CBS_2.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WCBS-DT1 (CBS 2) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/2.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WDPNDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/be/Grit_TV_Network_Logo.gif" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WDPN-DT2 (Grit) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/2.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WDPNDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/f/f6/RetroTV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WDPN-DT5 (Retro TV) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/2.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WELLLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/Daystar_TV.PNG" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WELL-LD1 (Daystar) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/45.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WFMZDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://wfmz.com/app/site/images/69_wfmz_id_logo.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WFMZ-DT1 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/69.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XHHQFAX.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT1 (PBS Philadelphia) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/12.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ULZfmVT.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT2 (Y2) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/12.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ImKLPYs.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT3 (Y Kids) (720p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/12.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Azteca_America_2015.svg/1024px-Azteca_America_2015.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WKOB-LD1 (Azteca America 42) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/Daystar_TV.PNG" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD2 (Daystar) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD5.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sonlifetv.com/images/sbnlogo.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD5 (SonLife) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD6.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/46/Estrella_TV_2020_Logo.svg/1920px-Estrella_TV_2020_Logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD6 (Estrella TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.6/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD7.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Logo_of_Liquidation_Channel.svg/1920px-Logo_of_Liquidation_Channel.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD7 (ShopLC) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.7/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD8.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.novelisima.com/assets/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD8 (Novelisima) (480p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/42.8/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/WLIW_logo_2011.svg/1024px-WLIW_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLIW-DT1 (PBS WLIW) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/21.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Create_TV_network_logo.svg/1920px-Create_TV_network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WLIW-DT2 (Create TV) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/21.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/6b/PBSworld.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WLIW-DT3 (World) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/21.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://d30sbyh791tgpf.cloudfront.net/wp-content/themes/all-arts/libs/images/ALL-ARTS-WNET-GROUP-lockup-2021.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLIW-DT4 (All Arts) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/21.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WLVTDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/7/74/CurrentPBS39Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLVT-DT1 (PBS 39) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/39.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WMBQLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/e/e8/FNX_Web_Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WMBQ-LD (FNX) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/46.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WMCNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/WMCN44.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WMCN-DT1 (ShopHQ) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/44.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNBCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/WNBC_4_NY.svg/1024px-WNBC_4_NY.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNBC-DT1 (NBC 4) (1080p) [Not 24/7] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/4.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNBCDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Cozi_TV_logo.svg/1024px-Cozi_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNBC-DT2 (COZI TV) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/4.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNETDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/45/WNET_logo_2011.svg/1024px-WNET_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNET-DT1 (PBS THIRTEEN) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/13.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNETDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/45/WNET_logo_2011.svg/1024px-WNET_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNET-DT2 (PBS KIDS) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/13.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJSDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/bf/NJ_PBS_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNJS-DT1 (NJ PBS) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/23.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJSDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/NHK_World.svg/1024px-NHK_World.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNJS-DT2 (NHK WORLD) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/23.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJUDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/56/TeleXitos_TV.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNJU-DT2 (teleXitos) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/47.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/3/3c/NYCTV_Life_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYE-DT1 (NYC Life) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/25.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT2.us" tvg-country="US" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNYE-DT2 (NYC Gov) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/25.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://tv.cuny.edu/homepage/wp-content/uploads/2017/06/cunytv-logo-w.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYE-DT3 (CUNY TV) (1080p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/25.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYJLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/0/0d/WNYJ66.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNYJLD (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/28.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Fts-new-york-a.svg/1024px-Fts-new-york-a.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYW-DT1 (FOX 5) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/5.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPHLDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/95/WPHL-TV_logo.svg/1024px-WPHL-TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WPHL-DT1 (PHL17) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/17.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPHLDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/2/2c/Antenna_TV_logo.svg/800px-Antenna_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPHL-DT2 (Antenna TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/17.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WPHYCD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sonlifetv.com/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPHY-CD2 (SonLife) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/25.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WPIXDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/f2/Rewind_TV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPIX-DT4 (Rewind TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/11.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WPPXDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/72/TrueReal_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPPX-DT4 (TrueReal) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/61.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WPPXDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/1e/LAFF_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPPX-DT5 (Laff) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/61.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WPVIDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/WPVI-TV_logos.svg/1024px-WPVI-TV_logos.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WPVI-DT1 (ABC 6) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/6.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPXNDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/6/61/Defy_TV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPXN-DT4 (DEFY TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/31.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/88/WRNN-TV_RNN_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WRNN-DT1 (ShopLC) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/48.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Circle_Network_logo.svg/1920px-Circle_Network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT2 (Circle) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/48.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://universe-legacy-dacast-images.dacast.com/159745/sc-533396-5.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT3 (Canal de la Fe) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/48.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/QVC_logo_2019.svg/1920px-QVC_logo_2019.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT4 (QVC) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/48.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WTVEDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/85/WTVE51.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WTVE-DT1 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/51.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WTVEDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/85/WTVE51.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WTVE-DT2 (TimelessTV) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/51.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WTXFDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Fts-philadelphia-a.svg/1024px-Fts-philadelphia-a.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WTXF-DT1 (FOX 29) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/29.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WUVPDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/8/8c/True_Crime_Network_logo.svg/1024px-True_Crime_Network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WUVP-DT3 (True Crime Network) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/65.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WWSIDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/56/TeleXitos_TV.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WWSI-DT2 (teleXitos) (432p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-pi.theus6tv.tk/hls/62.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WXTVDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/e0/Univision_41_Nueva_York_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WXTV-DT1 (Univision 41) (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-ny.theus6tv.tk/hls/41.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WZTSCD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://wzts.tv/wp-content/uploads/2018/05/wzts-logo-tv-2-cozi-200px.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WZTS-CD1 (COZI TV) (480p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://v-bluecbl.theus6tv.tk/hls/16.1/playlist.m3u8 diff --git a/channels/us_pbs.m3u b/channels/us_pbs.m3u deleted file mode 100644 index 9f11166bf..000000000 --- a/channels/us_pbs.m3u +++ /dev/null @@ -1,265 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="WMHTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Albany NY (WMHT) (1080p) [Offline] -https://wmhtdt.lls.pbs.org/out/v1/5c496bd4d16348f0bca933eca69bdd1e/index.m3u8 -#EXTINF:-1 tvg-id="KNMETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Albuquerque NM (KNME) (1080p) [Offline] -https://knmedt.lls.pbs.org/out/v1/6bb7cfa3e3c34906a80c5babc026ca92/index.m3u8 -#EXTINF:-1 tvg-id="WLVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Allentown PA (WLVT) (1080p) [Offline] -https://wlvtdt.lls.pbs.org/out/v1/92fd7dd5c56e47dfb169062a69f7a3bf/index.m3u8 -#EXTINF:-1 tvg-id="WNEO.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Alliance OH (WNEO) (1080p) [Offline] -https://wneodt.lls.pbs.org/out/v1/59487e8689f14a92a443d8fd557ac948/index.m3u8 -#EXTINF:-1 tvg-id="KAKMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Anchorage AK (KAKM) (1080p) [Offline] -https://kakmdt.lls.pbs.org/out/v1/01b38c70d1e94da78deec21bb13383ed/index.m3u8 -#EXTINF:-1 tvg-id="KWCMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Appleton MN (KWCM) (1080p) [Offline] -https://kwcmdt.lls.pbs.org/out/v1/e178660dc7cf4389bf8834e4bb10df20/index.m3u8 -#EXTINF:-1 tvg-id="WETATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Arlington DC (WETA) (1080p) [Offline] -https://wetadt5.lls.pbs.org/out/v1/616d9af7dd7641c1ba0b7be651c343a4/index.m3u8 -#EXTINF:-1 tvg-id="WGTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Athens GA (WGTV) (1080p) [Offline] -https://wgtvdt.lls.pbs.org/out/v1/1fe7fe6e36524881bd999a7003394ec7/index.m3u8 -#EXTINF:-1 tvg-id="WOUBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Athens OH (WOUB) (1080p) [Offline] -https://woubdt.lls.pbs.org/out/v1/f9f879eacf9c4b3d859b93c1f889a5e0/index.m3u8 -#EXTINF:-1 tvg-id="KLRUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Austin TX (KLRU) (1080p) [Offline] -https://klrudt.lls.pbs.org/out/v1/c5d426d04957476186321c38e943c49f/index.m3u8 -#EXTINF:-1 tvg-id="WDCQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bad Axe MI (WDCQ) (1080p) [Offline] -https://wdcqdt.lls.pbs.org/out/v1/ef33b9ec5f2f42ad831574cbb2c478f8/index.m3u8 -#EXTINF:-1 tvg-id="WLPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Baton Rouge LA (WLPB) (1080p) [Offline] -https://wlpbdt.lls.pbs.org/out/v1/3f6379f418924ca39e09415a34c92738/index.m3u8 -#EXTINF:-1 tvg-id="WSKGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Binghamton NY (WSKG) (1080p) [Offline] -https://wskgdt.lls.pbs.org/out/v1/ff443d82d55c481a9d1561c5f77a3a4b/index.m3u8 -#EXTINF:-1 tvg-id="WBIQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Birmingham AL (WBIQ) (1080p) [Offline] -https://wbiqdt.lls.pbs.org/out/v1/3d5c7da724d741da9b8e203d03b6b8c3/index.m3u8 -#EXTINF:-1 tvg-id="WTIU.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bloomington IN (WTIU) (1080p) [Offline] -https://wtiudt.lls.pbs.org/out/v1/189f0df07ad448d29880d68f295ab06e/index.m3u8 -#EXTINF:-1 tvg-id="KAIDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Boise ID (KAID) (1080p) [Offline] -https://kaiddt.lls.pbs.org/out/v1/1ba7213ff76e4f3cb73405a2108922ce/index.m3u8 -#EXTINF:-1 tvg-id="WGBHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Boston MA (WGBH) (1080p) [Offline] -https://wgbhdt.lls.pbs.org/out/v1/0e31746edf794871ab0f06cdb48c1e82/index.m3u8 -#EXTINF:-1 tvg-id="WBGUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bowling Green OH (WBGU) (1080p) [Offline] -https://wbgudt.lls.pbs.org/out/v1/6e28e12e9db04b798dc82052cc6d3375/index.m3u8 -#EXTINF:-1 tvg-id="KUSMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bozeman MT (KUSM) (1080p) [Offline] -https://kusmdt.lls.pbs.org/out/v1/ad7a1ac654bc4231854568d83529f893/index.m3u8 -#EXTINF:-1 tvg-id="WNEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Buffalo NY (WNED) (1080p) [Offline] -https://wneddt.lls.pbs.org/out/v1/9042ad5168e54cf8bf14b5db5582a84a/index.m3u8 -#EXTINF:-1 tvg-id="WETK.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Burlington VT (WETK) (1080p) [Offline] -https://wetkdt.lls.pbs.org/out/v1/9c3c95a5cabc4611b06086ae798b7716/index.m3u8 -#EXTINF:-1 tvg-id="WUNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chapel Hill NC (WUNC) (1080p) [Offline] -https://wuncdt.lls.pbs.org/out/v1/84bedaad5c7e4d7abd8a6b63f1b8d4c4/index.m3u8 -#EXTINF:-1 tvg-id="WEIUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Charleston IL (WEIU-TV) (1080p) [Offline] -https://weiudt.lls.pbs.org/out/v1/9f2dc5c07afb4e2a8b704e1462030872/index.m3u8 -#EXTINF:-1 tvg-id="WTVITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Charlotte NC (WTVI) (1080p) [Offline] -https://wtvidt.lls.pbs.org/out/v1/e01f07bdc0cc4375b8894f72b1f0bb40/index.m3u8 -#EXTINF:-1 tvg-id="WTCI.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chattanooga TN (WTCI) (1080p) [Offline] -https://wtcidt.lls.pbs.org/out/v1/b9b09144bbaf4c5b864711748cc32680/index.m3u8 -#EXTINF:-1 tvg-id="WTTWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chicago IL (WTTW) (1080p) [Offline] -https://wttwdt.lls.pbs.org/out/v1/c9c6c698c02f404190e9e5a4e9f4e903/index.m3u8 -#EXTINF:-1 tvg-id="WCET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cincinnati OH (WCET) (1080p) [Offline] -https://wcetdt.lls.pbs.org/out/v1/742a384715ac468cbcd93fef92dafd9d/index.m3u8 -#EXTINF:-1 tvg-id="WPSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Clearfield PA (WPSU) (1080p) [Offline] -https://wpsudt.lls.pbs.org/out/v1/9f1d8d513dc1419fade4c3e08177a585/index.m3u8 -#EXTINF:-1 tvg-id="WVIZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cleveland OH (WVIZ) (1080p) [Offline] -https://wvizdt.lls.pbs.org/out/v1/94ec1f9fa451444789391cd8558ea5ed/index.m3u8 -#EXTINF:-1 tvg-id="KAMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS College Station TX (KAMU) (1080p) [Offline] -https://kamudt.lls.pbs.org/out/v1/60a3ebbf04084e1e851df9b22d45a5e1/index.m3u8 -#EXTINF:-1 tvg-id="WRLKTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Columbia SC (WRLK) (1080p) [Offline] -https://wrlkdt.lls.pbs.org/out/v1/ce2d1420a66b4c2a88d8a48ffecd908d/index.m3u8 -#EXTINF:-1 tvg-id="WOSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Columbus OH (WOSU) (1080p) [Offline] -https://wosudt.lls.pbs.org/out/v1/72f8d6d91e614561b97f37439cd13f81/index.m3u8 -#EXTINF:-1 tvg-id="KETSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Conway AR (KETS) (1080p) [Offline] -https://ketsdt.lls.pbs.org/out/v1/3eccbbb7a0544338b5ee13cf6d5fc1d8/index.m3u8 -#EXTINF:-1 tvg-id="WCTE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cookeville TN (WCTE) (1080p) [Offline] -https://wctedt.lls.pbs.org/out/v1/f7929641d8ae4f0296b10e77ffe6d31c/index.m3u8 -#EXTINF:-1 tvg-id="WKNOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cordova TN (WKNO) (1080p) [Offline] -https://wknodt.lls.pbs.org/out/v1/b7065d6c2d6047c0bb5bd9e20202103c/index.m3u8 -#EXTINF:-1 tvg-id="KEDTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Corpus Christi TX (KEDT) (1080p) [Offline] -https://kedtdt.lls.pbs.org/out/v1/2955c90649c44dac83a2a77513c0b861/index.m3u8 -#EXTINF:-1 tvg-id="KERA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Dallas TX (KERA) (1080p) [Offline] -https://keradt.lls.pbs.org/out/v1/8dd50e7e0ee24d4e8a0812872f332a2c/index.m3u8 -#EXTINF:-1 tvg-id="WPTD.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Dayton OH (WPTD) (1080p) [Offline] -https://wptddt.lls.pbs.org/out/v1/f372be5c7a994b3ebeab2797323de8ee/index.m3u8 -#EXTINF:-1 tvg-id="KBDITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Denver CO (KBDI) (1080p) [Offline] -https://kbdidt.lls.pbs.org/out/v1/5a01f14ff4e4492eb7cda1a79b0ced60/index.m3u8 -#EXTINF:-1 tvg-id="KRMATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Denver CO (KRMA) (1080p) [Offline] -https://krmadt.lls.pbs.org/out/v1/45cb988e1a7440288aae1fe7fe819841/index.m3u8 -#EXTINF:-1 tvg-id="KDINTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Des Moines IA (KDIN) (1080p) [Offline] -https://kdindt.lls.pbs.org/out/v1/e41a89f5fe884dbea2c80fdc974b21c6/index.m3u8 -#EXTINF:-1 tvg-id="WGVUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Detroit MI (WTVS) (1080p) [Offline] -https://wgvudt.lls.pbs.org/out/v1/a9456b151c3e4fe490213e776735bb16/index.m3u8 -#EXTINF:-1 tvg-id="WDSE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Duluth MN (WDSE) (1080p) [Offline] -https://wdsedt.lls.pbs.org/out/v1/33c52d8e7d6e43099ff584805245b694/index.m3u8 -#EXTINF:-1 tvg-id="WENH.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Durham NH (WENH) (1080p) [Offline] -https://wenhdt.lls.pbs.org/out/v1/a1c1eea03387432086459cf0fdd96334/index.m3u8 -#EXTINF:-1 tvg-id="WKARTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS East Lansing MI (WKAR) (1080p) [Offline] -https://wkardt.lls.pbs.org/out/v1/5b13b5c72f5d4b80a6ee9140392caf74/index.m3u8 -#EXTINF:-1 tvg-id="KEET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Eureka CA (KEET) (1080p) [Offline] -https://keetdt.lls.pbs.org/out/v1/a223371529b14afa882d1e872d8acd3d/index.m3u8 -#EXTINF:-1 tvg-id="WNINTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Evansville IN (WNIN) (1080p) [Offline] -https://wnindt.lls.pbs.org/out/v1/338a207086464e179e97f83d4b1798be/index.m3u8 -#EXTINF:-1 tvg-id="KFMETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fargo ND (KFME) (1080p) [Offline] -https://kfmedt.lls.pbs.org/out/v1/25be24fcd0864ec9be6f6b60cb2be826/index.m3u8 -#EXTINF:-1 tvg-id="WGCUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fort Myers FL (WGCU) (1080p) [Offline] -https://wgcudt.lls.pbs.org/out/v1/ac57905c80c8486a8290af7ca78c5026/index.m3u8 -#EXTINF:-1 tvg-id="WFWA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fort Wayne IN (WFWA) (1080p) [Offline] -https://wfwadt.lls.pbs.org/out/v1/8b2a780393274c2ba9b71b9168df2208/index.m3u8 -#EXTINF:-1 tvg-id="WYIN.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Gary IN (WYIN) (1080p) [Offline] -https://wyindt.lls.pbs.org/out/v1/27414b46e52d43758be8227e4a91c863/index.m3u8 -#EXTINF:-1 tvg-id="WITFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Harrisburg PA (WITF) (1080p) [Offline] -https://witfdt.lls.pbs.org/out/v1/15cd55cd6f7442c4a193a47bbfae608a/index.m3u8 -#EXTINF:-1 tvg-id="WEDHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Hartford CT (WEDH) (1080p) [Offline] -https://wedhdt.lls.pbs.org/out/v1/04182c8d6be24c1a98de212f3c55a442/index.m3u8 -#EXTINF:-1 tvg-id="KHET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Honolulu HI (KHET) (1080p) [Not 24/7] -https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8 -#EXTINF:-1 tvg-id="KUHT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Houston TX (KUHT) (1080p) [Offline] -https://kuhtdt.lls.pbs.org/out/v1/5b02f861c8e6453aa2b6cd8c6d26e698/index.m3u8 -#EXTINF:-1 tvg-id="WFYI.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Indianapolis IN (WFYI) (1080p) [Offline] -https://wfyidt.lls.pbs.org/out/v1/f969c8f98dc24032b3879664b622ead0/index.m3u8 -#EXTINF:-1 tvg-id="WMPN.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Jackson MS (WMPN) (1080p) [Offline] -https://wmpndt.lls.pbs.org/out/v1/d914d235ec79418a866aef53f54f2bd2/index.m3u8 -#EXTINF:-1 tvg-id="WJCTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Jacksonville FL (WJCT) (1080p) [Offline] -https://wjctdt.lls.pbs.org/out/v1/a691e1e86f77462d81a738395505e911/index.m3u8 -#EXTINF:-1 tvg-id="KCPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Kansas City MO (KCPT) (1080p) [Offline] -https://kcptdt.lls.pbs.org/out/v1/f63eb4e92e484fae845c31912340e2a2/index.m3u8 -#EXTINF:-1 tvg-id="WETPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Knoxville TN (WETP) (1080p) [Offline] -https://wetpdt.lls.pbs.org/out/v1/8eb86a48b4f54a24a31aa9cf46b02494/index.m3u8 -#EXTINF:-1 tvg-id="KAWETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lakeland MN (KAWE) (1080p) [Offline] -https://kawedt.lls.pbs.org/out/v1/b3a7b02a0d4241a193c91f1f33755c85/index.m3u8 -#EXTINF:-1 tvg-id="KRWGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Las Cruces NM (KRWG) (1080p) [Offline] -https://krwgdt.lls.pbs.org/out/v1/9cbfc7807e834ee39d2849c1bad667f2/index.m3u8 -#EXTINF:-1 tvg-id="KLVXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Las Vegas NV (KLVX) (1080p) [Offline] -https://klvxdt.lls.pbs.org/out/v1/c2d457573e4d4783b558c44e20547e21/index.m3u8 -#EXTINF:-1 tvg-id="WCBBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lewiston ME (WCBB) (1080p) [Offline] -https://wcbbdt.lls.pbs.org/out/v1/d1ca1cb603fd4da09694f0f1f6ba8db0/index.m3u8 -#EXTINF:-1 tvg-id="WKLETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lexington KY (WKLE) (1080p) [Offline] -https://wkledt.lls.pbs.org/out/v1/26354efcebc1400e8861988cd6a321ca/index.m3u8 -#EXTINF:-1 tvg-id="WLJT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lexington TN (WLJT) (1080p) [Offline] -https://wljtdt.lls.pbs.org/out/v1/1ddf810d67f64eeeab40ad9da8885945/index.m3u8 -#EXTINF:-1 tvg-id="KUONTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lincoln NE (KUON) (1080p) [Geo-blocked] -https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8 -#EXTINF:-1 tvg-id="KLCSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Entertainment",PBS Los Angeles CA (KLCS-DT1) (1080p) [Offline] -https://klcsdt.lls.pbs.org/out/v1/6ee318cffa774733acf31f9a1af38036/index.m3u8 -#EXTINF:-1 tvg-id="KOCETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Los Angeles CA (KOCE) (1080p) [Offline] -https://kocedt.lls.pbs.org/out/v1/75f564cba25e4053a8789a1a14d13344/index.m3u8 -#EXTINF:-1 tvg-id="WPNE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Madison WI (WPNE) (1080p) [Offline] -https://wpnedt.lls.pbs.org/out/v1/12d4e3cd7f2c476ea575165bbfb5ac50/index.m3u8 -#EXTINF:-1 tvg-id="WNMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Marquette MI (WNMU) (1080p) [Offline] -https://wnmudt.lls.pbs.org/out/v1/d762d9a7dd4a46c08ca89b1a1abbc475/index.m3u8 -#EXTINF:-1 tvg-id="KSYSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Medford OR (KSYS) (1080p) [Offline] -https://ksysdt.lls.pbs.org/out/v1/aecb830f3f7146a5ab62bacbeeaff661/index.m3u8 -#EXTINF:-1 tvg-id="WLRNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Miami FL (WLRN) (1080p) [Offline] -https://wlrndt.lls.pbs.org/out/v1/9e8346f507f645259f0c6f2837fb7cbe/index.m3u8 -#EXTINF:-1 tvg-id="WPBTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Miami FL (WPBT) (1080p) [Offline] -https://wpbtdt.lls.pbs.org/out/v1/0fbd3da6bffb465ba84f94abaff14973/index.m3u8 -#EXTINF:-1 tvg-id="WMVSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Milwaukee WI (WMVS) (1080p) [Offline] -https://wmvsdt.lls.pbs.org/out/v1/654e3fa9db6d465ea578cf39818fcee6/index.m3u8 -#EXTINF:-1 tvg-id="KTCATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Minneapolis MN (KTCA) (1080p) [Offline] -https://ktcadt.lls.pbs.org/out/v1/21103812ea504393b7f0d521a8b37ab7/index.m3u8 -#EXTINF:-1 tvg-id="WQPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Moline IL (WQPT) (1080p) [Offline] -https://wqptdt.lls.pbs.org/out/v1/6ab72cd3813b469cb5f79a577d49c0b7/index.m3u8 -#EXTINF:-1 tvg-id="WCMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Mount Pleasant MI (WCMU) (1080p) [Offline] -https://wcmudt.lls.pbs.org/out/v1/45ff0524571c41398c5f39ebab6262ef/index.m3u8 -#EXTINF:-1 tvg-id="WIPB.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Muncie IN (WIPB) (1080p) [Offline] -https://wipbdt.lls.pbs.org/out/v1/73cd2d86797b4fc6ac5b660cd5a6f9c4/index.m3u8 -#EXTINF:-1 tvg-id="WNPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Nashville TN (WNPT) (1080p) [Offline] -https://wnptdt.lls.pbs.org/out/v1/f6bca6d722674c5cad621f54b17c217b/index.m3u8 -#EXTINF:-1 tvg-id="PBSEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education",PBS National East (1080p) [Geo-blocked] -https://pbs.lls.cdn.pbs.org/est/index.m3u8 -#EXTINF:-1 tvg-id="PBSWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education",PBS National West (1080p) [Geo-blocked] -https://pbs.lls.cdn.pbs.org/pst/index.m3u8 -#EXTINF:-1 tvg-id="WNJTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7] -https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8 -#EXTINF:-1 tvg-id="WYESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New Orleans LA (WYES) (1080p) [Offline] -https://wyesdt.lls.pbs.org/out/v1/3d4b8e15f65d475f8278fee4ff14becf/index.m3u8 -#EXTINF:-1 tvg-id="WLIWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New York NY (WLIW) (1080p) [Offline] -https://wliwdt.lls.pbs.org/out/v1/a7a2556b48d348b8931d7fc77a57401d/index.m3u8 -#EXTINF:-1 tvg-id="WNETTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New York NY (WNET) (1080p) [Not 24/7] -https://wnetdt.lls.pbs.org/out/v1/0456457548354b88b32fc437e4e7ee01/index.m3u8 -#EXTINF:-1 tvg-id="WHROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Norfolk VA (WHRO) (1080p) [Offline] -https://whrodt.lls.pbs.org/out/v1/3266ff3730e745eba63de795e95e3c08/index.m3u8 -#EXTINF:-1 tvg-id="KPBT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Odessa TX (KPBT) (1080p) [Offline] -https://kpbtdt.lls.pbs.org/out/v1/9b66cea20b8341b8accdb0d20a49431f/index.m3u8 -#EXTINF:-1 tvg-id="KETA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Oklahoma City OK (KETA) (1080p) [Offline] -https://ketadt.lls.pbs.org/out/v1/b718c2a2e2ab4a67a0fce0b1c3fb71a9/index.m3u8 -#EXTINF:-1 tvg-id="WUCFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Orlando FL (WUCF) (1080p) [Offline] -https://wucfdt.lls.pbs.org/out/v1/6557aa0623bc486d8fb3e54afad37307/index.m3u8 -#EXTINF:-1 tvg-id="WMPB.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Owings Mills MD (1080p) [Offline] -https://wmpbdt.lls.pbs.org/out/v1/d1dbc3dc021148fb9ba084e7a68c3739/index.m3u8 -#EXTINF:-1 tvg-id="WSRETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Pensacola FL (WSRE) (1080p) [Offline] -https://wsredt.lls.pbs.org/out/v1/d615170d96024c229c6ae2177dec84e5/index.m3u8 -#EXTINF:-1 tvg-id="WTVPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Peoria IL (WTVP) (1080p) [Offline] -https://wtvpdt.lls.pbs.org/out/v1/9e8f6bfce87a437d8a8a9aab016421e8/index.m3u8 -#EXTINF:-1 tvg-id="WHYYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Philadelphia PA (WHYY-DT1) (1080p) [Offline] -https://whyydt.lls.pbs.org/out/v1/40b7857a84ee4302be8ab755a719cc14/index.m3u8 -#EXTINF:-1 tvg-id="KAETTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Phoenix AZ (KAET) (1080p) [Offline] -https://kaetdt.lls.pbs.org/out/v1/259f25e61b3d47ce8a7e2339a00c5561/index.m3u8 -#EXTINF:-1 tvg-id="WQEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Pittsburgh PA (WQED) (1080p) [Offline] -https://wqeddt.lls.pbs.org/out/v1/1f10d52cea0f45ae88184800e9e6b79e/index.m3u8 -#EXTINF:-1 tvg-id="WCFETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Plattsburgh NY (WCFE) (1080p) [Offline] -https://wcfedt.lls.pbs.org/out/v1/9483ef28a5a8442f8ff45b26ac23a9b0/index.m3u8 -#EXTINF:-1 tvg-id="KENW.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Portales NM (KENW) (1080p) [Offline] -https://kenwdt.lls.pbs.org/out/v1/5a08bd0c12464a42959d67ad54324081/index.m3u8 -#EXTINF:-1 tvg-id="KOPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Portland OR (KOPB) (1080p) [Offline] -https://kopbdt.lls.pbs.org/out/v1/a946a78ff0304b51b4f95b40f6753f20/index.m3u8 -#EXTINF:-1 tvg-id="WSBETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Providence RI (WSBE) (1080p) [Offline] -https://hls-wsbedt.lls.pbs.org/out/v1/282a0653ed3341ebac0ff99c0f2a8137/index.m3u8 -#EXTINF:-1 tvg-id="KIXETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Redding CA (KIXE) (1080p) [Offline] -https://kixedt.lls.pbs.org/out/v1/fb0ef314bff940b18d8ff89dcfc0e395/index.m3u8 -#EXTINF:-1 tvg-id="KNPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Reno NV (KNPB) (1080p) [Offline] -https://knpbdt.lls.pbs.org/out/v1/662db9937fe94ff997eda3af5a09ea43/index.m3u8 -#EXTINF:-1 tvg-id="WCVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Richmond VA (WCVE) (1080p) [Offline] -https://wcvedt.lls.pbs.org/out/v1/178cb4bb51c44edc9bac3365ddbc66ca/index.m3u8 -#EXTINF:-1 tvg-id="KCWCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Riverton WY (KCWC) (1080p) [Offline] -https://kcwcdt.lls.pbs.org/out/v1/2f8c171f73764e29893631dad5be2849/index.m3u8 -#EXTINF:-1 tvg-id="WBRA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Roanoke VA (WBRA) (1080p) [Offline] -https://wbradt.lls.pbs.org/out/v1/cee6288a82584aee9e105cc7abc51da9/index.m3u8 -#EXTINF:-1 tvg-id="WXXITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Rochester NY (WXXI) (1080p) [Offline] -https://wxxidt.lls.pbs.org/out/v1/9ea6c5eb539d4545b74b67d064d12395/index.m3u8 -#EXTINF:-1 tvg-id="KRCBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Rohnert Park CA (KRCB) (1080p) [Offline] -https://krcbdt.lls.pbs.org/out/v1/1b383c47407b41a28a57037ee7fc237c/index.m3u8 -#EXTINF:-1 tvg-id="KVIETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Sacramento CA (KVIE) (1080p) [Offline] -https://kviedt.lls.pbs.org/out/v1/034f052201e7437da6266c4679e97526/index.m3u8 -#EXTINF:-1 tvg-id="KUEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Salt Lake City UT (KUED) (1080p) [Offline] -https://kueddt.lls.pbs.org/out/v1/53400b74960e4a84bc4b945148e9e19a/index.m3u8 -#EXTINF:-1 tvg-id="KLRNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Antonio TX (KLRN) (1080p) [Offline] -https://klrndt.lls.pbs.org/out/v1/4d29690f8127489fafb33fb5ebd2cbeb/index.m3u8 -#EXTINF:-1 tvg-id="KVCR.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Bernardino CA (KVCR) (1080p) [Offline] -https://kvcrdt.lls.pbs.org/out/v1/5114aad2d1844ccba15d559173feec19/index.m3u8 -#EXTINF:-1 tvg-id="KPBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Diego CA (KPBS) (1080p) [Offline] -https://kpbsdt.lls.pbs.org/out/v1/cf509cc4289644f886f7496b7328a46b/index.m3u8 -#EXTINF:-1 tvg-id="KQEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Francisco CA (KQED) (1080p) [Offline] -https://kqeddt.lls.pbs.org/out/v1/7bc5c6cfcf9b4593b7d6ad1f8b0a0138/index.m3u8 -#EXTINF:-1 tvg-id="WVIATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Scranton PA (WVIA) (1080p) [Offline] -https://wviadt.lls.pbs.org/out/v1/aa3bcde7d86a4b60b57f653c565188df/index.m3u8 -#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Seattle WA (KCTS) (1080p) [Offline] -https://rtmp-kctsdt.lls.cdn.pbs.org/rtmp-kctsdt/271a9ab7-e9ed-4fec-9fe9-e46c97a3f8f0/primary.m3u8 -#EXTINF:-1 tvg-id="KOODTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Smoky Hills KS (KOOD) (1080p) [Offline] -https://kooddt.lls.pbs.org/out/v1/67d31d78887e485282d135628be5489f/index.m3u8 -#EXTINF:-1 tvg-id="WNIT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS South Bend IN (WNIT) (1080p) [Offline] -https://wnitdt.lls.pbs.org/out/v1/0eb01a8a161e4650af15b6542a20cde5/index.m3u8 -#EXTINF:-1 tvg-id="KSPS.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Spokane WA (KSPS) (1080p) [Offline] -https://kspsdt.lls.pbs.org/out/v1/cf8babf84d2b48e3876bae15e08dcdc6/index.m3u8 -#EXTINF:-1 tvg-id="KETCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS St. Louis MO (KETC) (1080p) [Offline] -https://ketcdt.lls.pbs.org/out/v1/08273a78d29c4b0abd6e0eb996b3d8cf/index.m3u8 -#EXTINF:-1 tvg-id="KBTC.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tacoma WA (KBTC) (1080p) [Offline] -https://kbtcdt.lls.pbs.org/out/v1/4f08c8e00549441b9a2acce47d112525/index.m3u8 -#EXTINF:-1 tvg-id="WFSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tallahassee FL (WFSU) (1080p) [Offline] -https://wfsudt.lls.pbs.org/out/v1/d2be172139764358a0d54352c8411845/index.m3u8 -#EXTINF:-1 tvg-id="WEDUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tampa FL (WEDU) (1080p) [Offline] -https://wedudt.lls.pbs.org/out/v1/3e147f13bc464958b6ace4e5a5b9accc/index.m3u8 -#EXTINF:-1 tvg-id="KTWUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Topeka KS (KTWU) (1080p) [Offline] -https://ktwudt.lls.pbs.org/out/v1/567e503539034dd0ab8838b7e33ba5de/index.m3u8 -#EXTINF:-1 tvg-id="KUATTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tucson AZ (KUAT) (1080p) [Offline] -https://kuatdt.lls.pbs.org/out/v1/8d95fb8559594a7b9359077ea0a512c3/index.m3u8 -#EXTINF:-1 tvg-id="WILLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Urbana-Champaign IL (WILL) (1080p) [Offline] -https://willdt.lls.pbs.org/out/v1/15103ad003674a29b20b847deb71992b/index.m3u8 -#EXTINF:-1 tvg-id="KUSDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Vermillion SD (KUSD) (1080p) [Offline] -https://kusddt.lls.pbs.org/out/v1/38b8947635c54de8a15c5260e5cf774e/index.m3u8 -#EXTINF:-1 tvg-id="WVUTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Vincennes IN (WVUT) (1080p) [Offline] -https://wvutdt.lls.pbs.org/out/v1/6f47817ed7d54053815e35042c1f4824/index.m3u8 -#EXTINF:-1 tvg-id="KMOSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Warrensburg MO (KMOS) (1080p) [Offline] -https://hls-kmosdt.lls.pbs.org/out/v1/95689f4594814dfca261ea90892eafab/index.m3u8 -#EXTINF:-1 tvg-id="WHUTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Washington DC (WHUT) (1080p) [Offline] -https://whutdt.lls.pbs.org/out/v1/dd1102f24d7948e58517ba6a6573c928/index.m3u8 -#EXTINF:-1 tvg-id="WPBSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Watertown NY (WPBS) (1080p) [Offline] -https://wpbsdt.lls.pbs.org/out/v1/e3680a91029c4df9b7797ce13d828207/index.m3u8 -#EXTINF:-1 tvg-id="WXELTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS West Palm Beach FL (WXEL) (1080p) [Offline] -https://wxeldt.lls.pbs.org/out/v1/d4f2bc8357164a2e93d35abd2caecc4b/index.m3u8 -#EXTINF:-1 tvg-id="KPTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Wichita KS (KPTS) (1080p) [Offline] -https://kptsdt.lls.pbs.org/out/v1/1ca3404d6bc3404c9daa86c8f1ae19d0/index.m3u8 diff --git a/channels/us_plex.m3u b/channels/us_plex.m3u deleted file mode 100644 index 63d6cbab6..000000000 --- a/channels/us_plex.m3u +++ /dev/null @@ -1,221 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="24HourFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FiTdDp1.png" group-title="Movies",24 Hour Free Movies (720p) [Not 24/7] -https://d15690s323oesy.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/UDU-Plex/158.m3u8 -#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (1080p) [Offline] -https://120sports-accdn-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AccuWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yNDUzNzc0Mjlf/AccuWeather_500x500.png" group-title="Weather",AccuWeather Now (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00684-accuweather-accuweather-plex/playlist.m3u8 -#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) -https://linear-12.frequency.stream/dist/plex/12/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f7b66af901c6845181f33d3" group-title="Comedy",AFV en Español (720p) [Not 24/7] -https://linear-46.frequency.stream/dist/plex/46/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiancrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tmtdwdU.png" group-title="Entertainment",Asiancrush (720p) [Offline] -https://ac-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Bambu.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Bambu [Offline] -https://bambu-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (1080p) [Offline] -https://kmtvnow-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://cheddar.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Choppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c5eb78083e72bec0d0522" group-title="Auto",Choppertown (720p) [Not 24/7] -https://linear-11.frequency.stream/dist/plex/11/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) -https://comedydynamics-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) -https://contv-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://contvanime-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Crackle.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjUyNDQ4NjZf/Crackle_365x365.png" group-title="Movies",Crackle (720p) -https://crackle-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (1080p) [Offline] -https://aenetworks-crime360-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) -https://dmtv-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (1080p) [Offline] -https://endemol-dealornodeal-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) -https://docurama-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] -https://dove-channel.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) -https://edgesports-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) -https://estrellanews-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) -https://estrellatv-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) -https://euronews-euronews-spanish-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) -https://euronews-euronews-world-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (1080p) [Offline] -https://failarmy-linear.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (540p) [Offline] -https://9c17e762ec814557b3516dd3e0a7ca56.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_FailArmy/ade59f27-be9b-4b71-b8dc-05928c1dfdf4/2.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (1080p) [Offline] -https://spi-filmstream-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FreebieTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Freebie TV (720p) [Not 24/7] -https://d1h1d6qoy9vnra.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Freebie-Plex/187.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network East (540p) [Offline] -https://gsn-gameshowchannnel-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GFNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/V5CTsI0.png" group-title="",GFN TV (720p) [Not 24/7] -https://d3jxchypmk8fja.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/GFNTV-Plex/169.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (720p) [Offline] -https://glewedtv-3.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Offline] -https://gravitas-movies.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (1080p) -https://gustous-plex.amagi.tv/hls/amagi_hls_data_gustoAAAA-gustous-plex/CDN/playlist.m3u8?X-Plex-Token=MorUy57ijWhGe4ixZb_T&channelId=5f8746eabd529300418246d9&did=df8e1a36-847d-5096-86a7-3803ed330ede&dnt=0&us_privacy=1--- -#EXTINF:-1 tvg-id="HardKnocks.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixAkq26.png" group-title="",Hard Knocks (1080p) [Not 24/7] -https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-PLEX/121.m3u8 -#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (1080p) -https://linear-59.frequency.stream/dist/plex/59/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="HollywoodClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/HollywoodClassics_v2_290x290.png?raw=true" group-title="Classic",Hollywood Classics (1080p) [Offline] -https://vitor-hollywoodclassics-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HumorMill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lYqcF1P.png" group-title="Comedy",Humor Mill (1080p) [Not 24/7] -https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-PLEX/152.m3u8 -#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) -https://ign-plex.amagi.tv/hls/amagi_hls_data_ignAAAAAA-ign-plexA/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) -https://ign-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/journy.png" group-title="Travel",Journy (1080p) -https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=5f5132df62fe160040f26bc2&ptoken=PLbo_Jw_s1xgoB_1Srgg -#EXTINF:-1 tvg-id="JournysBourdainAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/cms/staging/da04b14e-5a31-4296-bf2e-bbbf0b237255/Journy_s_Bourdain_All_Day_logo_dark.png" group-title="",Journy's Bourdain All Day (1080p) -https://plexpab.teleosmedia.com/linear/ovation/journypresentsanthonybourdain/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=6182cd0df4e62961d9c2ccf6&ptoken=PLbo_Jw_s1xgoB_1Srgg -#EXTINF:-1 tvg-id="JudgeFaith.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VMJvKbC.png" group-title="Series",Judge Faith (1080p) [Offline] -https://judge-faith-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) -https://vidaprimo-plex.amagi.tv/hls/amagi_hls_data_vidaprimo-vidaprimo-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) -https://vidaprimo-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) -https://lawandcrime-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LIT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FPEisf1.png" group-title="",LIT (1080p) [Offline] -https://studio1-lit-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (1080p) [Offline] -https://aenetworks-ae-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopBeastModeWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/fb8c7ba652305a8700924347d46dcdff.jpeg" group-title="Music",Loop Beast Mode West (1080p) [Geo-blocked] -https://1f0e60dbce3043279c491fe51983361d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopElectronicaWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/d8d1f2a3ea03ed135a7873ff7c0ce161.jpeg" group-title="Music",Loop Electronica West (1080p) [Not 24/7] -https://57490d2f4ea646bbae56a1a816617a5f.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop West (1080p) [Offline] -https://e20b86263a38460ba3647b18fb150000.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopPartyWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party West (1080p) [Offline] -https://0b1ea79d9170498c91073ff8c460de18.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_plex/master.m3u8 -#EXTINF:-1 tvg-id="MagellanTVNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV Now (720p) [Offline] -https://magellantv-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) [Offline] -https://maverick-maverick-black-cinema-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjgzNzU2MTNf?inline=1" group-title="Sports",MavTV Select (1080p) [Offline] -https://mavtv-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) -https://369f2966f62841f4affe37d0b330a13c.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_MidnightPulp/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c4427&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=263&ads.wurl_name=MidnightPulp -#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphere-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MuseumTVFast.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopeu.samsungcloud.tv/platform/image/sourcelogo/vc/70/01/66/FRBA3300064WS_20211110T010724.png" group-title="Culture",Museum TV Fast (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtv-en-plex/playlist.m3u8 -#EXTINF:-1 tvg-id="NeuralFocused.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ymFMMn8.png" group-title="Music",Neural Focused [Offline] -https://1d75125ffd43490eb970a2f3f575e96c.mediatailor.us-west-2.amazonaws.com/v1/manifest/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_plex/35cba159-09d0-4e37-bf3c-99cd99ec425b/5.m3u8 -#EXTINF:-1 tvg-id="News12NewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c57ad92cd1774a1091752" group-title="Local",News 12 New York (1080p) [Offline] -https://cheddar-news12ny-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) -https://newsmax-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-newsmax-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] -https://nosey-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) [Not 24/7] -https://d18toqrnfyz3v1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/OutdoorAmerica-PLEX/159.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (1080p) [Offline] -https://jukin-peopleareawesome-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://a357e37df8ec46719fdeffa29a3e8e40.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_PeopleAreAwesome/8fe64d6c-210c-42ac-8b42-8006b8721cf4/3.m3u8 -#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (1080p) -https://b12eca572da7423284734ca3a6242ea2.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_PlayWorks/playlist.m3u8?ads.app_bundle=com.plexapp.desktop&ads.app_store_url=https://app.plex.tv&ads.consent=0&ads.gdpr=1&ads.plex_id=5f0ff263d71dcb00449ec01e&ads.plex_token=MorUy57ijWhGe4ixZb_T&ads.psid=df8e1a36-847d-5096-86a7-3803ed330ede&ads.targetopt=0&ads.ua=Mozilla/5.0+(Windows+NT+6.1;+rv:83.0)+Gecko/20100101+Firefox/83.0&ads.us_privacy=1---&ads.wurl_channel=512&ads.wurl_name=PlayWorks -#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (1080p) [Offline] -https://playworksdigital-playworks-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] -https://pocketwatch.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Entertainment",Popstar! TV (1080p) [Not 24/7] -https://linear-10.frequency.stream/dist/plex/10/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="a9d5c8" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/z8O4Dl6.png" group-title="Family",Real Families (1080p) -https://lds-realfamilies-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (1080p) [Offline] -https://nosey-realnosey-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J6dpNiD.png" group-title="",Real Stories (1080p) -https://lds-realstories-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCrushTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) -https://45034ce1cbb7489ab1499301f6274415.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_RetroCrush/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c442a&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=491&ads.wurl_name=RetroCrush -#EXTINF:-1 tvg-id="RetroCrushTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) [Offline] -https://digitalmediarights-retrocrush-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Reuters.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Reuters (1080p) -https://reuters-reutersnow-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) [Not 24/7] -https://linear-5.frequency.stream/dist/plex/5/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry2.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry 2 (720p) [Offline] -https://0bef58ceebc44ecbba8ed46a4b17de0c.mediatailor.us-west-2.amazonaws.com/v1/manifest/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-PLEX/09eef831-6e1a-4f60-a138-77c0a1da8e06/0.m3u8 -#EXTINF:-1 tvg-id="RevryNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AdIThwq.png" group-title="Lifestyle",Revry News (720p) [Not 24/7] -https://linear-44.frequency.stream/dist/plex/44/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RunTimeFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="Movies",RunTime (1080p) -https://ammoruntime-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (1080p) -https://ammo-espanol-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RushbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sUwYQ6o.png" group-title="Movies",Rush by AMC (1080p) [Offline] -https://amc-rushbyamc-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrills.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills (1080p) [Offline] -https://aenetworks-skills-thrills-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So... Real (1080p) [Offline] -https://cinedigm-so-real-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) -https://sportsgrid-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Offline] -https://stadium-ringofhonor-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Entertainment",Tankee (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?app_bundle=com.plexapp.desktop&app_domain=app.plex.tv&app_name=plex&content_series=5f12332eeca6a20040b328e5&content_title=MorUy57ijWhGe4ixZb_T&coppa=1&custom4=plex&device_make=Windows&device_model=Firefox&did=df8e1a36-847d-5096-86a7-3803ed330ede&gdpr=1&h=691&live=1&network_id=39&us_privacy=1---&w=1224 -#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Kids",Tankee (720p) [Offline] -https://playworksdigital-tankee-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) [Offline] -https://vitor-theboatshow-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (240p) -https://cinedigm-bobross-1.plex.wurl.com/master.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-5.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) -https://filmdetective-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-filmdetective-plex/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) -https://filmdetective-plex.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) [Offline] -https://631dd17512664bafa0f3d1bd9717d7c0.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_ThePetCollective/9a0bc894-3507-4712-ac73-40ae060ddbef/3.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) [Offline] -https://the-pet-collective-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Timeline.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J8qVUjM.png" group-title="Entertainment",Timeline (1080p) -https://lds-timeline-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/d3de398e682d6958762def3914cb211c8f062e8b24df9a2d95d5bfc0aa4b80c0.png" group-title="Classic",TV Classics (720p) -https://vitor-tvclassics-1.plex.wurl.com/manifest/4300.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://venntv-plex.amagi.tv/hls/amagi_hls_data_venntvAAA-venntv-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (360p) [Offline] -https://waypointtv-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (1080p) [Offline] -https://jukin-weatherspy-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) [Offline] -https://04799df414944908856c6c521891945f.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_WeatherSpy/2eba863c-1452-4ea6-98b2-2b1c0c81c112/3.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] -https://whistle-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (1080p) [Offline] -https://endemol-wipeoutxtra-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (1080p) -https://lds-wonder-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (1080p) [Not 24/7] -https://dth07jsr8atug.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-Plex/171.m3u8 -#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) -https://xplore-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) -https://yahoo-plex.amagi.tv/hls/amagi_hls_data_yahoofina-yahoofinance-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) -https://yahoo-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YuyuTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bbvtcd7.png" group-title="",Yuyu TV (1080p) [Offline] -https://yuyu-samsung.plex.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_redbox.m3u b/channels/us_redbox.m3u deleted file mode 100644 index 148b42e39..000000000 --- a/channels/us_redbox.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) -https://contv-redbox-us-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) -https://docurama-redbox-us-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (1080p) -https://johnnycarson-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-johnnycarson-redbox/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MST3K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1xJJB7C.jpg" group-title="Entertainment",MST3K (1080p) -https://mst3k-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-mst3k/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) [Not 24/7] -https://pac12-redbox.amagi.tv/hls/amagi_hls_data_pac-12AAA-pac12-redbox/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox1Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OrGCnPg.jpg" group-title="",Redbox 1: Spotlight (1080p) -https://spotlight-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox2Comedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Comedy",Redbox 2: Comedy (1080p) -https://comedy-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox3Rush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pA6g3iH.jpg" group-title="",Redbox 3: Rush (1080p) -https://rush-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-rush/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox3Rush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pA6g3iH.jpg" group-title="",Redbox 3: Rush (1080p) -https://rush-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) -http://shoutfactory-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) -https://shoutfactory-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-shoutfactorytv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeFrance.us" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade France (1080p) -https://tastemadefr16min-redbox.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-redbox/CDN/playlist.m3u8 diff --git a/channels/us_redtraffic.m3u b/channels/us_redtraffic.m3u deleted file mode 100644 index 75de8bcf2..000000000 --- a/channels/us_redtraffic.m3u +++ /dev/null @@ -1,37 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Ass (720p) -http://live.redtraffic.xyz/bigass.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Dick (720p) -http://live.redtraffic.xyz/bigdick.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Tits (720p) -http://live.redtraffic.xyz/bigtits.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blowjob (720p) -http://live.redtraffic.xyz/blowjob.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Cuckold (720p) -http://live.redtraffic.xyz/cuckold.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Fetish (720p) -http://live.redtraffic.xyz/fetish.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gangbang (720p) -http://live.redtraffic.net/gangbang.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Hardcore (720p) -http://live.redtraffic.xyz/hardcore.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Interracial (720p) -http://live.redtraffic.xyz/interracial.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Latina (720p) -http://live.redtraffic.xyz/latina.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Lesbian (720p) -http://live.redtraffic.xyz/lesbian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net MILF (720p) -http://live.redtraffic.xyz/milf.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Pornstar (720p) -http://live.redtraffic.xyz/pornstar.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net POV (720p) -http://live.redtraffic.xyz/pov.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Russian (720p) -http://live.redtraffic.xyz/russian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Teen (720p) -http://live.redtraffic.xyz/teen.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Threesome (720p) -http://live.redtraffic.xyz/threesome.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetWoman.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Woman (720p) -http://live.redtraffic.net/woman.m3u8 diff --git a/channels/us_roku.m3u b/channels/us_roku.m3u deleted file mode 100644 index dd3a6c74a..000000000 --- a/channels/us_roku.m3u +++ /dev/null @@ -1,243 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (1080p) [Offline] -https://120sports-accdn-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AccuWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yNDUzNzc0Mjlf/AccuWeather_500x500.png" group-title="Weather",AccuWeather Now (1080p) [Geo-blocked] -https://amg00684-accuweather-accuweather-rokuus-0endj.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) -https://linear-12.frequency.stream/dist/roku/12/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f7b66af901c6845181f33d3" group-title="Comedy",AFV en Español (720p) [Not 24/7] -https://linear-46.frequency.stream/dist/roku/46/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) -https://p1media-americasvoice-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) -https://bnc-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) [Offline] -https://bnc-roku-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewsnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BloodyDisgusting.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602dd011302f4d7da05d4bf3" group-title="Movies",Bloody Disgusting (1080p) -https://bloodydisgusting-ingest-roku-us.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (1080p) [Offline] -https://bonappetit-roku-us.amagi.tv/hls/amagi_hls_data_condenast-bonappetitroku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) -https://brat-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) -https://buzzr-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://cheddar-cheddar-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) -https://cheddar.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CineSureno.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0tHU0hC.jpg" group-title="",Cine Sureño (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/CineSureno-roku/master.m3u8 -#EXTINF:-1 tvg-id="CineSureno.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0tHU0hC.jpg" group-title="",Cine Sureño (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-cinesureno-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) -https://20995731713c495289784ab260b3c830.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_CinevaultWesterns/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) [Offline] -https://gsn-cinevault-westerns-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://circle-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cocoro.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z4hIjPn.jpg" group-title="Kids",Cocoro (1080p) -https://4ea7abcc97144832b81dc50c6e8d6330.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Cocoro/playlist.m3u8 -#EXTINF:-1 tvg-id="Cocoro.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z4hIjPn.jpg" group-title="Kids",Cocoro (1080p) [Offline] -https://coco-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://contvanime-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (1080p) [Offline] -https://aenetworks-crime360-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimeTime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cQxKMMJ.jpg" group-title="Documentary",Crime Time (1080p) -https://crimetimebamca-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (1080p) [Offline] -https://endemol-dealornodeal-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) -https://dovenow-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) [Offline] -https://edgesports-roku.amagi.tv/hls/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) -https://estrellanews-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) [Offline] -https://estrellanews-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellanews-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) -https://estrellatv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) [Offline] -https://estrellatv-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellatv-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) [Offline] -https://euronews-euronews-spanish-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) [Offline] -https://euronews-euronews-world-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FidoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kvdqP3H.jpg" group-title="Entertainment",Fido TV (1080p) [Offline] -https://fidotv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) [Not 24/7] -http://fox-foxsoul-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) [Offline] -https://fox-foxsoul-roku.amagi.tv/hls/amagi_hls_data_foxAAAAAA-foxsoul-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (720p) -https://eleven-rebroadcast-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network West (1080p) [Offline] -https://gsn-gameshowchannnel-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HallmarkChannelEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LLJiIEB.png" group-title="Entertainment",Hallmark Channel East [Offline] -https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_yupptvfrn-hallmark-frndlytv/CDN/768x432_2340800/index.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (1080p) -https://happykids-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HauntTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jCaWSFK.png" group-title="Series",Haunt TV (1080p) -https://haunttv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (1080p) -https://linear-59.frequency.stream/dist/roku/59/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="Horrify.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCbpYa4.png" group-title="Movies",Horrify (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/Horrify-roku/master.m3u8 -#EXTINF:-1 tvg-id="Horrify.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCbpYa4.png" group-title="Movies",Horrify (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-horrify-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (1080p) -https://ft-ifood-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (1080p) [Offline] -https://ft-ifood-roku.amagi.tv/hls/amagi_hls_data_futuretod-ifood-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Juntos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UbomgHT.png" group-title="Series",Juntos (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/Juntos-roku/master.m3u8 -#EXTINF:-1 tvg-id="Juntos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UbomgHT.png" group-title="Series",Juntos (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-juntos-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KetchupTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NOX2zse.png" group-title="Kids",Ketchup TV (1080p) [Offline] -https://vod365-ketchuptv-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGamerTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Kid Gamer TV [Offline] -https://studio71-roku-us.amagi.tv/hls/amagi_hls_data_studio71A-studio71roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Kidoodle.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (1080p) [Offline] -http://kidoodletv-kdtv-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidzBop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/19namZP.jpg" group-title="Kids",Kidz Bop (1080p) [Offline] -https://kidzbop-rokuus.amagi.tv/hls/amagi_hls_data_kidzbopAA-kidzbop-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LegoChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xePwW13.png" group-title="Kids",Lego Channel (1080p) -https://legochannel-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (1080p) [Offline] -http://aenetworks-ae-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop80sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s East (1080p) [Geo-blocked] -https://55e014b3437040d08777729c863a2097.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Loop80s-1/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop80sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s East (1080p) [Geo-blocked] -https://loop-80s-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop90sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K8YV2bR.png" group-title="Music",Loop 90s East (1080p) [Offline] -https://loop-90s-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopCountry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/62CjWTa.jpg" group-title="Music",Loop Country East (1080p) [Offline] -https://053155d1274848ed85106dbf20adc283.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_LoopCountry/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopCountryEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/62CjWTa.jpg" group-title="Music",Loop Country East (1080p) [Offline] -https://loop-country-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop East (1080p) [Offline] -https://loop-hip-hop-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopHottestEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NY9dKoR.png" group-title="Music",Loop Hottest East (1080p) [Offline] -https://loop-hottest-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopPartyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party East (1080p) [Offline] -https://loop-party-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature (1080p) -http://bamus-eng-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNatureEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature Español (1080p) [Offline] -https://bamus-spa-roku.amagi.tv/hls/amagi_hls_data_bamusaAAA-roku-bam-spanish/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQK6GMj.png" group-title="Movies",Made in Hollywood (720p) [Offline] -https://connection3-ent.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (1080p) [Offline] -https://maverick-maverick-black-cinema-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjgzNzU2MTNf?inline=1" group-title="Sports",MavTV Select (1080p) [Offline] -https://mavtv-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/K1kJf1s.png" group-title="",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoonBug.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",MoonBug (1080p) [Offline] -https://moonbug-rokuus.amagi.tv/hls/amagi_hls_data_moonbugAA-moonbug-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MoonbugKids.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/07212020/circle_190x190.png?raw=true" group-title="Kids",Moonbug Kids (1080p) -https://moonbug-rokuus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_lionsgate-moviesphere-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphere-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MST3K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1xJJB7C.jpg" group-title="Entertainment",MST3K (1080p) -https://mst3k-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) -https://mytime-roku-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (1080p) -https://b9860b21629b415987978bdbbfbc3095.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_NewKID/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (1080p) [Offline] -https://newidco-newkid-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) [Offline] -https://newsmax-roku-us.amagi.tv/hls/amagi_hls_data_newsmaxAA-newsmax/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] -https://nosey-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (1080p) -http://oneamericanews-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) [Offline] -https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OANEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9S4ZbPL.jpg" group-title="News",OAN Encore [Offline] -https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/512x288_875600/index.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) -https://outsidetv-roku-us.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) -https://pac12-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkfongBabyShark.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1MGJg18.jpg" group-title="Kids",Pinkfong Baby Shark (1080p) -https://fc2f8d2d3cec45bb9187e8de15532838.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_BabySharkTV/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkfongBabyShark.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1MGJg18.jpg" group-title="Kids",Pinkfong Baby Shark (1080p) [Offline] -https://newidco-babysharktv-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) -https://playerstv-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] -https://pocketwatch.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] -https://rtmtv-powernation-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (1080p) [Offline] -https://nosey-realnosey-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox1Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OrGCnPg.jpg" group-title="",Redbox 1: Spotlight (1080p) [Offline] -https://spotlight-rokuus.amagi.tv/hls/amagi_hls_data_redboxAAA-spotlight-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) [Offline] -https://digitalmediarights-retrocrush-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ReutersNow.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM4NTg2MTFf/TheRokuChannel_880x880.png" group-title="",Reuters Now (1080p) [Offline] -https://reuters-reutersnow-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) -https://linear-45.frequency.stream/dist/roku/45/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (1080p) -https://runtime-espanol-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RyanandFriends.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uG675tT.png" group-title="",Ryan and Friends (720p) [Offline] -https://pocketwatch-ryanandfriends-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="Movies",Samuel Goldwyn Channel (1080p) -https://samuelgoldwyn-films-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="Classic",Samuel Goldwyn Classics (1080p) -https://samuelgoldwyn-classic-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills Channel 2 (1080p) [Offline] -https://aenetworks-skills-thrills-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalComedias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Comedias (720p) [Offline] -https://sony-comedias-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalCompetencias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Competencias (720p) [Offline] -https://sony-competencias-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalNovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/yijitpa.png" group-title="Movies",Sony Canal Novelas (720p) [Offline] -https://sony-novelas-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalNovelas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Novelas (720p) [Offline] -https://sony-novelas-1.roku.wurl.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Offline] -https://stadium.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) -https://tastemade-es8intl-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) [Offline] -https://tastemade-es8intl-roku.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es8intl-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dEmt8Fv.png" group-title="Classic",The Carol Burnett Show (1080p) -https://carolburnett-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCraftistry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KIzpKhL.png" group-title="Lifestyle",The Craftistry (1080p) -https://studio71-craftistry-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCraftistry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KIzpKhL.png" group-title="Lifestyle",The Craftistry (1080p) [Offline] -https://studio71-craftistry-roku.amagi.tv/hls/amagi_hls_data_studio71A-craftistry-rokuA/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (1080p) [Offline] -https://thedesignnetwork-tdn-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lbOPCEJ.png" group-title="Series",This Old House (1080p) [Offline] -https://thisoldhouse-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TopCine.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DFEKx5N.png" group-title="Movies",Top Cine (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/TopCine-roku/master.m3u8 -#EXTINF:-1 tvg-id="TopCine.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DFEKx5N.png" group-title="Movies",Top Cine (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-topcine-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) -https://unbeaten-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) [Offline] -https://unbeaten-roku.amagi.tv/hls/amagi_hls_data_inverleig-unbeaten-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) [Offline] -https://venntv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",WeatherNation (720p) [Geo-blocked] -https://weathernationtv.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (1080p) [Offline] -https://whistletv-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (1080p) [Offline] -https://endemol-wipeoutxtra-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) -https://xplore-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) -https://yahoo-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (1080p) [Offline] -https://rockentertainment-zoomoo-1.roku.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_samsung.m3u b/channels/us_samsung.m3u deleted file mode 100644 index ac474af84..000000000 --- a/channels/us_samsung.m3u +++ /dev/null @@ -1,207 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (720p) [Offline] -https://120sports-accdn-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (720p) [Offline] -https://amc-amcpresents-2.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiancrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tmtdwdU.png" group-title="Entertainment",Asiancrush (720p) [Offline] -https://ac-samsung.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BCCGaming.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/60qMpEK.png" group-title="Comedy",BCC Gaming (720p) [Offline] -https://arcade-cloud.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (1080p) -https://bonappetit-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BounceXL.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/television-home-theater/tvs/tvplus/all-channels/10262021/Samsung_-_Bounce_XL_logo__CIRCLE_-_1000x1000.png" group-title="Entertainment",Bounce XL (720p) -https://c217322ca48e4d1e98ab33fe41a5ed01.mediatailor.us-east-1.amazonaws.com/v1/master/04fd913bb278d8775298c26fdca9d9841f37601f/Samsung_BounceXL/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) -https://brat-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) -https://buzzr-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/samsungus-buzzr-samsungtv-us/playlist.m3u8 -#EXTINF:-1 tvg-id="CanelaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/D7HC79b.png" group-title="",Canela TV (720p) [Offline] -https://canelamedia-canelatv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) -https://cheddar.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) [Offline] -https://gsn-cinevault-westerns-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://circle-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Not 24/7] -https://contv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (720p) -https://aenetworks-crime360-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DangerTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4aTk45R.png" group-title="Documentary",Danger TV (720p) [Offline] -https://dangertv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (720p) [Offline] -https://endemol-dealornodeal-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DegrassiTheNextGeneration.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mRBQKp3.png" group-title="",Degrassi The Next Generation (720p) -https://dhx-degrassi-1-us.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Offline] -https://docurama.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] -https://dust.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) -https://edgesport-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AjRCYwR.png" group-title="Sports",EDGEsport (1080p) -https://edgesport-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AjRCYwR.png" group-title="Sports",EDGEsport (US) (720p) [Timeout] -https://img-edgesport.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) -https://estrellanews-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (1080p) -https://estv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (720p) -https://failarmy-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hc5a1YP.png" group-title="News",FOX News Now (720p) -https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) -https://fox-foxsoul-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (540p) -https://elevensports.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) -https://fueltv-fueltv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network East (720p) [Offline] -https://gsn-gameshowchannnel-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Offline] -https://gravitas-movies.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) -https://gustotv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vcrDETL.png" group-title="Religious",Holly Wire (720p) [Offline] -https://hollywire.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) -https://hsn.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Hungry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MIUDYh0.png" group-title="Cooking",Hungry (720p) [Offline] -https://food.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) -https://ign-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://insighttv-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) -https://introuble-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) -https://inwonder-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="IonPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d449jnv.png" group-title="Family",Ion Plus (1080p) -https://ion-plus.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) -http://lawandcrime.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (720p) -https://aenetworks-ae-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6osyvwh.png" group-title="",Magellan TV (720p) [Offline] -https://magellantv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) [Offline] -https://maverick-maverick-black-cinema-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (720p) [Offline] -https://mavtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MHzNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/MHzNow_190x190.png?raw=true" group-title="",MHz Now (720p) [Offline] -https://mhz-samsung-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (720p) -https://dmr-midnightpulp-3-us.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieMix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qcgXbuC.png" group-title="",MovieMix (720p) [Offline] -https://moviemix.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) -https://moviesphere-samsung-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) -https://mytimeuk-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dHVfGex.png" group-title="Movies",New K-Movies (720p) [Offline] -https://newidco-newmovies-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (720p) [Offline] -https://newidco-newkid-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) -https://newsmax-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) [Offline] -https://newsy.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (720p) [Offline] -https://nosey-2.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (720p) -https://outside-tv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) -https://pac12-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) -https://playerstv-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] -https://pocketwatch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] -https://rtmtv-samsung.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] -https://rtmtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PursuitUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/Pursuit_Circle_190x190.png?raw=true" group-title="",Pursuit Up (720p) [Offline] -https://pursuitup.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Qubo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ki7zVmW.png" group-title="Kids",Qubo (720p) [Offline] -http://ion-qubo-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) -https://qvc.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZ9iGaO.png" group-title="Comedy",RiffTrax (720p) [Offline] -https://rifftrax.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (720p) -https://shout-factory.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills Channel 3 (720p) [Offline] -https://aenetworks-skills-thrills-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) -https://sportsgrid-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) -https://stadium.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sw1LtJ4.png" group-title="Relax",Stingray Naturescape (1080p) -https://stingray-naturescape-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQello.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/StingrayQello_190x190.png?raw=true" group-title="Music",Stingray Qello (1080p) -https://samsung.ott-channels.stingray.com/qello/master.m3u8 -#EXTINF:-1 tvg-id="STIRROutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",STIRR Outdoor America (720p) [Offline] -https://obsession-media-sinclair.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SurfNowTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/06232020/SURF_NOW_TV_190x190.png?raw=true" group-title="Sports",Surf Now TV (720p) [Offline] -https://1091-surfnowtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (720p) [Offline] -https://tastemade.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) -https://tastemade-es16tm-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TGJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cZ4pGmk.png" group-title="",TG Junior (720p) [Offline] -https://tg-junior.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) -https://thedesignnetwork-tdn-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) -https://the-pet-collective-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (720p) [Offline] -https://previewchannel-previewchannel-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheYoungTurks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XDNXJCl.png" group-title="News",The Young Turks (TYT) (720p) -https://tyt-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",This Old House (720p) -https://26487f8be0614420a64b6f5964563a75.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Samsung_ThisOldHouse/playlist.m3u8 -#EXTINF:-1 tvg-id="TinyHouseNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/o8ooqA1.png" group-title="",Tiny House Nation (720p) [Offline] -https://aenetworks-tinyhousenation-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Offline] -https://toon-goggles.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://venntv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (720p) [Offline] -https://waypointtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAbsoluteReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oOFjyYf.png" group-title="Entertainment",We TV Absolute Reality (720p) [Offline] -https://amc-absolutereality-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAllWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d61oA0y.png" group-title="Entertainment",We TV All Weddings (720p) [Offline] -https://amc-allweddings-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X23p0GB.png" group-title="Weather",Weather Nation (720p) [Offline] -https://weathernationtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) -https://jukin-weatherspy-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] -https://whistle-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (720p) [Offline] -https://endemol-wipeoutxtra-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) [Offline] -https://world-poker-tour.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) -http://xlpore-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) -https://yahoo-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) -https://younghollywood-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (720p) [Offline] -https://rockentertainment-zoomoo-1.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_ssh101.m3u b/channels/us_ssh101.m3u deleted file mode 100644 index 55efb95fa..000000000 --- a/channels/us_ssh101.m3u +++ /dev/null @@ -1,58 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",ABTelevision (480p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/ABTelevision2020/index.m3u8 -#EXTINF:-1 tvg-id="AigaioTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014248&t=1544180256224" group-title="",Aigaio TV (360p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/aigaiotv1/index.m3u8 -#EXTINF:-1 tvg-id="AVCHD.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",AVC HD (Monte Caseros | Corrientes) (360p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/AVCHD/index.m3u8 -#EXTINF:-1 tvg-id="Canal1.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CZtUb4D.png" group-title="General",Canal 1 (432p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/LiveCH007/index.m3u8 -#EXTINF:-1 tvg-id="CanalCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol (432p) -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/LiveCH005/index.m3u8 -#EXTINF:-1 tvg-id="CanalCaracolHD2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol HD2 (432p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/LiveCH008/index.m3u8 -#EXTINF:-1 tvg-id="CanalRCN.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="General",Canal RCN (432p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/LiveCH004/index.m3u8 -#EXTINF:-1 tvg-id="ChannelB.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="" group-title="",Channel B (1080p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/channelb/index.m3u8 -#EXTINF:-1 tvg-id="CityTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/pe_citytv_m.png" group-title="Local",City TV (Bogotà | Cundinamarca) (432p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/LiveCH006/index.m3u8 -#EXTINF:-1 tvg-id="CLTV36.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",CLTV 36 (480p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/cltv36/index.m3u8 -#EXTINF:-1 tvg-id="ConectaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9TGQZzk.png" group-title="Music",Conecta TV (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/Conectatvmexico/index.m3u8 -#EXTINF:-1 tvg-id="JessTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="" group-title="Local",Jess TV (Lethbridge) (480p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/jesstv/index.m3u8 -#EXTINF:-1 tvg-id="KallpaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/kallparadiotv/picture?width=320&height=320" group-title="Local",Kallpa TV (Chimbote) (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/canaltv/index.m3u8 -#EXTINF:-1 tvg-id="LatacungaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Latacunga TV (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/latacungatv2021/index.m3u8 -#EXTINF:-1 tvg-id="OrbitaFM.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="" group-title="",Órbita FM (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/OrbitaFM/index.m3u8 -#EXTINF:-1 tvg-id="RadioSistema.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiosistema/picture?width=320&height=320" group-title="Local",Radio Sistema (Ica) (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/SISTEMA/index.m3u8 -#EXTINF:-1 tvg-id="SolarTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TELEVISIONSOLAR/picture?width=320&height=320" group-title="Local",Solar Televisión (Abancay) (360p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/televisionsolar/index.m3u8 -#EXTINF:-1 tvg-id="UchuTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Uchu TV (Cusco) (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/Cusco/index.m3u8 -#EXTINF:-1 tvg-id="WORODT.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/unored.tv/wp-content/uploads/2015/08/WORO.jpg" group-title="",WORO-DT (720p) [Not 24/7] -#EXTVLCOPT:http-referrer=https://ssh101.com/ -https://tna5.bozztv.com/worodt/playlist.m3u8 diff --git a/channels/us_stirr.m3u b/channels/us_stirr.m3u deleted file mode 100644 index c089b77aa..000000000 --- a/channels/us_stirr.m3u +++ /dev/null @@ -1,515 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) -https://dai.google.com/linear/hls/event/18_lZXPySFa5_GRVEbOX_A/master.m3u8 -#EXTINF:-1 tvg-id="AmericavsAddiction.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/a0e4b00e-239d-484d-9d86-2ba28295ad94-large16x9_STIRR_0721_EPG_AmericaVsAddiction_1920x1080.png" group-title="",America vs. Addiction (720p) -https://dai.google.com/linear/hls/event/-A9339ixSzydnZQZHd1u2A/master.m3u8 -#EXTINF:-1 tvg-id="beINSportsXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/beINSPORTS-XTRA_logo_dark_v3.png" group-title="Sports",beIN Sports Xtra (1080p) -https://dai.google.com/linear/hls/event/3e-9BOvHQrCI9hboMYjb6w/master.m3u8 -#EXTINF:-1 tvg-id="BigLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bjTeasa.png" group-title="Lifestyle",Big Life TV (720p) -https://biglife.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/bloomberg-television-us.png" group-title="",Bloomberg TV (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/NiumF4GTSGe-pXM-iMsP0A/master.m3u8 -#EXTINF:-1 tvg-id="BritCom.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",BritCom (720p) [Offline] -https://dai.google.com/linear/hls/event/IdHTuehZQPClis-gJaZkFQ/master.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) -https://dai.google.com/linear/hls/event/wFZ1ufQ8ToaSdPgGtbBbpw/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kDqyJcP.jpg" group-title="News",CBSN (720p) -https://dai.google.com/linear/hls/event/Sid4xiTQTkCT1SLu6rjUSQ/master.m3u8 -#EXTINF:-1 tvg-id="KPIXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/v1ojdQb.jpg" group-title="Local",CBSN Bay Area CA (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/VE8b4n-YStusEGv5Z2NmsQ/master.m3u8 -#EXTINF:-1 tvg-id="WBZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wEGXQ6G.jpg" group-title="Local",CBSN Boston MA (720p) -https://dai.google.com/linear/hls/event/26FJK7wRSo6RhPsK70XS_w/master.m3u8 -#EXTINF:-1 tvg-id="WBBM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dtY6bgk.jpg" group-title="Local",CBSN Chicago IL (720p) -https://dai.google.com/linear/hls/event/DWt8iR1YQ-OJQsxczu8KfQ/master.m3u8 -#EXTINF:-1 tvg-id="KTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0pDOolW.jpg" group-title="Local",CBSN Dallas Ft Worth TX (720p) -https://dai.google.com/linear/hls/event/o5J3g4U9T16CvYnS7Qd86Q/master.m3u8 -#EXTINF:-1 tvg-id="KCNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Y8xBN2g.jpg" group-title="Local",CBSN Denver CO (720p) -https://dai.google.com/linear/hls/event/EUo67MWSRh6toPi0heJKnQ/master.m3u8 -#EXTINF:-1 tvg-id="KCBSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RIFC1Y6.jpg" group-title="Local",CBSN Los Angeles CA (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/TxSbNMu4R5anKrjV02VOBg/master.m3u8 -#EXTINF:-1 tvg-id="WCCO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HiEBhR4.png" group-title="Local",CBSN Minnesota MN (720p) -https://dai.google.com/linear/hls/event/zcWPVCfURNSPxeidcckQLA/master.m3u8 -#EXTINF:-1 tvg-id="WLNYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ubsNr5F.jpg" group-title="Local",CBSN New York NY (720p) -http://dai.google.com/linear/hls/event/rtcMlf4RTvOEkaudeany5w/master.m3u8 -#EXTINF:-1 tvg-id="KYWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXWNQuT.jpg" group-title="Local",CBSN Philly PA (720p) -https://dai.google.com/linear/hls/event/Xu-ITJ2GTNGaxGn893mmWg/master.m3u8 -#EXTINF:-1 tvg-id="KDKA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IkDUNmq.jpg" group-title="Local",CBSN Pittsburgh PA (720p) -https://dai.google.com/linear/hls/event/i5SXVKI4QIuV-eF2XAH4FQ/master.m3u8 -#EXTINF:-1 tvg-id="CGTNEnglish.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN English (432p) [Not 24/7] -https://dai.google.com/linear/hls/event/r4sa-f6GSN2XIvzKv5jVng/master.m3u8 -#EXTINF:-1 tvg-id="Charge.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Movies",Charge! (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/37eb732888614810b512fdd82604244e.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://dai.google.com/linear/hls/event/frfwucAPTVunrpitYiymwg/master.m3u8 -#EXTINF:-1 tvg-id="ChickenSoupForTheSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/1be0cbf7-1ca2-4564-b6dd-3170128b70fb-large16x9_STIRR_Logo_1021_ChickenSoupfortheSoul_1920x1080_EPG.png" group-title="Classic",Chicken Soup For The Soul (1080p) -https://dai.google.com/linear/hls/event/2C5P0JGUSj65s8KpeyIDcQ/master.m3u8 -#EXTINF:-1 tvg-id="CineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",CineLife (1080p) -https://magselect-stirr.amagi.tv/playlist1080p.m3u8 -#EXTINF:-1 tvg-id="CineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",CineLife (720p) -https://magselect-stirr.amagi.tv/playlist720p.m3u8 -#EXTINF:-1 tvg-id="Comet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/comet-us.png" group-title="Entertainment",Comet (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) -https://contv-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) -https://dai.google.com/linear/hls/event/o8Smo_gsSAm26uW9Xkww_g/master.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) [Offline] -http://contv.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimeStory.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Crime Story [Offline] -https://dai.google.com/linear/hls/event/HgozmUlQQviIXFUF23mloA/master.m3u8 -#EXTINF:-1 tvg-id="Dabl.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/dabl-us.png" group-title="Lifestyle",Dabl (1080p) -http://dai.google.com/linear/hls/event/oIKcyC8QThaW4F2KeB-Tdw/master.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (1080p) [Not 24/7] -https://endemol-dealornodeal-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DickCavett.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/2/2e/Dick_Cavett_Show_logo.jpg" group-title="Classic",Dick Cavett (720p) -https://dai.google.com/linear/hls/event/-NacIpMDTZ2y1bhkJN96Vg/master.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) -https://dai.google.com/linear/hls/event/dfbBGQhPQQqypdEAjpUGlA/master.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/byIRP2QHx669BQ0BnWqbiB_bje1PkYTWmq9a-AC5PSBjG5CIwryhftF7W5Oj1cwSnto" group-title="Movies",Dust (1080p) -https://dai.google.com/linear/hls/event/xuMJ1vhQQDGjEWlxK9Qh4w/master.m3u8 -#EXTINF:-1 tvg-id="DUSTx.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9Xc7Q7S.jpg" group-title="Movies",DUSTx (720p) [Timeout] -https://dust.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsportSTIRR.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i1.wp.com/www.broadbandtvnews.com/wp-content/uploads/2019/11/EDGEsport-logo-2019.png" group-title="Sports",EDGEsport (STIRR) (1080p) [Offline] -https://dai.google.com/linear/hls/event/d4zeSI-dTuqizFrByjs3OA/master.m3u8 -#EXTINF:-1 tvg-id="ETLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/et-live-us.png" group-title="Entertainment",ET Live (1080p) -https://dai.google.com/linear/hls/event/xrVrJYTmTfitfXBQfeZByQ/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/filmrise-classics-us.png" group-title="Classic",FilmRise Classic TV (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/hW5jMh7dTRK1UXW5fTH07A/master.m3u8 -#EXTINF:-1 tvg-id="Futurism.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DX7wYuN.png" group-title="News",Futurism (720p) -https://dai.google.com/linear/hls/event/YakHdnr_RpyszducVuHOpQ/master.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (720p) -https://dai.google.com/linear/hls/event/ChWV1GupQOWE92uG4DvbkQ/master.m3u8 -#EXTINF:-1 tvg-id="Hallypop.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/FCFAAJb.png" group-title="",Hallypop (1080p) [Offline] -https://dai.google.com/linear/hls/event/ctGD-E18Q0-3WScFd_tK5w/master.m3u8 -#EXTINF:-1 tvg-id="HorseShoppingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0cuoaxl.png" group-title="Shop",Horse Shopping Channel (720p) -https://uplynkcontent.sinclairstoryline.com/channel/26c7a77fd6ed453da6846a16ad0625d9.m3u8 -#EXTINF:-1 tvg-id="InsightTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/99/Insight.svg/revision/latest/scale-to-width-down/250?cb=20210527145642" group-title="Sports",Insight TV (1080p) -https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (1080p) -https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 -#EXTINF:-1 tvg-id="KidsClick.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/KidsClick.png" group-title="Kids",KidsClick (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/1698bf57810a48c486b83d542bca298d.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/3w3PsYzZQzS8lyRfi7e4mQ/master.m3u8 -#EXTINF:-1 tvg-id="LIVExLIVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OaSFTnV.png" group-title="Lifestyle",LIVExLIVE (1080p) -https://dai.google.com/linear/hls/event/xC8SDBfbTKCTCa20kFJQXQ/master.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV (720p) -https://dai.google.com/linear/hls/event/5xreV3X4T9WxeIbrwOmdMA/master.m3u8 -#EXTINF:-1 tvg-id="Mobcrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KwN9Ujp.png" group-title="Outdoor",Mobcrush (720p) [Offline] -https://dai.google.com/linear/hls/event/LGDVXxxyT8SxrL4-ZodxKw/master.m3u8 -#EXTINF:-1 tvg-id="MusicBaeble.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zPs2J7w.jpg" group-title="Series",Music Baeble (1080p) [Offline] -https://dai.google.com/linear/hls/event/HuoWULBBQFKJalbtsd7qPw/master.m3u8 -#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nasa-tv-globe-logo-us.png" group-title="Science",NASA TV (720p) -https://uplynkcontent.sinclairstoryline.com/channel/ddd76fdc1c0a456ba537e4f48e827d3e.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/newsy-us.png" group-title="News",Newsy (1080p) [Offline] -https://dai.google.com/linear/hls/event/0PopB0AoSiClAGrHVHBTlw/master.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/newsy-us.png" group-title="News",Newsy (720p) [Offline] -https://newsy.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) -https://dai.google.com/linear/hls/event/WB-7LjdsRVm0wVoLZjR8mA/master.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) -https://outsidetvplus-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QelloConcerts.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopeu.samsungcloud.tv/platform/image/sourcelogo/vc/70/03/20/GBAJ4900013GC_20200923T100340.png" group-title="Music",Qello Concerts (1080p) -https://dai.google.com/linear/hls/event/BakMHO8xRSmGKYeiyhsq3A/master.m3u8 -#EXTINF:-1 tvg-id="Quicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://dp6mhagng1yw3.cloudfront.net/entries/12th/5ec877f2-d86f-4253-a507-1c42083431a4.png" group-title="",Quicktake (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/6ANW1HGeSTKzJlnAa9u1AQ/master.m3u8 -#EXTINF:-1 tvg-id="RetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (720p) -https://digitalmediarights-retrocrush-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RingofHonorWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/RingOfHonor_400x400.png?raw=true" group-title="Sports",Ring of Honor Wrestling (720p) -https://stadium-ringofhonor-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d2ycltig8jwwee.cloudfront.net/articles/4690/detail.1dc13fd8.jpg" group-title="General",Shout! Factory TV (1080p) -https://dai.google.com/linear/hls/event/JX5KKhKKRPqchP3LfXD-1A/master.m3u8 -#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So...Real (1080p) -https://dai.google.com/linear/hls/event/VMzvtHhOQdOAzbV_hQKQbQ/master.m3u8 -#EXTINF:-1 tvg-id="SportsTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZgFhOZ8.png" group-title="Sports",Sports TV Plus (1080p) -https://dai.google.com/linear/hls/event/9FKrAqCfRvGfn3tPbVFO-g/master.m3u8 -#EXTINF:-1 tvg-id="Sportswire.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/usatoday_sportswire_logo_dark_v2.png" group-title="Sports",Sportswire (1080p) -https://dai.google.com/linear/hls/event/8R__yZf7SR6yMb-oTXgbEQ/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/dcf6dea4-94f1-49c2-8387-82569dde9f45-small3x1_stirr_1219_epg_singrayclassicrock_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Classic Rock (1080p) -https://stirr.ott-channels.stingray.com/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassica.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDBf/Stingray-Classica_450x450.png" group-title="Music",Stingray Classica (1080p) -https://stirr.ott-channels.stingray.com/iota-classica/index.m3u8 -#EXTINF:-1 tvg-id="StingrayDjazz.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/djazz.png" group-title="",Stingray Djazz (1080p) -https://dai.google.com/linear/hls/event/C-lfmhUVTGeDNWwU13_EgA/master.m3u8 -#EXTINF:-1 tvg-id="Stingraydjazz.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDFf/Stingray-DJazz_400x400.png" group-title="Music",Stingray djazz (1080p) -https://stirr.ott-channels.stingray.com/djazz/master.m3u8 -#EXTINF:-1 tvg-id="StingrayEverything80s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/90d2dbf6-a533-4cc1-b1a3-6196c40efb16-small3x1_STIRR_LOGO_0220_StingrayEverything80s_1920x1080_EPG.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Everything 80s (1080p) -https://stirr.ott-channels.stingray.com/128/master.m3u8 -#EXTINF:-1 tvg-id="StingrayFlashback70s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/4b83571f-2374-4e84-a27b-e772b0c94c51-small3x1_stirr_1219_epg_stingrayflashback70s_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Flashback 70s (1080p) -https://stirr.ott-channels.stingray.com/115/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d35ab388-cc91-4070-876d-b5c48d989a60-small3x1_stirr_1219_epg_singrayhitlist_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Hit List (1080p) -https://stirr.ott-channels.stingray.com/107/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHolidayHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/518a9541-fade-45ec-9d64-5b0a65806270-small3x1_stirr_1219_epg_stingraygreatesthits_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",Stingray Holiday Hits (1080p) -https://stirr.ott-channels.stingray.com/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d2dac750-5e2b-4107-a037-6467fca68e93-small3x1_stirr_1219_epg_stingrayhotcountry_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Hot Country (1080p) -https://stirr.ott-channels.stingray.com/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/49735-640x360-FFFFFF.jpg" group-title="Music",Stingray Karaoke (720p) -https://dai.google.com/linear/hls/event/5bqbG8j7T_6_qMONC1SDsg/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7XsqSSZ.png" group-title="Relax",Stingray Naturescape (1080p) -https://dai.google.com/linear/hls/event/6RPZlzksTCyB1euPqLcBZQ/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDNf/Stingray-Naturescape_450x450.png" group-title="Music",Stingray Naturescape (1080p) [Not 24/7] -https://stirr.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="STIRR2020Live.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",STIRR 2020 Live (720p) [Offline] -https://dai.google.com/linear/hls/event/mMP0Ny8OTb2Ev2EvsiIlrg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRAmericanClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://americanclassics.tv/wp-content/uploads/2019/02/ac-logo-shield-2-e1550875435641-524x521.png" group-title="Classic",STIRR American Classics (720p) -https://dai.google.com/linear/hls/event/0e06oV-NTI2ygS2MRQk9ZA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBiographies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Documentary",STIRR Biographies (720p) [Offline] -https://dai.google.com/linear/hls/event/OzhtmoTQQjSNOimI6ikGCQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Black Cinema (768p) [Not 24/7] -https://dai.google.com/linear/hls/event/9WuQ_LseR12mMx2-QW41XQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBonanza.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3385dd03-f70f-42e3-b1e6-98b8b5078a8c-small3x1_stirr_0120_epg_Bonanza_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Classic",STIRR Bonanza (720p) [Offline] -https://dai.google.com/linear/hls/event/LeVr-Z0_Q4qMDdXx7zr22w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCharge.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Entertainment",STIRR Charge! (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/e1QjWFRNSR2YFYGsPbkfgg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRChoppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.bikernet.com/docs/stories/13227/width500/choppertown-logo-600x191.jpg" group-title="Auto",STIRR Choppertown (720p) -https://dai.google.com/linear/hls/event/N3c94WZQQq2fruixzfcCUQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCinehouse.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/soWUYAlbr7JPirYYf-65YApRsk0X_OXlGZ36_0A4KnmmWf7n7PwvjxdBK6iK5LrqkCJD" group-title="Entertainment",STIRR Cinehouse (720p) -https://dai.google.com/linear/hls/event/28oUp4GcQ-u49U4_jjC4Iw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",STIRR CineLife (1080p) -https://dai.google.com/linear/hls/event/PFJ1Jhd6SsSMcu3qq86wzQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Lifestyle",STIRR City (720p) -https://dai.google.com/linear/hls/event/4aD5IJf0QgKUJwPbq2fngg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAbilene.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Abilene (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/uxPBn5ErTQ-FOjxIYle2PA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAlbany.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Albany (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/fD3VBzTxRXGz-v7HV0vryQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAlbany.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Albany (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/LT14Y2LdQSWx9OQCmgVfuA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAmarillo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Amarillo (720p) -https://dai.google.com/linear/hls/event/qvOGhZEeQh-s6TMFz7dVcg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAustin.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Austin (720p) -https://dai.google.com/linear/hls/event/zDh7VBx8S7Sog5vzcXuehg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBakersfield.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Bakersfield (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/-4GLQIcZTUWzP8vDAXNQsQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Baltimore (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/jCNW8TtPRe6lnJMMVBZWVA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBayCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Bay City (720p) -https://dai.google.com/linear/hls/event/kJPGlFKuS0itUoW7TfuDYQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBeaumont.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Beaumont (720p) -https://dai.google.com/linear/hls/event/FKoa3RaEQxyyrf8PfPbgkg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBeaumontPortArthur.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Beaumont Port Arthur (720p) -https://dai.google.com/linear/hls/event/tlvrrqidRaG0KbLN4Hd5mg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBirmingham.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Birmingham (720p) -https://dai.google.com/linear/hls/event/4RH6FntvSLOIv5FB-p4I8w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBoise.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Boise (720p) -https://dai.google.com/linear/hls/event/EXltT2IOQvCIn8v23_15ow/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCadillac.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cadillac (720p) -https://dai.google.com/linear/hls/event/do9arGJBTD--KARQ056kpw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCedarRapids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cedar Rapids (720p) -https://dai.google.com/linear/hls/event/zPJC-rOUTg28uymLdmYw5w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChampaign.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Champaign (720p) -https://dai.google.com/linear/hls/event/YLDvM8DGQyqsYnDsgxOBPQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCharleston.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Charleston (720p) -https://dai.google.com/linear/hls/event/kMNMCCQsQYyyk2n2h_4cNw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCharlestonHuntington.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Charleston Huntington (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/fLqJePs_QR-FRTttC8fMIA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChattanooga.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Chattanooga (720p) -https://dai.google.com/linear/hls/event/7_v7qMjnQWGZShy2eOvR5g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChicoRedding.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Chico-Redding (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/sHnor7AERX60rGA1kR_wPA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCincinnati.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cincinnati (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/ZaLvGYKiTfuSYgJuBZD67Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbia (480p) -https://dai.google.com/linear/hls/event/btXotLiMRvmsa5J5AetBGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbia (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/nkNBP1eHT_GQwS7oYq23zw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbus #1 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/wV5ExXM9RxabBzbWnVv9RA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbus #2 (720p) -https://dai.google.com/linear/hls/event/QLfrYVtERpCnzM7qE_PkUw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityDayton.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Dayton (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/nqvIiznDQO60CBNaJ5mmdQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityElPaso1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City El Paso #1 (720p) -https://dai.google.com/linear/hls/event/MYhAOCTqQA6QFBdc1xwULQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityElPaso2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City El Paso #2 (720p) -https://dai.google.com/linear/hls/event/Exp7zxEPSLWuEhMoD2voOg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Eugene Springfield #1 (720p) -https://dai.google.com/linear/hls/event/Ep4QBzH-TKW0iLhPVGuCvA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Eugene Springfield #2 (720p) -https://dai.google.com/linear/hls/event/bERQw8-YRoK3MtJ0UUaI5w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityFlorence.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Florence (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/6Ll-qQyAQlWgCt4PhH11Kw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityFresnoVisalia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Fresno-Visalia (720p) -https://dai.google.com/linear/hls/event/tFAJ7xPcTYaLKwIfUA-JIw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGainesville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Gainesville (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Ybz6nJKqSS2fcQYflsmpRw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGrandRapids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Grand Rapids (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/leOKmL9fQ6eZyhdoROSh5Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenBay.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Green Bay (720p) -https://dai.google.com/linear/hls/event/a6lsWNYDQwyM9fjytUCrcw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenvilleAsheville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Greenville Asheville (720p) -https://dai.google.com/linear/hls/event/trvuY4TqQCmrAKFTlr6tPQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenvilleNewBern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Greenville New Bern (720p) -https://dai.google.com/linear/hls/event/B6RsXGIZSVqeVZGZIEZESg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityHarrisburg.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Harrisburg (720p) -https://dai.google.com/linear/hls/event/W_NyV_9eQ-qa0XDSMfYkEg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityHastings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Hastings (720p) -https://dai.google.com/linear/hls/event/xtKyBDIFSZa6cT4Of9yaGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityJohnstownAltoona.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Johnstown Altoona (720p) -https://dai.google.com/linear/hls/event/BXZlH0kXTeGczlQ49-0QFQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLasVegas.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Las Vegas (720p) -https://dai.google.com/linear/hls/event/yDGZP35hTsqdf2rwaP1BGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLewiston.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Lewiston (720p) -https://dai.google.com/linear/hls/event/knBsxnquSYqFXTP_UzcGgw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLittleRock.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Little Rock (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/MqeaRgFBR2WJ_40ngbDruQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLosAngeles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Los Angeles (720p) -https://dai.google.com/linear/hls/event/n3PVAFmPTJSVYjdSVf7XZw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLynchburgRoanoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Lynchburg Roanoke (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Fwm4J95UQi67l2FEV7N5kQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMacon.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Macon (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/PPMxI7GZSRG6Kgkp2gSF1g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMedford.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Medford (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/1g9qH9IOSIGGwAqw8fPzmw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMilwaukee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Milwaukee (720p) -https://dai.google.com/linear/hls/event/jWaxnXHPQjGX1yTxuFxpuw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMinneapolis.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Minneapolis (720p) -https://dai.google.com/linear/hls/event/0P8RZiJkSBWfVDtjy-IiIQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMissoula.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Missoula (720p) -https://dai.google.com/linear/hls/event/ARX9M-X8RieADdAEYPXNuA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityNashville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Nashville (720p) -https://dai.google.com/linear/hls/event/IG9ThaPaTwCojeoEWVNZRQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityNorfolkPortsmouth.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Norfolk Portsmouth (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/QuSOUXM4RPaC5zL4J8ZY3w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityOklahomaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Oklahoma City (720p) -https://dai.google.com/linear/hls/event/pRd-k6tZSiCRsw_f51Vcvg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityOttumwa.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Ottumwa (720p) -https://dai.google.com/linear/hls/event/jH-4z3EkQO-fLYYgjX7d3g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPensacola.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Pensacola (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/CAU96LSyR_e7MSeK6UTmGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPittsburgh.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Pittsburgh (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/qJU_NkxXQoCbACvG5BWrXQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPortland.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Portland (720p) -https://dai.google.com/linear/hls/event/npdISdLWSIa1E_j7NCUDBg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPortland.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Portland (720p) -https://dai.google.com/linear/hls/event/OaqAqJ0yQPiEIUIYqD7IGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityProvidence.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Providence (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/5hLTCUyrQcS3B-NF8fNp-g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityQuincy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Quincy (720p) -https://dai.google.com/linear/hls/event/bjWdbDzwTMOMd8Wmxl4rwg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityRaleighDurham.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Raleigh Durham (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/86JIujPNRWiVvtfzksp8QQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityReno.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Reno (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/0Zb5SSQcTme6P7FYwwAwcQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityRochester.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Rochester (720p) -https://dai.google.com/linear/hls/event/FftwN8CLTnaX1pFHztXlYw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySaltLakeCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Salt Lake City (720p) -https://dai.google.com/linear/hls/event/1bMiswhQQxqH-X8D3qbmKQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySanAntonio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City San Antonio (720p) -https://dai.google.com/linear/hls/event/TIQuLmldSj2SqS8y2ud9Xg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySeattle.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Seattle (720p) -https://dai.google.com/linear/hls/event/VLEduzwwQfGSwV4eNdkj0g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySiouxCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Sioux City (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/0Uj4AmiOSw6oTX9ilyV2rQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySouthBend.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City South Bend (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/VGpvNIxIQRO7PXYRy7P0qw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySpringfield2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Springfield #2 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/IaAlq3prS8Ghiq0FhLtzGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityStLouis.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City St. Louis (234p) [Not 24/7] -https://dai.google.com/linear/hls/event/O5W1HC47QEKGc5tyscvsLw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySyracuse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Syracuse (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/HSX_ZpxDQNy5aXzJHjhGGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityToledo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Toledo (720p) -https://dai.google.com/linear/hls/event/1QSZA8OjS1y2Q64uTl5vWQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityTriCities.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Tri-Cities (720p) -https://dai.google.com/linear/hls/event/KPOafkGTRle7jOcRb9_KFw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityTulsa.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Tulsa (720p) -https://dai.google.com/linear/hls/event/5kbHZRGGS--RHp41xaUJHQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWashingtonDC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Washington D.C. (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/_VmeKujXTf-nc9Lr2NO6tA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWestPalmBeach.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City West Palm Beach (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/ji4LMCwtRCOw3TrRUKlQMQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWheelingSteubenville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Wheeling Steubenville (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/dcaYfE2nRnqC6eAvCFWfzQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWilkesBarreScranton.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Wilkes Barre Scranton (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/jlf2tRLPTg2xjMtKe5ey-w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityYakimaPasco1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Yakima Pasco #1 (720p) -https://dai.google.com/linear/hls/event/Ae0L5AucTcqefaIvaS504A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityYakimaPasco2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Yakima Pasco #2 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/FJejnzFjSFGpaogi0GzPyw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/16c18b31-36d6-4099-8b05-3d6c487fc7ef-large16x9_STIRR_0821_STIRRClassicTV_1920x1080_EPG.png" group-title="Classic",STIRR Classic TV (480p) -https://dai.google.com/linear/hls/event/8JiQCLfVQw6d7uCYt0qDJg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRClassica.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d5dd6f15-1fc2-46d0-b45e-57f4c5c897c6-small3x1_EPGLogoSTIRR_Logo_0420_Classica_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Lifestyle",STIRR Classica (1080p) -https://dai.google.com/linear/hls/event/AaFxJXOhQl-BsTVC9OCunQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Comedy",STIRR Comedy (720p) [Offline] -https://dai.google.com/linear/hls/event/dGP9Z-PNRPCgGQSDEzxqYg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",STIRR Comedy Dynamics (1080p) -https://dai.google.com/linear/hls/event/NJK_yxrcTBqULaHt-wi0Wg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/comet-us.png" group-title="Entertainment",STIRR Comet (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/83L2OqtGSZ6lbWt8ODomWg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCooks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Cooking",STIRR Cooks (720p) [Offline] -https://dai.google.com/linear/hls/event/CHaUZsCfSyS2CVF7I-NktA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCOVID19News.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",STIRR COVID-19 News (720p) [Offline] -https://dai.google.com/linear/hls/event/08ADpEIeQ8iZOjusLsZbCg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",STIRR Deal or No Deal (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/9cq79TtPR6WbyaQGeDlHjA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRDocurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",STIRR Docurama (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/Hx_PEMEsSzOCcZgy0Tq2YQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/6e9b5b43-d409-47a5-a13a-fdba785d466b-small3x1_STIRR_Logo_0320_ElectricNOW_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR Electric Now (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/KsvJAc81Qoewj6opYso6Fw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRESR24x7eSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3e896322-56cd-4017-81aa-84d8962455fb-small3x1_STIRR_Logo_0320_ESR24x7eSportsChannel_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR ESR 24x7 eSports Network (720p) [Offline] -https://dai.google.com/linear/hls/event/7-91LhuBQNONHzAbrFQr-Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRevrgrn.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/84a96620-2c59-4a44-bfed-bdec3fdf7451-small3x1_STIRR_Logo_0520_EVRGRN_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR evrgrn (1080p) -https://dai.google.com/linear/hls/event/TDUiZE57Q3-CS7Its4kLDQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.pngitem.com/pimgs/m/7-73309_failarmy-logo-hd-png-download.png" group-title="Comedy",STIRR FailArmy (720p) -https://dai.google.com/linear/hls/event/7tuuoX1wSsCTaki1HqJFYw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/152a4f21-0f03-4d21-b72a-76f4c35913d7-large16x9_STIRR_0821_STIRRFamily_1920x1080_EPG.png" group-title="Classic",STIRR Family (720p) -https://playoutengine.sinclairstoryline.com/playout/242b1153-0129-484e-8ec8-378edd691537.m3u8 -#EXTINF:-1 tvg-id="STIRRFilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",STIRR FilmRise Free Movies (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Va1QEor0SWO_x_SQNyaF0w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Lifestyle",STIRR Fit (720p) [Offline] -https://dai.google.com/linear/hls/event/ZidoyK28TXyMRTZU7rFuEQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRForensicsFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3e64aff5-e709-4ced-8452-d67728e54718-small3x1_stirr_1219_epg_forensicfiles_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Documentary",STIRR Forensics Files (720p) [Offline] -https://dai.google.com/linear/hls/event/fJj7BuL_Tv2KjCnNAmLK8g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",STIRR Gravitas Movies (720p) -https://dai.google.com/linear/hls/event/EpqgwRlpQKq73ySVSohJWA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",STIRR Gravitas Movies (720p) -https://gravitas-movies.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRGreatestAmericanHero.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/885a4fe2-5dce-4193-8c9b-e72c9b16ae4d-small3x1_stirr_1219_epg_thegreatestamericanhero_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Greatest American Hero (720p) [Offline] -https://dai.google.com/linear/hls/event/zaW9PVeXQeamNt6SZ9FsOg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gustotv.com/wp-content/uploads/2020/04/gustotv-logo.svg" group-title="Cooking",STIRR Gusto TV (1080p) -https://dai.google.com/linear/hls/event/tdSCy5u2R5WtCLXX4NwDtg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/e9486527-1ffc-4031-8b91-c954076365f8-small3x1_stirr_1219_epg_hellskitchen_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Cooking",STIRR Hell's Kitchen (720p) [Offline] -https://dai.google.com/linear/hls/event/SynaOtTyTq2y_N7BrGTz9Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHorrorMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://cloutcom.co.uk/wp-content/uploads/2017/12/horrorchannelonairlogo.jpg" group-title="Movies",STIRR Horror Movies (768p) -https://dai.google.com/linear/hls/event/3NTKKQBuQtaIrcUBj20lyg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/hsn-us.png" group-title="Shop",STIRR HSN (720p) -https://dai.google.com/linear/hls/event/akursTHNTo6qGf1TtlHNsw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHunter.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/11ca088b-4ef8-41a8-bdfd-8fc62dd4682a-small3x1_stirr_1219_epg_hunter_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Series",STIRR Hunter (720p) [Offline] -https://dai.google.com/linear/hls/event/Z-kHpGoATwyuxIuQEY_3fw/master.m3u8 -#EXTINF:-1 tvg-id="ItsShowtimeAtTheApollo.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvseriesfinale.com/wp-content/uploads/2018/01/showtime-at-the-apollo.png" group-title="Entertainment",STIRR It's Showtime at the Apollo (720p) -https://dai.google.com/linear/hls/event/fAFfTnCAT2K8d83sYsA-cw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRKitchenNightmares.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d3fa0a6c-3f76-46e0-b4d6-5039ee16f5a3-small3x1_stirr_1219_epg_kitchennightmares_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Cooking",STIRR Kitchen Nightmares (720p) [Offline] -https://dai.google.com/linear/hls/event/23QIslh0TOqygKz-M9W29Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/30a2f367-97f1-49e2-b9a7-0ae1a859e917-small3x1_STIRR_Logo_0320_MadeInHollywood_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Movies",STIRR Made in Hollywood (720p) [Offline] -https://dai.google.com/linear/hls/event/Mteif75-SJeFi19Sk3-dGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/46087-294x165-FFFFFF.jpg" group-title="Sports",STIRR MavTV (720p) -https://dai.google.com/linear/hls/event/YoBM0ae5Q62TPdrfFHS4RQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/46087-294x165-FFFFFF.jpg" group-title="Sports",STIRR MavTV (720p) -https://mavtv-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRMidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/01/01/USAJ3000011S4_20210525T051716.png" group-title="Entertainment",STIRR Midnight Pulp (720p) -https://dai.google.com/linear/hls/event/1fO2zbpBRyy6S5yve_fnaw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMovieMix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qcgXbuC.png" group-title="Movies",STIRR MovieMix (720p) [Offline] -https://dai.google.com/linear/hls/event/TSIJo6RCRZWuCD9WrKtRFg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Movies (768p) [Not 24/7] -https://dai.google.com/linear/hls/event/f-zA7b21Squ7M1_sabGfjA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Music",STIRR Music (720p) [Offline] -https://dai.google.com/linear/hls/event/_e1csFnJR6W6y056PyiG6A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMysteryScienceTheater3000.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/fc/MST3K-logo.png" group-title="Movies",STIRR Mystery Science Theater 3000 (1080p) -https://dai.google.com/linear/hls/event/rmBGeSwhQEG64TrT0_JO2A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRNational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR National (720p) -https://dai.google.com/linear/hls/event/-V3XSvA2Sa6e8h7cnHXB8w/master.m3u8 -#EXTINF:-1 tvg-id="StirrNews247.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",Stirr News 24/7 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/8hUeiLMpTm-YNqk7kadUwA/master.m3u8 -#EXTINF:-1 tvg-id="STIRROutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",STIRR Outside TV (1080p) -https://dai.google.com/linear/hls/event/HJAq3zH1SUy_B6fb1j80_Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPD.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/ba560e85-9b04-4fd4-bdca-f02d44b8b905-large16x9_STIRR_0821_STIRRPD_1920x1080_EPG.png" group-title="Entertainment",STIRR P.D. (540p) -https://dai.google.com/linear/hls/event/dKG_ZFd_S82FPgNxHmhdJw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/people-tv-us.png" group-title="Entertainment",STIRR People TV (1080p) -https://dai.google.com/linear/hls/event/Fe9LYYCFR5Csif-I5dyMHg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Lifestyle",STIRR Popstar! TV (1080p) -https://dai.google.com/linear/hls/event/cJFuxTLzQUqbGGrqTMBJuw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPursuitUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/cff7dcd8-15db-40ae-bfd7-72589c1e404c-small3x1_STIRR_Logo_0420_PursuitChannel_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR PursuitUp (720p) -https://dai.google.com/linear/hls/event/NpkpFaFVRqaQwSkpPdramg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRQVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/QVC.svg/221px-QVC.svg.png" group-title="Shop",STIRR QVC (720p) -https://dai.google.com/linear/hls/event/roEbn_l7Tzezwy22F1NSfA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRealPeople.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/61d8a775-ee54-406e-ab70-828eff54bad8-small3x1_stirr_0120_epg_RealPeople_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Real People (720p) [Offline] -https://dai.google.com/linear/hls/event/RoiVzG-4TJiJMSVUatDd4A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRealityTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/d6a14044-e796-423d-9221-f426907ce7c3-large16x9_STIRR_0821_STIRRRealityTV_1920x1080_EPG.png" group-title="",STIRR Reality TV (720p) -https://dai.google.com/linear/hls/event/r9VoxPU7TYmpydEn2ZR0jA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",STIRR RetroCrush TV (720p) -https://dai.google.com/linear/hls/event/7LAMGFcmQN6iFJjNoHWXrg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRevry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",STIRR Revry (720p) [Offline] -https://dai.google.com/linear/hls/event/gvO6-Y6TTjCxRf1QALU4VQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRingofHonor.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/154876f2-ed78-4a1e-959d-96aab12af9cd-small3x1_STIRR_Logo_0720_ROHBestofthePlanet_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Ring of Honor (720p) -https://dai.google.com/linear/hls/event/RNiQYO3aTjOqTe8od1zlqA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSilkStalkings.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/f391754b-a2f8-4c0e-bdf9-7c40ffe92655-small3x1_stirr_1219_epg_silkstalkings_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Silk Stalkings (720p) [Offline] -https://dai.google.com/linear/hls/event/8ZYru1fgSY6JL1Ejb6T5Ag/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSOAR.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/2b6ed67f-5284-4622-8594-a956633c8383-small3x1_stirr_1219_epg_soartv_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR SOAR (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/_PDxBUttQYqkxPnmh3VOZA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSpace1999.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/b/b3/Cosmos_1999.jpg" group-title="",STIRR Space:1999 (768p) -https://dai.google.com/linear/hls/event/NeKNJHuzSeCiN_7Fcuo83Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Sports",STIRR Sports (720p) [Offline] -https://dai.google.com/linear/hls/event/1B2yihdIR1mCL63rXzERag/master.m3u8 -#EXTINF:-1 tvg-id="STIRRStadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",STIRR Stadium (720p) -http://stadium.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRStadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",STIRR Stadium (720p) -https://dai.google.com/linear/hls/event/0jRU1DBXSW6a_TFheLfAUQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRStarMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcT2kTZnEQilym8ptRCEoFwFHsTvp0m_y-VOdvWZSFErs4Nyke_m&usqp=CAU" group-title="",STIRR Star Movies (720p) [Offline] -https://sonar.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayPopAdult.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/f7fe1378-d4a8-434e-8c1a-d7e001560404-small3x1_stirr_1219_epg_stingraypopadult_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",STIRR Stingray Pop Adult (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/104.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayRockAlternative.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ff902b0a-f978-495d-8b37-171eb5fee8a4-small3x1_STIRR_Logo_0720_Alternative_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Rock Alternative (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/102.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayTodaysLatinPop.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/b1d83dd9-b335-4871-89a1-b92cf2651b65-small3x1_STIRR_Logo_0720_StingrayLatinPop_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Today's Latin Pop (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/190.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayUrbanBeats.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d2056e60-df7d-4fac-8533-19503d5af78e-small3x1_STIRR_Logo_0720_HipHopRB_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Urban Beats (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/133.m3u8 -#EXTINF:-1 tvg-id="STIRRTennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",STIRR Tennis Channel (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f.m3u8 -#EXTINF:-1 tvg-id="STIRRTheAdventuresofSherlockHolmes.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/8f0ba0f2-e3aa-45ca-bc7c-26d2e4cc79d9-small3x1_stirr_0120_epg_Sherlock_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR The Adventures of Sherlock Holmes (720p) [Offline] -https://dai.google.com/linear/hls/event/fMcxjP7ORACGFsBvi7ZhAg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/2cffbaf0-2d4e-4d65-80c3-92940634bc34-large16x9_STIRR_Logo_1221_TheArchive_1920x1080_EPG.png" group-title="Classic",STIRR The Archive (360p) -https://dai.google.com/linear/hls/event/MdbYPXWRStmMq1DaQhsBUw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",STIRR The Asylum (1080p) [Offline] -https://dai.google.com/linear/hls/event/2r7F3DThT-C5YW21CUuGLQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i0.wp.com/experience.bobross.com/wp-content/uploads/2019/04/cropped-bob-ross-signature-1.png" group-title="Culture",STIRR The Bob Ross Channel (1080p) -https://dai.google.com/linear/hls/event/3dbJrQmVT_-psb-KBYuKQA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheCommish.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3a139329-7cdd-40f7-85fa-35d3b68853ca-small3x1_stirr_1219_epg_thecommish_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Series",STIRR The Commish (720p) [Offline] -https://dai.google.com/linear/hls/event/zfyiHhG0TeuoNist_WUwjg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",STIRR The First (1080p) -https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheLoneRanger.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/37204910-429a-4e1a-8c8d-eeb697ae5c62-small3x1_stirr_0120_epg_TheLoneRanger_1920x1080_v3.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Classic",STIRR The Lone Ranger (720p) [Offline] -https://dai.google.com/linear/hls/event/dRKvXuioSv-e5T65yR_7Ow/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheLucyShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/dbd51b97-8863-49a7-b6cf-f092f4676cf4-small3x1_stirr_0120_epg_TheLucyShow_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Classic",STIRR The Lucy Show (720p) [Offline] -https://dai.google.com/linear/hls/event/-s-FtbzrQCaLMDSyM0ejyw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Travel",STIRR Travel (720p) [Offline] -https://dai.google.com/linear/hls/event/0ZXyCbn9TYmrrAzcDfoU1w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTruly.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ed531a2a-04cd-4845-a419-cc46ed05333b-small3x1_STIRR_Logo_0320_Truly_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Truly (720p) [Offline] -https://dai.google.com/linear/hls/event/Xu-I6qGiSTKeu6glzS4BtQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTVMix.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",STIRR TV Mix (720p) -https://dai.google.com/linear/hls/event/ZP8ZMv95Q0Gm9EiyYOGHAA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/5cf60259-ce44-452f-a8a1-cb33585ea701-small3x1_stirr_1219_epg_unsolvedmysteries_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Unsolved Mysteries (720p) [Offline] -https://dai.google.com/linear/hls/event/iLjE1UKtRCiSNkFatA65bg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Westerns (480p) -https://dai.google.com/linear/hls/event/YF2jfXh_QROPxoHEwp1Abw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWhistleSportsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",STIRR Whistle Sports (1080p) -https://dai.google.com/linear/hls/event/Wu11mwhnTKGNhwZimEK6Jg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWhoseLineIsItAnyway.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ed57e0b9-7f78-4203-a1d9-b0f542ca856a-small3x1_stirr_1219_epg_whoselineisitanyway_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Whose Line Is It Anyway (720p) [Offline] -https://dai.google.com/linear/hls/event/SYob3ZZfTwyVW7LILC9ckw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",STIRR Wipeout Xtra (720p) -https://dai.google.com/linear/hls/event/0DG8p66IRES7ZzEe1WJS-w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWiseguy.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/5e3b98cb-3de9-4bb2-b775-e487f3a117ca-small3x1_stirr_1219_epg_wiseguy_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Wiseguy (720p) [Offline] -https://dai.google.com/linear/hls/event/kv03O_9RS8-uRahEGtDcjA/master.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/g.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel (504p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/f.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 1 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 2 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 2 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f/g.m3u8 -#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (1080p) -http://asylum-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCountryNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-uspx.mybtv.net/logos/TCN.png" group-title="Music",The Country Network (1080p) -https://dai.google.com/linear/hls/event/3EEsfZhASryigfuSpHdfKg/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) -https://dai.google.com/linear/hls/event/OYH9J7rZSK2fabKXWAYcfA/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) -https://filmdetective-stirr.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/The_First_TV_logo.png/240px-The_First_TV_logo.png" group-title="Entertainment",The First (1080p) -https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 -#EXTINF:-1 tvg-id="TheTimConwayShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/a3e52443-2f72-4097-8ea8-3a325119b67d-large16x9_STIRR_0821_TimConway_1920x1080_EPG.png" group-title="Classic",The Tim Conway Show (768p) -https://dai.google.com/linear/hls/event/v51OvZmXQOizl-KOgpXw1Q/master.m3u8 -#EXTINF:-1 tvg-id="USSPORTTennisPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",US SPORT Tennis Plus 1 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60/g.m3u8 -#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.freelogovectors.net/wp-content/uploads/2020/11/usa-today-logo-768x768.png" group-title="News",USA Today (1080p) -https://dai.google.com/linear/hls/event/gJJhuFTCRo-HAHYsffb3Xg/master.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://dai.google.com/linear/hls/event/gJpQRkqiS8SHzAbPlGNRQw/master.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (1080p) -https://dai.google.com/linear/hls/event/im0MqOKRTHy9nVa1sirQSg/master.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/w20848MGTYlY94nRRP8komTiHfh1SqTab4AA2VJuNQ2jQtBJpoohn96pYdV5sC-oZRo" group-title="Weather",WeatherSpy (720p) -https://dai.google.com/linear/hls/event/vZB78SsNSXWOR63VJrNC2Q/master.m3u8 diff --git a/channels/us_tcl.m3u b/channels/us_tcl.m3u deleted file mode 100644 index a7c0d5c53..000000000 --- a/channels/us_tcl.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BloodyDisgusting.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602dd011302f4d7da05d4bf3" group-title="Movies",Bloody Disgusting (1080p) -https://bloodydisgusting-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) -https://comedydynamics-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) -https://contv-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://contvanime-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) -https://docurama-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) -https://dovenow-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) -https://introuble-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (1080p) -https://inwonder-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) -https://vidaprimo-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) -https://mytime-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So... Real (1080p) -https://soreal-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) -https://unbeaten-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (1080p) [Offline] -https://whistlesports-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) -https://younghollywood-tcl.amagi.tv/playlist.m3u8 diff --git a/channels/us_tubi.m3u b/channels/us_tubi.m3u deleted file mode 100644 index d1a24cad8..000000000 --- a/channels/us_tubi.m3u +++ /dev/null @@ -1,129 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="WTAETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4iEFQjd.png" group-title="",ABC 4 Pittsburg PA (WTAE) (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WTAE.m3u8 -#EXTINF:-1 tvg-id="WEWSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606e0f9a9739652ec518e8c1" group-title="Local",ABC 5 Cleveland OH (WEWS-TV) (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WEWS.m3u8 -#EXTINF:-1 tvg-id="KOCOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxEbZqn.jpg" group-title="",ABC 5 Oklahoma City OK (KOCO) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-KOCO.m3u8 -#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8sQ5mfL.png" group-title="Local",ABC 7 Detroit MI (WXYZ-TV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXYZ.m3u8 -#EXTINF:-1 tvg-id="KETVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BuO1yHQ.png" group-title="",ABC 7 Omaha NE (KETV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KETV.m3u8 -#EXTINF:-1 tvg-id="KMBCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DCBHkiP.jpg" group-title="News",ABC 9 Kansas City MO (KMBC-TV) (576p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KMBC.m3u8 -#EXTINF:-1 tvg-id="WMURTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6oNx5F0.png" group-title="Local",ABC 9 Manchester NH (WMUR-TV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WMUR.m3u8 -#EXTINF:-1 tvg-id="AnAmericanChristmasCarol.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Christmas_715x715.png?raw=true" group-title="Movies",An American Christmas Carol (720p) -https://cloudfront.tubi.video/5b97b1f5-a605-44a5-a192-12e10beece40/sd846jzc/stream.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (720p) -https://lnc-black-news.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (720p) [Offline] -https://csm-e-eb.csm.tubi.video/csm/live/283326845.m3u8 -#EXTINF:-1 tvg-id="CBCNewsHighlights.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQ0OTQ3NTlf/Tubi_LiveNews_840x840.png" group-title="News",CBC News Highlights (720p) -https://csm-e-eb.csm.tubi.video/csm/live/243017997.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (720p) -https://csm-e-eb.csm.tubi.video/csm/live/247083838.m3u8 -#EXTINF:-1 tvg-id="WJBK.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EL9Bwtf.png" group-title="News",FOX 2 Detroit MI (WJBK) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WJBK-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KTVUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/18isSVd.png" group-title="News",FOX 2 San Francisco CA (KTVU) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTVU-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KDFWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gjIKpMJ.png" group-title="News",FOX 4 Dallas / Fort Worth TX (KDFW) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KDFW-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WAGATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DcZoeGw.jpg" group-title="News",FOX 5 Atlanta GA (WAGA-TV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WAGA-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WNYWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OfGcsUO.png" group-title="Local",FOX 5 New York NY (WNYW) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WNYW-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WTTGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ktLKla7.png" group-title="Local",FOX 5 Washington DC (WTTG) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTTG-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WITITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qmOd9Yr.jpg" group-title="Local",FOX 6 Milwaukee WI (WITI) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WITI-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KTBCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ugLwGEY.png" group-title="News",FOX 7 Austin TX (KTBC) (720p) [Offline] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTBC-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KMSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WBgiaiB.jpg" group-title="News",FOX 9 ST Paul Minneapolis MN (KMSP) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KMSP-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KZAS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TCzjchS.jpg" group-title="News",FOX 10 Phoenix AZ (KZAS) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KSAZ-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KTTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://live-tv-channels.org/pt-data/uploads/logo/us-fox-11-los-angeles.jpg" group-title="News",FOX 11 Los Angeles CA (KTTV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTTV-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WHBQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/E9vX12j.jpg" group-title="Local",FOX 13 Memphis TN (WHBQ-TV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WHBQ.m3u8 -#EXTINF:-1 tvg-id="WTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bvkri2L.png" group-title="Local",FOX 13 Tampa Bay FL (WTVT) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTVT-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KRIV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AZ8MWRp.jpg" group-title="News",FOX 26 Houston TX (KRIV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KRIV-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WTXFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fRjmk5r.png" group-title="Local",FOX 29 Philadelphia PA (WTXF-TV) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTXF-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WFLDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lf5sLNn.png" group-title="Local",FOX 32 Chicago IL (WFLD) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WFLD-Monetizer.m3u8 -#EXTINF:-1 tvg-id="WOFLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BOA8KKZ.jpg" group-title="Local",FOX 35 Orlando FL (WOFL) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WOFL-Monetizer.m3u8 -#EXTINF:-1 tvg-id="KCPQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4xs5ERr.jpg" group-title="News",FOX Q13 Seattle WA (KCPQ) (576p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KCPQ-Monetizer.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (720p) -https://lnc-fox-soul-scte.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Fox-Weather.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Fox-Weather.m3u8 -#EXTINF:-1 tvg-id="KCCI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KCCI-TV News Des Moines IA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCCI.m3u8 -#EXTINF:-1 tvg-id="KCRA.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KCRA-TV News Sacramento CA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCRA.m3u8 -#EXTINF:-1 tvg-id="KHBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",KHBS-TV News Fort Smith AR (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KHBS.m3u8 -#EXTINF:-1 tvg-id="KOAT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KOAT-TV News Albuquerque NM (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KOAT.m3u8 -#EXTINF:-1 tvg-id="KSBW.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",KSBW-TV News Salinas CA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KSBW.m3u8 -#EXTINF:-1 tvg-id="Localish.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usla.mybtv.net/logos/7.2.png" group-title="Lifestyle",Localish (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Localish.m3u8 -#EXTINF:-1 tvg-id="WLWTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7erOEZJ.gif" group-title="News",NBC 5 Cincinnati OH (WLWT) (360p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLWT.m3u8 -#EXTINF:-1 tvg-id="WDSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cB1bxJw.jpg" group-title="News",NBC 6 New Orleans LA (WDSU) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WDSU.m3u8 -#EXTINF:-1 tvg-id="News12NewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c57ad92cd1774a1091752" group-title="Local",News 12 New York (1080p) -https://lnc-news12.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Newsy.m3u8 -#EXTINF:-1 tvg-id="pattrn.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f976cdcd40f5d6678647013" group-title="Weather",Pattrn (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Pattrn.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) -https://lnc-people-tv.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="RealMadridTVUS.us" tvg-country="ES" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/sco/5/56/Real_Madrid_CF.svg" group-title="Sports",Real Madrid TV US Version (720p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Real-Madrid.m3u8 -#EXTINF:-1 tvg-id="SantaandtheThreeBears.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Christmas_715x715.png?raw=true" group-title="Family",Santa and the Three Bears (480p) -https://cloudfront.tubi.video/21df8036-fa23-49ff-9877-8af983546d2b/elw3phlf/stream.m3u8 -#EXTINF:-1 tvg-id="TodayAD.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="General",Today All Day (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Today.m3u8 -#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",USA Today (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-USA-Today.m3u8 -#EXTINF:-1 tvg-id="VeryAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Very Alabama (576p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WVTM.m3u8 -#EXTINF:-1 tvg-id="WAPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WAPT-TV News Jackson MS (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WAPT.m3u8 -#EXTINF:-1 tvg-id="WBAL.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WBAL-TV News Baltimore MD (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WBAL.m3u8 -#EXTINF:-1 tvg-id="WCVB.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WCVB-TV News Boston MA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WCVB.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/weathernation.png" group-title="Weather",Weathernation (720p) [Geo-blocked] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Weather-Nation.m3u8 -#EXTINF:-1 tvg-id="WESH.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WESH-TV News Orlando FL (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WESH.m3u8 -#EXTINF:-1 tvg-id="WGAL.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WGAL-TV News Lancaster PA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WGAL.m3u8 -#EXTINF:-1 tvg-id="WISN.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WISN-TV News Milwaukee WI (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WISN.m3u8 -#EXTINF:-1 tvg-id="WJCL.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WJCL-TV News Savannah GA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WJCL.m3u8 -#EXTINF:-1 tvg-id="WLKY.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/cbs.png" group-title="News",WLKY-TV News Louisville KY (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLKY.m3u8 -#EXTINF:-1 tvg-id="WMOR.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WMOR-TV News Lakeland FL (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMOR.m3u8 -#EXTINF:-1 tvg-id="WMTW.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WMTW-TV News Portland ME (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMTW.m3u8 -#EXTINF:-1 tvg-id="WPBF.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WPBF-TV News West Palm Beach FL (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPBF.m3u8 -#EXTINF:-1 tvg-id="WPTZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WPTZ-TV News Plattsburgh NY (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPTZ.m3u8 -#EXTINF:-1 tvg-id="WXII.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WXII-TV News Winston-Salem NC (720p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXII.m3u8 diff --git a/channels/us_vizio.m3u b/channels/us_vizio.m3u deleted file mode 100644 index cd98ead6c..000000000 --- a/channels/us_vizio.m3u +++ /dev/null @@ -1,187 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AMCAbsoluteReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Documentary",AMC Absolute Reality (1080p) [Offline] -https://amc-absolutereality-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCIFCFilmPicks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",AMC IFC Film Picks (1080p) [Offline] -https://amc-ifc-films-picks-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (1080p) [Offline] -https://amc-amcpresents-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCRush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",AMC Rush (1080p) [Offline] -https://amc-rushbyamc-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCSlightlyOff.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Slightly Off (1080p) [Offline] -https://amc-slightly-off-by-amc-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) -https://p1media-americasvoice-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Ameritrade.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/71CZKwin9mL.png" group-title="Business",Ameritrade (1080p) [Not 24/7] -https://tdameritrade-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AWEEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60482f63cfbf071d6151ca95" group-title="General",AWE Encore (720p) -https://aweencore-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (720p) -https://blacknewschannel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (720p) -https://condenast-bonappetit-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) [Offline] -https://brat-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) [Offline] -https://cheddar-cheddar-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Choppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c5eb78083e72bec0d0522" group-title="Auto",Choppertown (1080p) [Offline] -https://oneworlddigital-choppertown-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Cinevault80s.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI4NjIyODdf/Cinevault-80s_700x700.png" group-title="",Cinevault 80s (540p) -https://gsn-cinevault-80s-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) -https://gsn-cinevault-westerns-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://circle-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Not 24/7] -https://contv.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://contvanime-vizio-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) -https://dmtv-viziosc.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (720p) [Offline] -https://demandafrica-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DocTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fGioE7e.png" group-title="Series",Doc TV (1080p) [Offline] -https://wownow-doctv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] -https://dove-channel.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (1080p) [Offline] -https://dust-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (1080p) [Offline] -https://failarmy-linear.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Fawesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PbvhJKs.png" group-title="Entertainment",Fawesome (720p) [Offline] -https://fawesome-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FlixFling.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p41hq1Q.png" group-title="General",FlixFling (1080p) [Offline] -https://flixfling-flixflingnow-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hc5a1YP.png" group-title="News",FOX News Now (720p) -https://fox-foxnewsnow-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) -https://foxsoul-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (720p) [Offline] -https://funnyordie-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowCentralEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Central East (1080p) [Offline] -https://gsn-gameshowchannnel-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GiggleMug.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hWbVgsR.jpg" group-title="Kids",Giggle Mug (720p) [Offline] -https://janson-gigglemug-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (1080p) [Offline] -https://glewedtv-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) -https://gravitas-movies.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] -https://gustotv-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (720p) -https://happykids-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKidsJunior.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids Junior (720p) -https://happykidsjunior-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HNCFree.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xXr4Cnq.png" group-title="",HNC Free (1080p) -https://hncfree-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Hometalk.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J09XrLH.png" group-title="Lifestyle",Hometalk (1080p) [Offline] -https://playworksdigital-hometalk-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (720p) -https://ifood-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (1080p) -https://insighttv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) [Offline] -https://introuble-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (1080p) [Offline] -https://inwonder-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="IonPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d449jnv.png" group-title="Family",Ion Plus (1080p) -https://ion-ion-plus-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IonQubo.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette2.wikia.nocookie.net/logopedia/images/5/50/Qubo_logo_2012.png/revision/latest?cb=20150915211649" group-title="Kids",Ion Qubo (720p) [Offline] -https://ion-qubo-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (720p) -https://johnnycarson-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="JudgeFaith.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VMJvKbC.png" group-title="Series",Judge Faith (1080p) [Offline] -https://judge-faith-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (1080p) [Offline] -http://kidoodletv-kdtv-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (720p) -https://vidaprimo-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (720p) [Offline] -https://latidomusic.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LEGOChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xePwW13.png" group-title="Kids",LEGO Channels (720p) -https://legochannel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV (1080p) [Offline] -https://magellantv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (1080p) [Offline] -https://maverick-maverick-black-cinema-2.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (1080p) [Offline] -https://mavtv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MonsterMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qwHxh55.png" group-title="Movies",Monster Movies (1080p) [Offline] -https://wownow-monstermovies-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MysteryScienceTheater3000.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ace054964ba19ff258256" group-title="Comedy",Mystery Science Theater 3000 (1080p) -https://mst3k-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) -https://mytime-vizio-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) -https://newsmax-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) [Offline] -https://newsy-newsy-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] -https://nosey-realnosey-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (1080p) -https://oneamericanews-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (720p) -https://outside-tv-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (720p) -https://pac12-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (1080p) [Offline] -https://jukin-peopleareawesome-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (720p) [Offline] -https://playworksdigital-playworks-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) -https://playerstv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) -https://pocketwatch-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealTruthCrime.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Real Truth Crime [Offline] -https://endemol-reeltruthcrime-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Restore.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",Restore [Offline] -https://endemol-restore-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZ9iGaO.png" group-title="Comedy",RiffTrax (720p) [Offline] -https://rifftrax-2.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (720p) [Offline] -https://shout-factory.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) -https://sportsgrid-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/g9zxqSd.jpg" group-title="",Spotlight (1080p) -https://spotlight-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperSimpleSongs.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9zRYK8n.jpg" group-title="Kids",Super Simple Songs (1080p) [Offline] -https://janson-supersimplesongs-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Kids",Tankee (720p) [Offline] -https://playworksdigital-tankee-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) -https://tastemade-intl-vizioca.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) -https://tastemadees16intl-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Travel (720p) -https://tastemadetravel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) [Offline] -https://cinedigm-bobross-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dEmt8Fv.png" group-title="Classic",The Carol Burnett Show (1080p) -https://carolburnett-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (720p) -https://thefirst-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (1080p) [Offline] -https://the-pet-collective-linear.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (1080p) [Offline] -https://previewchannel-previewchannel-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (1080p) [Offline] -https://toon-goggles-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) -https://venntv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAllWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d61oA0y.png" group-title="Entertainment",We TV All Weddings (1080p) [Offline] -https://amc-allweddings-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (1080p) -https://jukin-weatherspy-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] -https://whistle-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wipeout.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cII7j51.png" group-title="Series",Wipeout [Offline] -https://endemol-wipeoutxtra-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WowNowKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AWXw9LW.jpg" group-title="Kids",Wow Now Kids (1080p) [Offline] -https://wownow-wownowkids-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) -https://xplore-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (720p) -https://yahoo-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) -https://younghollywood-vizio.amagi.tv/playlist.m3u8 diff --git a/channels/us_xumo.m3u b/channels/us_xumo.m3u deleted file mode 100644 index f98758c66..000000000 --- a/channels/us_xumo.m3u +++ /dev/null @@ -1,369 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="News",ABC News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-abcnews/CDN/master.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioadventuresportsnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Ameba.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/612ZLob%2BSOL.png" group-title="Kids",Ameba (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuameba/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/10272020/Americas_Test_Kitchen_190x190.png?raw=true" group-title="Cooking",America's Test Kitchen (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericastestkitchen/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericanClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WUAXiq1.png" group-title="Movies",American Classics (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericanclassics/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ArchitecturalDigest.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AD_246x246.png?raw=true" group-title="",Architectural Digest (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxarchitecturaldigest/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ArchitecturalDigest.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AD_246x246.png?raw=true" group-title="",Architectural Digest (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokutraveler/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Asylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/j98vGQp.jpg" group-title="Movies",Asylum (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-theasylum/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Baeble.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mDxouc8.png" group-title="Music",Baeble Music (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbaeble/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BatteryPopXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5VUZTa1.png" group-title="Kids",Battery Pop (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbatterypop/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) -http://redbox-blacknewschannel-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) -https://blacknewschannel-xumo-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewschannel-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) -https://blacknewschannel-xumo-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxblacknewschannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbloomberg/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbonappetit/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6TmWzvk.jpg" group-title="News",CBC News (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcbcnews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCNewsXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6TmWzvk.jpg" group-title="News",CBC News (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-cbcnews/CDN/master.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo-host-cheddar/CDN/master.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcheddar/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ChiveTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/a-/AN66SAz6Ssqjkt5Zn__8q2-hhZEPzoma1h3_IshrpQ=s900-mo-c-c0xffffffff-rj-k-no" group-title="Outdoor",Chive TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxchive/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CineRomantico.us" tvg-country="US" tvg-language="English" tvg-logo="https://odishaexpo.com/wp-content/uploads/2020/10/UP_Entertainment_Cine_Romantico_Logo.jpg" group-title="Movies",Cine Romantico (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokucineromantico/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://circle-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcircletv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-circle/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo-host-comedydynamics/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Complex.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aBseWYR.png" group-title="Lifestyle",Complex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-complextv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Complex.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aBseWYR.png" group-title="Lifestyle",Complex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcomplex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcontv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Timeout] -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo123-contv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://contvanime.cinedigm.com/conapp-ssai/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CrackleXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XAQpMY6.png" group-title="Movies",Crackle (XUMO) (1080p) -http://crackle-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxdocurama/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Timeout] -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-dovenow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Sports",EDGEsport (1080p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-edgesportxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjgzOTI0NjRf/ElectricNow_300x300.png" group-title="Entertainment",Electric Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-electricnow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="eScapesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lb0ddYv.png" group-title="Entertainment",eScapes (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-escapes/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfailarmy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmHub.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-images-1.medium.com/max/280/1*7zB_9kQDvR3fa_IIk8fhQg@2x.png" group-title="Movies",Film Hub (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmhub/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise-Action_442x442.png?raw=true" group-title="",FilmRise Action (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmriseaction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GvqmzPn.jpg" group-title="Classic",FilmRise Classic TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmriseclassictv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise_Classic-TV_300x300.png?raw=true" group-title="Classic",FilmRise Classic TV (432p) -https://hls.xumo.com/channel-hls/v1/9fe012a9926c4e91/9999400/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Redbox_512x512.png?raw=true" group-title="Classic",FilmRise Classic TV on Redbox (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmriseclassictv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (432p) -http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise_ForensicFiles_398x398.png?raw=true" group-title="",FilmRise Forensic Files (432p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuforensicfiles/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseForensicFilesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fX1PNxl.png" group-title="",FilmRise Forensic Files (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxunsolvedmysteries/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofilmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMoviesRedbox.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (Redbox) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H002ju5.png" group-title="Cooking",FilmRise Hell's Kitchen (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecooking/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FeWgF1h.png" group-title="Series",FilmRise Mysteries (XUMO) (432p) -http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FeWgF1h.png" group-title="Series",FilmRise Mysteries (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisemystery/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseSciFiXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/815Fp3E0LcL.png" group-title="",FilmRise Sci-Fi (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisesci-fi/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/suxN191.png" group-title="Movies",FilmRise True Crime (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseWestern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7cTXYNk.png" group-title="",FilmRise Western (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisewestern/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FiremanSam.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/umyEio1.jpg" group-title="Kids",Fireman Sam (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufiremansam/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1212A-redboxfood52A/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfood52A/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofood52/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfunnyordie/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufunnyordie/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FuseEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mijRpPQ.jpg" group-title="",Fuse East (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfuse/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Glamour.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.ranklogos.com/wp-content/uploads/2014/11/Glamour-Logo.jpg" group-title="Lifestyle",Glamour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglamour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Glamour.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.ranklogos.com/wp-content/uploads/2014/11/Glamour-Logo.jpg" group-title="Lifestyle",Glamour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuglamour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GlobalGotTalent.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QHiOf7Z.png" group-title="Entertainment",Global Got Talent (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugottalentglobal/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQbc1ER.jpg" group-title="Sports",Glory Kickboxing (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglorykickboxing/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GoTraveler.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Travel",Go Traveler (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgotraveler/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tprQSxT.png" group-title="Lifestyle",GQ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgq/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tprQSxT.png" group-title="Lifestyle",GQ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugq/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgravitas/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugravitasmovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="HallmarkMoviesMore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JMn9sxk.png" group-title="Movies",Hallmark Movies & More (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuhallmark/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzA3OTUzMjRf?inline=1" group-title="Sports",Hard Knocks (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhardknocksfightingchampionship/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhi-ya/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Hungry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MIUDYh0.png" group-title="Cooking",Hungry (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhungry/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-insighttv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxjourny/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="JustforLaughsGags.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OiMMkP3.jpg" group-title="Comedy",Just for Laughs Gags (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokujustforlaughsgags/CDN/master.m3u8 -#EXTINF:-1 tvg-id="JustforLaughsGags.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OiMMkP3.jpg" group-title="Comedy",Just for Laughs Gags (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziojustforlaughsgags/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="kabillion.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2Ybvtlg.png" group-title="Kids",kabillion (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxkabillion/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGenius.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/profile_images/633357710969303040/ZKJg46ZY.jpg" group-title="Kids",Kid Genius (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukidgenius/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KocowaClassic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Px8a1JY.png" group-title="Classic",Kocowa Classic (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukocowa/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumovidaprimolatido/CDN/master.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/master.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziolawandcrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrimeXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LIVExLIVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OaSFTnV.png" group-title="Lifestyle",LIVExLIVE (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumolivexlive/CDN/master.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-maverickmovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Moovimex.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mty0mgJ.jpg" group-title="Movies",Moovimex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziomoovimex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Moovimex.us" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mty0mgJ.jpg" group-title="Movies",Moovimex (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokumoovimex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunbcnewsnow/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-nbcnewsnow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-newsmaxxumo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NitroCircus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ri0sB6I.jpg" group-title="Sports",Nitro Circus (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnitrocircus/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-nosey/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThis.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (900p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunowthis/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThis.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnowthis/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThisXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-nowthis/CDN/master.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutdooramerica/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutsidetv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV Plus (1080p) -https://outsidetvplus-xumo.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetvplusxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="OutsideTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV Plus (1080p) -https://outsidetvplus-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-peopleareawesome/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpeopleareawesome/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) -https://peopletvssai.akamaized.net/amagi_hls_data_peopletvA-peopletvxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-playerstv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpocketwatch/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PongaloNovelaclub.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vLSvJ7W.jpg" group-title="Series",Pongalo Novelaclub (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunovelaclub/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RainbowRuby.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LrunNdE.png" group-title="",Rainbow Ruby (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-roku-rainbow-ruby/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxrealnosey/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Reelz.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokureelzchannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ReelzChannelXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz Channel (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxreelzchannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RevandRoll.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JiBv7NI.jpg" group-title="",Rev and Roll (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokurev-and-roll/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-revryxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="",Samuel Goldwyn Channel (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsamuelgoldwyn/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ShopLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606f94fdf46bcb6017662744" group-title="Shop",Shop LC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(xumo)/index.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) -https://shoutfactory-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowtimeattheApollo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jhJ25OQ.jpg" group-title="Entertainment",Showtime at the Apollo (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxshowtimeattheapollo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="SoYummy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mq7PBDN.png" group-title="Cooking",So Yummy! (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsoyummy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="SoYummy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mq7PBDN.png" group-title="Cooking",So Yummy! (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-soyummy-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumosportsgrid/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) -https://sportsgrid-xumo-us.amagi.tv/xumo.m3u8 -#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-stadiumsports/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayAmbience.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/tHClafI.png" group-title="Music",Stingray Ambience (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziostingrayambiance/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Classic Rock (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayclassicrock/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Classic Rock (1080p) -https://xumo-redbox.ott-channels.stingray.com/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Classic Rock (1080p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayclassicrock/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Greatest Hits (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraygreatesthits/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Greatest Hits (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraygreatesthits/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Greatest Hits (1080p) -https://xumo-redbox.ott-channels.stingray.com/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hit List (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhitlist/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hit List (1080p) -https://xumo-redbox.ott-channels.stingray.com/107/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitlist.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Hitlist (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhitlist/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hot Country (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhotcountry/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Hot Country (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhotcountry/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hot Country (1080p) -https://xumo-redbox.ott-channels.stingray.com/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Karaoke (144p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraykaraoke/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Naturescape (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraynaturescape/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Naturescape (360p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraynaturescape/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Stingray Qello Concerts (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioqelloconcerts/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Qello Concerts (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayqello/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Soul Storm (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraysoulstorm/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Soul Storm (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraysoulstorm/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Soul Storm (1080p) -https://xumo-redbox.ott-channels.stingray.com/134/master.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) -https://tastemade-xumo.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuteletubbies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjg0MDgzNDBf/TheArchive_300x300.png" group-title="Classic",The Archive (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthearchive/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) -https://bobross-xumous-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) -https://bobross-xumous.cinedigm.com/midroll/amagi_hls_data_xumo-host-bobross-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbobross/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthedesignnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-petcollective/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpetcollective/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (720p) -https://hls.xumo.com/channel-hls/v1/bmneuerw7j9k5lfc/9999330/master.m3u8 -#EXTINF:-1 tvg-id="TheYoungTurks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XDNXJCl.png" group-title="News",The Young Turks (TYT) (1080p) [Not 24/7] -https://tyt-xumo-us.amagi.tv/hls/amagi_hls_data_tytnetwor-tyt-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziotmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-tmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtoongoggles/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxusatoday/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatoday/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (432p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuusatodaynews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USATodaySportswire.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="Sports",USA Today Sportswire (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatodaysportswire/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VanityFair.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KMUYfnz.jpg" group-title="Lifestyle",Vanity Fair (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvanityfair/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VanityFair.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KMUYfnz.jpg" group-title="Lifestyle",Vanity Fair (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvanityfair/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vevo80s.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Vevo 80s (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo80s/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VevoPop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Me1wLzi.jpg" group-title="Music",Vevo Pop (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vogue.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2i333B9.jpg" group-title="Lifestyle",Vogue (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvogue/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vogue.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2i333B9.jpg" group-title="Lifestyle",Vogue (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvogue/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vPlVuv8.jpg" group-title="Documentary",Voyager Documentaries (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvoyager/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vPlVuv8.jpg" group-title="Documentary",Voyager Documentaries (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvoyagerdocumentaries/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuweatherspy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxweatherspy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Wired.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="",Wired (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxwired/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxworldpokertour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="XumoFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Sx10tvQ.png" group-title="Movies",Xumo Free Movies (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumofreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="XumoFreeWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/XumoFreeWesterns.png?raw=true" group-title="Movies",Xumo Free Westerns (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumowesterns/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="YoGabbaGabba.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RwxgFfb.jpg" group-title="Kids",Yo Gabba Gabba! (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuyogabagaba/CDN/playlist.m3u8 diff --git a/channels/uy.m3u b/channels/uy.m3u deleted file mode 100644 index 05fa9fa67..000000000 --- a/channels/uy.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="canal10.uy" tvg-country="UY" tvg-language="Spanish;Castilian" tvg-logo="https://i.imgur.com/nmpOHwM.png" group-title="",Canal 10 (720p) [Offline] -https://edge3-hr.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating_FTA/Canal10_URU.m3u8 -#EXTINF:-1 tvg-id="CANAL10.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2019/04/canal-10-uruguay-en-vivo.png" group-title="",CANAL 10 [Offline] -http://edge2-ccast-sl.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating/Canal10_URU-video=1480000.m3u8 -#EXTINF:-1 tvg-id="CharruaTV.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="" group-title="",Charrúa Televisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/charruatvcanal -#EXTINF:-1 tvg-id="LaRedTV.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="http://www.redtv.com.uy/wp-content/uploads/2019/10/logoheader2.png" group-title="General",LaRed TV (576p) [Not 24/7] -https://stmv1.srvif.com/laredtv/laredtv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatinoKids.uy" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LatinoKidsTvUruguay/picture?width=300&height=300" group-title="Entertainment",LatinoKids (360p) [Not 24/7] -https://s14.ssl-stream.com:3335/live/latinokidsonlinelive.m3u8 -#EXTINF:-1 tvg-id="UCL.uy" tvg-country="UY;HISPAM" tvg-language="Spanish" tvg-logo="https://uclplay.com/wp-content/uploads/2020/04/logo-horizontal-white-1.png" group-title="",UCL TV (360p) [Not 24/7] -https://livedelta.cdn.antel.net.uy/out/u/url_canalu_2.m3u8 diff --git a/channels/uz.m3u b/channels/uz.m3u deleted file mode 100644 index 2640c4b3c..000000000 --- a/channels/uz.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AzonTV.uz" tvg-country="UZ" tvg-language="Uzbek" tvg-logo="" group-title="",Azon TV (1080p) [Not 24/7] -http://tv2.azon.uz/high/stream.m3u8 -#EXTINF:-1 tvg-id="Milliy.uz" tvg-country="UZ" tvg-language="Uzbek" tvg-logo="http://milliy.tv/assets/images/logo.png" group-title="",Milliy (480p) [Not 24/7] -http://milliy.tv/hls/index.m3u8 diff --git a/channels/va.m3u b/channels/va.m3u deleted file mode 100644 index 3f7c0d7d1..000000000 --- a/channels/va.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV2000.va" tvg-country="VA;IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0d/Logo_tv2000_2015.svg/1280px-Logo_tv2000_2015.svg.png" group-title="",TV2000 (360p) [Not 24/7] -http://cld01ibi16.wz.tv2000.it/tv2000_alfa.m3u8 -#EXTINF:-1 tvg-id="TV2000.va" tvg-country="VA;IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0d/Logo_tv2000_2015.svg/1280px-Logo_tv2000_2015.svg.png" group-title="",TV2000 (360p) [Not 24/7] -http://mi1.wz.tv2000.it/tv2000_alfa.m3u8 diff --git a/channels/ve.m3u b/channels/ve.m3u deleted file mode 100644 index 091483a17..000000000 --- a/channels/ve.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="123TV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",123 TV [Timeout] -http://177.52.221.214:8000/play/a0ew/index.m3u8 -#EXTINF:-1 tvg-id="Canali.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mJXBuAZ.png" group-title="",Canal i (720p) [Not 24/7] -https://vcp.myplaytv.com/canali/canali/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalNubehTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="http://play.myplaytv.com/uploads/images/channel_27_1536900830_thumb.png" group-title="",Canal Nubeh TV (720p) [Not 24/7] -https://vcp.myplaytv.com/nubehtv/nubehtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Colombeia.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Colombeia [Timeout] -http://177.52.221.214:8000/play/a0co/index.m3u8 -#EXTINF:-1 tvg-id="Globovision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.postimg.cc/Dz3Wpqt8/Logo-de-globovision-desde-septiembre-2013-v2.png" group-title="",Globovision (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCfJtBtmhnIyfUB6RqXeImMw/live -#EXTINF:-1 tvg-id="Italianissimo.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ITALIANISSIMORADIO/picture?width=320&height=320" group-title="Music",Italianissimo (358p) [Not 24/7] -https://vcp.myplaytv.com/italianissimo/italianissimo/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTeleTuya.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaTeleTuya/picture?width=350&height=350" group-title="",La Tele Tuya (TLT) (404p) [Geo-blocked] -https://vcp.myplaytv.com/tlthd/tlthd/playlist.m3u8 -#EXTINF:-1 tvg-id="OxigenoTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IkHrVCL.jpg" group-title="Music",Oxigeno TV (360p) [Not 24/7] -https://vcp.myplaytv.com/oxigenotv/oxigenotv/playlist.m3u8 -#EXTINF:-1 tvg-id="PromarTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IkHrVCL.jpg" group-title="General",PromarTV (Yaracuy) (1080p) [Not 24/7] -http://vcp1.myplaytv.com:1935/promar/promar/playlist.m3u8 -#EXTINF:-1 tvg-id="RCR750.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Radio Caracas Radio 750 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5AA3XP4_pXIELctSsH_L7w/live -#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (1080p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (360p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/480p/playlist.m3u8 -#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (260p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/360p/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSUREnglish.ve" tvg-country="VE;US" tvg-language="English" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",TeleSUR English (1080p) [Not 24/7] -https://cdnenmain.telesur.ultrabase.net/mblivev3/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Televen.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/gt_televen_m.png" group-title="",Televen (404p) [Not 24/7] -https://cloud.streamingconnect.tv:455/televen/televenweb.m3u8 -#EXTINF:-1 tvg-id="TelevisoradeOriente.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Televisora de Oriente (480p) [Not 24/7] -http://vcp1.myplaytv.com:1935/tvo/tvo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVFamilia.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ixIePRp.png" group-title="",TV Familia (270p) -https://cdn01.yowi.tv/KPFPGJU8A6/master.m3u8 -#EXTINF:-1 tvg-id="TVVenezuela.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",TV Venezuela (480p) [Not 24/7] -https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ValeTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://www.lyngsat-stream.com/logo/tv/vv/vale_tv_ve.png" group-title="",Vale TV (480p) [Not 24/7] -http://vcp1.myplaytv.com/valetv/valetv/playlist.m3u8 -#EXTINF:-1 tvg-id="VePlus.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Ve Plus (480p) [Not 24/7] -http://190.122.96.187:8888/http/006 -#EXTINF:-1 tvg-id="Venevision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/219.png" group-title="",Venevision [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/venevisionweb/live -#EXTINF:-1 tvg-id="VenezolanadeTelevision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Venezolana de Televisión [Timeout] -http://177.52.221.214:8000/play/a0cj/index.m3u8 -#EXTINF:-1 tvg-id="VepacoTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Vepaco TV (486p) [Not 24/7] -http://vcp1.myplaytv.com:1935/tvepaco/tvepaco/playlist.m3u8 -#EXTINF:-1 tvg-id="VPItv.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vpitv/picture?width=320&height=320" group-title="News",VPItv (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vpitv diff --git a/channels/vn.m3u b/channels/vn.m3u deleted file mode 100644 index bf609b132..000000000 --- a/channels/vn.m3u +++ /dev/null @@ -1,103 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AirTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Air TV (720p) -https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="BenTre.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTFGIGk4MpV-7eFJWaeVPefzFSx8joT2yJJ76FmIkBntiQBBmov" group-title="",Bến Tre (720p) [Timeout] -http://113.163.94.245/hls-live/livepkgr/_definst_/liveevent/thbt.m3u8 -#EXTINF:-1 tvg-id="BrianTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Brian TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://brt.vn/common/v2/images/Banner150219.png" group-title="",BRT (360p) -http://113.163.216.23:1935/live/tv2.stream_480p/playlist.m3u8 -#EXTINF:-1 tvg-id="CaMauTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/gWc8xVD.jpg" group-title="",Cà Mau TV (720p) [Geo-blocked] -http://tv.ctvcamau.vn/live/tv/tv.m3u8 -#EXTINF:-1 tvg-id="DaNangTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://danangtv.vn/images/drt1.png" group-title="",Da Nang TV1 (1080p) [Not 24/7] -http://drtdnglive.e49a7c38.cdnviet.com/livedrt1/chunklist.m3u8 -#EXTINF:-1 tvg-id="DaNangTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/9I4gX5Y.png" group-title="",Da Nang TV2 (1080p) [Not 24/7] -http://drtdnglive.e49a7c38.cdnviet.com/livestream/chunklist.m3u8 -#EXTINF:-1 tvg-id="DaoLaneXang.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Dao Lane Xang (720p) -https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DhammasaphaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Dhammasapha TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DongNai1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Đồng Nai 1 (360p) [Not 24/7] -http://118.107.85.4:1935/live/smil:DNTV1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DongNai2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Đồng Nai 2 (360p) [Not 24/7] -http://118.107.85.4:1935/live/smil:DNTV2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GiaLaiTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Gia Lai TV (486p) -http://113.161.25.3:8134/hls/gialaitv/gialaitv.m3u8 -#EXTINF:-1 tvg-id="GoodIdeaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Good Idea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HBTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/BnFWgS7.png" group-title="",HBTV (406p) [Not 24/7] -http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongStarTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Hmong Star TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongUSATV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HmongUSA TV (360p) -https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HoungFa.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Houng Fa (720p) -https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",ISTV (480p) -https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KhmerTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",KhmerTV (1080p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/khmertv2020.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KhomsanhTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Khomsanh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KienGiangTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/HqYi1Dw.png" group-title="",KienGiangTV (1080p) [Geo-blocked] -http://tv.kgtv.vn/live/kgtv/kgtv.m3u8 -#EXTINF:-1 tvg-id="KienGiangTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/vzaqu80.png" group-title="",KienGiangTV1 (1080p) [Geo-blocked] -http://tv.kgtv.vn/live/kgtv1/kgtv1.m3u8 -#EXTINF:-1 tvg-id="LA34LongAn.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://goo.gl/DNboVb" group-title="",LA34 Long An (720p) -http://113.161.229.13/hls-live/livepkgr/_definst_/liveevent/tv.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV1.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Lao Champa TV 1 (720p) -https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Champa TV 2 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV3.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Champa TV 3 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Heritage Foundation TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoMuslimTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Muslim TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoNetTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Net TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoSVTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao SV TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaosPlanetTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Laos Planet TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LookThoongTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Look Thoong TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LSTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",LS TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NATTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",NAT TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NingTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Ning TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OhMuangLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Oh Muang Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OyLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Oy Lao TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PNTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",PNTV (720p) -https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PTPPhuYen.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://goo.gl/tDSGow" group-title="",PTP Phú Yên (432p) [Not 24/7] -http://113.161.4.48:8080/phuyen/tv.m3u8 -#EXTINF:-1 tvg-id="QRT.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://uphinhnhanh.com/images/2019/01/31/IMG_20190131_191516.jpg" group-title="",QRT (404p) [Not 24/7] -http://113.161.6.157:8081/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="QuocHoi.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://www.quochoitv.vn/images/logo-qhtv.png" group-title="",Quốc Hội (720p) -http://113.164.225.140:1935/live/quochoitvlive.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SupremeMasterTV.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Supreme Master TV (720p) -https://lbs-us1.suprememastertv.com/720p.m3u8 -#EXTINF:-1 tvg-id="TeaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Tea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV2.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Tea TV 2 (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TienGiang.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://tv.vnn.vn/Images/tv/tiengiang%20.png" group-title="",Tien Giang (720p) -http://thtg.vn:8001/thtg.m3u8 -#EXTINF:-1 tvg-id="UniquelyThai.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Uniquely Thai (720p) -https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VajtswvTxojlus.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vajtswv Txojlus (720p) -https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VanphenhTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vanphenh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VatiLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vati Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VietMyTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://s30.postimg.org/s0aco3hzl/VIET_MY.png" group-title="",Việt Mỹ TV (480p) [Not 24/7] -http://68.235.37.11:1935/vietmagazine/vietmagazine/playlist.m3u8 -#EXTINF:-1 tvg-id="VITV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://tduc.tk/logo/vitv.png" group-title="",VITV (180p) -http://210.86.230.202:8134/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 diff --git a/channels/vn_fptplay.m3u b/channels/vn_fptplay.m3u deleted file mode 100644 index 9efb2051e..000000000 --- a/channels/vn_fptplay.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="VN" tvg-language="English;Vietnamese" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Movies",AXN East Asia (Vietnamese) (1080p) [Geo-blocked] -https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/AXN-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Channel V (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CHANNELV-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="FBNC.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",FBNC (270p) [Offline] -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdc/fbnchd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxMoviesAsia.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/vs51MBW.png" group-title="Movies",Fox Movies Asia (Vietnamese) (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/FOXMOVIES-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVTheThao.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTV Thể Thao (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV-THETHAO-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv1a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV1 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdb/htv1_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTV2 (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV2-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV3.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv3a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV3 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdb/htv3_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV4.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv4a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV4 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdb/htv4_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCCaNhac.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Ca Nhạc (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-CANHAC-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCDuLichCuocSong.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Du Lịch Cuộc Sống (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-DULICH-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCGiaDinh.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Gia Đình (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-GIADINH-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCPhim.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Phim (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHIM-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCPhuNu.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Phụ Nữ (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHUNU-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCThuanViet.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Thuần Việt (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIET-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCThuanViet.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Thuần Việt (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIETHD-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCPlus.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC+ (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PLUS-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="SkyShop.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",SkyShop (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sda/skymart_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VinhLong1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vĩnh Long 1 [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL1-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="VinhLong2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vĩnh Long 2 [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL2-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC4.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC4 (720p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdc/vtc4_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC4Yeah1Family.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://upload.wikimedia.org/wikipedia/vi/archive/e/ef/20130331171011%21Yeah1family.png" group-title="",VTC4 Yeah1 Family (720p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/VTC4-SD-ABR/HTV-ABR/VTC4-SD-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC5.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC5 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdb/vtc5_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC6.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC6 (576p) -#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 -https://livecdn.fptplay.net/sdb/vtc6_hls.smil/playlist.m3u8 diff --git a/channels/xk.m3u b/channels/xk.m3u deleted file mode 100644 index def428a5a..000000000 --- a/channels/xk.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArtaNews.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/V4ZTL3h.png" group-title="News",Arta News (720p) [Not 24/7] -https://samiu.gjirafa.com/live/DpTlD159VIIRWtzFOvUI70nftnyosgUE/yt1q1x.m3u8 -#EXTINF:-1 tvg-id="RTK1.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/LTkYnzl.png" group-title="",RTK 1 (720p) [Not 24/7] -http://stream1.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK1.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/LTkYnzl.png" group-title="",RTK 1 (720p) [Not 24/7] -http://stream2.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK2.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="http://www.rtklive.com/sq/livestream/img/rtk2.png" group-title="",RTK 2 (720p) -http://stream1.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK2.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="http://www.rtklive.com/sq/livestream/img/rtk2.png" group-title="",RTK 2 (720p) -http://stream2.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK3.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RQI1pBn.png" group-title="",RTK 3 (720p) -http://stream1.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK3.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RQI1pBn.png" group-title="",RTK 3 (720p) -http://stream2.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK4.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/H4EWXF3.png" group-title="",RTK 4 (720p) [Not 24/7] -http://stream1.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK4.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/H4EWXF3.png" group-title="",RTK 4 (720p) [Not 24/7] -http://stream2.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelingoTV.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/PS0j4ic.png" group-title="Travel",Travelingo TV (1080p) [Not 24/7] -https://abdyli.gjirafa.com/live/r6e3JjXjSjkUCsA7CmdhL8lzM4fGXGz4/ytkytq.m3u8 -#EXTINF:-1 tvg-id="ZeriTV.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UVFCGWS.jpg" group-title="",Zeri TV (360p) [Offline] -https://abdyli.gjirafa.com/live/ZvTsY6MH7RPPvXuUDjRjcEYkK7yryigW/ytkt1k.m3u8 diff --git a/channels/ye.m3u b/channels/ye.m3u deleted file mode 100644 index 2cffb0979..000000000 --- a/channels/ye.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdenTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KJTEVbf.png" group-title="General",Aden TV [Offline] -https://master.starmena-cloud.com/hls/aden.m3u8 -#EXTINF:-1 tvg-id="AICTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="General",AIC TV (576p) [Timeout] -http://195.35.85.115:8000/play/a0fr -#EXTINF:-1 tvg-id="AlMahrah.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/aa/almahrah-tv-ye.png" group-title="General",Al Mahrah (576p) [Offline] -http://82.212.74.99:8000/live/hls/8173.m3u8 -#EXTINF:-1 tvg-id="AlMasirah.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/poHvbNV.jpg" group-title="News",Al Masirah (720p) [Not 24/7] -https://svs.itworkscdn.net/almasiralive/almasira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMasirahMubacher.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/0xHb3XM.jpg" group-title="News",Al Masirah Mubacher (642p) [Not 24/7] -https://svs.itworkscdn.net/almasiramubacherlive/almasira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMasirahTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Al Masirah TV (720p) [Not 24/7] -https://svs.itworkscdn.net/almasiralive/almasira/playlist.m3u8 -#EXTINF:-1 tvg-id="AlerthAlnabawi.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/aa/alerth-alnabawi-channel-jo.png" group-title="Religious",Alerth Alnabawi (576p) [Not 24/7] -http://82.212.74.2:8000/live/7307.m3u8 -#EXTINF:-1 tvg-id="AlghadAlmushreq.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.alghadye.com/wp-content/uploads/2018/07/image1.png" group-title="News",Alghad Almushreq (576p) -http://82.212.74.3:8000/live/7512.m3u8 -#EXTINF:-1 tvg-id="AlyamanShabab.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Alyaman Shabab (1080p) [Not 24/7] -https://master.starmena-cloud.com/hls/yemenshabab.m3u8 -#EXTINF:-1 tvg-id="BelqeesTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Belqees TV (1080p) [Offline] -https://svs.itworkscdn.net/itwlive/itw3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Hadramout.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Hadramout [Offline] -https://linkastream.co/headless?url=https://www.youtube.com/c/hadramouttv/live -#EXTINF:-1 tvg-id="SuhailTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="News",Suhail TV (576p) -http://82.212.74.98:8000/live/hls/7726.m3u8 diff --git a/channels/zm.m3u b/channels/zm.m3u deleted file mode 100644 index 5dd661f9d..000000000 --- a/channels/zm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV1.zm" tvg-country="ZM" tvg-language="English" tvg-logo="https://www.znbc.co.zm/wp-content/uploads/2018/10/cropped-ZNBC-logo-192x192.png" group-title="",TV1 (480p) [Not 24/7] -https://dcunilive159-lh.akamaihd.net/i/dclive_1@1013574/master.m3u8 -#EXTINF:-1 tvg-id="TV4.zm" tvg-country="ZM" tvg-language="English" tvg-logo="https://www.znbc.co.zm/wp-content/uploads/2018/10/cropped-ZNBC-logo-192x192.png" group-title="",TV4 (576p) [Not 24/7] -https://dcunilive258-lh.akamaihd.net/i/dclive_1@348579/master.m3u8 diff --git a/scripts/commands/database/create.js b/scripts/commands/database/create.js index e0cfb6ec5..ec9e9c558 100644 --- a/scripts/commands/database/create.js +++ b/scripts/commands/database/create.js @@ -9,7 +9,7 @@ const options = program parser.parseNumber, 256 ) - .option('--input-dir ', 'Set path to input directory', 'channels') + .option('--input-dir ', 'Set path to input directory', 'streams') .parse(process.argv) .opts() diff --git a/scripts/data/blocklist.json b/scripts/data/blocklist.json index 35d50e279..6bff74eba 100644 --- a/scripts/data/blocklist.json +++ b/scripts/data/blocklist.json @@ -1 +1 @@ -[{"channel":"FoxSports1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Arena4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AsianFoodNetwork.sg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AstroSuperSport.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport2.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport3.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport4.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Coahuila.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7MexicoCity.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7NuevoLeon.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Tamaulipas.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports7.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports8.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsCanada.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsenEspanol.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsHaber.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax10France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax7France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax8France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax9France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMaxMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsNews.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsUSA.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport1.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport5.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportFrance.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportPolska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportReunion.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportsMyanmar.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CookingChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"CookingChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DAZN1Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Italia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1PlusItalia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN3Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN4Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport2.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport3.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport4Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiscoveryAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAtlanticoSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBulgaria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCentralEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChinaHotels.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFinland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIberia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItaliaPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSrbija.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryCivilization.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryenEspanol.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamily.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilyAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistory.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoryPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsColombia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifeChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScience.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceMiddleEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoverySciencePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTheater.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryUltra.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryVelocity.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryWorldBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkUSA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DKiss.es","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ElevenProLeague1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenProLeague1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Taiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports5Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports6Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSportsUSA.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenTaiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Africa.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Alternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Australia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Caribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Colombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2US.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Venezuela.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2West.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Norte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN4Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAfrica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBasesLoaded.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBuzzerBeater.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCaribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicCanada.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicUSA.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra3.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra4.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra5.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra6.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra7.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra8.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDeportes.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDos.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDosMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNGoalLine.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNInternational.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNmosaico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPacificRim.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPlus.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPolo.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNU.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUS.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUSAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Eurosport1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Finland.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Germany.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Nordic.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Norge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2NorthEast.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Xtra.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD5.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD6.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD7.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD8.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD9.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport4K.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportAsia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportIndia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportNorge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eve.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Fatafeat.eg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FEM.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FlowSports.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Focus.it","ref":"https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf"},{"channel":"FoodNetworkAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEMEA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodTV.kr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoxSports1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports1Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Malaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports503.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports505.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports506.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsArgentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsAsia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsColombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoNorte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoSur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsHDLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMalaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMore.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsChannel.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPhilippines.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPremium.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsRacing.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsVietnam.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Frisbee.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Futbol.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Giallo.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GolfTV.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GTVSportsPlus.gh","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"HGTVArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVSouthAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNEurope.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNExtra.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNUSA.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"K2.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"KDOCDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KOFYDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KUBEDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"LivingChannel.nz","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"LookSport.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport2.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport3.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSportPlus.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MagnoliaNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"MagnoliaNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"Match.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchArena.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol1.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol2.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol3.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchIgra.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPlaneta.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPremier.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchStrana.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV1.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV2.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MotorTrend.it","ref":"https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf"},{"channel":"Motortrend.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"MovistarLigadeCampeones.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones1.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones2.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones3.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones4.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones5.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones6.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones7.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones8.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport1.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport2.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport3.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport4.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports2.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports24HD.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports4.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports5.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Nove.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"One.il","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"OprahWinfreyNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"PPTVHD36.th","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Quest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"SABCSport.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports1Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports2Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsPlusGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsUkraine.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport13.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport14.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport24.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7BeInSports.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportArena.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesligaUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportCollection.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportFootball.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportMotoGP.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNBA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports16.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports21.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports24.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports3.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports34.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports6.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports8.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports9.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive1.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive2.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive3.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive4.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive5.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive6.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive7.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive8.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive9.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsArena.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsBoxOffice.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportSerieA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMix.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUno.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkyTG24.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24Canale50.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24PrimoPiano.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SonyTen1.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen1HD.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen2.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen3.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV1.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV2.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1CrnaGora.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Hrvatska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub3.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub5.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub6.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubEsports.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubGolf.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubHD.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubPolska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubStart.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNet360.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetCanucks.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetEast.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetFlames.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOilers.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOne.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntario.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioOttawa.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioToronto.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetPacific.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetVancouver.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWest.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWorld.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV1.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV2.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV3.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarHubTV.sg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarTimesTVMocambique.mz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports1.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports2.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports3.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsArena.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsFocus.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsLife.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsPremium.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport4.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport5.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport6.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport7.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportAction.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitz.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportCSN.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootball.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlus.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstand.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo360.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT5.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT6.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT7.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT8.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPlay.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPSL.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor2.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor3.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor4.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TLCAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBalkan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCGermany.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TSN1.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN2.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN3.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN4.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN5.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN6.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN7.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN8.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TTV.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TV3Sport.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVN.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24BiS.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN7.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNAsia.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVNFabula.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNorge.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNStyle.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNTurbo.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVVarzish.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Vox.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"VSport1Norge.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Sverige.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport3.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportExtra.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportFootball.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive1.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive2.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive3.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive4.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive5.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlus.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlusSuomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPremium.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUltraHD.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUrheilu.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VTVCab7.vn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"WDPNDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WNWTLD1.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WRJKLP3.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"Xee.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"XTVN.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"}] \ No newline at end of file +[{"channel":"AnimalPlanetAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AnimalPlanetWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Arena4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AsianFoodNetwork.sg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"AstroSuperSport.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport2.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport3.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"AstroSuperSport4.my","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Coahuila.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7MexicoCity.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7NuevoLeon.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Azteca7Tamaulipas.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2HongKong.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Indonesia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Thailand.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Australia.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports3Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports4Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports7.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSports8.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsCanada.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsenEspanol.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsEnglish3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsFrench3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsHaber.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax10France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax1Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax2Turkiye.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax3France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax4France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax5France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax6France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax7France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax8France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMax9France.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsMaxMalaysiaSingapore.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsNews.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsPremium3.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsUSA.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra1.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"BeInSportsXtra2.qa","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport1.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport2Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport3Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport4Polska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSport5.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportFrance.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportPolska.pl","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportReunion.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CanalPlusSportsMyanmar.fr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"CookingChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"CookingChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DAZN1Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1Italia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN1PlusItalia.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Deutschland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN2Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN3Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DAZN4Espana.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport2.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiemaSport3.bg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport1Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport2Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Hungary.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport3Slovakia.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DigiSport4Romania.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"DiscoveryAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAtlanticoSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelBulgaria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelCentralEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelChinaHotels.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFinland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIberia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelItaliaPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelJapan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelMiddleEastAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSrbija.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryCivilization.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryenEspanol.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamily.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryFamilyAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHDWorldLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistory.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHistoryPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryHomeHealthSur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsChile.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsColombia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryKidsSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifeChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryLifePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScience.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceMiddleEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoverySciencePolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryScienceUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTheater.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAmericaLatina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryTurboUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryUltra.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryVelocity.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DiscoveryWorldBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkUSA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DIYNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DKiss.es","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"DMAXUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ElevenProLeague1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenProLeague1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1FR.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports1Taiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2NL.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports2Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports3Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Polska.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports4Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports5Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSports6Portugal.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenSportsUSA.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ElevenTaiwan.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Africa.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Alternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Australia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Caribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Colombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2US.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2Venezuela.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN2West.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3AmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Andino.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Norte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN3Sur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPN4Nederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAfrica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBasesLoaded.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNBuzzerBeater.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCaribbean.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicCanada.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNClassicUSA.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra3.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra4.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra5.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra6.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra7.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNCollegeExtra8.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDeportes.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDos.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNDosMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraAmericaLatina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNExtraBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNGoalLine.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNInternational.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNmosaico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNederland.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNNews.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPacificRim.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPlus.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNPolo.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNU.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUS.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUSAlternate.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNUWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"ESPNWest.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Eurosport1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Finland.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Germany.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Nordic.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Norge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport1UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Danmark.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2France.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Italia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2NorthEast.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Polska.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Romania.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Rossiya.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Sverige.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2UK.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport2Xtra.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD5.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD6.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD7.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD8.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport360HD9.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eurosport4K.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportAsia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportIndia.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportNorge.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss1.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss2.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss3.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"EurosportPluss4.fr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Eve.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Fatafeat.eg","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FEM.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FlowSports.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Focus.it","ref":"https://github.zendesk.com/attachments/token/FL9J24PDKdm0zzJJ3tKyXonmA/?name=2022-02-01-nagra.rtf"},{"channel":"FoodNetworkAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkEMEA.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoodTV.kr","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"FoxSports1.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports1Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Brasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Chile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Malaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports2Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Argentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Asia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3LatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports3Mexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports503.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports505.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSports506.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsArgentina.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsAsia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsBrasil.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsChile.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsColombia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoNorte.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsConoSur.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsHDLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsLatinAmerica.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMalaysia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMexico.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsMore.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsAustralia.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsNewsChannel.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPhilippines.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsPremium.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsRacing.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"FoxSportsVietnam.us","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Frisbee.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"Futbol.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Giallo.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GolfTV.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"GTVSportsPlus.gh","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"HGTVArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVDeutschland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVSouthAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"HGTVWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryFrance.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryRossiya.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySur.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoverySverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"InvestigationDiscoveryWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNEurope.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNExtra.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"ITVNUSA.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"K2.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"KDOCDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KOFYDT6.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"KUBEDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"LivingChannel.nz","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"LookSport.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport2.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSport3.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"LookSportPlus.ro","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MagnoliaNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"MagnoliaNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/5994"},{"channel":"Match.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchArena.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol1.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol2.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchFutbol3.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchIgra.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPlaneta.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchPremier.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MatchStrana.ru","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV1.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MolaTV2.id","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MotorTrend.it","ref":"https://github.zendesk.com/attachments/token/r5abHyVOYbswCkNSmo67CP0Px/?name=2022-02-01-nagra-2.rtf"},{"channel":"Motortrend.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"MovistarLigadeCampeones.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones1.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones2.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones3.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones4.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones5.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones6.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones7.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"MovistarLigadeCampeones8.es","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport1.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport2.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport3.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSport4.cz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports2.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Novasports24HD.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports4.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovaSports5.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra1.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"NovasportsExtra3.gr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Nove.it","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"One.il","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"OprahWinfreyNetworkCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"OprahWinfreyNetworkWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"PPTVHD36.th","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Quest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestRedUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"QuestUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"RealTimeItalia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"SABCSport.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports1Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSports2Evraziya.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsPlusGeorgia.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SetantaSportsUkraine.ie","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport1.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport10.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport11.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport12.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport13.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport14.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport2.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport24.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport3.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport4.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport5.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport6.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport7BeInSports.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport8.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySport9.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportArena.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportAustria4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga10.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga2.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga3.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga4.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga5.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga6.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga7.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga8.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesliga9.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportBundesligaUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportCollection.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportF1.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportFootball.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportMotoGP.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNBA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportNews.nz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports1.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports16.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.au","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports2.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports21.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports24.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports3.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports34.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports6.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports8.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySports9.mx","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive1.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive2.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive3.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive4.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive5.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive6.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive7.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive8.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsActive9.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsArena.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsBoxOffice.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportSerieA.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsFootballUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMainEventUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsMix.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsinPubs.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsIreland.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportsNewsUK.uk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUHD.de","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkySportUno.it","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SkyTG24.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24Canale50.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SkyTG24PrimoPiano.it","ref":"https://github.com/iptv-org/iptv/pull/2294"},{"channel":"SonyTen1.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen1HD.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen2.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SonyTen3.in","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV1.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SpilerTV2.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1CrnaGora.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Hrvatska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub1Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Slovenija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub2Srbija.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub3.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub4.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub5.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlub6.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubEsports.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubGolf.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubHD.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubPolska.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportKlubStart.hu","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNet360.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetCanucks.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetEast.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetFlames.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOilers.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOne.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntario.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioOttawa.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetOntarioToronto.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetPacific.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetVancouver.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWest.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportsNetWorld.ca","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV1.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV2.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SportTV3.si","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarHubTV.sg","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"StarTimesTVMocambique.mz","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports1.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports2.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSports3.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsArena.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsFocus.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsLife.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"STSportsPremium.cn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport4.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport5.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport6.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSport7.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportAction.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportActionPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitz.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportBlitzPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportCSN.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootball.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlus.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPlusPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportFootballPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstand.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandAfrica.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportGrandstandPortuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova1.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova2.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportKosova3.al","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportMaximo360.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT5.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT6.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT7.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportOTT8.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPlay.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportPSL.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportSelect2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety1Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety2Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety3Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Africa.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"SuperSportVariety4Portuguese.za","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor2.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor3.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TivibuSpor4.tr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TLCAfrica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArabia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCArgentina.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustralia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustraliaPlus2.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCAustria.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBalkan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCBrasil.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCCanada.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCDanmark.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCGermany.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHDLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCHungary.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIndia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCIreland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCLatinoamerica.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCMexico.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNederland.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNewZealand.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCNorge.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPanRegional.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPhilippines.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRomania.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCRussia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSoutheastAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCSverige.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTaiwan.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCTurkiye.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUK.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCUKPlus1.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TLCWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannel.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelAsia.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEast.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelEurope.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelPolska.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TravelChannelWest.us","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TSN1.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN2.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN3.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN4.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN5.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN6.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN7.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TSN8.mt","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TTV.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TV3Sport.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVN.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN24BiS.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVN7.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNAsia.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"TVNFabula.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNorge.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNStyle.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVNTurbo.pl","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"TVVarzish.tj","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"Vox.no","ref":"https://github.com/iptv-org/iptv/issues/1831"},{"channel":"VSport1Norge.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport1Sverige.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport2Suomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSport3.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportExtra.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportFootball.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive1.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive2.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive3.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive4.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportLive5.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlus.no","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPlusSuomi.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportPremium.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUltraHD.se","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VSportUrheilu.fi","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"VTVCab7.vn","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"WDPNDT7.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WNWTLD1.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"WRJKLP3.us","ref":"https://github.zendesk.com/attachments/token/qCOIlhjNbuhARY64ffpnzv9Ef/?name=2022-01-06-localnow.rtf"},{"channel":"Xee.dk","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"},{"channel":"XTVN.kr","ref":"https://github.com/github/dmca/blob/master/2020/09/2020-09-16-dfl.md"}] \ No newline at end of file diff --git a/streams/ad.m3u b/streams/ad.m3u new file mode 100644 index 000000000..12734ba1c --- /dev/null +++ b/streams/ad.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ATV.ad",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/streams/ae.m3u b/streams/ae.m3u new file mode 100644 index 000000000..86ff907ab --- /dev/null +++ b/streams/ae.m3u @@ -0,0 +1,193 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3eeshAlAanTV.ae",3eesh Al Aan TV (720p) [Timeout] +https://streaming.3eeshalaan.net/AAAFinalFeed/AlAanFeed_live.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiAloula.ae",Abu Dhabi Aloula (1080p) +https://admdn2.cdn.mangomolo.com/adtv/smil:adtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiDrama.ae",Abu Dhabi Drama (1080p) [Offline] +https://admdn5.cdn.mangomolo.com/drama/smil:drama.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiEmirates.ae",Abu Dhabi Emirates (1080p) +https://admdn3.cdn.mangomolo.com/emarat/smil:emarat.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports1.ae",Abu Dhabi Sports 1 (1080p) +https://admdn1.cdn.mangomolo.com/adsports1/smil:adsports1.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports2.ae",Abu Dhabi Sports 2 (1080p) +https://admdn5.cdn.mangomolo.com/adsports2/smil:adsports2.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports3.ae",Abu Dhabi Sports 3 (1080p) +https://admdn3.cdn.mangomolo.com/adsports3/smil:adsports3.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports4.ae",Abu Dhabi Sports 4 (1080p) [Geo-blocked] +https://admdn4ta.cdn.mgmlcdn.com/adsports4/smil:adsports4.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Ajman.ae",Ajman (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/emirates/ajman +#EXTINF:-1 tvg-id="AlAan.ae",Al Aan (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x74wje5 +#EXTINF:-1 tvg-id="",Al Arabiya (1080p) +https://live.alarabiya.net/alarabiapublish/alarabiya.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Al Arabiya (1080p) +https://shls-alarabiya-prod-dub.shahid.net/out/v1/f5f319206ed740f9a831f2097c2ead23/index.m3u8 +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Arabiya Al Hadath (1080p) [Not 24/7] +https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlDafrahTV.ae",Al Dafrah TV (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/aldafrah +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Hadath TV (1080p) +https://shls-hadath-prod-dub.shahid.net/out/v1/0e1a306399c346faac4226aa0858f99b/index.m3u8 +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Hadath TV (1080p) [Not 24/7] +https://live.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQamarTV.ae",Al Qamar TV (360p) +https://cdn5.iqsat.net/iq/8c17d37e0f5c88b1e9c7e1f8f82bc980.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSharqiyaMinKabla.ae",Al Sharqiya Min Kabla (1080p) +https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlWoustaTV.ae",Al Wousta TV (1080p) +https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlYaumTV.ae",Al Yaum TV (720p) +https://ikomg1.s.llnwi.net/alyaumtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Asharq.ae",Asharq (1080p) +https://bcovlive-a.akamaihd.net/0b75ef0a49e24704a4ca023d3a82c2df/ap-south-1/6203311941001/playlist.m3u8 +#EXTINF:-1 tvg-id="BeeMovies.ae",Bee Movies (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCuaMJTqQ_W7qztqZ_zyErJg/live +#EXTINF:-1 tvg-id="BeeTheater.ae",Bee Theater (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC32M9DWf0zgMhBYGd_MOiIw/live +#EXTINF:-1 tvg-id="CitrussTV.ae",Citruss TV (720p) [Geo-blocked] +https://citrusstv.akamaized.net/hls/live/687285/CTV/index.m3u8 +#EXTINF:-1 tvg-id="DubaiOne.ae",Dubai One (304p) +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="DubaiOne.ae",Dubai One (1080p) +http://dminnvll.cdn.mangomolo.com/dubaione/smil:dubaione.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiRacing2.ae",Dubai Racing 2 (1080p) +https://dmithrvll.cdn.mangomolo.com/dubairacing/smil:dubairacing.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiRacing3.ae",Dubai Racing 3 (240p) +https://dmithrvll.cdn.mangomolo.com/dubaimubasher/smil:dubaimubasher.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiRacing.ae",Dubai Racing (1080p) +https://dmisvthvll.cdn.mangomolo.com/events/smil:events.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiSports1.ae",Dubai Sports 1 (1080p) +https://dmitnthvll.cdn.mangomolo.com/dubaisports/smil:dubaisports.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiSports2.ae",Dubai Sports 2 (1080p) +https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd/smil:dubaisportshd.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiSports3.ae",Dubai Sports 3 (1080p) [Not 24/7] +https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd5/smil:dubaisportshd5.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiTV.ae",Dubai TV (1080p) +https://dmisxthvll.cdn.mgmlcdn.com/dubaitvht/smil:dubaitv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiZaman.ae",Dubai Zaman (400p) [Not 24/7] +https://dmiffthvll.cdn.mangomolo.com/dubaizaman/smil:dubaizaman.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EXPO2020.ae",EXPO 2020 (1080p) +https://shls-expotv-prod-dub.shahid.net/out/v1/d01b0b3888284878b8898017895a5922/index.m3u8 +#EXTINF:-1 tvg-id="HawasTV.ae",Hawas TV (480p) +https://jmc-live.ercdn.net/hawastvhd/hawastvhd.m3u8 +#EXTINF:-1 tvg-id="KhyberMiddleEastTV.ae",Khyber Middle East TV (720p) [Not 24/7] +https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 +#EXTINF:-1 tvg-id="KhyberNewsTV.ae",Khyber News TV (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 +#EXTINF:-1 tvg-id="MajidTV.ae",Majid TV (1080p) [Offline] +https://admdn4.cdn.mangomolo.com/majid/smil:majid.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149009_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] +https://shls-mbc1ksa-ak.akamaized.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 +#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] +https://shls-mbc1ksa-prod-dub.shahid.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 +#EXTINF:-1 tvg-id="MBC1USA.ae",MBC 1 USA (1080p) +https://shls-mbc1-usa-prod.shahid.net/out/v1/1b559e832c3f40f996c1984245b3b24b/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (576p) +http://93.184.1.247/MBC2/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (720p) [Timeout] +https://blogs.livehdchanel.live/mbc-222/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149010_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (1080p) [Offline] +https://shls-mbc2-prod-dub.shahid.net/out/v1/b4befe19798745fe986f5a9bfba62126/index.m3u8 +#EXTINF:-1 tvg-id="MBC3.ae",MBC 3 (1080p) +https://shls-mbc3-prod-dub.shahid.net/out/v1/d5bbe570e1514d3d9a142657d33d85e6/index.m3u8 +#EXTINF:-1 tvg-id="MBC3.ae",MBC 3 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149011_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC3EUR.ae",MBC 3 EUR (1080p) +https://shls-mbc3-eur-prod-dub.shahid.net/out/v1/fce09dd6a967431a871efb3b8dec9f82/index.m3u8 +#EXTINF:-1 tvg-id="MBC3USA.ae",MBC 3 USA (1080p) +https://shls-mbc3-usa-prod.shahid.net/out/v1/f7584f50d13c4c01b0fac2be04c61c7e/index.m3u8 +#EXTINF:-1 tvg-id="MBC4.ae",MBC 4 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149012_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC4.ae",MBC 4 (1080p) [Geo-blocked] +https://shls-mbc4-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/index.m3u8 +#EXTINF:-1 tvg-id="MBC5.ae",MBC 5 (1080p) +https://shls-mbc5-prod-dub.shahid.net/out/v1/2720564b6a4641658fdfb6884b160da2/index.m3u8 +#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (576p) [Timeout] +https://blogs.livehdchanel.live/action2/index.m3u8 +#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149013_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (1080p) [Geo-blocked] +https://shls-mbcaction-prod-dub.shahid.net/out/v1/68dd761538e5460096c42422199d050b/index.m3u8 +#EXTINF:-1 tvg-id="MBCBollywood.ae",MBC Bollywood (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149014_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCBollywood.ae",MBC Bollywood (1080p) [Geo-blocked] +https://shls-mbcbollywood-prod-dub.shahid.net/out/v1/a79c9d7ef2a64a54a64d5c4567b3462a/index.m3u8 +#EXTINF:-1 tvg-id="MBCDrama.ae",MBC Drama KSA (1080p) +https://shls-mbcdramaksa-prod-dub.shahid.net/out/v1/ce0f0762d89e4394a856c5fd13e43645/index.m3u8 +#EXTINF:-1 tvg-id="M.ae",MBC Drama USA (1080p) +https://shls-mbc-drama-usa-prod.shahid.net/out/v1/efb67fc5c04a40778cd5c21e2e7ea884/index.m3u8 +#EXTINF:-1 tvg-id="MBCFM.ae",MBC FM (1080p) +https://mbcfm-riyadh-prod-dub.shahid.net/out/v1/69c8a03f507e422f99cf5c07291c9e3a/index.m3u8 +#EXTINF:-1 tvg-id="MBCIraq.ae",MBC Iraq (1080p) +https://shls-iraq-prod-dub.shahid.net/out/v1/c9bf1e87ea66478bb20bc5c93c9d41ea/index.m3u8 +#EXTINF:-1 tvg-id="MBCIraq.ae",MBC Iraq (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149018_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCEgypt.ae",MBC Masr 1 (1080p) [Geo-blocked] +https://shls-masr-prod-dub.shahid.net/out/v1/b7093401da27496797a8949de23f4578/index.m3u8 +#EXTINF:-1 tvg-id="MBCMasr1USA.ae",MBC Masr 1 USA (1080p) +https://shls-mbc-masr-usa-prod.shahid.net/out/v1/d4fded7d5df04b88b9ea1db61d00f095/index.m3u8 +#EXTINF:-1 tvg-id="MBCMasr2.ae",MBC Masr 2 (1080p) [Geo-blocked] +https://shls-masr2-prod-dub.shahid.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (576p) [Timeout] +https://blogs.livehdchanel.live/max/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149015_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Not 24/7] +https://shls-mbcmax-prod-dub.shahid.net/out/v1/13815a7cda864c249a88c38e66a2e653/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Offline] +http://93.184.1.247/MBC_MAX/index.m3u8 +#EXTINF:-1 tvg-id="MBCPersia.ae",MBC Persia (1080p) +https://shls-mbcpersia-prod-dub.shahid.net/out/v1/bdc7cd0d990e4c54808632a52c396946/index.m3u8 +#EXTINF:-1 tvg-id="MBCDramaPlus.ae",MBC Plus Drama (1080p) +https://shls-mbcplusdrama-prod-dub.shahid.net/out/v1/97ca0ce6fc6142f4b14c0a694af59eab/index.m3u8 +#EXTINF:-1 tvg-id="MBCDramaPlus.ae",MBC Plus Drama (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149016_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCVarietyPlus.ae",MBC Plus Variety (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149017_0.m3u8?session= +#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.ae",National Geographic Abu Dhabi (1080p) +https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NoorDubai.ae",Noor Dubai (576p) +https://dmiffthvll.cdn.mangomolo.com/noordubaitv/smil:noordubaitv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PeaceTVAlbanian.ae",Peace TV Albanian (360p) +http://82.114.67.178:8081/hls/PeaceTV.m3u8 +#EXTINF:-1 tvg-id="PeaceTVBangla.ae",Peace TV Bangla (720p) +http://199.223.252.162:8032/bangla_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVChinese.ae",Peace TV Chinese (720p) +http://199.223.252.162:8032/chinese_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVEnglish.ae",Peace TV English (1080p) +http://199.223.252.162:8032/english_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVUrdu.ae",Peace TV Urdu (1080p) +http://199.223.252.162:8032/urdu_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="",Sama Dubai (1080p) +https://dmieigthvll.cdn.mgmlcdn.com/samadubaiht/smil:samadubai.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Sharjah2.ae",Sharjah 2 (1080p) +https://svs.itworkscdn.net/smc2live/smc2tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SharjahRadioQuran.ae",Sharjah Radio Quran (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://youtube.com/channel/UCn8lMRYDANs_1yAL3iuw7_g/live +#EXTINF:-1 tvg-id="" status="online",Sharjah Sports TV (1080p) +https://svs.itworkscdn.net/smc4sportslive/smc4.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SharjahTV.ae",Sharjah TV (1080p) +https://svs.itworkscdn.net/smc1live/smc1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TowheedTV.ae",Towheed TV (720p) [Not 24/7] +http://51.210.199.1/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Wanasah.ae",Wanasah (1080p) +https://shls-wanasah-prod-dub.shahid.net/out/v1/c84ef3128e564b74a6a796e8b6287de6/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakAction.ae",Weyyak Action (1080p) +https://weyyak-live.akamaized.net/weyyak_action/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakDrama.ae",Weyyak Drama (720p) +https://weyyak-live.akamaized.net/weyyak_drama/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakMix.ae",Weyyak Mix (720p) +https://weyyak-live.akamaized.net/weyyak_mix/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakNawaem.ae",Weyyak Nawaem (720p) +https://weyyak-live.akamaized.net/weyyak_nawaem/index.m3u8 +#EXTINF:-1 tvg-id="Yas.ae",Yas (1080p) +https://admdn1.cdn.mangomolo.com/yastv/smil:yastv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAflam.ae",Zee Aflam (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_zee_aflam/index.m3u8 +#EXTINF:-1 tvg-id="ZeeAlwan.ae",Zee Alwan (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_zee_alwan/index.m3u8 diff --git a/streams/af.m3u b/streams/af.m3u new file mode 100644 index 000000000..97710d3cf --- /dev/null +++ b/streams/af.m3u @@ -0,0 +1,35 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArianaAfghanistanInternationalTV.af",Ariana Afghanistan International TV (720p) [Not 24/7] +http://iptv.arianaafgtv.com/ariana/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVNational.af",Ariana TV National (720p) [Not 24/7] +https://d10rltuy0iweup.cloudfront.net/ATNNAT/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVUS.af",Ariana TV US (720p) [Not 24/7] +https://d2g7v53450s2i2.cloudfront.net/ATNUS/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVUS.af",Ariana TV US (Delayed stream) (720p) [Not 24/7] +https://d2g7v53450s2i2.cloudfront.net/ATNUS/streamdelay/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNNews.af",ATN News (360p) [Not 24/7] +https://d10rltuy0iweup.cloudfront.net/ATNNEWS/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaharTV.af",Bahar TV (720p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/bahartv/bahartv/playlist.m3u8 +#EXTINF:-1 tvg-id="BaryaTV.af",Barya TV (720p) [Not 24/7] +http://51.210.199.56/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HelalTV.af",Helal TV (720p) [Not 24/7] +http://51.210.199.54/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HewadTV.af",Hewad TV (720p) [Not 24/7] +http://51.210.199.58/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ImanTV.af",Iman TV (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/imantv/imantv/playlist.m3u8 +#EXTINF:-1 tvg-id="KayhanTV.af",Kayhan TV (720p) +https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="KayhanTV.af",Kayhan TV (720p) [Geo-blocked] +http://208.93.117.113/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="PamirTV.af",Pamir TV (1080p) [Not 24/7] +http://live.stream.cdn.pamirtv.com/ptv/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 +#EXTINF:-1 tvg-id="Sharq.af",Sharq (576p) [Offline] +http://51.210.199.50/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SolhTV.af",Solh TV (576p) [Not 24/7] +http://51.210.199.42/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ToloTV.af",Tolo TV (720p) +https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolotv.m3u8 +#EXTINF:-1 tvg-id="Tuti.af",Tuti (480p) [Not 24/7] +https://rrsatrtmp.tulix.tv/livecdn827/myStream.sdp/playlist.m3u8 diff --git a/streams/ag.m3u b/streams/ag.m3u new file mode 100644 index 000000000..a111f3fb0 --- /dev/null +++ b/streams/ag.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABSTV.ag",ABS TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ diff --git a/streams/al.m3u b/streams/al.m3u new file mode 100644 index 000000000..9dbde16ab --- /dev/null +++ b/streams/al.m3u @@ -0,0 +1,263 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7HD.al",7 HD (540p) [Not 24/7] +https://5d00db0e0fcd5.streamlock.net/7064/7064/playlist.m3u8 +#EXTINF:-1 tvg-id="21Mix.al",21 Mix (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8756/playlist.m3u8 +#EXTINF:-1 tvg-id="21Plus.al",21 Plus (576p) [Not 24/7] +http://46.29.169.15:4001/play/a00b/index.m3u8 +#EXTINF:-1 tvg-id="21PopulloreHD.al",21 Popullore HD (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8749/playlist.m3u8 +#EXTINF:-1 tvg-id="21RTV.al",21 RTV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8748/playlist.m3u8 +#EXTINF:-1 tvg-id="21TVMacedonia.al",21 TV Macedonia (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8790/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.al",A TV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8709/playlist.m3u8 +#EXTINF:-1 tvg-id="ABCNews.al",ABC News (720p) [Not 24/7] +https://tv2.abcnews.al/live/abcnews/playlist.m3u8 +#EXTINF:-1 tvg-id="AdriaTV.al",Adria TV (480p) [Timeout] +https://tvlive.rtsh.dev/live/adriamed/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbaniaFolk.al",Albania Folk (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8759/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbanianTVAmerica.al",Albanian TV America (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8711/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbMusikHD.al",AlbMusik HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8821/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbUKTV.uk",AlbUK TV (1080p) [Not 24/7] +http://albuk.dyndns.tv:1935/albuk/albuk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ALPO.al",ALPO (720p) [Not 24/7] +https://5d00db0e0fcd5.streamlock.net/7236/7236/playlist.m3u8 +#EXTINF:-1 tvg-id="Alsat.al",Alsat (1080p) [Not 24/7] +http://93.157.62.180/AlsatM/index.m3u8 +#EXTINF:-1 tvg-id="ARTAHD.al",ARTA HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8745/playlist.m3u8 +#EXTINF:-1 tvg-id="ATD.al",ATD (1080p) +http://46.99.146.236/0.m3u8 +#EXTINF:-1 tvg-id="BabyTV.al",BabyTV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8747/playlist.m3u8 +#EXTINF:-1 tvg-id="BangBang.al",Bang Bang (576p) [Not 24/7] +http://93.157.62.180/BangBang/index.m3u8 +#EXTINF:-1 tvg-id="BBFMusicTV.al",BBF Music TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8795/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel117.al",Channel 117 (1080p) [Offline] +https://shkoder.gjirafa.com/api/media/rgjirafa/t0110y/index.m3u8 +#EXTINF:-1 tvg-id="Cufo.al",Çufo (576p) +http://93.157.62.180/Cufo/index.m3u8 +#EXTINF:-1 tvg-id="DigitalbAktionHD.al",Digitalb Aktion HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8742/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbAutor.al",Digitalb Autor (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8753/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP1.al",Digitalb Big Brother VIP 1 (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8803/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP2.al",Digitalb Big Brother VIP 2 (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8804/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbDrame.al",Digitalb Dramë (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8727/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbDYHD.al",Digitalb DY HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8731/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbEurofilm.al",Digitalb Eurofilm (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8758/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbFamilyHD.al",Digitalb Family HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8754/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHD.al",Digitalb HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8746/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHistori.al",Digitalb Histori (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8729/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHitsHD.al",Digitalb Hits HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8755/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbKomedi.al",Digitalb Komedi (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8752/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbNatyra.al",Digitalb Natyra (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8739/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbNjeHD.al",Digitalb Një HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8730/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbShkense.al",Digitalb Shkensë (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8726/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbStinet.al",Digitalb Stinët (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8751/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbThriller.al",Digitalb Thriller (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8757/playlist.m3u8 +#EXTINF:-1 tvg-id="Drame.al",Drame (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8883/playlist.m3u8 +#EXTINF:-1 tvg-id="dTVHD.al",dTV HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8793/playlist.m3u8 +#EXTINF:-1 tvg-id="ElrodiTV.al",Elrodi TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8718/playlist.m3u8 +#EXTINF:-1 tvg-id="FaxNews.al",Fax News (360p) [Not 24/7] +http://edge01eu.ekranet.com/faxnews/index.m3u8 +#EXTINF:-1 tvg-id="FirstChannel.al",First Channel (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8717/playlist.m3u8 +#EXTINF:-1 tvg-id="FrameTV.al",Frame TV (1080p) [Not 24/7] +http://195.154.252.221:8000/play/a002/index.m3u8 +#EXTINF:-1 tvg-id="KHD.al",K HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8710/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanali7.al",Kanali 7 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8761/playlist.m3u8 +#EXTINF:-1 tvg-id="KLAN.al",KLAN [Timeout] +http://79.106.73.244:4040/live/klanhdmob/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanHD.al",Klan HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8704/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanMakedonia.al",Klan Makedonia (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8789/playlist.m3u8 +#EXTINF:-1 tvg-id="",KLAN News [Offline] +http://51.195.88.12:4050/live/klannewsmobpp3/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanPlus.al",Klan Plus (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8720/playlist.m3u8 +#EXTINF:-1 tvg-id="",KLAN Plus [Offline] +http://51.195.88.12:4050/live/klanplusmobpp3/playlist.m3u8 +#EXTINF:-1 tvg-id="Komedi.al",Komedi (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8881/playlist.m3u8 +#EXTINF:-1 tvg-id="Kosova.al",Kosova (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8706/playlist.m3u8 +#EXTINF:-1 tvg-id="KTVHD.al",KTV HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8705/playlist.m3u8 +#EXTINF:-1 tvg-id="Max.al",Max (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8882/playlist.m3u8 +#EXTINF:-1 tvg-id="MPT2.al",MPT 2 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8728/playlist.m3u8 +#EXTINF:-1 tvg-id="Muse.al",Muse (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8778/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.al",News 24 (392p) [Not 24/7] +http://tv.balkanweb.com/news24/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="News24AL.al",News24 AL (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8724/playlist.m3u8 +#EXTINF:-1 tvg-id="Novela.al",Novela (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8884/playlist.m3u8 +#EXTINF:-1 tvg-id="Opoja.al",Opoja (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8723/playlist.m3u8 +#EXTINF:-1 tvg-id="",Oranews (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8715/playlist.m3u8 +#EXTINF:-1 tvg-id="PeaceTV.al",Peace TV (360p) +http://93.157.62.180/PeaceTV/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTV.al",Peace TV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8792/playlist.m3u8 +#EXTINF:-1 tvg-id="PendimiTVHD.al",Pendimi TV HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8786/playlist.m3u8 +#EXTINF:-1 tvg-id="QSportNews.al",Q Sport News (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8785/playlist.m3u8 +#EXTINF:-1 tvg-id="",Report TV HD (576p) [Not 24/7] +http://93.157.62.180/ReportTV/index.m3u8 +#EXTINF:-1 tvg-id="RitaTV.al",Rita TV (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8890/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH1.al",RTSH 1 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_11mob1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH 1 HD (406p) +http://93.157.62.180/RTSH1/index.m3u8 +#EXTINF:-1 tvg-id="RTSH2.al",RTSH 2 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_2ott/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH 2 HD (720p) +http://93.157.62.180/RTSH2/index.m3u8 +#EXTINF:-1 tvg-id="RTSH3.al",RTSH 3 (406p) [Timeout] +https://tvlive.rtsh.dev/live/rtsh3ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH3.al",RTSH 3 (576p) +http://93.157.62.180/RTSH3/index.m3u8 +#EXTINF:-1 tvg-id="RTSH24.al",RTSH 24 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_24_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH24.al",RTSH 24 (1080p) +http://93.157.62.180/RTSH24/index.m3u8 +#EXTINF:-1 tvg-id="RTSHAgro.al",RTSH Agro (480p) [Not 24/7] +http://93.157.62.180/RTSHAgro/index.m3u8 +#EXTINF:-1 tvg-id="RTSHAgro.al",RTSH Agro (480p) [Timeout] +https://tvlive.rtsh.dev/live/rtsh_agro_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHFemije.al",RTSH Femijë (480p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_femije_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHFilm.al",RTSH Film (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_film_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHGjirokastra.al",RTSH Gjirokastra (480p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_gjirokastra_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKorca.al",RTSH Korça (480p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_korca_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKukesi.al",RTSH Kukësi (360p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_kukesi_ott_p2/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKuvend.al",RTSH Kuvend (360p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_kuvendi_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHMuzike.al",RTSH Muzike (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_muzike_mob/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHPlus.al",RTSH Plus (480p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_plus_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHSatelit.al",RTSH Satelit (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8701/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHShkolle.al",RTSH Shkollë (360p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_shkolle_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHShqip.al",RTSH Shqip (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_shqip_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHSport.al",RTSH Sport (720p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_sport_ott11/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDukagjini.al",RTV Dukagjini (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8788/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVFontana.al",RTV Fontana (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8852/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVIlirida.al",RTV Ilirida (360p) [Not 24/7] +https://5a1178b42cc03.streamlock.net/rtvilirida/rtvilirida/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVSCAN.al",RTV SCAN (480p) [Not 24/7] +http://edge01eu.ekranet.com/scantv/index.m3u8 +#EXTINF:-1 tvg-id="RTVislam.al",RTVislam (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8714/playlist.m3u8 +#EXTINF:-1 tvg-id="Shenja.al",Shenja (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8850/playlist.m3u8 +#EXTINF:-1 tvg-id="Shqiponja.al",Shqiponja (720p) [Offline] +http://ott.iptvshqipott.com:8080/live/shqiponja/tv/236.m3u8 +#EXTINF:-1 tvg-id="SofiaHD.al",Sofia HD (576p) [Not 24/7] +http://93.157.62.180/Sofia/index.m3u8 +#EXTINF:-1 tvg-id="StarHD.al",Star HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8781/playlist.m3u8 +#EXTINF:-1 tvg-id="SyriHD.al",Syri HD (720p) [Not 24/7] +http://93.157.62.180/SyriTV/index.m3u8 +#EXTINF:-1 tvg-id="SyriTV.al",Syri TV (720p) [Not 24/7] +http://live.syri.tv:6969/live/syriblue/hd/23.ts +#EXTINF:-1 tvg-id="SyriTV.al",Syri TV (720p) [Not 24/7] +rtmp://live.syri.tv:8001/input/bluehd +#EXTINF:-1 tvg-id="TipTV.al",Tip TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8776/playlist.m3u8 +#EXTINF:-1 tvg-id="TopChannel.al",Top Channel (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8708/playlist.m3u8 +#EXTINF:-1 tvg-id="TopNews.al",Top News (720p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x6inuzo +#EXTINF:-1 tvg-id="Tring3.al",Tring 3 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8773/playlist.m3u8 +#EXTINF:-1 tvg-id="TringActionHD.al",Tring Action HD (1080p) [Not 24/7] +http://93.157.62.180/TringAction/index.m3u8 +#EXTINF:-1 tvg-id="TringComedy.al",Tring Comedy (1080p) [Geo-blocked] +http://93.157.62.180/TringComedy/index.m3u8 +#EXTINF:-1 tvg-id="TringFantasy.al",Tring Fantasy (576p) [Geo-blocked] +http://93.157.62.180/TringFantasy/index.m3u8 +#EXTINF:-1 tvg-id="TringHistory.al",Tring History (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8765/playlist.m3u8 +#EXTINF:-1 tvg-id="TringJollyHD.al",Tring Jolly HD (1080p) [Not 24/7] +http://93.157.62.180/JollyHD/index.m3u8 +#EXTINF:-1 tvg-id="TringKids.al",Tring Kids (576p) [Not 24/7] +http://93.157.62.180/TringKids/index.m3u8 +#EXTINF:-1 tvg-id="TringLife.al",Tring Life (1080p) +http://93.157.62.180/TringLife/index.m3u8 +#EXTINF:-1 tvg-id="TringPlanet.al",Tring Planet (576p) +http://93.157.62.180/TringPlanet/index.m3u8 +#EXTINF:-1 tvg-id="TringShqip.al",Tring Shqip (576p) [Not 24/7] +http://93.157.62.180/TringShqip/index.m3u8 +#EXTINF:-1 tvg-id="TringSmile.al",Tring Smile (576p) +http://93.157.62.180/TringSmile/index.m3u8 +#EXTINF:-1 tvg-id="TringSuperHD.al",Tring Super HD (480p) +http://93.157.62.180/TringSuper/index.m3u8 +#EXTINF:-1 tvg-id="TringTring.al",Tring Tring (576p) [Not 24/7] +http://93.157.62.180/TringTring/index.m3u8 +#EXTINF:-1 tvg-id="TringWorld.al",Tring World (576p) +http://93.157.62.180/TringWorld/index.m3u8 +#EXTINF:-1 tvg-id="TurboTV.al",Turbo TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8839/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Albania.al",TV 7 Albania (540p) [Not 24/7] +http://media.az-mediaserver.com:1935/7064/7064/playlist.m3u8 +#EXTINF:-1 tvg-id="TVApollon.al",TV Apollon (720p) +https://live.apollon.tv/Apollon-WEB/video.m3u8?token=tnt3u76re30d2 +#EXTINF:-1 tvg-id="TVDielli.al",TV Dielli (720p) +http://93.157.62.180/DielliTV/index.m3u8 +#EXTINF:-1 tvg-id="TVKoha.al",TV Koha (720p) [Offline] +rtmp://live.tvkoha.tv/live/koha +#EXTINF:-1 tvg-id="TVLlapi.al",TV Llapi (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8823/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOpoja.al",TV Opoja (720p) [Not 24/7] +http://ip.opoja.tv:1935/tvopoja/tvopoja/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPlisi.al",TV Plisi (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8735/playlist.m3u8 +#EXTINF:-1 tvg-id="VPlus.al",V Plus (1080p) +http://93.157.62.180/VizionPlus/index.m3u8 +#EXTINF:-1 tvg-id="ZjarrTelevizion.al",Zjarr Televizion (360p) [Not 24/7] +http://edge01eu.ekranet.com/zjarrtv/index.m3u8 diff --git a/streams/am.m3u b/streams/am.m3u new file mode 100644 index 000000000..523fd8eb4 --- /dev/null +++ b/streams/am.m3u @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:-1 tvg-id="5TV.am",5-րդ ալիք (480p) +http://ott-cdn.ucom.am/s6/index.m3u8 +#EXTINF:-1 tvg-id="21TV.am",21TV (480p) +http://ott-cdn.ucom.am/s10/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaPremium.am",Armenia Premium (1080p) +http://ott-cdn.ucom.am/s83/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaHayKino.am",Armenia Հայ Կինո (480p) +http://ott-cdn.ucom.am/s22/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaJanTV.am",Armenia Ջան TV (480p) [Not 24/7] +http://ott-cdn.ucom.am/s42/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaSinemaks.am",Armenia Սինեմաքս (480p) +http://ott-cdn.ucom.am/s66/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaTownTownik.am",Armenia Տուն Թունիկ (480p) +http://ott-cdn.ucom.am/s46/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaKomedi.am",Armenia Քոմեդի (480p) +http://ott-cdn.ucom.am/s32/index.m3u8 +#EXTINF:-1 tvg-id="ATV.am",ATV (480p) +http://ott-cdn.ucom.am/s8/index.m3u8 +#EXTINF:-1 tvg-id="ATVTavaTV.am",ATV Թավա TV (480p) +http://ott-cdn.ucom.am/s53/index.m3u8 +#EXTINF:-1 tvg-id="ATVKhaghaliqTV.am",ATV ԽաղԱլիք (480p) +http://ott-cdn.ucom.am/s74/index.m3u8 +#EXTINF:-1 tvg-id="ATVKinoman.am",ATV Կինոման (480p) [Timeout] +http://ott-cdn.ucom.am/s94/index.m3u8 +#EXTINF:-1 tvg-id="ATVHayTV.am",ATV Հայ TV (480p) +http://ott-cdn.ucom.am/s73/index.m3u8 +#EXTINF:-1 tvg-id="ATVFilmzone.am",ATV Ֆիլմզոն (480p) +http://ott-cdn.ucom.am/s48/index.m3u8 +#EXTINF:-1 tvg-id="H1.am",Առաջին ալիք (1080p) +http://serv24.vintera.tv:8081/test/h1_arm/index.m3u8 +#EXTINF:-1 tvg-id="H1.am",Առաջին ալիք (1080p) +https://amtv1.livestreamingcdn.com/am2abr/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaTV.am",Արմենիա TV (1080p) +http://ott-cdn.ucom.am/s4/index.m3u8 +#EXTINF:-1 tvg-id="ArmNews.am",Արմնյուզ (1080p) +http://ott-cdn.ucom.am/s11/index.m3u8 +#EXTINF:-1 tvg-id="YerkirMediaTV.am",Երկիր Մեդիա (480p) +http://ott-cdn.ucom.am/s7/index.m3u8 +#EXTINF:-1 tvg-id="KentronTV.am",Կենտրոն (480p) +http://ott-cdn.ucom.am/s5/index.m3u8 +#EXTINF:-1 tvg-id="H2.am",Հ2 (480p) [Timeout] +http://ott-cdn.ucom.am/s2/index.m3u8 +#EXTINF:-1 tvg-id="NorHayastanTV.am",Նոր Հայաստան (480p) +http://ott-cdn.ucom.am/s12/index.m3u8 +#EXTINF:-1 tvg-id="NorHayastanTV.am",Նոր Հայաստան (720p) [Offline] +https://cdn.onarmtv.com/str/7/output.m3u8 +#EXTINF:-1 tvg-id="ShantTV.am",Շանթ (1080p) +http://ott-cdn.ucom.am/s3/index.m3u8 +#EXTINF:-1 tvg-id="ShoghakatTV.am",Շողակաթ (480p) +http://ott-cdn.ucom.am/s13/index.m3u8 diff --git a/streams/ao.m3u b/streams/ao.m3u new file mode 100644 index 000000000..75e0dc49a --- /dev/null +++ b/streams/ao.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TPA1.ao",TPA 1 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/angola/tpa1 +#EXTINF:-1 tvg-id="TVZimbo.ao",TV Zimbo (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/angola/tv-zimbo diff --git a/streams/ar.m3u b/streams/ar.m3u new file mode 100644 index 000000000..9570dfcec --- /dev/null +++ b/streams/ar.m3u @@ -0,0 +1,171 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",5RTv (720p) [Not 24/7] +https://api.new.livestream.com/accounts/22636012/events/8242619/live.m3u8 +#EXTINF:-1 tvg-id="5TV.ar",5TV (Corrientes) (480p) [Not 24/7] +http://www.coninfo.net:1935/tvcinco/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p) +https://59c5c86e10038.streamlock.net/6605140/6605140/playlist.m3u8 +#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p) +https://panel.dattalive.com/6605140/6605140/playlist.m3u8 +#EXTINF:-1 tvg-id="A24.ar",A24 (720p) +https://g1.vxral-hor.transport.edge-access.net/a15/ngrp:a24-100056_all/a24-100056.m3u8 +#EXTINF:-1 tvg-id="AmericaSports.ar",América Sports (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnx743KuO_16sCMIbEg7Y7Q/live +#EXTINF:-1 tvg-id="AmericaTV.ar",América TV (720p) +https://raw.githubusercontent.com/MachineSystems/archived_m3u8/main/america_hls.m3u8 +#EXTINF:-1 tvg-id="ArgentinisimaSatelital.ar",Argentinísima Satelital (720p) +http://186.0.233.76:1935/Argentinisima/smil:argentinisima.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2Jujuy.ar",Canal 2 Jujuy (720p) [Not 24/7] +http://api.new.livestream.com/accounts/679322/events/3782013/live.m3u8 +#EXTINF:-1 tvg-id="Canal3Pinamar.ar",Canal 3 Pinamar (360p) [Not 24/7] +http://www.intelintec.com.ar:9090/hls/canal3pinamar.m3u8 +#EXTINF:-1 tvg-id="Canal3Rosario.ar",Canal 3 Rosario (704p) [Geo-blocked] +https://59d52c5a5ce5e.streamlock.net:4443/canal3rosario/ngrp:canal3rosario_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4.ar",Canal 4 (Posadas) (360p) [Geo-blocked] +http://184.154.28.210:1935/canal4/canal4/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Balcarce.ar",Canal 4 Balcarce (480p) [Not 24/7] +http://inliveserver.com:1935/8550/8550/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Jujuy.ar",Canal 4 Jujuy (720p) +http://190.52.32.13:1935/canal4/smil:manifest.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Jujuy.ar",Canal 4 Jujuy (720p) +https://5cd577a3dd8ec.streamlock.net/canal4/smil:manifest.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Posadas.ar",Canal 4 Posadas (360p) [Geo-blocked] +http://184.154.28.210:1935/canal4/canal4/live.m3u8 +#EXTINF:-1 tvg-id="C5N.ar",Canal 5 Noticias (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/c5n/live +#EXTINF:-1 tvg-id="Canal7SALTA.ar",Canal 7 SALTA (404p) [Geo-blocked] +https://589ff3c36f7e8.streamlock.net/crespo3/crespo3/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9ComodoroRivadavia.ar",Canal 9 (Comodoro Rivadavia) (576p) [Not 24/7] +https://live.canalnueve.tv/canal.m3u8 +#EXTINF:-1 tvg-id="Canal9Televida.ar",Canal 9 Televida (720p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/viviloendirecto2/canal9/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10MardelPlata.ar",Canal 10 Mar del Plata (720p) [Not 24/7] +https://cdn2.zencast.tv:30443/live/canal10smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10RioNegro.ar",Canal 10 Rio Negro (720p) [Not 24/7] +http://panel.dattalive.com:1935/8204/8204/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11LaRioja.ar",Canal 11 La Rioja (Fénix Multiplataforma) (360p) +http://stmv4.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12PuertoMadryn.ar",Canal 12 Puerto Madryn (720p) [Not 24/7] +https://5f700d5b2c46f.streamlock.net/madryntv/madryntv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13LaRioja.ar",Canal 13 La Rioja (480p) +http://arcast.net:1935/mp/mp/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (360p) +http://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) +http://200.115.193.177/live/26hd-720/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) +http://live-edge02.telecentro.net.ar/live/c26.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalC.ar",Canal C (Córdoba | Provincia de Córdoba) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canalccordoba +#EXTINF:-1 tvg-id="CanaldelaCiudad.ar",Canal de la Ciudad (720p) [Offline] +https://g5.proy-hor.transport.edge-access.net/a08/ngrp:gcba_video4-100042_all/Playlist.m3u8?sense=true +#EXTINF:-1 tvg-id="CanalLuz.ar",Canal Luz (1080p) +https://g2.vxral-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8 +#EXTINF:-1 tvg-id="CanalMilenium.ar",Canal Milenium [Offline] +https://panel.tuvideostreaming.com:19360/8002/8002.m3u8 +#EXTINF:-1 tvg-id="CanalProvincial.ar",Canal Provincial (San Miguel) (360p) [Not 24/7] +http://www.trimi.com.ar/provincial/streaming/mystream.m3u8 +#EXTINF:-1 tvg-id="CANALTDC.ar",CANAL TDC (1080p) [Not 24/7] +https://5e7cdf2370883.streamlock.net/tdconline/tdconline/playlist.m3u8 +#EXTINF:-1 tvg-id="CANAL9MULTIVISION.ar",CANAL.9 MULTIVISION (720p) [Not 24/7] +https://panel.dattalive.com/8250/8250/playlist.m3u8 +#EXTINF:-1 tvg-id="",canalLUZ (1080p) [Not 24/7] +https://g1.mc-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8?sense=true +#EXTINF:-1 tvg-id="CatacamaTV.ar",Catacama TV (1080p) +https://5f700d5b2c46f.streamlock.net/catamarcatelevision/catamarcatelevision/playlist.m3u8 +#EXTINF:-1 tvg-id="ChacoTV.ar",Chaco TV (720p) [Not 24/7] +https://5b7ecefab6325.streamlock.net/Streamtv/chacotv/playlist.m3u8 +#EXTINF:-1 tvg-id="ChacraTV.ar",Chacra TV (480p) [Not 24/7] +https://s8.stweb.tv/chacra/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CincoTV.ar",Cinco TV (480p) [Not 24/7] +https://59537faa0729a.streamlock.net/cincotv/cincotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",CINE.AR (720p) [Not 24/7] +https://5fb24b460df87.streamlock.net/live-cont.ar/cinear/playlist.m3u8 +#EXTINF:-1 tvg-id="CiudadTVResistencia.ar",Ciudad TV Resistencia (Chaco) (720p) [Not 24/7] +http://coninfo.net:1935/chacodxdtv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CN3Pinamar.ar",CN3 Pinamar (720p) [Not 24/7] +https://wowza.telpin.com.ar:1935/canal3/canal3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CPEtv.ar",CPEtv (720p) [Offline] +https://dcunilive28-lh.akamaihd.net/i/dclive_1@533583/master.m3u8 +#EXTINF:-1 tvg-id="CrossingTVCrossingContenidos.ar",Crossing TV (Crossing Contenidos) (720p) [Not 24/7] +https://vivo.solumedia.com:19360/crossing/crossing.m3u8 +#EXTINF:-1 tvg-id="DeporTV.ar",DeporTV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSmh3DFxBwFurMttT60PQ1g/live +#EXTINF:-1 tvg-id="ElDoceTV.ar",El Doce TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?feature=emb_title&streaming-ip=https://www.youtube.com/watch?v=gBbMbqILzXU +#EXTINF:-1 tvg-id="ElGarageTV.ar",El Garage TV (480p) [Not 24/7] +http://186.0.233.76:1935/Garage/smil:garage.smil/master.m3u8 +#EXTINF:-1 tvg-id="ElOnce.ar",ElOnce (1080p) [Not 24/7] +https://elonceovh.elonce.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="Encuentro.ar",Encuentro (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC1zLDoKL-eKmd_K7qkUZ-ow/live +#EXTINF:-1 tvg-id="FenixTV.ar",Fenix TV (Ciudad de La Rioja) (360p) +https://stmv1.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 +#EXTINF:-1 tvg-id="GenTV.ar",GenTV (720p) [Not 24/7] +https://videohd.live:19360/8010/8010.m3u8 +#EXTINF:-1 tvg-id="",Informacion Periodística (1080p) +https://d1nmqgphjn0y4.cloudfront.net/live/ip/live.isml/5ee6e167-1167-4a85-9d8d-e08a3f55cff3.m3u8 +#EXTINF:-1 tvg-id="LaVozDeTucuman.ar",La Voz de Tucuman (480p) +https://srv1.zcast.com.br/lavozdetucuman/lavozdetucuman/playlist.m3u8 +#EXTINF:-1 tvg-id="LivePeruTVStreaming.ar",Live Perú TV Streaming (720p) [Not 24/7] +http://209.126.108.55/app/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MagicKids.ar",Magic Kids (720p) [Not 24/7] +https://live.admefy.com/live/default/rival_maroon_4fb1e.m3u8 +#EXTINF:-1 tvg-id="MediosRioja.ar",Medios Rioja (864p) [Not 24/7] +http://streamyes.alsolnet.com/mediosrioja/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MultivisionFederal.ar",Multivisión Federal (720p) [Not 24/7] +http://panel.dattalive.com:1935/8250/8250/playlist.m3u8 +#EXTINF:-1 tvg-id="MusicTop.ar",MusicTop (720p) +http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar",Net TV (720p) +https://unlimited6-cl.dps.live/nettv/nettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar",Net TV (720p) [Not 24/7] +https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Pakapaka.ar",Pakapaka (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCVVNYxncuD4EfHpKDlPIYcQ/live +#EXTINF:-1 tvg-id="PlanetaMultimedios.ar",Planeta Multimedios (720p) [Not 24/7] +https://videostream.shockmedia.com.ar:19360/planetamultimedia/planetamultimedia.m3u8 +#EXTINF:-1 tvg-id="PowerTV.ar",Power TV (720p) [Not 24/7] +https://wowza.telpin.com.ar:1935/live-powerTV/power.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QuatroTV.ar",Quatro TV (540p) [Not 24/7] +https://59d52c5a5ce5e.streamlock.net:4443/quatro/quatro/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVNeuquen.ar",Radio TV Neuquen (720p) [Not 24/7] +http://media.neuquen.gov.ar/rtn/television/playlist.m3u8 +#EXTINF:-1 tvg-id="RTN.ar",RTN (Neuquén) (720p) [Not 24/7] +http://media.neuquen.gov.ar/rtn/television/media.m3u8 +#EXTINF:-1 tvg-id="SantaMariaTV.ar",Santa María TV (360p) [Not 24/7] +http://www.trimi.com.ar/santa_maria/streaming/mystream.m3u8 +#EXTINF:-1 tvg-id="T5Satelital.ar",T5 Satelital (540p) [Not 24/7] +https://api.new.livestream.com/accounts/20819504/events/8664197/live.m3u8 +#EXTINF:-1 tvg-id="Telefe.ar",Telefe (480p) [Not 24/7] +http://170.83.242.153:8000/play/a00b +#EXTINF:-1 tvg-id="TelefeRosario.ar",Telefe Rosario (720p) [Not 24/7] +http://telefewhitehls-lh.akamaihd.net/i/whitelist_hls@302302/master.m3u8 +#EXTINF:-1 tvg-id="TeleJunin.ar",TeleJunín (576p) [Not 24/7] +https://videostream.shockmedia.com.ar:1936/telejunin/telejunin/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemax.ar",Telemax (720p) +http://live-edge01.telecentro.net.ar/live/smil:tlx.smil/master.m3u8 +#EXTINF:-1 tvg-id="TelenordCorrientes.ar",Telenord Corrientes (1080p) [Not 24/7] +http://www.coninfo.net:1935/previsoratv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TelesolTLS.ar",Telesol (TLS) (432p) [Not 24/7] +https://cnnsanjuan.com:9999/live/telesol/playlist.m3u8 +#EXTINF:-1 tvg-id="TelpinCanal2.ar",Telpin Canal 2 (360p) [Not 24/7] +https://wowza.telpin.com.ar:1935/telpintv/smil:ttv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelpinTV.ar",Telpin TV (1080p) [Not 24/7] +https://wowza.telpin.com.ar:1935/telpintv/ttv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tierra Mía TV (720p) +http://live-edge01.telecentro.net.ar/live/smil:trm.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Toonizaki.ar",Toonizaki (720p) [Not 24/7] +https://live.admefy.com/live/default/great_salmon_9bd9d.m3u8 +#EXTINF:-1 tvg-id="TVManaArgentina.ar",TV Maná Argentina (576p) [Not 24/7] +http://streamspub.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPublica.ar",TV Pública (TVP) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/TVPublicaArgentina/live +#EXTINF:-1 tvg-id="TVUniversidad.ar",TVU Universidad Nacional de La Plata (720p) [Not 24/7] +https://stratus.stream.cespi.unlp.edu.ar/hls/tvunlp.m3u8 +#EXTINF:-1 tvg-id="Venus.ar",Venus (480p) [Offline] +http://170.83.242.153:8000/play/a00z +#EXTINF:-1 tvg-id="VTV.ar",VerTV (VTV) (720p) [Not 24/7] +https://5f700d5b2c46f.streamlock.net/vertv/vertv/playlist.m3u8 +#EXTINF:-1 tvg-id="Vorterix.ar",Vorterix (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvCTWHCbBC0b9UIeLeNs8ug/live diff --git a/streams/at.m3u b/streams/at.m3u new file mode 100644 index 000000000..f43b3b121 --- /dev/null +++ b/streams/at.m3u @@ -0,0 +1,61 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Antenne Vorarlberg (720p) [Not 24/7] +https://5857db5306b83.streamlock.net/antennevorarlberg-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="DorfTV.at",Dorf TV (576p) +https://stream.openplayout.org/hls/dorftv/live.m3u8 +#EXTINF:-1 tvg-id="FS1Salzburg.at",FS1 Salzburg (720p) [Not 24/7] +http://stream.fs1.tv:8080/hls/webstream.m3u8 +#EXTINF:-1 tvg-id="FS1Salzburg.at",FS1 Salzburg (720p) [Not 24/7] +https://stream.fs1.tv/hls/webstream.m3u8 +#EXTINF:-1 tvg-id="GoTV.at",GoTV (576p) [Timeout] +https://nstream17.gotv.at:1443/live/gotvlive/manifest.mpd +#EXTINF:-1 tvg-id="HitradioO3.at",Hitradio Ö3 (360p) [Offline] +http://185.85.28.19/oe3sd/orf.sdp/master.m3u8 +#EXTINF:-1 tvg-id="HitradioO3.at",Hitradio Ö3 (720p) [Not 24/7] +https://studiocam-oe3.mdn.ors.at/out/u/studiocam_oe3/q6a/manifest_1.m3u8 +#EXTINF:-1 tvg-id="KTV.at",K-TV (720p) +https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 +#EXTINF:-1 tvg-id="KroneTV.at",Krone.TV (360p) +https://kronetv.mdn.ors.at/out/u/kronetv-nodrm.m3u8 +#EXTINF:-1 tvg-id="Kronehit.at",Kronehit (1080p) +https://bitcdn-kronehit.bitmovin.com/v2/hls/playlist.m3u8 +#EXTINF:-1 tvg-id="M4.at",M4 (1090p) [Not 24/7] +https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",oe24 TV (1080p) +https://varoe24live.sf.apa.at/oe24-live1/oe24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OktoEight.at",Okto Eight (720p) [Offline] +https://d38d1dtxhym0zi.cloudfront.net/LiveHTTPOrigin/okto/playlist.m3u8 +#EXTINF:-1 tvg-id="OktoTV.at",Okto TV [Offline] +https://d2i6psfxyapxwi.cloudfront.net/out/v1/f0cc8e3aceb64ad8968231dc5a0041d4/index.m3u8 +#EXTINF:-1 tvg-id="ORF1.at",ORF 1 (720p) [Geo-blocked] +https://orf1.mdn.ors.at/out/u/orf1/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORF2.at",ORF 2 (540p) [Geo-blocked] +https://orf2.mdn.ors.at/out/u/orf2/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORF3.at",ORF 3 (540p) [Geo-blocked] +https://orf3.mdn.ors.at/out/u/orf3/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORFSportPlus.at",ORF Sport+ (540p) [Geo-blocked] +https://orfs.mdn.ors.at/out/u/orfs/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="P3tv.at",P3tv (720p) [Not 24/7] +http://p3-6.mov.at:1935/live/weekstream/master.m3u8 +#EXTINF:-1 tvg-id="PremiumChannel.at",Premium Channel [Not 24/7] +http://premium-channel.tv:88/live/kali.m3u8 +#EXTINF:-1 tvg-id="R9.at",R9 (720p) [Not 24/7] +https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RedBullTV.at",Red Bull TV (1080p) +https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8 +#EXTINF:-1 tvg-id="RTV.at",RTV (1080p) +http://iptv.rtv-ooe.at/stream.m3u8 +#EXTINF:-1 tvg-id="SchauTV.at",SchauTV (720p) +https://schautv.mdn.ors.at/out/u/schautv-nodrm.m3u8 +#EXTINF:-1 tvg-id="SwamijiTV.at",Swamiji TV (720p) [Not 24/7] +https://stream.swamiji.tv/YogaIPTV/smil:YogaStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TeinsTV.at",Teins TV (1080p) [Not 24/7] +https://live1.markenfunk.com/t1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TirolTV.at",Tirol TV (720p) [Not 24/7] +https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8 +#EXTINF:-1 tvg-id="UpperaBalkan.at",Uppera Balkan (720p) [Geo-blocked] +http://89.187.168.245:8080/live/sUPPERchannel2/index.m3u8 +#EXTINF:-1 tvg-id="UPPERACommunityTV.at",UPPERA Community TV [Geo-blocked] +http://89.187.168.245:8080/live/sUPPERchannel/index.m3u8 +#EXTINF:-1 tvg-id="W24.at",W24 (720p) [Not 24/7] +https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8 diff --git a/streams/at_samsung.m3u b/streams/at_samsung.m3u new file mode 100644 index 000000000..4a09564eb --- /dev/null +++ b/streams/at_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RakutenTVActionMoviesAustria.es",Rakuten TV Action Movies Austria (720p) [Offline] +https://rakuten-actionmovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesAustria.es",Rakuten TV Comedy Movies Austria (720p) [Offline] +https://rakuten-comedymovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaAustria.es",Rakuten TV Drama Austria (720p) [Offline] +https://rakuten-tvshows-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyAustria.es",Rakuten TV Family Austria (720p) [Offline] +https://rakuten-family-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightAustria.es",Rakuten TV Spotlight Austria (720p) [Offline] +https://rakuten-spotlight-5-at.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/au.m3u b/streams/au.m3u new file mode 100644 index 000000000..7f572c81d --- /dev/null +++ b/streams/au.m3u @@ -0,0 +1,119 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3AW.au",3AW (Melbourne) (574p) [Not 24/7] +http://melb3awvid-lh.akamaihd.net/i/melbournevid_1@109381/master.m3u8 +#EXTINF:-1 tvg-id="7flix.au",7flix [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020525.m3u8 +#EXTINF:-1 tvg-id="7mate.au",7mate [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020523.m3u8 +#EXTINF:-1 tvg-id="",7two [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020522.m3u8 +#EXTINF:-1 tvg-id="",9Gem [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200427.m3u8 +#EXTINF:-1 tvg-id="9Go.au",9Go! [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200428.m3u8 +#EXTINF:-1 tvg-id="9Life.au",9Life [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200424.m3u8 +#EXTINF:-1 tvg-id="9Rush.au",9Rush [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200429.m3u8 +#EXTINF:-1 tvg-id="",10 (720p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020625.m3u8 +#EXTINF:-1 tvg-id="10Bold.au",10 Bold (540p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020627.m3u8 +#EXTINF:-1 tvg-id="10Peach.au",10 Peach (540p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020628.m3u8 +#EXTINF:-1 tvg-id="10Shake.au",10 Shake [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020623.m3u8 +#EXTINF:-1 tvg-id="ABCKids.au",ABC Kids (720p) [Not 24/7] +https://c.mjh.nz/101002210222 +#EXTINF:-1 tvg-id="",ABC ME (720p) +https://c.mjh.nz/101002210224 +#EXTINF:-1 tvg-id="ABCNews.au",ABC News (720p) +https://abc-iview-mediapackagestreams-2.akamaized.net/out/v1/6e1cc6d25ec0480ea099a5399d73bc4b/index.m3u8 +#EXTINF:-1 tvg-id="ABCNews.au",ABC News (720p) [Geo-blocked] +https://c.mjh.nz/101002210220 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/3201026102E1 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/101002210221 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/101002310231 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/101002510251 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/101002710271 +#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) +https://c.mjh.nz/101002810281 +#EXTINF:-1 tvg-id="ABCTVPlus.au",ABC TV Plus (720p) +https://c.mjh.nz/abc2 +#EXTINF:-1 tvg-id="ACCTV.au",ACCTV (Adelaide) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/australia/acctv-adelaide +#EXTINF:-1 tvg-id="ACCTV.au",ACCTV (Melbourne) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/australia/acctv-melbourne +#EXTINF:-1 tvg-id="AflamMohtrama.au",Aflam Mohtrama (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/mim21889/live +#EXTINF:-1 tvg-id="AusTamil.au",Aus Tamil (720p) [Not 24/7] +https://bk7l2pn7dx53-hls-live.5centscdn.com/austamil/fe01ce2a7fbac8fafaed7c982a04e229.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",ausbiz TV (720p) [Geo-blocked] +https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8 +#EXTINF:-1 tvg-id="AustraliaChannel.au",Australia Channel (720p) +https://austchannel-live.akamaized.net/hls/live/2002729/austchannel-news/master.m3u8 +#EXTINF:-1 tvg-id="C31Melbourne.au",C31 Melbourne (240p) +https://d1k6kax80wecy5.cloudfront.net/RLnAKY/index.m3u8 +#EXTINF:-1 tvg-id="Channel44.au",Channel 44 (240p) +https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8 +#EXTINF:-1 tvg-id="ExpoChannel.au",Expo Channel (360p) +https://tvsn-i.akamaihd.net/hls/live/261837/expo/expo.m3u8 +#EXTINF:-1 tvg-id="JonmoBhumiTV.au",JonmoBhumi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jonmobhumitv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="M4TV.au",M4TV (1090p) +https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="M4TVMalayalam.au",M4TV Malayalam (1080p) [Not 24/7] +https://app.m4stream.live/mfourmalayalamhls/live.m3u8 +#EXTINF:-1 tvg-id="Nine.au",Nine [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200421.m3u8 +#EXTINF:-1 tvg-id="NITV.au",NITV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000305.m3u8 +#EXTINF:-1 tvg-id="OpenShop.au",Open Shop (720p) [Offline] +https://medialive.openshop.com.au/asn-live_1.m3u8 +#EXTINF:-1 tvg-id="OpenShop.au",Open Shop [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7openshop.m3u8 +#EXTINF:-1 tvg-id="RaceCentralTV.au",Race Central TV (720p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-racecentral/index.m3u8 +#EXTINF:-1 tvg-id="Racingcom.au",Racing.com (576p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/australia/racing +#EXTINF:-1 tvg-id="Racingcom.au",Racing.com [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020528.m3u8 +#EXTINF:-1 tvg-id="SBSFood.au",SBS Food [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000304.m3u8 +#EXTINF:-1 tvg-id="SBSTV.au",SBS TV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000301.m3u8 +#EXTINF:-1 tvg-id="SBSViceland.au",SBS Viceland [Geo-blocked] +https://dai.google.com/linear/hls/event/nPy2IRtvQTWudFfYwdBgsg/master.m3u8 +#EXTINF:-1 tvg-id="SBSViceland.au",SBS Viceland [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000303.m3u8 +#EXTINF:-1 tvg-id="SBSWorldMovies.au",SBS World Movies [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000307.m3u8 +#EXTINF:-1 tvg-id="Seven.au",Seven [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020520.m3u8 +#EXTINF:-1 tvg-id="SkyRacing1.au",Sky Racing 1 (270p) [Not 24/7] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky1.m3u8 +#EXTINF:-1 tvg-id="SkyRacing1.au",Sky Racing 1 (540p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky1.m3u8 +#EXTINF:-1 tvg-id="SkyRacing2.au",Sky Racing 2 (270p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky2.m3u8 +#EXTINF:-1 tvg-id="SkyRacing2.au",Sky Racing 2 (360p) [Not 24/7] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky2.m3u8 +#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au",Sky Thoroughbred Central (720p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/stcsd.m3u8 +#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au",Sky Thoroughbred Central (720p) [Offline] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/stcsd.m3u8 +#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au",Snowy Mountains Television (1080p) [Geo-blocked] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 +#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au",Snowy Mountains Television (1080p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 +#EXTINF:-1 tvg-id="TravelFoodTV.au",Travel & Food TV (720p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-moviemagictv/index.m3u8 +#EXTINF:-1 tvg-id="TVSN.au",TVSN (360p) [Not 24/7] +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 +#EXTINF:-1 tvg-id="",澳大利亚天和电视 (720p) +http://www.rtvcdn.com.au:8082/TV0002.m3u8 diff --git a/streams/au_samsung.m3u b/streams/au_samsung.m3u new file mode 100644 index 000000000..30055db61 --- /dev/null +++ b/streams/au_samsung.m3u @@ -0,0 +1,87 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ActionHollywoodMovies.au",Action Hollywood Movies (1080p) [Offline] +https://lightning-actionhollywood-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Aus Biz TV (720p) [Offline] +https://ausbiztv-ausbiz-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) [Offline] +https://bloomberg-bloomberg-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BountyPlus.au",Bounty Plus (720p) [Offline] +https://bountyfilms-bounty-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.au",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] +https://dust-samsung-uk-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://euronews-euronews-world-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] +https://spi-filmstream-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) +https://fueltv-fueltv-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] +https://gustotv-samsung-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseandCountry.au",Horse and Country (720p) +https://hncfree-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) +https://introuble-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) +https://inwild-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MadeinHollywood.us",Made in Hollywood (720p) [Offline] +https://connection3-ent-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVAustralia.us",MavTV Australia (720p) [Offline] +https://mavtv-mavtvglobal-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (1080p) +https://outdoorchannel-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeAustralia.us",People are Awesome Australia (720p) [Offline] +https://jukin-peopleareawesome-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pulse.au",Pulse (1080p) [Offline] +https://lightning-pulse-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.au",Qwest TV Classical (720p) [Offline] +https://qwestclassic-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzandBeyond.au",Qwest TV Jazz and Beyond (720p) [Offline] +https://qwestjazz-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.au",Qwest TV Mix (720p) [Offline] +https://qwestmix-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealFamiliesAustralia.us",Real Families (Australia) (720p) +https://lds-realfamilies-samsunguau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.au",Real Stories (720p) +https://lds-realstories-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Rialto.nz",Rialto (1080p) +https://rialto-rialto-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RyanandFriends.au",Ryan and Friends (1080p) +https://ryanandfriends-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SmithsonianChannelAsia.us",Smithsonian Channel Asia (1080p) +https://smithsonianaus-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraokeAustralia.ca",Stingray Karaoke (Australia) (1080p) +https://samsung-au.ott-channels.stingray.com/karaoke/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescapeAustralia.ca",Stingray Naturescape (Australia) (1080p) [Not 24/7] +https://samsung-au.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="TastemadeAustralia.us",Tastemade Australia (1080p) +https://tmint-aus-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveAustralia.us",The Pet Collective Australia (720p) [Offline] +https://the-pet-collective-international-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeLineAustralia.us",Time Line Australia (720p) +https://lds-timeline-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Offline] +https://toongoggles-toongoggles-3-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceSportStarsAustralia.fr",Trace Sport Stars (Australia) (1080p) +https://lightning-tracesport-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceUrbanAustralia.fr",Trace Urban (Australia) (1080p) +https://lightning-traceurban-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.au",VENN (1080p) +https://venntv-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyAustralia.us",WeatherSpy Australia (720p) [Offline] +https://jukin-weatherspy-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk",Wonder (720p) +https://lds-wonder-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMooAustralia.nz",Zoo Moo (Australia) (1080p) +https://zoomoo-samsungau.amagi.tv/playlist.m3u8 diff --git a/streams/aw.m3u b/streams/aw.m3u new file mode 100644 index 000000000..f27909414 --- /dev/null +++ b/streams/aw.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArubaTV.aw",Aruba.TV (720p) [Not 24/7] +https://ed1ov.live.opencaster.com/GzyysAAvEhht/index.m3u8 +#EXTINF:-1 tvg-id="NosIslaTV.aw",Nos Isla TV (720p) [Not 24/7] +https://backend-server-dot-telearuba-app.appspot.com/media/livestream23/playlist.m3u8 +#EXTINF:-1 tvg-id="Telearuba.aw",Telearuba (480p) [Not 24/7] +https://backend-server-dot-telearuba-app.appspot.com/media/livestream13/playlist.m3u8 +#EXTINF:-1 tvg-id="Telearuba.aw",Telearuba (720p) +http://cdn.setar.aw:1935/Telearuba/smil:telearuba.smil/playlist.m3u8 diff --git a/streams/az.m3u b/streams/az.m3u new file mode 100644 index 000000000..af2e49c55 --- /dev/null +++ b/streams/az.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlvinChannelTV.az",Alvin Channel TV (360p) [Not 24/7] +http://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="ARB24.az",ARB 24 (1080p) [Not 24/7] +http://85.132.81.184:8080/arb24/live1/index.m3u8 +#EXTINF:-1 tvg-id="ARB.az",ARB (576p) [Not 24/7] +https://europe2.livetv.az/azerbaijan/arb/playlist.m3u8 +#EXTINF:-1 tvg-id="ARBGunes.az",ARB Günəş [Geo-blocked] +http://149.255.152.199/arbgunes.m3u8 +#EXTINF:-1 tvg-id="AzTV.az",Az TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/aztv_stream2/playlist.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/atv_sd_stream4/playlist.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (720p) +http://85.132.81.184:8080/atv/index.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (720p) +http://85.132.81.184:8080/atvlive/atv-e1/index.m3u8 +#EXTINF:-1 tvg-id="AzadTVMinus2.az",Azad TV -2 (ATV) (720p) +http://85.132.81.184:8080/atv-2/index.m3u8 +#EXTINF:-1 tvg-id="AzadTVMinus4.az",Azad TV -4 (ATV) (720p) [Not 24/7] +http://85.132.81.184:8080/atv-4/index.m3u8 +#EXTINF:-1 tvg-id="CBC.az",CBC (720p) [Not 24/7] +http://cbctvlive.flashmediacast.com:1935/CBCTVLive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="ELTV.az",EL TV (260p) +http://85.132.53.162:1935/live/eltv/playlist.m3u8 +#EXTINF:-1 tvg-id="FTV.az",FTV (720p) [Not 24/7] +https://str2.yodacdn.net/publive/ftv/video.m3u8 +#EXTINF:-1 tvg-id="IctimaiTV.az",İctimai TV (480p) [Geo-blocked] +https://node19.connect.az:8086/ch1/ch1.med.m3u8 +#EXTINF:-1 tvg-id="IctimaiTV.az",İctimai TV (720p) [Geo-blocked] +https://node19.connect.az:8086/ch1/ch1.hi.m3u8 +#EXTINF:-1 tvg-id="IdmanTV.az",İdman TV (576p) +http://109.205.166.68/server124/idman_az/index.m3u8 +#EXTINF:-1 tvg-id="InterAz.az",İnterAz (1080p) [Not 24/7] +http://yayin.netradyom.com:1935/live/interaz/playlist.m3u8 +#EXTINF:-1 tvg-id="KepezTV.az",Kəpəz TV (540p) [Not 24/7] +http://85.132.81.184:8080/arbkepez/live/index.m3u8 +#EXTINF:-1 tvg-id="KepezTV.az",Kəpəz TV (540p) [Not 24/7] +http://streams.livetv.az/arbkepez/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MedeniyyetTV.az",Mədəniyyət TV (404p) [Not 24/7] +http://streams.livetv.az/azerbaijan/medeniyyet_stream2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuganTV.az",Muğan TV (1080p) [Not 24/7] +http://cdn10-mugantv.yayin.com.tr/mugantv/mugantv/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxcivanTV.az",Naxçıvan TV (720p) [Not 24/7] +http://streams.livetv.az/azerbaijan/nax/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxcivanTV.az",Naxçıvan TV (720p) [Offline] +http://canli.naxcivantv.az/media/20210930/index.m3u8 +#EXTINF:-1 tvg-id="QafqazTV.az",Qafqaz TV (360p) [Not 24/7] +https://europe2.livetv.az/azerbaijan/qafqaztv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Qəbələ TV (480p) [Not 24/7] +https://qebele.tv/live/stream/index.m3u8 +#EXTINF:-1 tvg-id="SpaceTV.az",Space TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/space_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="XezerTV.az",Xəzər TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/xazar_sd_stream_2/playlist.m3u8 diff --git a/streams/ba.m3u b/streams/ba.m3u new file mode 100644 index 000000000..12ac66a32 --- /dev/null +++ b/streams/ba.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="B1TV.ba",B1 TV (1080p) [Not 24/7] +http://proxy.bihnet.net:88/live/b1tv.m3u8 +#EXTINF:-1 tvg-id="BHRT.ba",BHRT (270p) [Geo-blocked] +https://bhrtstream.bhtelecom.ba/hls15/bhrtportal.m3u8 +#EXTINF:-1 tvg-id="BHRT.ba",BHRT (720p) [Geo-blocked] +https://bhrtstream.bhtelecom.ba/bhrtportal.m3u8 +#EXTINF:-1 tvg-id="BNTV.ba",BN TV (480p) +https://dns2.rtvbn.com:8080/live/index.m3u8 +#EXTINF:-1 tvg-id="Malta.ba",Malta (720p) [Not 24/7] +http://webtvstream.bhtelecom.ba/malta.m3u8 +#EXTINF:-1 tvg-id="ntvic.ba",NTV IC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ntvic +#EXTINF:-1 tvg-id="RTVBPK.ba",RTV BPK (720p) [Not 24/7] +https://webtvstream.bhtelecom.ba/gorazde_cam2.m3u8 +#EXTINF:-1 tvg-id="RTVHB.ba",RTV HB (576p) [Not 24/7] +https://prd-hometv-live-open.spectar.tv/ERO_1_083/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVZE.ba",RTV ZE (720p) [Not 24/7] +https://stream.rtvze.ba/123.m3u8 +#EXTINF:-1 tvg-id="Televizija5.ba",Televizija 5 (576p) +https://balkanmedia.dynu.net/hls/tv5web.m3u8 +#EXTINF:-1 tvg-id="tvslon.ba",TV Slon Extra (1080p) [Not 24/7] +http://31.47.0.130:8082 +#EXTINF:-1 tvg-id="tvslon.ba",TV Slon Extra (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVSLON/live +#EXTINF:-1 tvg-id="tvsloninfo.ba",TV SLON INFO (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=YHLiGONh--I +#EXTINF:-1 tvg-id="",РТРС (576p) [Geo-blocked] +https://parh.rtrs.tv/tv/live/playlist.m3u8 diff --git a/streams/bb.m3u b/streams/bb.m3u new file mode 100644 index 000000000..5c10cace2 --- /dev/null +++ b/streams/bb.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CBCTV8.bb",CBC TV8 (1080p) [Not 24/7] +https://1740288887.rsc.cdn77.org/1740288887/index.m3u8 diff --git a/streams/bd.m3u b/streams/bd.m3u new file mode 100644 index 000000000..694056e23 --- /dev/null +++ b/streams/bd.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChannelT1.bd",Channel T1 (720p) [Not 24/7] +http://irbtv.net/channelt1/1080/index.m3u8 +#EXTINF:-1 tvg-id="EkusheyTV.bd",Ekushey TV (480p) +https://ekusheyserver.com/etvlivesn.m3u8 +#EXTINF:-1 tvg-id="RTV.bd",RTV (720p) [Not 24/7] +https://stream.cstfctg.com/rtvonline/rtv2021.stream/playlist.m3u8 diff --git a/streams/bd_jagobd.m3u b/streams/bd_jagobd.m3u new file mode 100644 index 000000000..afd287b06 --- /dev/null +++ b/streams/bd_jagobd.m3u @@ -0,0 +1,53 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ATNBangla.bd",ATN Bangla (1080p) [Geo-blocked] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbd-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNBanglaUK.bd",ATN Bangla UK (576p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbanglauk-off.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNNews.bd",ATN News (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnws-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BanglaVision.bd",Bangla Vision (1080p) [Geo-blocked] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/banglav000.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BijoyTV.bd",Bijoy TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/bijoy00.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BoishakhiTV.bd",Boishakhi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/boishakhitv-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVChittagong.bd",BTV Chittagong (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvnational-ctg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVWorld.bd",BTV World (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvbd-office-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.bd",Channel 9 (720p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel9hd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel24.bd",Channel 24 (1080p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel24-sg-e8e.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelI.bd",Channel I (1080p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channeli-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ColosalTV.bd",Colosal TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/colosal.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DBCNews.bd",DBC News (1080p) [Timeout] +https://live.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/dbcnews.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="GaanBangla.bd",Gaan Bangla (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/gaanbangla-8-orgd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="IndependentTV.bd",Independent TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/independent-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JamunaTV.bd",Jamuna TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jamuna-test-sample-ok.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.bd",News 24 (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/news24local.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NexusTV.bd",Nexus TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nexustv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NokshiTV.bd",Nokshi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nakshitv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTVEurope.bd",NTV Europe (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/ntvuk00332211.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTV.bd",RTV (720p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/rtv-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SangshadTV.bd",Sangshad TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/songsodtv-world.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SATV.bd",SATV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/satvoff5666.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SomoyNewsTV.bd",Somoy News TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/somoyt000011226615544544.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SomoyNewsTV.bd",Somoy News TV (1080p) [Not 24/7] +https://somoy.appv.jagobd.com:444/somoy/somoyt000011226615544544.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeTelevision.us",Time Television (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/timetvusa.stream/playlist.m3u8 diff --git a/streams/be.m3u b/streams/be.m3u new file mode 100644 index 000000000..b81fb5ef1 --- /dev/null +++ b/streams/be.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",ATV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27755193/events/8452381/live.m3u8 +#EXTINF:-1 tvg-id="BelRTL.be",Bel RTL (720p) +https://bel-lh.akamaihd.net/i/BEL_1@321282/master.m3u8 +#EXTINF:-1 tvg-id="BX1.be",BX1 (720p) [Not 24/7] +https://59959724487e3.streamlock.net/stream/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalZoom.be",Canal Zoom (720p) [Not 24/7] +http://streamer.canalc.be:1935/canalzoom/smil:SMIL-canalzoom-multi/playlist.m3u8 +#EXTINF:-1 tvg-id="CityMusicTV.be",City Music TV (720p) +https://5592f056abba8.streamlock.net/citytv/citytv/playlist.m3u8 +#EXTINF:-1 tvg-id="EbS.be",EbS Live (Europe by Satellite) (1080p) +https://euc-live.fl.freecaster.net/live/eucom/ebs.m3u8 +#EXTINF:-1 tvg-id="EbSPlus.be",EbS+ Live (Europe by Satellite) (1080p) +https://euc-live.fl.freecaster.net/live/eucom/ebsp.m3u8 +#EXTINF:-1 tvg-id="KetnetJunior.be",Ketnet Junior (720p) +https://content.uplynk.com/channel/e11a05356cc44198977436418ad71832.m3u8 +#EXTINF:-1 tvg-id="LN24.be",LN24 (1080p) +https://live.cdn.ln24.be/out/v1/b191621c8b9a436cad37bb36a82d2e1c/index.m3u8 +#EXTINF:-1 tvg-id="MaTele.be",MaTele (1080p) [Not 24/7] +https://live.matele.be/hls/live.m3u8 +#EXTINF:-1 tvg-id="MNM.be",MNM (720p) +https://live-vrt.akamaized.net/groupa/live/bac277a1-306d-44a0-8e2e-e5b9c07fa270/live.isml/.m3u8 +#EXTINF:-1 tvg-id="Notele.be",Notele (576p) [Not 24/7] +https://streaming01.divercom.be/notele_live/_definst_/direct.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QMusic.be",Q-Music (1080p) +https://dpp-streamlive-plain.medialaancdn.be/qmusic/plain/hls.m3u8 +#EXTINF:-1 tvg-id="RadioContact.be",Radio Contact (720p) +https://contact-lh.akamaihd.net/i/CONTACT_1@321283/master.m3u8 +#EXTINF:-1 tvg-id="RadioPROS.be",Radio PROS (720p) [Not 24/7] +http://highvolume04.streampartner.nl/radiopros/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPROS.be",Radio PROS (720p) [Not 24/7] +https://558bd16067b67.streamlock.net/radiopros/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",ROB TV (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/27755193/events/8462344/live.m3u8 +#EXTINF:-1 tvg-id="",RTL-TVi (720p) +https://rtltvi-lh.akamaihd.net/i/TVI_1@319659/master.m3u8 +#EXTINF:-1 tvg-id="",TV Oost (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/27755193/events/8511193/live.m3u8 +#EXTINF:-1 tvg-id="TVL.be",TVL (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/27755193/events/8452383/live.m3u8 +#EXTINF:-1 tvg-id="",TVO (576p) +https://media.mediahuisvideo.be/hls/account=tqIhfOEY3U0A/item=oIFtpshSvwcy/oIFtpshSvwcy.m3u8 diff --git a/streams/be_samsung.m3u b/streams/be_samsung.m3u new file mode 100644 index 000000000..22c784941 --- /dev/null +++ b/streams/be_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews Français (720p) +https://rakuten-africanews-2-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] +https://rakuten-euronews-2-be.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/bf.m3u b/streams/bf.m3u new file mode 100644 index 000000000..e4595b432 --- /dev/null +++ b/streams/bf.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3TV.bf",3TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/3tvbf +#EXTINF:-1 tvg-id="FasoTV.bf",Faso TV (480p) [Not 24/7] +https://playtv4kpro.com:5443/LiveApp/streams/163893638025530331068059.m3u8 +#EXTINF:-1 tvg-id="ImpactTV.bf",Impact TV (360p) +https://edge.vedge.infomaniak.com/livecast/ik:impacttv_1/manifest.m3u8 +#EXTINF:-1 tvg-id="RTB.bf",RTB (360p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:rtbtvlive1/manifest.m3u8 diff --git a/streams/bg.m3u b/streams/bg.m3u new file mode 100644 index 000000000..24ce9097c --- /dev/null +++ b/streams/bg.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="100AutoMotoTV.bg",100% Auto Moto TV (406p) [Not 24/7] +http://100automoto.tv:1935/bgtv1/autotv/playlist.m3u8 +#EXTINF:-1 tvg-id="BalkanikaTV.bg",Balkanika TV (270p) [Offline] +rtsp://stream.teracomm.bg/balkanika +#EXTINF:-1 tvg-id="BGMusic.bg",BG Music [Offline] +https://cdn1.mobiletv.bg/T10/bgmusic/bgmusic_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BNMusic.bg",BN Music [Offline] +https://cdn1.mobiletv.bg/T5/bn_music/bn_music_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BoxTV.bg",Box TV [Offline] +https://cdn1.mobiletv.bg/T5/box_tv/box_tv_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BTK.bg",BTK (576p) [Not 24/7] +http://hls.cdn.bg:2007/fls/vtv/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVCinema.bg",BTV Cinema [Offline] +https://cdn1.mobiletv.bg/T8/btv_cinema/btv_c_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BTVComedy.bg",BTV Comedy [Offline] +https://cdn1.mobiletv.bg/T5/btvcomedy/btvcomedy_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BulgariaOnAir.bg",Bulgaria On Air (576p) +http://edge1.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bulgaria On Air (576p) +http://hls.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bulgaria On Air (576p) +http://ios.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" status="online",Bulgaria On Air (576p) +http://edge15.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CityTV.bg",City TV (576p) [Not 24/7] +https://tv.city.bg/play/tshls/citytv/index.m3u8 +#EXTINF:-1 tvg-id="Diema.bg",Diema [Offline] +https://cdn1.mobiletv.bg/T13/diema/diema_794613_850k.m3u8 +#EXTINF:-1 tvg-id="DMSAT.bg",DM SAT [Offline] +https://cdn1.mobiletv.bg/T5/dm_sat/dm_sat_794613_850k.m3u8 +#EXTINF:-1 tvg-id="DSTV.bg",DSTV (614p) +http://46.249.95.140:8081/hls/data.m3u8 +#EXTINF:-1 tvg-id="",Ekids [Offline] +https://cdn1.mobiletv.bg/T8/ekids/ekids_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Evrokom.bg",Evrokom (360p) +https://live.ecomservice.bg/hls/stream.m3u8 +#EXTINF:-1 tvg-id="FishingHuntingChannel.bg",Fishing & Hunting Channel [Offline] +https://cdn1.mobiletv.bg/T5/fh/fh_794613_850k.m3u8 +#EXTINF:-1 tvg-id="HomeOneTV.bg",HomeOne TV (1080p) [Timeout] +https://streamer104.neterra.tv/n1tv/n1tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LightChannel.bg",Light Channel (480p) [Not 24/7] +https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8 +#EXTINF:-1 tvg-id="MMTV.bg",MM TV (480p) [Offline] +https://streamer103.neterra.tv/mmtv/mmtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Nostalgia.bg",Nostalgia [Offline] +https://cdn1.mobiletv.bg/T10/kanal4/kanal4_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Sportal.bg",Sportal.bg [Geo-blocked] +https://e113-ts.cdn.bg/sportal/fls/sportal_fullhd/chunklist.m3u8?at=c92098d9ab33bf471967c6b6195361e3 +#EXTINF:-1 tvg-id="ThisisBulgaria.bg",This is Bulgaria (1080p) [Offline] +https://streamer103.neterra.tv/thisisbulgaria/community.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPlus.bg",TV+ [Timeout] +http://141.136.14.18/kanal1/kanal1.m3u8 +#EXTINF:-1 tvg-id="WnessTV.bg",Wness TV (720p) [Offline] +https://wness103.neterra.tv/wness/wness.smil/playlist.m3u8 diff --git a/streams/bh.m3u b/streams/bh.m3u new file mode 100644 index 000000000..45be6252b --- /dev/null +++ b/streams/bh.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BahrainInternational.bh",Bahrain International (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+International_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainLawal.bh",Bahrain Lawal (410p) +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Lawal_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainQuran.bh",Bahrain Quran (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Quran_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports1.bh",Bahrain Sports 1 (720p) [Not 24/7] +http://185.105.4.106:1935/live/Bahrain+Sports/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports1.bh",Bahrain Sports 1 (720p) [Not 24/7] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports2.bh",Bahrain Sports 2 (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports+2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainTV.bh",Bahrain TV (720p) [Not 24/7] +http://185.105.4.106:1935/live/Bahrain+TV/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainTV.bh",Bahrain TV (720p) [Not 24/7] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+TV_all/playlist.m3u8 diff --git a/streams/bj.m3u b/streams/bj.m3u new file mode 100644 index 000000000..17675a658 --- /dev/null +++ b/streams/bj.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BB24.bj",BB24 (360p) [Not 24/7] +https://edge9.vedge.infomaniak.com/livecast/ik:bb24/manifest.m3u8 +#EXTINF:-1 tvg-id="",Etélé (360p) [Not 24/7] +https://livetvsteam.com:1936/etelebenin/etelebenin/playlist.m3u8 +#EXTINF:-1 tvg-id="GolfeTVAfrica.bj",Golfe TV Africa (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC98EZ3PHQNrqV-B-CtwAHMA/live +#EXTINF:-1 tvg-id="KultuTV.bj",Kultu TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82zdni +#EXTINF:-1 tvg-id="ortb.bj",ORTB (1080p) [Offline] +https://edge3.vedge.infomaniak.com/livecast/ik:ortb/manifest.m3u8 diff --git a/streams/bn.m3u b/streams/bn.m3u new file mode 100644 index 000000000..4906c194d --- /dev/null +++ b/streams/bn.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RTBGo.bn",RTB Go (720p) [Offline] +https://d19j8udk9agj55.cloudfront.net/smil:rtbgo/playlist.m3u8 +#EXTINF:-1 tvg-id="RTBSukmaindera.bn",RTB Sukmaindera (720p) [Offline] +https://d19j8udk9agj55.cloudfront.net/smil:rtb1/playlist.m3u8 diff --git a/streams/bo.m3u b/streams/bo.m3u new file mode 100644 index 000000000..b2d250590 --- /dev/null +++ b/streams/bo.m3u @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlegriaTV.bo",Alegria TV (720p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 +#EXTINF:-1 tvg-id="ATB.bo",ATB (360p) [Not 24/7] +https://mediacp.hostradios.com.ar:19360/atbcochabamba/atbcochabamba.m3u8 +#EXTINF:-1 tvg-id="ATB.bo",ATB (614p) [Not 24/7] +http://186.121.206.197/live/daniel/index.m3u8 +#EXTINF:-1 tvg-id="BoPlusLive.bo",Bo Plus Live (1080p) [Offline] +https://mediastreamm.com:3342/live/boplustvlive.m3u8 +#EXTINF:-1 tvg-id="BoliviaRadioTV.bo",Bolivia Radio TV (720p) [Not 24/7] +https://play.amelbasoluciones.co:3546/live/boliviaradiotvlive.m3u8 +#EXTINF:-1 tvg-id="BoliviaTV72.bo",Bolivia TV 7.2 (480p) +https://video1.getstreamhosting.com:1936/8224/8224/playlist.m3u8 +#EXTINF:-1 tvg-id="BoliviaTV.bo",Bolivia TV (720p) [Not 24/7] +http://boliviatv1.srfms.com:5735/live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CVC.bo",Canal Vírgen de Copacabana (CVC) (818p) [Timeout] +https://cp.sradiotv.com:1936/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="CTV.bo",CTV Canal 38 Digital (Viacha) (480p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8026/index.m3u8 +#EXTINF:-1 tvg-id="DTVPlay.bo",DTV Play (Deporte Total) (720p) [Not 24/7] +https://tv.portalexpress.es:3044/live/dtplaylive.m3u8 +#EXTINF:-1 tvg-id="MegaTV.bo",MegaTV (720p) [Not 24/7] +https://solo.disfrutaenlared.com:1936/tvcbba/tvcbba/playlist.m3u8 +#EXTINF:-1 tvg-id="MegaTVYacuiba.bo",MegaTV (Yacuiba) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/mega/mega/playlist.m3u8 +#EXTINF:-1 tvg-id="PAT.bo",PAT (720p) [Offline] +http://live.cdn.comteco.com.bo/comgo/0215/index.m3u8 +#EXTINF:-1 tvg-id="RedAdvenir.bo",Red Advenir (360p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/GMIredadvenirm/playlist.m3u8 +#EXTINF:-1 tvg-id="RedPatBolivia.bo",Red Pat Bolivia [Offline] +https://5975e06a1f292.streamlock.net:4443/patbolivia/patlapaz/master.m3u8 +#EXTINF:-1 tvg-id="RedUno.bo",Red Uno (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp +#EXTINF:-1 tvg-id="RedUno.bo",Red Uno (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp +#EXTINF:-1 tvg-id="RenuevaDigital.bo",Renueva Digital (720p) +https://inliveserver.com:1936/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP.bo",RTP (720p) [Not 24/7] +http://136.243.3.70:1935/RtpBolivia/RtpBolivia/playlist.m3u8 +#EXTINF:-1 tvg-id="SEOTV.bo",SEO TV (720p) [Not 24/7] +https://panel.seo.tv.bo:3645/live/franzleonel0live.m3u8 +#EXTINF:-1 tvg-id="SEOTVKids.bo",SEO TV Kids (540p) [Not 24/7] +https://panel.seo.tv.bo:3182/live/franzleonellive.m3u8 +#EXTINF:-1 tvg-id="SEOTVNovelas.bo",SEO TV Novelas (540p) [Not 24/7] +https://panel.seo.tv.bo:3337/live/franzbalboa2live.m3u8 +#EXTINF:-1 tvg-id="TVLatinaCanal42.bo",TV Latina Canal 42 (720p) [Not 24/7] +https://master.tucableip.com/live/tvlatinamontero/playlist.m3u8 +#EXTINF:-1 tvg-id="TVU.bo",TVU (276p) [Not 24/7] +http://136.243.3.70:1935/TvUniversitaria/TvUniversitaria/playlist.m3u8 +#EXTINF:-1 tvg-id="XTOTV.bo",XTOTV (404p) [Not 24/7] +http://www.channel.tevemi.com:1935/XtoTv/XtoTv/playlist.m3u8 diff --git a/streams/br.m3u b/streams/br.m3u new file mode 100644 index 000000000..2b8c1038e --- /dev/null +++ b/streams/br.m3u @@ -0,0 +1,309 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1001Noites.br",1001 Noites (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8155/ngrp:LVW8155_41E1ciuCvO_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AgroBrasilTV.br",AgroBrasil TV (720p) [Not 24/7] +http://45.162.230.234:1935/agrobrasiltv/agrobrasiltv/playlist.m3u8 +#EXTINF:-1 tvg-id="AgroBrasilTV.br",AgroBrasil TV (720p) [Not 24/7] +https://server.flixtv.com.br/agrobrasiltv/agrobrasiltv/playlist.m3u8 +#EXTINF:-1 tvg-id="Agromais.br",Agromais (1080p) [Geo-blocked] +https://evpp.mm.uol.com.br/geob_band/agromais/playlist.m3u8 +#EXTINF:-1 tvg-id="AllSports.br",All Sports (720p) +https://5cf4a2c2512a2.streamlock.net/dgrau/dgrau/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimeTV.br",Anime TV (360p) [Not 24/7] +https://stmv1.srvif.com/animetv/animetv/playlist.m3u8 +#EXTINF:-1 tvg-id="Animestation.br",Animestation (480p) [Not 24/7] +https://stmv.video.expressolider.com.br/animestation1/animestation1/playlist.m3u8 +#EXTINF:-1 tvg-id="Band.br",Band (1080p) [Geo-blocked] +https://evpp.mm.uol.com.br/geob_band/app/playlist.m3u8 +#EXTINF:-1 tvg-id="Band.br",Band (1080p) [Geo-blocked] +https://evpp.mm.uol.com.br/geob_band/band/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bandnews (720p) [Geo-blocked] +https://evpp.mm.uol.com.br/geob_band/bandnewstv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal25Jundiai.br",Canal 25 Jundiaí (404p) [Not 24/7] +https://stream01.msolutionbrasil.com.br/hls/canal25/live.m3u8 +#EXTINF:-1 tvg-id="CanaldoBoi.br",Canal do Boi [Offline] +https://aovivo.equipea.com.br:5443/WebRTCAppEE/streams/713829795440060188004130.m3u8 +#EXTINF:-1 tvg-id="MetropoleNewsTV.br",Canal Metropolitano de Noticias (720p) [Not 24/7] +http://in.uaimacks.net.br:1935/macks/macks.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSaude.br",Canal Saúde (360p) [Not 24/7] +https://arkyvbre1g.zoeweb.tv/fiocruz/fiocruz/playlist.m3u8 +#EXTINF:-1 tvg-id="Catve2.br",Catve2 (720p) [Timeout] +https://5b33b873179a2.streamlock.net:1443/catve2/catve2/playlist.m3u8 +#EXTINF:-1 tvg-id="CatveFM.br",Catve FM (720p) [Not 24/7] +https://5b33b873179a2.streamlock.net:1443/radiocamera/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CatveMasterTV.br",Catve Master TV (720p) [Timeout] +https://5b33b873179a2.streamlock.net:1443/mastertv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CBNRio.br",CBN Rio (720p) +https://medias.sgr.globo.com/hls/vCBNRJ/vCBNRJ.m3u8 +#EXTINF:-1 tvg-id="CBNSaoPaulo.br",CBN São Paulo (720p) +https://medias.sgr.globo.com/hls/vCBNSP/vCBNSP.m3u8 +#EXTINF:-1 tvg-id="CentralTV.br",Central TV (1080p) [Offline] +http://serv2.videovox.pw/joaorodrigo7309/joaorodrigo7309/playlist.m3u8 +#EXTINF:-1 tvg-id="COMBrasil.br",COM Brasil (720p) [Not 24/7] +https://596639ebdd89b.streamlock.net/8032/8032/playlist.m3u8 +#EXTINF:-1 tvg-id="CulturaPara.br",Cultura Pará (480p) [Not 24/7] +http://str.portalcultura.com.br/funtelpa/tv_funtelpa/live.m3u8 +#EXTINF:-1 tvg-id="TVCulturaNacional.br",Cultura PR Catve (720p) [Timeout] +http://wowza4.catve.com.br:1935/live/livestream/media.m3u8 +#EXTINF:-1 tvg-id="FonteTV.br",Fonte TV (1080p) [Not 24/7] +http://flash.softhost.com.br:1935/fonte/fontetv/live.m3u8 +#EXTINF:-1 tvg-id="Futura.br",Futura (540p) [Not 24/7] +https://tv.unisc.br/hls/test.m3u8 +#EXTINF:-1 tvg-id="GhostTV.br",Ghost TV (800p) [Not 24/7] +https://stmv.video.expressolider.com.br/ghostv/ghostv/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelCartoon.br",Gospel Cartoon (480p) [Offline] +https://stmv1.srvstm.com/gospelcartoon2/gospelcartoon2/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelMovieTV.br",Gospel Movie TV (360p) +https://stmv1.srvif.com/gospelf/gospelf/playlist.m3u8 +#EXTINF:-1 tvg-id="HotFM.br",Hot FM SP (720p) [Not 24/7] +http://flash8.crossdigital.com.br/id2266/id2266/playlist.m3u8 +#EXTINF:-1 tvg-id="IMPDTV.br",IMPD TV (720p) +https://58a4464faef53.streamlock.net/impd/ngrp:impd_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.br",ISTV (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-9883/LVW9883_lFcfKysrHF/chunklist.m3u8 +#EXTINF:-1 tvg-id="ITV.br",ITV (480p) [Not 24/7] +http://tv02.logicahost.com.br:1935/itutv/itutv/live.m3u8 +#EXTINF:-1 tvg-id="JovemPanNews.br",Jovem Pan News (1080p) [Not 24/7] +https://d6yfbj4xxtrod.cloudfront.net/out/v1/7836eb391ec24452b149f3dc6df15bbd/index.m3u8 +#EXTINF:-1 tvg-id="KpopTVPlay.br",KpopTV Play (720p) [Not 24/7] +https://srv1.zcast.com.br/kpoptv/kpoptv/playlist.m3u8 +#EXTINF:-1 tvg-id="MKKWebTV.br",MKK Web TV (720p) [Not 24/7] +https://video01.logicahost.com.br/mkkwebtv/mkkwebtv/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaEraTV.br",Nova Era TV (1080p) [Not 24/7] +http://wz3.dnip.com.br:1935/novaeratv/novaeratv.sdp/live.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) +http://stream.novotempo.com/tv/tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) +http://stream.novotempo.com:1935/tv/smil:tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) +http://stream.novotempo.com:1935/tv/tvnovotempo.smil/live.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (720p) +https://stream.live.novotempo.com/tv/smil:tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NuevoTiempo.br",Nuevo Tiempo (720p) [Not 24/7] +https://stream.live.novotempo.com/tv/smil:tvnuevotiempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PeruChannel.br",Perú Channel (720p) [Not 24/7] +https://stmv1.duvoxtv.com.br/novelaplz/novelaplz/playlist.m3u8 +#EXTINF:-1 tvg-id="PUCTVGoias.br",PUC TV Goiás (326p) [Not 24/7] +http://flash.softhost.com.br:1935/pucgoias/aovivo/live.m3u8 +#EXTINF:-1 tvg-id="RecordNews.br",Record News (720p) [Geo-blocked] +https://playplusnews-lh.akamaihd.net/i/pp_nws@377849/master.m3u8 +#EXTINF:-1 tvg-id="RecordBelem.br",Record TV Belem (720p) [Geo-blocked] +https://playpluspa-lh.akamaihd.net/i/pp_pa@377468/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="Record.br",Record TV Brasilia (720p) [Geo-blocked] +https://playplusbsa-lh.akamaihd.net/i/pp_bsa@377860/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="",Record TV Goias (720p) [Geo-blocked] +https://playplusgoya-lh.akamaihd.net/i/pp_gna@377833/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordItapoan.br",Record TV Itapoan (720p) [Geo-blocked] +https://playplussdr-lh.akamaihd.net/i/pp_sdr@377858/index_720_av-b.m3u8 +#EXTINF:-1 tvg-id="Record.br",Record TV Manaus (720p) [Geo-blocked] +https://playplusmao-lh.akamaihd.net/i/pp_mao@409195/master.m3u8 +#EXTINF:-1 tvg-id="RecordMinas.br",Record TV Minas (720p) [Geo-blocked] +https://playplusbh-lh.akamaihd.net/i/pp_bh@377862/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordRio.br",Record TV Rio (720p) [Geo-blocked] +https://playplusrjo-lh.akamaihd.net/i/pp_rj@377859/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordPortoAlegre.br",Record TV RS (720p) [Geo-blocked] +https://playpluspoa-lh.akamaihd.net/i/pp_poa@377864/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordSaoPaulo.br",Record TV SP (720p) [Geo-blocked] +https://playplusspo-lh.akamaihd.net/i/pp_sp@350176/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RedeBrasil.br",Rede Brasil (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/rbtv/rbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeBrasildeComunicacao.br",Rede Brasil de Comunicação (720p) [Not 24/7] +http://rbc.directradios.com:1935/rbc/rbc/live.m3u8 +#EXTINF:-1 tvg-id="RedeCNTCuritiba.br",Rede CNT (Curitiba) (360p) [Not 24/7] +https://dd8umsy8yf96u.cloudfront.net/live/cnt-curitiba.m3u8 +#EXTINF:-1 tvg-id="RedeCNTSaoPaulo.br",Rede CNT (São Paulo) (180p) [Not 24/7] +https://dd8umsy8yf96u.cloudfront.net/live/cnt-americana.m3u8 +#EXTINF:-1 tvg-id="RedeFamilia.br",Rede Família (360p) [Not 24/7] +https://5a1c76baf08c0.streamlock.net/familia/smil:familia.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGloboRiodeJaneiro.br",Rede Globo RJ (720p) [Offline] +http://live.video.globo.com/h/1402196682759012345678915746027599876543210hM4EA1neMoQoIiUyVn1TNg/k/app/a/A/u/anyone/d/s/hls-globo-rj/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeGospel.br",Rede Gospel (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8719/LVW8719_AcLVAxWy5J/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeMaoAmiga.br",Rede Mão Amiga (480p) [Not 24/7] +http://streaming03.zas.media:1935/redemaoamiga/redemaoamiga/live.m3u8 +#EXTINF:-1 tvg-id="RedeMinas.br",Rede Minas (1080p) [Not 24/7] +https://v4-slbps-sambavideos.akamaized.net/live/3282,8114,ec4b5a296d97fa99bf990662f5b4f8e1;base64np;Mc8VDxqNjXKCAf8!/amlst:Mc_tFgfGiHOdQXPB/chunklist_.m3u8 +#EXTINF:-1 tvg-id="RedeRC.br",Rede RC (360p) [Not 24/7] +http://tv02.logicahost.com.br:1935/rederc/rederc/live.m3u8 +#EXTINF:-1 tvg-id="RedeSeculo21.br",Rede Século 21 (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-10024/ngrp:LVW10024_H3QLdAY6kx_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeSuper.br",Rede Super (432p) [Not 24/7] +https://api.new.livestream.com/accounts/10205943/events/3429501/live.m3u8 +#EXTINF:-1 tvg-id="RedeTVES.br",Rede TV! ES (720p) [Offline] +https://hls.brasilstream.com.br/live/redetves/redetves/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPampa.br",Rede TV! Pampa (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvpampa/tvpampa/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeTV.br",Rede TV! SP (720p) [Not 24/7] +https://hls.brasilstream.com.br/live/redetv/redetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeVida.br",Rede Vida (720p) [Not 24/7] +https://cvd1.cds.ebtcvd.net/live-redevida/smil:redevida.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeTVTocantins.br",RedeTV! Tocantins (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/redetvro/redetvro/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCartoon.br",Retrô Cartoon (480p) [Not 24/7] +https://stmv1.srvif.com/retrotv/retrotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SantaCeciliaTV.br",Santa Cecilia TV (288p) [Not 24/7] +http://flash1.crossdigital.com.br/2063/2063/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeMassa.br",SBT Rede Massa (720p) [Not 24/7] +https://cdn-cdn-iguacu.ciclano.io:1443/cdn-iguacu/cdn-iguacu/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadeVerde.br",SBT TV Cidade Verde (1080p) [Not 24/7] +https://stmv1.transmissaodigital.com/cidadeverde/cidadeverde/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornal.br",SBT TV Jornal Caruaru (720p) [Not 24/7] +https://evpp.mm.uol.com.br/ne10/ne10-tvjornal-caruaru-video-web.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornal.br",SBT TV Jornal Recife (720p) [Not 24/7] +https://evpp.mm.uol.com.br/ne10/ne10.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSerraDourada.br",SBT TV Serra Dourada (720p) [Not 24/7] +https://5a1c76baf08c0.streamlock.net/tvsd2/smil:tvsd2_20042020.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Sesc TV (1080p) [Not 24/7] +https://slbps-ml-sambatech.akamaized.net/samba-live/2472/7424/8a00fe7cc36ac263b2c3e9324497d5ff/video/0c884f97-4264-446f-abcd-03aa46089a96_index.m3u8 +#EXTINF:-1 tvg-id="",TELE CINE ACTION (720p) +http://painelvj.com.br/tvaguaboa2/tvaguaboa2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TerraViva.br",Terra Viva (720p) [Not 24/7] +http://evpp.mm.uol.com.br:1935/band_live/terraviva/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAberta.br",TV Aberta (1080p) [Not 24/7] +https://cdn-canalpaulo.ciclano.io:1443/canalpaulo/canalpaulo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVALMG.br",TV ALMG (720p) [Timeout] +https://streaming.almg.gov.br/live/tvalmg.m3u8 +#EXTINF:-1 tvg-id="TVAlternativa.br",TV Alternativa (614p) [Not 24/7] +http://stmv8.conectastm.com/wagner1168/wagner1168/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAparecida.br",TV Aparecida (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-9716/LVW9716_HbtQtezcaw/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBirigui.br",TV Birigui (640p) +http://tv02.logicahost.com.br:1935/tvdigitalbirigui/tvdigitalbirigui/live.m3u8 +#EXTINF:-1 tvg-id="TVBirigui.br",TV Birigui (640p) +https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/tvdigitalbirigui/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBNO.br",TV BNO (270p) [Not 24/7] +http://tv02.logicahost.com.br:1935/bonner/bonner/live.m3u8 +#EXTINF:-1 tvg-id="TVBrasil.br",TV Brasil [Timeout] +https://edge-rj-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(kyMRVuhfTf2jk2bhk4oZVw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGXTwBm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuhde-5ZIl_f4tK0pFaa_lpv5gVXuaKHBhpJxYHQpAySe8UfuTry1gihrKpUq-DVrvTLAVcN_NYL-OR5gME)'t(ccA)b(Q_39q61nTExyyL-LZijmcTvd7twmucXBiaA)))/live_720_index.m3u8 +#EXTINF:-1 tvg-id="TVCamara2.br",TV Câmara 2 (1080p) [Not 24/7] +https://stream3.camara.gov.br/tv2/manifest.m3u8 +#EXTINF:-1 tvg-id="TVCamara.br",TV Câmara (1080p) +https://stream3.camara.gov.br/tv1/manifest.m3u8 +#EXTINF:-1 tvg-id="",TV Camara de Sao Paulo (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8711/ngrp:LVW8711_tG0F3TEBDL_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCapitalLucelia.br",TV Capital Lucelia (320p) [Not 24/7] +http://tv02.logicahost.com.br:1935/tvcapital/tvcapital/live.m3u8 +#EXTINF:-1 tvg-id="TVCarioca.br",TV Carioca (720p) +https://srv5.zcast.com.br/tvcarioca/tvcarioca/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadeCanal9.br",TV Cidade Canal 9 (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvcidade/tvcidade/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadedePetropolis.br",TV Cidade de Petrópolis (1080p) [Not 24/7] +https://video01.kshost.com.br:4443/inside2133/inside2133/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadedeSaoPaulo.br",TV Cidade de Sao Paulo [Not 24/7] +https://cast.cdnseguro.com:19360/8012/8012.m3u8 +#EXTINF:-1 tvg-id="TVCinec.br",TV Cinec (720p) [Not 24/7] +http://tv01.logicahost.com.br:1935/tvcinec/tvcinec/live.m3u8 +#EXTINF:-1 tvg-id="TVDestak.br",TV Destak (320p) +http://tv02.logicahost.com.br:1935/pascoal/pascoal/live.m3u8 +#EXTINF:-1 tvg-id="TVDestak.br",TV Destak (360p) +https://59f2354c05961.streamlock.net:1443/pascoal/pascoal/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDiariodoSertao.br",TV Diário do Sertão (720p) +http://painelvj.com.br:1935/pdsertaotv/pdsertaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEscola.br",TV Escola [Timeout] +https://edge-pe-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(iKyPRJ66GZqYJf0OVp_mxw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGVQABm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuAfecBVa16Et9eMjlLC13Rq6Cwwi8mycU0Iwr-66QiAe98vgBCT-AiPs61W_9bjrtb8ATEJw-JsxpVNlotY)'t(wDM)b(pbCqvGJQQWqY9cAtI-9-O9bngy67xc2Xu8ug)))/live_540_index.m3u8 +#EXTINF:-1 tvg-id="TVEvangelizar.br",TV Evangelizar (480p) +https://5f593df7851db.streamlock.net/evangelizar/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVFuturo.br",TV Futuro (720p) [Not 24/7] +https://streaming03.zas.media/tvfuturo/tvfuturo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGalegaBlumenau.br",TV Galega Blumenau (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8538/LVW8538_KBtZ9UMIZn/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGazeta.br",TV Gazeta (720p) [Not 24/7] +https://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 +#EXTINF:-1 tvg-id="TVGideoes.br",TV Gideoes (1080p) [Not 24/7] +https://streaming01.zas.media/gideoes/programacao/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGuara.br",TV Guará (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvguara/tvguara/playlist.m3u8 +#EXTINF:-1 tvg-id="TVInterlagos.br",TV Interlagos (480p) [Not 24/7] +http://tv.tvalphanet.com.br:1935/tvinterlagos/tvinterlagos/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornaldoNordeste.br",TV Jornal do Nordeste (720p) [Not 24/7] +https://5cf4a2c2512a2.streamlock.net/jornaldonorteste/jornaldonorteste/playlist.m3u8 +#EXTINF:-1 tvg-id="TVLiberdade.br",TV Liberdade (720p) [Geo-blocked] +https://5c483b9d1019c.streamlock.net/8238/8238/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMackenzie.br",TV Mackenzie (480p) [Not 24/7] +https://player.internetaovivo.com:8443/live_tvmackenzieabr/tvmackenzieabr/playlist.m3u8 +#EXTINF:-1 tvg-id="TVManchete.br",TV Manchete (360p) [Offline] +https://srv5.zcast.com.br/tvmanchete/tvmanchete/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMAX.br",TV MAX (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvmax/tvmax/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMetropole.br",TV Metropole (720p) [Not 24/7] +https://cdn-fundacao-2110.ciclano.io:1443/fundacao-2110/fundacao-2110/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMetropolitanaRio.br",TV Metropolitana Rio (480p) [Offline] +https://59f1cbe63db89.streamlock.net:1443/caxiastv/caxiastv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMon.br",TV Mon (720p) +https://srv1.zcast.com.br/tvmon/tvmon/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNovaOnda.br",TV Nova Onda (720p) +https://5c483b9d1019c.streamlock.net/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPaiEterno.br",TV Pai Eterno (360p) [Not 24/7] +http://flash8.crossdigital.com.br/2306/2306/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPaiEterno.br",TV Pai Eterno (480p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/teste01/teste01/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPantanalMS.br",TV Pantanal MS (720p) [Not 24/7] +https://5e837408ea907.streamlock.net:1936/tvpantanalms/tvpantanalms/playlist.m3u8 +#EXTINF:-1 tvg-id="TVParanaTurismo.br",TV Paraná Turismo (720p) [Not 24/7] +http://200.189.113.201/hls/tve.m3u8 +#EXTINF:-1 tvg-id="TVPocos.br",TV Poços (192p) [Not 24/7] +http://rtmp.cdn.upx.net.br/00084/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSantaCruz.br",TV Santa Cruz (720p) [Not 24/7] +https://rtmp.info/tvsantacruz/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV SERIES (480p) [Offline] +https://stmv1.srvstm.com/tvserie/tvserie/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSolComunidade.br",TV Sol Comunidade (480p) [Not 24/7] +http://streaming03.zas.media:1935/tvsol/tvsol/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTerceiroAnjo.br",TV Terceiro Anjo (360p) [Not 24/7] +https://streamer1.streamhost.org/salive/GMI3anjoh/livestream.m3u8 +#EXTINF:-1 tvg-id="TVThathi.br",TV Thathi (720p) [Not 24/7] +https://cdn-grupo-10049.ciclano.io:1443/grupo-10049/grupo-10049/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTokyo.br",TV Tokyo (360p) [Not 24/7] +https://stmv1.voxtvhd.com.br/tvtokio/tvtokio/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTropical.br",TV Tropical (480p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvtropical/tvtropical/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUFG.br",TV UFG (720p) [Not 24/7] +http://flash.softhost.com.br:1935/ufg/tvufgweb/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUFOP.br",TV UFOP [Timeout] +https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(6pbmcjLXNoerDLdAhoXBxw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuXyAosvuqvlMJtsMkooySBOlQbVM33PgsYPQdea2CdwV3jCwh3bEWxgkPO8qmBPQtt_5bUEV1Mi_2t1AjM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcUr5z4MZQ)))/index.m3u8 +#EXTINF:-1 tvg-id="TVUniaoFortaleza.br",TV Uniao (1080p) [Not 24/7] +http://stmv1.ifantasy.com.br/admin/admin/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUniSantos.br",TV UniSantos (240p) [Not 24/7] +http://live.cdn.upx.com/7550/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUniversal.br",TV Universal [Offline] +https://14398c.ha.azioncdn.net/primary/smil:tv_universal.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVVerdesCampos.br",TV Verdes Campos (360p) [Not 24/7] +https://596639ebdd89b.streamlock.net/8124/8124/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCI.br",TVCI (360p) [Not 24/7] +http://flash8.crossdigital.com.br:1935/2306/2306/live.m3u8 +#EXTINF:-1 tvg-id="TVEBahia.br",TVE Bahia (720p) [Not 24/7] +http://stream2.ba.gov.br/hls-live/livepkgr/_definst_/irdeb/pgm-1.m3u8 +#EXTINF:-1 tvg-id="TVE.br",TVE RS (1080p) [Not 24/7] +http://selpro1348.procergs.com.br:1935/tve/stve/playlist.m3u8 +#EXTINF:-1 tvg-id="TVideoNews.br",TVídeoNews (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvideonews/_definst_/tvideonews/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVMaticComedy.br",TVMatic Comedy (720p) [Timeout] +http://cdn.tvmatic.net/comedy.m3u8 +#EXTINF:-1 tvg-id="TVMaticCrafts.br",TVMatic Crafts (720p) [Timeout] +http://cdn.tvmatic.net/crafts.m3u8 +#EXTINF:-1 tvg-id="TVMaticFacebook.br",TVMatic Facebook (720p) [Timeout] +http://cdn.tvmatic.net/facebook.m3u8 +#EXTINF:-1 tvg-id="TVMaticFight.br",TVMatic Fight (720p) [Timeout] +http://cdn.tvmatic.net/fight.m3u8 +#EXTINF:-1 tvg-id="TVMaticFunny.br",TVMatic Funny (720p) [Timeout] +http://cdn.tvmatic.net/funny.m3u8 +#EXTINF:-1 tvg-id="TVMaticSport.br",TVMatic Sport (720p) [Timeout] +http://cdn.tvmatic.net/sport.m3u8 +#EXTINF:-1 tvg-id="TVMaticTikTok.br",TVMatic TikTok (720p) [Timeout] +http://cdn.tvmatic.net/tiktok.m3u8 +#EXTINF:-1 tvg-id="TVNBrasil.br",TVN Brasil (720p) [Not 24/7] +http://painelvj.com.br:1935/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNBrasil.br",TVN Brasil (720p) [Not 24/7] +http://wz3.dnip.com.br/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVunisat.br",TVunisat (360p) [Not 24/7] +https://stmv1.srvstm.com/jurandir3193/jurandir3193/playlist.m3u8 +#EXTINF:-1 tvg-id="UNBTV.br",UNBTV [Timeout] +https://edge-go-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(XavC51HboPDZJtji_e3szw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdjsnrQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuX9AbUB8KvlMJtsMkooySBOlQbVM33PgsYPQdea2BJ0ehzbwQ39JhRwi_LnomRVQOY02rJ-d2IH3hF-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcVqJj_MZQ)))/live_1080_index.m3u8 +#EXTINF:-1 tvg-id="UniTVPortoAlegre.br",UniTV Porto Alegre (480p) +http://unitvaovivo.ufrgs.br:8080/live.ogg +#EXTINF:-1 tvg-id="UPFTV.br",UPFTV [Timeout] +https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(Zpw89V7JSRj33uzTBmvflA)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyvnyAaUn8qvlMJtsMkooySBOlQbVM33PgsYPQdea2BUvej3szg6oEmxOu__mykl-Ud831Jp-clI-5BB-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kAUqZ79MZQ)))/live_768_index.m3u8 +#EXTINF:-1 tvg-id="WhamTV.br",Wham TV (720p) [Offline] +https://srv5.zcast.com.br/andre4369/andre4369/playlist.m3u8 +#EXTINF:-1 tvg-id="Yeeaah.br",Yeeaah! (720p) [Not 24/7] +https://srv3.zcast.com.br/yeeaah/yeeaah/playlist.m3u8 diff --git a/channels/br_pluto.m3u b/streams/br_pluto.m3u similarity index 65% rename from channels/br_pluto.m3u rename to streams/br_pluto.m3u index 8434b54f1..fe51714a6 100644 --- a/channels/br_pluto.m3u +++ b/streams/br_pluto.m3u @@ -1,123 +1,123 @@ #EXTM3U -#EXTINF:-1 tvg-id="AVidaModernaDeRocko.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6df6293a12e10007017396/colorLogoPNG.png" group-title="Kids",A vida moderna de Rocko (720p) +#EXTINF:-1 tvg-id="AVidaModernaDeRocko.br",A vida moderna de Rocko (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="AsAventurasDeJackieChan.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6079c1539b05aa0007a57495/colorLogoPNG.png" group-title="Kids",As Aventuras de Jackie Chan (684p) +#EXTINF:-1 tvg-id="AsAventurasDeJackieChan.br",As Aventuras de Jackie Chan (684p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c1539b05aa0007a57495/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="AsPistasDeBlue.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f99aad4e82db50007fac4b2/colorLogoPNG.png" group-title="Kids",As Pistas de Blue (480p) +#EXTINF:-1 tvg-id="AsPistasDeBlue.br",As Pistas de Blue (480p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Babyfirst.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f4fb4cf605ddf000748e16f/colorLogoPNG.png" group-title="Kids",Babyfirst (720p) +#EXTINF:-1 tvg-id="Babyfirst.br",Babyfirst (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f4fb4cf605ddf000748e16f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="BetBeingMaryJane.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60a8126a0ac3970007f850fe/colorLogoPNG.png" group-title="Entertainment",BET Being Mary Jane (720p) +#EXTINF:-1 tvg-id="BetBeingMaryJane.br",BET Being Mary Jane (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60a8126a0ac3970007f850fe/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="BetPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5ff768b6a4c8b80008498610/colorLogoPNG.png" group-title="Entertainment",BET Pluto TV (720p) +#EXTINF:-1 tvg-id="BetPlutoTV.br",BET Pluto TV (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff768b6a4c8b80008498610/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ComedyCentralPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f357e91b18f0b00073583d2/colorLogoPNG.png" group-title="Comedy",Comedy Central Pluto TV (720p) +#EXTINF:-1 tvg-id="ComedyCentralPlutoTV.br",Comedy Central Pluto TV (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f357e91b18f0b00073583d2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ComedyCentralSouthPark.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/609ae66b359b270007869ff1/colorLogoPNG.png" group-title="Comedy",Comedy Central South Park (720p) [Not 24/7] +#EXTINF:-1 tvg-id="ComedyCentralSouthPark.br",Comedy Central South Park (720p) [Not 24/7] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/609ae66b359b270007869ff1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FailArmy.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5141c1605ddf000748eb1b/colorLogoPNG.png" group-title="Comedy",FailArmy (720p) +#EXTINF:-1 tvg-id="FailArmy.br",FailArmy (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FilmesSuspense.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171d3442a0500007362f22/colorLogoPNG.png" group-title="Movies",Filmes Suspense (720p) +#EXTINF:-1 tvg-id="FilmesSuspense.br",Filmes Suspense (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FuelTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6144d088516ea8000739076a/colorLogoPNG.png" group-title="Sports",FUEL TV (720p) +#EXTINF:-1 tvg-id="FuelTV.br",FUEL TV (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6144d088516ea8000739076a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="GuiaDeCanais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fa97a8a75cc210007c9041d/colorLogoPNG.png" group-title="",Guia de Canais (720p) +#EXTINF:-1 tvg-id="GuiaDeCanais.br",Guia de Canais (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa97a8a75cc210007c9041d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="JeannieEUmGenio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6079c058aa05ac0007d10054/colorLogoPNG.png" group-title="Series",Jeannie é um Gênio (720p) +#EXTINF:-1 tvg-id="JeannieEUmGenio.br",Jeannie é um Gênio (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c058aa05ac0007d10054/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="JovemPanPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/602e80c762306a0007179876/colorLogoPNG.png" group-title="Entertainment",Jovem Pan Pluto TV (720p) +#EXTINF:-1 tvg-id="JovemPanPlutoTV.br",Jovem Pan Pluto TV (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/602e80c762306a0007179876/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Loupe.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/600b248969c6580007e91a2d/colorLogoPNG.png" group-title="Lifestyle",Loupe (720p) +#EXTINF:-1 tvg-id="Loupe.br",Loupe (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/600b248969c6580007e91a2d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Masterchef.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6077045b6031bd00078de127/colorLogoPNG.png" group-title="Entertainment",MasterChef (720p) +#EXTINF:-1 tvg-id="Masterchef.br",MasterChef (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6077045b6031bd00078de127/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVAreYouTheOne.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6108d8cc331900075e98e4/colorLogoPNG.png" group-title="Entertainment",MTV Are you the One? (720p) +#EXTINF:-1 tvg-id="MTVAreYouTheOne.br",MTV Are you the One? (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVBiggestPop.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6047fbdbbb776a0007e7f2ff/colorLogoPNG.png" group-title="Music",MTV Biggest Pop (720p) +#EXTINF:-1 tvg-id="MTVBiggestPop.br",MTV Biggest Pop (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047fbdbbb776a0007e7f2ff/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1212fb81e85c00077ae9ef/colorLogoPNG.png" group-title="Entertainment",MTV Pluto TV (720p) +#EXTINF:-1 tvg-id="MTVPlutoTV.br",MTV Pluto TV (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVSpankinNew.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6047ff2e5e61cf000784e4da/colorLogoPNG.png" group-title="Music",MTV Spankin' New (720p) +#EXTINF:-1 tvg-id="MTVSpankinNew.br",MTV Spankin' New (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047ff2e5e61cf000784e4da/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Naruto.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6df5a173d7340007c559f7/colorLogoPNG.png" group-title="Animation",Naruto (720p) +#EXTINF:-1 tvg-id="Naruto.br",Naruto (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickClassico.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12151794c1800007a8ae63/colorLogoPNG.png" group-title="Kids",Nick Clássico (720p) +#EXTINF:-1 tvg-id="NickClassico.br",Nick Clássico (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickJrClub.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121460b73ac6000719fbaf/colorLogoPNG.png" group-title="Kids",Nick Jr. Club (720p) +#EXTINF:-1 tvg-id="NickJrClub.br",Nick Jr. Club (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickTeen.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60f5fabf0721880007cd50e3/colorLogoPNG.png" group-title="Family",Nick Teen (720p) +#EXTINF:-1 tvg-id="NickTeen.br",Nick Teen (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f5fabf0721880007cd50e3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NoseyCasos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f9b096236af340008da3779/colorLogoPNG.png" group-title="Entertainment",Nosey Casos (720p) [Offline] +#EXTINF:-1 tvg-id="NoseyCasos.br",Nosey Casos (720p) [Offline] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b096236af340008da3779/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NoseyEscandalos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f9b05a99547eb0007676b02/colorLogoPNG.png" group-title="Entertainment",Nosey Escândalos (720p) +#EXTINF:-1 tvg-id="NoseyEscandalos.br",Nosey Escândalos (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b05a99547eb0007676b02/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="OEncantadorDeCaes.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/61099df8cee03b00074b2ecf/colorLogoPNG.png" group-title="Entertainment",O Encantador de Cães (720p) +#EXTINF:-1 tvg-id="OEncantadorDeCaes.br",O Encantador de Cães (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/61099df8cee03b00074b2ecf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="OReinoInfantil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5c216df68f920007888315/colorLogoPNG.png" group-title="Kids",O Reino Infantil (720p) +#EXTINF:-1 tvg-id="OReinoInfantil.br",O Reino Infantil (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5c216df68f920007888315/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ParamountPlusApresenta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60072798dcf437000755b4f3/colorLogoPNG.png" group-title="General",Paramount+ Apresenta (720p) +#EXTINF:-1 tvg-id="ParamountPlusApresenta.br",Paramount+ Apresenta (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60072798dcf437000755b4f3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PeopleAreAwesome.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f515d080e738d000739e19c/colorLogoPNG.png" group-title="Entertainment",People are Awesome (720p) +#EXTINF:-1 tvg-id="PeopleAreAwesome.br",People are Awesome (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnime.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12136385bccc00070142ed/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (720p) +#EXTINF:-1 tvg-id="PlutoTVAnime.br",Pluto TV Anime (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnimeAcao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b79c558393100078faeef/colorLogoPNG.png" group-title="Animation",Pluto TV Anime Ação (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAcao.br",Pluto TV Anime Ação (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b79c558393100078faeef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineClassicos" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fa1612a669ba0000702017b/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Clássicos (480p) +#EXTINF:-1 tvg-id="",Pluto TV Cine Clássicos (480p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa1612a669ba0000702017b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineComedia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12101f0b12f00007844c7c/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Comédia (720p) +#EXTINF:-1 tvg-id="PlutoTVCineComedia.br",Pluto TV Cine Comédia (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineDrama.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1210d14ae1f80007bafb1d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVCineDrama.br",Pluto TV Cine Drama (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineFamilia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Família (720p) +#EXTINF:-1 tvg-id="PlutoTVCineFamilia.br",Pluto TV Cine Família (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineRomance.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171f988ab9780007fa95ea/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVCineRomance.br",Pluto TV Cine Romance (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f988ab9780007fa95ea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineSucessos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f120e94a5714d00074576a1/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Sucessos (720p) +#EXTINF:-1 tvg-id="PlutoTVCineSucessos.br",Pluto TV Cine Sucessos (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120e94a5714d00074576a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineTerror.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12111c9e6c2c00078ef3bb/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) +#EXTINF:-1 tvg-id="PlutoTVCineTerror.br",Pluto TV Cine Terror (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVComedia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6001f3018502100007f528ac/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédia (720p) +#EXTINF:-1 tvg-id="PlutoTVComedia.br",Pluto TV Comédia (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6001f3018502100007f528ac/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVEstiloDeVida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60f8841a4865da0007421177/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Estilo de Vida (720p) +#EXTINF:-1 tvg-id="PlutoTVEstiloDeVida.br",Pluto TV Estilo de Vida (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f8841a4865da0007421177/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFashionbox.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f516730b78b7600079294f5/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashionbox (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFashionbox.br",Pluto TV Fashionbox (720p) [Not 24/7] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f120f41b7d403000783a6d6/colorLogoPNG.png" group-title="Movies",Pluto TV Filmes Ação (720p) +#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.br",Pluto TV Filmes Ação (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFilmesNacionais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5a545d0dbf7f0007c09408/colorLogoPNG.png" group-title="Movies",Pluto TV Filmes Nacionais (720p) +#EXTINF:-1 tvg-id="PlutoTVFilmesNacionais.br",Pluto TV Filmes Nacionais (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5a545d0dbf7f0007c09408/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVInvestigacao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f32cf37c9ff2b00082adbc8/colorLogoPNG.png" group-title="Series",Pluto TV Investigação (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestigacao.br",Pluto TV Investigação (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVJunior.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12141b146d760007934ea7/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +#EXTINF:-1 tvg-id="PlutoTVJunior.br",Pluto TV Junior (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVKaraoke.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b99d633a72b00078e05ad/colorLogoPNG.png" group-title="Music",Pluto TV Karaokê por Stingray (480p) +#EXTINF:-1 tvg-id="PlutoTVKaraoke.br",Pluto TV Karaokê por Stingray (480p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b99d633a72b00078e05ad/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVKids.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1214a637c6fd00079c652f/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (684p) +#EXTINF:-1 tvg-id="PlutoTVKids.br",Pluto TV Kids (684p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVMisterios.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fac52f142044f00078e2a51/colorLogoPNG.png" group-title="Documentary",Pluto TV Mistérios (720p) +#EXTINF:-1 tvg-id="PlutoTVMisterios.br",Pluto TV Mistérios (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fac52f142044f00078e2a51/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNatureza.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1213ba0ecebc00070e170f/colorLogoPNG.png" group-title="Documentary",Pluto TV Natureza (720p) +#EXTINF:-1 tvg-id="PlutoTVNatureza.br",Pluto TV Natureza (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVPaisagens.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604a8dedbca75b0007b1c753/colorLogoPNG.png" group-title="",Pluto TV Paisagens por Stingray (720p) +#EXTINF:-1 tvg-id="PlutoTVPaisagens.br",Pluto TV Paisagens por Stingray (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604a8dedbca75b0007b1c753/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVRecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6102e04e9ab1db0007a980a1/colorLogoPNG.png" group-title="News",Pluto TV Record News (720p) +#EXTINF:-1 tvg-id="PlutoTVRecordNews.br",Pluto TV Record News (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6102e04e9ab1db0007a980a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVRetro.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1212ad1728050007a523b8/colorLogoPNG.png" group-title="Series",Pluto TV Retrô (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRetro.br",Pluto TV Retrô (720p) [Not 24/7] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVSeries.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121262a189a800076b9386/colorLogoPNG.png" group-title="Series",Pluto TV Séries (720p) +#EXTINF:-1 tvg-id="PlutoTVSeries.br",Pluto TV Séries (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVShows.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b91e0692f770007d9f33f/colorLogoPNG.png" group-title="Music",Pluto TV Shows por Stingray (720p) +#EXTINF:-1 tvg-id="PlutoTVShows.br",Pluto TV Shows por Stingray (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b91e0692f770007d9f33f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVVidaReal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f32d4d9ec194100070c7449/colorLogoPNG.png" group-title="Documentary",Pluto TV Vida Real (720p) +#EXTINF:-1 tvg-id="PlutoTVVidaReal.br",Pluto TV Vida Real (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PortaDosFundos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f36f2346ede750007332d11/colorLogoPNG.png" group-title="Comedy",Porta dos Fundos (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PortaDosFundos.br",Porta dos Fundos (720p) [Not 24/7] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Tastemade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fd1419a3b4f4b000773ba85/colorLogoPNG.png" group-title="Lifestyle",Tastemade (720p) +#EXTINF:-1 tvg-id="Tastemade.br",Tastemade (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ThePetCollective.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f515ebac01c0f00080e8439/colorLogoPNG.png" group-title="Comedy",The Pet Collective (720p) +#EXTINF:-1 tvg-id="ThePetCollective.br",The Pet Collective (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Tokusato.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5ff609de50ab210008025c1b/colorLogoPNG.png" group-title="Animation",Tokusato (720p) +#EXTINF:-1 tvg-id="Tokusato.br",Tokusato (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff609de50ab210008025c1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="TurmaDaMonica.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f997e44949bc70007a6941e/colorLogoPNG.png" group-title="Kids",Turma da Mônica (720p) +#EXTINF:-1 tvg-id="TurmaDaMonica.br",Turma da Mônica (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY diff --git a/streams/br_samsung.m3u b/streams/br_samsung.m3u new file mode 100644 index 000000000..e183108ab --- /dev/null +++ b/streams/br_samsung.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArcadeCloudBrazil.us",Arcade Cloud (Brazil) (720p) [Offline] +https://arcade-cloud-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-3-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTVBrazil.us",Dark Matter TV Brazil (720p) +https://darkmatter-por-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Português (720p) [Offline] +https://euronews-euronews-portugues-1-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) +https://fueltv-fueltv-9-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insight-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) +https://introuble-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) +https://inwild-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkBrazil.us",MyTime movie network Brazil (720p) +https://appletree-mytime-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RecordNews.br",Record News (720p) +https://rede-muhler-recordnews-1-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeBrazil.us",Runtime (Brazil) (1080p) [Geo-blocked] +https://runtimebrazil-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeBrasil.us",Tastemade Brasil (1080p) +https://tastemade-pt16intl-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveBrazil.us",The Pet Collective Brazil (720p) [Offline] +https://the-pet-collective-international-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyBrazil.us",WeatherSpy Brazil (720p) [Offline] +https://jukin-weatherspy-2-br.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/bs.m3u b/streams/bs.m3u new file mode 100644 index 000000000..e2a5af748 --- /dev/null +++ b/streams/bs.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="IslandLuckTV.bs",Island Luck TV (1080p) [Not 24/7] +https://wowzaprod225-i.akamaihd.net/hls/live/1006296/23aa8a88/playlist.m3u8 +#EXTINF:-1 tvg-id="TheParliamentaryChannel.bs",The Parliamentary Channel (480p) [Not 24/7] +https://cloud.streamcomedia.com/parliamentarychannel/smil:parliamentarychannel_streams.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZNSTV.bs",ZNS TV (1080p) [Not 24/7] +https://cloud.streamcomedia.com/znstv/smil:znstv_streams.smil/playlist.m3u8 diff --git a/streams/by.m3u b/streams/by.m3u new file mode 100644 index 000000000..9ecb7a1d1 --- /dev/null +++ b/streams/by.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="8kanal.by",8 канал (Витебск) (576p) [Not 24/7] +http://95.46.208.8:24433/art +#EXTINF:-1 tvg-id="Belarus3.by",Беларусь 3 (1080p) [Not 24/7] +https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Belarus4.by",Беларусь 4 (576p) [Timeout] +http://95.46.208.8:26258/belarus4 +#EXTINF:-1 tvg-id="Belarus24.by",Беларусь 24 (1080p) +https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Vitebsk.by",Витебск (720p) [Not 24/7] +https://flu.vtv.by/tvt-non-by/playlist.m3u8 +#EXTINF:-1 tvg-id="NasheTV.by",Наше ТВ (Витебск) (576p) [Timeout] +http://95.46.208.8:26259/nashe +#EXTINF:-1 tvg-id="ONT.by",ОНТ (576p) +https://stream.dc.beltelecom.by/ont/ont/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (576p) +http://hz1.teleport.cc/HLS/SD.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (576p) +http://rtmp.one.by:1200 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (720p) +http://hz1.teleport.cc/HLS/HD.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (1080p) +http://rtmp.one.by:1300 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (2160p) [Timeout] +http://rtmp.one.by:1499 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by",Первый Музыкальный Канал Россия (576p) +http://rtmp.one.by:2200 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by",Первый Музыкальный Канал Россия (1080p) +http://rtmp.one.by:2300 +#EXTINF:-1 tvg-id="RadioHit.by",Радио Хит (Орск) (720p) +http://lova.me/hls/hithd.m3u8 +#EXTINF:-1 tvg-id="STV.by",СТВ (576p) [Not 24/7] +http://212.98.171.116/HLS/ctvby/playlist.m3u8 diff --git a/streams/by_sluhay.m3u b/streams/by_sluhay.m3u new file mode 100644 index 000000000..9c5235c51 --- /dev/null +++ b/streams/by_sluhay.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Sluhayby.by",Sluhay.by (720p) [Not 24/7] +https://sluhay.by/live/Ch045pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyAillion.by",Sluhay.by Aillion (720p) [Not 24/7] +https://sluhay.by/live/Ch149pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyAmoungYourGod.by",Sluhay.by Among Your God (720p) [Not 24/7] +https://sluhay.by/live/Ch086pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyChrist.by",Sluhay.by Christ (720p) [Not 24/7] +https://sluhay.by/live/Ch064pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyEDM.by",Sluhay.by EDM (720p) [Not 24/7] +https://sluhay.by/live/Ch091pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyLenadi.by",Sluhay.by Lenadi (720p) [Not 24/7] +https://sluhay.by/live/Ch052pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyLive.by",Sluhay.by Live (720p) [Not 24/7] +https://sluhay.by/live/Ch173pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyMova.by",Sluhay.by Mova (720p) [Not 24/7] +https://sluhay.by/live/Ch034pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyPop.by",Sluhay.by Pop (720p) [Not 24/7] +https://sluhay.by/live/Ch066pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyRap.by",Sluhay.by Rap (720p) [Not 24/7] +https://sluhay.by/live/Ch107pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyRock.by",Sluhay.by Rock (720p) [Not 24/7] +https://sluhay.by/live/Ch114pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyXtip.by",Sluhay.by Xtip (720p) [Not 24/7] +https://sluhay.by/live/Ch056pub/index.m3u8 diff --git a/streams/ca.m3u b/streams/ca.m3u new file mode 100644 index 000000000..330ba7f5e --- /dev/null +++ b/streams/ca.m3u @@ -0,0 +1,273 @@ +#EXTM3U +#EXTINF:-1 tvg-id="5AABTV.ca",5AAB TV (720p) [Not 24/7] +http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cartoon.stream/playlist.m3u8?token=null +#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (432p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_3_1928000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (432p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_3_1928000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (720p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (720p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="AmazingDiscoveriesTV.ca",Amazing Discoveries TV (720p) +https://uni01rtmp.tulix.tv/amazingdtv/amazingdtv/playlist.m3u8 +#EXTINF:-1 tvg-id="",AMI Tele (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMI-F_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="AMITV.ca",AMI TV (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMItv_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="APTN.ca",APTN [Offline] +http://encodercdn1.frontline.ca/geonosis/output/APTN_720p/playlist.m3u +#EXTINF:-1 tvg-id="AzStarTV.ca",Az Star TV (240p) [Offline] +https://live.livestreamtv.ca/azstar/ngrp:azstar/playlist.m3u8 +#EXTINF:-1 tvg-id="AzStarTV.ca",Az Star TV (1080p) +http://live.azstartv.com/azstar/smil:azstar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Azstar TV (1080p) [Not 24/7] +http://live.livestreamtv.ca/azstar/smil:azstar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCTorontoGaundaPunjab.ca",BBC Toronto Gaunda Punjab (720p) [Not 24/7] +http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanadaOne.ca",Canada One (720p) [Not 24/7] +http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanadaStarTV.ca",Canada Star TV (1080p) [Offline] +http://live.canadastartv.com:1935/canadastartv/canadastartv/playlist.m3u +#EXTINF:-1 tvg-id="CanadianArabTV.ca",Canadian Arab TV (720p) [Not 24/7] +http://142.112.39.133:8080/catv.mp4 +#EXTINF:-1 tvg-id="CanadianArabTV.ca",Canadian Arab TV (720p) [Not 24/7] +http://142.112.39.133:8080/hls/catv/index.m3u8 +#EXTINF:-1 tvg-id="AssembleenationaleduQuebec.ca",Canal de l'Assemblée nationale (544p) [Not 24/7] +https://wowzaprod231-i.akamaihd.net/hls/live/1013830/177d227e/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSavoir.ca",Canal Savoir (360p) +https://hls.savoir.media/live/stream.m3u8 +#EXTINF:-1 tvg-id="CanBanglaTV.ca",CanBangla TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/canbanglatv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCCalgary.ca",CBC Calgary [Geo-blocked] +https://cbclivedai4-i.akamaihd.net/hls/live/567230/event2/CBRT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCCharlottetown.ca",CBC Charlottetown [Geo-blocked] +https://cbclivedai6-i.akamaihd.net/hls/live/567239/event2/CBCT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCEdmonton.ca",CBC Edmonton [Geo-blocked] +https://cbclivedai4-i.akamaihd.net/hls/live/567231/event2/CBXT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCFredericton.ca",CBC Fredericton [Geo-blocked] +https://cbclivedai7-i.akamaihd.net/hls/live/567244/event2/CBAT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCHalifax.ca",CBC Halifax [Geo-blocked] +https://cbclivedai3-i.akamaihd.net/hls/live/566977/event2/CBHT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCMontreal.ca",CBC Montreal [Geo-blocked] +https://cbclivedai3-i.akamaihd.net/hls/live/566976/event2/CBMT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCNewsNetwork.ca",CBC News Network [Geo-blocked] +https://livecbcdai-i.akamaihd.net/hls/live/567245/event2/CBCNN/master5.m3u8 +#EXTINF:-1 tvg-id="CBCOttawa.ca",CBC Ottawa [Geo-blocked] +https://cbclivedai5-i.akamaihd.net/hls/live/567235/event2/CBOT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCRegina.ca",CBC Regina [Geo-blocked] +https://cbclivedai2-i.akamaihd.net/hls/live/566969/event2/CBKT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCStJohns.ca",CBC St Johns [Geo-blocked] +https://cbclivedai5-i.akamaihd.net/hls/live/567236/event2/CBNT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCCBLT.ca",CBC Toronto (720p) +http://encodercdn1.frontline.ca/encoder181/output/CBC_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCToronto.ca",CBC Toronto [Geo-blocked] +https://cbclivedai1-i.akamaihd.net/hls/live/566940/event2/CBLT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCVancouver.ca",CBC Vancouver [Geo-blocked] +https://cbclivedai2-i.akamaihd.net/hls/live/566968/event2/CBUT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCWindsor.ca",CBC Windsor [Geo-blocked] +https://cbclivedai1-i.akamaihd.net/hls/live/566941/event2/CBET/master5.m3u8 +#EXTINF:-1 tvg-id="CBCWinnipeg.ca",CBC Winnipeg [Geo-blocked] +https://cbclivedai6-i.akamaihd.net/hls/live/567237/event2/CBWT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCYellowknife.ca",CBC Yellowknife [Geo-blocked] +https://cbclivedai7-i.akamaihd.net/hls/live/567240/event2/CFYK/master5.m3u8 +#EXTINF:-1 tvg-id="CHCH.ca",CHCH (720p) +http://encodercdn1.frontline.ca/geonosis/output/CHCH_Hamilton_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Cheknews (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/canada/chek-news +#EXTINF:-1 tvg-id="",CityTV Toronto CFTO-DT (720p) +http://encodercdn1.frontline.ca/bespin/output/City_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassiqueTV.ca",Classique TV (480p) [Offline] +http://stmv2.srvstm.com/classique/classique/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassiqueTV.ca",Classique TV (480p) [Offline] +http://stmv3.srvstm.com/classique/classique/playlist.m3u8 +#EXTINF:-1 tvg-id="CMT.ca",CMT (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CMTHD_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CP24.ca",CP24 (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CP24H_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CPACOttawaEn.ca",Cpac (720p) +http://encodercdn1.frontline.ca/yavin/output/CPAC_English_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CPACOttawa.ca",CPAC (1080p) +https://d7z3qjdsxbwoq.cloudfront.net/groupa/live/f9809cea-1e07-47cd-a94d-2ddd3e1351db/live.isml/.m3u8 +#EXTINF:-1 tvg-id="CPACOttawa.ca",CPAC FR (720p) +http://encodercdn1.frontline.ca/yavin/output/CPAC_French_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CPMTV24.ca",CPMTV 24 [Offline] +http://159.69.58.154/cpmtv/cpmtv.m3u8 +#EXTINF:-1 tvg-id="CKVR.ca",CTV2 Barrie CKVR-DT (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TCTV2_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CTV.ca",CTV (720p) +https://pe-fa-lp02a.9c9media.com/live/News1Digi/p/hls/00000201/38ef78f479b07aa0/index/0c6a10a2/live/stream/h264/v1/3500000/manifest.m3u8 +#EXTINF:-1 tvg-id="CTVNewsChannel.ca",CTV News (480p) +http://encodercdn1.frontline.ca/bespin/output/CTV_News/playlist.m3u8 +#EXTINF:-1 tvg-id="CTVNewsChannel.ca",CTV News (720p) +http://encodercdn1.frontline.ca/bespin/output/CTV_News_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CFTO.ca",CTV Toronto CFTO-DT (720p) +http://encodercdn1.frontline.ca/encoder183/output/CTV_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CTVDrama.ca",CTVDrama (720p) +http://encodercdn1.frontline.ca/encoder183/output/CTV_Drama_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="DesheBidesheTV.ca",DesheBideshe TV (720p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deshebideshe.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DoyelTV.ca",Doyel TV (720p) [Not 24/7] +http://ipm.oncast.me:1934/iplived/ip-doyeltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DoyelTV.ca",Doyel TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/doyeltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DukhNivaran.ca",Dukh Nivaran (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/dncal/index.m3u8 +#EXTINF:-1 tvg-id="EEntertainment.ca",E! Canada (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_E!HD_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="EawazTV.ca",Eawaz TV (720p) [Not 24/7] +https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8 +#EXTINF:-1 tvg-id="EETTV.ca",EET TV (1080p) [Not 24/7] +https://eu.streamjo.com/eetlive/eettv.m3u8 +#EXTINF:-1 tvg-id="EMCITV.ca",EMCI TV (1080p) [Not 24/7] +https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 +#EXTINF:-1 tvg-id="FightNetwork.ca",Fight Network (1080p) +https://d12a2vxqkkh1bo.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="GlobalNewsToronto.ca",Global Toronto (720p) +http://encodercdn1.frontline.ca/encoder184/output/Global_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="GurSikhSabhaTV.ca",GurSikh Sabha TV (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/gsctv/index.m3u8 +#EXTINF:-1 tvg-id="HistoryChannel.ca",History (720p) +http://encodercdn1.frontline.ca/encoder181/output/History_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ICIMontreal.ca",ICI Montreal (720p) [Not 24/7] +https://ici-i.akamaihd.net/hls/live/873426/ICI-Live-Stream/master.m3u8 +#EXTINF:-1 tvg-id="CBFT.ca",Ici Radio-Canada Télé (720p) +https://rcavlive.akamaized.net/hls/live/696615/xcancbft/master.m3u8 +#EXTINF:-1 tvg-id="CBFT.ca",Ici Radio-Canada Télé (1080p) [Geo-blocked] +https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8 +#EXTINF:-1 tvg-id="ICIRadioCanadaRDI.ca",ICI RDI (720p) +http://encodercdn1.frontline.ca/encoder184/output/ICI_RDI_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ICIRadioCanadaOntario.ca",ICI TELE Toronto (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ICIHT_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="IIPCTV.ca",IIPC TV (480p) [Geo-blocked] +https://uni10rtmp.tulix.tv/iipctv/iipctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITCTV.ca",ITC TV (480p) [Geo-blocked] +https://dacastmmd.mmdlive.lldns.net/dacastmmd/f05d55e42dc746c8bd36edafbace7cc1/playlist.m3u8 +#EXTINF:-1 tvg-id="Knowledge.ca",Knowledge (720p) [Geo-blocked] +http://knstream1.azureedge.net/knlive/knlive_high.m3u8 +#EXTINF:-1 tvg-id="LCN.ca",LCN [Geo-blocked] +https://tvalive.akamaized.net/hls/live/2014213/tvan01/tvan01.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca",Meteomedia (720p) +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MontrealGreekTV.ca",Montreal Greek TV (480p) [Not 24/7] +http://94.130.180.175:8081/live/greektv/playlist.m3u8 +#EXTINF:-1 tvg-id="NACTV.ca",NACTV (720p) [Not 24/7] +http://stream.pivotalelements.com/nactv/stream.m3u8 +#EXTINF:-1 tvg-id="NETVToronto.ca",NETV Toronto (720p) [Not 24/7] +https://live.streams.ovh/NetvToronto/NetvToronto/playlist.m3u8 +#EXTINF:-1 tvg-id="Nickelodeon.ca",Nickelodeon Canada (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NICKH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="NRBTV.ca",NRB TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nrb-eu.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTV.ca",NTV (Newfoundland) (576p) [Not 24/7] +https://2-fss-1.streamhoster.com/pl_122/201748-1282644-1/playlist.m3u8 +#EXTINF:-1 tvg-id="OMNI1.ca",OMNI 1 (720p) +http://encodercdn1.frontline.ca/geonosis/output/OMNI1_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ONNtv.ca",ONNtv (Ontario) (1080p) [Offline] +https://onntv.vantrix.tv/onntv_hls/h264_aac_ABR.m3u8 +#EXTINF:-1 tvg-id="OntarioParliamentaryNetwork.ca",Ontario Parliamentary Network (720p) +http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ontario Parliamentary Network (FR) (720p) +http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-fr/playlist.m3u8 +#EXTINF:-1 tvg-id="PardesiTV.ca",Pardesi TV (720p) [Not 24/7] +http://stream.pardesitv.online/pardesi/index.m3u8 +#EXTINF:-1 tvg-id="ParnianTV.ca" status="online",Parnian TV (720p) +https://live2.parnian.tv/hls/.m3u8 +#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p) +https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtv/playlist.m3u8 +#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p) +https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimeAsiaTV.ca",Prime Asia TV (720p) +http://primeasia.dyndns.tv:8080/Live_web_250/index.m3u8 +#EXTINF:-1 tvg-id="PrimeCanadaTV.ca",Prime Canada TV (720p) [Not 24/7] +http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="QVTV.ca",QVTV (720p) +https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RamgarhiABC.ca",Ramgarhi ABC (720p) [Not 24/7] +https://443-1.autopo.st/100/live/bcgurduwarabrookside/chunks.m3u8 +#EXTINF:-1 tvg-id="SaltPlusLightTelevision.ca",Salt + Light Television (1080p) +https://zm6gdaxeyn93-hls-live.5centscdn.com/slworld/d65ce2bdd03471fde0a1dc5e01d793bb.sdp/index.m3u8 +#EXTINF:-1 tvg-id="SanjhaPunjab.ca",Sanjha Punjab (720p) +http://toronto3.live247stream.com:8081/sanjhapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SardariTV.ca",Sardari TV (1080p) [Not 24/7] +http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 +#EXTINF:-1 tvg-id="Showcase.ca",Showcase (720p) +http://encodercdn1.frontline.ca/encoder181/output/Showcase_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SikhSpiritualCentreRexdale.ca",Sikh Spiritual Centre Rexdale (720p) +https://cdn12.henico.net:8443/live/ssct/index.m3u8 +#EXTINF:-1 tvg-id="TAGTV.ca",TAG TV (1080p) [Not 24/7] +http://cdn11.live247stream.com/tag/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TamilVisionTV.ca",Tamil Vision TV (720p) +http://live.tamilvision.tv:8081/TVI/SD/playlist.m3u8 +#EXTINF:-1 tvg-id="TamilVisionTV.ca",Tamil Vision TV (1080p) +http://live.tamilvision.tv:8081/TVI/HD/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCulturelleMedias.ca",Télé Culturelle Médias (720p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8150/8150/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleMagQuebec.ca",Télé-Mag Québec (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNKXYT-Nng5LBMUQrZJ9zWA/live +#EXTINF:-1 tvg-id="TeleMag.ca",Télé-Mag Québec (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/ctmq/live +#EXTINF:-1 tvg-id="CIVM.ca",Télé-Québec (720p) +https://bcovlive-a.akamaihd.net/575d86160eb143458d51f7ab187a4e68/us-east-1/6101674910001/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletoon.ca",Teletoon (720p) [Not 24/7] +http://s1.mysportz.tv:2082/teletoon/playlist.m3u8 +#EXTINF:-1 tvg-id="TFO.ca",TFO (720p) +http://encodercdn1.frontline.ca/encoder183/output/TFO_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TheChannelTV.ca",The Channel TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/thechanneltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN5.ca",The Sports Network (TSN5) (720p) +http://encodercdn1.frontline.ca/kamino/output/TSN5_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="TheWeatherNetwork.ca",The Weather Network (480p) +http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network/playlist.m3u8 +#EXTINF:-1 tvg-id="TheWeatherNetwork.ca",The Weather Network (720p) +http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNetwork.ca",The Weather Network Event (720p) [Not 24/7] +https://bcliveunivsecure-lh.akamaihd.net/i/twn_1@631672/master.m3u8 +#EXTINF:-1 tvg-id="TMC.ca",TMC (720p) +http://encodercdn1.frontline.ca/encoder181/output/TCM_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Toronto360TV.ca",Toronto 360 TV (720p) [Not 24/7] +http://toronto3.live247stream.com/toronto360/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Treehouse.ca",Treehouse (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TREEH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="TSC.ca",TSC (720p) +https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 +#EXTINF:-1 tvg-id="TSN1.ca",TSN 1 (720p) +http://encodercdn1.frontline.ca/encoder183/output/TSN1_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN2.ca",TSN 2 (720p) +http://encodercdn1.frontline.ca/encoder182/output/TSN2_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN3.ca",TSN 3 (720p) +http://encodercdn1.frontline.ca/encoder183/output/TSN3_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN4.ca",TSN 4 (720p) +http://encodercdn1.frontline.ca/encoder183/output/TSN4_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ca",TV5 (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/ColbaNet_TV5_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="TV16Toronto.ca",TV 16 Toronto (720p) [Not 24/7] +http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8 +#EXTINF:-1 tvg-id="CFTM.ca",TVA [Geo-blocked] +https://tvalive-nondai.akamaized.net/Content/HLS/Live/channel(a7315e07-037c-12a8-bdc8-da7bd513da9d)/index.m3u8 +#EXTINF:-1 tvg-id="TVA.ca",TVA Montreal (720p) +http://encodercdn1.frontline.ca/encoder184/output/TVA_Montreal_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TVC9.ca",TVC9 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC0JP0ek-HhcqisiEpsZiQZA/live +#EXTINF:-1 tvg-id="TVO.ca",TVO (720p) +http://encodercdn1.frontline.ca/encoder181/output/TVO_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOKids.ca",TVOKids (360p) [Not 24/7] +https://bcsecurelivehls-i.akamaihd.net/hls/live/623607/15364602001/tvokids/master.m3u8 +#EXTINF:-1 tvg-id="UniTV.ca",UnisTV (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_UNISH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="isumatv.ca",Uvagut TV (1080p) +http://dee7mwgg9dzvl.cloudfront.net/hls/uvagut/playlist.m3u8 +#EXTINF:-1 tvg-id="VBS.ca",VBS (360p) [Not 24/7] +https://uni6rtmp.tulix.tv/vbstv/vbsabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Vision.ca",Vision TV (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_VISON_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="WTN.ca",W Network (720p) +http://encodercdn1.frontline.ca/kamino/output/W_Network_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WCGtv.ca",WCGtv Brandon (720p) [Not 24/7] +https://wowzastream.westmancom.com/wcgtvlive/highstream.sdp/master.m3u8 +#EXTINF:-1 tvg-id="WCGtv.ca",WCGtv Brandon Radio Pub Sessions (720p) [Not 24/7] +https://wowzastream.westmancom.com/wcgtvlive/wcgtvPSA.stream/master.m3u8 +#EXTINF:-1 tvg-id="YesTV.ca",yes TV (720p) +http://encodercdn1.frontline.ca/kamino/output/YESTV_Hamilton_720p/playlist.m3u8 diff --git a/streams/ca_samsung.m3u b/streams/ca_samsung.m3u new file mode 100644 index 000000000..798409637 --- /dev/null +++ b/streams/ca_samsung.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="DealornoDeal.ca",Deal or no Deal (720p) [Offline] +https://endemol-dealornodeal-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DegrassiTheNextGenerationCanada.us",Degrassi The Next Generation (Canada) (720p) +http://dhx-degrassi-2-ca.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.ca",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] +https://dust-samsung-uk-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us",FTF (720p) [Offline] +https://elevensports-samsunguk-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) +https://fueltv-fueltv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.ca",HollyWire (720p) [Offline] +https://hollywire-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsung-canada.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsung-canada.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us",MavTV (720p) [Offline] +https://mavtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MHZ.ca",MHZ (720p) [Offline] +https://mhz-samsung-linear-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.ca",Outside TV (720p) +https://outside-tv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://playerstv-samsungca.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.ca",PowerNation (720p) [Offline] +https://rtmtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Offline] +https://stingray-naturescape-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.ca",Tastemade (720p) [Offline] +https://ti-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.ca",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-6-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveCanada.us",The Pet Collective Canada (720p) [Offline] +https://the-pet-collective-international-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.ca",Waypoint TV (720p) [Offline] +https://waypointtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Weatherspy.ca",Weatherspy (720p) +https://jukin-weatherspy-2-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) [Offline] +https://world-poker-tour-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/ca_stingray.m3u b/streams/ca_stingray.m3u new file mode 100644 index 000000000..7d347bd71 --- /dev/null +++ b/streams/ca_stingray.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayEverything80s.ca",Stingray Everything 80s (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/128/master.m3u8 +#EXTINF:-1 tvg-id="StingrayFlashback70s.ca",Stingray Flashback 70s (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/115/master.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/107/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayPopAdult.ca",Stingray Pop Adult (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/104/master.m3u8 +#EXTINF:-1 tvg-id="StingrayRockAlternative.ca",Stingray Rock Alternative (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/102/master.m3u8 +#EXTINF:-1 tvg-id="StingrayTodaysLatinPop.ca",Stingray Today's Latin Pop (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/190/master.m3u8 +#EXTINF:-1 tvg-id="StingrayUrbanBeat.ca",Stingray Urban Beat (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/133/master.m3u8 diff --git a/streams/cd.m3u b/streams/cd.m3u new file mode 100644 index 000000000..37fa35bed --- /dev/null +++ b/streams/cd.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Afrobeats.cd",Afrobeats (1080p) +https://stream.ecable.tv/afrobeats/index.m3u8 +#EXTINF:-1 tvg-id="BOne.cd",B-One [Offline] +http://178.33.237.146/rtnc1.m3u8 +#EXTINF:-1 tvg-id="BossBrothersTV.cd",Boss Brothers TV (1080p) +http://51.254.199.122:8080/bossbrothersTV/index.m3u8 +#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd",Congo Planet Television (1080p) +https://radio.congoplanet.com/Congo_Planet_TV.sdp/Congo_Planet_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd",Congo Planet Television (1080p) +https://radio.congoplanet.com/Congo_Planet_TV_Pop.sdp/Congo_Planet_TV_Pop/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNC1.cd",RTNC 1 (360p) +https://cdn.strimie.eu:3431/live/rtnc1live.m3u8 diff --git a/streams/cg.m3u b/streams/cg.m3u new file mode 100644 index 000000000..926e39cfa --- /dev/null +++ b/streams/cg.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ObossoTV.cg",Obosso TV (1080p) [Offline] +https://edge4.vedge.infomaniak.com/livecast/ik:obossotv_6/manifest.m3u8 diff --git a/streams/ch.m3u b/streams/ch.m3u new file mode 100644 index 000000000..003073fd5 --- /dev/null +++ b/streams/ch.m3u @@ -0,0 +1,85 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalAlphaJura.ch",Canal Alpha Jura (360p) +https://canalalphaju.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlphaJura.ch",Canal Alpha Jura (360p) +https://edge.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlphaNeuchatel.ch",Canal Alpha Neuchatel (1080p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:canalalpha/playlist.m3u8 +#EXTINF:-1 tvg-id="Couleur3.ch",Couleur 3 (720p) +https://rtsc3video-lh.akamaihd.net/i/rtsc3video_ww@513975/master.m3u8 +#EXTINF:-1 tvg-id="DieNeueZeit.ch",Die Neue Zeit (576p) +https://www.onairport.live/die-neue-zeit-tv-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="DieuTV.ch",Dieu TV (1080p) +https://katapy.hs.llnwd.net/dieutvwza1/DIEUTVLIVE/smil:dieutv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ELITTVIsvicre.ch",ELIT TV Isvicre (720p) [Offline] +http://source2.primetime.ch/play/elittv/index.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 auf Deutsch (1080p) +https://livesd2.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 auf Deutsch (1080p) [Offline] +https://edge.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 en Français (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:livehd/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 en Français (1080p) +https://livehd.vedge.infomaniak.com/livecast/livehd/master.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) +https://latele.vedge.infomaniak.com/livecast/latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) +https://livevideo.infomaniak.com/streaming/livecast/latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LFMCH.ch",LFM TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:lfmhd/manifest.m3u8 +#EXTINF:-1 tvg-id="LFMCH.ch",LFM TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:lfmmd/manifest.m3u8 +#EXTINF:-1 tvg-id="LFMTV.ch",LFM TV (1080p) +https://lfmhd.vedge.infomaniak.com/livecast/lfmhd/playlist.m3u8 +#EXTINF:-1 tvg-id="LFMTV.ch",LFM TV (1080p) +https://lfmmd.vedge.infomaniak.com/livecast/smil:lfmmd.smil/manifest.m3u8 +#EXTINF:-1 tvg-id="Meteonews.ch",Meteonews (1080p) +https://streaming.meteonews.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="OneTV.ch",One TV (720p) +https://edge.vedge.infomaniak.com/livecast/ik:onefmmd/manifest.m3u8 +#EXTINF:-1 tvg-id="Radio3i.ch",Radio 3i (720p) +https://livestream.gruppocdt.ch/hls/radio3i.m3u8 +#EXTINF:-1 tvg-id="RadioPilatus.ch" status="online",Radio Pilatus (1080p) +https://rp_tv_1.vedge.infomaniak.com/livecast/rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPilatusTV.ch",Radio Pilatus TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPilatusTV.ch",Radio Pilatus TV (1080p) +https://livevideo.infomaniak.com/streaming/livecast/rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) +https://edge.vedge.infomaniak.com/livecast/ik:event/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) +https://event.vedge.infomaniak.com/livecast/event.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) +https://rougetv.vedge.infomaniak.com/livecast/rougetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RoyalTV.ch",Royal TV (720p) [Offline] +http://source2.primetime.ch:2981/play/royaltv/index.m3u8 +#EXTINF:-1 tvg-id="Schweiz5.ch",Schweiz 5 (1080p) [Timeout] +https://stream.schweiz5.ch/schweiz52020/stream.m3u8 +#EXTINF:-1 tvg-id="SwissSportTV.ch",Swiss Sport TV (720p) [Timeout] +https://av02.upstream-cloud.ch/sstvlinear/ngrp:sstvlinear_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele1.ch",Tele 1 (1080p) +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_xias5bqq/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="TeleM1.ch",Tele M1 (720p) [Not 24/7] +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_ljzy3evp/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="Telebasel.ch",Telebasel (288p) +http://xapp510394368c1000199.f.l.z.lb.core-cdn.net/10096xtelebase/ios_500/master.m3u8 +#EXTINF:-1 tvg-id="Telebasel.ch",Telebasel (432p) +https://cldf-wzw-live.r53.cdn.tv1.eu/10096xtelebase/_definst_/1000199copo/live/app510394368/w162136077/live_de_1500/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleBielingue.ch",TeleBielingue (720p) +https://edge.vedge.infomaniak.com/livecast/ik:telebielinguech/manifest.m3u8 +#EXTINF:-1 tvg-id="TeleBielingue.ch",TeleBielingue (720p) +https://livevideo.infomaniak.com/streaming/livecast/telebielinguech/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTicino.ch",TeleTicino (720p) +https://livestream.gruppocdt.ch/hls/teleticino.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch",TVM 3 (1080p) +http://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch",TVM3 (1080p) +https://edge.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch",TVM3 (1080p) [Not 24/7] +https://tvm3.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVO (CH) (720p) +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_t5h46v64/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="TVO.ch",TVO (CH) (1080p) [Not 24/7] +https://s3.welocal.world/tvo/media/447348/videos/hls.m3u8 diff --git a/streams/ch_samsung.m3u b/streams/ch_samsung.m3u new file mode 100644 index 000000000..8c5008ad5 --- /dev/null +++ b/streams/ch_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RakutenTVActionMoviesSwitzerland.es",Rakuten TV Action Movies Switzerland (720p) [Offline] +https://rakuten-actionmovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesSwitzerland.es",Rakuten TV Comedy Movies Switzerland (720p) [Offline] +https://rakuten-comedymovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaSwitzerland.es",Rakuten TV Drama Switzerland (720p) [Offline] +https://rakuten-tvshows-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilySwitzerland.es",Rakuten TV Family Switzerland (720p) [Offline] +https://rakuten-family-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightSwitzerland.es",Rakuten TV Spotlight Switzerland (720p) [Offline] +https://rakuten-spotlight-4-ch.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/ci.m3u b/streams/ci.m3u new file mode 100644 index 000000000..1e9633e9e --- /dev/null +++ b/streams/ci.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="NTVAfrique.ci",NTV Afrique (1080p) [Not 24/7] +https://strhlslb01.streamakaci.tv/str_ntv_ntv/str_ntv_ntv_multi/playlist.m3u8 diff --git a/streams/cl.m3u b/streams/cl.m3u new file mode 100644 index 000000000..207a44034 --- /dev/null +++ b/streams/cl.m3u @@ -0,0 +1,355 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",24 Horas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/24HORAS/live +#EXTINF:-1 tvg-id="ADNRadio.cl",ADN Radio (1080p) +https://unlimited1-us.dps.live/adntv/adntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ADNRadio.cl",ADN Radio (1080p) +https://unlimited6-cl.dps.live/adntv/adntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AERadioTV.cl",AE Radio TV (720p) [Not 24/7] +http://edge1.cl.grupoz.cl/aeradio/live/index.m3u8 +#EXTINF:-1 tvg-id="AlegriaTV.cl",Alegria TV (1020p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 +#EXTINF:-1 tvg-id="AlternativaTVHuasco.cl",Alternativa TV (Huasco) (720p) [Not 24/7] +https://srv2.zcast.com.br/carlos2469/carlos2469/playlist.m3u8 +#EXTINF:-1 tvg-id="AntofagastaTVATV.cl",Antofagasta TV (ATV) (1080p) +https://unlimited6-cl.dps.live/atv/atv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ARABTV.cl",ARABTV (720p) +https://livefocamundo.com:8081/arabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="AricaTV.cl",Arica TV (480p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8002/8002/playlist.m3u8 +#EXTINF:-1 tvg-id="AtacamaTVCopiapo.cl",Atacama TV (Copiapó) (720p) [Not 24/7] +https://v2.tustreaming.cl/atacamatv/index.m3u8 +#EXTINF:-1 tvg-id="AutonomaTV.cl",Autonoma TV (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8144/8144/playlist.m3u8 +#EXTINF:-1 tvg-id="AysenTV.cl",Aysén TV (720p) [Not 24/7] +https://v2.tustreaming.cl/aysentv/playlist.m3u8 +#EXTINF:-1 tvg-id="BajoCeroTVCorporacionEva.cl",Bajo Cero TV (Corporación Eva) (656p) [Offline] +https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 +#EXTINF:-1 tvg-id="BuinSomosTodos.cl",Buin Somos Todos (720p) [Not 24/7] +https://bst.buin.cl/0.m3u8 +#EXTINF:-1 tvg-id="CamaradeDiputadosDVR.cl",Camara de Diputados (DVR) (720p) [Not 24/7] +http://camara.02.cl.cdnz.cl/cdndvr/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="CampoAbiertoTV.cl",Campo Abierto TV (Huechuraba) (480p) [Not 24/7] +http://v3.tustreaming.cl/campoabierto/playlist.m3u8 +#EXTINF:-1 tvg-id="CampusTVTalca.cl",Campus TV (Talca) (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/campustv/campustv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2SanAntonio.cl",Canal 2 (San Antonio) (720p) [Not 24/7] +https://unlimited1-us.dps.live/canal2/canal2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] +https://unlimited1-us.dps.live/c9/c9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] +https://unlimited6-cl.dps.live/c9/c9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13.cl",Canal 13 (720p) [Geo-blocked] +http://canal13-m3u.chorroaeboy.repl.co +#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7] +http://edge1.cl.grupoz.cl/canal21tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7] +https://tls.cdnz.cl/canal21tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal29.cl",Canal 29 (614p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/canal/canal/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.cl",Canal 33 (720p) [Geo-blocked] +https://5eae379fb77bb.streamlock.net/eduardo555/eduardo555/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal57Melipilla.cl",Canal 57 Melipilla (720p) +https://593b04c4c5670.streamlock.net/8148/8148/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal74SanAntonio.cl",Canal 74 (San Antonio) (720p) +https://stmv1.zcastbr.com/canal74hd/canal74hd/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalDiputados.cl",Canal Diputados (720p) +http://camara.03.cl.cdnz.cl/camara19/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalISBIglesiaSanBernardo.cl",Canal ISB (Iglesia San Bernardo) (720p) +https://unlimited1-us.dps.live/isb/isb.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalLatino.cl",Canal Latino (CL54) (360p) +https://hd.chileservidores.cl:1936/latina/latina/playlist.m3u8 +#EXTINF:-1 tvg-id="",Canal SCÑ (San Carlos Ñuble) (720p) [Not 24/7] +https://live.tvcontrolcp.com:1936/sancarlostv/sancarlostv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurvisionAlerce.cl",Canal Survision Alerce [Offline] +http://170.79.102.254:1935/pruebacamara/Survision_tv_alerce/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalTUTVQuillota.cl",Canal TUTV (Quillota) (720p) +https://paneltv.net:3978/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="CaracolaTVPenalolen.cl",Caracola TV (Peñalolén) (720p) [Not 24/7] +https://wifispeed.trapemn.tv:1936/comunales/caracola-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CarolinaTV.cl",Carolina TV (1080p) +https://unlimited6-cl.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CarolinaTV.cl",Carolina TV (1080p) [Not 24/7] +https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CEACTVSantiago.cl",CEAC TV (Santiago) (480p) +https://hd.chileservidores.cl:1936/ceactv/ceactv/playlist.m3u8 +#EXTINF:-1 tvg-id="CHICMagazine.cl",CHIC Magazine (480p) [Not 24/7] +https://paneltv.online:1936/8056/8056/playlist.m3u8 +#EXTINF:-1 tvg-id="ChileVision.cl",ChileVisión (360p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/chv_003cl +#EXTINF:-1 tvg-id="ChileVision.cl",ChileVisión (720p) [Geo-blocked] +http://chv-m3u.chorroaeboy.repl.co +#EXTINF:-1 tvg-id="",CHV Noticias (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRsUoZYC1ULUspipMRnMhwg/live +#EXTINF:-1 tvg-id="ClickTVCoronel.cl",Click TV (Coronel) (720p) +http://v2.tustreaming.cl/clicktv/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudserverKids90.cl",Cloudserver Kids90 (480p) +https://videostreaming.cloudserverlatam.com/Kids90/Kids90/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudserverLatamCSTV.cl",Cloudserver Latam (CSTV) (720p) +https://videostreaming.cloudserverlatam.com/CSTV/CSTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubTVSantaJuana.cl",Club TV (Santa Juana) (720p) [Not 24/7] +https://paneltv.online:1936/8030/8030/playlist.m3u8 +#EXTINF:-1 tvg-id="Contivision.cl",Contivisión (720p) +https://unlimited6-cl.dps.live/contivision/contivision.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CulturaOnline.cl",Cultura Online (720p) [Not 24/7] +https://v2.tustreaming.cl/culturaonline/index.m3u8 +#EXTINF:-1 tvg-id="DecimaTVAncud.cl",Décima TV (Ancud) (720p) +http://unlimited10-cl.dps.live/decimatv/decimatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EGMChannel.cl",EGM Channel (480p) [Not 24/7] +https://paneltv.online:1936/8186/8186/playlist.m3u8 +#EXTINF:-1 tvg-id="",EKIZ TV (Rancagua) (1080p) +https://stmv.panel.mivideo.pro/ekiztv/ekiztv/playlist.m3u8 +#EXTINF:-1 tvg-id="ElPinguinoTV.cl",El Pingüino TV (720p) [Offline] +https://iptv-all.lanesh4d0w.codes/m3u8/elpinguino_cl.m3u8 +#EXTINF:-1 tvg-id="ElionCanalDigital.cl",Elion Canal Digital (Chillan) (288p) [Not 24/7] +https://paneltv.online:1936/8154/8154/playlist.m3u8 +#EXTINF:-1 tvg-id="EnerGeek.cl",EnerGeek (720p) [Not 24/7] +https://stmv1.voxhdnet.com/energeek/energeek/playlist.m3u8 +#EXTINF:-1 tvg-id="EstacionTV.cl",Estación TV (720p) +http://unlimited1-us.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EstacionTV.cl",Estación TV (720p) [Timeout] +http://unlimited1-cl.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Estación TV (Chillán) (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EvaStreamCorporacionEva.cl",Eva Stream (Corporación Eva) (480p) [Not 24/7] +https://stmv.panel.mivideo.pro/evastream/evastream/playlist.m3u8 +#EXTINF:-1 tvg-id="EvavisionPachangaCorporacionEva.cl",Evavisión Pachanga (Corporación Eva) (720p) +http://159.69.56.148:25461/live/evavision/2r4rfasf/38.m3u8 +#EXTINF:-1 tvg-id="",Exprezión TV (EXTV | Los Álamos) (720p) [Not 24/7] +https://srv3.zcast.com.br/expreszion/expreszion/playlist.m3u8 +#EXTINF:-1 tvg-id="GenialTV.cl",Genial TV (720p) [Not 24/7] +http://v3.tustreaming.cl/genialtv/playlist.m3u8 +#EXTINF:-1 tvg-id="GeovisionIquique.cl",Geovisión (Iquique) (536p) +https://5fa5de1a545ae.streamlock.net/Geovision/Geovision/playlist.m3u8 +#EXTINF:-1 tvg-id="GraciaTV.cl",Gracia TV (1080p) [Not 24/7] +http://v3.tustreaming.cl/graciatv/index.m3u8 +#EXTINF:-1 tvg-id="HiperconectadosTV.cl",Hiperconectados Televisión (720p) +https://mediacpstreamchile.com:1936/hiperconectados/hiperconectados/playlist.m3u8 +#EXTINF:-1 tvg-id="HiperTV.cl",HiperTV (1074p) [Not 24/7] +https://inliveserver.com:1936/11010/11010/playlist.m3u8 +#EXTINF:-1 tvg-id="HolvoetTVCopiapo.cl",Holvoet TV (Copiapó) (720p) [Not 24/7] +https://unlimited1-us.dps.live/holvoettv/holvoettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Interradio.cl",Interradio (1080p) [Not 24/7] +https://video01.logicahost.com.br/interradiofrutillar/smil:transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p) [Not 24/7] +https://unlimited1-us.dps.live/itv/itv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p) [Timeout] +https://unlimited1-cl.dps.live/itv/itv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LaGranjaTV.cl",La Granja TV (720p) [Not 24/7] +https://5eae379fb77bb.streamlock.net/8126/8126/playlist.m3u8 +#EXTINF:-1 tvg-id="LaPopularTVSalamanca.cl",La Popular TV (Salamanca) (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8076/ngrp:8076/playlist.m3u8 +#EXTINF:-1 tvg-id="LaRed.cl",La Red (720p) [Not 24/7] +https://unlimited1-cl-movistar.dps.live/lared/lared.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LRPTelevision.cl",LRP Televisión (720p) [Not 24/7] +https://v2.tustreaming.cl/lrp/index.m3u8 +#EXTINF:-1 tvg-id="LTVRenaico.cl",LTV (Renaico) (720p) [Not 24/7] +https://medios.sirtel.cl/live/stream/index.m3u8 +#EXTINF:-1 tvg-id="MASPlusTVChile.cl",MÁS+.TV Chile (720p) [Not 24/7] +https://593b04c4c5670.streamlock.net/8008/8008/playlist.m3u8 +#EXTINF:-1 tvg-id="MAXIMA.cl",MAXIMA (720p) [Not 24/7] +https://server1.oklanet.cl:1936/maximavideo1/maximavideo1/playlist.m3u8 +#EXTINF:-1 tvg-id="Mega.cl",Mega [Geo-blocked] +http://186.67.117.178:8081/play/a00x +#EXTINF:-1 tvg-id="Meganoticias.cl",Meganoticias (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkccyEbqhhM3uKOI6Shm-4Q/live +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Conciertos (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/7.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Global Hits (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/5.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Puro Rock (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/25.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Retro (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/4.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Top100 (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/2.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Tropical (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/3.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Vdj Retro (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/1.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 VdjPop (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/6.m3u8 +#EXTINF:-1 tvg-id="MundodelaMusica.cl",Mundo de la Música (288p) +https://videostreaming.cloudserverlatam.com/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ñuble RTV (Chillán) (720p) [Not 24/7] +https://live.tvcontrolcp.com:1936/guzman/guzman/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ñublevisión (Chillán) (720p) +https://cdn.oneplaychile.cl:1936/regionales/nublevision.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OndaRadio.cl",Onda Radio (720p) [Offline] +https://5eff35271151c.streamlock.net:1936/8074/8074/playlist.m3u8 +#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p) +https://unlimited1-us.dps.live/pautatv/pautatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p) +https://unlimited6-cl.dps.live/pautatv/pautatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PintanaTV.cl",Pintana TV (720p) +http://cdn.vms.grupoz.cl/lapintanatv/content/5a7c8e25e19d3e641aca9fb2/hls/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvKids.cl",Planetatv Kids (1080p) +https://mediacpstreamchile.com:1936/8152/8152/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvMovie.cl",Planetatv Movie (1080p) +https://mediacpstreamchile.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvMusic.cl",Planetatv Music (720p) [Geo-blocked] +https://5eae379fb77bb.streamlock.net/planetatvmusic/planetatvmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (288p) [Not 24/7] +http://tv.portalfoxmix.club:1935/portalfoxmix/portalfoxmix/playlist.m3u8 +#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (288p) [Not 24/7] +https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/playlist.m3u8 +#EXTINF:-1 tvg-id="PunconTV.cl",Puncón TV (1080p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/pucontv/pucontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioAmericaTV.cl",Radio América TV (720p) [Not 24/7] +https://stmv1.zcastbr.com/americatvchile/americatvchile/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioElSembrador.cl",Radio El Sembrador (1080p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8064/8064/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioLaSabrosura.cl",Radio La Sabrosura (288p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8096/8096/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioMaxima949FMSB.cl",Radio Maxima 94.9 FM SB (720p) [Not 24/7] +http://server1.oklanet.cl:1935/maximavideo1/maximavideo1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRancaguaFM.cl",Radio Rancagua FM (768p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8056/8056/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRitmoFM.cl",Radio Ritmo FM (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8032/8032/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioUniem.cl",Radio Uniem (480p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8110/8110/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZetaTV.cl",Radio Zeta TV (240p) [Not 24/7] +https://unlimited1-us.dps.live/radioztv/radioztv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZetaTV.cl",Radio Zeta TV (480p) [Timeout] +https://unlimited1-cl.dps.live/radioztv/radioztv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RCKTV.cl",RCK TV (720p) +https://mediacpstreamchile.com:1936/ricardoaravena/ricardoaravena/playlist.m3u8 +#EXTINF:-1 tvg-id="RealProOnline.cl",RealPro Online (540p) [Offline] +https://paneltv.online:1936/8202/8202/playlist.m3u8 +#EXTINF:-1 tvg-id="RedBullBatalladeGallos.cl",RedBull Batalla de Gallos (720p) +https://videostreaming.cloudserverlatam.com/Batalladegallos/Batalladegallos/playlist.m3u8 +#EXTINF:-1 tvg-id="RestaurandoVidasInternacional.cl",Restaurando Vidas Internacional (720p) [Not 24/7] +http://v4.tustreaming.cl/restaurandovidastv/index.m3u8 +#EXTINF:-1 tvg-id="RetroPlus2.cl",Retro Plus 2 (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/retroplussenal2/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroPlus3.cl",Retro Plus 3 (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplussenal3/retroplussenal3/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroPlus.cl",Retro Plus (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplustv/retroplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="RewindTV.cl",Rewind TV (720p) [Not 24/7] +https://tls.cdnz.cl/rewindtv/rewindtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RoccoTV.cl",Rocco TV (Coyhaique) (240p) [Not 24/7] +http://evo.eltelon.com:1935/live/rocco-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RuidosFM.cl",Ruidos FM (360p) +https://593b04c4c5670.streamlock.net/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="SantaMariaTelevision.cl",Santa María Televisión (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/smtv/smtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SellodeRaza.cl",Sello de Raza (720p) [Not 24/7] +https://v2.tustreaming.cl/mastermedia/playlist.m3u8 +#EXTINF:-1 tvg-id="SoloStandUp.cl",SoloStandUp (480p) [Not 24/7] +https://paneltv.online:1936/8116/8116/playlist.m3u8 +#EXTINF:-1 tvg-id="SpectrumChannelLGBTQPlus.cl",Spectrum Channel LGBTQ+ (360p) [Not 24/7] +https://vdohd.cl:1936/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="StgoTV.cl",Stgo.TV (720p) +https://stv.janus.cl/playlist/stream.m3u8 +#EXTINF:-1 tvg-id="T13.cl",T13 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsRnhjcUCR78Q3Ud6OXCTNg/live +#EXTINF:-1 tvg-id="Tele2WebRetiro.cl",Tele 2 Web (Retiro) (720p) [Not 24/7] +https://inliveserver.com:1936/11516/11516/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) +https://unlimited6-cl.dps.live/sportinghd/sportinghd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) +https://unlimited6-cl.dps.live/teletrak/teletrak.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) [Not 24/7] +https://unlimited1-us.dps.live/teletrak/teletrak.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tendencias 31 Prime (T31 | Ñuñoa) (1080p) [Not 24/7] +https://v2.tustreaming.cl/tendenciastv/index.m3u8 +#EXTINF:-1 tvg-id="Tevex.cl",Tevex (720p) [Not 24/7] +https://v4.tustreaming.cl/tevexinter/index.m3u8 +#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7] +https://unlimited1-us.dps.live/thema/thema.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7] +https://unlimited6-cl.dps.live/thema/thema.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TNE.cl",TNE (720p) [Not 24/7] +https://v2.tustreaming.cl/tnetv/index.m3u8 +#EXTINF:-1 tvg-id="TurfMovil.cl",Turf Móvil (720p) +https://janus.tvturf.cl/playlist/stream.m3u8 +#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p) +https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p) [Not 24/7] +https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8Concepcion.cl",TV8 (Concepción) (514p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8014/8014/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCosta.cl",TV Costa (720p) [Not 24/7] +http://cdn.streamingmedia.cl:1935/live/canalcosta/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCostaSanAntonio.cl",TV Costa (San Antonio) (720p) [Not 24/7] +https://hd.chileservidores.cl:1936/tvcosta1/tvcosta1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVElquiLaSerena.cl",TV Elqui (La Serena) (720p) [Offline] +https://5eff35271151c.streamlock.net:1936/8070/8070/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOsorno.cl",TV Osorno (720p) [Not 24/7] +https://hd.chileservidores.cl:1936/osorno2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPop.cl",TV Pop (720p) +https://v4.tustreaming.cl/poptv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuellon.cl",TV Quellón (1080p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/tvquellon/tvquellon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuintaRegion.cl",TV Quinta Región (1080p) [Not 24/7] +https://stmv1.zcastbr.com/danielg/smil:transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSalud.cl",TV Salud (720p) [Not 24/7] +https://srv3.zcast.com.br/mastermedia/mastermedia/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSenado.cl",TV Senado (360p) +https://janus-tv-ply.senado.cl/playlist/playlist.m3u8 +#EXTINF:-1 tvg-id="TVVision.cl",TV Vision (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3750/live/tvvisionlive.m3u8 +#EXTINF:-1 tvg-id="TVN.cl",TVN (720p) [Not 24/7] +https://unlimited1-us.dps.live/tvn/tvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVN.cl",TVN (720p) [Not 24/7] +https://unlimited10-cl.dps.live/tvn/tvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOSanVicente.cl",TVO (San Vicente) (270p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOSanVicente.cl",TVO San Vicente (720p) [Not 24/7] +https://unlimited2-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOTocopilla.cl",TVO Tocopilla (360p) [Not 24/7] +http://srv3.zcast.com.br/cristian5592/cristian5592/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR.cl",TVR (180p) [Not 24/7] +https://unlimited1-us.dps.live/tvr/tvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR.cl",TVR (720p) [Timeout] +https://unlimited1-cl.dps.live/tvr/tvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ULosLagosTV.cl",U Los Lagos TV (1080p) [Not 24/7] +http://tv.ulagos.cl/web/live.m3u8 +#EXTINF:-1 tvg-id="UCV3TV.cl",UCV3 TV (720p) +http://unlimited6-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UCV3TV.cl",UCV3 TV (720p) [Timeout] +http://unlimited1-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] +http://cl.origin.grupoz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] +http://edge1.cl.grupoz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] +https://tls.cdnz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UMAGTVTelevision.cl",UMAGTV Televisión (Punta Arenas) (720p) [Offline] +http://edge1.cl.grupoz.cl/tser5/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UnidadEvangelicaTV.cl",Unidad Evangelica TV (720p) [Not 24/7] +https://v2.tustreaming.cl/unidadevangelica/index.m3u8 +#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] +https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] +https://unlimited6-cl.dps.live/uatv/uatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UTVSanClemente.cl",UTV San Clemente (720p) [Geo-blocked] +http://v3.tustreaming.cl/utvsc/playlist.m3u8 +#EXTINF:-1 tvg-id="VCOnline.cl",VC Online (720p) +https://593b04c4c5670.streamlock.net/8068/8068/playlist.m3u8 +#EXTINF:-1 tvg-id="VidaTV.cl",Vida TV (1080p) [Offline] +http://45.161.188.242:88/vidatv/index.m3u8 +#EXTINF:-1 tvg-id="VisionPlusTVMelipilla.cl",Visión Plus TV (Melipilla) (720p) [Not 24/7] +http://v2.tustreaming.cl/visionplustv/index.m3u8 +#EXTINF:-1 tvg-id="VisionTVFrutillar.cl",Visión TV Frutillar (720p) [Not 24/7] +https://vivo.solumedia.com:19360/visiontv/visiontv.m3u8 +#EXTINF:-1 tvg-id="VozdePoder.cl",Voz de Poder (720p) [Not 24/7] +https://v2.tustreaming.cl/vozdepoder/index.m3u8 +#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7] +https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7] +https://unlimited6-cl.dps.live/vtv/vtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTVVinadelMaryValparaiso.cl",VTV Viña del Mar y Valparaíso (720p) [Offline] +http://cdn.streamingmedia.cl:1935/live/vtvvina/playlist.m3u8 +#EXTINF:-1 tvg-id="Wapp.cl",Wapp (1080p) +https://mdstrm.com/live-stream-playlist/6046495ddf98b007fa2fe807.m3u8 +#EXTINF:-1 tvg-id="ZappingMusic.cl",Zapping (720p) [Offline] +https://zmlive.zappingtv.com/zm_free/zm.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZizaTVChiguayante.cl",Ziza TV (Chiguayante) (720p) [Not 24/7] +https://v2.tustreaming.cl/zizatv/index.m3u8 +#EXTINF:-1 tvg-id="ZonaLatina.cl",Zona Latina (480p) [Not 24/7] +http://38.131.11.9:1080/play/a00x +#EXTINF:-1 tvg-id="ZonaPlayTVZPTV.cl",Zona Play TV (ZPTV) (720p) [Not 24/7] +https://srv3.zcast.com.br/juancarlos9451/juancarlos9451/playlist.m3u8 diff --git a/streams/cm.m3u b/streams/cm.m3u new file mode 100644 index 000000000..e742e2e54 --- /dev/null +++ b/streams/cm.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EmergenceTV.cm",Emergence TV (480p) [Not 24/7] +http://connectiktv.ddns.net:5000/emergencetv/emergencetv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTVChannel.cm",My TV Channel (720p) [Not 24/7] +http://connectiktv.ddns.net:5000/mytvchannel/@mytvchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayTV.cm",Play TV (720p) [Not 24/7] +http://connectiktv.ddns.net:5000/playtv/@playtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Vision4.cm",Vision 4 (360p) +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/vision4/hls_video/index.m3u8 diff --git a/streams/cn.m3u b/streams/cn.m3u new file mode 100644 index 000000000..2cc97d705 --- /dev/null +++ b/streams/cn.m3u @@ -0,0 +1,2959 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",BesTV超级 (576p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226942/index.m3u8 +#EXTINF:-1 tvg-id="",Blue 美剧 (360p) [Not 24/7] +http://210.210.155.35/dr9445/h/h16/02.m3u8 +#EXTINF:-1 tvg-id="CCTVPlus1.cn",CCTV+ 1 (600p) [Not 24/7] +https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTVPlus2.cn",CCTV+ 2 (600p) [Not 24/7] +https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-1/G_CCTV-1 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] +http://223.110.245.139/PLTV/4/224/3221225852/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225852/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225618/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://117.169.120.140:8080/live/cctv-1/.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://183.207.248.71/cntv/live1/cctv-1/cctv-1 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv1/HD-2500k-1080P-cctv1 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://183.207.249.9/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://183.207.249.15/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://223.110.245.170/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://223.110.245.170/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) +http://223.110.245.173/PLTV/4/224/3221227375/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/cctv1hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.243.138/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (360p) [Offline] +http://125.210.152.10:8060/live/CCTV2HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTV2HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (540p) +http://112.25.48.68/live/program/live/cctv2/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-2/G_CCTV-2 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) [Offline] +http://183.207.249.13/PLTV/4/224/3221225881/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://117.169.120.140:8080/live/cctv-2/.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://183.207.248.71/cntv/live1/cctv-2/cctv-2 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) +http://223.110.245.170/PLTV/3/224/3221227207/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226220/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (480p) [Not 24/7] +http://newvideo.dangtutv.cn:8278/CCTVzongyi/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (576p) [Offline] +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226360/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://39.135.38.165:6610/000000001000/1000000001000011218/1.m3u8?IASHttpSessionId=OTT16157620200202041417014267&fmt=ts2hls&u=45768392 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225647/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://112.25.48.68/live/program/live/cctv3hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://117.169.120.140:8080/live/cctv-3/.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv3/HD-2500k-1080P-cctv3 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://183.207.249.5/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://183.207.249.6/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://183.207.249.14/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) +http://183.207.249.35/PLTV/4/224/3221227295/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/cctv-3/cctv-3 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=80&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctvamerica_2/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctveurope_2/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] +https://cctvcnch5ca.v.wscdns.com/live/cctvamerica_2/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] +https://cctvcnch5ca.v.wscdns.com/live/cctveurope_2/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (540p) +http://112.25.48.68/live/program/live/cctv4/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) +http://111.63.117.13:6060/030000001000/CCTV-4/CCTV-4.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/CCTV-4/CCTV-4 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Offline] +http://183.207.249.15/PLTV/4/224/3221225781/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225781/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://117.169.120.140:8080/live/cctv-4/.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://183.207.248.71/cntv/live1/cctv-4/cctv-4 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://183.207.249.6/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://183.207.249.11/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) +http://223.110.245.170/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Offline] +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225706/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225649/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://117.169.120.132:8080/live/hdcctv05plus/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://183.207.248.71/cntv/live1/CCTV5+/hdcctv05plus +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://183.207.248.71/cntv/live1/hdcctv05plus/hdcctv05plus +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://183.207.249.14/PLTV/3/224/3221225604/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) +http://223.110.245.139/PLTV/4/224/3221227480/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (360p) [Not 24/7] +http://hbry.chinashadt.com:1938/live/1004.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv5_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (576p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226362/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225633/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225648/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://112.25.48.68/live/program/live/cctv5hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://183.207.248.71/cntv/live1/cctv-5/cctv-5 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://183.207.249.35/PLTV/4/224/3221227381/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.243.137/PLTV/3/224/3221227478/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.243.172/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.245.136/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.245.139/PLTV/4/224/3221227298/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.245.170/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) +http://223.110.245.172/PLTV/4/224/3221227298/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv5/HD-2500k-1080P-cctv5 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227401/1.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226224/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Timeout] +http://ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225650/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://117.169.120.140:8080/live/cctv-6/.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://183.207.248.37/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://183.207.249.9/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://183.207.249.15/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) +http://223.110.245.173/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/cctv6hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv6/HD-2500k-1080P-cctv6 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] +http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226226/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=87&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTV7HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (540p) +http://112.25.48.68/live/program/live/cctv7/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225644/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225624/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://117.169.120.140:8080/live/cctv-7/.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://183.207.248.10/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://183.207.248.71/cntv/live1/cctv-7/cctv-7 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://183.207.249.9/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://183.207.249.15/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) +http://183.207.249.36/PLTV/4/224/3221227314/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=028&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=28&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-8/G_CCTV-8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225631/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://117.169.120.132:8080/live/cctv-8/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://117.169.120.140:8080/live/cctv-8/.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://183.207.248.12/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://183.207.248.35/PLTV/3/224/3221227205/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://183.207.248.71/cntv/live1/cctv-8/cctv-8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.243.171/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.245.139/PLTV/4/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.245.170/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.245.170/PLTV/3/224/3221227205/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://223.110.245.172/PLTV/4/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=21&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv8/HD-2500k-1080P-cctv8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Offline] +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226257/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctvjilu_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTVJLHD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225868/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225646/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) +http://183.207.248.71/cntv/live1/cctv-news/cctv-news +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) +http://183.207.249.6/PLTV/3/224/3221225532/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (720p) [Timeout] +http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://117.169.120.140:8080/live/cctv-10/.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://183.207.248.71/cntv/live1/cctv-10/cctv-10 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://183.207.249.7/PLTV/3/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://183.207.249.34/PLTV/4/224/3221227317/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) +http://223.110.245.170/PLTV/3/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" status="online",CCTV-10科教 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225636/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=4&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv11_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (540p) +http://112.25.48.68/live/program/live/cctv11/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (720p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225628/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) +http://117.169.120.140:8080/live/cctv-11/.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) +http://223.110.245.169/PLTV/4/224/3221227384/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv12_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (540p) [Timeout] +http://112.25.48.68/live/program/live/cctv12/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (576p) [Offline] +http://183.207.249.5/PLTV/4/224/3221225803/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (720p) [Timeout] +http://125.210.152.18:9090/live/CCTV12HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225637/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225629/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://183.207.248.71/cntv/live1/cctv-12/cctv-12 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://183.207.249.7/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://183.207.249.8/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://223.110.245.170/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) +http://223.110.245.172/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (360p) +http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (540p) +http://112.25.48.68/live/program/live/cctvxw/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) +http://stream4.jlntv.cn/cctv13/sd/live.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Timeout] +http://125.210.152.18:9090/live/CCTV13_750.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (720p) +http://117.169.120.140:8080/live/cctv-13/.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) +http://183.207.248.71/cntv/live1/cctv-13/cctv-13 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) +http://183.207.249.14/PLTV/3/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) +http://183.207.249.36/PLTV/4/224/3221227387/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) [Not 24/7] +http://223.110.245.170/PLTV/3/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="CCTV15.cn",CCTV-15音乐 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=54&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225908/index.m3u8 +#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225907/index.m3u8 +#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) [Offline] +http://117.169.120.160:8080/live/HD-4000k-1080P-cctv17/1.m3u8 +#EXTINF:-1 tvg-id="",CCTV-女性时尚 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8 +#EXTINF:-1 tvg-id="",CCTV-老故事 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8 +#EXTINF:-1 tvg-id="CETV1.cn",CETV1 (576p) +http://183.207.248.71/gitv/live1/G_CETV-1/G_CETV-1 +#EXTINF:-1 tvg-id="CETV2.cn",CETV2 (576p) +http://183.207.248.71/gitv/live1/G_CETV-2/G_CETV-2 +#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) +http://live.cgtn.com/500/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) +http://live.cgtn.com/1000/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=14&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CGTNArabic.cn",CGTN Arabic (576p) [Not 24/7] +http://livear.cgtn.com/1000a/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNDocumentary.cn",CGTN Documentary (576p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225645/index.m3u8 +#EXTINF:-1 tvg-id="CGTNDocumentary.cn",CGTN Documentary (576p) [Not 24/7] +https://livedoc.cgtn.com/1000d/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNEspanol.cn",CGTN Español (576p) +https://livees.cgtn.com/1000e/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNEspanol.cn",CGTN Español (576p) [Not 24/7] +http://livees.cgtn.com/500e/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNFrancais.cn",CGTN Français (576p) [Not 24/7] +https://news.cgtn.com/resource/live/french/cgtn-f.m3u8 +#EXTINF:-1 tvg-id="",CGTN纪录 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225509/index.m3u8 +#EXTINF:-1 tvg-id="",CHC动作电影 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=119&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",CHC高清电影 [Offline] +http://ivi.bupt.edu.cn/hls/chchd.m3u8 +#EXTINF:-1 tvg-id="",CNC中文 (720p) [Not 24/7] +http://source07.v.news.cn/live/CNC_CN/playlist.m3u8 +#EXTINF:-1 tvg-id="",CNC英语 (720p) [Not 24/7] +http://source07.v.news.cn/live/CNC_EN/playlist.m3u8 +#EXTINF:-1 tvg-id="",NewTV中国功夫 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV军事评论 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225535/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV军旅剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV农业致富 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV动画王国 (1080p) +http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV动画王国 (1080p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV古装剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225524/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV完美遊戲 (1080p) +http://183.207.249.16/PLTV/3/224/3221225539/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV家庭剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225538/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV怡伴健康 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225571/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV搏击 (720p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221226803/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV明星大片 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV武搏世界 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV潮妈辣婆 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225542/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV炫舞未来 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV爱情喜剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225533/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV精品体育 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV精品大剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV精品纪录 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV精品電影 (1080p) +http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV精品電影 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV超级体育 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV超级电影 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV超级电影 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV超级电视剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV超级综艺 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8 +#EXTINF:-1 tvg-id="",NewTV金牌综艺 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8 +#EXTINF:-1 tvg-id="SDETV.cn",SDETV (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8 +#EXTINF:-1 tvg-id="",SiTV七彩戏剧 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/qcxj/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV东方财经 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/dfcj/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV全纪实台 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/qjshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV动漫秀场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dmxchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV劲爆体育 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/jbtyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV劲爆体育 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=74&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",SiTV幸福彩 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=73&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",SiTV新视觉 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=75&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",SiTV新视觉台 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/xsjhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV极速汽车 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/jsqchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV欢笑剧场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hxjchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV法治天地 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/fztd/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV游戏风云 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/yxfyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV生活时尚 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/shsshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV都市剧场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dsjchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV魅力足球 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/mlyyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",SiTV魅力足球 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=76&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",TVB 明珠台 (240p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=2&FvSeid=1&Pcontent_id=8114.m3u8&Provider_id=0 +#EXTINF:-1 tvg-id="",TVB明珠台 (480p) [Timeout] +http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",TVB明珠台 (480p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="",TVB明珠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&_res_tag_=video +#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="TVS2.cn",TVS2 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8 +#EXTINF:-1 tvg-id="",万州三峡移民 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="",万州影视 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="",万州科教 (576p) +http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="",万州综合 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="",万盛新闻综合 (576p) [Not 24/7] +http://stream0.tv41.ru/live.m3u8 +#EXTINF:-1 tvg-id="",三明公共 (720p) [Not 24/7] +http://stream.smntv.cn/smtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="",三明新闻综合 (720p) [Not 24/7] +http://stream.smntv.cn/smtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="",三立新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/sllive_fhd.m3u8 +#EXTINF:-1 tvg-id="",上海 ICS外语 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/wypdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海东方卫视 [Offline] +http://ivi.bupt.edu.cn/hls/dfhd.m3u8 +#EXTINF:-1 tvg-id="",上海东方影视 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dsjpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海五星体育 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/ssty/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海卫视 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225856/index.m3u8 +#EXTINF:-1 tvg-id="",上海卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv +#EXTINF:-1 tvg-id="",上海卫视 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8 +#EXTINF:-1 tvg-id="",上海卫视 [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="",上海哈哈炫动 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hhxdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海外滩魔眼 [Offline] +rtmp://bililive.kksmg.com/hls/sdi80 +#EXTINF:-1 tvg-id="",上海教育 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/setv/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海教育台 (720p) [Offline] +http://live.setv.sh.cn/slive/shedu02_1200k.m3u8 +#EXTINF:-1 tvg-id="",上海新闻综合 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/xwzhhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海第一财经 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dycjhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海纪实 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225654/index.m3u8 +#EXTINF:-1 tvg-id="",上海纪实 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225655/index.m3u8 +#EXTINF:-1 tvg-id="",上海这一刻魔都眼 (720p) [Not 24/7] +http://bililive.kksmg.com/hls/sdi80/playlist.m3u8 +#EXTINF:-1 tvg-id="",上海都市 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/ylpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",上海金山电视台 (270p) +http://live.mudu.tv/watch/4zbn2f.m3u8 +#EXTINF:-1 tvg-id="",上虞1新闻综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8 +#EXTINF:-1 tvg-id="",上虞3新商都 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8 +#EXTINF:-1 tvg-id="",上虞經濟文化 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/DNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225500/index.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (576p) +http://183.207.249.15/PLTV/4/224/3221225816/index.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (1080p) +http://112.25.48.68/live/program/live/dnwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (1080p) +http://117.169.120.140:8080/live/dongnanstv/.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (1080p) +http://223.110.254.205:6610/cntv/live1/n-dongnanstv/n-dongnanstv/1.m3u8 +#EXTINF:-1 tvg-id="",东南卫视 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",东南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",东乡电视台 [Timeout] +http://117.156.28.119/270000001111/1110000131/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225672/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225658/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225659/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://112.25.48.68/live/program/live/hddfws/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://183.207.249.7/PLTV/4/224/3221227396/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://223.110.254.212:6610/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv/1.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Not 24/7] +http://223.110.243.138/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Not 24/7] +http://223.110.243.138/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",东方影视 (1080p) +http://140.207.241.3:8080/live/program/live/dsjpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",东至影视 (576p) [Not 24/7] +http://223.247.33.124:1935/live/yingshi/playlist.m3u8 +#EXTINF:-1 tvg-id="",东至文化资讯 (576p) [Not 24/7] +http://223.247.33.124:1935/live/wenhua/playlist.m3u8 +#EXTINF:-1 tvg-id="",东至新闻综合 (720p) [Not 24/7] +http://223.247.33.124:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",东莞综合 (480p) +http://dslive.grtn.cn/dgzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",东阳影视生活 [Offline] +http://stream.dybtv.com/yssh/GQ/live.m3u8 +#EXTINF:-1 tvg-id="",东阳新闻综合 [Offline] +http://stream.dybtv.com/xwzh/GQ/live.m3u8 +#EXTINF:-1 tvg-id="",中国交通 (576p) [Offline] +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 +#EXTINF:-1 tvg-id="",中国交通 (576p) [Offline] +http://ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 +#EXTINF:-1 tvg-id="",中国交通 (四川) (360p) [Offline] +https://tv.lanjingfm.com/cctbn/sichuan.m3u8 +#EXTINF:-1 tvg-id="",中国交通 (安徽) [Offline] +https://tv.lanjingfm.com/cctbn/anhui.m3u8 +#EXTINF:-1 tvg-id="",中国交通 (海南) (1080p) [Not 24/7] +https://tv.lanjingfm.com/cctbn/hainan.m3u8 +#EXTINF:-1 tvg-id="",中国天气 (576p) [Not 24/7] +http://112.25.48.68/live/program/live/zgqx/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",中国教育1 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8 +#EXTINF:-1 tvg-id="",中国教育1 (1080p) [Not 24/7] +http://39.134.39.39/PLTV/88888888/224/3221226282/index.m3u8 +#EXTINF:-1 tvg-id="",中国气象 (576p) [Not 24/7] +http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="",中天新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/ztxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",中山公共 (480p) +http://dslive.grtn.cn/zszh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",中山教育 [Offline] +http://149.129.100.78/tv.php?id=zsjy +#EXTINF:-1 tvg-id="",中山综合 [Offline] +http://149.129.100.78/tv.php?id=zszh +#EXTINF:-1 tvg-id="",中牟综合 (360p) [Not 24/7] +http://218.206.193.210:9850/playServer/acquirePlayService?deviceGroup=TV(STB)&drmType=none&kdsplayer=media&nsukey=&op=sovp&playType=catchup&protocol=hls0&redirect=m3u8&resourceId=1000000000000001&type=live +#EXTINF:-1 tvg-id="",中牟综合 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10122-1.m3u8 +#EXTINF:-1 tvg-id="",中視新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/zsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",临沂公共 [Offline] +http://live.ilinyi.net/channels/tvie/linyigonggong/flv:500k/live +#EXTINF:-1 tvg-id="",临沂农科 [Offline] +http://live.ilinyi.net/channels/tvie/linyicaijing/flv:500k/live +#EXTINF:-1 tvg-id="",乐清新闻 [Geo-blocked] +http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_170.m3u8 +#EXTINF:-1 tvg-id="",乐清生活 [Geo-blocked] +http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8 +#EXTINF:-1 tvg-id="",云南 Ⅰ 文山公共台 (1080p) +http://tvdrs.wsrtv.com.cn:8100/channellive/ch2.flv +#EXTINF:-1 tvg-id="",云南 Ⅰ 文山综合台 (1080p) [Not 24/7] +http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv +#EXTINF:-1 tvg-id="",云南 Ⅰ 红河综合台 (1080p) +http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南公共 [Offline] +http://yntvpullhls.ynradio.com/live/yunnangonggong/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (540p) +http://112.25.48.68/live/program/live/ynws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225664/index.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://183.207.248.71/gitv/live1/G_YUNNAN/G_YUNNAN +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://223.110.245.173/PLTV/4/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="",云南卫视 (576p) [Not 24/7] +http://183.207.248.71/cntv/live1/yunnanstv/yunnanstv +#EXTINF:-1 tvg-id="",云南卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",云南卫视 (1080p) +https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8 +#EXTINF:-1 tvg-id="",云南国际 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanguoji/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南娱乐 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanyule/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南少儿 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanshaoer/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南生活资讯 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanshenghuo/playlist.m3u8 +#EXTINF:-1 tvg-id="",云南都市 (1080p) [Timeout] +http://39.130.202.81:6610/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8 +#EXTINF:-1 tvg-id="",云南都市 [Offline] +http://yntvpullhls.ynradio.com/live/yunnandushi/playlist.m3u8 +#EXTINF:-1 tvg-id="",云浮综合 (480p) +http://dslive.grtn.cn/yfzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",五星体育 (720p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221226799/index.m3u8 +#EXTINF:-1 tvg-id="",亚太台 (480p) +http://174.127.67.246/live330/playlist.m3u8 +#EXTINF:-1 tvg-id="",交城電視台 (576p) +http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",京视剧场 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227040/index.m3u8 +#EXTINF:-1 tvg-id="",亳州农村 (360p) [Timeout] +http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8 +#EXTINF:-1 tvg-id="",亳州新聞頻道 (360p) +http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8 +#EXTINF:-1 tvg-id="",今日俄罗斯 (720p) [Offline] +https://rt-news-gd.secure2.footprint.net/1103_2500Kb.m3u8 +#EXTINF:-1 tvg-id="",仙桃新聞綜合 (576p) [Offline] +http://221.233.242.239:280/live/71/playlist.m3u8 +#EXTINF:-1 tvg-id="",仙桃生活文體 (576p) [Offline] +http://221.233.242.239:280/live/72/playlist.m3u8 +#EXTINF:-1 tvg-id="",优漫卡通 (576p) +http://183.207.249.15/PLTV/4/224/3221225933/index.m3u8 +#EXTINF:-1 tvg-id="",优漫卡通 (576p) +http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8 +#EXTINF:-1 tvg-id="",优视 (720p) +http://1-fss24-s0.streamhoster.com/lv_uchannel/_definst_/broadcast1/chunklist.m3u8 +#EXTINF:-1 tvg-id="",优视 (720p) [Not 24/7] +http://1-fss24-s0.streamhoster.com/lv_uchannel/broadcast1/playlist.m3u8 +#EXTINF:-1 tvg-id="",余姚姚江文化 (576p) +http://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8 +#EXTINF:-1 tvg-id="",余姚新闻综合 (576p) +http://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8 +#EXTINF:-1 tvg-id="",佛山公共 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",佛山公共 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",侨乡 (1080p) +http://stream.jinjiang.tv/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",內蒙古卫视 (1080p) [Offline] +http://live.m2oplus.nmtv.cn/1/playlist.m3u8 +#EXTINF:-1 tvg-id="",六安公共 (720p) [Offline] +http://live.china-latv.com/channel2/playlist.m3u8 +#EXTINF:-1 tvg-id="",六安新闻综合 (720p) [Not 24/7] +http://live.china-latv.com/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="",兵团卫视 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/btws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",兵团卫视 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=050&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="",内江公共 (720p) +http://njzb.scnj.tv:90/live/gggy_gggy800.m3u8 +#EXTINF:-1 tvg-id="",内江科教 (720p) +http://njzb.scnj.tv:90/live/kjpd_kjpd800.m3u8 +#EXTINF:-1 tvg-id="",内江综合 (720p) +http://njzb.scnj.tv:90/live/xwzh_xwzh800.m3u8 +#EXTINF:-1 tvg-id="",内蒙卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225577/index.m3u8 +#EXTINF:-1 tvg-id="",内蒙古 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8 +#EXTINF:-1 tvg-id="",内蒙古卫视 (480p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=17&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225577/index.m3u8 +#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225667/index.m3u8 +#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) +http://117.169.120.140:8080/live/neimenggustv/.m3u8 +#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) +http://183.207.248.71/gitv/live1/G_NEIMENGGU/G_NEIMENGGU +#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) +http://223.110.245.173/PLTV/4/224/3221225836/index.m3u8 +#EXTINF:-1 tvg-id="",内蒙蒙语 (240p) +http://stream.nmtv.cn/3/sd/live.m3u8 +#EXTINF:-1 tvg-id="",农安新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/naxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (240p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=190&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] +http://125.210.152.18:9090/live/FHZW_1200.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (720p) +http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (720p) +http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (720p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/fhchinese/1.m3u8 +#EXTINF:-1 tvg-id="",凤凰中文 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhchinese/1.m3u8 +#EXTINF:-1 tvg-id="",凤凰电影 [Offline] +https://www.fanmingming.cn/hls/fhdy.m3u8 +#EXTINF:-1 tvg-id="",凤凰资讯 (576p) [Timeout] +http://125.210.152.18:9090/live/FHZX_1200.m3u8 +#EXTINF:-1 tvg-id="",凤凰资讯 (720p) +http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰资讯 (720p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰资讯 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhzixun/1.m3u8 +#EXTINF:-1 tvg-id="",凤凰香港 (720p) +http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8 +#EXTINF:-1 tvg-id="",凤凰香港 (720p) [Timeout] +http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8 +#EXTINF:-1 tvg-id="",凤台文化生活 (576p) [Not 24/7] +http://60.175.115.119:1935/live/wenhua/playlist.m3u8 +#EXTINF:-1 tvg-id="",凤台综合 (576p) [Not 24/7] +http://60.175.115.119:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",利川公共 (180p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w1847269952_b204800.m3u8 +#EXTINF:-1 tvg-id="",利川公共 (576p) [Geo-blocked] +http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8 +#EXTINF:-1 tvg-id="",利川新闻综合 (480p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w439903609_b1228800.m3u8 +#EXTINF:-1 tvg-id="",前郭综合 [Geo-blocked] +http://stream2.jlntv.cn/qg/sd/live.m3u8 +#EXTINF:-1 tvg-id="",动作电影 (1080p) [Timeout] +http://39.134.19.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8 +#EXTINF:-1 tvg-id="",动画王国 (1080p) +http://183.207.248.71/cntv/live1/donghuawg/donghuawg +#EXTINF:-1 tvg-id="",北京10少儿 [Offline] +http://ivi.bupt.edu.cn/hls/btv10.m3u8 +#EXTINF:-1 tvg-id="",北京体育 (1080p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=158&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",北京冬奥纪实 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=158&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",北京卡酷少儿 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225562/index.m3u8 +#EXTINF:-1 tvg-id="",北京卡酷少儿 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=108&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",北京卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_BEIJING/G_BEIJING +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225673/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225674/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://183.207.248.71/cntv/live1/beijingstv/beijingstv +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://183.207.249.7/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://183.207.249.8/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227246/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227390/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://223.110.245.173/PLTV/4/224/3221227390/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/bjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",北京卫视 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv1.m3u8 +#EXTINF:-1 tvg-id="",北京家有购物 (720p) +http://39.134.66.66/PLTV/88888888/224/3221225554/index.m3u8 +#EXTINF:-1 tvg-id="",北京影視 [Offline] +http://ivi.bupt.edu.cn/hls/btv4.m3u8 +#EXTINF:-1 tvg-id="",北京文藝 [Offline] +http://ivi.bupt.edu.cn/hls/btv2.m3u8 +#EXTINF:-1 tvg-id="",北京新聞 [Offline] +http://ivi.bupt.edu.cn/hls/btv9.m3u8 +#EXTINF:-1 tvg-id="",北京生活 [Offline] +http://ivi.bupt.edu.cn/hls/btv7.m3u8 +#EXTINF:-1 tvg-id="",北京科教 [Offline] +http://ivi.bupt.edu.cn/hls/btv3.m3u8 +#EXTINF:-1 tvg-id="",北京紀實 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225675/index.m3u8 +#EXTINF:-1 tvg-id="",北京紀實 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225676/index.m3u8 +#EXTINF:-1 tvg-id="",北京衛視 (1080p) [Geo-blocked] +http://14.152.88.77/liveplay-kk.rtxapp.com/live/program/live/bjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",北京财经 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv5.m3u8 +#EXTINF:-1 tvg-id="",北京青年 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv8.m3u8 +#EXTINF:-1 tvg-id="",北碚综合 (576p) +http://222.178.181.121:12034/beibei01.m3u8 +#EXTINF:-1 tvg-id="",半岛新闻 (1080p) +https://live-hls-web-aje.getaj.net/AJE/01.m3u8 +#EXTINF:-1 tvg-id="",华亭电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000148/index.m3u8 +#EXTINF:-1 tvg-id="",华数 (720p) [Not 24/7] +http://hls-ott-zhibo.wasu.tv/live/442/index.m3u8 +#EXTINF:-1 tvg-id="",南京信息 (720p) +http://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京十八 (576p) +http://183.207.248.71/gitv/live1/G_NJSB/G_NJSB +#EXTINF:-1 tvg-id="",南京十八 (720p) +http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京娱乐 (720p) +http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京少儿 (720p) [Not 24/7] +http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京影视 [Offline] +http://live.nbs.cn/channels/njtv/yspd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京教科 (576p) +http://183.207.248.71/gitv/live1/G_NJJK/G_NJJK +#EXTINF:-1 tvg-id="",南京教科 (576p) +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8 +#EXTINF:-1 tvg-id="",南京教科 (720p) [Not 24/7] +http://live.nbs.cn/channels/njtv/jkpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京新闻综合 (720p) +http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南京生活 (720p) +http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="",南召一套 (576p) [Not 24/7] +http://hnnz.chinashadt.com:1935/live/1002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",南宁公共 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_PUB_A.m3u8 +#EXTINF:-1 tvg-id="",南宁影视娱乐 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_VOD_A.m3u8 +#EXTINF:-1 tvg-id="",南宁新闻综合 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_NEWS_A.m3u8 +#EXTINF:-1 tvg-id="",南宁都市生活 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_METRO_A.m3u8 +#EXTINF:-1 tvg-id="",南川新闻综合 (360p) +http://221.5.213.4:30000/1111.m3u8 +#EXTINF:-1 tvg-id="",南川新闻综合 (360p) [Not 24/7] +http://nanchuanlive.cbg.cn:30000/1111.m3u8 +#EXTINF:-1 tvg-id="",南川旅游经济 (360p) [Offline] +http://221.5.213.4:30000/2222.m3u8 +#EXTINF:-1 tvg-id="",南川旅游经济 (360p) [Offline] +http://nanchuanlive.cbg.cn:30000/2222.m3u8 +#EXTINF:-1 tvg-id="",南方卫视 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=51 +#EXTINF:-1 tvg-id="",南方卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",南方购物 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=42 +#EXTINF:-1 tvg-id="",南通公共 [Offline] +http://149.129.100.78/nantong.php?id=gg +#EXTINF:-1 tvg-id="",南通教育 [Offline] +http://149.129.100.78/nantong.php?id=sj +#EXTINF:-1 tvg-id="",南通文化旅游 [Offline] +http://149.129.100.78/nantong.php?id=ly +#EXTINF:-1 tvg-id="",南通新闻综合 [Offline] +http://149.129.100.78/nantong.php?id=zh +#EXTINF:-1 tvg-id="",南阳新闻 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8 +#EXTINF:-1 tvg-id="",南陽公共頻道 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8 +#EXTINF:-1 tvg-id="",南陽科教頻道 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8 +#EXTINF:-1 tvg-id="",博州汉语综合 [Offline] +http://klmyyun.chinavas.com/hls/bozhou1.m3u8 +#EXTINF:-1 tvg-id="",博州维语综合 [Offline] +http://klmyyun.chinavas.com/hls/bozhou3.m3u8 +#EXTINF:-1 tvg-id="",厦门卫视 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/xmws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",厦门卫视 (576p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8 +#EXTINF:-1 tvg-id="",双峰电视一套 (360p) +http://hnsf.chinashadt.com:2036/zhuanma/tv1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",发现之旅 (576p) [Timeout] +http://125.210.152.18:9090/live/FXZL_750.m3u8 +#EXTINF:-1 tvg-id="",台視新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/tsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",吉州新聞綜合 (1080p) +http://218.204.153.158/10.m3u8 +#EXTINF:-1 tvg-id="",吉林7 (900p) [Not 24/7] +http://stream1.jlntv.cn/fzpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (240p) [Not 24/7] +http://stream4.jlntv.cn/test2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/JLWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (540p) +http://112.25.48.68/live/program/live/jlws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (576p) +http://117.169.120.140:8080/live/jilinstv/.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (576p) +http://183.207.249.7/PLTV/4/224/3221225883/index.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 +#EXTINF:-1 tvg-id="",吉林卫视 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",吉林卫视 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",吉林市新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/jilin1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",吉林乡村 (900p) [Not 24/7] +http://stream1.jlntv.cn/xcpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",吴江新闻综合 (720p) [Not 24/7] +http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8 +#EXTINF:-1 tvg-id="",周口图文信息 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live4/mp4:ch4-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="",周口影视 [Offline] +http://hls.haokan.bdstatic.com/haokan/stream_bduid_1646578943_0.m3u8 +#EXTINF:-1 tvg-id="",周口新闻综合 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live1/mp4:ch1-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="",周口科教文化2 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live3/mp4:ch3-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="",周口经济生活2 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live2/mp4:ch2-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="",呼伦贝尔新闻 (720p) [Not 24/7] +http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",呼伦贝尔生活资讯 (720p) [Not 24/7] +http://live1.hrtonline.cn:1935/live/live102/500K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",和政电视台 [Timeout] +http://117.156.28.119/270000001111/1110000149/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225613/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225619/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225620/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Not 24/7] +http://39.134.66.66/PLTV/88888888/224/3221225617/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225615/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225618/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225622/index.m3u8 +#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="",哈哈炫动卫视 (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s50/index2.m3u8 +#EXTINF:-1 tvg-id="",哈哈炫动卫视 (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s50/index.m3u8 +#EXTINF:-1 tvg-id="",唯心電視 (480p) +http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="",嘉佳卡通 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=66 +#EXTINF:-1 tvg-id="",嘉佳卡通 (576p) +http://223.110.245.139/PLTV/4/224/3221227009/index.m3u8 +#EXTINF:-1 tvg-id="",嘉佳卡通 (广东) (540p) [Not 24/7] +http://112.25.48.68/live/program/live/jjkt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 四川影视台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv5/index.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 四川新闻台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv4/index.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 四川经济台 (720p) [Timeout] +http://scgctvshow.sctv.com/hdlive/sctv3/index.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 巴中综合台 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.flv +#EXTINF:-1 tvg-id="",四川 Ⅰ 星空购物台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv6/index.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州公共 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv2.flv +#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州科技 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv3.flv +#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州综合 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv1.flv +#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳公共 [Offline] +http://live.826pc.com/mytv/live.php?id=3 +#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳科技 [Offline] +http://live.826pc.com/mytv/live.php?id=2 +#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳综合 [Offline] +http://live.826pc.com/mytv/live.php?id=4 +#EXTINF:-1 tvg-id="",四川 Ⅰ 达州公共台 (720p) [Not 24/7] +http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel36/playlist.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 达州综合台 (720p) [Not 24/7] +http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel35/playlist.m3u8 +#EXTINF:-1 tvg-id="",四川 Ⅰ 雅安公共 (720p) +http://flv.drs.tv.yatv.tv:8080/channellive/gonggong.flv +#EXTINF:-1 tvg-id="",四川 Ⅰ 雅安综合 (720p) +http://flv.drs.tv.yatv.tv:8080/channellive/xinwen.flv +#EXTINF:-1 tvg-id="",四川公共 (720p) +http://scgctvshow.sctv.com/hdlive/sctv9/index.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/SCWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (540p) +http://112.25.48.68/live/program/live/scws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225733/index.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (576p) +http://183.207.248.71/gitv/live1/SCWS/SCWS +#EXTINF:-1 tvg-id="",四川卫视 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (576p) [Timeout] +http://183.207.249.36/PLTV/4/224/3221225814/index.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (720p) +http://scgctvshow.sctv.com/scgc/sctv1deu5453w/1.m3u8 +#EXTINF:-1 tvg-id="",四川卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=3&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",四川妇女儿童 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv7/index.m3u8 +#EXTINF:-1 tvg-id="",四川康巴卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225527/index.m3u8 +#EXTINF:-1 tvg-id="",四川文化旅游 (720p) +http://scgctvshow.sctv.com/hdlive/sctv2/index.m3u8 +#EXTINF:-1 tvg-id="",四平新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/sptv/sd/live.m3u8 +#EXTINF:-1 tvg-id="",国外MTV (720p) [Offline] +https://vcndstv.teleosmedia.com/stream/dstv/sunburn/seglist_720p.m3u8 +#EXTINF:-1 tvg-id="",增城綜合 (1080p) +http://202.168.164.38:8083/videos/live/19/27/QEQXMtU5AUpwo/QEQXMtU5AUpwo.m3u8 +#EXTINF:-1 tvg-id="",大冶一套 [Geo-blocked] +http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8 +#EXTINF:-1 tvg-id="",大冶二套 [Geo-blocked] +http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8 +#EXTINF:-1 tvg-id="",大悟综合 [Geo-blocked] +http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8 +#EXTINF:-1 tvg-id="",大愛1 (720p) +https://pulltv1.wanfudaluye.com/live/tv1.m3u8 +#EXTINF:-1 tvg-id="",大爱海外 (720p) [Offline] +https://pulltv3.wanfudaluye.com/live/tv3.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (576p) +http://183.207.249.12/PLTV/4/224/3221225808/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225665/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225698/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://112.25.48.68/live/program/live/tjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://117.169.120.140:8080/live/hdtianjinstv/.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://223.110.243.170/PLTV/3/224/3221227212/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227212/index.m3u8 +#EXTINF:-1 tvg-id="" status="online",天津卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225739/index.m3u8 +#EXTINF:-1 tvg-id="",天津卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",天津卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",奇妙電視 (720p) +http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8 +#EXTINF:-1 tvg-id="",奥视卫星 (720p) [Not 24/7] +http://61.244.22.5/ch3/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",女性时尚 (576p) +http://223.110.245.169/PLTV/4/224/3221227026/index.m3u8 +#EXTINF:-1 tvg-id="",如东新闻综合 (480p) [Not 24/7] +http://live.rdxmt.com/channels/rudong/news/flv:sd/live +#EXTINF:-1 tvg-id="",孝義新聞綜合 (576p) +http://app.xygdcm.com:2036/live/stream:xy1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",孟州电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10883-1.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (540p) +http://112.25.48.68/live/program/live/nxws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225579/index.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://117.169.120.140:8080/live/ningxiastv/.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://183.207.248.11/PLTV/4/224/3221225842/index.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8 +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_NINGXIA/G_NINGXIA +#EXTINF:-1 tvg-id="",宁夏卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",宁波少儿 (360p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=5 +#EXTINF:-1 tvg-id="",宁波影视剧 (360p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=4 +#EXTINF:-1 tvg-id="",宁波教育科技 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=6 +#EXTINF:-1 tvg-id="",宁波新闻综合 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=1 +#EXTINF:-1 tvg-id="",宁波经济生活 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=2 +#EXTINF:-1 tvg-id="",宁波都市文体 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=3 +#EXTINF:-1 tvg-id="",安徽 Ⅰ 淮北公共 (720p) +http://live.0561rtv.cn/ggpd/hd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽 Ⅰ 淮北综合 (720p) +http://live.0561rtv.cn/xwzh/hd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽 Ⅰ 郎溪综合台 (1080p) +http://117.70.93.210:1935/live/xinwen/playlist.m3u8 +#EXTINF:-1 tvg-id="",安徽 Ⅰ 铜陵公共 (720p) +http://dstpush1.retalltech.com/app/stream2.m3u8 +#EXTINF:-1 tvg-id="",安徽 Ⅰ 铜陵综合 (720p) +http://dstpush1.retalltech.com/app/stream1.m3u8 +#EXTINF:-1 tvg-id="",安徽人物 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=69 +#EXTINF:-1 tvg-id="",安徽公共 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=50 +#EXTINF:-1 tvg-id="",安徽农业科教 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=51 +#EXTINF:-1 tvg-id="",安徽卫视 (576p) +http://183.207.249.5/PLTV/4/224/3221225800/index.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8 +#EXTINF:-1 tvg-id="" status="online",安徽卫视 (576p) +http://183.207.248.71/gitv/live1/AHWS/AHWS +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225691/index.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225737/index.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=2&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://183.207.249.15/PLTV/3/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) +http://223.110.254.203:6610/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv/1.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/anhuistv/anhuistv +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Not 24/7] +http://zbbf2.ahtv.cn/live/749.m3u8 +#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Timeout] +http://112.25.48.68/live/program/live/ahwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",安徽小说评书广播 [Geo-blocked] +http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽影视 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=72 +#EXTINF:-1 tvg-id="",安徽戏曲广播 [Geo-blocked] +http://stream2.ahrtv.cn/xnxq/sd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽新闻综合广播 [Geo-blocked] +http://stream2.ahrtv.cn/xnxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽旅游广播 [Geo-blocked] +http://stream2.ahrtv.cn/lygb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",安徽综艺体育 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=73 +#EXTINF:-1 tvg-id="",完美游戏 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/wmyx/wmyx +#EXTINF:-1 tvg-id="",宜兴新闻 (720p) +http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8 +#EXTINF:-1 tvg-id="",宜兴电视紫砂 (720p) +http://live-dft-hls-yf.jstv.com/live/yixing_zs/online.m3u8 +#EXTINF:-1 tvg-id="",宜昌公共 [Offline] +http://149.129.100.78/yichang.php?id=ggpd +#EXTINF:-1 tvg-id="",宜昌旅游生活 [Offline] +http://149.129.100.78/yichang.php?id=lysw +#EXTINF:-1 tvg-id="",宜昌综合 [Offline] +http://149.129.100.78/yichang.php?id=zhpd +#EXTINF:-1 tvg-id="",宜章新闻综合 (576p) +http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",宜章社会法制 (576p) +http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",家庭影院 (1080p) [Timeout] +http://39.134.19.153/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8 +#EXTINF:-1 tvg-id="",家庭理财 (576p) +http://223.110.245.139/PLTV/4/224/3221227011/index.m3u8 +#EXTINF:-1 tvg-id="",家有购物 (720p) [Not 24/7] +http://183.207.248.71/cntv/live1/SD-1500k-576P-jiayougw/SD-1500k-576P-jiayougw +#EXTINF:-1 tvg-id="",宿州公共 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-ggpd/index.m3u8 +#EXTINF:-1 tvg-id="",宿州新闻综合 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-szzh/index.m3u8 +#EXTINF:-1 tvg-id="",宿州科教 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-kxjy/index.m3u8 +#EXTINF:-1 tvg-id="",宿迁公共 (480p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221226939/index.m3u8 +#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台影视台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=5 +#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=2 +#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=3 +#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=4 +#EXTINF:-1 tvg-id="",山东体育 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/typd.m3u8 +#EXTINF:-1 tvg-id="",山东农科 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/nkpd.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/SDWS/SDWS +#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] +http://183.207.249.7/PLTV/4/224/3221225804/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225804/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/SDWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225697/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225738/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://117.169.120.140:8080/live/hdshandongstv/.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227258/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227448/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://223.110.254.207:6610/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv/1.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8 +#EXTINF:-1 tvg-id="",山东卫视 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",山东卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",山东少儿 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/sepd.m3u8 +#EXTINF:-1 tvg-id="",山东居家购物 (360p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/gwpd.m3u8 +#EXTINF:-1 tvg-id="",山东影视 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/yspd.m3u8 +#EXTINF:-1 tvg-id="",山东教育 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225558/index.m3u8 +#EXTINF:-1 tvg-id="",山东新闻 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/ggpd.m3u8 +#EXTINF:-1 tvg-id="",山东生活 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/shpd.m3u8 +#EXTINF:-1 tvg-id="",山东综艺 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/zypd.m3u8 +#EXTINF:-1 tvg-id="",山东齐鲁 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/qlpd.m3u8 +#EXTINF:-1 tvg-id="",山西 Ⅰ 朔州新闻台 (10p) [Not 24/7] +http://stream.sxsztv.com/live4/sd/live.m3u8 +#EXTINF:-1 tvg-id="",山西优购物 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=55&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",山西公共 [Offline] +http://149.129.100.78/tv.php?id=sxgg +#EXTINF:-1 tvg-id="",山西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8 +#EXTINF:-1 tvg-id="",山西卫视 (576p) +http://117.169.120.140:8080/live/shanxistv/.m3u8 +#EXTINF:-1 tvg-id="",山西卫视 (576p) [Offline] +http://125.210.152.10:8060/live/SXWS.m3u8 +#EXTINF:-1 tvg-id="",山西卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=144&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",山西影视 [Offline] +http://149.129.100.78/tv.php?id=sxys +#EXTINF:-1 tvg-id="",山西社会与法治 [Offline] +http://149.129.100.78/tv.php?id=sxkj +#EXTINF:-1 tvg-id="",山西经济与科技 [Offline] +http://149.129.100.78/tv.php?id=sxjjzx +#EXTINF:-1 tvg-id="",岭南戏曲 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=15 +#EXTINF:-1 tvg-id="",岳西圖文頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/tuwen/playlist.m3u8 +#EXTINF:-1 tvg-id="",岳西影視頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/yingshi/playlist.m3u8 +#EXTINF:-1 tvg-id="",岳西綜合頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",岳阳公共 (576p) +http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-2F5F-FA96-1887C72E55CE&auth=654837809071524@615@2E9A5FD0B225B012E3178551CF3754A8 +#EXTINF:-1 tvg-id="",岷县电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000130/index.m3u8 +#EXTINF:-1 tvg-id="",嵊州综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8 +#EXTINF:-1 tvg-id="",已下线 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",巴中公共 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/hddongfangstv/1.m3u8 +#EXTINF:-1 tvg-id="",巴中公共 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8 +#EXTINF:-1 tvg-id="",巴中综合 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8 +#EXTINF:-1 tvg-id="",平乡电视台 (576p) +http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 佛山三水区 (404p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sspd.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 佛山南海区 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_nhpd.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 佛山高明区 (404p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_gmpd.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 岭南戏曲台 (540p) +http://szlive.grtn.cn/lnxq/sd/live.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 清新综合台 (1080p) +http://hls.wiseqx.com/live/qxzh.m3u8 +#EXTINF:-1 tvg-id="",广东 ‖ 高尔夫 (480p) +http://szlive.grtn.cn/grfpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山公共台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_ggpd.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山影视台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_yspd.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山综合台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_zhpd.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山顺德台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sdpd.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 潮安综合 (360p) +http://chaoan.chaoantv.com:8278/chaoanzonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 韶关公共台 (720p) [Not 24/7] +https://www.sgmsw.cn/videos/tv/201805/1308/9P424TC5M000AFO13CXK6GN6BOA889D2/hls/live.m3u8 +#EXTINF:-1 tvg-id="",广东 Ⅰ 韶关综合台 (720p) [Not 24/7] +https://www.sgmsw.cn/videos/tv/201805/1308/SB05RIYZOU8JR418AUQOF62CAJQ08D0E/hls/live.m3u8 +#EXTINF:-1 tvg-id="",广东体育 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=47 +#EXTINF:-1 tvg-id="",广东体育 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东体育 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东公共 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=85&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东南方卫视地面 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225701/index.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225742/index.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://112.25.48.68/live/program/live/gdwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://223.110.243.136/PLTV/3/224/3221227249/index.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227249/index.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://223.110.245.172/PLTV/4/224/3221227399/index.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) +http://223.110.254.195:6610/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv/1.m3u8 +#EXTINF:-1 tvg-id="",广东卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=43&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东嘉佳卡通 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=130&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东国际 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=46 +#EXTINF:-1 tvg-id="",广东少儿 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=54 +#EXTINF:-1 tvg-id="",广东少儿 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=83&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东影视 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=53 +#EXTINF:-1 tvg-id="",广东影视 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=86&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东房产 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=67 +#EXTINF:-1 tvg-id="",广东文化 (720p) [Not 24/7] +http://149.129.100.78/guangdong.php?id=75 +#EXTINF:-1 tvg-id="",广东新闻 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=45 +#EXTINF:-1 tvg-id="",广东新闻 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=84&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东珠江 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=44 +#EXTINF:-1 tvg-id="",广东珠江 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东移动 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=74 +#EXTINF:-1 tvg-id="",广东经济科教 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=49 +#EXTINF:-1 tvg-id="",广东经济科教 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广东综艺 (720p) [Offline] +http://149.129.100.78/guangdong.php?id=16 +#EXTINF:-1 tvg-id="",广东综艺 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州南国都市 (1080p) [Offline] +http://149.129.100.78/gztv.php?id=shenghuo +#EXTINF:-1 tvg-id="",广州影视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州影视 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=yingshi +#EXTINF:-1 tvg-id="",广州影视 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/yingshi +#EXTINF:-1 tvg-id="",广州新闻 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=xinwen +#EXTINF:-1 tvg-id="",广州新闻 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/xinwen +#EXTINF:-1 tvg-id="",广州新闻 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=00&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州新闻 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州法治 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州法治 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=fazhi +#EXTINF:-1 tvg-id="",广州法治 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/fazhi +#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=jingsai +#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/jingsai +#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=0&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州竞赛 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=52&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州综合 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广州综合 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=zhonghe +#EXTINF:-1 tvg-id="",广州综合 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/zhonghe +#EXTINF:-1 tvg-id="",广州综合 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=81&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广水新闻综合 [Geo-blocked] +http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8 +#EXTINF:-1 tvg-id="",广视网 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",广西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8 +#EXTINF:-1 tvg-id="",广西卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=138&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",康巴卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227008/index.m3u8 +#EXTINF:-1 tvg-id="",康巴卫视 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8 +#EXTINF:-1 tvg-id="",延安1台 [Offline] +http://stream2.liveyun.hoge.cn/YATV1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",延安2台 [Offline] +http://stream2.liveyun.hoge.cn/YATV2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",延边卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="",延边卫视 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="",延边卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="",延边卫视 (720p) +http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8 +#EXTINF:-1 tvg-id="",延边新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/jlyb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",建安电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/11003-1.m3u8 +#EXTINF:-1 tvg-id="",开州综合 (720p) +http://kaixianlive.cbg.cn:10345/1.m3u8 +#EXTINF:-1 tvg-id="",弈坛春秋 (576p) +http://223.110.245.139/PLTV/4/224/3221227031/index.m3u8 +#EXTINF:-1 tvg-id="",张家口一套 (720p) [Not 24/7] +http://nlive.zjkgdcs.com:8091/live/xwzhpd.m3u8 +#EXTINF:-1 tvg-id="",张家港新闻综合 (720p) +http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8 +#EXTINF:-1 tvg-id="",张家港社会生活 (720p) +http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8 +#EXTINF:-1 tvg-id="",张家界1 (240p) [Not 24/7] +http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8 +#EXTINF:-1 tvg-id="",张家界2台 (240p) [Not 24/7] +http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8 +#EXTINF:-1 tvg-id="",彭水文化旅游 (288p) +http://pengshuilive.cbg.cn/pengshui02.m3u8 +#EXTINF:-1 tvg-id="",彭水新闻综合 (288p) [Timeout] +http://pengshuilive.cbg.cn/pengshui01.m3u8 +#EXTINF:-1 tvg-id="",徐州-1 (1080p) +http://183.207.249.15/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="",徐州-3 (1080p) +http://183.207.249.7/PLTV/3/224/3221225949/index.m3u8 +#EXTINF:-1 tvg-id="",徐州-3 (1080p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225949/index.m3u8 +#EXTINF:-1 tvg-id="",徐州-4 (1080p) +http://183.207.249.15/PLTV/3/224/3221225951/index.m3u8 +#EXTINF:-1 tvg-id="",徐州公共頻道 (720p) +http://stream1.huaihai.tv/ggpd/playlist.m3u8 +#EXTINF:-1 tvg-id="",徐州公共頻道 (1080p) +http://183.207.248.11/PLTV/3/224/3221225951/index.m3u8 +#EXTINF:-1 tvg-id="",徐州影视 (720p) +http://stream1.huaihai.tv/wyys/playlist.m3u8 +#EXTINF:-1 tvg-id="",徐州新聞綜合 (720p) +http://stream1.huaihai.tv/xwzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",徐州新聞綜合 (1080p) +http://183.207.248.11/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="",徐州新聞綜合 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="",徐州生活 (240p) +http://stream1.huaihai.tv/jjsh/playlist.m3u8 +#EXTINF:-1 tvg-id="",徐州經濟生活 (1080p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221225947/index.m3u8 +#EXTINF:-1 tvg-id="",徐州贾汪旅游 (576p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221227389/index.m3u8 +#EXTINF:-1 tvg-id="",德州公共 (480p) [Offline] +http://video.dztv.tv:1935/live/dzgg_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州公共 (576p) [Offline] +http://video.dztv.tv:1935/live/dzgg_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州公共 (1080p) [Offline] +http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州图文 (360p) [Offline] +http://video.dztv.tv:1935/live/dztw_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州图文 (576p) [Offline] +http://video.dztv.tv:1935/live/dztw_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州图文 (720p) [Offline] +http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州新闻 (480p) [Offline] +http://video.dztv.tv:1935/live/xwzh_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州新闻 (576p) [Offline] +http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州新闻 (1080p) [Offline] +http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="",德州都市 [Offline] +http://video.dztv.tv:1935/live/dspd_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="",心约之声公益广播 [Not 24/7] +http://4521.hlsplay.aodianyun.com/xyzs/stream.m3u8 +#EXTINF:-1 tvg-id="",忍者神龟 (480p) +http://www.alibabapictures.com/movies/shenggui/poyingerchu.mp4 +#EXTINF:-1 tvg-id="",忠县文旅 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_36.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",忠县综合 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",怀旧经典台 [Offline] +http://hls.haokan.bdstatic.com/haokan/stream_bduid_1868968677_0.m3u8 +#EXTINF:-1 tvg-id="",惠州公共 (1080p) +http://livehuiz.chinamcache.com/live/zb02.m3u8 +#EXTINF:-1 tvg-id="",惠州新闻综合 (480p) +http://dslive.grtn.cn/hzzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",惠州新闻综合 (1080p) +http://livehuiz.chinamcache.com/live/zb01.m3u8 +#EXTINF:-1 tvg-id="CDTV5.cn",成都公共 (360p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=5 +#EXTINF:-1 tvg-id="",成都大熊猫 (1080p) [Not 24/7] +https://gcbsc.v.live.baishancdnx.cn/gc/xiongmao03_1/index.m3u8?contentid=2820180516001 +#EXTINF:-1 tvg-id="CDTV6.cn",成都少儿 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=6 +#EXTINF:-1 tvg-id="CDTV4.cn",成都影视 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=45 +#EXTINF:-1 tvg-id="CDTV1.cn",成都新闻综合 (450p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=1 +#EXTINF:-1 tvg-id="CDTV2.cn",成都经济 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=2 +#EXTINF:-1 tvg-id="CDTV3.cn",成都都市 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=3 +#EXTINF:-1 tvg-id="",房山电视台 (576p) +https://live.funhillrm.com/2/playlist.m3u8 +#EXTINF:-1 tvg-id="",扬州公共 [Offline] +http://149.129.100.78/yangzhou.php?id=236 +#EXTINF:-1 tvg-id="",扬州教育 [Offline] +http://149.129.100.78/yangzhou.php?id=291 +#EXTINF:-1 tvg-id="",抚州公共 (270p) +http://111.75.179.195:30767/video/live_vide2.m3u8 +#EXTINF:-1 tvg-id="",揭阳综合 (540p) +http://dslive.grtn.cn/jyzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",撫州綜合頻道 (270p) [Not 24/7] +http://111.75.179.195:30767/video/live_vide.m3u8 +#EXTINF:-1 tvg-id="",敦煌电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000028/index.m3u8 +#EXTINF:-1 tvg-id="",文山综合 (1080p) [Not 24/7] +http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8 +#EXTINF:-1 tvg-id="",文水新聞綜合 (360p) [Offline] +http://sxws.chinashadt.com:1938/live/tv10.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",文水時尚秀 (360p) [Offline] +http://sxws.chinashadt.com:1938/live/tv11.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",斗鱼电影2 (1080p) +http://tx2play1.douyucdn.cn/live/20415rnWbjg6Ex1K.xs +#EXTINF:-1 tvg-id="",斗鱼电影3 (720p) +http://tx2play1.douyucdn.cn/live/3928r9p0BHMDG_8000p.flv +#EXTINF:-1 tvg-id="",斗鱼电影4 (1080p) +http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq_8000p.flv +#EXTINF:-1 tvg-id="",斗鱼车评 (720p) [Not 24/7] +http://tx2play1.douyucdn.cn/live/321987r8e6tCsPR_4000.xs?uuid= +#EXTINF:-1 tvg-id="",新唐人-美西 (486p) +http://live.ntdimg.com/uwlive520/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人亚太臺 (480p) +https://live.ntdimg.com/aplive200/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人加东臺 (720p) +https://live.ntdimg.com/mllive860/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人加西臺 (216p) +https://live.ntdimg.com/cwlive220/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人旧金山臺 (486p) +https://live.ntdimg.com/sflive990/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人美东臺 (480p) +https://live.ntdimg.com/live400/playlist.m3u8 +#EXTINF:-1 tvg-id="",新唐人美西臺 (486p) +https://live.ntdimg.com/uwlive990/playlist.m3u8 +#EXTINF:-1 tvg-id="",新昌休闲影视 (1080p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxinchang2/720p.m3u8 +#EXTINF:-1 tvg-id="",新昌新聞綜合 (1080p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxinchang1/720p.m3u8 +#EXTINF:-1 tvg-id="",新泰乡村党建 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰影視頻道 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtys/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰影視頻道 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰生活 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtsh/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰生活 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰综合 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰综合 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",新泰鄉村黨建 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtxc/playlist.m3u8 +#EXTINF:-1 tvg-id="",新疆兵团卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=50&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",新疆卫视 (540p) +http://112.25.48.68/live/program/live/xjws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",新疆卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225582/index.m3u8 +#EXTINF:-1 tvg-id="",新疆卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225725/index.m3u8 +#EXTINF:-1 tvg-id="",新疆卫视 (576p) +http://183.207.248.71/cntv/live1/xinjiangstv/xinjiangstv +#EXTINF:-1 tvg-id="",新疆卫视 (576p) +http://183.207.248.71/gitv/live1/G_XINJIANG/G_XINJIANG +#EXTINF:-1 tvg-id="",新疆卫视 (576p) +http://183.207.249.15/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/xinjiangstv/1.m3u8 +#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=122&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Timeout] +http://223.110.243.136/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="",新疆哈语综合 (480p) [Offline] +http://livehyw.sobeycache.com/xjtvs/zb3.m3u8?auth_key=1807150116-0-0-ee46da0e36aa0d170240c1102e8c8e47 +#EXTINF:-1 tvg-id="",新疆少儿 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb12.m3u8 +#EXTINF:-1 tvg-id="",新疆汉语信息服务 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb11.m3u8 +#EXTINF:-1 tvg-id="",新疆汉语综艺 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb04.m3u8 +#EXTINF:-1 tvg-id="",新郑综合 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10184-1.m3u8 +#EXTINF:-1 tvg-id="",无锡娱乐 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv2&type=tv +#EXTINF:-1 tvg-id="",无锡新闻综合 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv1&type=tv +#EXTINF:-1 tvg-id="",无锡生活 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv4&type=tv +#EXTINF:-1 tvg-id="",无锡经济 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv5&type=tv +#EXTINF:-1 tvg-id="",无锡都市资讯 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv3&type=tv +#EXTINF:-1 tvg-id="",日本全天新聞 (480p) +https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 +#EXTINF:-1 tvg-id="",旺苍新闻 (528p) [Not 24/7] +http://3g.dzsm.com/streamer/gycttv.m3u8 +#EXTINF:-1 tvg-id="",明珠台 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",星空衛視 (576p) +http://218.202.220.2:5000/nn_live.ts?id=STARTV +#EXTINF:-1 tvg-id="",星空衛視 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=234&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="",晋中公共 (1080p) [Not 24/7] +http://jzlive.jztvnews.com:90/live/jzgg.m3u8 +#EXTINF:-1 tvg-id="",晋中综合 (1080p) +http://jzlive.jztvnews.com:90/live/jzzh.m3u8 +#EXTINF:-1 tvg-id="",晋州综合 [Offline] +http://zhjz.chinashadt.com:2036/live/1.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="",景县电视一套 (360p) [Not 24/7] +http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",景县电视一套 (576p) [Not 24/7] +http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",景县电视二套 (360p) [Offline] +http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",景县电视二套 (576p) [Offline] +http://hbjx.chinashadt.com:1935/live/jx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",智慧教育 (576p) +http://111.63.117.13:6060/030000001000/G_CETV-4/G_CETV-4.m3u8 +#EXTINF:-1 tvg-id="",朔州1 (480p) [Not 24/7] +http://stream.sxsztv.com/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="",朔州2 (480p) [Not 24/7] +http://stream.sxsztv.com/live2/playlist.m3u8 +#EXTINF:-1 tvg-id="",東光一套 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",東光二套 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",東光綜藝 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",松原新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/sytv/sd/live.m3u8 +#EXTINF:-1 tvg-id="",枣庄公共 (540p) +http://stream.zzgd.tv/3/sd/live.m3u8 +#EXTINF:-1 tvg-id="",枣庄教育 (540p) +http://stream.zzgd.tv/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",枣庄新闻综合 (540p) +http://stream.zzgd.tv/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",柯桥时尚 (1080p) [Offline] +http://live.scbtv.cn/hls/qfc/index.m3u8 +#EXTINF:-1 tvg-id="",柯桥综合 (1080p) [Offline] +http://live.scbtv.cn/hls/news/index.m3u8 +#EXTINF:-1 tvg-id="",栖霞新闻 (480p) [Not 24/7] +http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8 +#EXTINF:-1 tvg-id="",梁平综合 (360p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",梅州综合 (480p) +http://dslive.grtn.cn/mzzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",榆树综合 (360p) [Offline] +http://stream.zhystv.com/yset/sd/live.m3u8 +#EXTINF:-1 tvg-id="",榆樹綜藝頻道 (360p) [Offline] +http://stream.zhystv.com/ysyt/sd/live.m3u8 +#EXTINF:-1 tvg-id="",横山综合 [Offline] +http://stream.hsqtv.cn/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",武汉外语 (576p) +http://stream.appwuhan.com/6tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",武汉文体 (480p) +http://stream.appwuhan.com/5tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",武汉经济 (360p) +http://stream.appwuhan.com/4tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="",武进新闻 (576p) [Not 24/7] +http://live.wjyanghu.com/live/CH1.m3u8 +#EXTINF:-1 tvg-id="",武进生活 (576p) [Not 24/7] +http://live.wjyanghu.com/live/CH2.m3u8 +#EXTINF:-1 tvg-id="",民視新聞 (720p) [Offline] +https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="",永新电视一套 (576p) +http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",永新电视三套 (576p) +http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",永新电视二套 (576p) +http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",汕头综合 (540p) +http://dslive.grtn.cn/stzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",汕尾公共 (540p) +http://dslive.grtn.cn/swzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",汕尾综合 (540p) +http://dslive.grtn.cn/swzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",江津文化旅游 (576p) +http://222.179.155.21:1935/ch2.m3u8 +#EXTINF:-1 tvg-id="",江津文化旅游 (576p) +http://jiangjinlive.cbg.cn:1935/ch2.m3u8 +#EXTINF:-1 tvg-id="",江津新闻综合 (576p) +http://222.179.155.21:1935/ch1.m3u8 +#EXTINF:-1 tvg-id="",江津新闻综合 (576p) +http://jiangjinlive.cbg.cn:1935/ch1.m3u8 +#EXTINF:-1 tvg-id="",江津经济生活 (576p) +http://222.179.155.21:1935/ch0.m3u8 +#EXTINF:-1 tvg-id="",江津经济生活 (576p) +http://jiangjinlive.cbg.cn:1935/ch0.m3u8 +#EXTINF:-1 tvg-id="",江苏 Ⅰ 东海综合台 [Offline] +rtmp://livetv.dhtv.cn/live/news +#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州文化 [Not 24/7] +rtmp://csztv.2500sz.com/live/c03 +#EXTINF:-1 tvg-id="" status="error",江苏 Ⅰ 苏州生活 [Not 24/7] +rtmp://csztv.2500sz.com/live/c04 +#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州经济 [Not 24/7] +rtmp://csztv.2500sz.com/live/c02 +#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州综合 [Not 24/7] +rtmp://csztv.2500sz.com/live/c01 +#EXTINF:-1 tvg-id="",江苏 Ⅰ 连云港公共 (480p) [Not 24/7] +http://live.lyg1.com/ggpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="" status="online",江苏 Ⅰ 连云港综合 (540p) [Not 24/7] +http://live.lyg1.com/zhpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",江苏优漫卡通 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="",江苏优漫卡通 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=146&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",江苏体育 (576p) +http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY +#EXTINF:-1 tvg-id="",江苏体育 (576p) +http://183.207.249.12/PLTV/4/224/3221225935/index.m3u8 +#EXTINF:-1 tvg-id="",江苏体育 (576p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225935/index.m3u8 +#EXTINF:-1 tvg-id="",江苏体育休闲 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsty +#EXTINF:-1 tvg-id="",江苏公共 (576p) +http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG +#EXTINF:-1 tvg-id="",江苏公共新闻 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsgg +#EXTINF:-1 tvg-id="",江苏卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/JSWS-HD/JSWS-HD +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225503/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225702/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225743/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://112.25.48.68/live/program/live/jswshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://117.169.120.140:8080/live/hdjiangsustv/.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://183.207.248.71/cntv/live1/jiangsustv/jiangsustv +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://183.207.249.34/PLTV/4/224/3221227402/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227255/index.m3u8 +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv +#EXTINF:-1 tvg-id="",江苏卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=5&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",江苏国际 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsgj +#EXTINF:-1 tvg-id="",江苏城市 (576p) +http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS +#EXTINF:-1 tvg-id="",江苏城市 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225929/index.m3u8 +#EXTINF:-1 tvg-id="",江苏城市 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jscs +#EXTINF:-1 tvg-id="",江苏学习 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsxx +#EXTINF:-1 tvg-id="",江苏影视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS +#EXTINF:-1 tvg-id="",江苏影视 (576p) [Offline] +http://223.110.243.134/PLTV/4/224/3221225937/index.m3u8 +#EXTINF:-1 tvg-id="",江苏影视 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsys +#EXTINF:-1 tvg-id="",江苏教育 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225923/index.m3u8 +#EXTINF:-1 tvg-id="",江苏教育 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY +#EXTINF:-1 tvg-id="",江苏教育 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsjy +#EXTINF:-1 tvg-id="",江苏综艺 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY +#EXTINF:-1 tvg-id="",江苏综艺 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jszy +#EXTINF:-1 tvg-id="",江苏靓妆 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jslz +#EXTINF:-1 tvg-id="",江西 Ⅰ 上饶综合台 (540p) +http://live.0793.tv/srtv1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",江西公共农业 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv5 +#EXTINF:-1 tvg-id="",江西卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/JXWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (576p) +http://183.207.248.71/gitv/live1/JXWS/JXWS +#EXTINF:-1 tvg-id="",江西卫视 (576p) +http://183.207.249.15/PLTV/4/224/3221225798/index.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (720p) +http://117.169.120.140:8080/live/jiangxistv/.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225705/index.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225746/index.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://112.25.48.68/live/program/live/jxwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://183.207.248.71/cntv/live1/jiangxistv/jiangxistv +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://183.207.249.11/PLTV/3/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) +http://223.110.254.199:6610/cntv/live1/jiangxistv/jiangxistv/1.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) [Offline] +http://223.110.245.170/PLTV/3/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="",江西卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=40&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",江西少儿 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv6 +#EXTINF:-1 tvg-id="",江西影视旅游 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv4 +#EXTINF:-1 tvg-id="",江西新闻 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv7 +#EXTINF:-1 tvg-id="",江西移动电视 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv8 +#EXTINF:-1 tvg-id="",江西经济生活 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv3 +#EXTINF:-1 tvg-id="",江西都市 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv2 +#EXTINF:-1 tvg-id="",江西风尚购物 (1080p) [Not 24/7] +http://39.134.66.66/PLTV/88888888/224/3221225521/index.m3u8 +#EXTINF:-1 tvg-id="",江门综合 (540p) +http://dslive.grtn.cn/jmzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",江门综合 (1080p) +http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 +#EXTINF:-1 tvg-id="",沧县电视二套 (576p) +http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",沧县电视综合 (576p) +http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北公共 (540p) +http://live7.plus.hebtv.com/hbggx/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北农民 (240p) +http://live3.plus.hebtv.com/nmpdx/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北农民 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北农民 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/HBWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (540p) +http://112.25.48.68/live/program/live/hbws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225495/index.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225732/index.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (576p) +http://183.207.248.71/gitv/live1/G_HEBEI/G_HEBEI +#EXTINF:-1 tvg-id="",河北卫视 (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (576p) +http://hbpx.chinashadt.com:2036/live/px4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=45&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",河北少儿科教 (540p) +http://live6.plus.hebtv.com/sekjx/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北影视剧 (540p) +http://live6.plus.hebtv.com/hbysx/hd/live.m3u8 +#EXTINF:-1 tvg-id="",河北晋州综合 (576p) [Offline] +http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北经济 (576p) +http://hbfc.chinashadt.com:2036/live/6.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北经济生活 (540p) [Not 24/7] +http://live2.plus.hebtv.com/jjshx/playlist.m3u8 +#EXTINF:-1 tvg-id="",河北都市 (240p) [Not 24/7] +http://live3.plus.hebtv.com/hbdsx/playlist.m3u8 +#EXTINF:-1 tvg-id="",河南卫视 (540p) +http://112.25.48.68/live/program/live/hnws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",河南卫视 (576p) +http://183.207.248.71/cntv/live1/henanstv/henanstv +#EXTINF:-1 tvg-id="",河南卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8 +#EXTINF:-1 tvg-id="",河源公共 (540p) +http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8 +#EXTINF:-1 tvg-id="",河源综合 (480p) +http://dslive.grtn.cn/hyzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",河源综合 (540p) +http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",洛陽綜合頻道 (1080p) [Not 24/7] +http://live1.lytv.com.cn:1935/live/LYTV1-1/playlist.m3u8 +#EXTINF:-1 tvg-id="",洪雅新闻综合 (1080p) +http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8 +#EXTINF:-1 tvg-id="",济宁公共 (450p) +http://lives.jnnews.tv/video/s10001-JTV3/index.m3u8 +#EXTINF:-1 tvg-id="",济宁图文 (576p) +http://lives.jnnews.tv/video/s10001-JTV4/index.m3u8 +#EXTINF:-1 tvg-id="",济宁教育 (1080p) +http://lives.jnnews.tv/video/s10001-JTV2/index.m3u8 +#EXTINF:-1 tvg-id="",浙江6套 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江休闲 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江国际 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江少儿 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江教育 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江新闻 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江易购 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江留学 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江经济 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 绍兴影视 (720p) [Timeout] +http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8 +#EXTINF:-1 tvg-id="",浙江 Ⅰ 绍兴综合 (576p) [Timeout] +http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8 +#EXTINF:-1 tvg-id="",浙江公共 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel07/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_ZHEJIANG/G_ZHEJIANG +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225514/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225703/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://112.25.48.68/live/program/live/zjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-zhejiangstv/HD-2500k-1080P-zhejiangstv +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://183.207.248.71/cntv/live1/zhejiangstv/zhejiangstv +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://183.207.249.34/PLTV/4/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://223.110.254.210:6610/cntv/live1/zhejiangstv/zhejiangstv/1.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Offline] +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8 +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",浙江国际 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江国际 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江少儿 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江少儿 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江影视 (720p) +http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8 +#EXTINF:-1 tvg-id="",浙江影视 (1080p) +http://yd-m-l.cztv.com/channels/lantian/channel05/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江教科影视 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江数码时代 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江民生休闲 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江留学 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江经济生活 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江钱江 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8 +#EXTINF:-1 tvg-id="",浙江钱江 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8 +#EXTINF:-1 tvg-id="",海南公共 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=6 +#EXTINF:-1 tvg-id="",海南卫视 (540p) [Timeout] +http://112.25.48.68/live/program/live/lyws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",海南卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8 +#EXTINF:-1 tvg-id="",海南卫视 (576p) +http://183.207.248.11/PLTV/4/224/3221225810/index.m3u8 +#EXTINF:-1 tvg-id="",海南卫视 (720p) [Not 24/7] +http://livelyws.chinamcache.com/lyws/zb01.m3u8?auth_key=1593241343-0-0-90b80e74457c94b2015f9428a1cb9b0e +#EXTINF:-1 tvg-id="",海南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=114&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",海南少儿 (720p) [Not 24/7] +http://149.129.100.78/hainan.php?id=9 +#EXTINF:-1 tvg-id="",海南州藏語頻道 (480p) +http://live.hnzzzzzdst.com/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",海南文旅 (720p) [Not 24/7] +http://149.129.100.78/hainan.php?id=8 +#EXTINF:-1 tvg-id="",海南新闻 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=5 +#EXTINF:-1 tvg-id="",海南经济 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=4 +#EXTINF:-1 tvg-id="",海盐新闻 (720p) +http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",海西州综合 (576p) +http://stream.haixitv.cn/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",涡阳新闻综合 (360p) +http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8 +#EXTINF:-1 tvg-id="",深圳公共 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=4 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225668/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225700/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225741/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225741/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://112.25.48.68/live/program/live/szwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://117.169.120.140:8080/live/hdshenzhenstv/.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://183.207.249.37/PLTV/4/224/3221227307/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227307/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8 +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",深圳娱乐 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=6 +#EXTINF:-1 tvg-id="",深圳少儿 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=7 +#EXTINF:-1 tvg-id="",深圳电视剧 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=3 +#EXTINF:-1 tvg-id="",深圳移动电视 (360p) [Not 24/7] +http://149.129.100.78/sztv.php?id=8 +#EXTINF:-1 tvg-id="",深圳蛇口 (1080p) +http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 +#EXTINF:-1 tvg-id="",深圳财经生活 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=5 +#EXTINF:-1 tvg-id="",深圳都市 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=2 +#EXTINF:-1 tvg-id="",深州綜合頻道 (360p) [Not 24/7] +http://hbsz.chinashadt.com:2036/live/stream:sztv.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",深州綜合頻道 (576p) [Not 24/7] +http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",湖北 Ⅰ 荆门公共台 (1080p) [Geo-blocked] +http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (576p) +http://183.207.248.71/gitv/live1/G_HUBEI/G_HUBEI +#EXTINF:-1 tvg-id="",湖北卫视 (576p) +http://183.207.249.16/PLTV/4/224/3221225877/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225569/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225699/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225740/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://117.169.120.140:8080/live/hdhubeistv/.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://223.110.254.136:6610/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv/1.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8 +#EXTINF:-1 tvg-id="",湖北卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=18&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南先锋乒羽 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=72&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南公共 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=261 +#EXTINF:-1 tvg-id="",湖南卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/HNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (576p) +http://hbpx.chinashadt.com:2036/live/px5.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_HUNAN/G_HUNAN +#EXTINF:-1 tvg-id="",湖南卫视 (576p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/hdhunanstv/1.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-hunanstv/HD-2500k-1080P-hunanstv +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227404/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://223.110.245.168/PLTV/4/224/3221227320/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) +http://223.110.254.134:6610/cntv/live1/hunanstv/hunanstv/1.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] +http://183.207.248.71/cntv/live1/hunanstv/hunanstv +#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] +http://223.110.245.170/PLTV/3/224/3221227191/index.m3u8 +#EXTINF:-1 tvg-id="",湖南卫视 [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=006&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="",湖南国际 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=229 +#EXTINF:-1 tvg-id="",湖南娱乐 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=344 +#EXTINF:-1 tvg-id="",湖南快乐垂钓 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=69&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南快乐购 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=56&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南教育 [Offline] +http://pull.hnedutv.com/live/hnedutv.m3u8 +#EXTINF:-1 tvg-id="",湖南电视剧 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=484 +#EXTINF:-1 tvg-id="",湖南经视 [Not 24/7] +http://149.129.100.78/hunan.php?id=280 +#EXTINF:-1 tvg-id="",湖南茶 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=70&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",湖南都市 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=346 +#EXTINF:-1 tvg-id="",湖南都市 (576p) +http://hnsd.chinashadt.com:2036/live/stream:hunandushi.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",湖南金鹰卡通 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8 +#EXTINF:-1 tvg-id="",湘潭公共 (576p) +http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",湘潭新闻综合 (720p) +http://live.hnxttv.com:9601/live/xwzh/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",湛江综合 (540p) +http://dslive.grtn.cn/zjzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",滁州公共 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvgg/playlist.m3u8 +#EXTINF:-1 tvg-id="",滁州新闻综合 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",滁州科教 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvkj/playlist.m3u8 +#EXTINF:-1 tvg-id="",滦县综合 (576p) +http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",滦县综艺 (576p) +http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",滨州公共电视剧 (576p) +http://stream.bzcm.net/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",滨州新闻综合 (576p) +http://stream.bzcm.net/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",滨州测试 (576p) +http://stream.bzcm.net/4/sd/live.m3u8 +#EXTINF:-1 tvg-id="",滨海新闻 (1080p) [Timeout] +http://60.30.52.41/live/bhtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="",滨海新闻综合 (576p) [Not 24/7] +http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",滨海都市 (1080p) [Timeout] +http://60.30.52.41/live/bhtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="",漳州新闻综合 (720p) [Not 24/7] +http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8 +#EXTINF:-1 tvg-id="",潮安影视 [Offline] +http://chaoan.chaoantv.com:8278/h_yingshi_1028/playlist.m3u8 +#EXTINF:-1 tvg-id="",潮安综合 (540p) +http://chaoan.chaoantv.com:8278/live/chaoanzongyi.m3u8 +#EXTINF:-1 tvg-id="",潮州公共 [Offline] +http://live.zscz0768.com/live/ggpd.m3u8 +#EXTINF:-1 tvg-id="",潮州综合 (480p) +http://dslive.grtn.cn/czzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=192&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",澳亚卫视 [Not 24/7] +http://live.mastvnet.com/4rlff1m/live.m3u8 +#EXTINF:-1 tvg-id="",澳大利亚赛马 (270p) [Offline] +https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8 +#EXTINF:-1 tvg-id="",澳视卫星 (720p) [Not 24/7] +http://61.244.22.5/ch3/_definst_/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳视澳门 (720p) [Not 24/7] +http://61.244.22.4/ch1/ch1.live/playelist.m3u8 +#EXTINF:-1 tvg-id="",澳视葡文 (720p) [Not 24/7] +http://61.244.22.4/ch2/ch2.live/chunklist_w1632175875.m3u8 +#EXTINF:-1 tvg-id="",澳门1 (720p) [Not 24/7] +http://61.244.22.4/ch3/ch3.live/playelist.m3u8 +#EXTINF:-1 tvg-id="",澳门2 (720p) [Not 24/7] +http://61.244.22.4/ch2/ch2.live/playelist.m3u8 +#EXTINF:-1 tvg-id="",澳门体育 (720p) +http://61.244.22.4/ch4/sport_ch4.live/playelist.m3u8 +#EXTINF:-1 tvg-id="",灵台新闻综合 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000145/index.m3u8 +#EXTINF:-1 tvg-id="",炫动卡通 (540p) +http://183.207.255.188/live/program/live/xdkt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",炫动卡通 (576p) [Timeout] +http://223.110.245.139/PLTV/4/224/3221226388/index.m3u8 +#EXTINF:-1 tvg-id="",点掌财经 (712p) +http://cclive.aniu.tv/live/anzb.m3u8 +#EXTINF:-1 tvg-id="",犍为新闻综合 (720p) [Not 24/7] +http://tv.scwlqw.cn:3100/hls/kqcyufpi/index.m3u8 +#EXTINF:-1 tvg-id="",现代教育 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=13 +#EXTINF:-1 tvg-id="",珠江 (720p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",珠海生活 (480p) +http://dslive.grtn.cn/zhzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",甘肃公共 (540p) [Not 24/7] +https://hls.gstv.com.cn/49048r/3t5xyc.m3u8 +#EXTINF:-1 tvg-id="",甘肃卫视 (540p) +http://112.25.48.68/live/program/live/gsws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225584/index.m3u8 +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225724/index.m3u8 +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) +http://117.169.120.140:8080/live/gansustv/.m3u8 +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) +http://183.207.248.71/gitv/live1/G_GANSU/G_GANSU +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",甘肃卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",甘肃卫视 (1080p) [Timeout] +http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8?from=26&hms_devid=685&icpid=88888888 +#EXTINF:-1 tvg-id="",甘肃卫视 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8 +#EXTINF:-1 tvg-id="",甘肃少儿 [Offline] +http://stream.gstv.com.cn/sepd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",甘肃文化影视 [Offline] +http://stream.gstv.com.cn/whys/sd/live.m3u8 +#EXTINF:-1 tvg-id="",甘肃移动 (540p) [Not 24/7] +https://hls.gstv.com.cn/49048r/y72q36.m3u8 +#EXTINF:-1 tvg-id="",甘肃经济 [Offline] +http://stream.gstv.com.cn/jjpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",甘肃都市 [Offline] +http://stream.gstv.com.cn/dspd/sd/live.m3u8 +#EXTINF:-1 tvg-id="",生活 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227311/index.m3u8 +#EXTINF:-1 tvg-id="",电白视窗 (360p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",电白视窗 (576p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",电白综合 (360p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",电白综合 (576p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",番禺 (1080p) [Offline] +http://live.pybtv.cn/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",白城新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/baicheng1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",白山新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/baishan1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",百事通体育1 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba1/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",百事通体育2 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba2/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",百事通体育3 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba3/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",百事通体育5 (1080p) +http://112.25.48.68/live/program/live/hdnba5/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",百事通体育7 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba7/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",睛彩安徽 (576p) [Not 24/7] +http://149.129.100.78/anhui.php?id=85 +#EXTINF:-1 tvg-id="",石景山电视台 (1080p) [Not 24/7] +http://live.sjsrm.com/bjsjs/sd/live.m3u8 +#EXTINF:-1 tvg-id="",福F建J公共 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226113/10000100000000060000000002358064_0.smil +#EXTINF:-1 tvg-id="",福F建J少儿 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226120/10000100000000060000000002358082_0.smil +#EXTINF:-1 tvg-id="",福F建J新闻 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226116/10000100000000060000000002358068_0.smil +#EXTINF:-1 tvg-id="",福F建J旅游 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226125/10000100000000060000000002358191_0.smil +#EXTINF:-1 tvg-id="",福F建J电视 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226115/10000100000000060000000002358067_0.smil +#EXTINF:-1 tvg-id="",福F建J经济 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226117/10000100000000060000000002358072_0.smil +#EXTINF:-1 tvg-id="",福山生活 (576p) [Not 24/7] +http://live.jiaodong.net:82/tvfushan/hls/tv_shenghuo.m3u8 +#EXTINF:-1 tvg-id="",福州少儿 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-sepd-4/index.m3u8 +#EXTINF:-1 tvg-id="",福州影视 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-yspd-2/index.m3u8 +#EXTINF:-1 tvg-id="",福州生活 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-shpd-3/index.m3u8 +#EXTINF:-1 tvg-id="",福州综合 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8 +#EXTINF:-1 tvg-id="",福海维语综合 [Offline] +http://klmyyun.chinavas.com/hls/fuhai1.m3u8 +#EXTINF:-1 tvg-id="",萬州三峽移民 (576p) +http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8 +#EXTINF:-1 tvg-id="",萬州三峽移民 (576p) +http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8 +#EXTINF:-1 tvg-id="" status="online",萬州影視文藝 (576p) +http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8 +#EXTINF:-1 tvg-id="",萬州影視文藝 (576p) [Not 24/7] +http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8 +#EXTINF:-1 tvg-id="",萬州科教頻道 (576p) +http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8 +#EXTINF:-1 tvg-id="",萬州科教頻道 (576p) +http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8 +#EXTINF:-1 tvg-id="",萬州綜合頻道 (576p) +http://123.146.162.24:8017/iTXwrGs/800/live.m3u8 +#EXTINF:-1 tvg-id="",萬州綜合頻道 (576p) +http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8 +#EXTINF:-1 tvg-id="",秦皇島影視 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv3/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",秦皇島政法 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv2/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",秦皇島新聞 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv1/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="",积石山电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000152/index.m3u8 +#EXTINF:-1 tvg-id="",篮球资讯 (576p) +http://223.110.245.139/PLTV/4/224/3221227023/index.m3u8 +#EXTINF:-1 tvg-id="",娄底 (720p) +http://mms.ldntv.cn:1935/live/_definst_/zonghe/chunklist_w67585331.m3u8 +#EXTINF:-1 tvg-id="",娄底综合 (720p) +http://119.39.242.52:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",娄底综合 (720p) [Not 24/7] +http://mms.ldntv.cn:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="",精品电影 (1080p) +http://183.207.248.71/cntv/live1/jdianying/jdianying +#EXTINF:-1 tvg-id="",綦江综合 (576p) [Offline] +http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",红牛REDBULL TV (720p) +https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_3360.m3u8 +#EXTINF:-1 tvg-id="",纪实人文 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225655/index.m3u8 +#EXTINF:-1 tvg-id="",纯享4K (2160p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8 +#EXTINF:-1 tvg-id="",绥江综合 [Offline] +http://60.160.23.32:6055/sjtv/sjtv.m3u8 +#EXTINF:-1 tvg-id="",继续教育 (576p) +http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8 +#EXTINF:-1 tvg-id="",罗山电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/11521-1.m3u8 +#EXTINF:-1 tvg-id="",罗马尼亚STV [Not 24/7] +http://s2.streamnet.ro:8035/stream.flv +#EXTINF:-1 tvg-id="",置业 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8 +#EXTINF:-1 tvg-id="",美国中文电视 (406p) [Not 24/7] +https://jpts.sinovision.net/livestream.m3u8 +#EXTINF:-1 tvg-id="",美国亚美卫视 (480p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8 +#EXTINF:-1 tvg-id="",美国狗狗宠物 (1080p) +https://video.blivenyc.com/broadcast/prod/2061/22/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="",翡翠台 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",耀才财经 +http://202.69.67.66/webcast/bshdlive-pc/playlist.m3u8 +#EXTINF:-1 tvg-id="",耀才财经 (288p) +http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="",耀才财经 [Offline] +rtmp://202.69.69.180/webcast/bshdlive-pc +#EXTINF:-1 tvg-id="",肃州电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000123/index.m3u8 +#EXTINF:-1 tvg-id="",肇庆综合 (480p) +http://dslive.grtn.cn/zqzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",舟山公共生活 (720p) +http://live.wifizs.cn/ggsh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",舟山新闻综合 (240p) +http://live.wifizs.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",舟山新闻综合 (240p) +http://stream.wifizs.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="",舟山群岛旅游 (720p) +http://live.wifizs.cn/qdly/sd/live.m3u8 +#EXTINF:-1 tvg-id="",芜湖公共 (576p) +http://live1.wuhubtv.com/channel3/sd/live.m3u8 +#EXTINF:-1 tvg-id="",芜湖新闻综合 (576p) +http://live1.wuhubtv.com/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",芜湖生活 (576p) +http://live1.wuhubtv.com/channel2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",苏州文化生活 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szwhsh +#EXTINF:-1 tvg-id="",苏州新闻综合 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szxw +#EXTINF:-1 tvg-id="",苏州生活资讯 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szshzx +#EXTINF:-1 tvg-id="",苏州社会经济 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szshjj +#EXTINF:-1 tvg-id="",茂名综合 (540p) +http://dslive.grtn.cn/mmzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",荣昌综合 (404p) [Not 24/7] +http://183.64.181.25:40023/rongchang01.m3u8 +#EXTINF:-1 tvg-id="",莒縣圖文頻道 (720p) [Timeout] +http://61.162.225.122:8181/live/test3.m3u8 +#EXTINF:-1 tvg-id="",莒縣電視一套 (576p) [Timeout] +http://61.162.225.122:8181/live/test1.m3u8 +#EXTINF:-1 tvg-id="",莒縣電視二套 (576p) [Not 24/7] +http://61.162.225.122:8181/live/test2.m3u8 +#EXTINF:-1 tvg-id="",莲花卫视 (1080p) [Not 24/7] +http://149.129.100.78/lotus.php?id=1 +#EXTINF:-1 tvg-id="",華視新聞 [Geo-blocked] +http://seb.sason.top/sc/hsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",華藏衛視 (1080p) [Not 24/7] +http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",萍鄉公共頻道 (1080p) [Not 24/7] +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv3stream.m3u8 +#EXTINF:-1 tvg-id="",萍鄉教育頻道 (480p) +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8 +#EXTINF:-1 tvg-id="",萍鄉新聞綜合 (576p) [Not 24/7] +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8 +#EXTINF:-1 tvg-id="",萧山新闻综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8 +#EXTINF:-1 tvg-id="",蓝屏 432 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=109&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",蓬安新闻综合 (720p) [Not 24/7] +http://palive.patv123.com:8091/live/xwpd_800K.m3u8 +#EXTINF:-1 tvg-id="",蕪湖教育頻道 (576p) +http://live1.wuhubtv.com/channel4/sd/live.m3u8 +#EXTINF:-1 tvg-id="",蕭山生活頻道 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8 +#EXTINF:-1 tvg-id="",衡水影视娱乐 (480p) [Not 24/7] +http://hls.hsrtv.cn/hls/hstv2.m3u8 +#EXTINF:-1 tvg-id="",衡水新闻综合 (720p) [Not 24/7] +http://hls.hsrtv.cn/hls/hstv1.m3u8 +#EXTINF:-1 tvg-id="",袁州綜合頻道 (576p) [Not 24/7] +http://jxyz.chinashadt.com:8036/live/yz1.stream/playist.m3u8 +#EXTINF:-1 tvg-id="",西安丝路 (404p) [Not 24/7] +http://stream2.xiancity.cn/xatv5/playlist.m3u8 +#EXTINF:-1 tvg-id="",西安乐购购物 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv6/playlist.m3u8 +#EXTINF:-1 tvg-id="",西安商务资讯 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv3/playlist.m3u8 +#EXTINF:-1 tvg-id="",西安影视 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv4/playlist.m3u8 +#EXTINF:-1 tvg-id="",西安新闻 (1080p) [Not 24/7] +http://stream2.xiancity.cn/xatv1/playlist.m3u8 +#EXTINF:-1 tvg-id="",西安白鸽 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="",西藏卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8 +#EXTINF:-1 tvg-id="",西藏卫视 (576p) +http://117.169.120.140:8080/live/xizangstv/.m3u8 +#EXTINF:-1 tvg-id="",西藏卫视 (576p) +http://183.207.249.16/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="",西藏卫视 (576p) +http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8 +#EXTINF:-1 tvg-id="",西藏卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=208&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",西藏藏語 (576p) +http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8 +#EXTINF:-1 tvg-id="",西虹市首富 [Offline] +https://zuikzy.win7i.com/2018/07/30/hCt7GSGU1sAgOC8j/playlist.m3u8 +#EXTINF:-1 tvg-id="",西青新闻综合 (1080p) [Not 24/7] +http://221.238.209.44:81/hls/live1.m3u8 +#EXTINF:-1 tvg-id="",贵州体育旅游 (406p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=dwpd +#EXTINF:-1 tvg-id="",贵州公共 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzgg +#EXTINF:-1 tvg-id="",贵州卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/GZWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",贵州卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225576/index.m3u8 +#EXTINF:-1 tvg-id="",贵州卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8 +#EXTINF:-1 tvg-id="",贵州卫视 (576p) +http://183.207.248.71/gitv/live1/G_GUIZHOU/G_GUIZHOU +#EXTINF:-1 tvg-id="",贵州卫视 (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8 +#EXTINF:-1 tvg-id="",贵州大众生活 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=dzsh +#EXTINF:-1 tvg-id="",贵州家有购物 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=8 +#EXTINF:-1 tvg-id="",贵州影视文艺 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzwy +#EXTINF:-1 tvg-id="",贵州科教健康 (406p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=kjjk +#EXTINF:-1 tvg-id="",贵州经济 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzjj +#EXTINF:-1 tvg-id="",赵县电视一套 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",赵县电视一套 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",赵县电视二套 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",赵县电视二套 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",辛集新聞頻道 (480p) [Not 24/7] +http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",辛集生活頻道 (480p) [Not 24/7] +http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225499/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (576p) +http://183.207.248.71/cntv/live1/liaoningstv/liaoningstv +#EXTINF:-1 tvg-id="",辽宁卫视 (576p) +http://183.207.249.12/PLTV/4/224/3221225802/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (576p) +http://183.207.249.71/PLTV/3/224/3221225566/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/LNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225735/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) +http://112.25.48.68/live/program/live/lnwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) [Timeout] +http://39.134.39.37/PLTV/88888888/224/3221226209/index.m3u8 +#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=38&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",辽源新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/liaoyuan1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",迈视网 [Offline] +http://xinl.live.maxtv.cn/live/zb/playlist.m3u8 +#EXTINF:-1 tvg-id="",迪庆综合 (1080p) +http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",迪庆藏语 (576p) +http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",通化新闻 [Geo-blocked] +http://stream2.jlntv.cn/tonghua1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",通州电视台 (720p) +http://pull.dayuntongzhou.com/live/tztv.m3u8 +#EXTINF:-1 tvg-id="",遂宁公共公益 [Offline] +http://snlive.scsntv.com:8091/live/gggy.m3u8 +#EXTINF:-1 tvg-id="",遂宁综合 [Offline] +http://snlive.scsntv.com:8091/live/xwzh.m3u8 +#EXTINF:-1 tvg-id="",邗江资讯 (576p) [Offline] +http://223.110.245.139/PLTV/4/224/3221227154/index.m3u8 +#EXTINF:-1 tvg-id="",邵东综合 (576p) +http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" status="timeout",酒泉新闻综合 (576p) [Timeout] +http://117.156.28.119/270000001111/1110000001/index.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (432p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=10&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",重庆卫视 (540p) +http://112.25.48.68/live/program/live/cqws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (576p) +http://183.207.249.5/PLTV/4/224/3221225812/index.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_CHONGQING/G_CHONGQING +#EXTINF:-1 tvg-id="",重庆卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225692/index.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225734/index.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (1080p) +http://117.169.120.132:8080/live/chongqingstv/playlist.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (1080p) +http://223.110.254.137:6610/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv/1.m3u8 +#EXTINF:-1 tvg-id="",重庆卫视 (1080p) [Offline] +http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="",重庆忠县 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_35.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="",重庆移动 (480p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_57.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",重庆移动机场 (480p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_56.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",金昌公共頻道 (240p) [Geo-blocked] +http://stream4.liveyun.hoge.cn/ch01/sd/live.m3u8 +#EXTINF:-1 tvg-id="",金昌綜合頻道 (720p) [Geo-blocked] +http://stream4.liveyun.hoge.cn/ch02/sd/live.m3u8 +#EXTINF:-1 tvg-id="",金鹰卡通 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8 +#EXTINF:-1 tvg-id="",金鹰卡通 (576p) [Geo-blocked] +http://223.110.241.149:6610/gitv/live1/G_JINYING/G_JINYING/1.m3u8 +#EXTINF:-1 tvg-id="",金鹰卡通 (湖南) (540p) [Not 24/7] +http://112.25.48.68/live/program/live/jykt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",银川公共 (360p) [Not 24/7] +http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8 +#EXTINF:-1 tvg-id="",银川生活 (360p) [Not 24/7] +http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="",長豐新聞綜合 (576p) +http://218.23.114.19:1935/live/xinwen/playlist.m3u8 +#EXTINF:-1 tvg-id="",长乐综合 [Geo-blocked] +http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8 +#EXTINF:-1 tvg-id="",长寿文化旅游 (576p) [Offline] +http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",长寿综合 (720p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_63.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",长春综合 [Geo-blocked] +http://stream2.jlntv.cn/jlcc/sd/live.m3u8 +#EXTINF:-1 tvg-id="",长沙地铁移动 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8 +#EXTINF:-1 tvg-id="",长沙女性 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_349.m3u8 +#EXTINF:-1 tvg-id="",长沙政法 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_348.m3u8 +#EXTINF:-1 tvg-id="",长沙新闻 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_346.m3u8 +#EXTINF:-1 tvg-id="",长沙经贸 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8 +#EXTINF:-1 tvg-id="",长沙购物 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_354.m3u8 +#EXTINF:-1 tvg-id="",阜城综合 (576p) [Not 24/7] +http://hbfc.chinashadt.com:2036/live/2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",阳江综合 (480p) +http://dslive.grtn.cn/yjzh/playlist.m3u8 +#EXTINF:-1 tvg-id="",陕西卫视 (540p) +http://112.25.48.68/live/program/live/sxws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",陕西卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="",陕西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225729/index.m3u8 +#EXTINF:-1 tvg-id="",陕西卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227022/index.m3u8 +#EXTINF:-1 tvg-id="",隆化影视 (576p) +http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",隆化综合 (576p) +http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",隨州綜合 (720p) [Not 24/7] +http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_304.m3u8 +#EXTINF:-1 tvg-id="",隨州農村 (720p) [Not 24/7] +http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_305.m3u8 +#EXTINF:-1 tvg-id="",集安综合 [Geo-blocked] +http://stream2.jlntv.cn/ja/sd/live.m3u8 +#EXTINF:-1 tvg-id="",霍山综合 (576p) [Timeout] +http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",霸州公共頻道 (576p) [Not 24/7] +http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",霸州少兒頻道 (576p) [Not 24/7] +http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",霸州文化頻道 (576p) +http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",霸州新聞頻道 (576p) +http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",霸州新闻 (576p) [Offline] +http://rtvcdn.com.au:8082/TV_GG.m3u8 +#EXTINF:-1 tvg-id="",青州文化旅游 (576p) +http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",青州生活 (576p) +http://sdqz.chinashadt.com:2036/live/stream:2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",青州综合 (576p) +http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",青海卫视 (540p) +http://112.25.48.68/live/program/live/qhws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="",青海卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225573/index.m3u8 +#EXTINF:-1 tvg-id="",青海卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225727/index.m3u8 +#EXTINF:-1 tvg-id="",青海卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",青海卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",青海卫视 (1080p) +http://live.geermurmt.com/qhws/sd/live.m3u8 +#EXTINF:-1 tvg-id="",青海安多卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225531/index.m3u8 +#EXTINF:-1 tvg-id="",靖江新闻綜合 (480p) [Not 24/7] +http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8 +#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7] +http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8 +#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7] +http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8 +#EXTINF:-1 tvg-id="",静宁综合 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000147/index.m3u8 +#EXTINF:-1 tvg-id="",鞍山图文 (480p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="",韶关公共 (480p) +http://dslive.grtn.cn/sgxwzhHD/playlist.m3u8 +#EXTINF:-1 tvg-id="",风尚购物 (1080p) +http://183.207.248.71/cntv/live1/fengshanggw/fengshanggw +#EXTINF:-1 tvg-id="",餘姚姚江文化 (576p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8 +#EXTINF:-1 tvg-id="",马云对话 (480p) +http://www.alibabapictures.com/movies/10/mayunduihua.mp4 +#EXTINF:-1 tvg-id="",高台电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000146/index.m3u8 +#EXTINF:-1 tvg-id="",高尔夫 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=68 +#EXTINF:-1 tvg-id="",高清电影 (1080p) [Timeout] +http://39.134.19.76/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8 +#EXTINF:-1 tvg-id="",鹤壁新闻综合 (480p) [Not 24/7] +http://pili-live-hls.hebitv.com/hebi/hebi.m3u8 +#EXTINF:-1 tvg-id="",鹤峰综合 [Geo-blocked] +http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8 +#EXTINF:-1 tvg-id="",鹿泉一套 (576p) [Not 24/7] +http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",鹿泉二套 (576p) [Not 24/7] +http://hblq.chinashadt.com:2036/live/stream:luquan2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",黃驊影視 (576p) +http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",黃驊渤海新區 (576p) +http://hbhh.chinashadt.com:2111/live/bhtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",黄河电视台 [Offline] +http://149.129.100.78/tv.php?id=sxhh +#EXTINF:-1 tvg-id="",黄骅一套 (576p) +http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",黄骅二套 (576p) +http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",黑莓电竞 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) +http://223.110.243.169/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227492/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_HEILONGJIANG/G_HEILONGJIANG +#EXTINF:-1 tvg-id="",黑龙江 (1080p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江卫 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-heilongjiangstv/HD-2500k-1080P-heilongjiangstv +#EXTINF:-1 tvg-id="",黑龙江卫视 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=27&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225690/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) +http://183.207.249.36/PLTV/4/224/3221227323/index.m3u8 +#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) +http://223.110.254.143:6610/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv/1.m3u8 +#EXTINF:-1 tvg-id="",黑龙江台 [Timeout] +http://stream3.hljtv.com/hljws2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黑龙江少儿 [Offline] +http://stream3.hljtv.com/hljse2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黑龙江影视 [Timeout] +http://stream3.hljtv.com/hljys2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黑龙江文体 [Offline] +http://stream3.hljtv.com/hljwy2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黑龙江新闻法治 [Offline] +http://stream3.hljtv.com/hljxw2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黑龙江都市 [Timeout] +http://stream3.hljtv.com/hljdd2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黔西南公共 (288p) [Geo-blocked] +http://live.qxndt.com/channel3/sd/live.m3u8 +#EXTINF:-1 tvg-id="",黔西南综合 (288p) [Geo-blocked] +http://live.qxndt.com/channel2/sd/live.m3u8 +#EXTINF:-1 tvg-id="",點掌財經 (712p) +http://cclive2.aniu.tv/live/anzb.m3u8 +#EXTINF:-1 tvg-id="",龙口图文 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",龙口新闻综合 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",龙口生活 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",龙岩公共 (540p) [Not 24/7] +http://stream.lytv.net.cn/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="",龙岩综合 (540p) +http://stream.lytv.net.cn/2/sd/live.m3u8 diff --git a/streams/co.m3u b/streams/co.m3u new file mode 100644 index 000000000..56f5f69ff --- /dev/null +++ b/streams/co.m3u @@ -0,0 +1,95 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Amordiscos.co",Amordiscos (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:amordiscos_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.co",ATV (Soacha | Cundinamarca) (360p) [Not 24/7] +https://movil.ejeserver.com/live/verteve.m3u8 +#EXTINF:-1 tvg-id="AvivamientoTV.co",Avivamiento TV (1080p) [Not 24/7] +https://s1.abntelevision.com/avivamientoabr/stream/avivamientohd/avivamientohd/playlist.m3u8 +#EXTINF:-1 tvg-id="BuenisimaRadioTV.co",Buenísima Radio TV (Gamarra | Cesar) (1080p) [Not 24/7] +https://streamyes.alsolnet.com/buturama/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliTV.co",Cali TV (Santiago de Cali | Valle del Cauca) (540p) [Not 24/7] +https://5ab772334c39c.streamlock.net/live-calitv/calitv1/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.co",Canal 2 (720p) [Not 24/7] +https://video13.virtualtronics.com/streamer/canal2.m3u8 +#EXTINF:-1 tvg-id="Canal12.co",Canal 12 (Valledupar | Cesar) (486p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/canal-12-valledupar.m3u8 +#EXTINF:-1 tvg-id="CanalC.co",Canal C (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8104/8104/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCapital.co",Canal Capital (720p) [Not 24/7] +https://mdstrm.com/live-stream-playlist/57d01d6c28b263eb73b59a5a.m3u8 +#EXTINF:-1 tvg-id="CanalCaracol.co",Canal Caracol (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/574463697b9817cf0886fc17.m3u8 +#EXTINF:-1 tvg-id="CanalDos.co",Canal Dos (Yopal | Casanare) (720p) [Not 24/7] +http://131.221.42.25:1935/streaming/canal2/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalInstitucionalTV.co",Canal Institucional TV (1080p) +https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalRCNNovelas.co",Canal RCN Novelas (480p) +http://45.179.140.242:8000/play/a0jf +#EXTINF:-1 tvg-id="CanalRCNNovelas.co",Canal RCN Novelas (480p) [Not 24/7] +http://38.131.11.9:1080/play/a037 +#EXTINF:-1 tvg-id="CanalSonTV.co",Canal Son TV (720p) [Not 24/7] +https://server12.videostreaming.net:3628/stream/play.m3u8 +#EXTINF:-1 tvg-id="CanalVisionDorada.co",Canal Visión Dorada (720p) [Not 24/7] +https://movil.ejeserver.com/live/visiondorada.m3u8 +#EXTINF:-1 tvg-id="ChavoTV.co",Chavo TV (480p) [Not 24/7] +https://videostreaming.cloudserverlatam.com/chavotv/chavotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Cinema+ (720p) +https://hvtrafico.ddns.net/cinema720/cinema720.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Eduvision.co",Eduvision (720p) [Timeout] +http://66.240.236.25:1936/eduvision/eduvision/playlist.m3u8 +#EXTINF:-1 tvg-id="EnlaceTelevision.co",Enlace Televisión (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/colombia/enlace.m3u8 +#EXTINF:-1 tvg-id="FamiliChannel.co",Famili Channel (720p) [Not 24/7] +https://rtmp02.portalexpress.es/thefchanel/thefchanel/playlist.m3u8 +#EXTINF:-1 tvg-id="",LATAM TV (Bogotà) (540p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/latam +#EXTINF:-1 tvg-id="MarinaStereo.co",Marina Stereo (720p) [Offline] +https://rtmp02.portalexpress.es/marinastereo/marinastereo/playlist.m3u8 +#EXTINF:-1 tvg-id="MelodyChannelColombia.co",Melody Channel Colombia (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:MelodyChannel_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MiGenteTV.co",Mi Gente TV (720p) [Not 24/7] +https://hvtrafico.ddns.net/migente720/migente720.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieFe.co",MovieFe (360p) [Not 24/7] +https://vcp.myplaytv.com/moviefe/ngrp:moviefe_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MundoMas.co",Mundo Mas (560p) [Not 24/7] +http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 +#EXTINF:-1 tvg-id="NoticiasCaracol.co",Noticias Caracol (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/58dc3d471cbe05ff3c8e463e.m3u8 +#EXTINF:-1 tvg-id="NTN24.co",NTN24 (Nuestra Tele Noticias) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEJs1fTF3KszRJGxJY14VrA/live +#EXTINF:-1 tvg-id="SenalColombia.co",Señal Colombia (1080p) +https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SuramTV.co",Suram TV (1080p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/suramtv/suramtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TDIColombia.co",TDI Colombia (720p) [Not 24/7] +https://play.amelbasoluciones.co:3971/live/tdicolombiatvlive.m3u8 +#EXTINF:-1 tvg-id="",Teleamiga (Bogotà | Cundinamarca) (480p) [Not 24/7] +https://liveingesta118.cdnmedia.tv/teleamigatvlive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleantioquia2.co",Teleantioquia 2 (720p) [Not 24/7] +https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleantioquia.co",Teleantioquia (720p) [Not 24/7] +https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecafe.co",Telecafé [Offline] +http://38.131.11.9:1080/play/a0ct +#EXTINF:-1 tvg-id="Telecaribe.co",Telecaribe (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/telecaribe_adaptive +#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (486p) [Not 24/7] +http://vbox2.cehis.net/live-teleislas/smil:teleislas.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (486p) [Not 24/7] +https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemedellin.co",Telemedellin (720p) [Not 24/7] +https://liveingesta118.cdnmedia.tv/telemedellintvlive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelemusicaTV.co",Telemúsica TV (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:telemusica_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Telepacifico.co",Telepacífico (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] +https://stream.logicideas.media/telepacifico-live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telepetroleo.co",Telepetróleo (Barrancabermeja | Santander) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/telepetroleo.m3u8 +#EXTINF:-1 tvg-id="TelevisionCelestial.co",Television Celestial (480p) [Not 24/7] +https://stmvideo2.livecastv.com/celestialtv/celestialtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGracia.co",TVGracia (720p) +https://streamyes.alsolnet.com/tvgracia/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNGlobal.co",TVN Global (614p) [Not 24/7] +https://stmv2.voxtvhd.com.br/tvnglobal/tvnglobal/playlist.m3u8 +#EXTINF:-1 tvg-id="UNOPLAY.co",UNO PLAY (720p) [Not 24/7] +https://live-edge-bhs-1.cdn.enetres.net/184784E1D210401F8041E3E1266822CC021/playlist.m3u8 diff --git a/streams/cr.m3u b/streams/cr.m3u new file mode 100644 index 000000000..a683cb542 --- /dev/null +++ b/streams/cr.m3u @@ -0,0 +1,81 @@ +#EXTM3U +#EXTINF:-1 tvg-id="88Stereo.cr",88 Stereo (720p) [Not 24/7] +http://k3.usastreams.com/CableLatino/88stereo/playlist.m3u8 +#EXTINF:-1 tvg-id="AgrotendenciaTV.cr",AgrotendenciaTV (480p) [Not 24/7] +https://inliveserver.com:1936/15506/15506/playlist.m3u8 +#EXTINF:-1 tvg-id="AnexionTV.cr",Anexión TV (1080p) [Not 24/7] +http://rtmp.info:8081/anexiontv/envivo/index.m3u8 +#EXTINF:-1 tvg-id="AnexionTV.cr",Anexión TV (1080p) [Not 24/7] +https://rtmp.info/anexiontv/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaSeisTV.cr",Antena Seis TV (720p) [Geo-blocked] +http://inliveserver.com:1935/14510/14510/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4.cr",Canal 4 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal4/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal6.cr",Canal 6 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal6/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal8.cr",Canal 8 (720p) +http://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 +#EXTINF:-1 tvg-id="Canal11.cr",Canal 11 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal11/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13Sinart.cr",Canal 13 Sinart (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vh8g3 +#EXTINF:-1 tvg-id="Canal14SanCarlos.cr",Canal 14 San Carlos (720p) +http://tvn.obix.tv:1935/TVN/CH14.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal38.cr",Canal 38 (720p) [Not 24/7] +https://rtmp.info/canal38/envivo/chunks.m3u8 +#EXTINF:-1 tvg-id="Canal38.cr",Canal 38 (720p) [Not 24/7] +https://rtmp.info/canal38/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="ColosalTV.cr",Colosal TV (720p) [Not 24/7] +http://tv.ticosmedia.com:1935/COLOSAL/COLOSAL/playlist.m3u8 +#EXTINF:-1 tvg-id="CRTVyRadio.cr",CR-TV y Radio (360p) [Timeout] +https://cp.sradiotv.com:1936/8034/8034/playlist.m3u8 +#EXTINF:-1 tvg-id="EJTV.cr",Enlace Juvenil (EJTV) (288p) [Not 24/7] +https://api.new.livestream.com/accounts/ejtvla/events/2294538/live.m3u8 +#EXTINF:-1 tvg-id="EnlaceTV.cr",EnlaceTV (720p) [Not 24/7] +https://v4.tustreaming.cl/enlacebpbtv/index.m3u8 +#EXTINF:-1 tvg-id="ExtremaTV.cr",Extrema TV (720p) +http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ExtremaTV.cr",Extrema TV (720p) +https://www.livestreamcdn.net:444/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HBTVTicaVision.cr",HBTV TicaVisión (720p) [Not 24/7] +http://k3.usastreams.com:1935/HBTV/HBTV/playlist.m3u8 +#EXTINF:-1 tvg-id="Humor247.cr",Humor 24-7 (360p) +https://srv.panelcast.net/humor247/humor247/playlist.m3u8 +#EXTINF:-1 tvg-id="LuzNacienteTV.cr",Luz Naciente TV (720p) [Not 24/7] +https://cloudflare.streamgato.us:3399/live/luznacientetvlive.m3u8 +#EXTINF:-1 tvg-id="NicoyaTV.cr",NicoyaTV (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8 +#EXTINF:-1 tvg-id="QuinceUCR.cr",Quince UCR (Universidad de Costa Rica) (720p) [Not 24/7] +http://163.178.170.127:1935/quinceucr/live.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.cr",Repretel CDR-2 Central de Radios (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal2/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroTVPalmares.cr",Retro TV Palmares (360p) [Not 24/7] +http://tvretropalmares.com:8090/hls/envivo.m3u8 +#EXTINF:-1 tvg-id="SanRafaelenLinea.cr",San Rafael en Linea (720p) [Geo-blocked] +https://cp.sradiotv.com:1936/8064/8064/playlist.m3u8 +#EXTINF:-1 tvg-id="SMOTV.cr",SMO TV [Timeout] +http://186.15.50.30:8080/hls/smotv.m3u8 +#EXTINF:-1 tvg-id="STVElCamalFamiliar.cr",STV El Camal Familiar (720p) [Not 24/7] +http://tiquiciatv.com:1935/stv/web/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleUno.cr",Tele Uno (720p) [Not 24/7] +http://tv.teleunotv.cr:1935/TVUNO/TVUNO/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleredTelevision.cr",Telered Television (720p) [Not 24/7] +http://k4.usastreams.com/ARBtv/teleplus/playlist.m3u8 +#EXTINF:-1 tvg-id="Telesistema.cr",Telesistema (486p) +https://59ef525c24caa.streamlock.net/ARBtv/ARBtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSURCostaRica.cr",TeleSUR Costa Rica (720p) [Not 24/7] +http://k3.usastreams.com/telesur/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSURCostaRica.cr",TeleSUR Costa Rica (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/telesur/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletica7.cr",Teletica 7 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x29e3wg +#EXTINF:-1 tvg-id="TVSurCanal9.cr",TV Sur Canal 9 (480p) [Not 24/7] +http://tv.ticosmedia.com:1935/TVSUR/TVSUR/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSurCanal14.cr",TV Sur Canal 14 (720p) [Timeout] +https://5bf8041cb3fed.streamlock.net/TVSURCANAL14/TVSURCANAL14/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoTourChannel.cr",Video Tour Channel (720p) [Not 24/7] +http://k4.usastreams.com/videotour/videotour/playlist.m3u8 +#EXTINF:-1 tvg-id="VMLatino.cr",VM Latino (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/vmtv/vmlatino/playlist.m3u8 +#EXTINF:-1 tvg-id="ZonaFilmsTV.cr",Zona Films TV (900p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/zonafilmstv diff --git a/streams/cu.m3u b/streams/cu.m3u new file mode 100644 index 000000000..39ee0a10a --- /dev/null +++ b/streams/cu.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalEducativo2.cu",Canal Educativo 2 [Timeout] +http://177.52.221.214:8000/play/a0dx/index.m3u8 +#EXTINF:-1 tvg-id="CanalEducativo.cu",Canal Educativo [Timeout] +http://177.52.221.214:8000/play/a0dw/index.m3u8 +#EXTINF:-1 tvg-id="CubaVision.cu",CubaVision [Timeout] +http://177.52.221.214:8000/play/a0dc/index.m3u8 +#EXTINF:-1 tvg-id="",CubaVision Internacional (480p) [Not 24/7] +http://190.122.96.187:8888/http/010 +#EXTINF:-1 tvg-id="",CubaVision Internacional [Offline] +http://177.52.221.214:8000/play/a0dy/index.m3u8 +#EXTINF:-1 tvg-id="TeleRebelde.cu",Tele Rebelde [Timeout] +http://177.52.221.214:8000/play/a0dd/index.m3u8 diff --git a/streams/cw.m3u b/streams/cw.m3u new file mode 100644 index 000000000..235fac822 --- /dev/null +++ b/streams/cw.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BonceTV.cw",Bonce TV (480p) [Not 24/7] +https://seswa.bonce.tv/hls/bonceswa.m3u8 +#EXTINF:-1 tvg-id="NosPais.cw",Nos Pais (720p) [Not 24/7] +http://558bd16067b67.streamlock.net/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NosPais.cw",Nos Païs (720p) [Not 24/7] +http://highvolume04.streampartner.nl:1935/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCuracao.cw",TeleCuraçao (720p) +http://ott.streann.com:8080/loadbalancer/services/public/channels/5ed71e232cdc24a3d08cd6de/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDirect13.cw",TV Direct 13 (360p) [Not 24/7] +https://edge1.tvdirect13.com/live/smil:mystream.smil/playlist.m3u8 diff --git a/streams/cy.m3u b/streams/cy.m3u new file mode 100644 index 000000000..e321671cc --- /dev/null +++ b/streams/cy.m3u @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdaTV.cy",Ada TV (720p) [Offline] +http://kuzeykibris.tv/m3u8/tv_ada.m3u8 +#EXTINF:-1 tvg-id="AdaTV.cy",Ada TV (1080p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/kibrisadatv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7] +https://dev.aftermind.xyz/edge-hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7] +https://dev.aftermind.xyz/hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="ASTTV1.cy",AST TV 1 (PC) (1080p) [Not 24/7] +https://www.ast.tv/stream/1/master.m3u8 +#EXTINF:-1 tvg-id="ASTTV2.cy",AST TV 2 (PC) (1080p) [Not 24/7] +https://www.ast.tv/stream/2/master.m3u8 +#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (576p) [Not 24/7] +http://wms.brtk.net:1935/live/BRTHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (576p) [Not 24/7] +rtmp://wms.brtk.net:1935/live/BRTHD +#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_brt1.m3u8 +#EXTINF:-1 tvg-id="BRT2HD.cy",BRT 2 HD (406p) [Not 24/7] +http://wms.brtk.net:1935/live/brt1/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT3.cy",BRT 3 (406p) [Not 24/7] +http://wms.brtk.net:1935/live/brt2/playlist.m3u8 +#EXTINF:-1 tvg-id="CityChannel.cy",City Channel (720p) +https://dev.aftermind.xyz/edge-hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="CityChannel.cy",City Channel (720p) +https://dev.aftermind.xyz/hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="DigitalTV.cy",Digital TV (720p) +https://l8.cloudskep.com/digital/dtv/playlist.m3u8 +#EXTINF:-1 tvg-id="KuzeyKibrisTV.cy",Kuzey Kibris TV (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_kktv.m3u8 +#EXTINF:-1 tvg-id="Reload.cy",Reload (542p) +http://web.onair-radio.eu:1935/video/video/playlist.m3u8 +#EXTINF:-1 tvg-id="",RIK 1 (CYBC 1) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rik1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RIK 2 (CYBC 2) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rik2/playlist.m3u8 +#EXTINF:-1 tvg-id="",RIK HD (CYBC HD) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rikhd/playlist.m3u8 +#EXTINF:-1 tvg-id="RIKSat.cy",RΙΚ Sat (CYBC S) (720p) [Not 24/7] +https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="",SAT-7 ARABIC (720p) +https://svs.itworkscdn.net/sat7arabiclive/sat7arabic.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="",SAT-7 KIDS (1080p) +https://svs.itworkscdn.net/sat7kidslive/sat7kids.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="",SAT-7 PARS (720p) +https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="",SAT-7 TÜRK (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Sigma.cy",Sigma (576p) [Not 24/7] +https://sl2.sigmatv.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="TV2020.cy",TV 2020 (720p) [Offline] +http://kuzeykibris.tv/m3u8/tv_dialog.m3u8 +#EXTINF:-1 tvg-id="VOULITV.cy",Vouli TV (1080p) +https://dev.aftermind.xyz/edge-hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="VOULITV.cy",Vouli TV (1080p) +https://dev.aftermind.xyz/hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu diff --git a/streams/cz.m3u b/streams/cz.m3u new file mode 100644 index 000000000..fdda8a016 --- /dev/null +++ b/streams/cz.m3u @@ -0,0 +1,53 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ElektrikaTV.cz",Elektrika TV (360p) +http://rtmp.elektrika.cz/live/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Extasy HD / Leo TV HD (576p) +http://213.151.233.20:8000/dna-6233-tv-pc.m3u8 +#EXTINF:-1 tvg-id="Nova2.cz",Nova 2 (640p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_2_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="Nova.cz",Nova (640p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaAction.cz",Nova Action (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_action_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaCinema.cz",Nova Cinema (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_cinema_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaGold.cz",Nova Gold (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_gold_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="Ocko.cz",Óčko (540p) +https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko.stream.1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Ocko.cz",Óčko (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoExpres.cz",Óčko Expres (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko_expres/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoGold.cz",Óčko Gold (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko_gold/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoGold.cz",Óčko Gold (540p) [Geo-blocked] +https://ocko-live.ssl.cdn.cra.cz/cra_live2/ocko_gold.stream.1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PolarTV.cz",Polar TV (1080p) +https://stream.polar.cz/polar/polarlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="PrahaTV.cz",Praha TV (1080p) +https://stream.polar.cz/prahatv/prahatvlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTelevision.cz",Retro Music Television (360p) +http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTV.cz",Retro Music TV (360p) +http://89.185.253.55/retrotv/retrotvHQ1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTV.cz",RetroMusicTV (360p) +http://stream.mediawork.cz/retrotv/smil:retrotv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTMplus.cz",RTM plus (720p) +http://www.rtmplus.cz/live/1-playlist.m3u8 +#EXTINF:-1 tvg-id="Slagr2.cz",Šlágr 2 (576p) +http://92.62.234.233/slagr2.m3u +#EXTINF:-1 tvg-id="SlagrTV.cz",Slagr TV (540p) [Not 24/7] +http://slagrtv-live-hls.ssl.cdn.cra.cz/channels/slagrtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SlagrTV.cz",Šlágr TV (576p) +https://stream-6.mazana.tv/slagr.m3u +#EXTINF:-1 tvg-id="TVNatura.cz",TV Natura (360p) [Not 24/7] +https://media1.tvnatura.cz/live_out/1/live.m3u8 +#EXTINF:-1 tvg-id="",TV NOE (720p) [Offline] +https://w101.quickmedia.tv/prozeta-live04/prozeta-live04.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="VychodoceskaTV.cz",Východočeská TV (576p) +https://stream.polar.cz/vctv/vctvlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Настоящее Время (480p) +http://ott-cdn.ucom.am/s61/index.m3u8 +#EXTINF:-1 tvg-id="",Настоящее Время (720p) [Not 24/7] +http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8 diff --git a/streams/de.m3u b/streams/de.m3u new file mode 100644 index 000000000..8946ce82f --- /dev/null +++ b/streams/de.m3u @@ -0,0 +1,473 @@ +#EXTM3U +#EXTINF:-1 tvg-id="123TV.de",1-2-3 TV (288p) +http://123tv-mx1.flex-cdn.net/index.m3u8 +#EXTINF:-1 tvg-id="3sat.de",3sat [Geo-blocked] +https://zdf-hls-18.akamaized.net/hls/live/2016501/dach/high/master.m3u8 +#EXTINF:-1 tvg-id="atv.de",a.tv (1080p) [Not 24/7] +https://augsburgtv.iptv-playoutcenter.de/augsburgtv/augsburgtv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="ADRIAMusic.de",ADRIA Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-1/master.m3u8 +#EXTINF:-1 tvg-id="AlexBerlin.de",Alex Berlin (1080p) [Not 24/7] +https://alex-stream.rosebud-media.de/live/alexlivetv40.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AnixeHDSerie.de",Anixe HD Serie (360p) +https://ma.anixa.tv/clips/stream/anixehd/index.m3u8 +#EXTINF:-1 tvg-id="",Antenne Vorarlberg (720p) [Not 24/7] +http://5857db5306b83.streamlock.net/antennevorarlberg-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="ARDEvent1.de",ARD Event 1 (540p) [Offline] +http://wdrardevent1-lh.akamaihd.net/i/ardevent1_weltweit@566648/master.m3u8 +#EXTINF:-1 tvg-id="",ARD-alpha (720p) +http://livestreams.br.de/i/bralpha_germany@119899/master.m3u8 +#EXTINF:-1 tvg-id="",ARD-alpha (720p) [Not 24/7] +https://brlive-lh.akamaihd.net/i/bralpha_germany@119899/master.m3u8 +#EXTINF:-1 tvg-id="",ARTI TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/139 +#EXTINF:-1 tvg-id="",ARTI TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/139.m3u8 +#EXTINF:-1 tvg-id="",ARTI TV (1080p) [Not 24/7] +http://176.10.117.18:8000/play/a002/index.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] +http://badentv-stream2.siebnich.info/rtplive/btv.stream/live.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] +http://badentv-stream2.siebnich.info/rtplive/btv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] +https://cdn.icu.de/rtplive/btv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTV.de",Bibel TV (720p) +https://bibint01.iptv-playoutcenter.de/bibint01/bibint01.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTVImpuls.de",Bibel TV Impuls (720p) +https://bibeltv02.iptv-playoutcenter.de/bibeltv02/bibeltv02.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTVMusik.de",Bibel TV Musik (720p) +http://bibeltv03.iptv-playoutcenter.de/bibeltv03/bibeltv03.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKRegionalTV.de",BLK Regional TV (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKTV.de",BLK TV (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de",BLK TV Hohenmölsen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8?ref=medienportal-sachsen- +#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de",BLK TV Hohenmölsen (1080p) [Not 24/7] +http://62.113.210.250/medienasa-live/BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de",BR Fernsehen Nord (720p) [Geo-blocked] +http://livestreams.br.de/i/bfsnord_germany@119898/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de",BR Fernsehen Nord (720p) [Geo-blocked] +https://brlive-lh.akamaihd.net/i/bfsnord_germany@119898/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) +https://brcdn.vo.llnwd.net/br/fs/bfs_sued/hls/de/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] +http://livestreams.br.de/i/bfssued_germany@119890/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] +https://br_hdslive-f.akamaihd.net/i/bfssued_germany@119890/index_3776_av-p.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] +https://brlive-lh.akamaihd.net/i/bfssued_germany@119890/master.m3u8 +#EXTINF:-1 tvg-id="CampusTVMagdeburg.de",Campus TV Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8 +#EXTINF:-1 tvg-id="CampusTVMagdeburg.de",Campus TV Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8?bitrate=800 +#EXTINF:-1 tvg-id="CampusTVMagdeburgPlus.de",Campus-TV-Magdeburg+ (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/chunklist_w937425968.m3u8 +#EXTINF:-1 tvg-id="ChemnitzFernsehen.de",Chemnitz Fernsehen (1080p) +https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="",CIRA TV (720p) [Not 24/7] +http://176.10.117.18:8000/play/a00f/index.m3u8 +#EXTINF:-1 tvg-id="",ÇİRA TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/25 +#EXTINF:-1 tvg-id="",ÇİRA TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/25.m3u8 +#EXTINF:-1 tvg-id="CroTVHD.de",CroTV HD (1080p) +http://92.204.40.139:8081/crotv/televizijahrvatskedijaspore/playlist.m3u8 +#EXTINF:-1 tvg-id="DaVinci.de",Da Vinci [Timeout] +http://sc.id-tv.kz/DaVinci_38_39.m3u8 +#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) +https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) +https://mcdn.daserste.de/daserste/de/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) [Geo-blocked] +https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) [Geo-blocked] +https://mcdn.daserste.de/daserste/de/master.m3u8 +#EXTINF:-1 tvg-id="DASDING908.de",DASDING 90.8 (720p) [Offline] +https://swrdasdingvrhls-i.akamaihd.net/hls/live/780817/vrdasding/master.m3u8 +#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de",Deutsches Musik Fernsehen (540p) [Not 24/7] +http://tv.artcom-venture.de:1322/dmf/tv.m3u8 +#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de",Deutsches Musik Fernsehen (720p) [Not 24/7] +https://tv.artcom-venture.de/dmf/tv.m3u8 +#EXTINF:-1 tvg-id="DresdenFernsehen.de",Dresden Fernsehen (1080p) [Not 24/7] +https://dresden.iptv-playoutcenter.de/dresden/dresdenfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="DW.de",DW (480p) +http://ott-cdn.ucom.am/s26/index.m3u8 +#EXTINF:-1 tvg-id="DWArabic.de",DW Arabic (1080p) +https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/index.m3u8 +#EXTINF:-1 tvg-id="DWDeutsch.de",DW Deutsch (1080p) [Geo-blocked] +https://dwamdstream106.akamaized.net/hls/live/2017965/dwstream106/index.m3u8 +#EXTINF:-1 tvg-id="DWDeutschPlus.de",DW Deutsch+ (1080p) [Geo-blocked] +https://dwamdstream105.akamaized.net/hls/live/2015531/dwstream105/index.m3u8 +#EXTINF:-1 tvg-id="DWEnglish.de",DW English (720p) [Offline] +https://m-c010-j2apps.s.llnwi.net/hls_hd/8024.DWEnglishHD.in.m3u8 +#EXTINF:-1 tvg-id="DWEnglish.de",DW English (1080p) +https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/index.m3u8 +#EXTINF:-1 tvg-id="DWEspanol.de",DW Español (1080p) +https://dwamdstream104.akamaized.net/hls/live/2015530/dwstream104/index.m3u8 +#EXTINF:-1 tvg-id="EarthTV.de",Earth TV (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/germany/earth-tv +#EXTINF:-1 tvg-id="Elbekanal.de",Elbekanal (576p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="Elbekanal.de",Elbekanal (576p) +http://62.113.210.250/medienasa-live/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="ElbekanalSchonebeck.de",Elbekanal Schönebeck (576p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="emsTVLingen.de",ems TV Lingen (280p) +https://5889e7d0d6e28.streamlock.net/ev1tv-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="eoTV.de",eo TV (1080p) [Geo-blocked] +https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd5/playlist.m3u8 +#EXTINF:-1 tvg-id="ERF1.de",ERF 1 [Offline] +http://14000-l.z.core.cdn.streamfarm.net/007erfiphonelive/smil:stream_live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ErzTVStollberg.de",Erz-TV Stollberg (576p) +https://5acade5fc0c29.streamlock.net/kabeljournal/live2020.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroAlTV.de",EuroAl TV (720p) [Timeout] +http://5.135.92.131:1935/live/euroAl/playlist.m3u8 +#EXTINF:-1 tvg-id="Filstalwelle.de",Filstalwelle (576p) +http://62.113.210.2/filstalwelle-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="FinestTV.de",Finest TV (288p) [Not 24/7] +http://media.finest.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="FOLXMusic.de",FOLX Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-4/master.m3u8 +#EXTINF:-1 tvg-id="",FOLX Slovenija (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-5/master.m3u8 +#EXTINF:-1 tvg-id="FrankenTV.de",Franken Fernsehen (1080p) +https://s3.welocal.world/frankenfernsehen/media/191627/videos/hls.m3u8 +#EXTINF:-1 tvg-id="FrankenFernsehen.de",Franken Fernsehen (Nürnberg) (1080p) [Not 24/7] +https://frankentv.iptv-playoutcenter.de/frankentv/frankentv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="FriesischerRundfunkFriedeburg.de",Friesischer Rundfunk Friedeburg (350p) [Not 24/7] +https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/mp4:friesischerrundfunk/playlist.m3u8 +#EXTINF:-1 tvg-id="Hamburg1.de",Hamburg 1 (270p) [Not 24/7] +https://live2.telvi.de/hls/hamburg1.m3u8 +#EXTINF:-1 tvg-id="Handystar.de",Handystar (404p) [Offline] +http://mediaspar-live.hls.adaptive.level3.net/ses/mediaspar/stream1/streamPlaylist.m3u8 +#EXTINF:-1 tvg-id="HauptstadtTV.de",Hauptstadt.TV (Potsdam) (720p) [Not 24/7] +https://live2.telvi.de/hls/hauptstadttv_hd720.m3u8 +#EXTINF:-1 tvg-id="HealthTV.de",Health TV (720p) +http://62.67.13.53:1935/HealthTV/ghtv_live_master.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HR.de",hr-fernsehen (1080p) [Timeout] +https://hrhls.akamaized.net/hls/live/2024525/hrhls/index.m3u8 +#EXTINF:-1 tvg-id="HSE24Extra.de",HSE24 Extra (1080p) +https://hse24extra.akamaized.net/hls/live/2006596/hse24extra/playlist.m3u8 +#EXTINF:-1 tvg-id="HSE24Trend.de",HSE24 Trend (576p) +https://hse24trend.akamaized.net/hls/live/2006597/hse24trend/playlist.m3u8 +#EXTINF:-1 tvg-id="HSE.de",HSE (1080p) +https://hse24.akamaized.net/hls/live/2006663/hse24/playlist.m3u8 +#EXTINF:-1 tvg-id="IsarTV.de",Isar TV (1080p) [Not 24/7] +https://isar-tv.iptv-playoutcenter.de/isar-tv/isar-tv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="JenaTV.de",JenaTV (1080p) [Timeout] +https://stream7.sehradar.de/jenatv/ngrp:livestream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KTVFernsehen.de",K-TV (Fernsehen) (720p) +https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 +#EXTINF:-1 tvg-id="",KiKA [Geo-blocked] +https://kikageohls.akamaized.net/hls/live/2022693/livetvkika_de/master.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) +http://62.113.210.250/medienasa-live/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KWTVWildau.de",KW TV Wildau (720p) [Not 24/7] +https://58af0c57eaf3e.streamlock.net/easycast11-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Lausitzwelle.de",Lausitzwelle (Fernsehen) (1080p) +https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd10/playlist.m3u8 +#EXTINF:-1 tvg-id="LeipzigFernsehen.de",Leipzig Fernsehen (1080p) +https://leipzig.iptv-playoutcenter.de/leipzig/leipzigfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="LightChannel.de",Light Channel (576p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/lctvde/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) +http://62.113.210.250/medienasa-live/mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MunchenTV.de",München TV (1080p) [Not 24/7] +https://muenchentv.iptv-playoutcenter.de/muenchentv/muenchentv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Muxxtv.de",Muxx.tv (1080p) [Not 24/7] +https://5856e1a25f71a.streamlock.net/easycast7-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",MyTVplus (Dresden) (576p) +https://mytvplus.iptv-playoutcenter.de/mytvplus/mytvplus.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="ntvEvent.de",n-tv Event (540p) +https://ntvlivehls-lh.akamaihd.net/i/ntvlivehls_event1_1@409295/master.m3u8 +#EXTINF:-1 tvg-id="naheTV.de",naheTV (720p) +https://s.ok54.de/nahetv/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="NDREvent1.de",NDR Event 1 (720p) +https://ndrevent-lh.akamaihd.net/i/ndrevent_1@409066/master.m3u8 +#EXTINF:-1 tvg-id="NDREvent2.de",NDR Event 2 (720p) +https://ndrevent-lh.akamaihd.net/i/ndrevent_2@429805/master.m3u8 +#EXTINF:-1 tvg-id="NDREvent3.de",NDR Event 3 (720p) [Geo-blocked] +https://ndrevent-lh.akamaihd.net/i/ndrevent_3@409068/master.m3u8 +#EXTINF:-1 tvg-id="NDRFernsehen.de",NDR Fernsehen (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_fs@430230/master.m3u8 +#EXTINF:-1 tvg-id="NDRHamburg.de",NDR Hamburg (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_hh@430231/master.m3u8 +#EXTINF:-1 tvg-id="NDRHamburg.de",NDR Hamburg (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_hh/master.m3u8 +#EXTINF:-1 tvg-id="NDRInternational.de",NDR International (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_int@430236/master.m3u8 +#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de",NDR Mecklenburg-Vorpommern (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_mv@430232/master.m3u8 +#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de",NDR Mecklenburg-Vorpommern (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_mv/master.m3u8 +#EXTINF:-1 tvg-id="NDRNiedersachsen.de",NDR Niedersachsen (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_nds@430233/master.m3u8 +#EXTINF:-1 tvg-id="NDRNiedersachsen.de",NDR Niedersachsen (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_nds/master.m3u8 +#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de",NDR Schleswig-Holstein (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_sh@430234/master.m3u8 +#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de",NDR Schleswig-Holstein (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_sh/master.m3u8 +#EXTINF:-1 tvg-id="NDRWeltweiter.de",NDR Weltweiter (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_ww@430235/master.m3u8 +#EXTINF:-1 tvg-id="NiederbayernTV.de",Niederbayern TV (1080p) [Not 24/7] +https://stream03.stream.welocal.world/stream/nla/ngrp:nla.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NiederbayernTVPassau.de",Niederbayern TV Passau (1080p) [Offline] +https://stream03.stream.welocal.world/stream/npa/ngrp:npa.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Noa4Hamburg.de",Noa 4 Hamburg (1080p) +https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8 +#EXTINF:-1 tvg-id="Noa4Norderstedt.de",Noa 4 Norderstedt (1080p) +https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8 +#EXTINF:-1 tvg-id="NRT2.de",NRT 2 (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/54.m3u8 +#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",NRWISION (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_source/playlist.m3u8 +#EXTINF:-1 tvg-id="OberlausitzTV.de",Oberlausitz TV (1080p) [Not 24/7] +http://5856e1a25f71a.streamlock.net:1935/easycast8-live/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="OberpfalzTV.de",Oberpfalz TV (1080p) +https://oberpfalztv.iptv-playoutcenter.de/oberpfalztv/oberpfalztv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="",oeins (Oldenburg) (1080p) [Not 24/7] +https://www.oeins.de/live/studio.m3u8 +#EXTINF:-1 tvg-id="OFTVOffenbach.de",OF-TV Offenbach (720p) +https://5864df9ceac85.streamlock.net/germanpictures-live/mp4:streamschedule/playlist.m3u8 +#EXTINF:-1 tvg-id="OKDessau.de",OK Dessau (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKDessau.de" status="online",OK Dessau (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKFlensburg.de",OK Flensburg (576p) [Offline] +https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/flensburgtv/index.m3u8 +#EXTINF:-1 tvg-id="OKGiessen.de",OK Gießen (360p) [Not 24/7] +https://s.ok54.de/mok-gi/mok-gi/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKaiserslautern.de",OK Kaiserslautern (720p) [Not 24/7] +https://s.ok54.de/abr_okkl/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKassel.de",OK Kassel (720p) [Not 24/7] +https://s.ok54.de/mok-ks/kassel/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKiel.de",OK Kiel (576p) [Offline] +https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/kieltv/index.m3u8 +#EXTINF:-1 tvg-id="OKLudwigshafen.de",OK Ludwigshafen (720p) [Not 24/7] +https://s.ok54.de/oklu/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de",OK Merseburg-Querfurt (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de",OK Merseburg-Querfurt (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKRheinMain.de",OK Rhein-Main (576p) [Not 24/7] +https://s.ok54.de/mok-rm/mok-rm/playlist.m3u8 +#EXTINF:-1 tvg-id="OKRheinLokalWorms.de",OK RheinLokal (Worms) (720p) [Not 24/7] +https://s.ok54.de/rheinlokal/rheinlOKal_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] +http://62.113.210.250/medienasa-live/ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) +http://62.113.210.250/medienasa-live/ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSuedwestpfalz.de",OK Suedwestpfalz (720p) [Not 24/7] +https://s.ok54.de/okswp/test/playlist.m3u8 +#EXTINF:-1 tvg-id="OKTrier.de",OK Trier (720p) +https://s.ok54.de/ott/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWeinstrasseNeustadt.de",OK Weinstraße (Neustadt) (432p) +https://s.ok54.de/okweinstrasse/okweinstrasse/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWernigerode.de",OK Wernigerode (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWernigerode.de",OK Wernigerode (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="oldenburgeins.de",oldenburg eins (1080p) [Not 24/7] +https://oeins.de/live/studio.m3u8 +#EXTINF:-1 tvg-id="ONE1Music.de",ONE1 Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-3/master.m3u8 +#EXTINF:-1 tvg-id="ONE1Slovenija.de",ONE1 Slovenija (1080p) +https://serve-first.folxplay.tv/folx/ch-6/master.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de",Parlamentsfernsehen 1 (270p) [Not 24/7] +https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk1.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de",Parlamentsfernsehen 1 (1080p) +https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de",Parlamentsfernsehen 2 (270p) +https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk2.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de",Parlamentsfernsehen 2 (270p) [Not 24/7] +https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk2.m3u8 +#EXTINF:-1 tvg-id="PearlTV.de",Pearl TV [Offline] +http://enstyle-live.hls.adaptive.level3.net/ses/enstyle/stream1/streamPlaylist.m3u8 +#EXTINF:-1 tvg-id="Phoenix.de",Phoenix [Geo-blocked] +https://zdf-hls-19.akamaized.net/hls/live/2016502/de/high/master.m3u8 +#EXTINF:-1 tvg-id="PunkteinsOberlausitz.de",Punkteins (Oberlausitz) (1080p) [Not 24/7] +https://5852afe96c9bb.streamlock.net/easycast8-live/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="",PunktUM (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="PUNKTum.de",PUNKTum (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="PUNKTumFernsehen.de",PUNKTum Fernsehen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u +#EXTINF:-1 tvg-id="PunktumSdharz.de",Punktum S�dharz (1080p) +http://62.113.210.250/medienasa-live/punktum_high/master.m3u8 +#EXTINF:-1 tvg-id="Radio21TV.de",Radio 21 TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/22300508/events/6675945/live.m3u8 +#EXTINF:-1 tvg-id="RadioWeserTVBremen.de",Radio Weser TV Bremen (576p) +https://5857499ee635b.streamlock.net/radiowesertv-live/mp4:livestreamTV/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ran 1 (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1.de",RAN1 (1080p) +http://62.113.210.250/medienasa-live/mp4:ran1_high/master.m3u8 +#EXTINF:-1 tvg-id="RAN1.de",RAN1 (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de",RAN1 Regionalfernsehen (1080p) +http://62.113.210.250:1935/medienasa-live/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de",RAN1 Regionalfernsehen (1080p) +http://62.113.210.250:1935/medienasa-live/ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) +http://62.113.210.250/medienasa-live/rbw_high/master.m3u8 +#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVBodensee.de",Regio TV Bodensee (1080p) +https://regiotv-b.iptv-playoutcenter.de/regiotv-b/regiotv-b.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVSchwaben.de",Regio TV Schwaben (1080p) [Offline] +https://stream05.stream.welocal.world/stream/rsc/ngrp:rsc.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVStuttgart.de",Regio TV Stuttgart (1080p) +https://regiotv-s.iptv-playoutcenter.de/regiotv-s/regiotv-s.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RFH.de",RFH (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RFHHarz.de",RFH Harz (1080p) +http://62.113.210.250/medienasa-live/RFH_high/master.m3u8 +#EXTINF:-1 tvg-id="RFHHarz.de",RFH Harz (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8?ref=medienportal-sachsen-anhalt.de&seid=528347 +#EXTINF:-1 tvg-id="RFHTV.de",RFH TV (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RFORosenheim.de",RFO Rosenheim (1080p) +https://stream01.stream.welocal.world/stream/fhd-rfo_66876/ngrp:stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/chunklist.m3u8 +#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8?=&ref=www.rheinmaintv.de&seid=598541 +#EXTINF:-1 tvg-id="RNF.de",RNF (1080p) +https://rnf.iptv-playoutcenter.de/rnf/rnf.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RockAntenne.de",Rock Antenne [Not 24/7] +https://stream.rockantenne.de/rockantenne/stream/mp3 +#EXTINF:-1 tvg-id="RocklandTV.de",Rockland TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 +#EXTINF:-1 tvg-id="RocklandTV.de",Rockland TV (720p) [Not 24/7] +http://player-api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 +#EXTINF:-1 tvg-id="RONTV.de",RON TV (1080p) [Offline] +https://ron-i.akamaihd.net/hls/live/523496/ron/master.m3u8 +#EXTINF:-1 tvg-id="RTL.de",RTL [Offline] +https://cdn1.mobiletv.bg/T5/rtl/rtl_794613_850k.m3u8 +#EXTINF:-1 tvg-id="RTLWest.de",RTL West (540p) [Offline] +https://rtl_west-i.akamaihd.net/hls/live/656246/rtlwest/master.m3u8 +#EXTINF:-1 tvg-id="RWEErfurt.de",RWE Erfurt (1080p) +https://stream.keyweb.org:8085/hls/rwetv.m3u8 +#EXTINF:-1 tvg-id="",Südtirol TV (720p) +https://5ce9406b73c33.streamlock.net/SudTirolTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SaarlandFernsehen1.de",Saarland Fernsehen 1 (1080p) +https://saarland1.iptv-playoutcenter.de/saarland1/saarland1.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="SaarlandFernsehen2.de",Saarland Fernsehen 2 (720p) [Not 24/7] +https://saarland2.iptv-playoutcenter.de/saarland2/saarland2.stream_2/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraShortFilm.de",Santhora Short Film (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.de",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="Seenluft24.de",Seenluft24 (1080p) +https://5856e1a25f71a.streamlock.net/easycast7-live/mp4:livestreamhd20/playlist.m3u8 +#EXTINF:-1 tvg-id="SonnenklarTV.de",Sonnenklar.TV (1080p) [Offline] +http://euvia-live.hls.adaptive.level3.net/ses/euvia/index.m3u8 +#EXTINF:-1 tvg-id="SonusFMAlemania.de",Sonus FM Alemania (1080p) [Not 24/7] +http://www.sonus.fm:1935/public/stream_source/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.de",Sophia TV (720p) +https://www.onairport.live/sophiatv-it-live/livestream_low/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.de",Sophia TV (720p) +https://www.onairport.live/sophiatv/smil:sophia-tv-en.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SRFernsehen.de",SR Fernsehen (720p) +http://fs.live.sr.de/i/sr_universal02@107595/master.m3u8 +#EXTINF:-1 tvg-id="SRFernsehen.de",SR Fernsehen (720p) +https://srlive24-lh.akamaihd.net/i/sr_universal02@107595/master.m3u8 +#EXTINF:-1 tvg-id="Studio47.de",Studio 47 (480p) [Not 24/7] +https://5852afe96c9bb.streamlock.net/studio47-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SWR3VisualRadio.de",SWR 3 Visual Radio (720p) [Offline] +https://swrswr3vrhls-i.akamaihd.net/hls/live/780818/vrswr3/master.m3u8 +#EXTINF:-1 tvg-id="Sylt1.de",Sylt1 (404p) +https://5aec29c5dd23b.streamlock.net:8443/sylt1/sylt1_high1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Tagesschau24.de",Tagesschau24 (720p) +https://tagesschau-lh.akamaihd.net/i/tagesschau_1@119231/master.m3u8 +#EXTINF:-1 tvg-id="TeinsTV.de",Teins TV (1080p) [Not 24/7] +http://live1.markenfunk.com/t1/live/chunklist.m3u8 +#EXTINF:-1 tvg-id="teltOwkanal.de",teltOwkanal (1080p) +https://5856e1a25f71a.streamlock.net/easycast8-live/mp4:livestreamhd8/playlist.m3u8 +#EXTINF:-1 tvg-id="TesasTV.de",Tesas TV (720p) [Not 24/7] +https://jola.live:16200/tesastv.m3u8 +#EXTINF:-1 tvg-id="TideTV.de",Tide TV (1080p) [Not 24/7] +https://5889e7d0d6e28.streamlock.net/tide-live/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="tiviTURK.de",tiviTÜRK (720p) [Not 24/7] +https://stream.tiviturk.de/live/tiviturk.m3u8 +#EXTINF:-1 tvg-id="TV38SudostNiedersachen.de",TV38 Südost-Niedersachen (480p) [Not 24/7] +http://62.113.221.3/tv38-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBayernLive.de",TV Bayern Live (1080p) [Not 24/7] +https://s3.welocal.world/tvbayernlive/media/134371/videos/hls.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) +http://62.113.210.250/medienasa-live/tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVIngolstadt.de",TV Ingolstadt (1080p) [Offline] +https://stream01.stream.welocal.world/stream/tvi/ngrp:tvi.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMainfranken.de",TV Mainfranken (1080p) [Not 24/7] +https://tvtouringw.iptv-playoutcenter.de/tvtouringw/tvtouringw.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMainfranken.de",TV Mainfranken (1080p) [Offline] +https://stream01.stream.welocal.world/stream/tvm/ngrp:tvm.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMittelrhein.de",TV Mittelrhein (404p) [Offline] +https://sdn-global-live-http-cache.3qsdn.com/2979/amlst:5714-sbr/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOberfranken.de",TV Oberfranken (1080p) [Offline] +https://stream02.stream.welocal.world/stream/tvo/ngrp:tvo.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVA.de",TVA (1080p) [Not 24/7] +https://tvaktuellr.iptv-playoutcenter.de/tvaktuellr/tvaktuellr.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAOstbayern.de",TVA Ostbayern (1080p) [Offline] +https://stream02.stream.welocal.world/stream/tva/ngrp:tva.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVO (1080p) [Not 24/7] +https://tvoberfranken.iptv-playoutcenter.de/tvoberfranken/tvoberfranken.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Unserding.de",Unserding (544p) +https://srunserding-lh.akamaihd.net/i/visualradio_ud@197013/master.m3u8 +#EXTINF:-1 tvg-id="WDRFernsehen.de",WDR Fernsehen (720p) [Offline] +https://wdr_fs-lh.akamaihd.net/i/wdrfs_weltweit@112033/master.m3u8 +#EXTINF:-1 tvg-id="WDRKoeln.de",WDR Koeln (720p) [Timeout] +https://wdrfsww247.akamaized.net/hls/live/2009628/wdr_msl4_fs247ww/master.m3u8 +#EXTINF:-1 tvg-id="Welt.de",WELT [Geo-blocked] +https://live2weltcms-lh.akamaihd.net/i/Live2WeltCMS_1@444563/master.m3u8 +#EXTINF:-1 tvg-id="WesterwaldTV.de",Westerwald TV (404p) [Offline] +https://sdn-global-live-http-cache.3qsdn.com/2980/amlst:5715-sbr/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldofFreesports.de",World of Freesports (720p) +https://a.jsrdn.com/broadcast/ab14783a09/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ZDF.de",ZDF [Geo-blocked] +https://zdf-hls-15.akamaized.net/hls/live/2016498/de/high/master.m3u8 +#EXTINF:-1 tvg-id="",ZDFinfo [Geo-blocked] +https://zdf-hls-17.akamaized.net/hls/live/2016500/de/high/master.m3u8 +#EXTINF:-1 tvg-id="",ZDFneo [Geo-blocked] +https://zdf-hls-16.akamaized.net/hls/live/2016499/de/high/master.m3u8 +#EXTINF:-1 tvg-id="ZWEI2Music.de",ZWEI2 Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-2/master.m3u8 diff --git a/streams/de_samsung.m3u b/streams/de_samsung.m3u new file mode 100644 index 000000000..a9c966218 --- /dev/null +++ b/streams/de_samsung.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CNNInternationalGermany.us",CNN International Germany (720p) +https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DeluxeLoungeHD.de",Deluxe Lounge HD (720p) [Not 24/7] +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/manifest/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/91fcad1e-54b1-4702-9ec1-22a379525281/0.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] +https://dust-samsung-uk-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Deutsch (720p) +https://rakuten-euronews-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEurope.fr",Fashion TV (1080p) +https://fashiontv-fashiontv-4-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsung-de.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsung-de.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesGermany.es",Rakuten TV Action Movies Germany (720p) [Offline] +https://rakuten-actionmovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesGermany.es",Rakuten TV Comedy Movies Germany (720p) [Offline] +https://rakuten-comedymovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaGermany.es",Rakuten TV Drama Germany (720p) [Offline] +https://rakuten-tvshows-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyGermany.es",Rakuten TV Family Germany (720p) [Offline] +https://rakuten-family-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightGermany.es",Rakuten TV Spotlight Germany (720p) [Offline] +https://rakuten-spotlight-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) +https://sofy-ger-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.ca",Stingray Karaoke (1080p) +https://stingray-karaoke-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) +https://stingray-qelloconcerts-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperToonsTV.de",Super Toons TV (720p) [Offline] +https://kedoo-supertoonstv-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeDeutschland.us",Tastemade Deutschland (720p) +https://tastemade-de-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.ca",Teletubbies (720p) [Offline] +https://dhx-teletubbies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveGermany.us",The Pet Collective Germany (720p) [Offline] +https://the-pet-collective-international-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] +https://travelxp-travelxp-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xite.nl",Xite (720p) +https://xite-samsung-de.amagi.tv/playlist.m3u8 diff --git a/streams/dk.m3u b/streams/dk.m3u new file mode 100644 index 000000000..7ca91ffba --- /dev/null +++ b/streams/dk.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KanalHovedstaden.dk",Kanal Hovedstaden (720p) +https://59b954022ec35.streamlock.net/liveTV2/smil:liveTVstream2.transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KKRtv.dk",KKRtv (720p) +http://stream.kkr.dk/live/kkr/playlist.m3u8 +#EXTINF:-1 tvg-id="KKRtv.dk",KKRtv (720p) +http://stream.kkr.dk/live/ngrp:kkr_adaptive/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2Bornholm.dk",TV2/Bornholm (1080p) [Not 24/7] +https://live.tv2bornholm.dk/stream/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2Lorry.dk",TV2/Lorry (720p) +https://cdnapisec.kaltura.com/p/2045321/sp/204532100/playManifest/entryId/1_2kojfk4m/format/applehttp/protocol/https/uiConfId/32599481/a.m3u8 +#EXTINF:-1 tvg-id="TV2Ostjylland.dk",TV2/Østjylland (720p) +https://cdnapisec.kaltura.com/p/2102081/sp/2102081/playManifest/entryId/0_x4p3licd/flavorIds/0_pcvatr5k,0_aezqkdsi,0_dkeq429y,0_99pivdxs/deliveryProfileId/10552/protocol/https/format/applehttp/a.m3u8 +#EXTINF:-1 tvg-id="TV2Fyn.dk",TV2 Fyn (270p) [Not 24/7] +https://cdnapisec.kaltura.com/p/1966291/sp/1966291/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/flavorId/0_8g29e3jz/name/a.mp4/index.m3u8 diff --git a/streams/dk_samsung.m3u b/streams/dk_samsung.m3u new file mode 100644 index 000000000..8ae87810d --- /dev/null +++ b/streams/dk_samsung.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) +https://rakuten-africanews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) [Offline] +https://bloomberg-bloomberg-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) [Offline] +https://mmm-ducktv-4-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionDenmark.es",Rakuten Action (Denmark) (720p) [Offline] +https://rakuten-action-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyDenmark.es",Rakuten Comedy (Denmark) (720p) [Offline] +https://rakuten-comedy-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesDenmark.es",Rakuten Documentaries (Denmark) (720p) [Offline] +https://rakuten-documentaries-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaDenmark.es",Rakuten Drama (Denmark) (720p) [Offline] +https://rakuten-drama-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyDenmark.es",Rakuten Family (Denmark) (720p) [Offline] +https://rakuten-family-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightDenmark.es",Rakuten Spotlight (Denmark) (720p) [Offline] +https://rakuten-spotlight-10-dk.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/do.m3u b/streams/do.m3u new file mode 100644 index 000000000..25ba65235 --- /dev/null +++ b/streams/do.m3u @@ -0,0 +1,141 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",AkíTV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Akitv/Akitv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Ame47.do",Amé 47 (720p) [Offline] +https://ss6.domint.net:3028/ame_str/amecanal47/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimeZoneTV.do",Anime Zone TV (480p) [Not 24/7] +http://azxtv.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Boreal.do",Boreal (720p) [Offline] +https://5b38ce71f1f00.streamlock.net/8180/8180/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.do",Canal 12 (720p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/telecanal12/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal56.do",Canal 56 (720p) [Geo-blocked] +https://cloudflare.streamgato.us:3549/live/canal56live.m3u8 +#EXTINF:-1 tvg-id="CanalAme47.do",Canal Amé 47 (720p) [Offline] +http://ss6.domint.net:2028/ame_str/amecanal47/master.m3u8 +#EXTINF:-1 tvg-id="Carivision.do",Carivision (720p) [Not 24/7] +http://ss6.domint.net:2012/tes_str/teleelsalvador/playlist.m3u8 +#EXTINF:-1 tvg-id="ChinolaTV.do",Chinola TV (480p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/Chinolatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevisionCanal19.do",Cinevision Canal 19 (720p) +https://live.teledom.info:3713/live/cinevisionlive.m3u8 +#EXTINF:-1 tvg-id="ColorVisionCanal9.do",Color Vision Canal 9 [Timeout] +http://177.52.221.214:8000/play/a0c0/index.m3u8 +#EXTINF:-1 tvg-id="ComunionTV.do",Comunion TV (720p) [Not 24/7] +http://50.30.37.36:1935/live/smil:MyStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ComunionTV.do",Comunion TV (720p) [Not 24/7] +http://50.30.37.36:1935/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DANTV.do",DAN TV (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Punaltv/punaltvHD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Digital15.do",Digital 15 (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://livestream.com/accounts/27456795/events/8268514/player +#EXTINF:-1 tvg-id="DigitalVision.do",Digital Vision (720p) [Not 24/7] +https://ss3.domint.net:3120/dv6_str/digitalvision/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ecovisión (480p) [Not 24/7] +https://vdo1.streamgato.us:3014/live/ecovisionlive.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.do",Fuego TV (720p) [Not 24/7] +https://video.misistemareseller.com/Fuegotv/Fuegotv/playlist.m3u8 +#EXTINF:-1 tvg-id="GDMTV.do",GDMTV (720p) [Not 24/7] +https://ss2.domint.net:3200/gdm_str/gdmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="GHTelevisionCanal10.do",GH Television Canal 10 (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3352/live/ghtelevisionhdlive.m3u8 +#EXTINF:-1 tvg-id="HermanasMirabalTV.do",Hermanas Mirabal TV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Hmtv/hmtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="HilandoFino.do",Hilando Fino (1080p) [Not 24/7] +https://primary-out.iptv-global.net/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Hits360TV.do",Hits 360 TV (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/hits360tv/hits360HD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="HM.do",HM (720p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Hmtv/hmtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="LAMIATV.do",LA MIA TV (720p) [Not 24/7] +https://ss8.domint.net:3108/mia_str/lamiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="LocomotionTV.do",Locomotion TV (480p) [Not 24/7] +http://51.222.85.85:81/hls/loco/index.m3u8 +#EXTINF:-1 tvg-id="LocomotionTV.do",Locomotion TV (480p) [Not 24/7] +http://locomotiontv.com/envivo/loco_ch/stream.m3u8 +#EXTINF:-1 tvg-id="LVM.do",LVM (720p) +https://uni01rtmp.tulix.tv/playout2multi9/lavozdemaria.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MegavisionCanal43.do",Megavision Canal 43 (480p) [Not 24/7] +http://stream3.prostudionetwork.com:1943/megavision/MV/playlist.m3u8 +#EXTINF:-1 tvg-id="Microvision10.do",Microvision 10 (720p) [Not 24/7] +http://190.103.183.24:1935/live/MicroHD/playlist.m3u8 +#EXTINF:-1 tvg-id="MisionELTV.do",Mision ELTV (360p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8286/8286/playlist.m3u8 +#EXTINF:-1 tvg-id="ORBITTV.do",ORBIT TV (480p) [Geo-blocked] +https://ss3.domint.net:3134/otv_str/orbittv/playlist.m3u8 +#EXTINF:-1 tvg-id="PH.do",PH (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="PHTVCanal34.do",PHTV Canal 34 (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/chunks.m3u8 +#EXTINF:-1 tvg-id="PuntaCanaTV.do",Punta Cana TV (720p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/puntacanatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio105full.do",Radio105 full (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3901/live/radio105live.m3u8 +#EXTINF:-1 tvg-id="ReadyTVCanal6.do",Ready TV Canal 6 (720p) [Not 24/7] +http://190.103.183.24:1935/ReadyTV/ReadyHD/playlist.m3u8 +#EXTINF:-1 tvg-id="RNN.do",RNN (720p) [Not 24/7] +https://ss2.domint.net:3202/rnn_str/canal27/playlist.m3u8 +#EXTINF:-1 tvg-id="RomanaTVCanal42.do",Romana TV Canal 42 (410p) [Geo-blocked] +http://tv.romanatv42.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="SanIsidroTV.do",San Isidro TV (360p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/sanisidrotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SiTV.do",SiTV (720p) +http://190.122.104.221/Player/sitv.m3u8 +#EXTINF:-1 tvg-id="SuperCanal33.do",Super Canal 33 (480p) +http://190.122.96.186:8888/http/005 +#EXTINF:-1 tvg-id="",Super TV 55 (Santiago) (720p) [Not 24/7] +http://ss8.domint.net:2128/stv_str/tv55/playlist.m3u8 +#EXTINF:-1 tvg-id="",Super TV 55 (Santiago) (720p) [Not 24/7] +https://ss8.domint.net:3128/stv_str/tv55/master.m3u8 +#EXTINF:-1 tvg-id="TDNMedios.do",TDN Medios (480p) [Not 24/7] +http://108.175.14.125:1935/tdn/tdn/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleBendicion.do",TeleBendicion (720p) [Not 24/7] +http://ss8.domint.net:2124/tbt_str/telebendicion/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecanal28.do",Telecanal 28 (360p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Telecanal-28/telecanal.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCibao.do",TeleCibao (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Telecibao/Telecibao/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCibao.do",TeleCibao (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Telecibao/Telecibao/playlist.m3u8 +#EXTINF:-1 tvg-id="TelefuturoCanal23.do",Telefuturo Canal 23 (720p) [Not 24/7] +http://ss8.domint.net:2118/tf_str/futu/master.m3u8 +#EXTINF:-1 tvg-id="Teleimpacto.do",Teleimpacto (720p) [Not 24/7] +http://190.122.96.188:8888/http/013 +#EXTINF:-1 tvg-id="Telemicro.do",Telemicro (720p) [Not 24/7] +https://api.new.livestream.com/accounts/28126860/events/8825282/live.m3u8 +#EXTINF:-1 tvg-id="Telemilenio.do",Telemilenio (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Telemilenio/Telemilenio.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Telenord8.do",Telenord 8 (1080p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord8/telenord8/playlist.m3u8 +#EXTINF:-1 tvg-id="Telenord12.do",Telenord 12 (720p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord12/telenord12/playlist.m3u8 +#EXTINF:-1 tvg-id="TelenordCanal10.do",Telenord Canal 10 (1080p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord10/telenord10/playlist.m3u8 +#EXTINF:-1 tvg-id="Telesistema11.do",Telesistema 11 [Timeout] +http://177.52.221.214:8000/play/a0fk/index.m3u8 +#EXTINF:-1 tvg-id="TelesurCanal10.do",Telesur Canal (360p) [Not 24/7] +https://ss3.domint.net:3124/tls_str/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleunion.do",Teleunion (480p) [Not 24/7] +http://server3.prostudionetwork.com:1945/teleunion/TU/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleverCanal12.do",Telever Canal 12 [Offline] +http://tengomusica.ddns.net:1935/telever/telever.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Éxitos (720p) [Not 24/7] +https://vdo1.streamgato.us:3359/live/tvexitoslive.m3u8 +#EXTINF:-1 tvg-id="TVMontanaCanal10.do",TV Montaña Canal 10 (720p) [Not 24/7] +http://ss6.domint.net:2060/tvm_str/montanatv/master.m3u8 +#EXTINF:-1 tvg-id="TVPlata.do",TV Plata (1080p) [Not 24/7] +https://ss6.domint.net:3104/tvp_str/tvplata/playlist.m3u8 +#EXTINF:-1 tvg-id="TVS.do",TVS (540p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Tvstv/TvstvHD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Vallevision.do",Vallevision (720p) [Not 24/7] +http://190.103.183.24:1935/Vallevision/ValleHD/playlist.m3u8 +#EXTINF:-1 tvg-id="VallevisionCanal10.do",Vallevision Canal 10 (720p) [Not 24/7] +https://streaming.telecablecentral.com.do/Vallevision/ValleHD/playlist.m3u8 +#EXTINF:-1 tvg-id="VegaTeve.do",Vega Teve (720p) [Not 24/7] +https://ss6.domint.net:3012/tes_str/teleelsalvador/playlist.m3u8 +#EXTINF:-1 tvg-id="VivaCanal5.do",Viva Canal 5 (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/dominicanrepublic/viva-canal-5 +#EXTINF:-1 tvg-id="Zol106.do",Zol106 (720p) [Not 24/7] +https://ss3.domint.net:3108/zol_str/vzol/playlist.m3u8 +#EXTINF:-1 tvg-id="ZTV.do",ZTV (720p) [Not 24/7] +https://lb00zdigital.streamprolive.com/mnt/hls/live.m3u8 diff --git a/streams/dz.m3u b/streams/dz.m3u new file mode 100644 index 000000000..125e36117 --- /dev/null +++ b/streams/dz.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlAnisTV.dz",Al Anis TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/El_Fhama_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV3.dz",Algérie TV3 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/A3_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV4.dz",Algérie TV4 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_4/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV5.dz",Algérie TV5 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_5/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV6.dz",Algérie TV6 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_6_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="BahiaTV.dz",Bahia TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Bahia_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlgerie.dz",Canal Algérie [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/CANAL_ALGERIE/playlist.m3u8 +#EXTINF:-1 tvg-id="CNA.dz",CNA (Chaîne Nord Africaine) (360p) [Not 24/7] +https://live.creacast.com/cna/smil:cna.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukNews.dz",Echorouk News (240p) [Not 24/7] +http://echorouk-live-tv.dzsecurity.net:8081/echo/EchoroukNews/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukNews.dz",Echorouk News (480p) [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/ECHOROUK_NEWS/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukTV.dz",Echorouk TV (720p) [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Echorouk_TV_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="ElBilad.dz",El Bilad [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_BILAD/playlist.m3u8 +#EXTINF:-1 tvg-id="ElDjazairN1.dz",El Djazair N1 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/El_Djazair_N1/playlist.m3u8 +#EXTINF:-1 tvg-id="ElDjazairiaOne.dz",El Djazairia One [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_DJAZAIRIA_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="ElFadjrTV.dz",El Fadjr TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_FADJR_TV_DZ/playlist.m3u8 +#EXTINF:-1 tvg-id="ElHayatTV.dz",El Hayat TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_HAYAT_TV_ALGERIE/playlist.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV (240p) [Not 24/7] +http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV/playlist.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV (360p) [Not 24/7] +http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV_SD/chunks.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/ENNAHAR_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="ENTV.dz",ENTV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/PROGRAMME_NATIONAL/playlist.m3u8 +#EXTINF:-1 tvg-id="LinaTV.dz",Lina TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Lina_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="SamiraTV.dz",Samira TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/SamiraTV/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Elmaarifa.dz",TV7 Elmaarifa [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV7_ELMAARIFA/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8Edhakira.dz",TV8 Edhakira [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV8_EDHAKIRA/playlist.m3u8 diff --git a/streams/ec.m3u b/streams/ec.m3u new file mode 100644 index 000000000..f7eb71280 --- /dev/null +++ b/streams/ec.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanelaTV.ec",CanelaTV (720p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/canelatv/canelatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Ecotel.ec",Ecotel (720p) [Not 24/7] +https://ecotel.streamseguro.com/hls/ecoteltv.m3u8 +#EXTINF:-1 tvg-id="EcuadorTV.ec",Ecuador TV (480p) +http://45.179.140.242:8000/play/a0jp +#EXTINF:-1 tvg-id="EducaTV.ec",EducaTV (1080p) [Not 24/7] +https://cloud7.streamingcnt.net/cnt/educa/playlist.m3u8 +#EXTINF:-1 tvg-id="ElSolRadioTelevision.ec",El Sol Radio y Television (404p) [Not 24/7] +http://streaming5.globalhostla.com/rtplive/elsolrad/playlist.m3u8 +#EXTINF:-1 tvg-id="",Elite Radio Televisión (480p) [Not 24/7] +https://tv.portalexpress.es:3785/live/trincheratvlive.m3u8 +#EXTINF:-1 tvg-id="HechosEcuador.ec",Hechos Ecuador (480p) [Not 24/7] +http://37.187.7.106/hechostv/live.m3u8 +#EXTINF:-1 tvg-id="LoretoTV.ec",Loreto TV (720p) [Not 24/7] +https://srv1.zcast.com.br/diego3282/diego3282/playlist.m3u8 +#EXTINF:-1 tvg-id="MulticanalCatamayo.ec",Multicanal Catamayo (720p) [Not 24/7] +https://multicanal.streamseguro.com/hls/streaming.m3u8 +#EXTINF:-1 tvg-id="",Paraíso Digital (360p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8106/index.m3u8 +#EXTINF:-1 tvg-id="",Pasión TV (360p) [Not 24/7] +https://tv.portalexpress.es:3753/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="",Princesa Estéreo TV (884p) [Not 24/7] +https://tv.portalexpress.es:3084/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="PuruwaTV.ec",Puruwa TV (360p) +https://srv.panelcast.net/puruwalive/puruwalive/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioImpacto2.ec",Radio Impacto 2 (1080p) [Not 24/7] +https://sv72.ecuaradiotv.net/impacto2tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTS.ec",RTS (RadioTeleSistema) (480p) +http://45.179.140.242:8000/play/a0kw +#EXTINF:-1 tvg-id="RTU.ec",RTU (630p) [Not 24/7] +https://streamingwowza.com:1936/rtutv/rtutv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Teleamazonas (720p) [Not 24/7] +https://api.new.livestream.com/accounts/1359588/events/4428723/live.m3u8 +#EXTINF:-1 tvg-id="Telerama.ec",Telerama (240p) [Not 24/7] +https://envivo.telerama.ec/stream.m3u8 +#EXTINF:-1 tvg-id="TVUniversal.ec",TV Universal (Ecuador) (720p) [Not 24/7] +https://59c3c7bda15f4.streamlock.net:444/universal/smil:universal.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UCSG.ec",UCSG (1080p) [Not 24/7] +http://ecuastreamhd.com:1935/UCSGHQ/UCSGHQ/chunklist.m3u +#EXTINF:-1 tvg-id="",Unisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://player.vimeo.com/video/645807901 +#EXTINF:-1 tvg-id="VisionRadioTelevision.ec",Visión Radio Televisión (808p) +https://stmv.panel.mivideo.pro/vision/vision/playlist.m3u8 +#EXTINF:-1 tvg-id="WuanPlus.ec",Wuan+ (720p) +https://streamingwowza.com:1936/wuanplus/wuanplus/playlist.m3u8 +#EXTINF:-1 tvg-id="ZaracayTV.ec",Zaracay TV (720p) [Not 24/7] +https://streamingwowza.com:1936/zaracaytv/smil:zaracaytv.smil/playlist.m3u8 diff --git a/streams/ee.m3u b/streams/ee.m3u new file mode 100644 index 000000000..01703d834 --- /dev/null +++ b/streams/ee.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ETV2.ee",ETV2 (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etv2.m3u8 +#EXTINF:-1 tvg-id="ETV.ee",ETV (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etv.m3u8 +#EXTINF:-1 tvg-id="ETV.ee",ETV (720p) +https://sb.err.ee/live/etv.m3u8 +#EXTINF:-1 tvg-id="ETVPlus.ee",ETV+ (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etvpluss.m3u8 +#EXTINF:-1 tvg-id="LifeTV.ee",Life TV (432p) [Not 24/7] +https://lifetv.bitflip.ee/live/stream1.m3u8 +#EXTINF:-1 tvg-id="Riigikogu.ee",Riigikogu (720p) +https://h6le2.babahhcdn.com/bb1027/smil:riigikogu_ch1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TBNBaltia.ee",TBN Baltia (1080p) +http://dc.tbnbaltia.eu:8088/dvr/rewind-21600.m3u8 diff --git a/streams/eg.m3u b/streams/eg.m3u new file mode 100644 index 000000000..34aa1bcae --- /dev/null +++ b/streams/eg.m3u @@ -0,0 +1,79 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AghapyTV.eg",Aghapy TV (1080p) +https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlGhad.eg",Al Ghad (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alghadtv/live +#EXTINF:-1 tvg-id="AlHayatTV.eg",Al Hayat TV (720p) +http://media.islamexplained.com:1935/live/_definst_mp4:ahme.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Alrafidain.eg",Alrafidain (1024p) [Not 24/7] +http://cdg3.edge.tmed.pw/arrafidaintv/live_1024p/chunks.m3u8 +#EXTINF:-1 tvg-id="AppleAflam.eg",Apple Aflam (576p) [Timeout] +http://213.162.202.5:4000/play/a09p/index.m3u8 +#EXTINF:-1 tvg-id="AppleAlwan.eg",Apple Alwan (576p) [Timeout] +http://213.162.202.5:4000/play/a09d/index.m3u8 +#EXTINF:-1 tvg-id="AppleCinema.eg",Apple Cinema (576p) [Timeout] +http://213.162.202.5:4000/play/a09b/index.m3u8 +#EXTINF:-1 tvg-id="AppleComedy.eg",Apple Comedy (576p) [Timeout] +http://213.162.202.5:4000/play/a09a/index.m3u8 +#EXTINF:-1 tvg-id="AppleHekayat.eg",Apple Hekayat (576p) [Timeout] +http://213.162.202.5:4000/play/a0a1/index.m3u8 +#EXTINF:-1 tvg-id="AppleMoslsalat.eg",Apple Moslsalat (576p) [Timeout] +http://213.162.202.5:4000/play/a09l/index.m3u8 +#EXTINF:-1 tvg-id="AppleToday.eg",Apple Today (576p) [Timeout] +http://213.162.202.5:4000/play/a09k/index.m3u8 +#EXTINF:-1 tvg-id="ATVSat.eg",ATVSat (1080p) [Not 24/7] +https://stream.atvsat.com/atvsatlive/smil:atvsatlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CBC.eg",CBC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/cbcstream/live +#EXTINF:-1 tvg-id="CBCDrama.eg",CBC Drama (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCDramaStream/live +#EXTINF:-1 tvg-id="CBCSofra.eg",CBC Sofra [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCSofraStream/live +#EXTINF:-1 tvg-id="CopticTV.eg",Coptic TV (720p) +https://58cc65c534c67.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CopticTV.eg",Coptic TV (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElsharqTV.eg",Elsharq TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/elsharq_live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="",eXtra News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC65F33K2cXk9hGDbOQYhTOw/live +#EXTINF:-1 tvg-id="",Huda (720p) [Timeout] +https://cdn.videoevent.live:19360/elfaro2/elfaro2.m3u8 +#EXTINF:-1 tvg-id="KoogiTV.eg",Koogi TV (720p) +https://5d658d7e9f562.streamlock.net/koogi.tv/koogi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MekameleenTV.eg",Mekameleen TV (1080p) +https://mn-nl.mncdn.com/mekameleen/smil:mekameleentv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MESat.eg",MESat (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCg5uHOxrP5GkMWldOavPKGQ/live +#EXTINF:-1 tvg-id="NileTVCinema.eg",Nile TV Cinema (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCinema/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVComedy.eg",Nile TV Comedy (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileComedy/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVCulture.eg",Nile TV Culture (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCulture/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVFamily.eg",Nile TV Family (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileFamily/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVLearning.eg",Nile TV Learning (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/Learning1/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVLife.eg",Nile TV Life (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileLife/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVSport.eg",Nile TV Sport (576p) [Not 24/7] +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileSport/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NobleTV.eg",Noble TV (360p) +https://5d39f1ab8ba65.streamlock.net:1935/arabic-test/arabic-test/playlist.m3u8 +#EXTINF:-1 tvg-id="NogoumFMTV.eg",Nogoum FM TV (506p) [Not 24/7] +https://stream-speed.extremesolution.mobi/nogoumfm/nogoumfmlive/playlist.m3u8 +#EXTINF:-1 tvg-id="OmgChannelTV.eg",Omg Channel TV (720p) [Not 24/7] +http://media6.smc-host.com:1935/omgchannel.net/omgtv/playlist.m3u8 +#EXTINF:-1 tvg-id="OmgSeriesTV.eg",Omg Series TV (720p) [Not 24/7] +http://media6.smc-host.com:1935/omgchannel.net/omgseries/playlist.m3u8 +#EXTINF:-1 tvg-id="QuranTV.eg",Quran TV (576p) [Timeout] +http://213.162.202.5:4000/play/a09u/index.m3u8 +#EXTINF:-1 tvg-id="SadaElbalad.eg",Sada Elbalad (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/elbaladtv +#EXTINF:-1 tvg-id="TenTV.eg",Ten TV (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_ten_tv/index.m3u8 +#EXTINF:-1 tvg-id="TheKingdomSat.eg",The Kingdom Sat (576p) +https://bcovlive-a.akamaihd.net/87f7c114719b4646b7c4263c26515cf3/eu-central-1/6008340466001/profile_0/chunklist.m3u8 +#EXTINF:-1 tvg-id="WatanTV.eg",Watan TV (1080p) +https://cdg8.edge.technocdn.com/watantv/live/playlist.m3u8 diff --git a/streams/es.m3u b/streams/es.m3u new file mode 100644 index 000000000..60a814d8a --- /dev/null +++ b/streams/es.m3u @@ -0,0 +1,521 @@ +#EXTM3U +#EXTINF:-1 tvg-id="324.es",3/24 (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:324_web/master.m3u8 +#EXTINF:-1 tvg-id="7LaRioja.es",7 La Rioja (1080p) [Not 24/7] +https://pc-la7delarioja-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="7Noticias.es",7 Noticias (1080p) +https://amg01573-7nn-7nnono-ono-pcdj3.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="7TelevisionRegiondeMurcia.es",7 Televisión Región de Murcia (360p) [Not 24/7] +https://rtvmurcia_01-lh.akamaihd.net/i/rtvmurcia_1_0@507973/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndalucia.es",7 TV Andalucía (720p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835804/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaBahia.es",7 TV Andalucía (Bahía) (576p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835790/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaCordoba.es",7 TV Andalucía (Córdoba) (720p) [Not 24/7] +https://dcunilive265-lh.akamaihd.net/i/dclive_1@409360/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaCostaNoroeste.es",7 TV Andalucía (Costa Noroeste) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835802/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaJaen.es",7 TV Andalucía (Jaén) (404p) [Offline] +https://dcunilive266-lh.akamaihd.net/i/dclive_1@426886/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaJerez.es",7 TV Andalucía (Jerez) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835794/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaMalaga.es",7 TV Andalucía (Málaga) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835798/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaSevilla.es",7 TV Andalucía (Sevilla) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835800/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaSierra.es",7 TV Andalucía (Sierra) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835792/master.m3u8 +#EXTINF:-1 tvg-id="8TVCadiz.es",8 TV Cádiz (360p) [Not 24/7] +https://5940924978228.streamlock.net/8289/smil:8289.smil/master.m3u8 +#EXTINF:-1 tvg-id="9laLomaTV.es",9 la Loma TV [Geo-blocked] +https://9laloma.tv/live.m3u8 +#EXTINF:-1 tvg-id="11TV.es",11 TV (576p) [Not 24/7] +http://51.210.199.43/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586402/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586403/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586404/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586405/master.m3u8 +#EXTINF:-1 tvg-id="25TV.es",25 TV (480p) [Not 24/7] +https://cdnlive.shooowit.net/25televisiolive/smil:channel1.smil/master.m3u8 +#EXTINF:-1 tvg-id="28kanala.es",28 kanala (720p) [Geo-blocked] +https://5940924978228.streamlock.net/8157/8157/master.m3u8 +#EXTINF:-1 tvg-id="101TeleAntequera.es",101 Tele Antequera (1080p) +https://limited38.todostreaming.es/live/101tv-AntequeraHD.m3u8 +#EXTINF:-1 tvg-id="101TVMalaga.es",101TV Malaga (1080p) [Not 24/7] +https://limited38.todostreaming.es/live/101tv-web101tv.m3u8 +#EXTINF:-1 tvg-id="324.es",324 (576p) +https://directes-tv-int.ccma.cat/int/ngrp:324_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlsdvrlive_1@39732/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125698/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125699/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125702/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125703/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@143656/master.m3u8 +#EXTINF:-1 tvg-id="APunt.es",À Punt (720p) +https://bcovlive-a.akamaihd.net/469e448f034b4d46afa4bcac53297d60/eu-central-1/6057955885001/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="APunt.es",À Punt (720p) [Geo-blocked] +https://bcovlive-a.akamaihd.net/1e7e91116b104391a4f22e13a694d94f/eu-central-1/6057955885001/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="ActivaTV.es",Activa TV (720p) [Not 24/7] +https://streamtv.mediasector.es/hls/activatv/.m3u8 +#EXTINF:-1 tvg-id="AlacantiTV.es",Alacantí TV (576p) [Not 24/7] +https://streaming01.gestec-video.com/hls/artequatreAlacanti.m3u8 +#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) +http://217.182.77.27/live/alcarriatv-livestream.m3u8 +#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) [Not 24/7] +http://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AragonRadioZaragoza.es",Aragón Radio (Zaragoza) [Not 24/7] +https://cartv.streaming.aranova.es/hls/live/aragonradio_aragonradio1.m3u8 +#EXTINF:-1 tvg-id="AragonTV.es",Aragón TV (480p) +https://cartv.streaming.aranova.es/hls/live/aragontv_canal1.m3u8 +#EXTINF:-1 tvg-id="BailenTV.es",Bailén TV (720p) [Not 24/7] +http://cpd.bailen.tv:8080/Playlist_CANAL_24H/playlist.m3u8 +#EXTINF:-1 tvg-id="BarcaTV.es",Barça TV [Timeout] +http://5.255.90.184:2002/play/a01z +#EXTINF:-1 tvg-id="BARVATV.es",BARVA.TV (360p) [Timeout] +https://cp.sradiotv.com:1936/8076/8076/playlist.m3u8 +#EXTINF:-1 tvg-id="beteve.es",betevé (1080p) +https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 +#EXTINF:-1 tvg-id="BonDiaTV.es",Bon Dia TV (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:bnd_web/playlist.m3u8 +#EXTINF:-1 tvg-id="CadenaElite.es",Cadena Elite (720p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8004/index.m3u8 +#EXTINF:-1 tvg-id="CampinaSurTV.es",Campiña Sur TV [Not 24/7] +https://cdn01.yowi.tv/4131RI73I9/master.m3u8 +#EXTINF:-1 tvg-id="Canal4ManchaCentro.es",Canal 4 Mancha Centro (720p) [Not 24/7] +https://5924d3ad0efcf.streamlock.net/canal4/canal4live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Tenerife.es",Canal 4 Tenerife (576p) [Not 24/7] +https://5940924978228.streamlock.net/Directo3/Directo3/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10Emporda.es",Canal 10 Empordà (360p) [Not 24/7] +http://ventdelnord.tv:8080/escala/directe.m3u8 +#EXTINF:-1 tvg-id="",Canal 24 horas (720p) +https://rtvelivestreamv3.akamaized.net/24h_main_dvr.m3u8 +#EXTINF:-1 tvg-id="",Canal 24 horas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7QZIf0dta-XPXsp9Hv4dTw/live +#EXTINF:-1 tvg-id="",Canal 24 horas (1080p) [Timeout] +https://rtvelivestreamv3.akamaized.net/24h_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Canal25TV.es",Canal 25 TV (Barbastro) (720p) [Not 24/7] +https://common01.todostreaming.es/live/tvbarbastro-livestream.m3u8 +#EXTINF:-1 tvg-id="Canal33Madrid.es",Canal 33 Madrid (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/canal33tvmadridgmailcom/livestream/master.m3u8 +#EXTINF:-1 tvg-id="CANAL45TV.es",CANAL 45 TV (360p) [Not 24/7] +https://cdn01.yowi.tv/503L6OKTE2/master.m3u8 +#EXTINF:-1 tvg-id="Canal56.es",Canal 56 (576p) [Not 24/7] +https://videos.canal56.com/directe/stream/index.m3u8 +#EXTINF:-1 tvg-id="Canal2000LaSolana.es",Canal 2000 La Solana (720p) +http://canal2000.berkano-systems.net/streaming/streams/canal2000.m3u8 +#EXTINF:-1 tvg-id="CanalDiocesano.es",Canal Diocesano (576p) [Not 24/7] +https://cdn01.yowi.tv/DDDDDDDDDD/master.m3u8 +#EXTINF:-1 tvg-id="CanalDonana.es",Canal Doñana (720p) [Not 24/7] +https://secure5.todostreaming.es/live/division-alm.m3u8 +#EXTINF:-1 tvg-id="CanalExtremadura.es",Canal Extremadura (576p) [Not 24/7] +https://cdnlive.shooowit.net/canalextremaduralive/smil:channel1DVR.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalMalagaRTV.es",Canal Málaga RTV (720p) [Not 24/7] +https://canalmalaga-tv-live.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.es",Canal Parlamento (360p) +http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 +#EXTINF:-1 tvg-id="CanalSanRoque.es" status="online",Canal San Roque (720p) [Not 24/7] +https://elastic10.todostreaming.es/live/sanroque-livestream.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (576p) +http://217.125.136.93:8080/canalsierradecadiz576.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (720p) +http://217.125.136.93:8080/canalsierradecadiz720.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (1080p) +http://217.125.136.93:8080/canalsierradecadiz1080.m3u8 +#EXTINF:-1 tvg-id="CanalSuper3.es",Canal Super 3 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (720p) +https://cdnlive.codev8.net/rtvalive/smil:channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (720p) +https://cdnlive.shooowit.net/rtvalive/smil:channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqwjtgaJflHga2aPWphG5PQ/live +#EXTINF:-1 tvg-id="CanalTaronjaOsonaiMoianes.es",Canal Taronja Osona i Moianés (240p) [Not 24/7] +https://taronjavic.streaming-pro.com/hls/vic.m3u8 +#EXTINF:-1 tvg-id="CCMAExclusiu1.es",CCMA Exclusiu 1 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:oca1_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="CCMAExclusiu2.es",CCMA Exclusiu 2 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:oca2_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="Clan.es",Clan TVE (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/clan_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Clan.es",Clan TVE (1080p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/5466990.m3u8 +#EXTINF:-1 tvg-id="CMMTV.es",CMM TV (360p) [Not 24/7] +http://cdnapi.kaltura.com/p/2288691/sp/39582391/playManifest/entryId/0_xs45iy5i/format/applehttp/.m3u8 +#EXTINF:-1 tvg-id="Condavision.es",Condavisión (720p) [Not 24/7] +http://145.239.141.154:1935/live/uSCQc5ky/playlist.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados1.es",Congreso de los Diputados 1 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso1_1@71529/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados2.es",Congreso de los Diputados 2 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso2_1@72033/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados3.es",Congreso de los Diputados 3 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso3_1@72034/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados4.es",Congreso de los Diputados 4 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso4_1@53937/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados5.es",Congreso de los Diputados 5 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso5_1@51923/master.m3u8 +#EXTINF:-1 tvg-id="CosmoTV.es",Cosmo TV (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/str15live/str15live/playlist.m3u8 +#EXTINF:-1 tvg-id="CosmoTV.es",Cosmo TV (720p) [Timeout] +http://91.126.141.201:1935/live/cosmoHD/playlist.m3u8 +#EXTINF:-1 tvg-id="CostaNoroesteTV.es",Costa Noroeste TV (720p) [Not 24/7] +https://limited31.todostreaming.es/live/noroestetv-livestream.m3u8 +#EXTINF:-1 tvg-id="Cuatro4TVVallUxa.es",Cuatro 4 TV Vall Uxa (1080p) [Not 24/7] +https://limited09.todostreaming.es/live/tarson-livestream.m3u8 +#EXTINF:-1 tvg-id="DejatedeHistoriasTV.es",Déjate de Historias TV (1080p) [Offline] +https://cdn01.yowi.tv/GGGGGGGGGG/master.m3u8 +#EXTINF:-1 tvg-id="DiezTV.es",Diez TV (1080p) +https://streaming.cloud.innovasur.es/mmj/index.m3u8 +#EXTINF:-1 tvg-id="DistritoTV.es",Distrito TV (1080p) [Not 24/7] +https://cdn01.yowi.tv/KQRSDA7GDB/master.m3u8 +#EXTINF:-1 tvg-id="DurangaldekoTV.es",Durangaldeko TV (404p) [Not 24/7] +https://cdn01.yowi.tv/AAAAAAAAAA/master.m3u8 +#EXTINF:-1 tvg-id="EiTB2.es",EiTB 2 (720p) +https://etbvnogeo-lh.akamaihd.net/i/ETBSTR2_1@595582/master.m3u8 +#EXTINF:-1 tvg-id="EITB.es",EITB (480p) +https://etbvnogeo-lh.akamaihd.net/i/ETBEITBEUS_1@300391/master.m3u8 +#EXTINF:-1 tvg-id="El33.es",El 33 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="ElFuturoentumano.es",El Futuro en tu mano (720p) +https://limited24.todostreaming.es/live/renjillo-livestream.m3u8 +#EXTINF:-1 tvg-id="ElFuturoentumano.es",El Futuro en tu mano (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZSw3jfFZo_8I9BHSMlT2Fg/live +#EXTINF:-1 tvg-id="ElToroTV.es",El Toro TV (720p) [Not 24/7] +https://live1-eltorotv.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Elche7TV.es",Elche 7 TV (1080p) [Not 24/7] +https://streaming.elche7tv.es/hls/canal2.m3u8 +#EXTINF:-1 tvg-id="ESNETV.es",ESNE TV (1080p) +https://zypelive-lh.akamaihd.net/i/default_1@710948/master.m3u8 +#EXTINF:-1 tvg-id="Esport3.es",Esport3 (576p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="Esport3.es",Esport3 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist.m3u8 +#EXTINF:-1 tvg-id="EsteponaTelevision.es",Estepona Televisión (720p) [Offline] +https://5b38ce71f1f00.streamlock.net/8122/8122/playlist.m3u8 +#EXTINF:-1 tvg-id="ETB1.es",ETB 1 (720p) +https://etbvnogeo-lh.akamaihd.net/i/ETBSTR1_1@595581/master.m3u8 +#EXTINF:-1 tvg-id="ETBEventos1.es",ETB Eventos 1 (720p) +https://etbvnogeo-lh.akamaihd.net/i/OCA1HD_1@748519/master.m3u8 +#EXTINF:-1 tvg-id="EuropaPressTV.es",EuropaPress TV [Offline] +https://cdnlive.shooowit.net/europapresslive/ep.smil/master.m3u8 +#EXTINF:-1 tvg-id="FactoriadeFiccion.es",Factoría de Ficción (720p) [Timeout] +http://91.126.141.201:1935/live/smil:fdf.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FibracatTV.es",Fibracat TV (1080p) [Not 24/7] +https://cdn02.fibracat.cat/fibracattv/index.m3u8 +#EXTINF:-1 tvg-id="Fibwi.es",Fibwi (1080p) [Geo-blocked] +http://109.232.71.249/fibwiLIVE_movil/index.m3u8 +#EXTINF:-1 tvg-id="FionTV.es",Fion TV (720p) [Timeout] +http://stream.fion.es:1936/live/smil:fion.smil/master.m3u8 +#EXTINF:-1 tvg-id="GCMTV.es",GCM TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/tbmadrid/tbmadrid.m3u8 +#EXTINF:-1 tvg-id="GoienaEus.es",Goiena Eus (720p) [Not 24/7] +https://zuzenean.goienamedia.eus:8443/goiena-telebista.m3u8 +#EXTINF:-1 tvg-id="",GOL (720p) [Offline] +https://api.goltelevision.com/api/v1/stream/live/stream.m3u8 +#EXTINF:-1 tvg-id="GuadaTV.es",Guada TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/guadatv/guadatv.m3u8 +#EXTINF:-1 tvg-id="HamaikaTelebista.es",Hamaika Telebista (1080p) [Not 24/7] +https://wowzaprod130-i.akamaihd.net/hls/live/570468/275f3ea5/playlist.m3u8 +#EXTINF:-1 tvg-id="HermesTV.es",Hermes TV (720p) [Offline] +https://cdn01.yowi.tv/1H23S04G4M/master.m3u8 +#EXTINF:-1 tvg-id="HQMArabic.es",HQM Arabic (1080p) [Timeout] +https://livelist01.yowi.tv/lista/39596c72840d27b213caf4e58c39599a6f2ed203/master.m3u8 +#EXTINF:-1 tvg-id="HQMBaladas.es",HQM Baladas (1080p) [Timeout] +https://livelist01.yowi.tv/lista/5d7d2c21e0ec7a8a99fd1fdbc52cbdc0782f77fc/master.m3u8 +#EXTINF:-1 tvg-id="HQMBlues.es",HQM Blues (1080p) [Timeout] +https://livelist01.yowi.tv/lista/81c601f370e44dc566113fd752204be5f5f53b61/master.m3u8 +#EXTINF:-1 tvg-id="HQMChillOut.es",HQM Chill Out (1080p) [Timeout] +https://livelist01.yowi.tv/lista/183a351ddb0e57af6d735256226e6033c32219ab/master.m3u8 +#EXTINF:-1 tvg-id="HQMClassic.es",HQM Classic (1080p) [Timeout] +https://livelist01.yowi.tv/lista/f04129475945936b248aa723de56519ea2ff10fc/master.m3u8 +#EXTINF:-1 tvg-id="HQMDance.es",HQM Dance (1080p) [Timeout] +https://livelist01.yowi.tv/lista/57cf2f51b07ff21988a7a6f0270a66d41086d4a4/master.m3u8 +#EXTINF:-1 tvg-id="HQMFolk.es",HQM Folk (1080p) [Timeout] +https://livelist01.yowi.tv/lista/9f5310c179e8e840188d183be235f755b18cf703/master.m3u8 +#EXTINF:-1 tvg-id="HQMGym.es",HQM Gym (1080p) [Timeout] +https://livelist01.yowi.tv/lista/abb87f329d0ed03072b1930e9636a53e8076c8d5/master.m3u8 +#EXTINF:-1 tvg-id="HQMHipHop.es",HQM Hip Hop (1080p) [Timeout] +https://livelist01.yowi.tv/lista/8327abc87895df4c76db1155435fdca6a3607bbd/master.m3u8 +#EXTINF:-1 tvg-id="HQMHits.es",HQM Hits (1080p) [Timeout] +https://livelist01.yowi.tv/lista/5e2db2017a8fd03f73b40ede363d1a586db4e9a6/master.m3u8 +#EXTINF:-1 tvg-id="HQMJazz.es",HQM Jazz (1080p) [Timeout] +https://livelist01.yowi.tv/lista/f204aa5b3f0691e69851b54b7746ef09ede26f6a/master.m3u8 +#EXTINF:-1 tvg-id="HQMKids.es",HQM Kids (1080p) [Timeout] +https://livelist01.yowi.tv/lista/e4bc12dafe33c3ceb3e382e3acc0ec2c012cf7fd/master.m3u8 +#EXTINF:-1 tvg-id="HQMLatin.es",HQM Latin (1080p) [Timeout] +https://livelist01.yowi.tv/lista/9a4da7871ec57b4b63ed49597a13d09869172be0/master.m3u8 +#EXTINF:-1 tvg-id="HQMPop.es",HQM Pop (1080p) [Timeout] +https://livelist01.yowi.tv/lista/eb2fa68a058a701fa5bd2c80f6c8a6075896f71d/master.m3u8 +#EXTINF:-1 tvg-id="HQMRelax.es",HQM Relax (1080p) [Timeout] +https://livelist01.yowi.tv/lista/dc1b71c6fda2e687050facaa7242062cbf5a7f2a/master.m3u8 +#EXTINF:-1 tvg-id="HQMRemember.es",HQM Remember (1080p) [Timeout] +https://livelist01.yowi.tv/lista/57c98e2e295a0b69b52dc5f84edc4b1b68783ba2/master.m3u8 +#EXTINF:-1 tvg-id="HQMRock.es",HQM Rock (1080p) [Timeout] +https://livelist01.yowi.tv/lista/0d6c7ccfac89946bfd41ae34c527e8d94734065c/master.m3u8 +#EXTINF:-1 tvg-id="HQMSpanish.es",HQM Spanish (1080p) [Timeout] +https://livelist01.yowi.tv/lista/8635ae40f8d1a32eccd63d1f58b55662c9c98f9f/master.m3u8 +#EXTINF:-1 tvg-id="HuescaTV.es",Huesca TV (240p) [Not 24/7] +https://streaming2.radiohuesca.com/hls-live/livepkgr/_definst_/huescatv/huescatv.m3u8 +#EXTINF:-1 tvg-id="IB3Global.es",IB3 Global (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCff_CBVJDTHP4wOHPjP5BMg/live +#EXTINF:-1 tvg-id="IbizaGlobalTV.es",Ibiza Global TV (720p) [Not 24/7] +https://ibgrtv.streaming-pro.com/hls/ibgrlive.m3u8 +#EXTINF:-1 tvg-id="ImasTV.es",Imás TV (1080p) [Not 24/7] +https://secure3.todostreaming.es/live/imastv-livestream.m3u8 +#EXTINF:-1 tvg-id="InteralmeriaTV.es",Interalmeria TV (1080p) +https://interalmeria.tv/directo/live.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (288p) [Not 24/7] +http://78.41.83.88:8880/hls/tvixa.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (288p) [Not 24/7] +https://str.intercomarcal.com/hls/tvixa.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (576p) [Not 24/7] +https://str.intercomarcal.com/hls/tvisd.m3u8 +#EXTINF:-1 tvg-id="Islatel.es",Islatel (404p) [Not 24/7] +https://zone.controlstreams.com:5443/LiveApp/streams/islatel.m3u8 +#EXTINF:-1 tvg-id="JuntaCastillayLeon.es",Junta Castilla y León (1080p) [Not 24/7] +https://16escalones-live2.flumotion.com/chunks.m3u8 +#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] +https://hlsliveamdgl7-lh.akamaihd.net/i/hlsdvrlive_1@583042/master.m3u8 +#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/la1_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/1688877.m3u8 +#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (576p) [Geo-blocked] +https://hlsliveamdgl7-lh.akamaihd.net/i/hlslive_1@134665/master.m3u8 +#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (576p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/5190066.m3u8 +#EXTINF:-1 tvg-id="La1Catalunya.es",La 1 Catalunya (576p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/cat/la1_cat_main_dvr.m3u8 +#EXTINF:-1 tvg-id="La1Catalunya.es",La 1 Catalunya (576p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/3293681.m3u8 +#EXTINF:-1 tvg-id="La2.es",La 2 (720p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlsdvrlive_1@60531/master.m3u8 +#EXTINF:-1 tvg-id="La2.es",La 2 (1080p) +https://ztnr.rtve.es/ztnr/1688885.m3u8 +#EXTINF:-1 tvg-id="La2.es",La 2 (1080p) [Timeout] +https://rtvelivestreamv3.akamaized.net/rtvesec/la2_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="LA7.es",LA7 (720p) +https://cdnlive.shooowit.net/la7live/smil:channel1.smil/master.m3u8 +#EXTINF:-1 tvg-id="La8Avila.es",La 8 Avila (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8avilalive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Bierzo.es",La 8 Bierzo (720p) +https://cdnlive.shooowit.net/la8bierzolive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Burgos.es",La 8 Burgos (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8burgoslive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Leon.es",La 8 Leon (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8leonlive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Mediterraneo.es",La 8 Mediterráneo (1080p) [Not 24/7] +https://play.cdn.enetres.net/489DDF7FE98241D19D8970314BC9D3EF021/0226/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Palencia.es",La 8 Palencia (404p) [Not 24/7] +https://cdnlive.shooowit.net/la8palencialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Salamanca.es",La 8 Salamanca (720p) +https://cdnlive.shooowit.net/la8salamancalive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Segovia.es",La 8 Segovia (720p) +https://cdnlive.shooowit.net/la8segovialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Soria.es",La 8 Soria (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8sorialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Valladolid.es",La 8 Valladolid (720p) +https://cdnlive.shooowit.net/la8valladolidlive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Zamora.es",La 8 Zamora (720p) +https://cdnlive.shooowit.net/la8zamoralive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LaUrbanTV.es",La Urban TV (1080p) [Not 24/7] +https://urbanrevolution.es:8443/live/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="LaVoz24h.es",La Voz 24h (720p) +https://pull12.atresmedia.com/lavoz/master.m3u8 +#EXTINF:-1 tvg-id="LancelotTV.es",Lancelot TV (576p) [Not 24/7] +https://cdn01.yowi.tv/I7V5TFE97R/master.m3u8 +#EXTINF:-1 tvg-id="LaOtra.es",LaOtra (720p) +https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/laotra_1/index.m3u8 +#EXTINF:-1 tvg-id="LebrijaTV.es",Lebrija TV (360p) [Not 24/7] +http://212.104.160.156:1935/live/lebrijatv2/playlist3.m3u8 +#EXTINF:-1 tvg-id="LevanteTV.es",Levante TV (320p) [Not 24/7] +https://play.cdn.enetres.net/C2F6CBB67E5B4D08A16CE5FE67ABCEC9023/029/playlist.m3u8 +#EXTINF:-1 tvg-id="LleidaTelevisio.es",Lleida Televisio (720p) [Not 24/7] +https://cdn01.yowi.tv/lleida/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.es",Logos TV (1080p) [Not 24/7] +http://streamer1.streamhost.org/salive/logosH/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.es",Logos TV (1080p) [Not 24/7] +https://streamer1.streamhost.org/salive/logosH/master.m3u8 +#EXTINF:-1 tvg-id="M95TelevisionMarbella.es",M95 Televisión Marbella (576p) [Not 24/7] +https://limited2.todostreaming.es/live/m95-livestream.m3u8 +#EXTINF:-1 tvg-id="MaestratTV.es",Maestrat TV (1080p) [Not 24/7] +https://stream.maestrat.tv/hls/stream.m3u8 +#EXTINF:-1 tvg-id="MarTV.es",Mar TV (1080p) [Not 24/7] +http://iptv.btpba1.es.network.do:8080/martv-web/video.m3u8 +#EXTINF:-1 tvg-id="MirameTV.es",Mírame TV (360p) [Not 24/7] +https://bit.controlstreams.com:5443/LiveApp/streams/mirametv.m3u8 +#EXTINF:-1 tvg-id="NavarraTV.es",Navarra TV (576p) [Not 24/7] +https://pc-sumandocomunicacion-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NegociosTV.es",Negocios TV (720p) [Offline] +https://play.gooru.live/playnegocios/5646-1603313320000/master.m3u8 +#EXTINF:-1 tvg-id="NIUS.es",NIUS (576p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/03.m3u8 +#EXTINF:-1 tvg-id="NIUS.es",NIUS (576p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/03.m3u8 +#EXTINF:-1 tvg-id="NIUS.es",NIUS (720p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/01.m3u8 +#EXTINF:-1 tvg-id="NIUS.es",NIUS (720p) [Geo-blocked] +https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/01.m3u8 +#EXTINF:-1 tvg-id="NoroesteTV.es",Noroeste TV (720p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8032/index.m3u8 +#EXTINF:-1 tvg-id="OizmendiTelebista.es",Oizmendi Telebista (404p) [Not 24/7] +https://5940924978228.streamlock.net/8161/8161/master.m3u8 +#EXTINF:-1 tvg-id="OlympicsChannel.es",Olympics Channel (1080p) [Geo-blocked] +https://iptv-all.lanesh4d0w.repl.co/special/olympics +#EXTINF:-1 tvg-id="OndaCadiz.es",Onda Cádiz (1080p) +https://adc-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="OndaMadrid.es",Onda Madrid (360p) [Offline] +http://ondamadridhls-live.hls.adaptive.level3.net/telemadrid/ondamadrid1/index.m3u8 +#EXTINF:-1 tvg-id="OndaMadrid.es",Onda Madrid (360p) [Offline] +http://telemadridhls-live.hls.adaptive.level3.net/telemadrid/tvradio/index.m3u8 +#EXTINF:-1 tvg-id="OndaMezquita7TV.es",OndaMezquita 7 TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/mezquita/mezquita.m3u8 +#EXTINF:-1 tvg-id="Pequeradio.es",Pequeradio (720p) [Not 24/7] +https://canadaremar2.todostreaming.es/live/peque-pequetv.m3u8 +#EXTINF:-1 tvg-id="PlatziTV.es",Platzi TV (1080p) +https://mdstrm.com/live-stream-playlist/5b9076d18ef7b22560354649.m3u8 +#EXTINF:-1 tvg-id="PopularTVCantabria.es",Popular TV Cantabria (576p) [Not 24/7] +https://limited12.todostreaming.es/live/ptvcantabria-livestream.m3u8 +#EXTINF:-1 tvg-id="PopularTVMelilla.es",Popular TV Melilla (720p) [Not 24/7] +http://5940924978228.streamlock.net:1935/8009/8009/playlist.m3u8 +#EXTINF:-1 tvg-id="PopularTVMelilla.es",Popular TV Melilla (720p) [Not 24/7] +https://5940924978228.streamlock.net/8009/8009/master.m3u8 +#EXTINF:-1 tvg-id="PopularTVMurcia.es",Popular TV Murcia (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/populartvrm/populartvrm.m3u8 +#EXTINF:-1 tvg-id="Punt3VallUixo.es",Punt 3 Vall Uixó (1080p) +https://bit.controlstreams.com:5443/LiveApp/streams/punt3.m3u8 +#EXTINF:-1 tvg-id="",Radio Rutas del Perú (360p) [Not 24/7] +https://tv.portalexpress.es:3731/stream/play.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMarbella.es",Radio Televisión Marbella [Not 24/7] +https://cloudtv.provideo.es/live/marbellatv-livestream.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMelilla.es",Radio Televisión Melilla (720p) [Not 24/7] +https://tvmelilla-hls-rm-lw.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMogan.es",Radio Televisión Mogán (1080p) [Offline] +https://5b38ce71f1f00.streamlock.net/8162/8162/playlist.m3u8 +#EXTINF:-1 tvg-id="RealMadridTV.es",Real Madrid TV (404p) [Geo-blocked] +https://rmtvlive-lh.akamaihd.net/i/rmtv_1@154306/master.m3u8 +#EXTINF:-1 tvg-id="RT.es",RT (720p) [Offline] +https://rt-esp-gd.secure2.footprint.net/1102.m3u8 +#EXTINF:-1 tvg-id="RTVVida.es",RTV Vida (1080p) +https://vidartv2.todostreaming.es/live/radiovida-emisiontvhd.m3u8 +#EXTINF:-1 tvg-id="RTVC.es",RTVC (Radio Televisión Canaria) (1080p) +https://rtvc-live1-rm.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVE.es",RTVE (576p) [Geo-blocked] +http://hlsliveamdgl8-lh.akamaihd.net/i/hlsdvrlive_1@583030/index_1500_av-b.m3u8 +#EXTINF:-1 tvg-id="SalTelevision.es",Sal Televisión (720p) [Not 24/7] +https://www.tdtchannels.com/stream/saltv.m3u8 +#EXTINF:-1 tvg-id="SevillaFCTV.es",Sevilla FC TV (360p) [Not 24/7] +https://open.http.mp.streamamg.com/p/3001314/sp/300131400/playManifest/entryId/0_ye0b8tc0/format/applehttp/protocol/https/uiConfId/30026292/a.m3u8 +#EXTINF:-1 tvg-id="SolidariaTV.es",Solidaria TV (720p) +https://canadaremar2.todostreaming.es/live/solidariatv-webhd.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.es",Sophia TV (720p) +https://www.onairport.live/sophiatv-es-live/livestream/master.m3u8 +#EXTINF:-1 tvg-id="TAC12.es",TAC 12 (720p) [Not 24/7] +https://nodo01-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 +#EXTINF:-1 tvg-id="TAC12.es",TAC 12 (720p) [Not 24/7] +https://nodo02-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 +#EXTINF:-1 tvg-id="Taroteame.es",Tarotéame (576p) [Not 24/7] +http://93.93.67.117:1935/taroteame/tarot_web/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tarotvision (576p) [Not 24/7] +http://149.12.64.81:8080/hls/tarotvision.m3u8 +#EXTINF:-1 tvg-id="TEF.es",TEF (432p) [Not 24/7] +https://cdn01.yowi.tv/36MLCJRAR2/master.m3u8 +#EXTINF:-1 tvg-id="TeleSafor.es",Tele Safor (720p) [Not 24/7] +https://video.telesafor.com/hls/video.m3u8 +#EXTINF:-1 tvg-id="TeleSagunto.es",Tele Sagunto [Offline] +https://5940924978228.streamlock.net/Directo1_1/smil:Directo1_1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Tdp.es",Teledeporte (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/tdp_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Tdp.es",Teledeporte (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/tdp/tdp_main_dvr.m3u8 +#EXTINF:-1 tvg-id="TeleGilena.es",TeleGilena (360p) [Not 24/7] +https://5940924978228.streamlock.net/Directo1/Directo1/master.m3u8 +#EXTINF:-1 tvg-id="Telemadrid.es",Telemadrid (720p) +https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/telemadrid_1/index.m3u8 +#EXTINF:-1 tvg-id="TeleRibera.es",TeleRibera (720p) [Not 24/7] +http://37.187.7.106/teleribera/live.m3u8 +#EXTINF:-1 tvg-id="TeleToledo.es",TeleToledo (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/teletoledo/teletoledo.m3u8 +#EXTINF:-1 tvg-id="TeleVigo.es",TeleVigo (1080p) [Not 24/7] +https://cloud.streamingconnect.tv:455/televigo/televigo.m3u8 +#EXTINF:-1 tvg-id="TelevisionAranda.es",Televisión Aranda (720p) [Offline] +https://cdn01.yowi.tv/BBBBBBBBBB/master.m3u8 +#EXTINF:-1 tvg-id="TENTV.es",TEN TV (720p) [Timeout] +http://91.126.141.201:1935/live/smil:ten.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="tevecat.es",teve.cat (1080p) +https://limited35.todostreaming.es/live/mitjans-livestream.m3u8 +#EXTINF:-1 tvg-id="TevequatreTV.es",Tevequatre TV (576p) [Not 24/7] +https://cdn01.yowi.tv/5RO3JQE6LN/master.m3u8 +#EXTINF:-1 tvg-id="TrebujenaTV.es",Trebujena TV (360p) [Not 24/7] +http://212.104.160.156:1935/live/trebujenatv2/master.m3u8 +#EXTINF:-1 tvg-id="TreceTV.es",Trece TV (576p) +https://live-edge-bhs-1.cdn.enetres.net/091DB7AFBD77442B9BA2F141DCC182F5021/playlist.m3u8 +#EXTINF:-1 tvg-id="TuyaLaJandaTelevision.es",Tuya La Janda Televisión (1080p) +http://185.210.20.13:8080/0.m3u8 +#EXTINF:-1 tvg-id="TV3CAT.es",TV3CAT (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="TV3CAT.es",TV3CAT (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tvi_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="TV3Catalunya.es",TV3 Catalunya (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5Limares.es",TV5 Limares (720p) [Not 24/7] +https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5Limares.es",TV5 Limares (720p) [Not 24/7] +https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVArtequatre.es",TV Artequatre (576p) [Not 24/7] +https://streaming01.gestec-video.com/hls/artequatreTVA.m3u8 +#EXTINF:-1 tvg-id="TVCanaria.es",TV Canaria (576p) [Offline] +https://rtvc-live1.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVExtremena.es",TV Extremeña (720p) [Not 24/7] +https://cdn01.yowi.tv/43J82FST7L/master.m3u8 +#EXTINF:-1 tvg-id="TVGirona.es",TV Girona (720p) +http://ventdelnord.tv:8080/girona/directe.m3u8 +#EXTINF:-1 tvg-id="TVVegaBaja.es",TV Vega Baja (576p) +http://185.29.68.24/tvb.m3u8 +#EXTINF:-1 tvg-id="tvG2.es",tvG2 (720p) [Not 24/7] +https://events2-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="tvG2.es",tvG2 (720p) [Not 24/7] +https://events3-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGAmerica.es",TVG América (720p) +https://america-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGCultural.es",TVG Cultural (720p) +https://cultural-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEuropa.es",TVG Europa (720p) +https://europa-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEvento1.es",TVG Evento 1 (720p) [Not 24/7] +https://events1-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEvento5.es",TVG Evento 5 (720p) [Not 24/7] +https://amodino-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGInfantil.es",TVG Infantil (720p) [Not 24/7] +https://infantil-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGMomento.es",TVG Momento (720p) [Not 24/7] +https://momentog-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGMusigal.es",TVG Musigal (360p) [Not 24/7] +https://musigal-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMCordoba.es",TVM Córdoba (414p) [Not 24/7] +http://teledifusion.tv/cordoba/cordobalive/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMCordoba.es",TVM Córdoba (414p) [Not 24/7] +https://5924d3ad0efcf.streamlock.net/cordoba/cordobalive/playlist.m3u8 +#EXTINF:-1 tvg-id="UDLasPalmasTV.es",UD Las Palmas TV [Offline] +https://cdn041.fractalmedia.es/stream/live/udtv/index.m3u8 +#EXTINF:-1 tvg-id="UneVinalopo.es",Une Vinalopó (576p) [Not 24/7] +http://78.41.83.88:8880/hls/unesd.m3u8 +#EXTINF:-1 tvg-id="VentdelnordTV.es",Ventdelnord TV (720p) +http://ventdelnord.tv:8080/hls/directe.m3u8 +#EXTINF:-1 tvg-id="Vision6TV.es",Visión 6 TV (720p) [Not 24/7] +https://secure3.todostreaming.es/live/visionseis-livestream.m3u8 +#EXTINF:-1 tvg-id="XtraTV.es",Xtra TV (720p) [Offline] +https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/index.m3u8 +#EXTINF:-1 tvg-id="XtraTV.es",Xtra TV (720p) [Offline] +https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/playlist.m3u8 +#EXTINF:-1 tvg-id="ZafraTV.es",Zafra TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/radiotvzafra/radiotvzafra.m3u8 diff --git a/streams/es_rakuten.m3u b/streams/es_rakuten.m3u new file mode 100644 index 000000000..610fa0b8c --- /dev/null +++ b/streams/es_rakuten.m3u @@ -0,0 +1,135 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) +https://brat-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubbingTV.fr",Clubbing TV (720p) +https://clubbingtv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNInternationalEurope.us",CNN International Europe (720p) +https://cnn-cnninternational-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) +https://comedydynamics-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DestinationTV.us",Destination TV (720p) [Offline] +https://makingitmedia-destinationtv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) +https://mmm-ducktv-4-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Not 24/7] +https://edgesports-row-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",ESTV (1080p) +https://estv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTV.fr",Fashion TV (1080p) +https://fashiontv-fashiontv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] +https://spi-filmstream-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FrootTV.us",Froot TV (720p) [Offline] +https://outtv-froottv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-10-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (1080p) [Offline] +https://futuretoday-happykids-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-eng-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-ger-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-spa-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) +https://introuble-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-eng-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-ger-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LoneStar.us",Lone Star (1080p) +https://lonestar-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LSN.us",LSN (720p) [Offline] +https://asermedia-lacrossesportsnetwork-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (720p) +https://mavtv-mavtvglobal-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphereuk-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkSpain.us",MyTime movie network Spain (1080p) +https://appletree-mytimespain-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.fr",Qwest TV Classical (720p) [Offline] +https://qwestclassic-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr",Qwest TV Jazz & Beyond (720p) [Offline] +https://qwestjazz-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.fr",Qwest TV Mix (720p) [Offline] +https://qwestmix-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies1.es",Rakuten Action Movies 1 (720p) [Offline] +https://rakuten-actionmovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies2.es",Rakuten Action Movies 2 (720p) [Offline] +https://rakuten-actionmovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies3.es",Rakuten Action Movies 3 (720p) [Offline] +https://rakuten-actionmovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies1.es",Rakuten Comedy Movies 1 (720p) [Offline] +https://rakuten-comedymovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies2.es",Rakuten Comedy Movies 2 (720p) [Offline] +https://rakuten-comedymovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies3.es",Rakuten Comedy Movies 3 (720p) [Offline] +https://rakuten-comedymovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies6.es",Rakuten Comedy Movies 6 (720p) [Offline] +https://rakuten-comedymovies-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies7.es",Rakuten Comedy Movies 7 (720p) [Offline] +https://rakuten-comedymovies-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight1.es",Rakuten Spotlight 1 (720p) [Offline] +https://rakuten-spotlight-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight2.es",Rakuten Spotlight 2 (720p) [Offline] +https://rakuten-spotlight-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight3.es",Rakuten Spotlight 3 (720p) [Offline] +https://rakuten-spotlight-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight6.es",Rakuten Spotlight 6 (720p) [Offline] +https://rakuten-spotlight-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight7.es",Rakuten Spotlight 7 (720p) [Offline] +https://rakuten-spotlight-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree1.es",Rakuten Top Free 1 (720p) +https://rakuten-topfree-1-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree2.es",Rakuten Top Free 2 (720p) +https://rakuten-topfree-2-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree3.es",Rakuten Top Free 3 (720p) +https://rakuten-topfree-3-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree6.es",Rakuten Top Free 6 (720p) +https://rakuten-topfree-6-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree7.es",Rakuten Top Free 7 (720p) +https://rakuten-topfree-7-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows1.es",Rakuten TV Shows 1 (720p) [Offline] +https://rakuten-tvshows-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows2.es",Rakuten TV Shows 2 (720p) [Offline] +https://rakuten-tvshows-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows3.es",Rakuten TV Shows 3 (720p) [Offline] +https://rakuten-tvshows-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows6.es",Rakuten TV Shows 6 (720p) [Offline] +https://rakuten-tvshows-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows7.es",Rakuten TV Shows 7 (720p) [Offline] +https://rakuten-tvshows-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ReutersTV.uk",Reuters TV (720p) [Timeout] +https://reuters-reuters-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us",Revry (720p) [Offline] +https://revry-revry-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RevryNews.us",Revry News (720p) [Offline] +https://revry-revrynews-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us" status="error",Runtime (Spain) (720p) [Offline] +https://runtime-espana-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RushStreet.us",Rush Street (720p) [Offline] +https://rushstreet-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (1080p) [Offline] +https://sofytv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveEurope.us",The Pet Collective Europe (720p) [Offline] +https://the-pet-collective-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyEurope.us",WeatherSpy Europe (720p) [Offline] +https://jukin-weatherspy-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk",Wonder (1080p) +https://lds-wonder-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) +https://younghollywood-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.nz",Zoo Moo (720p) [Offline] +https://rockentertainment-zoomoo-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 diff --git a/streams/es_samsung.m3u b/streams/es_samsung.m3u new file mode 100644 index 000000000..f1f876b45 --- /dev/null +++ b/streams/es_samsung.m3u @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ActionMovies.es",Action Movies (720p) [Offline] +https://rakuten-actionmovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BigName.fr",Big Name (720p) [Offline] +https://alchimie-big-names-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ButacaTV.us",Butaca TV (720p) [Offline] +https://veranda-butacatv-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Caillou.fr",Caillou (720p) [Offline] +https://dhx-caillou-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCinesverdi.es",Canal Cinesverdi (720p) [Offline] +https://contracorriente-canalcinesverdi-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalFeelgood.es",Canal Feel good (720p) [Offline] +https://contracorriente-canalfeelgood-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyMovies.es",Comedy Movies (720p) [Offline] +https://rakuten-comedymovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) +https://mmm-ducktv-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ElPatioSpain.fr",El Patio (Spain) (720p) [Offline] +https://alchimie-elpatio-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) +https://rakuten-euronews-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FamilyMovies.es",Family Movies (720p) [Offline] +https://rakuten-family-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVSpain.fr",Fashion TV (Spain) (1080p) +https://fashiontv-fashiontv-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-7-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNatureEspanol.us",Love Nature Español (1080p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00090-blueantmedia-lnrcastilian-samsungspain/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] +https://alchimie-mmatv-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] +https://alchimie-moods-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] +https://alchimie-mysurf-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetaKids.es",Planeta Kids (720p) [Offline] +https://deaplaneta-planetakidz-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (720p) +https://runtimeespana-samsungspain.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) +https://sofytv-samsunges.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Spotlight.es",Spotlight (720p) [Offline] +https://rakuten-spotlight-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.es",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveSpain.us",The Pet Collective Spain (720p) [Offline] +https://the-pet-collective-international-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceSportStars.fr",Trace Sport Stars (1080p) [Geo-blocked] +http://tracesportstars-samsunges.amagi.tv/hls/amagi_hls_data_samsunguk-tracesport-samsungspain/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TVShows.es",TV Shows (720p) [Offline] +https://rakuten-tvshows-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="UnearthSpain.fr",Unearth (Spain) (720p) [Offline] +https://alchimie-unearth-3-es.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/et.m3u b/streams/et.m3u new file mode 100644 index 000000000..174d13709 --- /dev/null +++ b/streams/et.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AddisTV.et",Addis TV (720p) +https://rrsatrtmp.tulix.tv/addis1/addis1multi.smil/playlist.m3u8 diff --git a/streams/fi.m3u b/streams/fi.m3u new file mode 100644 index 000000000..9fa1e24a5 --- /dev/null +++ b/streams/fi.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlfaTV.fi",AlfaTV (432p) [Not 24/7] +https://alfatv.digitacdn.net/live/_definst_/alfatv/amlst:alfatv.amlst/playlist.m3u8 +#EXTINF:-1 tvg-id="HimlenTV7.fi",Himlen TV7 (720p) +https://vod.tv7.fi/tv7-se/smil:tv7-se.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TaevasTV7.fi",Taevas TV7 (720p) +https://vod.tv7.fi/tv7-ee/smil:tv7-ee.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TaivasTV7.fi",Taivas TV7 (720p) +https://vod.tv7.fi/tv7-fi/smil:tv7-fi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="YLETV1.fi",YLE TV 1 (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yletv1hls_1@103188/master.m3u8 +#EXTINF:-1 tvg-id="YLETV1.fi",YLE TV 1 (720p) [Not 24/7] +https://yletvhdliveworld-lh.akamaihd.net/i/yletv1hdworld_1@187592/master.m3u8 +#EXTINF:-1 tvg-id="YLETV2.fi",YLE TV 2 (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yletv2hls_1@103189/master.m3u8 +#EXTINF:-1 tvg-id="YLETV2.fi",YLE TV 2 (720p) [Not 24/7] +https://yletvhdliveworld-lh.akamaihd.net/i/yletv2hdworld_1@187593/master.m3u8 +#EXTINF:-1 tvg-id="YLETVTeemaAndFem.fi",YLE TV Teema & Fem (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yleteemafemfi_1@490775/master.m3u8 +#EXTINF:-1 tvg-id="NebesaTV7.fi",Небеса ТВ7 (720p) +https://vod.tv7.fi/tv7-ru/tv7-ru.smil/playlist.m3u8 diff --git a/streams/fi_samsung.m3u b/streams/fi_samsung.m3u new file mode 100644 index 000000000..ebb0ec32b --- /dev/null +++ b/streams/fi_samsung.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) +https://rakuten-africanews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) +https://mmm-ducktv-4-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyFinland.es",Rakuten Comedy (Finland) (720p) [Offline] +https://rakuten-comedy-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesFinland.es",Rakuten Documentaries (Finland) (720p) [Offline] +https://rakuten-documentaries-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaFinland.es",Rakuten Drama (Finland) (720p) [Offline] +https://rakuten-drama-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyFinland.es",Rakuten Family (Finland) (720p) +https://rakuten-family-12-fi.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightFinland.es",Rakuten Spotlight (Finland) (720p) [Offline] +https://rakuten-spotlight-12-fi.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/fj.m3u b/streams/fj.m3u new file mode 100644 index 000000000..fa0c8bf9d --- /dev/null +++ b/streams/fj.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="FijiTV.fj",Fiji TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19514369/events/6947821/live.m3u8 +#EXTINF:-1 tvg-id="FijiTV.fj",Fiji TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19514369/events/fijitvstream/live.m3u8 diff --git a/streams/fo.m3u b/streams/fo.m3u new file mode 100644 index 000000000..d3e5cda28 --- /dev/null +++ b/streams/fo.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KVFSjonvarp.fo",KVF (720p) [Not 24/7] +https://w1.kringvarp.fo/uttanlands/smil:uttanlands.smil/playlist.m3u8 diff --git a/streams/fr.m3u b/streams/fr.m3u new file mode 100644 index 000000000..36c55f816 --- /dev/null +++ b/streams/fr.m3u @@ -0,0 +1,253 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7ALimoges.fr",7ALimoges (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCdFv_ZWQ3Xk_NfRiaK-ryGg/live +#EXTINF:-1 tvg-id="AlpedHuezTV.fr",Alpe d’Huez TV (720p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:adhtv/chunklist.m3u8 +#EXTINF:-1 tvg-id="Alsace20.fr",Alsace 20 (720p) +http://live.alsace20.fr/live/alsace20/ngrp:alsace20_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenneReunion.fr",Antenne Réunion (720p) [Not 24/7] +https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01 +#EXTINF:-1 tvg-id="ARTEDeutsch.fr",Arte Deutsch [Geo-blocked] +https://artesimulcast.akamaized.net/hls/live/2030993/artelive_de/index.m3u8 +#EXTINF:-1 tvg-id="ARTEFrancais.fr",ARTE Français (720p) [Geo-blocked] +https://artesimulcast.akamaized.net/hls/live/2031003/artelive_fr/index.m3u8 +#EXTINF:-1 tvg-id="BeurTV.fr",Beur TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Beur_TV/htatv/Beur_TV_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="BFMBusiness.fr",BFM Business (480p) [Offline] +https://bfmbusinesshds-lh.akamaihd.net/i/BFMBUSINESS_ESYTLS@664128/master.m3u8 +#EXTINF:-1 tvg-id="BFMGrandLille.fr",BFM Grand Lille (720p) +https://live.creacast.com/grandlilletv/smil:grandlilletv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BFMGrandLittoral.fr",BFM Grand Littoral (720p) +https://live.creacast.com/grandlittoral/smil:grandlittoral.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BFMLyon.fr",BFM Lyon (480p) +https://bfmlyon-lh.akamaihd.net/i/BFMLYON_ESYTLS@797041/master.m3u8 +#EXTINF:-1 tvg-id="BFMParis.fr",BFM Paris (480p) +https://bfmparishdslive-lh.akamaihd.net/i/BFMPARIS_ESYTLS@429747/master.m3u8 +#EXTINF:-1 tvg-id="BFMTV.fr",BFMTV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xgz4t1 +#EXTINF:-1 tvg-id="BIPTV.fr",BIP TV (480p) [Not 24/7] +http://biptv.tv/live/biptvstream_orig/index.m3u8 +#EXTINF:-1 tvg-id="CentralTV.fr",Central TV (614p) [Not 24/7] +http://cdn2.ujjina.com:1935/iptvcentraltv/livecentraltvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cherie25.fr",Chérie 25 (360p) [Timeout] +https://s6.tntendirect.com/cherie25/live/playlist.m3u8 +#EXTINF:-1 tvg-id="",Cnews (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3b68jn +#EXTINF:-1 tvg-id="",CSTAR (720p) +http://flusonic-4.platinum-tv.com/D17/tracks-v1a1/mono.m3u8?token=test +#EXTINF:-1 tvg-id="DBM.fr",DBM (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:dbmtv/manifest.m3u8 +#EXTINF:-1 tvg-id="DBMTV.fr",DBM TV (1080p) +http://dbmtv.vedge.infomaniak.com/livecast/dbmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ElHeddafTV.fr",El Heddaf TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_HEDDAF_TV/htatv/EL_HEDDAF_TV_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="EMCITV.fr",EMCI TV (1080p) +https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 +#EXTINF:-1 tvg-id="EMCITV.fr",EMCI TV Montreal (1080p) +https://emci-td-hls.akamaized.net/hls/live/2007264/emcitdhls/index.m3u8 +#EXTINF:-1 tvg-id="",Euronews Albania (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChR-A__NS_C5kHDWj3PeAhw/live +#EXTINF:-1 tvg-id="EuronewsenEspanol.es",Euronews en Español (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/euronewses/live +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://d1mpprlbe8tn2j.cloudfront.net/v1/master/7b67fbda7ab859400a821e9aa0deda20ab7ca3d2/euronewsLive/87O7AhxRUdeeIVqf/ewnsabren_eng.m3u8 +#EXTINF:-1 tvg-id="EuronewsHungary.fr",Euronews Hungary (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/euronewsHungarian/live +#EXTINF:-1 tvg-id="Euronewsporusski.fr",Euronews по-русски (480p) +http://ott-cdn.ucom.am/s89/index.m3u8 +#EXTINF:-1 tvg-id="Euronewsporusski.fr",Euronews по-русски (720p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFzJjgVicCtFxJ5B0P_ei8A/live +#EXTINF:-1 tvg-id="FashionTV.fr",Fashion TV (576p) [Not 24/7] +http://entertainment.ashttp9.visionip.tv/live/visiontvuk-entertainment-edgytv-hsslive-25f-16x9-SD/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr",Fashion TV Midnite Secrets (1080p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_midnite_k1y_27049_midnite_secr_108_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr",Fashion TV Midnite Secrets (1080p) +https://fash1043.cloudycdn.services/slive/ftv_midnite_secrets_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVNewYork.fr",Fashion TV New York (PG13) (720p) [Not 24/7] +https://fash2043.cloudycdn.services/slive/ftv_ftv_gmt_-5_qko_43090_default_1225_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVParis.fr",Fashion TV Paris (144p) +https://fash1043.cloudycdn.services/slive/ftv_paris_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVParisMumbai.fr",Fashion TV Paris-Mumbai (1080p) [Not 24/7] +https://fash1043.cloudycdn.services/slive/ftv_ftv_asia_gmt_vmf_43163_default_1298_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVPG13.fr",Fashion TV PG13 (240p) +https://fash1043.cloudycdn.services/slive/ftv_pg13_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVPG16.fr",Fashion TV PG16 (144p) +http://fash1043.cloudycdn.services/slive/ftv_pg16_adaptive.smil/media.m3u8 +#EXTINF:-1 tvg-id="FashionTVRussia.fr",Fashion TV Russia (480p) +http://ott-cdn.ucom.am/s30/index.m3u8 +#EXTINF:-1 tvg-id="FashionTVSingapore.fr",Fashion TV Singapore (240p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_asia_ada_xiv_42149_default_137_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVTokyo.fr",Fashion TV Tokyo (PG13) (240p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_196_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVTokyo.fr",Fashion TV Tokyo (PG13) (1080p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_sam_197_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVUHD.fr",Fashion TV UHD (2160p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_4k_hevc_73d_42080_default_466_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVCzechSlovak.fr",FashionTV Czech&Slovak (450p) +http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMumbai.fr",FashionTV Mumbai (1080p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_pg13_gmt_ess_43126_default_1262_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="France2.fr",France 2 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france2/playlist.m3u8 +#EXTINF:-1 tvg-id="France3.fr",France 3 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france3/playlist.m3u8 +#EXTINF:-1 tvg-id="France4.fr",France 4 (720p) [Geo-blocked] +http://edge9.iptvnetwork.net/live/france4/playlist.m3u8 +#EXTINF:-1 tvg-id="France5.fr",France 5 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france5/playlist.m3u8 +#EXTINF:-1 tvg-id="France24Arabic.fr",France 24 Arabic (576p) +https://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24Arabic.fr",France 24 Arabic (1080p) +https://static.france24.com/live/F24_AR_HI_HLS/live_tv.m3u8 +#EXTINF:-1 tvg-id="France24English.fr",France 24 English (576p) +https://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24English.fr",France 24 English (1080p) +http://f24hls-i.akamaihd.net/hls/live/221147/F24_EN_HI_HLS/master.m3u8 +#EXTINF:-1 tvg-id="France24Espanol.fr",France 24 Español (576p) +https://static.france24.com/live/F24_ES_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24Espanol.fr",France 24 Español (1080p) +http://f24hls-i.akamaihd.net/hls/live/520845/F24_ES_HI_HLS/master.m3u8 +#EXTINF:-1 tvg-id="France24Francais.fr",France 24 Français (1080p) +https://static.france24.com/live/F24_FR_HI_HLS/live_tv.m3u8 +#EXTINF:-1 tvg-id="France24Francais.fr",France 24 Français (1080p) +https://static.france24.com/live/F24_FR_HI_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="FranceInter.fr",France Inter (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCJldRgT_D7Am-ErRHQZ90uw/live +#EXTINF:-1 tvg-id="Franceinfo.fr",Franceinfo (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/franceinfo/live +#EXTINF:-1 tvg-id="Francophonie24.fr",Francophonie24 (1080p) +https://5421175365ea3.streamlock.net/live/smil:switch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Francophonie.fr",Francophonie (360p) +http://mv2.tvfrancophonie.org/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="GenerationsTV.fr",Generations TV (576p) +https://edge.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8 +#EXTINF:-1 tvg-id="Gulli.fr",Gulli (540p) +https://d13anarbtxy8c5.cloudfront.net/6play/short/clr/gulli/sdindex.m3u8 +#EXTINF:-1 tvg-id="Gulli.fr",Gulli (720p) [Not 24/7] +http://flusonic-4.platinum-tv.com/Gulli/mono.m3u8?token=test +#EXTINF:-1 tvg-id="GulliBilArabi.fr",Gulli Bil Arabi (1080p) +https://shls-gulli-bil-arabi-prod-dub.shahid.net/out/v1/5454d215afba410c90b233f400730958/index.m3u8 +#EXTINF:-1 tvg-id="GulliGirl.fr",Gulli Girl (576p) [Not 24/7] +http://188.40.68.167/russia/gulli_girl/playlist.m3u8 +#EXTINF:-1 tvg-id="HodHodTV.fr",HodHod TV (720p) +http://51.210.199.12/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HolyGodTV.fr",HolyGod TV (720p) [Offline] +https://dcunilive47-lh.akamaihd.net/i/dclive_1@739146/master.m3u8 +#EXTINF:-1 tvg-id="ILTV.fr",ILTV (720p) [Not 24/7] +https://str81.creacast.com/iltv/high/playlist.m3u8 +#EXTINF:-1 tvg-id="KTO.fr",KTO (404p) [Not 24/7] +https://livehdkto-lh.akamaihd.net/i/LiveStream_1@178944/master.m3u8 +#EXTINF:-1 tvg-id="",L'EQUIPE (360p) [Timeout] +https://s6.tntendirect.com/lequipe21/live/playlist.m3u8 +#EXTINF:-1 tvg-id="LaChaineNormande.fr",La Chaîne normande (LCN) (576p) [Not 24/7] +http://live.lachainenormande.fr/live/lcn/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="LCI.fr",LCI (720p) [Not 24/7] +https://lci-hls-live-ssl.tf1.fr/lci/1/hls/live_2328.m3u8 +#EXTINF:-1 tvg-id="LCP.fr",LCP (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xji3qy +#EXTINF:-1 tvg-id="M6.fr",M6 (720p) [Not 24/7] +http://flusonic-4.platinum-tv.com/M6/mono.m3u8?token=test +#EXTINF:-1 tvg-id="M6.fr",M6 (1080p) +https://shls-m6-france-prod-dub.shahid.net/out/v1/c8a9f6e000cd4ebaa4d2fc7d18c15988/index.m3u8 +#EXTINF:-1 tvg-id="MCMTop.fr",MCM Top (480p) [Timeout] +http://ott-cdn.ucom.am/s49/index.m3u8 +#EXTINF:-1 tvg-id="MDL.fr",MDL (720p) +http://tv.mondeduloisir.fr:1935/tixtv/smil:web.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Mezzo.fr",Mezzo (480p) +http://ott-cdn.ucom.am/s35/index.m3u8 +#EXTINF:-1 tvg-id="NancyWebTV.fr",Nancy Web TV (394p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:nancy-webtv/manifest.m3u8 +#EXTINF:-1 tvg-id="NRJ12.fr",NRJ12 (720p) [Timeout] +https://s6.tntendirect.com/nrj12/live/playlist.m3u8 +#EXTINF:-1 tvg-id="P2MTV.fr",P2M TV (360p) +https://panel.streamparis.fr:3743/stream/play.m3u8 +#EXTINF:-1 tvg-id="PersianaBillboard.fr",Persiana Billboard (720p) [Not 24/7] +http://51.210.199.10/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema (720p) +http://51.210.199.15/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaClassic.fr",Persiana Classic (720p) [Not 24/7] +http://51.210.199.26/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaComedy.fr",Persiana Comedy (720p) +http://51.210.199.27/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaDocumentary.fr",Persiana Documentary (720p) [Not 24/7] +http://51.210.199.23/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaFamily.fr",Persiana Family (720p) +http://51.210.199.19/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaFamilyPlus.fr",Persiana Family Plus (720p) [Not 24/7] +http://51.210.199.13/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaGameTech.fr",Persiana Game & Tech (720p) [Not 24/7] +http://51.210.199.25/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaIranian.fr",Persiana Iranian (720p) [Not 24/7] +http://51.210.199.22/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaJunior.fr",Persiana Junior (720p) +http://51.210.199.18/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaKorea.fr",Persiana Korea (720p) +http://51.210.199.14/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaMusic.fr",Persiana Music (720p) +http://51.210.199.24/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaNostalgia.fr",Persiana Nostalgia (720p) +http://51.210.199.20/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaPlus.fr",Persiana Plus (1080p) +http://51.210.199.21/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaSonati.fr",Persiana Sonati (576p) [Not 24/7] +http://51.210.199.59/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaVarzesh.fr",Persiana Varzesh (720p) [Not 24/7] +http://51.210.199.16/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PokerTV.fr",Poker TV (720p) [Not 24/7] +http://51.210.199.17/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PublicSenat.fr",Public Sénat (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xkxbzc +#EXTINF:-1 tvg-id="RMCDecouverte.fr",RMC Découverte (720p) [Timeout] +https://s6.tntendirect.com/rmcdecouverte/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TebeSud.fr",TébéSud (1080p) [Not 24/7] +https://edge-live-ger1.ovstream.com/hls/10/source.m3u8 +#EXTINF:-1 tvg-id="TF1.fr",TF1 (720p) +http://flusonic-4.platinum-tv.com/TF1/index.m3u8?token=test +#EXTINF:-1 tvg-id="TF1.fr",TF1 (720p) [Geo-blocked] +http://edge9.iptvnetwork.net/live/TF1/playlist.m3u8 +#EXTINF:-1 tvg-id="TF1SeriesFilms.fr",TF1 Séries Films (360p) [Timeout] +https://s6.tntendirect.com/hd1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TFX.fr",TFX (720p) [Timeout] +https://s6.tntendirect.com/nt1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Tiji.fr",Tiji (1080p) [Offline] +https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 +#EXTINF:-1 tvg-id="TijiRussia.fr",Tiji Russia (576p) [Not 24/7] +http://188.40.68.167/russia/tiji/playlist.m3u8 +#EXTINF:-1 tvg-id="TMACaraibes.fr",TMA Caraïbes (1080p) [Not 24/7] +http://hls.tmacaraibes.com/live/index.m3u8 +#EXTINF:-1 tvg-id="TMC.fr",TMC (720p) [Timeout] +https://s6.tntendirect.com/tmc/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5MondeEurope.fr",TV5 Monde Europe (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV5MondeEurope.fr",TV5 Monde Europe (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV5MondeFranciaFR.fr",TV5Monde Francia FR (1080p) +https://tv5infohls-i.akamaihd.net/hls/live/631613/tv5infohls/index.m3u8 +#EXTINF:-1 tvg-id="TV5MondeInfo.fr",TV5Monde Info (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV7Bordeaux.fr",TV7 Bordeaux (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=vGrlJbbfsE4 +#EXTINF:-1 tvg-id="TV7Colmar.fr",TV7 Colmar (576p) +https://tv7.hdr-tv.com/live/tv7/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8MontBlanc.fr",TV8 Mont-Blanc (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x71o73v +#EXTINF:-1 tvg-id="TV78.fr",TV78 (720p) +https://streamtv.cdn.dvmr.fr/TV78/ngrp:tv78.stream_all/master.m3u8 +#EXTINF:-1 tvg-id="TVR.fr",TVR (Bretagne) (720p) +https://streamtv.cdn.dvmr.fr/TVR/ngrp:tvr.stream_all/master.m3u8 +#EXTINF:-1 tvg-id="TZiK.fr",TZiK [Not 24/7] +https://54627d4fc5996.streamlock.net/tzik/tzik/chunklist.m3u8 +#EXTINF:-1 tvg-id="viaMATELE.fr",viàMATÉLÉ (540p) [Not 24/7] +https://streamer01.myvideoplace.tv/streamer02/hls/MATL_VLOC_PAD_100919_medium/index.m3u8 +#EXTINF:-1 tvg-id="viaMoselleTV.fr",viàMoselleTV (720p) [Not 24/7] +https://live.creacast.com/mirabelletv/smil:mirabelletv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="viaOccitanie.fr",viàOccitanie (540p) [Not 24/7] +https://streamer01.myvideoplace.tv/streamer02/hls/MDS_VIA_PAD_301117.m3u8 +#EXTINF:-1 tvg-id="",viàVosges (576p) [Not 24/7] +https://vosgestv.hdr-tv.com/live/vosgestv/livestream/master.m3u8 +#EXTINF:-1 tvg-id="W9.fr",W9 (720p) [Not 24/7] +http://flusonic-2.platinum-tv.com/W9/mono.m3u8?token=test +#EXTINF:-1 tvg-id="",Wéo (Hauts-de-France) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x62islg +#EXTINF:-1 tvg-id="",Wéo (Picardie) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x63085w diff --git a/streams/fr_samsung.m3u b/streams/fr_samsung.m3u new file mode 100644 index 000000000..2afa8c5ba --- /dev/null +++ b/streams/fr_samsung.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AmuseAnimation.fr",Amuse Animation (720p) [Offline] +https://amuse-amuseanimation-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Atelierdeschefs.fr",Atelier des chefs (720p) [Offline] +https://alchimie-atelier-des-chefs-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Caillou.fr",Caillou (720p) [Offline] +https://dhx-caillou-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicalHarmony.fr",Classical Harmony (720p) [Offline] +https://alchimie-classical-harmony-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Français (720p) +https://rakuten-euronews-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] +https://alchimie-euronews-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEurope.fr",Fashion TV L'Original (1080p) +https://fashiontv-fashiontv-loriginal-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-8-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] +https://alchimie-humanity-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LuxeTV.fr",Luxe TV (720p) [Offline] +https://alchimie-luxe-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] +https://alchimie-moods-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",MotorSport.TV (720p) [Offline] +https://alchimie-motor-sport-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoviesCentral.fr",Movies Central (720p) [Offline] +https://alchimie-movies-central-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] +https://alchimie-mysurf-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesFrance.es",Rakuten Documentaries (France) (720p) [Offline] +https://rakuten-documentaries-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesFrance.es",Rakuten TV Action Movies France (720p) [Offline] +https://rakuten-actionmovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesFrance.es",Rakuten TV Comedy Movies France (720p) [Offline] +https://rakuten-comedymovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaFrance.es",Rakuten TV Drama France (720p) [Offline] +https://rakuten-tvshows-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesFrance.es",Rakuten TV Family Movies France (720p) [Offline] +https://rakuten-family-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightFrance.es",Rakuten TV Spotlight France (720p) [Offline] +https://rakuten-spotlight-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) +https://sofytv-samsungfr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportenFrance.fr",Sport en France (720p) [Offline] +https://alchimie-sport-en-france-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StormcastNovelasTV.fr",Stormcast Novelas TV (720p) [Offline] +https://stormcast-telenovelatv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.fr",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-3-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Unearth.fr",Unearth (720p) [Offline] +https://alchimie-unearth-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WildsideTV.fr",Wildside TV (720p) +https://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8 diff --git a/streams/ge.m3u b/streams/ge.m3u new file mode 100644 index 000000000..ed5322b8b --- /dev/null +++ b/streams/ge.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1TV.ge",1TV (240p) [Geo-blocked] +https://tv.cdn.xsg.ge/gpb-1tv/index.m3u8 +#EXTINF:-1 tvg-id="2TV.ge",2TV (720p) [Not 24/7] +https://tv.cdn.xsg.ge/gpb-2tv/index.m3u8 +#EXTINF:-1 tvg-id="EnkiBenki.ge",Enki Benki (360p) +http://94.43.239.178:8080/CHANNEL678/BITRATE0/playlist.m3u8 +#EXTINF:-1 tvg-id="Formula.ge",Formula (1080p) +https://c4635.cdn.xsg.ge/c4635/TVFormula/index.m3u8 +#EXTINF:-1 tvg-id="MtavariArkhi.ge",Mtavari Arkhi (480p) +https://bozztv.com/36bay2/mtavariarxi/playlist.m3u8 +#EXTINF:-1 tvg-id="MusicBoxGeorgia.ge",MusicBox Georgia (180p) +http://94.43.239.178:8080/CHANNEL470/BITRATE0/playlist.m3u8 +#EXTINF:-1 tvg-id="PalitraNews.ge",Palitra News (480p) [Not 24/7] +https://live.palitranews.ge/hls/palitratv/index.m3u8 +#EXTINF:-1 tvg-id="PalitraNews.ge",Palitra News (480p) [Not 24/7] +https://livestream.palitra.ge/hls/palitratv/index.m3u8 +#EXTINF:-1 tvg-id="RioniTV.ge",Rioni TV (720p) [Not 24/7] +http://video.rionitv.com:9090/hls/live/rioni.m3u8 diff --git a/streams/gh.m3u b/streams/gh.m3u new file mode 100644 index 000000000..8823a6adf --- /dev/null +++ b/streams/gh.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ResurrectionTV.gh",Resurrection TV (384p) +http://rtmp.ottdemo.rrsat.com/rrsatrtv1/rrsatrtvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAfrica.gh",TV Africa (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 diff --git a/streams/gl.m3u b/streams/gl.m3u new file mode 100644 index 000000000..16deb41c9 --- /dev/null +++ b/streams/gl.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KNR1.gl",KNR1 (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCIjOAtv53RHerlfl98fZmcQ/live +#EXTINF:-1 tvg-id="KNR2.gl" status="error",KNR2 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6D225YIMCwVBiBktEeV-vQ/live diff --git a/streams/gm.m3u b/streams/gm.m3u new file mode 100644 index 000000000..7d92a342e --- /dev/null +++ b/streams/gm.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="QTV.gm",QTV Gambia (720p) [Not 24/7] +https://player.qtv.gm/hls/live.stream.m3u8 diff --git a/streams/gn.m3u b/streams/gn.m3u new file mode 100644 index 000000000..b8face0c2 --- /dev/null +++ b/streams/gn.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RTG.gn",RTG (240p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@690091/master.m3u8 diff --git a/streams/gp.m3u b/streams/gp.m3u new file mode 100644 index 000000000..9a4d2d71c --- /dev/null +++ b/streams/gp.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TMA.gp",TMA (1080p) [Timeout] +http://hls.tmacaraibes.com/live/index.m3u8 diff --git a/streams/gq.m3u b/streams/gq.m3u new file mode 100644 index 000000000..38491f947 --- /dev/null +++ b/streams/gq.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TVGE.gq",TVGE (480p) +http://rtmp.ott.mx1.com/tvge1/tvge1multi.smil/playlist.m3u8 diff --git a/streams/gr.m3u b/streams/gr.m3u new file mode 100644 index 000000000..e59d66ee1 --- /dev/null +++ b/streams/gr.m3u @@ -0,0 +1,229 @@ +#EXTM3U +#EXTINF:-1 tvg-id="4E.gr",4E (720p) +http://eu2.tv4e.gr:554/live/smil:myStream.sdp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="34100TV.gr",34100 TV (720p) [Geo-blocked] +https://s1.cystream.net/live/34100/playlist.m3u8 +#EXTINF:-1 tvg-id="AcheloosTV.gr",Acheloos TV (576p) [Not 24/7] +http://srv.viiideo.gr:1935/axeloos/live/playlist.m3u8 +#EXTINF:-1 tvg-id="AkritasTV.gr",Akritas TV (1080p) [Not 24/7] +http://akritastv1.flashmediacast.com:1935/akritastv1/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Alert.gr",Alert (576p) [Not 24/7] +https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaDramas.gr",Alfa Dramas (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.alf/playlist.m3u8 +#EXTINF:-1 tvg-id="AliteiaTV.gr",Aliteia TV [Offline] +https://vdo.alphaserver.gr:3989/stream/play.m3u8 +#EXTINF:-1 tvg-id="Alpha.gr",Alpha (720p) [Offline] +https://alphalive-i.akamaihd.net/hls/live/682300/live/master.m3u8 +#EXTINF:-1 tvg-id="AlphaBUP.gr",Alpha BUP [Timeout] +http://78.83.87.222:9999/play/a011/index.m3u8 +#EXTINF:-1 tvg-id="",ANT1 (1080p) [Geo-blocked] +https://antennaamdnoenc.akamaized.net/ant1_akamai/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="APT.gr",APT (480p) [Not 24/7] +http://tv3.streampulse.eu:1935/tilesport/movie2/playlist.m3u8 +#EXTINF:-1 tvg-id="ARTTV.gr",ART TV (720p) [Not 24/7] +http://176.9.123.140:1935/arttv/arttv/playlist.m3u8 +#EXTINF:-1 tvg-id="AtticaTV.gr",Attica TV (1080p) [Not 24/7] +https://e-e.cyou:8222/atticatv/atticatv/playlist.m3u8 +#EXTINF:-1 tvg-id="BananaTV.gr",Banana TV (360p) [Offline] +https://web.onair-radio.eu/bananachannel/bananachannel/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) +https://eco.streams.ovh/BarazaTV/BarazarazaTV/BarazaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) +https://eco.streams.ovh/BarazaTV/BarazaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) [Geo-blocked] +https://panik.cast-control.eu:1936/Admin_1/Admin_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BCI24News.gr",BCI 24 News (1080p) +https://live.streams.ovh/netmedia/netmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="BestTV.gr",Best TV (720p) [Not 24/7] +https://stream.net7.gr/hls/best/index.m3u8 +#EXTINF:-1 tvg-id="CameraSmile.gr",Camera Smile (480p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-camerasmile/index.m3u8 +#EXTINF:-1 tvg-id="CanaliTV.gr",Canali TV (720p) [Geo-blocked] +http://live.streams.ovh:1935/cannali/cannali/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.gr",Channel 9 (720p) +http://176.9.123.140:1935/channel9/channel9/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.gr",Channel 9 (720p) +https://e-e.cyou:8222/channel9/channel9/playlist.m3u8 +#EXTINF:-1 tvg-id="Choice.gr",Choice (1080p) [Not 24/7] +https://vod.streams.ovh:3528/stream/play.m3u8 +#EXTINF:-1 tvg-id="CorfuTV.gr",Corfu TV (576p) [Not 24/7] +https://itv.streams.ovh/corfuchannel/corfuchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="Creta.gr",Creta (540p) [Not 24/7] +http://live.streams.ovh:1935/tvcreta/tvcreta/playlist.m3u8 +#EXTINF:-1 tvg-id="DiavataTV.gr",Diavata TV (720p) +https://video.streams.ovh:1936/DiavataTV/DiavataTV/playlist.m3u8 +#EXTINF:-1 tvg-id="Diktyo1.gr",Diktyo1 (360p) [Offline] +https://www.hellasnet.tv/rest.live.hn/diktyo1r/playlist.m3u8 +#EXTINF:-1 tvg-id="DipsoTV.gr",Dipso TV (720p) [Not 24/7] +https://live.cast-control.eu/ekpdipso/ekpdipso/playlist.m3u8 +#EXTINF:-1 tvg-id="EllasTV.gr",Ellas TV (1080p) +http://ellastv.gotdns.com:88/freetv/promo/index.m3u8 +#EXTINF:-1 tvg-id="EnaChannel.gr",Ena Channel (576p) [Not 24/7] +http://176.9.123.140:1935/1c/stream/master.m3u8 +#EXTINF:-1 tvg-id="EpirusTV1.gr",Epirus TV1 (1080p) [Not 24/7] +http://176.9.123.140:1935/radioepirus/radioepirus/playlist.m3u8 +#EXTINF:-1 tvg-id="ERT1.gr",ERT 1 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 +#EXTINF:-1 tvg-id="ERT2.gr",ERT 2 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_2/ert_2.m3u8 +#EXTINF:-1 tvg-id="ERT3.gr",ERT 3 (720p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_3/ert_3.m3u8 +#EXTINF:-1 tvg-id="ERTNews.gr",ERT News (720p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_news/ert_news.m3u8 +#EXTINF:-1 tvg-id="ERTSports2.gr",ERT Sports 2 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_2/ert_sports_2.m3u8 +#EXTINF:-1 tvg-id="ERTSports3.gr",ERT Sports 3 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_3/ert_sports_3.m3u8 +#EXTINF:-1 tvg-id="ERTSports.gr",ERT Sports (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports/ert_sports.m3u8 +#EXTINF:-1 tvg-id="ERTWorld.gr",ERT World (480p) +http://wpso.com:1936/hls/wzra.m3u8 +#EXTINF:-1 tvg-id="ERTWorld.gr",ERT World (720p) +http://ert-live-bcbs15228.siliconweb.com/media/ert_world/ert_world.m3u8 +#EXTINF:-1 tvg-id="ErtaLexTV.gr",Erta Lex TV [Offline] +https://vdo.alphaserver.gr:3203/stream/play.m3u8 +#EXTINF:-1 tvg-id="FarosTV2.gr",Faros TV2 (480p) [Geo-blocked] +https://s1.cystream.net/live/faros2/playlist.m3u8 +#EXTINF:-1 tvg-id="FarosTV.gr",Faros TV (540p) [Geo-blocked] +https://s1.cystream.net/live/faros1/playlist.m3u8 +#EXTINF:-1 tvg-id="Galaxy.gr",Galaxy (432p) [Geo-blocked] +https://channel.streams.ovh:1936/galaxygr-1/galaxygr-1/playlist.m3u8 +#EXTINF:-1 tvg-id="GreekCinema.gr",Greek Cinema (720p) [Offline] +https://vdo.alphaserver.gr:3613/stream/play.m3u8 +#EXTINF:-1 tvg-id="GreekTVLondon.gr",Greek TV London (720p) [Not 24/7] +https://vdo3.alphaserver.gr:3466/live/greektvlondonlive.m3u8 +#EXTINF:-1 tvg-id="GreekTVLondon.gr",Greek TV London (720p) [Not 24/7] +https://vdo3.alphaserver.gr:3466/stream/play.m3u8 +#EXTINF:-1 tvg-id="GroovyTV.gr",Groovy TV (544p) +http://web.onair-radio.eu:1935/groovytv/groovytv/playlist.m3u8 +#EXTINF:-1 tvg-id="HellenicTV.gr",Hellenic TV (360p) [Offline] +https://l5.cloudskep.com/hellenictv/htv/playlist.m3u8 +#EXTINF:-1 tvg-id="HighTV.gr",High TV (200p) [Not 24/7] +http://live.streams.ovh:1935/hightv/hightv/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseRaces.gr",Horse Races (432p) [Not 24/7] +https://odiehls-i.akamaihd.net/hls/live/233406/odie3/odie.m3u8 +#EXTINF:-1 tvg-id="IonianChannel.gr",Ionian Channel (720p) [Not 24/7] +https://stream.ioniantv.gr/ionian/live_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="IonianChannel.gr",Ionian Channel (1080p) [Not 24/7] +http://stream.ioniantv.gr:8081/ionian/live/playlist.m3u8 +#EXTINF:-1 tvg-id="IridaTV.gr",Irida TV (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.iri/playlist.m3u8 +#EXTINF:-1 tvg-id="KidsTV.gr",Kids TV (480p) +http://wpso.com:1936/hls/kidshd.m3u8 +#EXTINF:-1 tvg-id="KontraChannel.gr",Kontra Channel (1080p) +http://flashcloud.mediacdn.com/live/kontratv/.m3u8 +#EXTINF:-1 tvg-id="KontraChannel.gr",Kontra Channel (1080p) +http://kontralive.siliconweb.com/live/kontratv/playlist.m3u8 +#EXTINF:-1 tvg-id="KPHTHTV.gr",KPHTH TV (720p) [Not 24/7] +http://live.cretetv.gr:1935/cretetv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="LiveTV.gr",Live TV (272p) [Offline] +https://vod.streams.ovh:3829/stream/play.m3u8 +#EXTINF:-1 tvg-id="MTV.gr",M.TV [Timeout] +http://78.83.87.222:9999/play/a015/index.m3u8 +#EXTINF:-1 tvg-id="MadGreekz.gr",Mad Greekζ (480p) [Not 24/7] +http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 +#EXTINF:-1 tvg-id="MagicTV.gr",Magic TV (480p) +https://itv.streams.ovh/magictv/magictv/playlist.m3u8 +#EXTINF:-1 tvg-id="MaroussiotikaTV.gr",Maroussiotika TV (480p) [Not 24/7] +http://maroussiotika.dynu.com:8000/greektv/FZlHCCdBHL1/359142 +#EXTINF:-1 tvg-id="MesogeiosTV.gr",Mesogeios TV (450p) +http://176.9.123.140:1935/mesogeiostv/stream/master.m3u8 +#EXTINF:-1 tvg-id="MGRTV.gr",MGR TV (540p) [Not 24/7] +https://vod.streams.ovh:3876/stream/play.m3u8 +#EXTINF:-1 tvg-id="MyRadioTV.gr",My Radio TV (360p) [Offline] +https://vdo.alphaserver.gr:3305/stream/play.m3u8 +#EXTINF:-1 tvg-id="NeaTV.gr",Nea TV (720p) +https://live.neatv.gr:8888/hls/neatv.m3u8 +#EXTINF:-1 tvg-id="NetmaxTV.gr",Netmax TV (720p) [Not 24/7] +http://live.netmaxtv.com:8080/live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NG.gr",NG (616p) +https://live.streams.ovh/NGradio/NGradio/playlist.m3u8 +#EXTINF:-1 tvg-id="NG.gr",NG (720p) +http://live.streams.ovh:1935/NGradio/NGradio/playlist.m3u8 +#EXTINF:-1 tvg-id="NotioiTV.gr",Notioi TV (720p) +https://live.streams.ovh/YourStreaming/YourStreaming/playlist.m3u8 +#EXTINF:-1 tvg-id="NRG91.gr",NRG 91 (720p) [Not 24/7] +http://tv.nrg91.gr:1935/onweb/live/master.m3u8 +#EXTINF:-1 tvg-id="NRGTV.gr",NRG TV (720p) +https://5c389faa13be3.streamlock.net:9553/onweb/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NSTV.gr",NS TV (480p) [Not 24/7] +http://176.9.123.140:1935/nstv1/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OpenTV.gr",Open TV (576p) [Not 24/7] +https://liveopencloud.siliconweb.com/1/ZlRza2R6L2tFRnFJ/eWVLSlQx/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="OpenTVBUP.gr",Open TV BUP [Timeout] +http://78.83.87.222:9999/play/a013/index.m3u8 +#EXTINF:-1 tvg-id="PellaTV.gr",Pella TV (576p) [Not 24/7] +https://video.streams.ovh:1936/pellatv/pellatv/master.m3u8 +#EXTINF:-1 tvg-id="PlayTV.gr",Play TV (480p) [Not 24/7] +http://web.onair-radio.eu:1935/Alpha-Host/Alpha-Host/playlist.m3u8 +#EXTINF:-1 tvg-id="PLP.gr",PLP (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.plp/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioEpistrofi.gr",Radio Epistrofi (540p) [Geo-blocked] +https://s1.cystream.net/live/epistrofi/playlist.m3u8 +#EXTINF:-1 tvg-id="ReloadPlay.gr",Reload Play (720p) +http://web.onair-radio.eu:1935/video/video/playlist.m3u8 +#EXTINF:-1 tvg-id="SamiakiTV.gr",Samiaki TV (540p) [Not 24/7] +http://live.cast-control.eu:1935/samiaki/samiaki/playlist.m3u8 +#EXTINF:-1 tvg-id="Sigma.gr",Sigma (576p) [Not 24/7] +https://sl2.sigmatv.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="",Skai (720p) +https://skai-live-back.siliconweb.com/media/cambria4/index.m3u8 +#EXTINF:-1 tvg-id="",Skai (720p) +https://skai-live.siliconweb.com/media/cambria4/index.m3u8 +#EXTINF:-1 tvg-id="SkaiBUP.gr",Skai BUP [Timeout] +http://78.83.87.222:9999/play/a016/index.m3u8 +#EXTINF:-1 tvg-id="SmileTV.gr",Smile TV (360p) [Geo-blocked] +https://s1.cystream.net/live/smile/playlist.m3u8 +#EXTINF:-1 tvg-id="Star.gr",Star (720p) +https://livestar.siliconweb.com/media/star1/star1mediumhd.m3u8 +#EXTINF:-1 tvg-id="StarBUP.gr",Star BUP [Timeout] +http://78.83.87.222:9999/play/a017/index.m3u8 +#EXTINF:-1 tvg-id="SuperB.gr",Super B (576p) [Not 24/7] +https://til.pp.ua:3424/live/superblive.m3u8 +#EXTINF:-1 tvg-id="SuperChannel.gr",Super Channel (300p) [Offline] +https://vdo.alphaserver.gr:3587/stream/play.m3u8 +#EXTINF:-1 tvg-id="Tilemousiki.gr",Tilemousiki (480p) [Not 24/7] +http://wpso.com:1936/hls/music1.m3u8 +#EXTINF:-1 tvg-id="TV100.gr",TV 100 (576p) [Not 24/7] +https://live.fm100.gr/hls/tv100/index.m3u8 +#EXTINF:-1 tvg-id="TVCreta.gr",TV Creta (540p) [Not 24/7] +https://live.streams.ovh/tvcreta/tvcreta/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVFilopoli.gr",TV Filopoli (240p) [Not 24/7] +http://live.streams.ovh:1935/tvfilopoli/tvfilopoli/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNotos.gr",TV Notos (720p) [Not 24/7] +https://eco.streams.ovh/notos/notos/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRodopi.gr",TV Rodopi (720p) [Offline] +https://video.connect4.gr/live/tvrodopi/playlist.m3u8 +#EXTINF:-1 tvg-id="Wixlar.gr",Wixlar (720p) +http://web.onair-radio.eu:1935/wixlar/wixlar/playlist.m3u8 +#EXTINF:-1 tvg-id="XalastraTV.gr",Xalastra TV (360p) +https://live.cast-control.eu/xalastratv/xalastratv/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.gr",Xplore (720p) [Geo-blocked] +http://web.onair-radio.eu:1935/explorecy/explorecy/playlist.m3u8 +#EXTINF:-1 tvg-id="ZerounoTV.gr",Zerouno TV (720p) +http://5db313b643fd8.streamlock.net:1935/ZerounoTV/ZerounoTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ZouglaTV.gr",Zougla TV (480p) +https://zouglalive-lh.akamaihd.net/i/zouglalive_1@340792/master.m3u8 +#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση 2 (540p) [Not 24/7] +https://streamer-cache.grnet.gr/parliament/hls/webtv2.m3u8 +#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση 3 (360p) +https://streamer-cache.grnet.gr/parliament/hls/webtv3.m3u8 +#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση (360p) +https://streamer-cache.grnet.gr/parliament/parltv.sdp/master.m3u8 +#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση (540p) +https://streamer-cache.grnet.gr/parliament/hls/webtv.m3u8 +#EXTINF:-1 tvg-id="EgnatiaTileorasi.gr",Εγνατία Τηλεόραση (576p) +https://video.streams.ovh:1936/egnatiatv/egnatiatv/index.m3u8 +#EXTINF:-1 tvg-id="Ekklisia.gr",Εκκλησία (1080p) +https://liveopen.siliconweb.com/openTvLive/openEcclessia/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ηλέκτρα TV (1080p) [Not 24/7] +http://167.86.89.20:5080/LiveApp/streams/064918158666216168224216.m3u8 +#EXTINF:-1 tvg-id="KritiTV.gr",Κρήτη TV (720p) [Not 24/7] +http://live.cretetv.gr:1935/cretetv/myStream/f1tv.m3u8 +#EXTINF:-1 tvg-id="MessatidaTV.gr",Μεσσάτιδα TV (480p) [Not 24/7] +https://vod.streams.ovh:3037/stream/play.m3u8 +#EXTINF:-1 tvg-id="",ΡΙΚ Sat (720p) [Not 24/7] +http://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrosTV1.gr",Σύρος TV1 (720p) [Not 24/7] +http://176.9.123.140:1935/msg116s/msg116s/playlist.m3u8 diff --git a/streams/gt.m3u b/streams/gt.m3u new file mode 100644 index 000000000..2671a19e0 --- /dev/null +++ b/streams/gt.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal3.gt",Canal 3 (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAntigua.gt",Canal Antigua (1080p) +https://streaming.canal32hn.com/CanalAntigua/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Guatevisión (720p) [Not 24/7] +https://ott.streann.com/loadbalancer/services/public/channels/5d6821172cdced7698d5a329/playlist.m3u8 +#EXTINF:-1 tvg-id="IglesiaDelCamino.gt",Iglesia Del Camino (480p) [Not 24/7] +http://streamingcontrol.com:1935/ectv/ectv/playlist.m3u8 +#EXTINF:-1 tvg-id="Televisiete.gt",Televisiete (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TN23.gt",TN 23 (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal23.smil/playlist.m3u8 diff --git a/streams/hk.m3u b/streams/hk.m3u new file mode 100644 index 000000000..715c6ef78 --- /dev/null +++ b/streams/hk.m3u @@ -0,0 +1,63 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",A1台 (720p) [Offline] +https://jc-qlive-play.jingchangkan.cn/live/3473_200508855_xR9m.m3u8 +#EXTINF:-1 tvg-id="CelestialClassicMovies.hk",Celestial Classic 天映经典 (540p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8 +#EXTINF:-1 tvg-id="CelestialMovies.hk",Celestial Movies (480p) [Geo-blocked] +http://210.210.155.35/qwr9ew/s/s33/index.m3u8 +#EXTINF:-1 tvg-id="CreationTV.hk",Creation TV (720p) [Not 24/7] +http://al-pull2.hkatv.vip/live/CTV.m3u8 +#EXTINF:-1 tvg-id="HKSTV.hk",HKSTV (香港衛視) (720p) [Not 24/7] +https://al-pull2.hkatv.vip/live/hktv20210929.m3u8 +#EXTINF:-1 tvg-id="iModeTV.hk",iMode TV (1080p) [Not 24/7] +https://juyunlive.juyun.tv/live/24950198.m3u8 +#EXTINF:-1 tvg-id="Kix.hk",Kix (720p) [Geo-blocked] +https://livecdn.fptplay.net/hda/kixhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Kix.hk",Kix [Geo-blocked] +http://210.210.155.35/uq2663/h/h07/01.m3u8 +#EXTINF:-1 tvg-id="PhoenixChineseChannel.hk",Phoenix Chinese Channel (鳳凰衛視中文) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PCC.m3u8 +#EXTINF:-1 tvg-id="",Phoenix Hong Kong Channel (鳳凰衛視香港) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PHK.m3u8 +#EXTINF:-1 tvg-id="PhoenixInfoNewsChannel.hk",Phoenix InfoNews Channel (鳳凰衛視資訊) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PIN.m3u8 +#EXTINF:-1 tvg-id="",RTHK (港台電視31) (1080p) [Geo-blocked] +https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 +#EXTINF:-1 tvg-id="",RTHK (港台電視32) (1080p) [Not 24/7] +https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 +#EXTINF:-1 tvg-id="StarSports.hk",Star Sports [Offline] +rtmp://ivi.bupt.edu.cn:1935/livetv/starsports +#EXTINF:-1 tvg-id="Thrill.hk",Thrill (360p) [Geo-blocked] +http://45.126.83.51/qwr9ew/s/s34/02.m3u8 +#EXTINF:-1 tvg-id="Thrill.hk",Thrill (480p) [Geo-blocked] +http://45.126.83.51/qwr9ew/s/s34/index.m3u8 +#EXTINF:-1 tvg-id="TVBJade.hk",TVB Jade [Offline] +http://ubaio.chaoniu1995.top:6796/ub/cr/crtv.php?id=30 +#EXTINF:-1 tvg-id="TVBXingHe.hk",TVB Xing He 星河 (720p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Xinhe/playlist.m3u8 +#EXTINF:-1 tvg-id="ViuTV.hk",ViuTV (720p) [Not 24/7] +https://cdn.hkdtmb.com/hls/99/index.m3u8 +#EXTINF:-1 tvg-id="ViuTVsix.hk",ViuTVsix [Timeout] +http://61.238.6.49:8000/bysid/96 +#EXTINF:-1 tvg-id="",亞旅衛視 (720p) [Not 24/7] +http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8 +#EXTINF:-1 tvg-id="",星空衛視 [Offline] +rtmp://58.200.131.2:1935/livetv/startv +#EXTINF:-1 tvg-id="",港台電視31 (1080p) [Not 24/7] +https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 +#EXTINF:-1 tvg-id="",港台電視32 (480p) [Not 24/7] +https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 +#EXTINF:-1 tvg-id="",翡翠台(81) (1080p) [Timeout] +http://61.238.6.49:8000/bysid/1 +#EXTINF:-1 tvg-id="",耀才財經台 (576p) +http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8 +#EXTINF:-1 tvg-id="",香港开电视 / HKSTV-HKS (720p) +http://media.fantv.hk/m3u8/archive/channel2.m3u8 +#EXTINF:-1 tvg-id="",香港衛視 (576p) [Not 24/7] +http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8 +#EXTINF:-1 tvg-id="",鳳凰衛視中文台 [Timeout] +http://221.179.217.70/PLTV/88888888/224/3221225942/1.m3u8 +#EXTINF:-1 tvg-id="",鳳凰衛視資訊台HD (720p) [Not 24/7] +http://117.169.120.138:8080/live/fhzixun/.m3u8 +#EXTINF:-1 tvg-id="",鳳凰衛視電影台 [Offline] +rtmp://ivi.bupt.edu.cn:1935/livetv/fhdy diff --git a/streams/hn.m3u b/streams/hn.m3u new file mode 100644 index 000000000..7d2858207 --- /dev/null +++ b/streams/hn.m3u @@ -0,0 +1,99 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlfaOmegaVision.hn",Alfa & Omega Visión (360p) +https://srv.panelcast.net/aovision/aovision/playlist.m3u8 +#EXTINF:-1 tvg-id="Alsacias.hn",Alsacias TV (ATV | Canal 28) (1080p) +https://emisoras.hn:8081/atv/index.m3u8 +#EXTINF:-1 tvg-id="AvivaTV.hn",Aviva TV (1080p) +https://video.misistemareseller.com/atvhonduras/atvhonduras/playlist.m3u8 +#EXTINF:-1 tvg-id="AZATV.hn",AZA TV (720p) +https://stmv1.zcastbr.com/azatvhd/azatvhd/playlist.m3u8 +#EXTINF:-1 tvg-id="CampusTV.hn",Campus TV (360p) [Not 24/7] +http://st2.worldkast.com/8004/8004/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal5ElLider.hn",Canal 5 El Líder (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k5MLnPhRpeAV0Xwgt0d +#EXTINF:-1 tvg-id="",Canal 6 (720p) +https://ott.streann.com/loadbalancer/services/public/channels/5ba026492cdc1a7124d02fb7/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9.hn",Canal 9 TeleDanlí (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8224/8224/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.hn",Canal 11 (720p) +https://mdstrm.com/live-stream-playlist/603d4e1fb042ce07c5c8f911.m3u8 +#EXTINF:-1 tvg-id="CanalSiTV.hn",Canal SiTV (410p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalUnodeChuloteca.hn",Canal Uno de Chuloteca (720p) [Not 24/7] +https://tvdatta.com:3392/live/portaldelsurhnlive.m3u8 +#EXTINF:-1 tvg-id="Catavision.hn",Catavisión (316p) [Not 24/7] +https://stmv1.zcastbr.com/catavision/catavision/playlist.m3u8 +#EXTINF:-1 tvg-id="CCIChannel.hn",CCI Channel (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x836wjl +#EXTINF:-1 tvg-id="CeibavisionCanal36.hn",Ceibavisión Canal 36 (1080p) [Not 24/7] +http://190.11.224.235:1935/CANAL36/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CholusatSur36.hn",Cholusat Sur 36 (214p) [Not 24/7] +http://audiotvserver.net:1935/livemedia/cholusat/playlist.m3u8 +#EXTINF:-1 tvg-id="CholutecaTV.hn",Choluteca TV (1080p) +https://emisoras.hn:8081/cholutecatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CHTV.hn",CHTV (Canal Hondureño de Televisión) (720p) [Offline] +https://media.streambrothers.com:1936/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="DiosTeVe.hn",Dios Te Ve (720p) +https://emisoras.hn:8081/diostevetv/playlist.m3u8 +#EXTINF:-1 tvg-id="DiosTeVeInfantil.hn",Dios Te Ve Infantil (720p) +https://emisoras.hn:8081/diostevekids/playlist.m3u8 +#EXTINF:-1 tvg-id="EbenezerTV.hn",Ebenezer TV (360p) [Not 24/7] +https://5b50404ec5e4c.streamlock.net/ebenezertv2/smil:ebenezertv2.smil/chunklist_w156791259_b850000_slen.m3u8 +#EXTINF:-1 tvg-id="EbenezerTV.hn",Ebenezer TV (1080p) [Not 24/7] +http://p1.worldkast.com/ebenezertv2/ngrp:ebenezertv2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EDNTV.hn",EDN TV (1080p) [Not 24/7] +https://60417ddeaf0d9.streamlock.net/edntv/videoedntv/playlist.m3u8 +#EXTINF:-1 tvg-id="GloboTV.hn",Globo TV (720p) [Not 24/7] +https://panel.dattalive.com/8122/8122/playlist.m3u8 +#EXTINF:-1 tvg-id="HCH.hn",HCH (Hable Como Habla) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81za5c +#EXTINF:-1 tvg-id="Hondured13.hn",Hondured 13 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x83axzj +#EXTINF:-1 tvg-id="JBN.hn",JBN (480p) +https://emisoras.hn:8081/jbn/index.m3u8 +#EXTINF:-1 tvg-id="KerussoTV.hn",Kerusso TV (720p) +https://emisoras.hn:8081/kerussotv/index.m3u8 +#EXTINF:-1 tvg-id="MetroTV.hn",La Metro TV (720p) +https://emisoras.hn:8081/metrotv/index.m3u8 +#EXTINF:-1 tvg-id="LencaTelevision.hn",Lenca Television (Canal 40) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv1.m3u8 +#EXTINF:-1 tvg-id="LTV.hn",LTV (288p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6022/6022/playlist.m3u8 +#EXTINF:-1 tvg-id="MayaTV.hn",Maya TV (360p) [Not 24/7] +https://media.streambrothers.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="MVC.hn",Mi Viña Canal (720p) [Not 24/7] +https://media.streambrothers.com:1936/8338/8338/master.m3u8 +#EXTINF:-1 tvg-id="OmegaTv.hn",Omega Tv (720p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/8142/8142/playlist.m3u8 +#EXTINF:-1 tvg-id="QhuboTV.hn",Q'hubo TV (410p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIdeal.hn",Radio Ideal 104.7 FM (La Esperanza) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv3.m3u8 +#EXTINF:-1 tvg-id="RadioImagen.hn",Radio Imagen 105.1 FM (La Esperanza) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv2.m3u8 +#EXTINF:-1 tvg-id="RHC.hn",Roatán Hable Claro (RHC) (720p) +https://stmv1.zcastbr.com/roatanhableclaro/roatanhableclaro/playlist.m3u8 +#EXTINF:-1 tvg-id="SercanoTV.hn",Sercano TV (720p) +http://stream.grupoabchn.com:1935/SERCANOHD/SERCANOLive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SuyapaTV.hn",Suyapa TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x833e2b +#EXTINF:-1 tvg-id="Teleceiba.hn",Teleceiba [Timeout] +http://190.11.224.14:8134/liveevent.m3u8 +#EXTINF:-1 tvg-id="TeleProgreso.hn",TeleProgreso (1080p) +https://stmv1.zcastbr.com/teleprogresohn/teleprogresohn/playlist.m3u8 +#EXTINF:-1 tvg-id="TelevisionComayaguaCanal40.hn",Television Comayagua Canal 40 (320p) [Not 24/7] +http://st2.worldkast.com/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="TENCanal10.hn",TEN Canal 10 (540p) [Not 24/7] +http://stream.grupoabchn.com:1935/TENHD/TENLIVEHD_2/playlist.m3u8 +#EXTINF:-1 tvg-id="TENCanal10.hn",TEN Canal 10 (720p) +http://stream.grupoabchn.com:1935/TENHD/TENLive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TSi.hn",TSI (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k3q8hF4Y9tzpTgwu26R +#EXTINF:-1 tvg-id="TVCopan.hn",TV Copán (480p) [Not 24/7] +https://emisoras.hn:8081/tvcopan/index.m3u8 +#EXTINF:-1 tvg-id="UNAHUTV.hn",UNAH UTV (360p) [Not 24/7] +https://live-utv.unah.edu.hn/web/salida.m3u8 +#EXTINF:-1 tvg-id="VidaTV.hn",Vida TV (720p) [Not 24/7] +http://184.173.181.2:1935/8070/8070/playlist.m3u8 +#EXTINF:-1 tvg-id="WaldivisionInternacional.hn",Waldivisión Internacional (720p) [Not 24/7] +https://tvdatta.com:3934/live/waldivisionlive.m3u8 diff --git a/streams/hr.m3u b/streams/hr.m3u new file mode 100644 index 000000000..ffaca42f7 --- /dev/null +++ b/streams/hr.m3u @@ -0,0 +1,31 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HRT1.hr",HRT 1 (720p) +http://195.29.70.67/PLTV/88888888/224/3221226139/index.m3u8 +#EXTINF:-1 tvg-id="HRT1.hr",HRT 1 (720p) +http://195.29.70.84/PLTV/88888888/224/3221226139/index.m3u8 +#EXTINF:-1 tvg-id="HRT2.hr",HRT 2 (720p) +http://195.29.70.67/PLTV/88888888/224/3221226140/index.m3u8 +#EXTINF:-1 tvg-id="HRT2.hr",HRT 2 (720p) +http://195.29.70.82/PLTV/88888888/224/3221226140/index.m3u8 +#EXTINF:-1 tvg-id="HRT3.hr",HRT 3 (720p) +http://195.29.70.67/PLTV/88888888/224/3221226280/index.m3u8 +#EXTINF:-1 tvg-id="HRT4.hr",HRT 4 (720p) +http://195.29.70.67/PLTV/88888888/224/3221226281/index.m3u8 +#EXTINF:-1 tvg-id="HRT4.hr",HRT 4 (720p) +http://195.29.70.89/PLTV/88888888/224/3221226281/index.m3u8 +#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr",MAXtv Promo Kanal (528p) +http://195.29.70.67/PLTV/88888888/224/3221226027/index.m3u8 +#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr",MAXtv Promo Kanal (528p) +http://195.29.70.84/PLTV/88888888/224/3221226027/index.m3u8 +#EXTINF:-1 tvg-id="NewsBar.hr",NewsBar (528p) [Offline] +http://195.29.70.89/PLTV/88888888/224/3221226407/index.m3u8 +#EXTINF:-1 tvg-id="OTV.hr",OTV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x654gen +#EXTINF:-1 tvg-id="RadioTelevizijaBanovina.hr",Radio Televizija Banovina (360p) [Not 24/7] +rtmp://video.radio-banovina.hr/live/myStream +#EXTINF:-1 tvg-id="RTLHrvatska.de",RTL (720p) +http://195.29.70.67/PLTV/88888888/224/3221226195/index.m3u8 +#EXTINF:-1 tvg-id="TVJadran.hr",TV Jadran (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x670ug8 +#EXTINF:-1 tvg-id="TVNova.hr",TV Nova (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x694rtu diff --git a/streams/ht.m3u b/streams/ht.m3u new file mode 100644 index 000000000..14dc1a17b --- /dev/null +++ b/streams/ht.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HaitiViralNews.ht",Haiti Viral News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcEY2-g-EEefxyYa1gtrk4g/live +#EXTINF:-1 tvg-id="KajouTV.ht",Kajou TV (480p) [Not 24/7] +https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8 +#EXTINF:-1 tvg-id="NETALKOLETV.ht",NETALKOLE TV (720p) [Not 24/7] +https://watch.haitilive.net/stream/netalkole/public/tv/index.m3u8 +#EXTINF:-1 tvg-id="",Radio Télé 4VEH (720p) +https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Radio Télé 4VEH (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClL_aynC_SESNLQEJHqO9MQ/live +#EXTINF:-1 tvg-id="RadioTeleAmen.ht",Radio Tele Amen FM (360p) [Not 24/7] +http://184.173.179.163:1935/daniel/daniel/playlist.m3u8 +#EXTINF:-1 tvg-id="",Radio Télé Eclair (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOvGbDh5biuOqjx6G3CdrQg/live +#EXTINF:-1 tvg-id="RadioTelePititManmanMari.ht",Radio Télé Pitit Manman Mari (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCLeNHM8XDkZmd2rhV3ZG7Vg/live +#EXTINF:-1 tvg-id="RadioTelePlanetCompas.ht",Radio Tele Planet Compas (720p) [Not 24/7] +https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTeleShalom.ht",Radio Tele Shalom (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBJ9zxns1hxblYZw4urBd_w/live +#EXTINF:-1 tvg-id="RTVC.ht",Radio Télévision Caraïbes (RTVC) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81lgjh +#EXTINF:-1 tvg-id="",Radio Télévision Hirondelle (480p) [Not 24/7] +https://watch.haitilive.net/gethb/rtvh16/index.m3u8 +#EXTINF:-1 tvg-id="TCH.ht",Télé Conscience Haïtienne (TCH) (720p) [Not 24/7] +http://tvlakay.haitilive.net/website/tchhaiti/player/mono.m3u8 +#EXTINF:-1 tvg-id="TeleHaiti.ht",Tele Haiti (1088p) [Timeout] +http://66.175.238.147:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleLouange.ht",Tele Louange (720p) +https://5790d294af2dc.streamlock.net/8124/8124/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVPanou.ht",TV Panou (720p) [Not 24/7] +http://tvpanoucom.srfms.com:1935/tvpanoucom/livestream/playlist.m3u8 diff --git a/streams/hu.m3u b/streams/hu.m3u new file mode 100644 index 000000000..8f7b4944d --- /dev/null +++ b/streams/hu.m3u @@ -0,0 +1,83 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",1Mus (720p) [Not 24/7] +http://hz1.teleport.cc/HLS/HD.m3u8 +#EXTINF:-1 tvg-id="",1Music Channel Hungary (576p) +http://1music.hu/1music.m3u8 +#EXTINF:-1 tvg-id="",1Music Channel Hungary (576p) +http://www.1music.hu/1music.m3u8 +#EXTINF:-1 tvg-id="ApostolTV.hu",Apostol TV (576p) [Not 24/7] +https://live.apostoltv.hu/online/smil:gazdagret.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.hu",ATV (160p) +http://streamservers.atv.hu/atvlive/atvstream_1_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.hu",ATV (360p) [Not 24/7] +https://stream.atv.hu/atvlive/atvstream_2_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="BalatonTV.hu",Balaton TV (432p) +https://stream.iptvservice.eu/hls/balatontv.m3u8 +#EXTINF:-1 tvg-id="",Bonum TV (360p) +https://stream.y5.hu/stream/stream_bonum/stream.m3u8 +#EXTINF:-1 tvg-id="Budakalasz.hu",Budakalasz (1080p) [Not 24/7] +https://stream.streaming4u.hu/TVBudakalasz/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="CoolTV.hu",Cool TV (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_cool/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="CoolTV.hu",Cool TV (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_cool/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="DTV.hu",DTV (720p) [Not 24/7] +http://cloudfront44.lexanetwork.com:1732/hlsrelay003/hls/livestream.sdp.m3u8 +#EXTINF:-1 tvg-id="ErdelyTV.hu",Erdely TV [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$ErdelyTV/6.m3u8/Level(1677721)?end=END&start=LIVE +#EXTINF:-1 tvg-id="",FEM3 [Geo-blocked] +https://streaming.mytvback.com/stream/Nc8b6c6tUH4gh3GdRR-zFw/1617462698/channel016/stream.m3u8 +#EXTINF:-1 tvg-id="FilmPlus.hu",Film+ (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_filmp/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="FilmPlus.hu",Film+ (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_filmp/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="HTMusicChannel.hu",H!T Music Channel (480p) +http://hitmusic.hu/hitmusic.m3u8 +#EXTINF:-1 tvg-id="HalomTV.hu",Halom TV (540p) +http://stream.battanet.hu:8080/hls/livestream1/1_2/index.m3u8 +#EXTINF:-1 tvg-id="Hatoscsatorna.hu",Hatoscsatorna (360p) +https://hatoscsatorna.hu:8082/Hatoscsatorna/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Hatoscsatorna.hu",Hatoscsatorna (360p) [Offline] +rtmp://lpmedia.hu:1935/Hatoscsatorna/livestream +#EXTINF:-1 tvg-id="HegyvidekTvBudapest.hu",Hegyvidek Tv Budapest (576p) [Not 24/7] +http://tv.hegyvidek.hu/stream_mpeg.flv +#EXTINF:-1 tvg-id="IzauraTV.hu",Izaura TV [Geo-blocked] +https://streaming.mytvback.com/stream/1aMW5tqyOFpH3swBdowx9Q/1617462678/channel040/stream-br1872000.m3u8 +#EXTINF:-1 tvg-id="KecskemetiTV.hu",Kecskemeti TV (416p) [Not 24/7] +http://rtmp1.40e.hu:8000/live/ktv.m3u8 +#EXTINF:-1 tvg-id="KomlosTV.hu",Komlós TV (1080p) [Not 24/7] +https://stream.streaming4u.hu/KomlosTV/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="LifeTV.hu",Life TV [Geo-blocked] +https://streaming.mytvback.com/stream/2WVTzaaqRtQ3cZ02Qd7rPA/1617462690/channel043/stream-br572000.m3u8 +#EXTINF:-1 tvg-id="Loversenykozvetites.hu",Lóverseny közvetítés (420p) +http://87.229.103.60:1935/liverelay/loverseny2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="M1.hu",M1 (480p) [Offline] +https://c402-node61-cdn.connectmedia.hu/1100/52a0c3d17a5a9b5968ac73b7288a08c9/6184f343/03.m3u8 +#EXTINF:-1 tvg-id="M3.hu",M3 [Geo-blocked] +https://stream9.nava.hu/m3_live_bdrm/_definst_/smil:m3_1080p_loop_nodrm.smil/chunklist_w72397576_b881072_slhun.m3u8?lb=b4bp7xeKAKovH1uDWU5XusWC/SZexs+JNLmxYvSb34kGup6SGRTTm5UkNNjfC62mmvYbuEqrt04E++Exer5ZNS/WN6JyMpY6GiuOU2osRulnM+gNsTWVD8z+LJt4imqAka++&platform=web_embed&sessid=Z4gLTQezzXGgWvNkiypb5PkmR64U1aoH3lFII14l3Mp2dZ5OtLoKQQY7XOn943ns&type=m3u8 +#EXTINF:-1 tvg-id="MUSICPlus.hu",MUSIC + (720p) [Not 24/7] +http://s02.diazol.hu:10192/stream.m3u8 +#EXTINF:-1 tvg-id="OzdiVarosiTV.hu",Ózdi Városi TV (720p) [Not 24/7] +https://stream.unrealhosting.hu:7982/live.m3u8 +#EXTINF:-1 tvg-id="PannonRTV.hu",Pannon RTV (648p) +https://stream.unrealhosting.hu:4102/live.m3u8 +#EXTINF:-1 tvg-id="RTLGold.hu",RTL Gold (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlgold/stream.m3u8 +#EXTINF:-1 tvg-id="RTLII.hu",RTL II (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtl2/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="RTLII.hu",RTL II (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtl2/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="RTLKlub.hu",RTL Klub (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlklub/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="RTLKlub.hu",RTL Klub (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlklub/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="RTLPlus.hu",RTL+ (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlp/stream.m3u8 +#EXTINF:-1 tvg-id="SorozatPlus.hu",Sorozat+ (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_sorozatp/stream.m3u8 +#EXTINF:-1 tvg-id="TiszaTV.hu",Tisza TV (576p) [Not 24/7] +https://www.tiszatv.hu/onlinetv/tiszatv_1.m3u8 +#EXTINF:-1 tvg-id="TV7Bekescsaba.hu",TV7 Bekescsaba (360p) +https://stream.y5.hu/stream/stream_bekescsaba/stream.m3u8 +#EXTINF:-1 tvg-id="VTVFuzesabony.hu",VTV Füzesabony (720p) [Not 24/7] +https://stream.unrealhosting.hu:7962/live.m3u8 diff --git a/streams/id.m3u b/streams/id.m3u new file mode 100644 index 000000000..4ff6f63eb --- /dev/null +++ b/streams/id.m3u @@ -0,0 +1,289 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BeritaSatu.id",BeritaSatu (540p) +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:beritasatunewsbs/playlist.m3u8 +#EXTINF:-1 tvg-id="BeritaSatu.id",BeritaSatu (720p) +https://b1news.beritasatumedia.com/Beritasatu/B1News_manifest.m3u8 +#EXTINF:-1 tvg-id="BeritaSatuEnglish.id",BeritaSatu English (540p) [Not 24/7] +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsenglish/playlist.m3u8 +#EXTINF:-1 tvg-id="BeritaSatuWorld.id",BeritaSatu World (540p) [Not 24/7] +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsnew/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCIndonesia.id",CNBC Indonesia (720p) +https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/master.m3u8 +#EXTINF:-1 tvg-id="CNNIndonesia.id",CNN Indonesia (720p) +https://live.cnnindonesia.com/livecnn/smil:cnntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.id",GTV (720p) +https://vcdn2.rctiplus.id/live/eds/gtv_fta/live_fta/gtv_fta.m3u8 +#EXTINF:-1 tvg-id="",HIDUP TV (568p) [Timeout] +http://202.93.133.3:1935/SVR1/ch_hiduptv.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Hits.id",Hits (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/HITS/sa_dash_vmx/HITS.mpd +#EXTINF:-1 tvg-id="HitsMovies.id",Hits Movies (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/HitsMovies/sa_dash_vmx/HitsMovies.mpd +#EXTINF:-1 tvg-id="",I AM CHANNEL (576p) [Not 24/7] +http://iamchannel.org:1935/tes/1/playlist.m3u8 +#EXTINF:-1 tvg-id="IndonesiaChannel.id",Indonesia Channel (720p) [Not 24/7] +http://wowzaprod236-i.akamaihd.net/hls/live/1019903/7dd4cf51/playlist.m3u8 +#EXTINF:-1 tvg-id="Indosiar.id",Indosiar [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/205-indosiar +#EXTINF:-1 tvg-id="",iNews (720p) +https://vcdn2.rctiplus.id/live/eds/inews_fta/live_fta/inews_fta.m3u8 +#EXTINF:-1 tvg-id="KompasTV.id",Kompas TV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/874-kompas-tv +#EXTINF:-1 tvg-id="MetroTV.id",Metro TV (720p) [Not 24/7] +http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MNCTV.id",MNCTV (720p) +https://vcdn2.rctiplus.id/live/eds/mnctv_fta/live_fta/mnctv_fta.m3u8 +#EXTINF:-1 tvg-id="MyTV.id",MyTV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/6711-mytv +#EXTINF:-1 tvg-id="NetTV.id",Net. TV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/875-net-tv +#EXTINF:-1 tvg-id="OChannel.id",O Channel [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/206-ochannel +#EXTINF:-1 tvg-id="OneTV.id",One TV (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/SetOne/sa_dash_vmx/SetOne.mpd +#EXTINF:-1 tvg-id="Radio51TV.id",Radio 51 TV (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="RCTI.id",RCTI (720p) +https://vcdn2.rctiplus.id/live/eds/rcti_fta/live_fta/rcti_fta.m3u8 +#EXTINF:-1 tvg-id="Reformed21.id",Reformed 21 (540p) +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:reformedch/playlist.m3u8 +#EXTINF:-1 tvg-id="RRINet.id",RRI Net (720p) [Not 24/7] +http://36.89.47.217:11935/rrinet/live/index.m3u8 +#EXTINF:-1 tvg-id="RTV.id",RTV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/1561-rtv +#EXTINF:-1 tvg-id="SCTV.id",SCTV (480p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/SCTV/sa_dash_vmx/SCTV.mpd +#EXTINF:-1 tvg-id="Trans7.id",Trans7 (720p) [Not 24/7] +https://video.detik.com/trans7/smil:trans7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TransTV.id",Trans TV (720p) +https://video.detik.com/transtv/smil:transtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKU.id",TVKU (720p) [Not 24/7] +http://103.30.1.14:8080/hls/live.m3u8 +#EXTINF:-1 tvg-id="TVRParlemen.id",TVR Parlemen (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanAnggaran.id",TVR Parlemen Badan Anggaran [Not 24/7] +http://103.18.181.69:1935/golive/livestreambanggar/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanLegislatif.id",TVR Parlemen Badan Legislatif (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestreambaleg/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanMusyawarah.id",TVR Parlemen Badan Musyawarah [Not 24/7] +http://103.18.181.69:1935/golive/livestreambamus/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBAKN.id",TVR Parlemen BAKN [Not 24/7] +http://103.18.181.69:1935/golive/livestreambakn/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBKSAP.id",TVR Parlemen BKSAP [Not 24/7] +http://103.18.181.69:1935/golive/livestreambksap/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiI.id",TVR Parlemen Komisi I (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiII.id",TVR Parlemen Komisi II (1080p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIII.id",TVR Parlemen Komisi III (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIV.id",TVR Parlemen Komisi IV (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream4/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIX.id",TVR Parlemen Komisi IX (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream9/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiV.id",TVR Parlemen Komisi V (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream5/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVI.id",TVR Parlemen Komisi VI (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream6/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVII.id",TVR Parlemen Komisi VII (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream7/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVIII.id",TVR Parlemen Komisi VIII (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream8/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiX.id",TVR Parlemen Komisi X (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream10/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiXI.id",TVR Parlemen Komisi XI (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream11/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIAceh)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBali)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBabel)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBengkulu)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIdki)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIGorontalo)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJambi)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJabarandung)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatengsemarang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatimsurbaya)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalbar)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalselbanjarmsn)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalteng)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKaltimsamarinda)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRILampung)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIMalukuambon)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (136p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (480p) +http://202.80.222.130/000001/2/ch14041511560872104862/index.m3u8?virtualDomain=000001.live_hls.zte.com +#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINasional)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINtbmataram)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINttkupang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIPapua)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulselmakasar)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultengpalu)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultra)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulutmanado)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id",TVRI Sumatera Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id",TVRI Sumatera Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id" status="error",TVRI Sumatera Barat (720p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumparpadang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumsel)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumutmedan)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIYogyakarta)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 diff --git a/streams/ie.m3u b/streams/ie.m3u new file mode 100644 index 000000000..b1aaf074d --- /dev/null +++ b/streams/ie.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="OireachtasTV.ie",Oireachtas TV (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/oirtv/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom1.ie",Oireachtas TV Committee Room 1 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr1/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom2.ie",Oireachtas TV Committee Room 2 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr2/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom3.ie",Oireachtas TV Committee Room 3 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr3/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom4.ie",Oireachtas TV Committee Room 4 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr4/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVDailEireann.ie",Oireachtas TV Dáil Éireann (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/dail/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVSeanadEireann.ie",Oireachtas TV Seanad Éireann (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/seanad/hls.m3u8 +#EXTINF:-1 tvg-id="RTENews.ie",RTÉ News (1080p) [Geo-blocked] +https://live.rte.ie/live/a/channel3/news.isml/.m3u8 diff --git a/streams/ie_samsung.m3u b/streams/ie_samsung.m3u new file mode 100644 index 000000000..f006fd085 --- /dev/null +++ b/streams/ie_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) +https://rakuten-africanews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/il.m3u b/streams/il.m3u new file mode 100644 index 000000000..7d0cf599b --- /dev/null +++ b/streams/il.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AsaChild.il",As a Child (576p) +https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/playlist.m3u8 +#EXTINF:-1 tvg-id="",ch 21 ערוץ הקניות (360p) [Timeout] +http://82.80.192.30/shoppingil_ShoppingIL21TVRepeat/smil:ShoppingIL21TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel2News.il",Channel 2 News (360p) +https://keshethlslive-lh.akamaihd.net/i/c2n_1@195269/master.m3u8 +#EXTINF:-1 tvg-id="Channel9.il",Channel 9 (540p) [Not 24/7] +http://50.7.231.221:8081/185/index.m3u8?wmsAuthSign=okad +#EXTINF:-1 tvg-id="Channel12.il",Channel 12 (576p) [Offline] +http://93.152.174.144:4000/play/ch12/index.m3u8 +#EXTINF:-1 tvg-id="Channel13.il",Channel 13 (576p) [Offline] +http://93.152.174.144:4000/play/ch13/index.m3u8 +#EXTINF:-1 tvg-id="Channel24.il",Channel 24 (720p) +https://keshethlslive-lh.akamaihd.net/i/24live_1@195271/index_2200_av-b.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (240p) [Not 24/7] +https://live2.panet.co.il/edge_abr/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (576p) [Not 24/7] +https://gstream4.panet.co.il/edge/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (1080p) [Not 24/7] +https://live1.panet.co.il/edge_abr/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) +https://stream5.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) +https://stream72.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) [Not 24/7] +https://stream71.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IsraelParsTV.il",Israel Pars TV (540p) +https://live.pars-israel.com/iptv/stream.m3u8 +#EXTINF:-1 tvg-id="KabbalahforthePeopleIsrael.il",Kabbalah for the People (Israel) (504p) [Not 24/7] +https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8 +#EXTINF:-1 tvg-id="KAN11Israel.il",KAN 11 Israel (432p) [Geo-blocked] +https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8 +#EXTINF:-1 tvg-id="KAN11Israel.il",KAN 11 Israel (720p) [Offline] +http://93.152.174.144:4000/play/kan11/index.m3u8 +#EXTINF:-1 tvg-id="Keshet12.il",Keshet 12 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Hebrew/keshet_12 +#EXTINF:-1 tvg-id="KnessetChannel.il",Knesset Channel (480p) [Not 24/7] +https://contact.gostreaming.tv/Knesset/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Makan33.il",Makan 33 (576p) [Geo-blocked] +https://kanlivep2event-i.akamaihd.net/hls/live/747613/747613/master.m3u8 +#EXTINF:-1 tvg-id="MusayofIsrael.il",Musayof (Israel) (240p) [Not 24/7] +http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Reshet13.il",Reshet 13 (720p) +https://d18b0e6mopany4.cloudfront.net/out/v1/08bc71cf0a0f4712b6b03c732b0e6d25/index.m3u8 +#EXTINF:-1 tvg-id="Sport2.il",Sport 2 (720p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport2/index.m3u8 +#EXTINF:-1 tvg-id="Sport3.il",Sport 3 (1080p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport3/index.m3u8 +#EXTINF:-1 tvg-id="Sport4.il",Sport 4 (1080p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport4/index.m3u8 +#EXTINF:-1 tvg-id="SportsChannel.il",Sports Channel (720p) [Not 24/7] +http://93.152.174.144:4000/play/s5plus/index.m3u8 +#EXTINF:-1 tvg-id="YnetLive.il",Ynet Live (1080p) +https://ynet-lh.akamaihd.net/i/ynet_1@123290/master.m3u8 diff --git a/streams/in.m3u b/streams/in.m3u new file mode 100644 index 000000000..5435ccf1b --- /dev/null +++ b/streams/in.m3u @@ -0,0 +1,829 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3TamilTV.in",3 Tamil TV (720p) [Not 24/7] +https://6n3yogbnd9ok-hls-live.5centscdn.com/threetamil/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 +#EXTINF:-1 tvg-id="7SMusic.in",7S Music (576p) [Not 24/7] +http://103.199.161.254/Content/7smusic/Live/Channel(7smusic)/index.m3u8 +#EXTINF:-1 tvg-id="9XJalwa.in",9X Jalwa (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nc/index.m3u8 +#EXTINF:-1 tvg-id="9XJhakaas.in",9X Jhakaas (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0mx/index.m3u8 +#EXTINF:-1 tvg-id="9XM.in",9XM (480p) +https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/9XM/9XM.isml/index.m3u8 +#EXTINF:-1 tvg-id="AndFlix.in",&Flix (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_2105335046 +#EXTINF:-1 tvg-id="AndPictures.in",&Pictures (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-tvpictureshd +#EXTINF:-1 tvg-id="AndPriveHD.in",&privé HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-privéhd +#EXTINF:-1 tvg-id="AndTVHD.in",&TV HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-tvhd_0 +#EXTINF:-1 tvg-id="ANEWSdonsTVBhangraFlava.in",A NEWSDONs TV- SWAG SADDA VAKRAA (720p) [Not 24/7] +http://newsjatt.camdvr.org:1935/newsjatt/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="AajTak.in",Aaj Tak (360p) [Geo-blocked] +https://lmil.live-s.cdn.bitgravity.com/cdn-live/_definst_/lmil/live/aajtak_app.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AathavanTV.in",Aathavan TV (720p) [Not 24/7] +http://45.77.66.224:1935/athavantv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ABPAnanda.in" status="online",ABP Ananda (720p) +https://abp-i.akamaihd.net/hls/live/765530/abpananda/master.m3u8 +#EXTINF:-1 tvg-id="ABPAsmita.in",ABP Asmita (324p) +http://abpasmita-lh.akamaihd.net/i/abpasmita_1@77821/master.m3u8 +#EXTINF:-1 tvg-id="ABPAsmita.in",ABP Asmita (720p) +https://abp-i.akamaihd.net/hls/live/765532/abpasmita/master.m3u8 +#EXTINF:-1 tvg-id="ABPHindi.in",ABP Hindi (324p) +http://hindiabp-lh.akamaihd.net/i/hindiabp1new_1@192103/master.m3u8 +#EXTINF:-1 tvg-id="ABPHindi.in",ABP Hindi (720p) +https://abp-i.akamaihd.net/hls/live/765529/abphindi/master.m3u8 +#EXTINF:-1 tvg-id="ABPMajha.in",ABP Majha (720p) +https://abp-i.akamaihd.net/hls/live/765531/abpmajha/master.m3u8 +#EXTINF:-1 tvg-id="ACV.in",ACV [Offline] +https://acv.asianetmobiletvplus.com/webstreams/8f8e72769cb3e3a6e27c220e1e3887b8.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVJukebox.in",ACV JukeBox (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/acvjukebox_awannbgiynqynhufohawnvbmlgglfpuc/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVNews.in",ACV News (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/acvnews_3e85eb4c12bd2110d3f495676205d50a/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVPlus.in" status="error",ACV Plus (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/acvplus_ef22daf97d61acb4bf52376c4105ad02/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVUtsav.in",ACV Utsav (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/acvutsav_021c9292219a98f899a7b74f0f34baa7/playlist.m3u8 +#EXTINF:-1 tvg-id="ADNGold.in",ADN Gold (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/adngold_dibbcspwxywdcuwawgrvurjwitwbiksl/playlist.m3u8 +#EXTINF:-1 tvg-id="AkaramKidz.in",Akaram Kidz (720p) [Not 24/7] +http://akaram.zecast.net/akaram-live/akaramkidz/index.m3u8 +#EXTINF:-1 tvg-id="AKDCalcuttaNews.in",AKD Calcutta News (540p) [Geo-blocked] +https://d39iawgzv3h0yo.cloudfront.net/out/v1/1ef4344a3b4a41908915d58ac7bd5e23/index.m3u8 +#EXTINF:-1 tvg-id="AmarUjala.in",Amar Ujala (360p) [Not 24/7] +https://streamcdn.amarujala.com/live/smil:stream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AmritaTV.in",Amrita TV (576p) +http://103.199.161.254/Content/amrita/Live/Channel(Amrita)/index.m3u8 +#EXTINF:-1 tvg-id="Anjan.in",Anjan (720p) [Not 24/7] +https://f3.vstream.online:7443/bstb/ngrp:anjan_hdall/playlist.m3u8 +#EXTINF:-1 tvg-id="ApnaPunjab.in",Apna Punjab (720p) +http://cdn5.live247stream.com/apnapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ArtistAloud.in",Artist Aloud (480p) [Not 24/7] +https://live.hungama.com/linear/artist-aloud/playlist.m3u8 +#EXTINF:-1 tvg-id="AshrafiChannel.in",Ashrafi Channel (484p) [Not 24/7] +http://ashrafichannel.livebox.co.in/ashrafivhannelhls/live.m3u8 +#EXTINF:-1 tvg-id="AsianetMiddleEast.in",Asianet Middle East (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0k6/index.m3u8 +#EXTINF:-1 tvg-id="AsianetNews.in",Asianet News (576p) +http://103.199.161.254/Content/asianetnews/Live/Channel(Asianetnews)/index.m3u8 +#EXTINF:-1 tvg-id="AsianetNews.in",Asianet News (720p) [Not 24/7] +https://vidcdn.vidgyor.com/asianet-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsBangla.in",Asianet News Bangla (360p) [Not 24/7] +https://vidcdn.vidgyor.com/rplus-origin/rplusasianetlive/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsKannada.in",Asianet News Kannada (360p) [Not 24/7] +https://vidcdn.vidgyor.com/suvarna-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsTamil.in",Asianet News Tamil (360p) [Not 24/7] +https://vidcdn.vidgyor.com/ptm-origin/aslive/playlist.m3u8 +#EXTINF:-1 tvg-id="AssamTalks.in",Assam Talks (240p) [Not 24/7] +http://vidnetcdn.vidgyor.com/assamtalks-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNBangla.in",ATN Bangla (1080p) [Offline] +http://103.81.104.118/hls/stream17.m3u8 +#EXTINF:-1 tvg-id="AyushTV.in",Ayush TV (360p) [Not 24/7] +https://95eryw39dwn4-hls-live.wmncdn.net/Ayushu/271ddf829afeece44d8732757fba1a66.sdp/index.m3u8 +#EXTINF:-1 tvg-id="B4UBhojpuri.in",B4U Bhojpuri (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nq/index.m3u8 +#EXTINF:-1 tvg-id="B4UHitz.in",B4U Hitz (720p) [Not 24/7] +http://14.199.164.20:4001/play/a0wh/index.m3u8 +#EXTINF:-1 tvg-id="B4UKadak.in",B4U Kadak (576p) [Not 24/7] +http://103.199.160.85/Content/moviehouse/Live/Channel(MovieHouse)/index.m3u8 +#EXTINF:-1 tvg-id="B4UMovies.in",B4U movies (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0wj/index.m3u8 +#EXTINF:-1 tvg-id="B4UMusic.in",B4U Music (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0wk/index.m3u8 +#EXTINF:-1 tvg-id="B4UPlus.in",B4U Plus (720p) [Not 24/7] +http://14.199.164.20:4001/play/a0wi/index.m3u8 +#EXTINF:-1 tvg-id="BflixMovies.in",Bflix Movies (480p) +https://m-c036-j2apps.s.llnwi.net/hls/5045.BFlixMovies.in.m3u8 +#EXTINF:-1 tvg-id="BhojpuriCinema.in",Bhojpuri Cinema (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0rj/index.m3u8 +#EXTINF:-1 tvg-id="Bollywood.in",Bollywood (480p) [Offline] +https://m-c09-j2apps.s.llnwi.net/hls/8001.Bollywood.in.m3u8 +#EXTINF:-1 tvg-id="BollywoodClassic.in",Bollywood Classic [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodClassic/6.m3u8/Level(1677721)?end=END&start=LIVE +#EXTINF:-1 tvg-id="BollyWoodHD.in",BollyWood HD [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodHD/247.m3u8/Level(3670016)?end=END&start=LIVE +#EXTINF:-1 tvg-id="BoogleBollywood.in",Boogle Bollywood (1080p) [Not 24/7] +http://live.agmediachandigarh.com/booglebollywood/774e3ea9f3fa9bcdac47f445b83b6653.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BoogleBollywood.in",Boogle Bollywood [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-165 +#EXTINF:-1 tvg-id="BoxCinema.in",Box Cinema (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0su/index.m3u8 +#EXTINF:-1 tvg-id="CaptainNews.in",Captain News (480p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=Xy1avvmtmRk +#EXTINF:-1 tvg-id="CaptainTV.in",Captain TV (576p) [Not 24/7] +http://103.199.160.85/Content/captain/Live/Channel(Captain)/index.m3u8 +#EXTINF:-1 tvg-id="Channel.in",Channel (720p) [Geo-blocked] +https://livecdn.fptplay.net/foxlive/channelvhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelDivya.in",Channel Divya (360p) [Not 24/7] +http://edge-ind.inapcdn.in:1935/berry1/latest.stream_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="",Channel Win (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/channelwinlive/channelwinlive/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelY.in",Channel Y (720p) [Not 24/7] +http://cdn19.live247stream.com/channely/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCAwaaz.in",CNBC Awaaz (504p) [Not 24/7] +https://cnbcawaaz-lh.akamaihd.net/i/cnbcawaaz_1@174872/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNBCBajar.in",CNBC Bajar (504p) [Geo-blocked] +https://cnbcbazar-lh.akamaihd.net/i/cnbcbajar_1@178933/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNBCTV18.in",CNBC TV18 (504p) +https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="Colors.in",Colors (720p) [Not 24/7] +http://master.beeiptv.com:8081/colors/colorsbdtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ColorsBangla.in",Colors Bangla (1080p) [Offline] +http://tvflix03.ddns.net/ColorsBangla_ENC/video.m3u8 +#EXTINF:-1 tvg-id="Dabangg.in",Dabangg (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nb/index.m3u8 +#EXTINF:-1 tvg-id="DarshanaTV.in",Darshana TV (576p) [Offline] +https://streaming37.worldbbtv.com/hls/darshana.m3u8 +#EXTINF:-1 tvg-id="DDBangla.in",DD Bangla (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-ddbangla +#EXTINF:-1 tvg-id="DDMalayalam.in",DD Malayalam (576p) +http://103.199.161.254/Content/ddmalayalam/Live/Channel(DDMalayalam)/index.m3u8 +#EXTINF:-1 tvg-id="DDNational.in",DD National (480p) [Not 24/7] +https://m-c036-j2apps.s.llnwi.net/hls/0098.DDNational.in.m3u8 +#EXTINF:-1 tvg-id="DDNational.in",DD National (576p) +http://103.199.161.254/Content/ddnational/Live/Channel(DDNational)/index.m3u8 +#EXTINF:-1 tvg-id="DDNews.in",DD News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCKwucPzHZ7zCUIf7If-Wo1g/live +#EXTINF:-1 tvg-id="DDPunjabi.in",DD Punjabi (576p) [Offline] +https://hls.media.nic.in/live/ddpunjabi1/index.m3u8 +#EXTINF:-1 tvg-id="DDSports.in",DD Sports (576p) +http://103.199.161.254/Content/ddsports/Live/Channel(DDSPORTS)/index.m3u8 +#EXTINF:-1 tvg-id="DesiBeatsHD.in",Desi Beats HD (720p) +http://cdn7.live247stream.com/desibeats/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DesiChannel.in",Desi Channel (720p) +https://live.wmncdn.net/desichannel/7e2dd0aed46b70a5c77f4affdb702e4b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DesiPlus.in",Desi Plus (720p) +http://cdn2.live247stream.com/desiplus/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Dhamaal.in",Dhamaal (1080p) [Not 24/7] +https://live.hungama.com/linear/dhamaal/playlist.m3u8 +#EXTINF:-1 tvg-id="Dhinchaak2.in",Dhinchaak 2 (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0tm/index.m3u8 +#EXTINF:-1 tvg-id="Dhinchaak.in",Dhinchaak (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0o5/index.m3u8 +#EXTINF:-1 tvg-id="DighvijayNews24x7.in",Dighvijay (240p) [Not 24/7] +https://vidcdn.vidgyor.com/dighvijay-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="DilSe.in",Dil Se (480p) [Not 24/7] +https://live.hungama.com/linear/dil-se/playlist.m3u8 +#EXTINF:-1 tvg-id="DishaTV.in",Disha TV (360p) [Not 24/7] +http://xlbor3aadvaj-hls-live.wmncdn.net/disha/stream.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Dishum.in",Dishum (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pe/index.m3u8 +#EXTINF:-1 tvg-id="Dishum.in",Dishum [Geo-blocked] +https://m-c29-j2apps.s.llnwi.net/hls/5332.Dishum.in.m3u8 +#EXTINF:-1 tvg-id="DivyaTV.in",Divya TV [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-divyatv +#EXTINF:-1 tvg-id="DocuBayTV.in",DocuBay TV (1080p) [Not 24/7] +https://docubayvh.s.llnwi.net/526a07ab-6ae7-4b6c-84a1-159791416484_1000004372_HLS/manifest.m3u8 +#EXTINF:-1 tvg-id="DreamTV.in",Dream TV (720p) [Not 24/7] +https://cloudflare-cdn301.ottpro.in/dream_media/reedeem/playlist.m3u8 +#EXTINF:-1 tvg-id="DreamzTV.in",Dreamz TV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/DREAMHD/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="DumTVKannada.in",Dum TV Kannada (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0sq/index.m3u8 +#EXTINF:-1 tvg-id="E24.in",E24 (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pc/index.m3u8 +#EXTINF:-1 tvg-id="EETTV.in",EET TV (1080p) [Not 24/7] +https://live.streamjo.com/eetlive/eettv.m3u8 +#EXTINF:-1 tvg-id="Enter10Bangla.in",Enter10 Bangla (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0j5/index.m3u8 +#EXTINF:-1 tvg-id="Enter10Rangeela.in",Enter10 Rangeela (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0tp/index.m3u8 +#EXTINF:-1 tvg-id="EpicTV.in",Epic TV [Geo-blocked] +https://m-c03-j2apps.s.llnwi.net/hls/2639.Epic.in.m3u8 +#EXTINF:-1 tvg-id="ETNow.in",ET Now (720p) +https://etnowweblive-lh.akamaihd.net/i/ETN_1@348070/master.m3u8 +#EXTINF:-1 tvg-id="ETVAndhraPradesh.in",ETV Andhra Pradesh (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSbwShxZsBiqqWwtUidmS6g/live +#EXTINF:-1 tvg-id="ETVChattisgarh.in",ETV Chattisgarh [Offline] +https://etv-mp.akamaized.net/i/etv_mp_hls_1@175737/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="ETVTelangana.in",ETV Telangana (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6ickpgDIsltU_-8CbZaksQ/live +#EXTINF:-1 tvg-id="ETVUttarakhand.in",ETV Uttarakhand [Offline] +https://etv-up.akamaized.net/i/etv_up_hls_1@175735/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="FaktMarathi.in",Fakt Marathi (480p) [Offline] +https://m-c036-j2apps.s.llnwi.net/hls/3200.FaktMarathi.in.m3u8 +#EXTINF:-1 tvg-id="FaktMarathi.in",Fakt Marathi (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0q8/index.m3u8 +#EXTINF:-1 tvg-id="FASTWAYNEWS.in",FASTWAY NEWS (720p) [Not 24/7] +http://163.47.214.155:1935/fwnews/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Filmeraa.in",Filmeraa (720p) +https://a.jsrdn.com/broadcast/7ef91d3d7a/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FlowersTV.in",Flowers TV (576p) +http://103.199.161.254/Content/flowers/Live/Channel(Flowers)/index.m3u8 +#EXTINF:-1 tvg-id="FoodFood.in",Food Food (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0qx/index.m3u8 +#EXTINF:-1 tvg-id="GabruuTV.in",Gabruu TV [Offline] +http://104.237.60.234/live/gabruutv.m3u8 +#EXTINF:-1 tvg-id="GaundaPunjabTV.in",Gaunda Punjab TV (720p) [Not 24/7] +http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GDNSLudhiana.in",GDNS Ludhiana (1080p) [Not 24/7] +http://akalmultimedia.net:1935/gdnslive/gdns-live/chunklist.m3u8 +#EXTINF:-1 tvg-id="GlobalPunjab.in",Global Punjab (720p) [Not 24/7] +https://media.streambrothers.com:1936/8522/8522/playlist.m3u8 +#EXTINF:-1 tvg-id="GSTV.in",GSTV (720p) [Not 24/7] +https://1-213-10546-44.b.cdn13.com/388656798579293628302251.m3u8 +#EXTINF:-1 tvg-id="HiDosti.in",Hi Dosti (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0rg/index.m3u8 +#EXTINF:-1 tvg-id="HiruTV.in",Hiru TV (360p) [Not 24/7] +http://cdncities.com/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="HulchulTV.in",Hulchul TV (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/jbani/index.m3u8 +#EXTINF:-1 tvg-id="HungamaTV.in",Hungama TV (576p) [Timeout] +http://103.153.39.34:8000/play/a04l/index.m3u8 +#EXTINF:-1 tvg-id="ILove.in",I Love (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0p3/index.m3u8 +#EXTINF:-1 tvg-id="Imayam.in",Imayam (480p) [Not 24/7] +https://idvd.multitvsolution.com/idvo/imayamtv.m3u8 +#EXTINF:-1 tvg-id="IndiaNews.in",India News (480p) +https://m-c036-j2apps.s.llnwi.net/hls/0442.IndiaNews.in.m3u8 +#EXTINF:-1 tvg-id="IndiaToday.in",India Today (720p) [Not 24/7] +https://indiatodaylive.akamaized.net/hls/live/2014320/indiatoday/indiatodaylive/playlist.m3u8 +#EXTINF:-1 tvg-id="IndiaTV.in",India TV (480p) [Not 24/7] +https://live-indiatvnews.akamaized.net/indiatv-origin/ITV_1_1@199237/playlist.m3u8 +#EXTINF:-1 tvg-id="IndiaTV.in",India TV (480p) [Not 24/7] +https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="IsaiAruvi.in",Isai Aruvi (576p) +http://103.199.161.254/Content/isaiaruvi/Live/Channel(IsaiAruvi)/index.m3u8 +#EXTINF:-1 tvg-id="JaihindTV.in",Jaihind TV (576p) +http://103.199.161.254/Content/jaihind/Live/Channel(Jaihind)/index.m3u8 +#EXTINF:-1 tvg-id="JanTV.in",Jan TV (360p) [Not 24/7] +http://jantvstream.in:1935/edge1/sc1jantv.stream_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="JanTV.in",Jan TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.youtube.com/channel/UCjmnq35TvJ1J8JZS49OPg-Q/live +#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ja/index.m3u8 +#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (720p) +https://vidcdn.vidgyor.com/janamtv-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNVkxRPqsBNejO6B9thG9Xw/live +#EXTINF:-1 tvg-id="JanapriyamTV.in",Janapriyam TV [Offline] +https://jio.instream.ml/jio.php?c=Janapriyam_News&e=.m3u8&q=400 +#EXTINF:-1 tvg-id="JanataaTV.in",Janataa TV [Not 24/7] +http://mydreams.livebox.co.in/Janataatvhls/Janataatv.m3u8 +#EXTINF:-1 tvg-id="JantaTV.in",Janta TV (360p) [Not 24/7] +https://live.wmncdn.net/jantatv/live.stream/index.m3u8 +#EXTINF:-1 tvg-id="JayaPlus.in",Jaya Plus (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=eWNFGCYl7Y8 +#EXTINF:-1 tvg-id="JeevanTV.in",Jeevan TV (576p) +http://103.199.161.254/Content/jeevan/Live/Channel(Jeevan)/index.m3u8 +#EXTINF:-1 tvg-id="JhanjarMusic.in",Jhanjar Music (1080p) [Not 24/7] +http://159.203.9.134/hls/jhanjar_music/jhanjar_music.m3u8 +#EXTINF:-1 tvg-id="JonackTV.in",Jonack TV (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/jonakk/jonakk/playlist.m3u8 +#EXTINF:-1 tvg-id="KadakHits.in",Kadak Hits (360p) [Not 24/7] +https://live.hungama.com/linear/kadak-hits/playlist.m3u8 +#EXTINF:-1 tvg-id="KairaliArabia.in",Kairali Arabia (480p) [Not 24/7] +https://idvd.multitvsolution.com/idvo/kairaliarabia_540p/index.m3u8 +#EXTINF:-1 tvg-id="KairaliNews.in",Kairali News (576p) +http://103.199.161.254/Content/people/Live/Channel(People)/index.m3u8 +#EXTINF:-1 tvg-id="KairaliNews.in",Kairali News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkCWitaToNG1_lR-Si1oMrg/live +#EXTINF:-1 tvg-id="KairaliTV.in",Kairali TV (480p) +http://103.199.161.254/Content/kairali/Live/Channel(Kairali)/index.m3u8 +#EXTINF:-1 tvg-id="KairaliWe.in",Kairali We (576p) +http://103.199.161.254/Content/we/Live/Channel(We)/index.m3u8 +#EXTINF:-1 tvg-id="KalaiIsai.in",Kalai Isai (1080p) [Not 24/7] +http://singamcloud.in:1935/kalai/kalaiisai/playlist.m3u8 +#EXTINF:-1 tvg-id="Kalaignar.in",Kalaignar (576p) +http://103.199.161.254/Content/kalaignartv/Live/Channel(KalaignarTV)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarMurasu.in",Kalaignar Murasu (576p) [Not 24/7] +http://103.199.160.85/Content/kalaignarmurasu/Live/Channel(KalaignarMurasu)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarSeithikal.in",Kalaignar Seithikal (576p) [Not 24/7] +http://103.199.160.85/Content/kalaignarseithikal/Live/Channel(KalaignarSeithikal)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarSeithikal.in",Kalaignar Seithikal (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=taLsR3aC2vw +#EXTINF:-1 tvg-id="KalaignarSirippoli.in",Kalaignar Sirippoli (576p) +http://103.199.161.254/Content/kalaignarsirippoli/Live/Channel(Kalaignarsirippoli)/index.m3u8 +#EXTINF:-1 tvg-id="KalingaTV.in",Kalinga TV (864p) [Not 24/7] +https://live.mycast.in/kalingatv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KanakNews.in",Kanak News (720p) [Not 24/7] +https://live.kanaknews.com:4443/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KannurOne.in",Kannur One (720p) [Not 24/7] +https://bnwdplewrp3a-hls-live.wmncdn.net/kannur1/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KannurVision.in",Kannur Vision (360p) [Not 24/7] +https://stream.ufworldind.in/live/kvision/playlist.m3u8 +#EXTINF:-1 tvg-id="KappaTV.in",Kappa TV (360p) +http://103.199.161.254/Content/kappa/Live/Channel(Kappa)/index.m3u8 +#EXTINF:-1 tvg-id="KasthuriTV.in",Kasthuri (576p) +http://103.199.161.254/Content/kasthuritv/Live/Channel(KasthuriTV)/index.m3u8 +#EXTINF:-1 tvg-id="KaumudyTV.in",Kaumudy TV (720p) [Offline] +https://live.wmncdn.net/kaumuditv1/live.stream/index.m3u8 +#EXTINF:-1 tvg-id="KCLTV.in",KCL TV (720p) [Not 24/7] +http://kcltv.livebox.co.in/kclhls/live.m3u8 +#EXTINF:-1 tvg-id="KCV.in",KCV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/KCVTV/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="KCVMovies.in",KCV Movies (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/KCVMOVIE/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="Kentv.in",Ken TV (360p) +https://stream.ufworldind.in/kentvlive/smil:kentv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KeralaVision.in",Kerala Vision (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ni/index.m3u8 +#EXTINF:-1 tvg-id="KeralaVisionNews.in",Kerala Vision News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtSeMwydGw6mDSZaIUaJ5bw/live +#EXTINF:-1 tvg-id="KhabrainAbhiTak.in",Khabrain Abhi Tak (480p) +https://vidcdn.vidgyor.com/kat-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="",KITE Victers (Kerala) (720p) [Not 24/7] +https://932y4x26ljv8-hls-live.5centscdn.com/victers/tv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KrishnaVani.in",Krishna Vani (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-166 +#EXTINF:-1 tvg-id="LifePunjabi.in",Life Punjabi (720p) [Not 24/7] +http://live.agmediachandigarh.com/lifepunjabi/e27b5c8d89b83882ca3b018eeed14888.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="LifeTV.in",Life TV (480p) [Not 24/7] +http://59c3ec70cfde0.streamlock.net/channel_6/channel6/playlist.m3u8 +#EXTINF:-1 tvg-id="LokSabhaTV.in",Lok Sabha TV (576p) [Not 24/7] +https://nicls1-lh.akamaihd.net/i/lst_1@26969/master.m3u8 +#EXTINF:-1 tvg-id="MahaMovie.in",Maha Movie (240p) [Not 24/7] +https://m-c036-j2apps.s.llnwi.net/hls/2820.MahaMovie.in.m3u8 +#EXTINF:-1 tvg-id="MahaMovie.in",Maha Movie (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0q7/index.m3u8 +#EXTINF:-1 tvg-id="MakkalTV.in",Makkal TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0l1/index.m3u8 +#EXTINF:-1 tvg-id="MakkalTV.in",Makkal TV [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-makkaltv +#EXTINF:-1 tvg-id="MalabarNews.in",Malabar News (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/live/malabarnews/playlist.m3u8 +#EXTINF:-1 tvg-id="MalabarVision.in",Malabar Vision (720p) [Timeout] +http://cdn1.logicwebs.in:1935/malabar/malabar/playlist.m3u8 +#EXTINF:-1 tvg-id="Malaimurasu.in",Malaimurasu (480p) [Not 24/7] +https://malaimurasucdn.purplestream.com/malaimurasu/49992ade0624eda468a31e137996d044.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="MalppuramChannel.in",Malappuram Channel (720p) [Not 24/7] +http://103.78.18.137:1935/live/mlpchannel/chunklist.m3u8 +#EXTINF:-1 tvg-id="Mangalam.in",Mangalam (576p) [Not 24/7] +http://103.199.160.85/Content/mangalam/Live/Channel(Mangalam)/index.m3u8 +#EXTINF:-1 tvg-id="ManoramaNews.in",Manorama News (576p) +http://103.199.161.254/Content/manoramanews/Live/Channel(ManoramaNews)/index.m3u8 +#EXTINF:-1 tvg-id="ManoranjanGrand.in",Manoranjan Grand (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0m2/index.m3u8 +#EXTINF:-1 tvg-id="ManoranjanMovies.in",Manoranjan Movies (480p) +https://m-c036-j2apps.s.llnwi.net/hls/2172.ManoranjanMovies.in.m3u8 +#EXTINF:-1 tvg-id="MarutamTV.in",Marutam TV (720p) [Not 24/7] +http://mntv.livebox.co.in/mntvhls/mntv.m3u8 +#EXTINF:-1 tvg-id="Mastiii.in",Mastiii (576p) [Not 24/7] +http://103.199.160.85/Content/masthi/Live/Channel(Masthi)/index.m3u8 +#EXTINF:-1 tvg-id="MathrubhumiNews.in",Mathrubhumi News (576p) [Not 24/7] +http://103.199.161.254/Content/mathrubhuminews/Live/Channel(Mathrubhuminews)/index.m3u8 +#EXTINF:-1 tvg-id="MathrubhumiNews.in",Mathrubhumi News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCwXrBBZnIh2ER4lal6WbAHw/live +#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/mazhavil_wxjylngynrbeykzthdrhawtunzcuowsr/playlist.m3u8 +#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0kd/index.m3u8 +#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pa/index.m3u8 +#EXTINF:-1 tvg-id="MazhavilManoramaHD.in",Mazhavil Manorama HD (1080p) [Not 24/7] +http://14.199.164.20:4001/play/a0p9/index.m3u8 +#EXTINF:-1 tvg-id="MediaOne.in",Media One (576p) +http://103.199.161.254/Content/mediaone/Live/Channel(MediaOne)/index.m3u8 +#EXTINF:-1 tvg-id="",MH1 Music (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhonemusic/mhonemusic/playlist.m3u8 +#EXTINF:-1 tvg-id="",MH1 Prime (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhonenews/mhonenews/playlist.m3u8 +#EXTINF:-1 tvg-id="MirrorNow.in",Mirror Now (576p) +https://mbnowweb-lh.akamaihd.net/i/MRN_1@346545/master.m3u8 +#EXTINF:-1 tvg-id="MKSix.in",MK Six (576p) [Not 24/7] +http://103.199.160.85/Content/mktv6/Live/Channel(MKTV6)/index.m3u8 +#EXTINF:-1 tvg-id="MKTunes.in",MK Tunes (576p) [Not 24/7] +http://103.199.160.85/Content/mktunes/Live/Channel(MKTunes)/index.m3u8 +#EXTINF:-1 tvg-id="MKTV.in",MK TV (576p) [Not 24/7] +http://103.199.160.85/Content/mktv/Live/Channel(MKTV)/index.m3u8 +#EXTINF:-1 tvg-id="MSignMedia.in",Msign Media (576p) [Not 24/7] +http://cloud.logicwebs.in:1935/msign/msignmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="MtunesPlus.in",Mtunes Plus (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0p2/index.m3u8 +#EXTINF:-1 tvg-id="MusicIndia.in",Music India (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0mt/index.m3u8 +#EXTINF:-1 tvg-id="MusicIndia.in",Music India (576p) [Not 24/7] +http://103.199.160.85/Content/musicindia/Live/Channel(MusicIndia)/index.m3u8 +#EXTINF:-1 tvg-id="Naaptol.in",Naaptol (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0n1/index.m3u8 +#EXTINF:-1 tvg-id="Namdhari.in",Namdhari (404p) [Not 24/7] +https://namdhari.tv/live/sbs1.m3u8 +#EXTINF:-1 tvg-id="",Nandighosha Tv (720p) [Not 24/7] +https://live.mycast.in/ngtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxtraNews.in",Naxtra News (720p) [Not 24/7] +http://wearelive.livebox.co.in/naxatratvhls/Naxatratv.m3u8 +#EXTINF:-1 tvg-id="Nazrana.in",Nazrana (1080p) +https://live.hungama.com/linear/nazrana/playlist.m3u8 +#EXTINF:-1 tvg-id="NCV.in",NCV (720p) [Not 24/7] +http://103.146.174.60:1935/NCV/ncvstream/master.m3u8 +#EXTINF:-1 tvg-id="",NDTV 24X7 (480p) [Not 24/7] +https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/master.m3u8 +#EXTINF:-1 tvg-id="NDTVIndia.in",NDTV India (480p) [Not 24/7] +https://ndtvindiaelemarchana.akamaized.net/hls/live/2003679/ndtvindia/master.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit (480p) +https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680-b/ndtvprofit/master.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit (480p) [Not 24/7] +https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680/ndtvprofit/master.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit [Geo-blocked] +https://ndtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/ndtv/live/ndtv_profit.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NeeCinema.in",Nee Cinema (576p) [Not 24/7] +https://live.neestream.com/neestream_01/nee_cinema/playlist.m3u8 +#EXTINF:-1 tvg-id="NethraTV.in",Nethra TV (480p) [Not 24/7] +https://dammikartmp.tulix.tv/slrc3/slrc3/playlist.m3u8 +#EXTINF:-1 tvg-id="News7Tamil.in",News 7 Tamil (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0kp/index.m3u8 +#EXTINF:-1 tvg-id="News7Tamil.in",News 7 Tamil (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2f4w_ppqHplvjiNaoTAK9w/live +#EXTINF:-1 tvg-id="News18Assam.in",News 18 Assam (360p) [Not 24/7] +https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Assam.in",News18 Assam (504p) [Not 24/7] +https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="News18Bangla.in",News18 Bangla (360p) [Not 24/7] +https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8 +#EXTINF:-1 tvg-id="News18Bengali.in",News 18 Bengali (360p) [Not 24/7] +https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Chhattisgarh.in",News 18 Chhattisgarh (360p) +https://news18mp-lh.akamaihd.net/i/n18mpcg_1@175737/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Gujarati.in",News 18 Gujarati (360p) +https://news18gujarati-lh.akamaihd.net/i/n18gujarat_1@370955/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Hindi.in",News 18 Hindi (360p) +https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18India.in",News18 India (504p) +https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="News18Jharkhand.in",News 18 Jharkhand (360p) +https://news18bihar-lh.akamaihd.net/i/n18biharjh_1@175736/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Kannada.in",News 18 Kannada (360p) +https://news18kannada-lh.akamaihd.net/i/n18kannada_1@372918/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Lokmat.in",News 18 Lokmat (504p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/india/news18-lokmat.m3u8 +#EXTINF:-1 tvg-id="News18Malayalam.in",News 18 Malayalam (360p) +https://news18kerala-lh.akamaihd.net/i/n18kerala_1@526583/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Odia.in",News 18 Odia (360p) +https://etv-oriya.akamaized.net/i/n18odia_1@179753/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Punjab.in",News 18 Punjab (360p) +https://news18haryana-lh.akamaihd.net/i/n18punjabhimhar_1@349009/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Rajasthan.in",News 18 Rajasthan (360p) +https://news18rajasthan-lh.akamaihd.net/i/n18raj_1@175738/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Tamil.in",News 18 Tamil (360p) +https://news18tamil-lh.akamaihd.net/i/n18tamil_1@526595/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Tamil.in",News 18 Tamil (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=EZy0RAxG8OI +#EXTINF:-1 tvg-id="News18Urdu.in",News 18 Urdu (360p) +https://news18urdu-lh.akamaihd.net/i/n18urdu_1@373059/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Uttarakhand.in",News 18 Uttarakhand (360p) +https://news18up-lh.akamaihd.net/i/n18upuk_1@175735/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News24.in",News 24 (360p) [Not 24/7] +https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live2/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.in",News 24 (480p) [Not 24/7] +https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsJ.in",News J (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=QH4zszwdIKE +#EXTINF:-1 tvg-id="NextTVMalabar.in",Next TV Malabar (720p) [Not 24/7] +https://6zklxbgpdw9b-hls-live.5centscdn.com/next/c9a1fdac6e082dd89e7173244f34d7b3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OdishaTV.in",Odisha TV (480p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/otvnewmbr/otvnewmbr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OneTv.in",One TV (720p) +http://137.59.86.218:1935/live/onetv/playlist.m3u8 +#EXTINF:-1 tvg-id="Peppers.in",Peppers (576p) [Not 24/7] +http://103.199.160.85/Content/peppers/Live/Channel(Peppers)/index.m3u8 +#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0lg/index.m3u8 +#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (720p) [Geo-blocked] +https://versewsa.pc.cdn.bitgravity.com/versewsa/live/polimernews.smil/chunklist_b1800000.m3u8 +#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Z-VjXBtDJTvq6aqkIskPg/live +#EXTINF:-1 tvg-id="PolimerTV.in",Polimer TV (404p) [Not 24/7] +http://cdn.asianetmobiletvplus.com/channels/polimertv_rpvpvdefkpxbafsouzockpitjldtogrr/chunks.m3u8 +#EXTINF:-1 tvg-id="PopPataka.in",Pop Pataka (360p) [Not 24/7] +https://live.hungama.com/linear/pop-pataka/playlist.m3u8 +#EXTINF:-1 tvg-id="PopularScience.in",Popular Science (720p) [Offline] +https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 +#EXTINF:-1 tvg-id="PramayaNews7.in",Pramaya News7 (576p) [Not 24/7] +https://live.mycast.in/encode/ee0c5a36ff5a7083ee044991974ad3ba.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PratidinTime.in",Pratidin Time (360p) [Not 24/7] +https://rtmp.smartstream.video/pratidintime/pratidintime/playlist.m3u8 +#EXTINF:-1 tvg-id="Pravasi.in",Pravasi (1080p) [Not 24/7] +https://5ee50688d7b5d.streamlock.net:444/live/pravasi/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimeCanadaTV.in",Prime Canada TV (720p) [Not 24/7] +http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="PublicMovies.in",Public Movies (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ll/index.m3u8 +#EXTINF:-1 tvg-id="PublicMusic.in",Public Music (576p) [Not 24/7] +http://103.199.161.254/Content/publicmusic/Live/Channel(PublicMusic)/index.m3u8 +#EXTINF:-1 tvg-id="PublicTV.in",Public TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ld/index.m3u8 +#EXTINF:-1 tvg-id="PulariTV.in",Pulari TV (720p) [Not 24/7] +https://royalstarindia.co.in/pularitv_hls/pularitv.m3u8 +#EXTINF:-1 tvg-id="PUNJABTV.in",PUNJAB TV (720p) [Not 24/7] +http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="PunjabiZindabad.in",Punjabi Zindabad (720p) [Not 24/7] +http://stream.pztv.online/pztv/playlist.m3u8 +#EXTINF:-1 tvg-id="PuthiyaThalaimurai.in",Puthiya Thalaimurai (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCmyKnNRH0wH-r8I-ceP-dsg/live +#EXTINF:-1 tvg-id="PuthuyugamTV.in",Puthuyugam TV (576p) [Not 24/7] +http://103.199.160.85/Content/puthuyugam/Live/Channel(Puthuyugam)/index.m3u8 +#EXTINF:-1 tvg-id="RPlusNews.in",R Plus News (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/rplus/rplus/playlist.m3u8 +#EXTINF:-1 tvg-id="RajDigitalPlus.in",Raj Digital Plus (404p) [Offline] +http://acv.asianetmobiletvplus.com/channels/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_hls/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_master.m3u8 +#EXTINF:-1 tvg-id="RajNews.in",Raj News (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_MT_gzdPiTg +#EXTINF:-1 tvg-id="RealNewsKerala.in",Real News Kerala (1080p) [Not 24/7] +https://bk7l298nyx53-hls-live.5centscdn.com/realnews/e7dee419f91aa9e65939d3677fb9c4f5.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="RealTV.in",Real TV (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/realtv/realtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Relax TV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/RELAXTV/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="ReporterTV.in",Reporter TV (576p) +http://103.199.161.254/Content/reporter/Live/Channel(Reporter)/index.m3u8 +#EXTINF:-1 tvg-id="RepublicBharatin.in",Republic Bharat (360p) [Geo-blocked] +https://republic.pc.cdn.bitgravity.com/live/bharat_hls/master.m3u8 +#EXTINF:-1 tvg-id="RepublicTV.in",Republic TV [Geo-blocked] +https://weblive.republicworld.com/liveorigin/republictv/playlist.m3u8 +#EXTINF:-1 tvg-id="RepublicTV.in",Republic TV [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_1422341819 +#EXTINF:-1 tvg-id="Rosebowl.in",Rosebowl (404p) [Offline] +http://cdn.asianetmobiletvplus.com/channels/rosebowl_7eb4dc1f3240c8eb776d41b95bd1d197/playlist.m3u8 +#EXTINF:-1 tvg-id="RSTVRajyaSabha.in" status="error",RSTV RajyaSabha (1080p) [Not 24/7] +https://nicls2-lh.akamaihd.net/i/rstv_1@26970/master.m3u8 +#EXTINF:-1 tvg-id="SachinMusic.in",Sachin Music (576p) [Not 24/7] +http://singamcloud.in:1935/sachinmusichd/sachinmusichd/playlist.m3u8 +#EXTINF:-1 tvg-id="SadaTV.in",Sada TV (1080p) [Not 24/7] +http://cdn12.henico.net:8080/live/sadatv/index.m3u8 +#EXTINF:-1 tvg-id="Sadhna.in",Sadhna (360p) [Offline] +http://cdn.clive.in:1935/sadhnabhakti/sadhnabhakti.stream_HDp/playlist.m3u8 +#EXTINF:-1 tvg-id="SadhnaPlus.in",Sadhna Plus (360p) [Offline] +http://cdn.clive.in:1935/sadhnaplus/sadhnaplus.stream_HDp/media.m3u8 +#EXTINF:-1 tvg-id="SafariTV.in",Safari TV (480p) [Not 24/7] +https://j78dp346yq5r-hls-live.5centscdn.com/safari/live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SanaPlus.in",Sana Plus (720p) [Not 24/7] +http://media.7starcloud.com:1935/live/sanatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="SanaTV.in",Sana TV (576p) [Not 24/7] +http://hdserver.7starcloud.com:1935/sanatv/sanatv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Sanskaar (1080p) [Not 24/7] +https://sanskarlive.sanskargroup.in/sanskartvlive.m3u8 +#EXTINF:-1 tvg-id="SanthoraShortFlim.in",Santhora Short Flim (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.in",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.in",Santhora TV (720p) +http://santhoratv.zecast.net/santhoratv/santhoratv/index.m3u8 +#EXTINF:-1 tvg-id="",Sardari TV (1080p) [Not 24/7] +http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 +#EXTINF:-1 tvg-id="SathiyamTV.in",Sathiyam TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip==https://www.youtube.com/channel/UC2ziCMHFPWkFHjocUMXT__Q/live +#EXTINF:-1 tvg-id="Satsang.in",Satsang (1080p) [Not 24/7] +https://satsangtv.sanskargroup.in/satsangtvlive.m3u8 +#EXTINF:-1 tvg-id="ServeurTV.in",Serveur TV (720p) [Offline] +https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ShekinahTV.in",Shekinah TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ok/index.m3u8 +#EXTINF:-1 tvg-id="ShekinahTV.in",Shekinah TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCHtYUfPnQci6GoUpPlWfrOg/live +#EXTINF:-1 tvg-id="ShemarooTV.in",Shemaroo TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nh/index.m3u8 +#EXTINF:-1 tvg-id="ShirdiLive.in",Shirdi Live (720p) [Offline] +https://cam.live-s.cdn.bitgravity.com/cdn-live/_definst_/cam/live/secure/saibaba/playlist.m3u8?e=0&h=2598445340a35f63eb211f81940d2525 +#EXTINF:-1 tvg-id="ShowBox.in",Show Box (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0o8/index.m3u8 +#EXTINF:-1 tvg-id="Shraddha.in",Shraddha (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhoneshradha/mhoneshradha/playlist.m3u8 +#EXTINF:-1 tvg-id="Shubhsandesh.in",Shubhsandesh (720p) [Not 24/7] +https://6284rn2xr7xv-hls-live.wmncdn.net/shubhsandeshtv1/live123.stream/index.m3u8 +#EXTINF:-1 tvg-id="SikhChannel.in",Sikh Channel (576p) [Offline] +http://fastway.ddns.net:6421/fastway/live8/index.m3u8?token=fastwaytvstreams +#EXTINF:-1 tvg-id="SonyBBCEarthHD.in",Sony BBC Earth HD (1080p) [Offline] +http://103.81.104.118/hls/stream5.m3u8 +#EXTINF:-1 tvg-id="",Sony MAX 2 [Offline] +http://208.115.215.42/Sony_Max_HD_02/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyMAXHD.in",Sony MAX HD [Offline] +http://208.115.215.42/Sony_Max_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySabHD.in",Sony Sab HD (1080p) [Not 24/7] +http://indo51.gcdn.co/hindi-SONYSABHD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySabHD.in",Sony Sab HD [Offline] +http://208.115.215.42/Sony_Sab_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySix.in",Sony Six (1080p) [Not 24/7] +http://137.59.155.77:8088/hls/05sonysix.m3u8 +#EXTINF:-1 tvg-id="SonySixHD.in",Sony Six HD (1080p) [Offline] +http://103.81.104.118/hls/stream10.m3u8 +#EXTINF:-1 tvg-id="",Sony WAH (404p) [Offline] +https://d2gowxuvx77j6q.cloudfront.net/WAH.m3u8 +#EXTINF:-1 tvg-id="",Sony YAY (404p) [Offline] +https://d20fdzcwhk7szz.cloudfront.net/SONY_YAY.m3u8 +#EXTINF:-1 tvg-id="SriSankara.in",Sri Sankara (360p) [Not 24/7] +https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="StarCinema.in",Star Cinema (576p) +http://c0.cdn.trinity-tv.net/stream/nh9u54a7sfnc2hwzxr2zwykwkqm43bgyyzsm68ybbbnjei8kytwcgs3zm5gnw5c6efa5gr3fadzqe686w8gj2eaehrj89wvujvqza3kez78dtknwbbmnqf79yygmqqg7e9pnc3i3bpywjkiqrwke94yf.m3u8 +#EXTINF:-1 tvg-id="StarFamily.in",Star Family (576p) +http://c0.cdn.trinity-tv.net/stream/zfmjgma9zn46fa797ez9fgkw7msh9mj4tppspg23gey6mmx5fqiy7ky3jqx4uhgsfsrd8r76si8ykb2anw9442g4qkq5fzpdvwdqf5te24ixu9zrx3aesm9fzt59q5y2s8qwgbqhvf6d3z5bjy3qb2t4.m3u8 +#EXTINF:-1 tvg-id="StarGoldHD.in",Star Gold HD (1080p) [Offline] +http://103.81.104.118/hls/stream19.m3u8 +#EXTINF:-1 tvg-id="StarMaa.in",Star Maa [Geo-blocked] +http://maatv-i.akamaihd.net/hls/live/569930/maatv/master_2000.m3u8 +#EXTINF:-1 tvg-id="StarPlusHD.in",Star Plus HD (720p) [Geo-blocked] +http://208.115.215.42/Utsav_Plus_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="StarUtsav.in",Star Utsav [Offline] +https://dolv5imquuojb.cloudfront.net/ST_UTSAV.m3u8 +#EXTINF:-1 tvg-id="SteelbirdMusic.in",Steelbird Music (720p) [Not 24/7] +http://cdn25.live247stream.com/steelbirdmusic/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StudioOnePlus.in",Studio One Plus (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0oh/index.m3u8 +#EXTINF:-1 tvg-id="StudioOnePlus.in",Studio One Plus (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEoaVUxpFlmCxwRBy9yhb1Q/live +#EXTINF:-1 tvg-id="StudioOneYuva.in",Studio One Yuva (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0sr/index.m3u8 +#EXTINF:-1 tvg-id="StudioOneYuva.in",Studio One Yuva (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqR2tCs8ufgAjRd6rn4a2wg/live +#EXTINF:-1 tvg-id="SunNews.in",Sun News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_fR9xWEOa7Q +#EXTINF:-1 tvg-id="SunTV.in",Sun TV (720p) [Offline] +http://uk4.zecast.com:1935/star-live/suntv.stream/index.m3u8 +#EXTINF:-1 tvg-id="SuryaMusic.in",Surya Music (480p) [Not 24/7] +https://indo51.gcdn.co/MALYLAM-SuryaMusic/index.m3u8 +#EXTINF:-1 tvg-id="SuryaTV.in",Surya TV (720p) [Not 24/7] +https://indo51.gcdn.co/MALYLAM-SuryaHD/index.m3u8 +#EXTINF:-1 tvg-id="Swantham.in",Swantham (720p) [Not 24/7] +http://cdn1.logicwebs.in:1935/SWANTHAM/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SwarajExpress.in",Swaraj Express (720p) [Not 24/7] +https://live.wmncdn.net/highnews/swaraj.stream/index.m3u8 +#EXTINF:-1 tvg-id="TehelkaTV.in",Tehelka TV (480p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/tehelkatv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ThanthiTV.in",Thanthi TV (720p) [Not 24/7] +https://vidcdn.vidgyor.com/thanthi-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="ThanthiTV.in",Thanthi TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=wc3Y6vI-poI +#EXTINF:-1 tvg-id="TimeTV.in",Time TV (360p) [Not 24/7] +https://cloudflare-cdn301.ottpro.in/live/timetv/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeVisionNews.in",Time Vision News (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/timevision/timevision/playlist.m3u8 +#EXTINF:-1 tvg-id="TimesNow.in",Times Now (480p) [Geo-blocked] +https://timesnow-lh.akamaihd.net/i/TNHD_1@129288/master.m3u8 +#EXTINF:-1 tvg-id="Tunes6.in",Tunes 6 [Geo-blocked] +https://m-c18-j2apps.s.llnwi.net/hls/3731.Tunes6.in.m3u8 +#EXTINF:-1 tvg-id="TV9Kannada.in",TV9 Kannada (720p) [Not 24/7] +https://vidcdn.vidgyor.com/tv9kannada-origin/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV9News.in",TV9 News (720p) +https://vidcdn.vidgyor.com/tv9telugu-origin/live/tv9telugu-origin/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="TwentyFourNews.in",Twenty Four News (576p) [Not 24/7] +http://103.199.160.85/Content/24news/Live/Channel(24news)/index.m3u8 +#EXTINF:-1 tvg-id="UBLHD.in",UBL HD (1080p) [Not 24/7] +https://cdn.logicwebs.in/hls/ublhdkey.m3u8 +#EXTINF:-1 tvg-id="UthradamMovies.in",Uthradam Movies (576p) [Not 24/7] +http://185.105.4.245:1935/livesp/uthradam/playlist.m3u8 +#EXTINF:-1 tvg-id="UtsavGold.in",Utsav Gold (720p) [Geo-blocked] +http://208.115.215.42/Utsav_Gold_HD/index.m3u8 +#EXTINF:-1 tvg-id="Vaanavil.in",Vaanvavil (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nx/index.m3u8 +#EXTINF:-1 tvg-id="VasanthTV.in",Vasanth TV [Offline] +http://vasanth.live.cdn.bitgravity.com/vasanth/secure/live/feed03?bgsecuredir=1&e=0&h=a9be0836bc39f96d0a9a958a659dfc1d +#EXTINF:-1 tvg-id="VathanamTV.in",Vathanam TV [Timeout] +http://95.216.167.183:5080/LiveApp/streams/443106610169904881506470.m3u8 +#EXTINF:-1 tvg-id="Velicham.in",Velicham (360p) [Not 24/7] +https://rtmp.smartstream.video/velichamtv/velichamtv/playlist.m3u8 +#EXTINF:-1 tvg-id="VismayaNews.in",Vismaya News (720p) +http://live.singamcloud.in:1935/vismayanews/vismayanews/playlist.m3u8 +#EXTINF:-1 tvg-id="",Wion (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-wion +#EXTINF:-1 tvg-id="WowCinemaOne.in",Wow Cinema One (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0n3/index.m3u8 +#EXTINF:-1 tvg-id="XploreChannel.in",Xplore Channel (720p) +http://cdn18.live247stream.com/ndachannel/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Yolo.in",Yolo (410p) [Not 24/7] +http://cdn.logicwebs.in/hls/yolo.m3u8 +#EXTINF:-1 tvg-id="YuppThirai.in",Yupp Thirai (270p) +http://119.81.82.28/encoded/yuppthirai_800/playlist.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r/index.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r/index.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Originals.in",Zee5 Originals (1080p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zee5_originals/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Originals.in",Zee5 Originals (1080p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zee5_originals/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Romance.in",Zee5 Romance (1080p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zee5_romance/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Romance.in",Zee5 Romance (1080p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zee5_romance/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee24.in",Zee 24 (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/kalak/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee24.in",Zee 24 (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/kalak/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee24Ghanta.in",Zee 24 Ghanta (576p) [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-24ghantatv +#EXTINF:-1 tvg-id="Zee24MadyaPradeshChhattisgarh.in",Zee 24 Madhya Pradesh Chhattisgarh [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeemadhyapradeshchat +#EXTINF:-1 tvg-id="Zee24Taas.in",Zee 24 Taas (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zee24taas +#EXTINF:-1 tvg-id="ZeeAction.in",Zee Action (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/action/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAction.in",Zee Action (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/action/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAnmolCinema.in",Zee Anmol Cinema (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAnmolCinema.in",Zee Anmol Cinema (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeBangla.in",Zee Bangla (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebangla +#EXTINF:-1 tvg-id="ZeeBanglaCinema.in",Zee Bangla Cinema (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebanglacinema +#EXTINF:-1 tvg-id="ZeeBiharJharkhand.in",Zee Bihar Jharkhand (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebiharjharkhand +#EXTINF:-1 tvg-id="ZeeBioskop.in",Zee Bioskop (360p) [Geo-blocked] +http://210.210.155.35/qwr9ew/s/s32/index.m3u8 +#EXTINF:-1 tvg-id="ZeeBollywood.in",Zee Bollywood (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeeclassic +#EXTINF:-1 tvg-id="ZeeBusiness.in",Zee Business [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebusiness +#EXTINF:-1 tvg-id="ZeeCafe.in",Zee Cafe (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecafehd +#EXTINF:-1 tvg-id="ZeeCinema.in",Zee Cinema (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecinema +#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in",Zee Cinema Middle East (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zeecinemame/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in",Zee Cinema Middle East (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zeecinemame/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUK.in",Zee Cinema UK (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/cinemauk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUK.in",Zee Cinema UK (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/cinemauk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUSA.in",Zee Cinema USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/cinemausa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaluHD.in",Zee Cinemalu HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecinemalu +#EXTINF:-1 tvg-id="ZeeClassic.in",Zee Classic (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/classic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeClassic.in",Zee Classic (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/classic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeHindustan.in",Zee Hindustan (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeehindustan +#EXTINF:-1 tvg-id="ZeeKeralamHD.in",Zee Keralam HD (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zkeralamhd/index.m3u8 +#EXTINF:-1 tvg-id="ZeeMarathiHD.in",Zee Marathi HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeemarathi +#EXTINF:-1 tvg-id="ZeeMarathiUSA.in",Zee Marathi USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/marathiusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMarathiUSA.in",Zee Marathi USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/marathiusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMundo.in",Zee Mundo (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/mundohd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMundo.in",Zee Mundo (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/mundohd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMusic.in",Zee Music (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/magic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMusic.in",Zee Music (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/magic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNews.in",Zee News [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-zeenews +#EXTINF:-1 tvg-id="ZeeNewsMPCG.in",Zee News MPCG (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/newsmpcg/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNewsMPCG.in",Zee News MPCG (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/newsmpcg/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNewsUttarPradeshUttrakhand.in",Zee News Uttar Pradesh Uttrakhand [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_265145625 +#EXTINF:-1 tvg-id="ZeePunjabi.in",Zee Punjabi (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/punjabi/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeePunjabi.in",Zee Punjabi (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/punjabi/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeRajasthan.in" status="error",Zee Rajasthan (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zinguk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeRajasthan.in",Zee Rajasthan (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zinguk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeSalaam.in",Zee Salaam (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeesalaam +#EXTINF:-1 tvg-id="ZeeSmileUSA.in",Zee Smile USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/smileusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeSmileUSA.in",Zee Smile USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/smileusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTalkies.in",Zee Talkies (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeetalkies +#EXTINF:-1 tvg-id="ZeeTamil.in",Zee Tamil (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeetamil +#EXTINF:-1 tvg-id="ZeeTV.in",Zee TV (480p) [Timeout] +https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/ZEETV/ZEETV.isml/index.m3u8 +#EXTINF:-1 tvg-id="ZeeTVAPAC.in",Zee TV APAC (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/apacsea/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVAPAC.in",Zee TV APAC (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/apacsea/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVCanada.in",Zee TV Canada (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/canadahd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVCanada.in",Zee TV Canada (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/canadahd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in",Zee TV Middle East (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/ztvme/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in",Zee TV Middle East (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/ztvme/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVRussia.in",Zee TV Russia (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/russia/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVRussia.in",Zee TV Russia (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/russia/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVUSA.in",Zee TV USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVUSA.in",Zee TV USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeVajwa.in",Zee Vajwa (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-353 +#EXTINF:-1 tvg-id="ZeeWorld.in",Zee World (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/world/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeWorld.in",Zee World (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/world/playlist.m3u8 +#EXTINF:-1 tvg-id="Zing.in",Zing (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zing/playlist.m3u8 +#EXTINF:-1 tvg-id="Zing.in",Zing (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zing/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoom.in",Zoom (1080p) [Offline] +http://103.81.104.118/hls/stream8.m3u8 diff --git a/streams/in_samsung.m3u b/streams/in_samsung.m3u new file mode 100644 index 000000000..a72209c4c --- /dev/null +++ b/streams/in_samsung.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +http://failarmy-international-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] +https://spi-filmstream-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-12-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GoUSAIndia.uk",Go USA (India) (720p) [Offline] +https://brandusa-gousa-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] +https://gustotv-samsung-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InshortIndia.nl",Inshort (India) (720p) +https://inshort-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) +https://introuble-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) +https://inwild-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVIndia.us",MavTV India (720p) [Offline] +http://mavtv-mavtvglobal-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeIndia.us",People are Awesome India (720p) [Offline] +https://jukin-peopleareawesome-2-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveIndia.us",The Pet Collective India (720p) [Offline] +https://the-pet-collective-international-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyIndia.us",WeatherSpy India (720p) [Offline] +https://jukin-weatherspy-2-in.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/iq.m3u b/streams/iq.m3u new file mode 100644 index 000000000..c58b1993d --- /dev/null +++ b/streams/iq.m3u @@ -0,0 +1,121 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABNsat.iq",ABNsat (720p) +http://rtmp1.abnsat.com/hls/arabic.m3u8 +#EXTINF:-1 tvg-id="AfarinTV.iq",Afarin TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/afarinTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHurra.iq",Al Hurra (486p) [Not 24/7] +https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 +#EXTINF:-1 tvg-id="AlHurra.iq",Al Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 +#EXTINF:-1 tvg-id="AlIraqiyaAl3ama.iq",Al Iraqiya Al 3ama (720p) [Not 24/7] +https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8 +#EXTINF:-1 tvg-id="AlIraqiyaNews.iq",Al Iraqiya News (720p) [Not 24/7] +https://cdn.catiacast.video/abr/78054972db7708422595bc96c6e024ac/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRafidain.iq",Al Rafidain (1024p) [Not 24/7] +http://149.202.79.190:8081/arrafidaintv/publish/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRafidain.iq",Al Rafidain (1024p) [Not 24/7] +https://cdg8.edge.technocdn.com/arrafidaintv/abr_live/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRasheed.iq",Al Rasheed (408p) [Not 24/7] +https://media1.livaat.com/AL-RASHEED-HD/index.m3u8 +#EXTINF:-1 tvg-id="AlSharqiya.iq",Al Sharqiya (1080p) [Not 24/7] +http://ns8.indexforce.com:1935/home/mystream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSharqiyaNews.iq",Al Sharqiya News (1080p) +http://ns8.indexforce.com:1935/alsharqiyalive/mystream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Al Sumaria (1080p) [Not 24/7] +http://iptv.repl.co/Arabic/Al_summaria +#EXTINF:-1 tvg-id="AlEtejah.iq",Al-Etejah (576p) [Not 24/7] +https://streaming.aletejahtv.iq:1937/etejah-live/smil:etejah.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlJawadain.iq",Al-Jawadain TV (1080p) [Not 24/7] +https://live.aljawadain.org/live/aljawadaintv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlGhadeer.iq",AlGhadeer (720p) [Not 24/7] +https://asdiuhiu12.myvodu.app:3356/live/Alghadeer/index.m3u8 +#EXTINF:-1 tvg-id="AlkafeelBetweenthetwoholyshrines.iq",Alkafeel: Between the two holy shrines (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot4/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelTheentranceoftheholysanctuary.iq",Alkafeel: The entrance of the holy sanctuary (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot3/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelTheHolyTomb.iq",Alkafeel: The Holy Tomb (360p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot2/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelThewindowofAlKafeel.iq",Alkafeel: The window of Al-Kafeel (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot1/manifest.m3u8 +#EXTINF:-1 tvg-id="AmozhgaryTV.iq",Amozhgary TV (1080p) +https://media.streambrothers.com:1936/8248/8248/playlist.m3u8 +#EXTINF:-1 tvg-id="AssyrianANB.iq",Assyrian ANB (720p) [Offline] +https://597f64b67707a.streamlock.net/anbsat.com/anb2/playlist.m3u8 +#EXTINF:-1 tvg-id="AvaEntertainment.iq",Ava Entertainment (720p) [Not 24/7] +https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/playlist.m3u8 +#EXTINF:-1 tvg-id="BabylonTV.iq",Babylon TV (720p) [Offline] +https://iqlivestream.com/live/babylontv.flv +#EXTINF:-1 tvg-id="CihanTV.iq",Cihan TV (576p) [Not 24/7] +http://cdn.liveshell.net:1935/live/cihann/playlist.m3u8 +#EXTINF:-1 tvg-id="Dijlah.iq",Dijlah (1080p) +http://91.134.145.75:10001/Dijlah/index.m3u8 +#EXTINF:-1 tvg-id="Dijlah.iq",Dijlah (1080p) +https://ghaasiflu.online/Dijlah/index.m3u8 +#EXTINF:-1 tvg-id="DijlahTarab.iq",Dijlah Tarab (576p) [Not 24/7] +https://ghaasiflu.online/tarab/index.m3u8 +#EXTINF:-1 tvg-id="DuaTV.iq",Dua TV (720p) [Not 24/7] +https://live.ishiacloud.com/W67H7ddMzVHyXPrG.m3u8 +#EXTINF:-1 tvg-id="GaliKurdistan.iq",Gali Kurdistan (760p) [Not 24/7] +http://51.75.66.91:8080/gksat.mp4 +#EXTINF:-1 tvg-id="ImamHusseinTV1Farsi.iq",Imam Hussein TV 1 Farsi (360p) +https://live.imamhossaintv.com/live/ih1.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq",Imam Hussein TV 2 Arabic (360p) +https://ar.imamhusseintv.com/live/ih201/index.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq",Imam Hussein TV 2 Arabic (360p) +https://live.imamhossaintv.com/live/ih2.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV3English.iq",Imam Hussein TV 3 English (360p) +https://live.imamhossaintv.com/live/ih3.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq",Imam Hussein TV 4 Urdu (360p) +https://live.imamhossaintv.com/live/ih4.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq",Imam Hussein TV 4 Urdu (720p) +https://ur.imamhusseintv.com/live/ih4.m3u8 +#EXTINF:-1 tvg-id="",iNEWS (1080p) [Not 24/7] +https://svs.itworkscdn.net/inewsiqlive/inewsiq.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Iraq24.iq",Iraq 24 (1080p) [Not 24/7] +https://113483.global.ssl.fastly.net/edge-en/ngrp:live_31b220e0e20611eab1b9cfce247e5d5f_all/index.m3u8 +#EXTINF:-1 tvg-id="IraqFuture.iq",Iraq Future (576p) +https://streaming.viewmedia.tv/viewsatstream40/viewsatstream40.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IraqiaSport.iq",Iraqia Sport (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149075_0.m3u8?session= +#EXTINF:-1 tvg-id="IshtarTV.iq",Ishtar TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://vimeo.com/event/1243782 +#EXTINF:-1 tvg-id="KarbalaTV.iq",Karbala TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/karbalaatv/live +#EXTINF:-1 tvg-id="KirkukTV.iq",Kirkuk TV (576p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/IHTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Kurdistan24.iq",Kurdistan 24 (720p) +https://d1x82nydcxndze.cloudfront.net/live/index.m3u8 +#EXTINF:-1 tvg-id="KurdistanTV.iq",Kurdistan TV (720p) [Not 24/7] +https://5a3ed7a72ed4b.streamlock.net/live/SMIL:myStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxSorani.iq",KurdMax (1080p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxMusic.iq",KurdMax Music (720p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/music/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxShow.iq",KurdMax Show (720p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:SHOW1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxKurmanci.iq",KurdMax Sorani (240p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="",KurdSat (720p) +http://ikomg2.s.llnwi.net/kurdsathd/playlist.m3u8 +#EXTINF:-1 tvg-id="",KurdSat News (720p) +http://ikomg2.s.llnwi.net/kurdsatnewshd/playlist.m3u8 +#EXTINF:-1 tvg-id="",KurdSat News (1080p) [Not 24/7] +https://ikomg2.mmdlive.lldns.net/ikomg2/107b7df8f5444d778f349100739a09cd/manifest.m3u8 +#EXTINF:-1 tvg-id="NetTV.iq",Net TV (1080p) [Not 24/7] +http://nettvstreampaid.flashmediacast.com:1935/nettvstreampaid/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.iq",Net TV (1080p) [Not 24/7] +https://live.karwan.tv/karwan.tv/net-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NRTTV.iq",NRT TV (720p) [Not 24/7] +https://media.streambrothers.com:1936/8226/8226/playlist.m3u8 +#EXTINF:-1 tvg-id="PayamTV.iq",Payam TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/PayamTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RudawTV.iq",Rudaw TV (1080p) +https://svs.itworkscdn.net/rudawlive/rudawlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SpedaTV.iq",Speda TV (720p) [Not 24/7] +http://liveshell.net:1935/live/speda084k/playlist.m3u8 +#EXTINF:-1 tvg-id="SterkTV.iq",SterkTV (720p) [Not 24/7] +https://602ccc850c9bb.streamlock.net/sterktv/smil:sterk.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",WAAR TV (720p) [Not 24/7] +https://live.karwan.tv/karwan.tv/waar-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Zagros.iq",Zagros (720p) [Not 24/7] +https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8 diff --git a/streams/ir.m3u b/streams/ir.m3u new file mode 100644 index 000000000..0ed6630fa --- /dev/null +++ b/streams/ir.m3u @@ -0,0 +1,235 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",1TvPersian (720p) [Not 24/7] +https://1-215-11778-1.b.cdn13.com/onetvpersia001.m3u8 +#EXTINF:-1 tvg-id="",4U TV (480p) [Not 24/7] +http://116.202.255.113:1935/4utv/livesd/playlist.m3u8 +#EXTINF:-1 tvg-id="",4U TV (720p) [Not 24/7] +http://116.202.255.113:1935/4utv/livehd/playlist.m3u8 +#EXTINF:-1 tvg-id="AFNTV.ir",AFN TV (720p) [Not 24/7] +https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8 +#EXTINF:-1 tvg-id="AlAlam.ir",Al Alam (360p) [Not 24/7] +https://live2.alalam.ir/alalam.m3u8 +#EXTINF:-1 tvg-id="",Al Kawthar TV (240p) [Not 24/7] +http://178.252.143.156:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlWilayah.ir",Al Wilayah (720p) [Not 24/7] +https://nl.livekadeh.com/hls2/alwilayah.tv.m3u8 +#EXTINF:-1 tvg-id="AlZahraTV.ir",Al Zahra TV (720p) [Not 24/7] +https://live.al-zahratv.com/live/playlist2/index.m3u8 +#EXTINF:-1 tvg-id="AVAFamily.ir",AVA Family (720p) [Not 24/7] +http://51.210.199.5/hls/stream.m3u8 +#EXTINF:-1 tvg-id="AVASeries.ir",AVA Series (720p) +http://51.210.199.4/hls/stream.m3u8 +#EXTINF:-1 tvg-id="AyenehTV.ir",Ayeneh TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BeitolAbbasTV.ir",BeitolAbbas TV (720p) [Not 24/7] +http://live.beitolabbas.tv/live/beitolabbastv.m3u8 +#EXTINF:-1 tvg-id="CaltexTV.ir",Caltex TV (720p) [Not 24/7] +https://vid1.caltexmusic.com/hls/caltextv.m3u8 +#EXTINF:-1 tvg-id="CanadaStarTV.ir",Canada Star TV (360p) [Offline] +https://live.livestreamtv.ca/canadastartv/smil:canadastartv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel1.ir",Channel 1 (480p) [Not 24/7] +https://2nbyjjx7y53k-hls-live.5centscdn.com/cls040317/0070c5b7ef083bdc8de09065c61a34d8.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DiyarTV.ir",Diyar TV (720p) [Not 24/7] +http://51.210.199.28/hls/stream.m3u8 +#EXTINF:-1 tvg-id="EBC1TV.ir",EBC1 TV (720p) [Geo-blocked] +https://vsn1-cdn-phx.icastcenter.com/EBC1/EBC1/playlist.m3u8 +#EXTINF:-1 tvg-id="EcranTV.ir",Ecran TV (720p) [Not 24/7] +http://51.210.199.40/hls/stream.m3u8 +#EXTINF:-1 tvg-id="EkranMovie.ir",Ekran Movie (720p) [Offline] +http://159.69.58.154/ekran/ekrantv.m3u8 +#EXTINF:-1 tvg-id="FarazTV.ir",Faraz TV (720p) [Not 24/7] +https://faraztv.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="FARS.ir",FARS (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:fars/playlist.m3u8 +#EXTINF:-1 tvg-id="Film1.ir",Film 1 (720p) [Offline] +http://159.69.58.154/film1/film1tv.m3u8 +#EXTINF:-1 tvg-id="GEM24b.ir",GEM 24b (1080p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/24b/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMAcademy.ir",GEM Academy (540p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/gem_usa/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMArabia.ir",GEM Arabia (576p) [Not 24/7] +http://216.66.42.47:7777/GemArabia_HD.m3u8 +#EXTINF:-1 tvg-id="GEMAZ.ir",GEM AZ (576p) [Not 24/7] +http://216.66.42.47:7777/GemAZ_HD.m3u8 +#EXTINF:-1 tvg-id="GEMBollywood.ir",GEM Bollywood (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gembollywood/index.m3u8 +#EXTINF:-1 tvg-id="GEMClassic.ir",GEM Classic (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemclassic/index.m3u8 +#EXTINF:-1 tvg-id="GEMComedy.ir",GEM Comedy (576p) [Not 24/7] +http://216.66.42.47:7777/GemComedy_HD.m3u8 +#EXTINF:-1 tvg-id="GEMCrypto.ir",GEM Crypto (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemcrypto/index.m3u8 +#EXTINF:-1 tvg-id="GEMDrama.ir",GEM Drama (360p) [Timeout] +http://65.21.196.79/gem_drama/master.m3u8 +#EXTINF:-1 tvg-id="GEMFilm.ir",GEM Film (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemfilm/index.m3u8 +#EXTINF:-1 tvg-id="GEMFit.ir",GEM Fit (360p) [Timeout] +http://65.21.196.79/30tv/master.m3u8 +#EXTINF:-1 tvg-id="GEMFood.ir",GEM Food (360p) [Timeout] +http://65.21.196.79/gem_food/master.m3u8 +#EXTINF:-1 tvg-id="GEMJunior.ir",GEM Junior (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemjunior/index.m3u8 +#EXTINF:-1 tvg-id="GEMKids.ir",GEM Kids (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemkids/index.m3u8 +#EXTINF:-1 tvg-id="GEMLatino.ir",GEM Latino (540p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/gem_latino/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMLifeTV.ir",GEM Life (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemlife/index.m3u8 +#EXTINF:-1 tvg-id="GEMMaxx.ir",GEM Maxx (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemmaxx/index.m3u8 +#EXTINF:-1 tvg-id="GEMMifa.ir",GEM Mifa (360p) [Timeout] +http://65.21.196.79/mifa/master.m3u8 +#EXTINF:-1 tvg-id="GEMModernEconomy.ir",GEM Modern Economy (540p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/modern_economy/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMNature.ir",GEM Nature (360p) [Timeout] +http://65.21.196.79/gem_nature/master.m3u8 +#EXTINF:-1 tvg-id="GEMOnyx.ir",GEM Onyx (1080p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/onyx/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMProperty.ir",GEM Property (540p) [Geo-blocked] +https://d2e40kvaojifd6.cloudfront.net/stream/gem_property/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMRiver.ir",GEM River (360p) [Timeout] +http://65.21.196.79/gem_river/master.m3u8 +#EXTINF:-1 tvg-id="GEMRubix.ir",GEM Rubix (576p) [Offline] +https://stream-cdn.gemonline.tv/live/rubix/index.m3u8 +#EXTINF:-1 tvg-id="GEMSeries.ir",GEM Series (360p) [Not 24/7] +http://65.21.196.79/gem_series/master.m3u8 +#EXTINF:-1 tvg-id="GEMTravel.ir",GEM Travel (576p) [Offline] +https://stream-cdn.gemonline.tv/live/gemtravel/index.m3u8 +#EXTINF:-1 tvg-id="GEMTv.ir",GEM Tv (360p) [Not 24/7] +http://65.21.196.79/gem_tv/master.m3u8 +#EXTINF:-1 tvg-id="GOLESTAN.ir",GOLESTAN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:golestan/playlist.m3u8 +#EXTINF:-1 tvg-id="HastiTV.ir",Hasti TV (1080p) +https://live.hastitv.com/hls/livetv.m3u8 +#EXTINF:-1 tvg-id="",HispanTV (480p) +https://live1.presstv.ir/live/hispan.m3u8 +#EXTINF:-1 tvg-id="",HispanTV (480p) +https://live.presstv.ir/live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HodHodTV.ir",HodHod TV (720p) +http://51.210.199.12/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IcnetTV.ir",Icnet TV (720p) [Not 24/7] +http://51.210.199.7/hls/stream.m3u8 +#EXTINF:-1 tvg-id="iFILM.ir",iFILM (720p) [Not 24/7] +https://live.presstv.ir/ifilmlive/smil:ifilmtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",iFILM Arabic (720p) +https://live.presstv.ir/ifilmlive/smil:ifilmar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",iFILM English (480p) [Geo-blocked] +https://live1.presstv.ir/live/ifilmen.m3u8 +#EXTINF:-1 tvg-id="iFILMPersian2.ir",iFILM Persian 2 (480p) [Not 24/7] +https://live1.presstv.ir/live/ifilm2.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV.ir",Imam Hussein TV 1 (360p) +https://live.imamhossaintv.com/live/ih103/index.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV.ir",Imam Hussein TV (720p) +https://fa.imamhusseintv.com/live/ih1.m3u8 +#EXTINF:-1 tvg-id="INTVSimayeAzadi.ir",INTV Simaye Azadi (1080p) +https://sima-i.akamaihd.net/hls/live/624111/sima/index.m3u8 +#EXTINF:-1 tvg-id="IranBeauty.ir",Iran Beauty (720p) [Not 24/7] +http://51.210.199.57/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IraneAryaee.ir",Irane Aryaee (480p) [Offline] +http://159.69.58.154/irane_arya/irane_arya.m3u8 +#EXTINF:-1 tvg-id="ITN.ir",ITN (720p) [Not 24/7] +http://51.210.199.31/hls/stream.m3u8 +#EXTINF:-1 tvg-id="iToon.ir",iToon (360p) [Offline] +http://159.69.58.154/itoon/master.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.ir" status="online",Kalemeh TV (1080p) [Not 24/7] +https://live.kalemehtv.tv/live/ngrp:kalemeh_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KhaterehTV.ir",Khatereh TV (368p) [Geo-blocked] +https://5caf24a595d94.streamlock.net:1937/8130/8130/playlist.m3u8 +#EXTINF:-1 tvg-id="Manoto.ir",Manoto TV (1080p) +https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 +#EXTINF:-1 tvg-id="Marjaeyat.ir",Marjaeyat (1080p) [Not 24/7] +https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8 +#EXTINF:-1 tvg-id="MihanTV.ir",Mihan TV (360p) [Not 24/7] +https://iptv.mihantv.com/live/playlist1/index.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) +http://204.11.235.251:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) +https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MonoTV.ir",Mono TV (720p) [Offline] +http://51.210.227.137/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Music1.ir",Music 1 [Offline] +http://159.69.58.154/music1/music1_tv.m3u8 +#EXTINF:-1 tvg-id="NAVAHANG.ir",NAVAHANG (720p) +http://51.210.227.130/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Nour.ir",Nour (720p) [Not 24/7] +https://cdn.videoevent.live:19360/elfaro4/elfaro4.m3u8 +#EXTINF:-1 tvg-id="OmideIran.ir",Omide Iran (720p) [Not 24/7] +http://51.210.199.38/hls/stream.m3u8 +#EXTINF:-1 tvg-id="OXIRTV.ir",OXIR TV (720p) [Offline] +http://51.210.199.36/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ParnianTV.ir",Parnian TV (1080p) [Not 24/7] +https://live2.parnian.tv/hls/live/play.m3u8 +#EXTINF:-1 tvg-id="ParsTV.ir",Pars TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls032817/18e2bf34e2035dbabf48ee2db66405ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="Parsiland.ir",Parsiland (540p) [Not 24/7] +http://vps.parsiland.net/hls/ParsiLand.m3u8 +#EXTINF:-1 tvg-id="PayamJavanTV.ir",Payam Javan TV (720p) [Not 24/7] +https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="PayvandTV.ir",Payvand TV (720p) [Not 24/7] +https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8 +#EXTINF:-1 tvg-id="PBCTapeshTV.ir",PBC Tapesh TV (720p) [Not 24/7] +http://iptv.tapesh.tv/tapesh/playlist.m3u8 +#EXTINF:-1 tvg-id="PersianBazar.ir",Persian Bazar (720p) [Not 24/7] +https://stream.persiantv1.com/ptv1/playlist1/index.m3u8 +#EXTINF:-1 tvg-id="PersianFilm.ir",Persian Film (720p) [Not 24/7] +http://51.210.227.135/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PMC.ir",PMC (1080p) +https://hls.pmchd.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PMCRoyale.ir",PMC Royale (720p) [Not 24/7] +http://51.210.199.29/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PressTV.ir",Press TV English (720p) +https://live.presstv.ir/liveprs/smil:liveprs/playlist.m3u8 +#EXTINF:-1 tvg-id="PressTV.ir",Press TV French (1080p) [Not 24/7] +https://live1.presstv.ir/live/presstvfr/index.m3u8 +#EXTINF:-1 tvg-id="",QAZVIN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFarda.ir",Radio Farda (576p) [Not 24/7] +https://rfe-lh.akamaihd.net/i/rfe_tvmc1@383622/master.m3u8 +#EXTINF:-1 tvg-id="RadioJavanTV.ir",Radio Javan TV (1080p) [Not 24/7] +https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RangarangTV.ir",Rangarang TV (720p) [Not 24/7] +https://iptv.rangarang.us/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="Sahar.ir",Sahar (480p) +http://cdnlive.irib.ir/live-channels/smil:sahar3/playlist.m3u8 +#EXTINF:-1 tvg-id="",SAHAR KURDI (576p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/56 +#EXTINF:-1 tvg-id="SalamTV.ir",Salam TV (720p) +https://iptv.salaamtv.org/salaam/playlist.m3u8 +#EXTINF:-1 tvg-id="SepanjTV.ir",Sepanj TV (720p) [Not 24/7] +http://51.210.199.30/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SL1.ir",SL 1 (720p) +http://51.210.199.3/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SL2.ir",SL 2 (720p) +http://51.210.199.2/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SNN.ir",SNN TV (720p) [Not 24/7] +https://live.snn.ir/hls/snn/index.m3u8 +#EXTINF:-1 tvg-id="T2TV.ir",T2 TV (720p) [Not 24/7] +http://208.113.204.104:8123/live/tapesh-live-stream/index.m3u8 +#EXTINF:-1 tvg-id="Tapesh2Movies.ir",Tapesh 2 Movies (720p) [Not 24/7] +http://159.69.58.154/t2_movies/master.m3u8 +#EXTINF:-1 tvg-id="TBNNejatTV.ir",TBN Nejat TV (540p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266913/live.m3u8 +#EXTINF:-1 tvg-id="TehranTV24.ir",TehranTV 24 (720p) +http://51.210.227.132/hls/stream.m3u8 +#EXTINF:-1 tvg-id="TinTV.ir",Tin TV (720p) [Not 24/7] +https://bozztv.com/1gbw5/tintv/tintv/playlist.m3u8 +#EXTINF:-1 tvg-id="Toonix.ir",Toonix (720p) [Not 24/7] +http://51.210.227.134/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Valiasr.ir",Valiasr (480p) [Offline] +https://ir13.livekadeh.com/hls2/valiasr.m3u8 +#EXTINF:-1 tvg-id="",Varzesh (1080p) +http://cdn1.live.irib.ir:1935/channel-live/smil:varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="",VARZESH (1080p) +http://cdn1.live.irib.ir:1935/live-channels/smil:varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="VarzeshTVFarsi.ir",Varzesh TV Farsi (720p) [Not 24/7] +http://51.210.199.16/hls/stream.m3u8 +#EXTINF:-1 tvg-id="VOX1.ir",VOX1 (720p) [Not 24/7] +http://51.210.199.8/hls/stream.m3u8 +#EXTINF:-1 tvg-id="VOX2.ir",VOX2 (720p) [Not 24/7] +http://51.210.199.9/hls/stream.m3u8 +#EXTINF:-1 tvg-id="YourTimeTV.ir",YourTime TV (720p) [Not 24/7] +https://hls.yourtime.live/hls/stream.m3u8 diff --git a/streams/ir_telewebion.m3u b/streams/ir_telewebion.m3u new file mode 100644 index 000000000..a63d9c859 --- /dev/null +++ b/streams/ir_telewebion.m3u @@ -0,0 +1,207 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABADAN.ir",ABADAN (576p) +https://sdm.telewebion.com/live/abadan/playlist.m3u8 +#EXTINF:-1 tvg-id="ABADAN.ir",ABADAN (576p) [Timeout] +https://sdw.telewebion.com/live/abadan/playlist.m3u8 +#EXTINF:-1 tvg-id="AFLAK.ir",AFLAK (240p) [Timeout] +https://sdw.telewebion.com/live/aflak/playlist.m3u8 +#EXTINF:-1 tvg-id="AFLAK.ir",AFLAK (576p) +https://sdm.telewebion.com/live/aflak/playlist.m3u8 +#EXTINF:-1 tvg-id="AFTAB.ir",AFTAB (576p) +https://sdm.telewebion.com/live/aftab/playlist.m3u8 +#EXTINF:-1 tvg-id="AFTAB.ir",AFTAB (576p) [Timeout] +https://sdw.telewebion.com/live/aftab/playlist.m3u8 +#EXTINF:-1 tvg-id="ALBORZ.ir",ALBORZ (576p) +https://sdm.telewebion.com/live/alborz/playlist.m3u8 +#EXTINF:-1 tvg-id="ALBORZ.ir",ALBORZ (576p) [Timeout] +https://sdw.telewebion.com/live/alborz/playlist.m3u8 +#EXTINF:-1 tvg-id="AMOOZESH.ir",AMOOZESH (576p) +https://sdm.telewebion.com/live/amouzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="AMOOZESH.ir",AMOOZESH (576p) +https://sdw.telewebion.com/live/amouzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir",Azarbayjan Gharbi (576p) +https://sdw.telewebion.com/live/azarbayjangharbi/playlist.m3u8 +#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir",Azarbayjan Gharbi (576p) [Timeout] +https://sdm.telewebion.com/live/azarbayjangharbi/playlist.m3u8 +#EXTINF:-1 tvg-id="Baran.ir",Baran (576p) +https://sdm.telewebion.com/live/baran/playlist.m3u8 +#EXTINF:-1 tvg-id="Baran.ir",Baran (576p) +https://sdw.telewebion.com/live/baran/playlist.m3u8 +#EXTINF:-1 tvg-id="Bushehr.ir",Bushehr (576p) [Not 24/7] +https://sdm.telewebion.com/live/bushehr/playlist.m3u8 +#EXTINF:-1 tvg-id="Bushehr.ir",Bushehr (576p) [Not 24/7] +https://sdw.telewebion.com/live/bushehr/playlist.m3u8 +#EXTINF:-1 tvg-id="Dena.ir",Dena (576p) +https://sdw.telewebion.com/live/dena/playlist.m3u8 +#EXTINF:-1 tvg-id="Dena.ir",Dena (576p) [Timeout] +https://sdm.telewebion.com/live/dena/playlist.m3u8 +#EXTINF:-1 tvg-id="ESFAHAN.ir",ESFAHAN (576p) +https://sdw.telewebion.com/live/esfahan/playlist.m3u8 +#EXTINF:-1 tvg-id="ESFAHAN.ir",ESFAHAN (576p) [Timeout] +https://sdm.telewebion.com/live/esfahan/playlist.m3u8 +#EXTINF:-1 tvg-id="ESHRAGH.ir",ESHRAGH (576p) +https://sdm.telewebion.com/live/eshragh/playlist.m3u8 +#EXTINF:-1 tvg-id="ESHRAGH.ir",ESHRAGH (576p) [Timeout] +https://sdw.telewebion.com/live/eshragh/playlist.m3u8 +#EXTINF:-1 tvg-id="FARS.ir",FARS (576p) +https://sdw.telewebion.com/live/fars/playlist.m3u8 +#EXTINF:-1 tvg-id="FARS.ir",FARS (576p) [Timeout] +https://sdm.telewebion.com/live/fars/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMEDAN.ir",HAMEDAN (576p) +https://sdm.telewebion.com/live/sina/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMEDAN.ir",HAMEDAN (576p) +https://sdw.telewebion.com/live/sina/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMOON.ir",HAMOON (576p) +https://sdm.telewebion.com/live/hamoon/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMOON.ir",HAMOON (576p) +https://sdw.telewebion.com/live/hamoon/playlist.m3u8 +#EXTINF:-1 tvg-id="ILAM.ir",ILAM (576p) +https://sdm.telewebion.com/live/ilam/playlist.m3u8 +#EXTINF:-1 tvg-id="ILAM.ir",ILAM (576p) +https://sdw.telewebion.com/live/ilam/playlist.m3u8 +#EXTINF:-1 tvg-id="IRANKALA.ir",IRANKALA (576p) [Not 24/7] +https://sdw.telewebion.com/live/irankala/playlist.m3u8 +#EXTINF:-1 tvg-id="IRANKALA.ir",IRANKALA (576p) [Timeout] +https://sdm.telewebion.com/live/irankala/playlist.m3u8 +#EXTINF:-1 tvg-id="IRINN.ir",IRINN (1080p) [Not 24/7] +https://sdm.telewebion.com/live/irinn/playlist.m3u8 +#EXTINF:-1 tvg-id="IRINN.ir",IRINN (1080p) [Timeout] +https://sdw.telewebion.com/live/irinn/playlist.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (576p) +https://sdm.telewebion.com/live/jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (576p) [Timeout] +https://sdw.telewebion.com/live/jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMAN.ir",KERMAN (576p) +https://sdm.telewebion.com/live/kerman/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMAN.ir",KERMAN (576p) +https://sdw.telewebion.com/live/kerman/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMANSHAH.ir",KERMANSHAH (576p) +https://sdm.telewebion.com/live/zagros/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMANSHAH.ir",KERMANSHAH (576p) [Timeout] +https://sdw.telewebion.com/live/zagros/playlist.m3u8 +#EXTINF:-1 tvg-id="KHJONOOBI.ir",KH.JONOOBI (576p) +https://sdm.telewebion.com/live/khavaran/playlist.m3u8 +#EXTINF:-1 tvg-id="KHJONOOBI.ir",KH.JONOOBI (576p) [Timeout] +https://sdw.telewebion.com/live/khavaran/playlist.m3u8 +#EXTINF:-1 tvg-id="KHRAZAVI.ir",KH.RAZAVI (576p) +https://sdm.telewebion.com/live/khorasanrazavi/playlist.m3u8 +#EXTINF:-1 tvg-id="KHRAZAVI.ir",KH.RAZAVI (576p) [Not 24/7] +https://sdw.telewebion.com/live/khorasanrazavi/playlist.m3u8 +#EXTINF:-1 tvg-id="KHSHOMALI.ir",KH.SHOMALI (576p) +https://sdw.telewebion.com/live/atrak/playlist.m3u8 +#EXTINF:-1 tvg-id="KHSHOMALI.ir",KH.SHOMALI (576p) [Not 24/7] +https://sdm.telewebion.com/live/atrak/playlist.m3u8 +#EXTINF:-1 tvg-id="KHALIJEFARS.ir",KHALIJEFARS (576p) [Not 24/7] +https://sdm.telewebion.com/live/khalijefars/playlist.m3u8 +#EXTINF:-1 tvg-id="KHALIJEFARS.ir",KHALIJEFARS (576p) [Not 24/7] +https://sdw.telewebion.com/live/khalijefars/playlist.m3u8 +#EXTINF:-1 tvg-id="KHOOZESTAN.ir",KHOOZESTAN (576p) +https://sdm.telewebion.com/live/khoozestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KHOOZESTAN.ir",KHOOZESTAN (576p) [Not 24/7] +https://sdw.telewebion.com/live/khoozestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KISH.ir",KISH (576p) +https://sdm.telewebion.com/live/kish/playlist.m3u8 +#EXTINF:-1 tvg-id="KISH.ir",KISH (576p) [Timeout] +https://sdw.telewebion.com/live/kish/playlist.m3u8 +#EXTINF:-1 tvg-id="KORDESTAN.ir",KORDESTAN (576p) +https://sdm.telewebion.com/live/kordestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KORDESTAN.ir",KORDESTAN (576p) +https://sdw.telewebion.com/live/kordestan/playlist.m3u8 +#EXTINF:-1 tvg-id="MAHABAD.ir",MAHABAD (576p) +https://sdm.telewebion.com/live/mahabad/playlist.m3u8 +#EXTINF:-1 tvg-id="MAHABAD.ir",MAHABAD (576p) +https://sdw.telewebion.com/live/mahabad/playlist.m3u8 +#EXTINF:-1 tvg-id="",MAZANDARAN (576p) +https://sdm.telewebion.com/live/tabarestan/playlist.m3u8 +#EXTINF:-1 tvg-id="",MAZANDARAN (576p) +https://sdw.telewebion.com/live/tabarestan/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSTANAD.ir",MOSTANAD (480p) [Timeout] +https://sdm.telewebion.com/live/mostanad/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSTANAD.ir",MOSTANAD (1080p) +https://sdw.telewebion.com/live/mostanad/playlist.m3u8 +#EXTINF:-1 tvg-id="NAMAYESH.ir",NAMAYESH (1080p) +https://sdm.telewebion.com/live/namayesh/playlist.m3u8 +#EXTINF:-1 tvg-id="NAMAYESH.ir",NAMAYESH (1080p) [Timeout] +https://sdw.telewebion.com/live/namayesh/playlist.m3u8 +#EXTINF:-1 tvg-id="",NASIM (1080p) +https://sdm.telewebion.com/live/nasim/playlist.m3u8 +#EXTINF:-1 tvg-id="",NASIM (1080p) [Timeout] +https://sdw.telewebion.com/live/nasim/playlist.m3u8 +#EXTINF:-1 tvg-id="Noor.ir",Noor (576p) +https://sdw.telewebion.com/live/noor/playlist.m3u8 +#EXTINF:-1 tvg-id="Noor.ir",Noor (576p) [Timeout] +https://sdm.telewebion.com/live/noor/playlist.m3u8 +#EXTINF:-1 tvg-id="",OFOGH (1080p) [Not 24/7] +https://sdm.telewebion.com/live/ofogh/playlist.m3u8 +#EXTINF:-1 tvg-id="",OFOGH (1080p) [Not 24/7] +https://sdw.telewebion.com/live/ofogh/playlist.m3u8 +#EXTINF:-1 tvg-id="OMID.ir",OMID (576p) +https://sdm.telewebion.com/live/omid/playlist.m3u8 +#EXTINF:-1 tvg-id="OMID.ir",OMID (576p) +https://sdw.telewebion.com/live/omid/playlist.m3u8 +#EXTINF:-1 tvg-id="POUYA.ir",POUYA (720p) +https://sdw.telewebion.com/live/pooya/playlist.m3u8 +#EXTINF:-1 tvg-id="POUYA.ir",POUYA (1080p) +https://sdm.telewebion.com/live/pooya/playlist.m3u8 +#EXTINF:-1 tvg-id="",QAZVIN (576p) +https://sdw.telewebion.com/live/qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="",QAZVIN (576p) [Timeout] +https://sdm.telewebion.com/live/qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="QURAN.ir",QURAN (576p) +https://sdw.telewebion.com/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="QURAN.ir",QURAN (576p) [Timeout] +https://sdm.telewebion.com/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="",SABALAN (576p) +https://sdm.telewebion.com/live/sabalan/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (576p) +https://sdm.telewebion.com/live/sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (576p) +https://sdw.telewebion.com/live/sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="SALAMAT.ir",SALAMAT (576p) +https://sdw.telewebion.com/live/salamat/playlist.m3u8 +#EXTINF:-1 tvg-id="SALAMAT.ir",SALAMAT (576p) [Timeout] +https://sdm.telewebion.com/live/salamat/playlist.m3u8 +#EXTINF:-1 tvg-id="SEMNAN.ir",SEMNAN (576p) +https://sdm.telewebion.com/live/semnan/playlist.m3u8 +#EXTINF:-1 tvg-id="SEMNAN.ir",SEMNAN (576p) +https://sdw.telewebion.com/live/semnan/playlist.m3u8 +#EXTINF:-1 tvg-id="",SEPEHR (576p) +https://sdm.telewebion.com/live/sepehr/playlist.m3u8 +#EXTINF:-1 tvg-id="",SEPEHR (576p) +https://sdw.telewebion.com/live/sepehr/playlist.m3u8 +#EXTINF:-1 tvg-id="",SHOMA (576p) +https://sdm.telewebion.com/live/shoma/playlist.m3u8 +#EXTINF:-1 tvg-id="",SHOMA (576p) +https://sdw.telewebion.com/live/shoma/playlist.m3u8 +#EXTINF:-1 tvg-id="",TAMASHA (1080p) +https://sdw.telewebion.com/live/hdtest/playlist.m3u8 +#EXTINF:-1 tvg-id="",TAMASHA (1080p) [Timeout] +https://sdm.telewebion.com/live/hdtest/playlist.m3u8 +#EXTINF:-1 tvg-id="TV1.ir",TV1 (1080p) [Not 24/7] +https://sdm.telewebion.com/live/tv1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV1.ir",TV1 (1080p) [Timeout] +https://sdw.telewebion.com/live/tv1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2.ir",TV2 (576p) +https://sdm.telewebion.com/live/tv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2.ir",TV2 (576p) +https://sdw.telewebion.com/live/tv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TV3.ir",TV3 (360p) [Not 24/7] +https://sdm.telewebion.com/live/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TV3.ir",TV3 (1080p) [Not 24/7] +https://sdw.telewebion.com/live/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TV4.ir",TV4 (576p) +https://sdm.telewebion.com/live/tv4/playlist.m3u8 +#EXTINF:-1 tvg-id="TV4.ir",TV4 (576p) +https://sdw.telewebion.com/live/tv4/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ir",TV5 (576p) +https://sdm.telewebion.com/live/tehran/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ir",TV5 (576p) +https://sdw.telewebion.com/live/tehran/playlist.m3u8 +#EXTINF:-1 tvg-id="",VARZESH (1080p) [Not 24/7] +https://sdw.telewebion.com/live/varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="",VARZESH (1080p) [Timeout] +https://sdm.telewebion.com/live/varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="YAZD.ir",YAZD (576p) +https://sdm.telewebion.com/live/taban/playlist.m3u8 +#EXTINF:-1 tvg-id="YAZD.ir",YAZD (576p) [Not 24/7] +https://sdw.telewebion.com/live/taban/playlist.m3u8 diff --git a/streams/is.m3u b/streams/is.m3u new file mode 100644 index 000000000..205d62922 --- /dev/null +++ b/streams/is.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="N4.is",N4 (720p) +https://live.tv.c.is/n4/index.m3u8 +#EXTINF:-1 tvg-id="RUV2.is",RÚV 2 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/iceland/ruv2 +#EXTINF:-1 tvg-id="RUV.is",RÚV (360p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/iceland/ruv diff --git a/streams/it.m3u b/streams/it.m3u new file mode 100644 index 000000000..ca74a996c --- /dev/null +++ b/streams/it.m3u @@ -0,0 +1,491 @@ +#EXTM3U +#EXTINF:-1 tvg-id="12TVParma.it",12 TV Parma (540p) [Not 24/7] +https://5929b138b139d.streamlock.net/12TVParma/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="20Mediaset.it",20 Mediaset [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(lb)/index.m3u8 +#EXTINF:-1 tvg-id="51RadioTV.it",51 Radio TV (480p) [Geo-blocked] +http://wms.shared.streamshow.it/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="A2itv.it",A2itv (1080p) [Not 24/7] +https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (720p) [Not 24/7] +https://tsw.streamingwebtv24.it:1936/abchanneltv/abchanneltv/playlist.m3u8 +#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (768p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/abchannel/abchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmaTV.it",Alma TV (576p) [Timeout] +http://151.0.207.99:1935/AlmaTv/AlmaTv/playlist.m3u8 +#EXTINF:-1 tvg-id="AltoAdigeTV.it",Alto Adige TV (720p) +https://5f204aff97bee.streamlock.net/AltoAdigeTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AntennaTreVeneto.it",Antenna Tre Veneto (480p) [Geo-blocked] +https://59d8c0cee6f3d.streamlock.net/antennatreveneto/antennatreveneto.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AuroraArte.it",Aurora Arte (480p) +https://59d7d6f47d7fc.streamlock.net/auroraarte/auroraarte/playlist.m3u8 +#EXTINF:-1 tvg-id="AzzurraTV.it",Azzurra TV (576p) [Not 24/7] +https://sb.top-ix.org/avtvlive/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="Bike.it",Bike (720p) [Timeout] +http://backup.superstreaming.inaria.me/BikeSmartMobilityDTT/playlist.m3u8 +#EXTINF:-1 tvg-id="BoingFrance.it",Boing France (720p) [Not 24/7] +http://flusonic-1.platinum-tv.com/boing/index.m3u8?token=test +#EXTINF:-1 tvg-id="BoingSpain.it",Boing Spain [Offline] +http://149.62.177.157:8000/play/a010 +#EXTINF:-1 tvg-id="CafeTV24.it",CafeTV24 (720p) +https://srvx1.selftv.video/cafe/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CafeTV24.it",CafèTV24 (720p) +http://srv3.meway.tv:1957/cafe/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CameradeiDeputativiaRR.it",Camera dei Deputati (via RR) (240p) +https://video-ar.radioradicale.it/diretta/camera2/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale2Altamura.it",Canale 2 Altamura (576p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/canale2/canale2/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale5.it",Canale 5 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(C5)/index.m3u8 +#EXTINF:-1 tvg-id="Canale7.it",Canale 7 (480p) +http://wms.shared.streamshow.it/canale7/canale7/playlist.m3u8 +#EXTINF:-1 tvg-id="",CANALE 7 (480p) +http://wms.shared.streamshow.it/canale7/mp4:canale7/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale8.it",Canale 8 (480p) +http://wms.shared.streamshow.it/canale8/canale8/playlist.m3u8 +#EXTINF:-1 tvg-id="",CANALE 8 (480p) +http://wms.shared.streamshow.it/canale8/mp4:canale8/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale10.it",Canale 10 (540p) [Not 24/7] +http://37.187.142.147:1935/ch10live/high.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale10Ostia.it",Canale 10 Ostia (540p) [Not 24/7] +http://canale10.cloud:1935/ch10live/high.stream/master.m3u8 +#EXTINF:-1 tvg-id="Canale21Lazio.it",Canale 21 Lazio (480p) [Not 24/7] +https://stream.mariatvcdn.com/canaleventuno/f5d2060b3682e0dfffd5b2f18e935ad3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CanaleItalia83.it",Canale Italia 83 (576p) [Not 24/7] +http://ovp-live.akamaized.net/ac024_live/video1/playlist.m3u8 +#EXTINF:-1 tvg-id="CarinaTV.it",Carina TV (720p) +http://wms.shared.streamshow.it/carinatv/carinatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CarinaTV.it",Carina TV (720p) +http://wms.shared.streamshow.it/carinatv/mp4:carinatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cine34.it",Cine 34 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(b6)/index.m3u8 +#EXTINF:-1 tvg-id="ClassCNBC.it",Class CNBC (576p) +https://streamcdnb10-859c1818ed614cc5b0047439470927b0.msvdn.net/live/S76890577/tDoFkZD3T1Lw/playlist.m3u8 +#EXTINF:-1 tvg-id="CompanyTV.it",Company TV (720p) +http://wma10.fluidstream.net/CompanyTV/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CompanyTV.it",Company TV (720p) +https://5929b138b139d.streamlock.net/CompanyTV/smil:CompanyTV.smil/master.m3u8 +#EXTINF:-1 tvg-id="CusanoItaliaTV.it",Cusano Italia TV (720p) [Not 24/7] +https://stream9.xdevel.com/video0s975363-691/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",DeeJay TV (360p) +https://deejay_tv-lh.akamaihd.net/i/DeejayTv_1@129866/master.m3u8 +#EXTINF:-1 tvg-id="DonnaShopping.it",Donna Shopping (1080p) [Not 24/7] +https://media.streambrothers.com:1936/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="EliveTVBrescia.it",Elive TV Brescia (720p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/elivebresciatv/elivebresciatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EntellaTV.it",Entella TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/EntellaTV/EntellaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperiaTV.it",Esperia TV (480p) +http://wms.shared.streamshow.it/esperiatv/esperiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperiaTV.it",Esperia TV (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/esperiatv/esperiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroIndieMusicChartTV.it",Euro Indie Music Chart TV (360p) +http://178.33.224.197:1935/euroindiemusic/euroindiemusic/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroTV.it",Euro TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/eurotv/eurotv/playlist.m3u8 +#EXTINF:-1 tvg-id="FMITALIA.it",FM ITALIA (404p) [Not 24/7] +https://stream7.xdevel.com/video0s975817-411/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Gold78.it",Gold 78 (1080p) +https://stream2.xdevel.com/video1s86-22/stream/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="GoldTVItalia.it",Gold TV Italia (576p) [Timeout] +http://151.0.207.99:1935/GoldTV/GOLD_17/playlist.m3u8 +#EXTINF:-1 tvg-id="HalowKidsHD.it",Halow Kids HD (480p) [Offline] +http://halowtv.online:8080/HalowTV/FSyzHfEhvb/139 +#EXTINF:-1 tvg-id="HilandoFino.it",Hilando Fino (1080p) [Not 24/7] +http://4k-server-mia.2cdn.eu/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 +#EXTINF:-1 tvg-id="HistoryLab.it",History Lab (270p) [Not 24/7] +https://5929b138b139d.streamlock.net/HistoryLab/livestream/playlis.m3u8 +#EXTINF:-1 tvg-id="IcaroTV.it",Icaro TV (720p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/icarotv/icarotv/playlist.m3u8 +#EXTINF:-1 tvg-id="Iris.it",Iris [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ki)/index.m3u8 +#EXTINF:-1 tvg-id="Italia1.it",Italia 1 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i1)/index.m3u8 +#EXTINF:-1 tvg-id="Italia2.it",Italia 2 (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/italia2/italia2/playlist.m3u8 +#EXTINF:-1 tvg-id="Italia2.it",Italia 2 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i2)/index.m3u8 +#EXTINF:-1 tvg-id="Italia2TV.it",Italia 2 TV (480p) [Geo-blocked] +http://wms.shared.streamshow.it/italia2/mp4:italia2/playlist.m3u8 +#EXTINF:-1 tvg-id="Italia7.it",Italia 7 (576p) [Timeout] +http://151.0.207.99:1935/italia7/italia7/playlist.m3u8 +#EXTINF:-1 tvg-id="IuniorTV.it",Iunior TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/iuniortv/iuniortv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Juwelo Italia (480p) +https://sdn-global-live-streaming-packager-cache.3qsdn.com/7841/7841_264_live.m3u8 +#EXTINF:-1 tvg-id="KissKissNapoliTV.it",Kiss Kiss Napoli TV (720p) +https://58f12ffd2447a.streamlock.net/KKTVNapoli/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioKissKissItalia.it",Kiss Kiss TV (720p) +https://58f12ffd2447a.streamlock.net/KKTV01/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="KissKissTV.it",Kiss Kiss TV (720p) +https://59253971be783.streamlock.net/KissKissTV/KissKissTV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KissKissTV.it",Kiss Kiss TV (1080p) +https://58f12ffd2447a.streamlock.net/KKMulti/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="La5.it",La 5 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ka)/index.m3u8 +#EXTINF:-1 tvg-id="LaCTV.it",La C TV (720p) [Not 24/7] +http://streamcdng3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 +#EXTINF:-1 tvg-id="LaCTV.it",La CTV (720p) [Not 24/7] +http://streamcdnc3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTr3.it",La Tr3 (720p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/eslife/eslife/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTR3Marsala.it",La TR3 Marsala (720p) +https://tsw.streamingwebtv24.it:1936/eslife1/eslife1/playlist.m3u8 +#EXTINF:-1 tvg-id="LazioTV.it",Lazio TV (576p) [Timeout] +http://151.0.207.99:1935/live/LAZIOTV12/playlist.m3u8 +#EXTINF:-1 tvg-id="LiraTV.it",Lira TV (720p) [Not 24/7] +https://5d79ae45bc63b.streamlock.net/Liratv/Liratv/playlist.m3u8 +#EXTINF:-1 tvg-id="LucaniaChannel.it",Lucania Channel (480p) [Not 24/7] +http://wms.shared.streamshow.it/lucaniatv/mp4:lucaniatv/playlist.m3u8 +#EXTINF:-1 tvg-id="m2oTV.it",m2o TV (224p) [Not 24/7] +https://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/master.m3u8 +#EXTINF:-1 tvg-id="MediasetExtra.it",Mediaset Extra [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kq)/index.m3u8 +#EXTINF:-1 tvg-id="NSL.it",NSL (1080p) +https://streannunsec-lh.akamaihd.net/i/tv_1@868496/master.m3u8 +#EXTINF:-1 tvg-id="OndaNovaraTV.it",Onda Novara TV (720p) [Not 24/7] +https://585b674743bbb.streamlock.net/9006/9006/master.m3u8 +#EXTINF:-1 tvg-id="OrlerTV.it",Orler TV (420p) [Not 24/7] +https://w1.mediastreaming.it/orlertv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="OttoFMTV.ch",Otto FM TV (576p) +http://streaming.bitonlive.net:8080/hls/ottofm2/index.m3u8 +#EXTINF:-1 tvg-id="PadrePioTV.it",Padre Pio TV (330p) [Offline] +https://56972e8bd3345.streamlock.net/TRPP_live/smil:bcffcc98-ac2f-4b73-b0a5-ad1bfb96d845_all.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ParadiseTV.it",Paradise TV (720p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/paradisetv/paradisetv/playlist.m3u8 +#EXTINF:-1 tvg-id="ParolediVita.it",Parole di Vita (720p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Paroledivita/Paroledivita/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimaTivvu.it",Prima Tivvu (272p) [Offline] +https://celinel.akamaized.net/hls/live/2032089/2032089/primativvu/primativvu/playlist.m3u8 +#EXTINF:-1 tvg-id="Primocanale.it",Primocanale (1080p) [Not 24/7] +https://msh0203.stream.seeweb.it/live/flv:stream2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="R101.it",R101 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(er)/index.m3u8 +#EXTINF:-1 tvg-id="R101ItaliaIT.it",R 101 Italia IT (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(er)/index.m3u8 +#EXTINF:-1 tvg-id="Radio24.it",Radio 24 (1080p) [Not 24/7] +http://radio24-lh.akamaihd.net/i/radio24video_1@379914/master.m3u8 +#EXTINF:-1 tvg-id="",Radio 51 (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio51TV.it",Radio 51 TV (480p) [Geo-blocked] +http://178.32.140.155/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio101.it",Radio 101 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ER)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105.it",Radio 105 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(EC)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105TV.it",Radio 105 TV (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105TV.it",Radio 105 TV (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 +#EXTINF:-1 tvg-id="RadioBirikinaTV.it",Radio Birikina TV (720p) [Not 24/7] +https://56b50ada2d659.streamlock.net/RadioBirikinaTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioCapitalTV.it",Radio Capital TV (360p) +http://capital-live-tv-01-hls.akamai.media.kataweb.it/i/CapitalTv_1@183098/master.m3u8 +#EXTINF:-1 tvg-id="RadioCapitalTV.it",Radio Capital TV (360p) +https://capital_tv-lh.akamaihd.net/i/CapitalTv_1@183098/master.m3u8 +#EXTINF:-1 tvg-id="RADIOFRECCIA.it",RADIO FRECCIA (360p) [Offline] +https://rtl-video2-stream.thron.com/live-video/video2/ngrp:video2/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIbizaTV.it",Radio Ibiza TV (720p) [Not 24/7] +https://5929b138b139d.streamlock.net/RadioIbizaTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIglesias.it",Radio Iglesias (576p) [Geo-blocked] +http://wms.shared.streamshow.it/visualradio/mp4:visualradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIglesiasSardegna.it",Radio Iglesias Sardegna (576p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/visualradio/visualradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioItaliaTV.it",Radio Italia TV (480p) +https://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/master.m3u8 +#EXTINF:-1 tvg-id="RadioLombardiaTV.it",Radio Lombardia TV (720p) +https://flash7.xdevel.com/radiolombardiatv/radiolombardiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioMontecarlo.it",Radio Montecarlo (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(bb)/index.m3u8 +#EXTINF:-1 tvg-id="RadioNumberOne.it",Radio Number One (720p) +https://56b50ada2d659.streamlock.net/RN1TV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPiterPanTV.it",Radio Piter Pan TV (720p) [Not 24/7] +https://58d921499d3d3.streamlock.net/RadioPiterpanTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRadicaleTV.it",Radio Radicale TV (240p) [Not 24/7] +https://video-ar.radioradicale.it/diretta/padtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRadioTV.it",Radio Radio TV (720p) +http://api.new.livestream.com/accounts/11463451/events/3679884/live.m3u8 +#EXTINF:-1 tvg-id="RadioStudioDeltaTV.it",Radio Studio Delta TV (1080p) [Not 24/7] +https://5ce9406b73c33.streamlock.net/RSD/ngrp:livestream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTaorminaSicilia.it",Radio Taormina Sicilia (720p) [Not 24/7] +https://stream2.xdevel.com/video1s3-7/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZeta.it",Radio Zeta (432p) [Offline] +https://rtl-video3-stream.thron.com/live-video/video3/ngrp:video3/playlist.m3u8 +#EXTINF:-1 tvg-id="",radionorba TV (404p) [Offline] +http://46.165.210.112/radionorbatv/norbatv_source.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadionorbaTV.it",Radionorba TV (404p) [Offline] +http://flash2.xdevel.com/norbatv/smil:norbatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadionorbaTV.it",Radionorba TV (404p) [Offline] +http://flash5.streaming.xdevel.com/radionorbatv/smil:radionorbatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZeta.it",RadioZeta (480p) [Timeout] +https://unlimited1-cl.dps.live/radioztv/radioztv.smil/radioztv/livestream2/chunks.m3u8 +#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (480p) +http://ott-cdn.ucom.am/s29/04.m3u8 +#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803 +#EXTINF:-1 tvg-id="",Rai 1 (Geo) (576p) +http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=2606803 +#EXTINF:-1 tvg-id="Rai2.it",Rai 2 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai2.it",Rai 2 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308718 +#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (432p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308709 +#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (720p) [Not 24/7] +http://wzstreaming.rai.it/TVlive/liveStream/chunklist_w823540263.m3u8 +#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (720p) [Not 24/7] +http://wzstreaming.rai.it/TVlive/liveStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (576p) +http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=746966 +#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746966 +#EXTINF:-1 tvg-id="Rai5.it",Rai 5 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai5.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai5.it",Rai 5 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=395276 +#EXTINF:-1 tvg-id="RaiGulp.it",Rai Gulp (576p) +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746953 +#EXTINF:-1 tvg-id="RaiMovie.it",Rai Movie (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747002 +#EXTINF:-1 tvg-id="RaiNews24.it",Rai News 24 (720p) +https://rainews1-live.akamaized.net/hls/live/598326/rainews1/rainews1/playlist.m3u8 +#EXTINF:-1 tvg-id="RaiPremium.it",Rai Premium (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746992 +#EXTINF:-1 tvg-id="RaiScuola.it",Rai Scuola (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747011 +#EXTINF:-1 tvg-id="RaiSport.it",Rai Sport (404p) [Offline] +https://everyrai-lh.akamaihd.net/i/raisportjolly1_1@177967/master.m3u8 +#EXTINF:-1 tvg-id="RaiSport.it",Rai Sport [Geo-blocked] +http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=179975 +#EXTINF:-1 tvg-id="RaiSportPlus.it",Rai Sport+ [Geo-blocked] +http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=4145 +#EXTINF:-1 tvg-id="RaiSportPlus.it",Rai Sport+ [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=358025 +#EXTINF:-1 tvg-id="RaiStoria.it",Rai Storia (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746990 +#EXTINF:-1 tvg-id="",Rai YoYo (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746899 +#EXTINF:-1 tvg-id="RDSSocialTV.it",RDS Social TV (720p) +https://stream.rdstv.radio/out/v1/ec85f72b87f04555aa41d616d5be41dc/index.m3u8 +#EXTINF:-1 tvg-id="ReggioTV.it",ReggioTV (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/reggiotv/reggiotv/playlist.m3u8 +#EXTINF:-1 tvg-id="Rete4.it",Rete 4 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(r4)/index.m3u8 +#EXTINF:-1 tvg-id="Rete55.it",Rete 55 (720p) [Not 24/7] +https://stream.internet.one/Rete55_Live/index.m3u8 +#EXTINF:-1 tvg-id="ReteBiellaTV.it",Rete Biella TV (720p) [Not 24/7] +https://sb.top-ix.org/retebiella/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="ReteOro.it",Rete Oro (720p) [Not 24/7] +https://5926fc9c7c5b2.streamlock.net/9094/9094/playlist.m3u8 +#EXTINF:-1 tvg-id="Retemia.it",Retemia (720p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Retemia/Retemia/playlist.m3u8 +#EXTINF:-1 tvg-id="RetesoleLazio.it",Retesole Lazio (240p) [Geo-blocked] +http://5c389faa13be3.streamlock.net:1935/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="Reteveneta.it",Reteveneta (480p) +https://59d7d6f47d7fc.streamlock.net/reteveneta/reteveneta/playlist.m3u8 +#EXTINF:-1 tvg-id="RMKTVSciacca.it",RMK TV Sciacca (720p) [Not 24/7] +http://vod1.kronopress.com:1935/tmk_live/5123-CA5C-9EBE-428A/playlist.m3u8 +#EXTINF:-1 tvg-id="RTCTelecalabria.it",RTC Telecalabria (720p) [Not 24/7] +http://fl1.mediastreaming.it:1935/calabriachannel/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTCTelecalabria.it",RTC Telecalabria (720p) [Not 24/7] +https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL1025.it",RTL 102.5 (432p) [Offline] +https://rtl-video1-stream.thron.com/live-video/video1/ngrp:video1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL1025BEST.it",RTL 102.5 BEST (432p) [Offline] +https://rtl-video4-stream.thron.com/live-video/video4/ngrp:video4/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP.it",RTP (404p) +https://flash2.xdevel.com/rtptv/rtptv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTTRTrento.it",RTTR Trento (720p) +https://5f204aff97bee.streamlock.net/RTTRlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SardegnaUno.it",Sardegna Uno (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/sardegnauno/sardegnauno/playlist.m3u8 +#EXTINF:-1 tvg-id="SenatoTV.it",Senato TV (1080p) +https://senato-live.morescreens.com/SENATO_1_001/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.it",Sophia TV (720p) +https://www.onairport.live/sophiatv-it-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Sportitalia24.it",Sportitalia 24 (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:silive24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Sportitalia.it",Sportitalia (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sportitaliahd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SportitaliaMotori.it",Sportitalia Motori (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:simotori.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SportitaliaSolocalcio.it",Sportitalia Solocalcio (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sisolocalcio.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Stereo5TV.it",Stereo 5 TV (720p) +https://stream1.aswifi.it/stereo5/live/index.m3u8 +#EXTINF:-1 tvg-id="Studio100Puglia.it",Studio 100 Puglia (480p) +http://wms.shared.streamshow.it:1935/studio100ta/studio100ta/playlist.m3u8 +#EXTINF:-1 tvg-id="Super.it",Super (480p) [Not 24/7] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@357018/master.m3u8 +#EXTINF:-1 tvg-id="SuperJTV.it",Super J TV (720p) [Timeout] +https://54627d4fc5996.streamlock.net/SuperJtv/SuperJtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperJTVTeramo.it",Super J TV Teramo (720p) [Not 24/7] +http://uk4.streamingpulse.com:1935/SuperJtv/SuperJtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.it",Super TV (720p) +http://wms.shared.streamshow.it/supertv/mp4:supertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.it",Super TV Brescia (720p) +http://wms.shared.streamshow.it:1935/supertv/supertv/live.m3u8 +#EXTINF:-1 tvg-id="SuperTVOristano.it",Super TV Oristano (720p) [Not 24/7] +http://193.70.81.40:1935/supertvoristano/supertvoristano/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperSixLombardia.it",SuperSix Lombardia (720p) +https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleAbruzzo.it",Tele Abruzzo (336p) +http://uk4.streamingpulse.com:1935/TeleabruzzoTV/TeleabruzzoTV/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleLiguriaSud.it",Tele Liguria Sud (224p) [Not 24/7] +https://live.teleliguriasud.it/hls/tls/index.m3u8 +#EXTINF:-1 tvg-id="",Tele Pavia (720p) +http://wms.shared.streamshow.it/telepavia/telepavia/playlist.m3u8 +#EXTINF:-1 tvg-id="TelePegasoCatania.it",Tele Pegaso Catania (404p) [Not 24/7] +https://flash2.xdevel.com/telepegasocanale812/telepegasocanale812/playlist.m3u8 +#EXTINF:-1 tvg-id="TelePordenone.it",Tele Pordenone (576p) [Not 24/7] +http://213.187.12.18/telepn/telepn.m3u8 +#EXTINF:-1 tvg-id="TeleQuattro.it",Tele Quattro (480p) [Not 24/7] +http://wms.shared.streamshow.it/telequattro/telequattro/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleRadioSciacca.it",Tele Radio Sciacca (240p) [Not 24/7] +http://5cbd3bc28341f.streamlock.net:1935/trs_live/teleradiosciacca-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSondrioNews.it",Tele Sondrio News (480p) [Not 24/7] +https://59d8c0cee6f3d.streamlock.net/tsn/tsn_mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleArena.it",TeleArena (480p) +http://5ce9406b73c33.streamlock.net/TeleArena/TeleArena.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Telebelluno.it",Telebelluno (720p) +https://live.mariatvcdn.com/telebelluno/a3b80388da9801906adf885282e73bc3.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="TeleBoario.it",TeleBoario (720p) [Not 24/7] +http://flash7.streaming.xdevel.com/teleboario/teleboario/playlist.m3u8 +#EXTINF:-1 tvg-id="Telechiara.it",Telechiara (720p) +http://fms.tvavicenza.it:1935/telechiara/diretta/playlist.m3u8 +#EXTINF:-1 tvg-id="TelecolorLombardia.it",Telecolor Lombardia (1080p) [Not 24/7] +https://1aadf145546f475282c5b4e658c0ac4b.msvdn.net/live/324149/hlbAWtl/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecupole.it",Telecupole (540p) [Offline] +https://live.livevideosolution.it/telecupole/dd6d85e5b7452f7b85a099509292b421.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefoggia.it",Telefoggia (480p) [Not 24/7] +http://wms.shared.streamshow.it/telefoggia/mp4:telefoggia/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefoggia.it",Telefoggia (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/telefoggia/telefoggia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleFormula.it",TeleFormula (720p) [Not 24/7] +https://wms60.tecnoxia.com/radiof/abr_radioftele/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefriuli.it",Telefriuli (720p) [Not 24/7] +https://streamtechglobal.akamaized.net/hls/live/2024685/telefriuli/Group01/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleGenova.it",TeleGenova (404p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Telegenova/Telegenova/playlist.m3u8 +#EXTINF:-1 tvg-id="Telegranda.it",Telegranda (720p) [Not 24/7] +http://live.sloode.com:1935/telegranda_live/C2AD-0664-DC75-4744/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleliberta.it",Teleliberta (720p) [Not 24/7] +http://api.new.livestream.com/accounts/17114188/events/4902226/live.m3u8 +#EXTINF:-1 tvg-id="TeleMia.it",TeleMia (576p) +https://playerssl.telemia.tv/fileadmin/hls/TelemiaHD/telemia85_mediachunks.m3u8 +#EXTINF:-1 tvg-id="TeleMiaExtra.it",TeleMia Extra (720p) [Not 24/7] +https://playerssl.telemia.tv/fileadmin/hls/TelemiaExtra/stream.m3u8 +#EXTINF:-1 tvg-id="Telemolise.it",Telemolise (406p) [Offline] +http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream_tlm/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemolise.it",Telemolise (1080p) +http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="teleMonteneve.it",teleMonteneve (480p) [Not 24/7] +http://wms.shared.streamshow.it:1935/telemonteneve/telemonteneve/live.m3u8 +#EXTINF:-1 tvg-id="Telenord.it",Telenord (576p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Telenord/Telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] +https://59d8c0cee6f3d.streamlock.net/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] +https://wms.shared.streamshow.it/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="",telePAVIA (720p) +http://wms.shared.streamshow.it/telepavia/mp4:telepavia/playlist.m3u8 +#EXTINF:-1 tvg-id="",telePAVIA (720p) +http://wms.shared.streamshow.it:1935/telepavia/telepavia/live.m3u8 +#EXTINF:-1 tvg-id="TeleRent7Gold.it",TeleRent 7Gold (720p) [Offline] +https://stream2.xdevel.com/video0s86-21/stream/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="TelesudTrapani.it",Telesud Trapani (720p) [Not 24/7] +http://5cbd3bc28341f.streamlock.net:1935/telesud/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TelesudTrapani.it",Telesud Trapani (720p) [Not 24/7] +https://5cbd3bc28341f.streamlock.net:444/telesud/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTerni.it",TeleTerni (720p) [Not 24/7] +https://diretta.teleterni.it/live/stream_src.m3u8 +#EXTINF:-1 tvg-id="Teletricolore.it",Teletricolore (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/rs2/rs2/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTusciaSabina2000.it",TeleTusciaSabina 2000 (576p) [Not 24/7] +http://ts2000tv.streaming.nextware.it:8081/ts2000tv/ts2000tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleVenezia.it",TeleVenezia (576p) +https://59d8c0cee6f3d.streamlock.net/televenezia/televenezia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleVideoAgrigento.it",TeleVideo Agrigento (480p) +https://59d7d6f47d7fc.streamlock.net/tva/tva/playlist.m3u8 +#EXTINF:-1 tvg-id="TevereTV.it",Tevere TV (576p) [Not 24/7] +https://5926fc9c7c5b2.streamlock.net/9098/9098/playlist.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) +http://flash5.streaming.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) +https://flash2.xdevel.com/tgnorba_24/tgnorba_24_source.stream/index.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) +https://flash5.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGCom24.it",TGCom 24 [Geo-blocked] +https://live2-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kf)/index.m3u8 +#EXTINF:-1 tvg-id="TLNTeleLazioNord.it",TLN Tele Lazio Nord (720p) [Not 24/7] +http://tln.srfms.com:1935/TLN/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TopCrime.it",Top Crime [Geo-blocked] +https://live3-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(lt)/index.m3u8 +#EXTINF:-1 tvg-id="TrentinoTV.it",Trentino TV (720p) [Not 24/7] +https://5e73cf528f404.streamlock.net/TrentinoTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TRMh24Basilicata.it",TRM h24 Basilicata (480p) [Not 24/7] +http://w1.streamingmedia.it:1935/trmh24/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TSNTeleSondrioNews.it",TSN Tele Sondrio News (480p) [Not 24/7] +http://wms.shared.streamshow.it/tsn/tsn_mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Azzurra.it",TV7 Azzurra (270p) [Not 24/7] +http://217.61.26.46:8080/hls/azzurra.m3u8 +#EXTINF:-1 tvg-id="TV7Benevento.it",TV7 Benevento (288p) [Not 24/7] +http://streaming.senecadot.com/live/flv:tv7.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7News.it",TV7 News (270p) [Not 24/7] +http://217.61.26.46:8080/hls/news.m3u8 +#EXTINF:-1 tvg-id="TV7Triveneta.it",TV7 Triveneta (270p) [Not 24/7] +http://217.61.26.46:8080/hls/triveneta.m3u8 +#EXTINF:-1 tvg-id="TV2000.it",TV 2000 (360p) [Not 24/7] +http://cld04wz.tv2000.it/tv2000_main.m3u8 +#EXTINF:-1 tvg-id="TV2000.it",TV 2000 (540p) [Offline] +http://mi1.wz.tv2000.it/mirror/High/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuiModena.it",TV Qui (Modena) (480p) +https://59d7d6f47d7fc.streamlock.net/tvqui/tvqui/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSei.it",TV Sei (406p) [Not 24/7] +http://185.202.128.1:1935/Tv6Stream/tv6TV.stream_tlm/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSei.it",TV Sei (576p) [Not 24/7] +http://185.202.128.1:1935/Tv6Stream/tv6TV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUNO.it",TV UNO (240p) +http://ftp.tiscali.it/francescovernata/TVUNO/monoscopioTvUNOint-1.wmv +#EXTINF:-1 tvg-id="TVAVicenza.it",TVA (Vicenza) (720p) +http://fms.tvavicenza.it:1935/live/diretta_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVL.it",TVL (720p) [Not 24/7] +https://live.mariatvcdn.com/mariatvcdn/70564e1c6884c007c76f0c128d679eed.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRS.it",TVRS (576p) [Not 24/7] +http://wms.shared.streamshow.it:1935/tvrs/tvrs/live.m3u8 +#EXTINF:-1 tvg-id="UmbriaTV.it",Umbria TV (576p) [Not 24/7] +https://umbriatv.stream.rubidia.it:8083/live/umbriatv/playlist.m3u8 +#EXTINF:-1 tvg-id="VeraTV.it",Vera TV (1080p) [Not 24/7] +http://wms.shared.streamshow.it/veratv/mp4:veratv/playlist.m3u8 +#EXTINF:-1 tvg-id="VeraTVMarche.it",Vera TV (Marche) (1080p) [Not 24/7] +http://wms.shared.streamshow.it/veratv/veratv/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoBresciaTV.it",Video Brescia TV (720p) [Not 24/7] +http://wms.shared.streamshow.it/videobrescia/videobrescia/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoCalabria.it",Video Calabria (480p) [Not 24/7] +http://wms.shared.streamshow.it/videocalabria/videocalabria/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoRola.it",Video Rola (1080p) +https://d3b2epqdk0p7vd.cloudfront.net/out/v1/8a448b5e16384af4a3c8146a7b049c32/index.m3u8 +#EXTINF:-1 tvg-id="VideolinaSardegna.it",Videolina (Sardegna) (404p) [Not 24/7] +http://livestreaming.videolina.it/live/Videolina/playlist.m3u8 +#EXTINF:-1 tvg-id="Videonovara.it",Videonovara (576p) [Not 24/7] +https://sb.top-ix.org/avtv04/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="VideostarCanale193.it",Videostar Canale 193 (480p) [Not 24/7] +https://5cbd3bc28341f.streamlock.net:444/videostar_live/videostar/playlist.m3u8 +#EXTINF:-1 tvg-id="VirginRadioTV.it",Virgin Radio TV (576p) [Not 24/7] +https://live2-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ew)/index.m3u8 +#EXTINF:-1 tvg-id="VisualRadio.it",Visual Radio (576p) [Not 24/7] +http://wms.shared.streamshow.it:1935/visualradio/visualradio/live.m3u8 +#EXTINF:-1 tvg-id="Vuemme.it",Vuemme (480p) +https://5db313b643fd8.streamlock.net/Vuemme/Vuemme/playlist.m3u8 +#EXTINF:-1 tvg-id="WineChannel.it",Wine Channel (720p) [Offline] +http://212.43.97.35:1935/winechannel/winechannel/playlist.m3u8 +#EXTINF:-1 tvg-id="YviiTVSicilia.it",Yvii TV Sicilia (1080p) [Not 24/7] +https://yviistreamer.kernel.online/hls/yviitv.m3u8 diff --git a/streams/it_samsung.m3u b/streams/it_samsung.m3u new file mode 100644 index 000000000..ea6028ee4 --- /dev/null +++ b/streams/it_samsung.m3u @@ -0,0 +1,69 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AmuseAnimation.it",Amuse Animation (720p) [Offline] +https://amuse-amuseanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AtresSeries.it",Atres Series (720p) [Offline] +https://atresmedia-atreseries-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BigName.fr",Big Name (720p) [Offline] +https://alchimie-big-names-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BizzarroMovies.it",Bizzarro Movies (720p) [Offline] +https://minerva-bizzarromovies-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe UHD (2160p) +https://bloomberg-bloombergtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BrindiamoChannel.it",Brindiamo Channel (720p) [Offline] +https://okproductions-brindiamochannel-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanaleEuropa.it",Canale Europa (720p) +https://canaleeuropa-canaleeuropa-1-it.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CGEntertainment.it",CG Entertainment (720p) [Offline] +https://cgentertainment-cgtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CinemaSegreto.it",Cinema Segreto (720p) [Offline] +https://minerva-cinemasegreto-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicalHarmony.fr",Classical Harmony (720p) [Offline] +https://alchimie-classical-harmony-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) +https://mmm-ducktv-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Italiano (720p) +https://rakuten-euronews-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsItalianoviaAlchimie.fr",Euronews Italiano via Alchimie (720p) [Offline] +https://alchimie-euronews-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVItaly.fr",Fashion TV (Italy) (1080p) +https://fashiontv-fashiontv-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] +https://alchimie-humanity-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] +https://alchimie-mmatv-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MondoKids.it",Mondo Kids (720p) [Offline] +https://mondotv-mondotvkids-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] +https://alchimie-moods-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MotorTV.it",Motor TV (720p) [Offline] +https://motorsportnetwork-motor1tv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] +https://alchimie-mysurf-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesItaly.es",Rakuten Documentaries (Italy) (720p) [Offline] +https://rakuten-documentaries-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesItaly.es",Rakuten TV Action Movies Italy (720p) [Offline] +https://rakuten-actionmovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesItaly.es",Rakuten TV Comedy Movies Italy (720p) [Offline] +https://rakuten-comedymovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaItaly.es",Rakuten TV Drama Italy (720p) [Offline] +https://rakuten-tvshows-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesItaly.es",Rakuten TV Family Movies Italy (720p) [Offline] +https://rakuten-family-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightItaly.es",Rakuten TV Spotlight Italy (720p) [Offline] +https://rakuten-spotlight-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) +https://sofytv-samsungit.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportOutdoortv.it",SportOutdoor.tv (720p) [Offline] +https://gto2000-sportoutdoortv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.it",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-4-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.it",Teletubbies (720p) [Offline] +https://dhx-teletubbies-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveItaly.us",The Pet Collective Italy (720p) [Offline] +https://the-pet-collective-international-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="YamatoAnimation.it",Yamato Animation (720p) [Offline] +https://yamatovideo-yamatoanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/jm.m3u b/streams/jm.m3u new file mode 100644 index 000000000..7b619f7a7 --- /dev/null +++ b/streams/jm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="JamaicaTV.jm",Jamaica Online TV (1080p) [Not 24/7] +https://vse2-sa-all4.secdn.net/tvstartup11-channel/live/mp4:jotvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsMax.jm",SportsMax (720p) [Timeout] +http://cdn.tvmatic.net/sport.m3u8 diff --git a/streams/jo.m3u b/streams/jo.m3u new file mode 100644 index 000000000..16313407f --- /dev/null +++ b/streams/jo.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlMamlakaTV.jo",Al Mamlaka TV (1080p) +https://almamlka-live.ercdn.net/almamlka/almamlka.m3u8 +#EXTINF:-1 tvg-id="AmmanTV.jo",Amman TV (720p) +https://ammantv.c.s73cdn.net/23153d43-375a-472a-bc5f-9827582b5d22/elemental/live/master.m3u8 +#EXTINF:-1 tvg-id="FajerTV.jo",Fajer TV (720p) +http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="JawharaFM.jo",Jawhara FM (720p) [Not 24/7] +http://streaming.toutech.net:1935/live/mp4:jawharafm.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="JordanSport.jo",Jordan Sport [Offline] +https://jrtv-live.ercdn.net/jordansporthd/jordansporthd.m3u8 +#EXTINF:-1 tvg-id="",Jordan TV (1080p) +https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8 +#EXTINF:-1 tvg-id="MelodyFM.jo",Melody FM Jordan (720p) [Not 24/7] +https://cdn3.wowza.com/1/ZFBldUlPNjRBRDZM/ZW90V2ZW/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NojoumTV.jo",Nojoum TV (720p) +https://nojoumhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanCityView.jo",Radio Fann Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/RadioFann/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanControlStudio.jo",Radio Fann Jordan: Control Studio (220p) +http://188.247.86.66/RadioFann/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanStudio.jo",Radio Fann Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/RadioFann/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanCityView.jo",Radio Yaqeen Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/MixFM/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanControlStudio.jo",Radio Yaqeen Jordan: Control Studio (180p) [Not 24/7] +http://188.247.86.66/MixFM/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanStudio.jo",Radio Yaqeen Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/MixFM/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanCityView.jo",Rotana Radio Jordan: City View (180p) +http://188.247.86.66/RotanaRadio/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanControlStudio.jo",Rotana Radio Jordan: Control Studio (180p) +http://188.247.86.66/RotanaRadio/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanStudio.jo",Rotana Radio Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/RotanaRadio/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaTarabJordanCityView.jo",Rotana Tarab Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/RadioFann/Audio32/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaTarabJordanControlStudio.jo",Rotana Tarab Jordan: Control Studio (180p) [Not 24/7] +http://188.247.86.66/RotanaRadio/Audio32/playlist.m3u8 +#EXTINF:-1 tvg-id="RoyaTV.jo",Roya TV (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_roya/index.m3u8 +#EXTINF:-1 tvg-id="ToyorAlJannah.jo",Toyor Al-Jannah (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/toyorlive/live diff --git a/streams/jp.m3u b/streams/jp.m3u new file mode 100644 index 000000000..d965dfd36 --- /dev/null +++ b/streams/jp.m3u @@ -0,0 +1,199 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (720p) +http://50.7.74.29:8880/hls/j00026/index.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00026/index.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h02/01.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h144/01.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Thai Subs) [Offline] +http://27.254.130.62/feed/LC38/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Vietnamese Subs) (720p) +https://livecdn.fptplay.net/hda3/animaxport_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATX.jp",AT-X (540p) [Not 24/7] +http://50.7.74.29:8880/hls/j00052/index.m3u8 +#EXTINF:-1 tvg-id="ATX.jp",AT-X (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00052/index.m3u8 +#EXTINF:-1 tvg-id="ATX.jp",AT-X (720p) [Not 24/7] +https://sub2.neetball.net/live/neet.m3u8 +#EXTINF:-1 tvg-id="BSAsahi.jp",BS Asahi (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00048/index.m3u8 +#EXTINF:-1 tvg-id="BSAsahi.jp",BS Asahi (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00048/index.m3u8 +#EXTINF:-1 tvg-id="BSFujiTV.jp",BS Fuji TV (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00049/index.m3u8 +#EXTINF:-1 tvg-id="BSFujiTV.jp",BS Fuji TV (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00049/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00005/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (540p) [Offline] +http://50.7.74.29:8880/hls/j00005/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00047/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00047/index.m3u8 +#EXTINF:-1 tvg-id="BSTVTokyo.jp",BS TV Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00050/index.m3u8 +#EXTINF:-1 tvg-id="BSTVTokyo.jp",BS TV Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00050/index.m3u8 +#EXTINF:-1 tvg-id="BSTBS.jp",BS-TBS (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00051/index.m3u8 +#EXTINF:-1 tvg-id="BSTBS.jp",BS-TBS (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00051/index.m3u8 +#EXTINF:-1 tvg-id="CGNTVJapan.jp",CGNTV Japan (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_jp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] +http://50.7.74.29:8880/hls/j00011/index.m3u8 +#EXTINF:-1 tvg-id="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00011/index.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (540p) [Not 24/7] +https://fujitv1.mov3.co/hls/fujitv.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00010/index.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00010/index.m3u8 +#EXTINF:-1 tvg-id="GAORA.jp",GAORA (540p) [Not 24/7] +http://50.7.74.29:8880/hls/j00045/index.m3u8 +#EXTINF:-1 tvg-id="GAORA.jp",GAORA (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00045/index.m3u8 +#EXTINF:-1 tvg-id="GSTV.jp",GSTV (720p) +https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GTNTyphome.jp",GTN Typhome (English Subs) (720p) [Not 24/7] +https://hamada.gaki-no-tsukai.eu:2087/hls/test.m3u8 +#EXTINF:-1 tvg-id="GunmaTV.jp",Gunma TV (720p) +https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8 +#EXTINF:-1 tvg-id="HiroshimaWeatherInformation.jp",Hiroshima Weather Information [Offline] +https://hiroshima-tv-live.hls.wselive.stream.ne.jp/hiroshima-tv-live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="JSports1.jp",J Sports 1 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00042/index.m3u8 +#EXTINF:-1 tvg-id="JSports1.jp",J Sports 1 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00042/index.m3u8 +#EXTINF:-1 tvg-id="JSports2.jp",J Sports 2 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00041/index.m3u8 +#EXTINF:-1 tvg-id="JSports2.jp",J Sports 2 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00041/index.m3u8 +#EXTINF:-1 tvg-id="JSports3.jp",J Sports 3 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00040/index.m3u8 +#EXTINF:-1 tvg-id="JSports3.jp",J Sports 3 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00040/index.m3u8 +#EXTINF:-1 tvg-id="JSports4.jp",J Sports 4 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00039/index.m3u8 +#EXTINF:-1 tvg-id="JSports4.jp",J Sports 4 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00039/index.m3u8 +#EXTINF:-1 tvg-id="KansaiTV.jp",Kansai TV (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00006/index.m3u8 +#EXTINF:-1 tvg-id="KansaiTV.jp",Kansai TV (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00006/index.m3u8 +#EXTINF:-1 tvg-id="MBS.jp",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00038/index.m3u8 +#EXTINF:-1 tvg-id="MBS.jp",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00038/index.m3u8 +#EXTINF:-1 tvg-id="NewJapanProWrestlingWorld.jp",New Japan Pro Wrestling World (540p) +https://aka-amd-njpwworld-hls-enlive.akamaized.net/hls/video/njpw_en/njpw_en_channel01_3/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK + NHE (Sub Audio) (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhkg2.m3u8 +#EXTINF:-1 tvg-id="NHKEducational.jp",NHK + NHKE (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhke.m3u8 +#EXTINF:-1 tvg-id="NHKEducational.jp",NHK + NHKE (Sub Audio) (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhke2.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK + NHKG (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhkg.m3u8 +#EXTINF:-1 tvg-id="NHKBS1.jp",NHK BS1 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00037/index.m3u8 +#EXTINF:-1 tvg-id="NHKBS1.jp",NHK BS1 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00037/index.m3u8 +#EXTINF:-1 tvg-id="NHKBSPremium.jp",NHK BSP (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00036/index.m3u8 +#EXTINF:-1 tvg-id="NHKBSPremium.jp",NHK BSP (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00036/index.m3u8 +#EXTINF:-1 tvg-id="NHKChineseVision.jp",NHK Chinese Vision (720p) +https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKChineseVision.jp",NHK Chinese Vision (720p) +https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00034/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00035/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00034/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00035/index.m3u8 +#EXTINF:-1 tvg-id="NHKGOsaka.jp",NHK G Osaka (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00032/index.m3u8 +#EXTINF:-1 tvg-id="NHKGOsaka.jp",NHK G Osaka (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00032/index.m3u8 +#EXTINF:-1 tvg-id="NHKGTokyo.jp",NHK G Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00033/index.m3u8 +#EXTINF:-1 tvg-id="NHKGTokyo.jp",NHK G Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00033/index.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK General TV (540p) [Not 24/7] +https://nhk1.mov3.co/hls/nhk.m3u8 +#EXTINF:-1 tvg-id="NHKWorld.jp",NHK World (720p) +https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/sycc-live/zh/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (720p) [Not 24/7] +https://b-nhkwlive-xjp.webcdn.stream.ne.jp/hls/live/2003458-b/nhkwlive-xjp-en/index.m3u8 +#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (1080p) +https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index.m3u8 +#EXTINF:-1 tvg-id="",NHK华语视界 (360p) +https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (540p) [Not 24/7] +https://ntv1.mov3.co/hls/ntv.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00004/index.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00004/index.m3u8 +#EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (480p) +https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 +#EXTINF:-1 tvg-id="ShopChannel.jp",Shop Channel (1080p) [Not 24/7] +https://stream3.shopch.jp/HLS/master.m3u8 +#EXTINF:-1 tvg-id="Star1.jp",Star 1 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00019/index.m3u8 +#EXTINF:-1 tvg-id="Star1.jp",Star 1 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00019/index.m3u8 +#EXTINF:-1 tvg-id="Star2.jp",Star 2 (540p) [Not 24/7] +http://50.7.74.29:8880/hls/j00018/index.m3u8 +#EXTINF:-1 tvg-id="Star2.jp",Star 2 (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00018/index.m3u8 +#EXTINF:-1 tvg-id="Star3.jp",Star 3 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00017/index.m3u8 +#EXTINF:-1 tvg-id="Star3.jp",Star 3 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00017/index.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (540p) [Not 24/7] +https://tbs.mov3.co/hls/tbs.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00031/index.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00031/index.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (360p) +https://movie.mcas.jp/mcas/smil:mx1_prod.smil/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p) +https://movie.mcas.jp/mcas/mx1_2/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p) +https://movie.mcas.jp/mcas/mx_live_2/master.m3u8 +#EXTINF:-1 tvg-id="JOMXDTV.jp",Tokyo MX1 (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00030/index.m3u8 +#EXTINF:-1 tvg-id="JOMXDTV.jp",Tokyo MX1 (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00030/index.m3u8 +#EXTINF:-1 tvg-id="TokyoMX2.jp",Tokyo MX2 (360p) +https://movie.mcas.jp/mcas/smil:mx2_prod.smil/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX2.jp",Tokyo MX2 (720p) +https://movie.mcas.jp/mcas/mx2_2/master.m3u8 +#EXTINF:-1 tvg-id="TVAsahi.jp",TV Asahi (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00014/index.m3u8 +#EXTINF:-1 tvg-id="TVAsahi.jp",TV Asahi (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00014/index.m3u8 +#EXTINF:-1 tvg-id="TVOsaka.jp",TV Osaka (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00013/index.m3u8 +#EXTINF:-1 tvg-id="TVOsaka.jp",TV Osaka (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00013/index.m3u8 +#EXTINF:-1 tvg-id="JOTXDTV.jp",TV Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hls/j00012/index.m3u8 +#EXTINF:-1 tvg-id="JOAXDTV.jp",TV Tokyo (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00012/index.m3u8 +#EXTINF:-1 tvg-id="WakuWakuJapan.jp",WakuWaku Japan [Offline] +https://liveanevia.mncnow.id/live/eds/WakuWakuJapan/sa_dash_vmx/WakuWakuJapan.mpd +#EXTINF:-1 tvg-id="",Weather Channel (ウェザーニュース) (BS | WNI) (720p) +http://movie.mcas.jp/mcas/wn1_2/master.m3u8 +#EXTINF:-1 tvg-id="WeatherNews.jp",Weather News (720p) +https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8 diff --git a/streams/ke.m3u b/streams/ke.m3u new file mode 100644 index 000000000..c39995b1d --- /dev/null +++ b/streams/ke.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CitizenTV.ke",Citizen TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/kenyacitizentv/live +#EXTINF:-1 tvg-id="EbruTV.ke",Ebru TV (360p) [Not 24/7] +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 +#EXTINF:-1 tvg-id="GBSTV.ke",GBS TV (720p) [Not 24/7] +https://goliveafrica.media:9998/live/6045ccbac3484/index.m3u8 +#EXTINF:-1 tvg-id="K24.ke",K24 (480p) [Not 24/7] +https://5f4db0f94b000.streamlock.net/k24/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="KamemeTV.ke",Kameme TV (184p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6ol8sj +#EXTINF:-1 tvg-id="KassTV.ke",Kass TV (540p) [Not 24/7] +https://goliveafrica.media:9998/live/60755313b36db/index.m3u8 +#EXTINF:-1 tvg-id="KBC.ke",KBC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x74211t +#EXTINF:-1 tvg-id="KTNNews.ke",KTN News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/standardgroupkenya/live +#EXTINF:-1 tvg-id="NTV.ke",NTV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6shkab +#EXTINF:-1 tvg-id="SwitchTV.ke",Switch TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x7sxle3 +#EXTINF:-1 tvg-id="TV47.ke",TV47 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tv47kenya/ +#EXTINF:-1 tvg-id="UTV.ke",UTV (240p) [Not 24/7] +https://goliveafrica.media:9998/live/6049f726546e1/index.m3u8 diff --git a/streams/kg.m3u b/streams/kg.m3u new file mode 100644 index 000000000..eb2fd37ff --- /dev/null +++ b/streams/kg.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV1KG.kg",TV1 KG (1080p) +http://212.2.225.30:1935/live/site.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Balastan.kg",Баластан (576p) [Not 24/7] +http://onlinetv.ktrk.kg:1935/live/myStream6/playlist.m3u8 +#EXTINF:-1 tvg-id="LyubimyyHDTNT4.kg",Любимый HD/ТНТ4 (576p) +http://92.245.103.126:1935/live/live.stream/playlist.m3u8 diff --git a/streams/kh.m3u b/streams/kh.m3u new file mode 100644 index 000000000..138f49ca8 --- /dev/null +++ b/streams/kh.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BayonTV.kh",Bayon TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/bayontv1_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BayonTV.kh",Bayon TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/bayontv_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FreshNews.kh",Fresh News (720p) +http://167.99.65.12:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="FreshNewsTV.kh",Fresh News TV (720p) +http://167.99.65.12:1935/live/ngrp:myStream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="PNN.kh",PNN (360p) [Not 24/7] +http://203.176.130.123:8989/live/pnn_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SEATV.kh",SEA TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/seatv_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TV9.kh",TV9 (360p) [Not 24/7] +http://203.176.130.123:8989/live/ctv9_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVK.kh",TVK (360p) [Not 24/7] +http://203.176.130.123:8989/live/tvk_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKCamboya.kh",TVK Camboya (720p) +https://livefta.malimarcdn.com/tvkedge/tvk2.stream/master.m3u8 +#EXTINF:-1 tvg-id="TVKCamboya.kh",TVK Camboya (720p) +https://livefta.malimarcdn.com/tvkedge/tvkhd.stream/master.m3u8 diff --git a/streams/kp.m3u b/streams/kp.m3u new file mode 100644 index 000000000..013ad5cbe --- /dev/null +++ b/streams/kp.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Korean Central Television (KCTV) (576p) +https://tv.nknews.org/tvdash/stream.mpd +#EXTINF:-1 tvg-id="",Korean Central Television (KCTV) (810p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/kctv_elufa diff --git a/streams/kr.m3u b/streams/kr.m3u new file mode 100644 index 000000000..f88c857d9 --- /dev/null +++ b/streams/kr.m3u @@ -0,0 +1,117 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",AniPlus (Malay subtitles) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h02/01.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr",Arirang (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/arirang_edge/index.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) +http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) +http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) +http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) +http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) +http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) +http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) +http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) [Not 24/7] +http://amdlive.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/.m3u8 +#EXTINF:-1 tvg-id="BBSBuddhistBroadcasting.kr",BBS Buddhist Broadcasting (1080p) [Not 24/7] +http://bbstv.clouducs.com:1935/bbstv-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CBS.kr",CBS (1080p) +http://cbs-live.gscdn.com/cbs-live/cbs-live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CGNTV.kr",CGNTV (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_kr01/playlist.m3u8 +#EXTINF:-1 tvg-id="CGNTV.kr",CGNTV (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_kr02/playlist.m3u8 +#EXTINF:-1 tvg-id="",CJB청주방송 (SBS 淸州) (540p) [Not 24/7] +http://1.222.207.80:1935/live/cjbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="",CTS기독교TV (720p) +https://d34t5yjz1ooymj.cloudfront.net/out/v1/875039d5eba0478fa8375a06b3aa5a37/index.m3u8 +#EXTINF:-1 tvg-id="EBS1.kr",EBS 1 (400p) +http://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBS1.kr",EBS 1 (400p) +http://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBS2.kr",EBS 2 (400p) +http://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSe.kr",EBS e (400p) +http://ebsonair.ebs.co.kr/plus3familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSKIDS.kr",EBS KIDS (400p) +http://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSPlus1.kr",EBS+ 1 (400p) +http://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSPlus2.kr",EBS+ 2 (400p) +http://ebsonair.ebs.co.kr/plus2familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EdailyTV.kr",Edaily TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Sv6O3Ux8ePVqorx8aOBMg/live +#EXTINF:-1 tvg-id="GCN24English.kr",GCN24 English (720p) [Not 24/7] +http://liveen24-manminglobal3.ktcdn.co.kr/liveen24/gcnus_high/playlist.m3u8 +#EXTINF:-1 tvg-id="GCN24Korean.kr",GCN24 Korean (480p) [Not 24/7] +http://liveko24-manminglobal3.ktcdn.co.kr/liveko24/gcnko_high/playlist.m3u8 +#EXTINF:-1 tvg-id="GCN24Korean.kr",GCN24 Korean (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqGxkgVnPc7arUR7MdCi99g/live +#EXTINF:-1 tvg-id="GCN.kr",GCN (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFb1QuujJWU3nuUMCNPhNiA/live +#EXTINF:-1 tvg-id="GugbangTV.kr",Gugbang TV (404p) [Not 24/7] +http://mediaworks.dema.mil.kr:1935/live_edge/cudo.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="JIBSSBS.kr",JIBS SBS (720p) [Not 24/7] +http://123.140.197.22/stream/1/play.m3u8 +#EXTINF:-1 tvg-id="KPlus.kr",K+ (576p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h08/index.m3u8 +#EXTINF:-1 tvg-id="",KBC 광주방송 (SBS 光州) (1080p) +http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KBS1.kr",KBS 1 (1080p) [Not 24/7] +http://121.130.210.101:9981/stream/channelid/637185705 +#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr",KBS LiveCam DokDo (540p) +http://kbs-dokdo.gscdn.com/dokdo_300/dokdo_300.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr",KBS LiveCam DokDo (540p) [Offline] +http://kbs-dokdo.gscdn.com/sec_kbshomepage_300/sec_kbshomepage_300.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSWorld.kr",KBS World (720p) +https://livecdn.fptplay.net/sdb/kbs_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",KCTV 광주 CH05 (720p) [Not 24/7] +http://119.77.96.184:1935/chn05/chn05/playlist.m3u8 +#EXTINF:-1 tvg-id="MBC.kr",MBC (1080p) +http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCYeosu.kr",MBC Yeosu (720p) [Not 24/7] +https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="MTN.kr",MTN (720p) [Not 24/7] +http://183.110.27.87/mtnlive/720/playlist.m3u8 +#EXTINF:-1 tvg-id="MTN.kr",MTN (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClErHbdZKUnD1NyIUeQWvuQ/live +#EXTINF:-1 tvg-id="NBSKoreaAgriculturalBroadcasting.kr",NBS Korea Agricultural Broadcasting (720p) +https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="One.kr",One (Indonesian Sub) (360p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h143/02.m3u8 +#EXTINF:-1 tvg-id="SBSKNN.kr",SBS KNN (450p) [Not 24/7] +http://211.220.195.200:1935/live/mp4:KnnTV.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",TBC 대구 (SBS 大邱) (540p) [Geo-blocked] +http://221.157.125.239:1935/live/psike/playlist.m3u8 +#EXTINF:-1 tvg-id="TBSSeoul.kr",TBS Seoul (720p) +https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",TJB 대전방송 (SBS 大田) (720p) [Not 24/7] +http://1.245.74.5:1935/live/tv/.m3u8 +#EXTINF:-1 tvg-id="TVWorkNet.kr",TVWorkNet (480p) +http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="YTN.kr",YTN (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChlgI3UHCOnwUGzWzbJ3H5w/live +#EXTINF:-1 tvg-id="YTNDMB.kr",YTN DMB [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC38IlqMxZ_YtFg3eSGmmJnQ/live +#EXTINF:-1 tvg-id="",YTN SCIENCE (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZdBJIbJz0P9xyFipgOj1fA/live +#EXTINF:-1 tvg-id="",가요TV (1080p) [Not 24/7] +http://gayotv.net:1935/live/gayotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",국악방송 (1080p) +http://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCDaegu.kr",대구 MBC (MBC Daegu) (480p) [Not 24/7] +https://5e04aba713813.streamlock.net/live/livetv/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCDaejeon.kr",대전MBC (MBC Daejeon) (720p) [Not 24/7] +https://5c482867a8b63.streamlock.net/live/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCJeju.kr",제주 MBC (MBC Jeju) (352p) [Not 24/7] +https://5cf58a556f9b2.streamlock.net/live/tv_jejumbc/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCChuncheon.kr",춘천MBC (MBC Chuncheon) (1080p) [Not 24/7] +https://5c74939c891dc.streamlock.net/live/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="",한국선거방송 (720p) +http://necgokr2-724.acs.wecandeo.com/ms/2528/724/index_1.m3u8 diff --git a/streams/kw.m3u b/streams/kw.m3u new file mode 100644 index 000000000..afa90d7d4 --- /dev/null +++ b/streams/kw.m3u @@ -0,0 +1,41 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlMaaliTV.kw",Al Maali TV (1080p) +https://video1.getstreamhosting.com:1936/8484_1/8484_1/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMaaref.kw",Al Maaref (350p) [Timeout] +https://5e74a9d684b2e.streamlock.net/liveTrans/ngrp:channel23_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ALRAI.kw",Al Rai (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8779mb +#EXTINF:-1 tvg-id="AlSabah.kw",Al Sabah (360p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/live/Al-Sabah_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="AlBawadi.kw",Al-Bawadi (360p) +https://gulfsat.cdn.easybroadcast.fr/live/Al-Bawadi_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="AlShahed.kw",Al-Shahed (720p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/abr_live/Al-Shahed/playlist.m3u8 +#EXTINF:-1 tvg-id="AlraiTV.kw",Alrai TV (720p) +https://media.streambrothers.com:1936/8724/8724/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.kw",ATV (360p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/live/Aladalah_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Ch4Teen.kw",Ch4Teen (480p) [Not 24/7] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835787/master.m3u8 +#EXTINF:-1 tvg-id="Funoon.kw",Funoon (360p) +https://gulfsat.cdn.easybroadcast.fr/live/FunoonHd_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="KTV1.kw",KTV 1 (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtv1.m3u8 +#EXTINF:-1 tvg-id="KTV2.kw",KTV 2 (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtv2.m3u8 +#EXTINF:-1 tvg-id="KTVAlMajlis.kw",KTV Al Majlis (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvmajlis.m3u8 +#EXTINF:-1 tvg-id="KTVAlQurain.kw",KTV Al Qurain (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvqurain.m3u8 +#EXTINF:-1 tvg-id="KTVArabe.kw",KTV Arabe (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvarabi.m3u8 +#EXTINF:-1 tvg-id="KTVEthraa.kw",KTV Ethraa (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvethraa.m3u8 +#EXTINF:-1 tvg-id="KTVKhallikBilbait.kw",KTV Khallik Bilbait (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvkids.m3u8 +#EXTINF:-1 tvg-id="KTVSport.kw",KTV Sport (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsports.m3u8 +#EXTINF:-1 tvg-id="KTVSportPlus.kw",KTV Sport Plus (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsportsplus.m3u8 +#EXTINF:-1 tvg-id="MarinaTV.kw",Marina TV (720p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/abr_live/MarinaTv/playlist.m3u8 diff --git a/streams/kz.m3u b/streams/kz.m3u new file mode 100644 index 000000000..4b5bc7dc2 --- /dev/null +++ b/streams/kz.m3u @@ -0,0 +1,47 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",7 канал (576p) [Not 24/7] +https://sc.id-tv.kz/7_kanal.m3u8 +#EXTINF:-1 tvg-id="",31 канал (576p) [Not 24/7] +https://sc.id-tv.kz/31Kanal.m3u8 +#EXTINF:-1 tvg-id="",Asyl Arna (Асыл арна) (432p) [Not 24/7] +https://sc.id-tv.kz/AsylArna.m3u8 +#EXTINF:-1 tvg-id="AtamekenBusiness.kz",Atameken Business (576p) [Not 24/7] +https://sc.id-tv.kz/Atameken.m3u8 +#EXTINF:-1 tvg-id="AtamekenBusiness.kz",Atameken Business (1080p) [Not 24/7] +http://live-atameken.cdnvideo.ru/atameken/atameken.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CaspianNews.kz",Caspian News (576p) [Not 24/7] +https://sc.id-tv.kz/CaspianNews.m3u8 +#EXTINF:-1 tvg-id="DombyraTV.kz",Dombyra TV (576p) [Not 24/7] +https://sc.id-tv.kz/Dombyra.m3u8 +#EXTINF:-1 tvg-id="Gakku.kz",Gakku (576p) [Not 24/7] +https://sc.id-tv.kz/Gakku.m3u8 +#EXTINF:-1 tvg-id="HitTV.kz",Hit TV (576p) [Not 24/7] +https://sc.id-tv.kz/HitTV.m3u8 +#EXTINF:-1 tvg-id="",Алматы (576p) [Not 24/7] +https://sc.id-tv.kz/Almaty.m3u8 +#EXTINF:-1 tvg-id="",Алматы (720p) [Not 24/7] +http://live-almatytv.cdnvideo.ru/almatytv/almatytv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Астана (576p) [Not 24/7] +https://sc.id-tv.kz/Astana.m3u8 +#EXTINF:-1 tvg-id="ElArna.kz",Ел Арна (576p) [Not 24/7] +https://sc.id-tv.kz/ElArna.m3u8 +#EXTINF:-1 tvg-id="KMA.kz",КМА (1080p) [Not 24/7] +https://sc.id-tv.kz/KMA.m3u8 +#EXTINF:-1 tvg-id="KTK.kz",КТК (360p) [Not 24/7] +http://89.218.30.37/ktklive/live.hq/playlist.m3u8 +#EXTINF:-1 tvg-id="KTK.kz",КТК (576p) [Not 24/7] +https://sc.id-tv.kz/KTK.m3u8 +#EXTINF:-1 tvg-id="MTRK.kz",МТРК (576p) [Not 24/7] +https://tvcdn01.oktv.kz/tv/mtrk/playlist.m3u8 +#EXTINF:-1 tvg-id="Novoetelevidenie.kz",Новое телевидение (576p) [Not 24/7] +http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="STV.kz",СТВ (576p) [Not 24/7] +https://sc.id-tv.kz/STV.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar_24.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnAFKvDuqBGkIfV8Vn0J_CQ/live +#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] +http://serv30.vintera.tv:8081/habar/habar24/playlist.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] +https://live-24kz.cdnvideo.ru/24kz/24kz.sdp/playlist.m3u8 diff --git a/streams/la.m3u b/streams/la.m3u new file mode 100644 index 000000000..1cebc3ee2 --- /dev/null +++ b/streams/la.m3u @@ -0,0 +1,63 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AirTV.la",Air TV (720p) +https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="BrianTV.la",Brian TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DaoLaneXang.la",Dao Lane Xang (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Dhammasapha TV (1080p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="GoodIdeaTV.la",Good Idea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongStarTV.la",Hmong Star TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongUSATV.la",HmongUSA TV (360p) +https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HoungFa.la",Houng Fa (720p) +https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.la",ISTV (480p) +https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KhomsanhTV.la",Khomsanh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV2.la",Lao Champa TV 2 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV3.la",Lao Champa TV 3 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV.la",Lao Champa TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.la",Lao Heritage Foundation TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoMuslimTV.la",Lao Muslim TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoNetTV.la",Lao Net TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoSVTV.la",Lao SV TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaosPlanetTV.la",Laos Planet TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LookThoongTV.la",Look Thoong TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LSTV.la",LS TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NATTV.vn",NAT TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ning TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OhMuangLaoTV.la",Oh Muang Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OyLaoTV.la",Oy Lao TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PNTV.la",PNTV (720p) +https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV2.la",Tea TV 2 (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV.la",Tea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="UniquelyThai.la",Uniquely Thai (720p) +https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VajtswvTxojlus.la",Vajtswv Txojlus (720p) +https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Vanphenh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Vati Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 diff --git a/streams/lb.m3u b/streams/lb.m3u new file mode 100644 index 000000000..efdea87bc --- /dev/null +++ b/streams/lb.m3u @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AghaniAghani.lb",Aghani Aghani (1080p) [Not 24/7] +https://svs.itworkscdn.net/aghanilive/aghanilive/playlist.m3u8 +#EXTINF:-1 tvg-id="AlIttihad.lb",Al Ittihad (552p) [Not 24/7] +https://live.alittihad.tv/ittihad/index.m3u8 +#EXTINF:-1 tvg-id="AljadeedTv.lb",Al Jadeed (480p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7ztkw7 +#EXTINF:-1 tvg-id="AlManar.lb",Al Manar (576p) [Not 24/7] +https://manar.live/iptv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlManar.lb",Al Manar (576p) [Not 24/7] +https://manar.live/x.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Al Mayadeen (576p) +https://lmdstrm.cdn.octivid.com/mayadeen-live/smil:mayadeen.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlhayatTV.lb",Alhayat TV (720p) [Not 24/7] +https://wowzaprod140-i.akamaihd.net/hls/live/750788/7552102e/playlist.m3u8 +#EXTINF:-1 tvg-id="",Aliman TV (240p) [Not 24/7] +https://svs.itworkscdn.net/alimanlive/imantv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArabicaMusic.lb",Arabica TV (720p) +http://istream.binarywaves.com:8081/hls/arabica/playlist.m3u8 +#EXTINF:-1 tvg-id="CharityTV.lb",CharityTV (1080p) [Not 24/7] +http://185.105.4.236:1935/live/ngrp:livestream_all/live.m3u8 +#EXTINF:-1 tvg-id="FutureTV.lb",Future TV (576p) [Not 24/7] +http://teledunet.com:8080/live/azrotv/azrotv2021/10007.m3u8 +#EXTINF:-1 tvg-id="LBCInternational.lb",LBC International (1080p) [Geo-blocked] +https://shls-lbci-prod-dub.shahid.net/out/v1/d8cce30036e743318a7f338539689968/index.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] +http://31.14.40.237:1935/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] +http://31.14.40.238:1935/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] +https://5dc7d824154d0.streamlock.net/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NBN.lb",NBN (720p) [Not 24/7] +https://nbntv.me:8443/nbntv/index.m3u8 +#EXTINF:-1 tvg-id="Newvision.lb",Newvision (480p) [Not 24/7] +https://master.starmena-cloud.com/hls/newv.m3u8 +#EXTINF:-1 tvg-id="NourAlKoddas.lb",Nour Al Koddas (406p) [Not 24/7] +https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NourAlSharq.lb",Nour Al Sharq (576p) +https://svs.itworkscdn.net/nour8satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NourMariam.lb",Nour Mariam (576p) +https://svs.itworkscdn.net/nour9satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",NourSAT (576p) +https://svs.itworkscdn.net/nour4satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",OTV (720p) [Not 24/7] +http://62.182.82.104/OTV/index.m3u8?token=test +#EXTINF:-1 tvg-id="",OTV (720p) [Not 24/7] +http://teledunet.com:8080/live/azrotv/azrotv2021/10015.m3u8 +#EXTINF:-1 tvg-id="",OTV (1080p) [Geo-blocked] +https://iptv-all.lanesh4d0w.repl.co/lebanon/otv +#EXTINF:-1 tvg-id="SawtElMada.lb",Sawt El Mada (460p) [Not 24/7] +https://svs.itworkscdn.net/madalive/mada/playlist.m3u8 +#EXTINF:-1 tvg-id="TahaTV.lb",Taha TV (360p) [Not 24/7] +https://media2.livaat.com/TAHA-TV/index.m3u8 +#EXTINF:-1 tvg-id="TeleLiban.lb",Tele Liban (720p) [Not 24/7] +https://cdn.catiacast.video/abr/ed8f807e2548db4507d2a6f4ba0c4a06/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSeventeen.lb",TV Seventeen (720p) +https://cdn.tvseventeen.com/test_tv_seventeen/index.m3u8 diff --git a/streams/li.m3u b/streams/li.m3u new file mode 100644 index 000000000..59d774cc9 --- /dev/null +++ b/streams/li.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KommuTV.li",Kommu TV (720p) [Not 24/7] +http://31.10.19.12:8066/live/999/0.m3u8 +#EXTINF:-1 tvg-id="MediashopTV.li",Mediashop TV (576p) +https://mediashop.akamaized.net/hls/live/2032402/Meine_Einkaufswelt/1.m3u8 diff --git a/streams/lk.m3u b/streams/lk.m3u new file mode 100644 index 000000000..79a8c118d --- /dev/null +++ b/streams/lk.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Athavan TV (720p) [Not 24/7] +http://45.77.66.224:1935/athavantv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="",Channel Eye (480p) [Geo-blocked] +http://dammikartmp.tulix.tv/slrc2/slrc2/playlist.m3u8 +#EXTINF:-1 tvg-id="HiruTV.lk",Hiru TV (360p) [Not 24/7] +http://cdncities.com/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="",Hiru TV (360p) [Not 24/7] +https://eu10b.serverse.com:1936/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="",Rupavahini (480p) [Not 24/7] +http://dammikartmp.tulix.tv/slrc1/slrc1/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.lk",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.lk",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="SooriyanTV.lk",Sooriyan TV (810p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/Sooriyantv/Sooriyantv/playlist.m3u8 +#EXTINF:-1 tvg-id="SriSankaraTV.lk",Sri Sankara TV (360p) [Not 24/7] +https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",VerbumTV (414p) [Not 24/7] +https://verbumtv.livebox.co.in/verbumtvhls/live.m3u8 diff --git a/streams/lt.m3u b/streams/lt.m3u new file mode 100644 index 000000000..bca3fcaa4 --- /dev/null +++ b/streams/lt.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KOKFights.lt",KOK Fights (720p) [Not 24/7] +https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LRTLituanica.lt",LRT Lituanica (720p) +https://lituanica-dvr.lrt.lt/lrt-ndvr/hls/lituanica_720p/index.m3u8 +#EXTINF:-1 tvg-id="M1.lt",M-1 (480p) +http://m-1.data.lt/m-1/smil:m-1.smil/chunklist_b1000000.m3u8 +#EXTINF:-1 tvg-id="tv3.lt",Power Hit Radio (720p) [Not 24/7] +https://baltlive.tv3.lt/studija/smil:studija.smil/playlist.m3u8 diff --git a/streams/lu.m3u b/streams/lu.m3u new file mode 100644 index 000000000..4795e7a55 --- /dev/null +++ b/streams/lu.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChamberTV.lu",Chamber TV (1080p) +https://media02.webtvlive.eu/chd-edge/smil:chamber_tv_hd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="eldoTV.lu",eldo.TV (1080p) +https://eldo-streaming.eldo.lu/eldotv/smil:eldotv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JasminTV.lu",Jasmin TV (720p) +http://109.71.162.112/live/hd.jasminchannel.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JasminTV.lu",Jasmin TV (720p) +http://109.71.162.112/live/sd.jasminchannel.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL2.lu",RTL2 (1080p) +https://live-edge.rtl.lu/channel2/smil:channel2/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL.lu",RTL (1080p) +https://live-edge.rtl.lu/channel1/smil:channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL.lu",RTL (1080p) +https://rtlradio-streaming.rtl.lu/rtlradiowebtv/smil:rtlradiowebtv/playlist.m3u8 diff --git a/streams/lu_samsung.m3u b/streams/lu_samsung.m3u new file mode 100644 index 000000000..a15c36ccb --- /dev/null +++ b/streams/lu_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews Français (720p) +https://rakuten-africanews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] +https://rakuten-euronews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/lv.m3u b/streams/lv.m3u new file mode 100644 index 000000000..8946de1dd --- /dev/null +++ b/streams/lv.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChauTV.lv",Chau TV [Offline] +https://video.chaula.tv/hls/live/high/playlist_high.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio1.lv",Latvijas Radio 1 (360p) [Not 24/7] +https://5a44e5b800a41.streamlock.net/liveVLR1/mp4:LR1/playlist.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio2.lv",Latvijas Radio 2 (240p) +https://5a44e5b800a41.streamlock.net/liveVLR2/mp4:LR2/playlist.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio3Klasika.lv",Latvijas Radio 3 Klasika (240p) +https://5a44e5b800a41.streamlock.net/liveVLR3/mp4:Klasika/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNET.lv",TVNET (360p) +https://player.tvnet.lv/stream/amlst:61659/playlist.m3u8 diff --git a/streams/ly.m3u b/streams/ly.m3u new file mode 100644 index 000000000..4c213e4bc --- /dev/null +++ b/streams/ly.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlwasatTV.ly",Alwasat TV (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/alwasattv-live.m3u8 +#EXTINF:-1 tvg-id="FebruaryTV.ly",February TV [Offline] +https://linkastream.co/headless?url=https://www.youtube.com/c/FebruaryTv/live +#EXTINF:-1 tvg-id="JamahiriaTV.ly",Jamahiria TV (480p) [Not 24/7] +https://master.starmena-cloud.com/hls/jam.m3u8 +#EXTINF:-1 tvg-id="Libya218.ly",Libya 218 (1080p) [Not 24/7] +https://stream.218tv.net/libya218TV/playlist.m3u8 +#EXTINF:-1 tvg-id="Libya218News.ly",Libya 218 News (1080p) [Not 24/7] +http://95.85.47.43/libya218news/playlist.m3u8 +#EXTINF:-1 tvg-id="Libya218News.ly",Libya 218 News (1080p) [Not 24/7] +https://stream.218tv.net/libya218news/playlist.m3u8 +#EXTINF:-1 tvg-id="LibyaAlAhrarTV.ly",Libya Al Ahrar TV (720p) [Not 24/7] +https://video.zidivo.com/live983/GrtjM_FNGC/playlist.m3u8 +#EXTINF:-1 tvg-id="",Libya Al Hadath (576p) [Not 24/7] +https://master.starmena-cloud.com/hls/hd.m3u8 +#EXTINF:-1 tvg-id="LibyaChannel.ly",Libya Channel (576p) [Not 24/7] +https://master.starmena-cloud.com/hls/libyas.m3u8 +#EXTINF:-1 tvg-id="Tanasuh.ly",Tanasuh (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRaoHR6b3zViY9QxfgFNntQ/live diff --git a/streams/ma.m3u b/streams/ma.m3u new file mode 100644 index 000000000..6b7f79e2e --- /dev/null +++ b/streams/ma.m3u @@ -0,0 +1,47 @@ +#EXTM3U +#EXTINF:-1 tvg-id="2MMonde.ma",2M Monde (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/2m_monde/hls_video_ts_hy217612tge1f21j83/2m_monde.m3u8 +#EXTINF:-1 tvg-id="AlAoula.ma",Al Aoula (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoula.ma",Al Aoula (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma",Al Aoula Laayoune (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma",Al Aoula Laayoune (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlMaghribia.ma",Al Maghribia (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlMaghribia.ma",Al Maghribia (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arrabiaa.ma",Arrabiaa (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arrabiaa.ma",Arrabiaa (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arryadia.ma",Arryadia (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/arriadia/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arryadia.ma",Arryadia (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arriadia/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Assadissa.ma",Assadissa (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/assadissa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Assadissa.ma",Assadissa (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/assadissa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="CanalAtlasFight.ma",Canal Atlas Fight (616p) [Offline] +https://edge.vedge.infomaniak.com/livecast/ik:atlasfight/manifest.m3u8 +#EXTINF:-1 tvg-id="M24TV.ma",M24 TV (720p) [Not 24/7] +http://79.137.106.241/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="M24TV.ma",M24 TV (720p) [Not 24/7] +https://www.m24tv.ma/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MaghrebArabePress.ma",Maghreb Arabe Press (720p) [Not 24/7] +https://www.maptvnews.ma/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVAfrique.ma",Medi 1 TV Afrique (720p) [Not 24/7] +http://streaming2.medi1tv.com/live/smil:medi1fr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVArabic.ma",Medi 1 TV Arabic (1080p) [Not 24/7] +http://5f72f3a9b06b7.streamlock.net/live/smil:medi1ar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVMaghreb.ma",Medi 1 TV Maghreb (1080p) [Not 24/7] +http://streaming1.medi1tv.com/live/smil:medi1tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Tamazight.ma",Tamazight (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Tamazight.ma",Tamazight (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="TeleMaroc.ma",Télé Maroc (1080p) +https://api.new.livestream.com/accounts/27130247/events/8196478/live.m3u8 diff --git a/streams/mc.m3u b/streams/mc.m3u new file mode 100644 index 000000000..42138f25f --- /dev/null +++ b/streams/mc.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MonacoInfo.mc",Monaco Info (720p) [Not 24/7] +https://webtvmonacoinfo.mc/live/prod_720/index.m3u8 diff --git a/streams/md.m3u b/streams/md.m3u new file mode 100644 index 000000000..34fd7ce4a --- /dev/null +++ b/streams/md.m3u @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AcasaTV.md",Acasa TV (576p) +http://hls.protv.md/acasatv/acasatv.m3u8 +#EXTINF:-1 tvg-id="BaltiTV.md",Bălţi TV (1080p) [Geo-blocked] +http://77.89.199.174:8000/play/1024/index.m3u8 +#EXTINF:-1 tvg-id="CanalRegional.md",Canal Regional (576p) [Not 24/7] +https://canalregional.md/tv/live/canalregional.m3u8 +#EXTINF:-1 tvg-id="Drochia.md",Drochia (1080p) [Not 24/7] +https://hls.drochia.tv/tv/web.m3u8 +#EXTINF:-1 tvg-id="ElitaTV.md",Elita TV (576p) [Timeout] +http://46.55.111.242:8080/Rezina.m3u8 +#EXTINF:-1 tvg-id="Moldova1.md",Moldova1 (1080p) [Offline] +http://212.0.209.209:1935/live/M1Mlive/playlist.m3u8 +#EXTINF:-1 tvg-id="Moldova2.md",Moldova2 (1080p) [Offline] +http://212.0.209.209:1935/live/M2Mlive/playlist.m3u8 +#EXTINF:-1 tvg-id="NorocTV.md",Noroc TV (576p) +http://live.noroc.tv/hls/noroctv_chisinau.m3u8 +#EXTINF:-1 tvg-id="PublikaTV.md",Publika TV (540p) +https://livebeta.publika.md/LIVE/P/1500.m3u8 +#EXTINF:-1 tvg-id="PublikaTV.md",Publika TV (720p) +http://livebeta.publika.md/LIVE/P/6810.m3u8 +#EXTINF:-1 tvg-id="TeleM.md",Tele M [Offline] +http://webmobile.xdev.ro:81/tv16/playlist.m3u8 +#EXTINF:-1 tvg-id="VoceaBasarabieiTV.md",Vocea Basarabiei TV (406p) [Not 24/7] +http://hls.voceabasarabiei.md/hls/vocea_basarabiei.m3u8 +#EXTINF:-1 tvg-id="",ТНТ Exclusiv TV (576p) +http://89.28.25.122/hls/tnt_md.m3u8 diff --git a/streams/me.m3u b/streams/me.m3u new file mode 100644 index 000000000..effc0bd6e --- /dev/null +++ b/streams/me.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TelevizijaTV7.me",Televizija TV7 (480p) [Timeout] +http://109.123.70.27:1935/tehnikatv777/tehnikatv777/index.m3u8 +#EXTINF:-1 tvg-id="TelevizijaTV7.me",Televizija TV7 (480p) [Timeout] +http://109.123.70.27:1935/tehnikatv777/tehnikatv777/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCG1.me",TVCG 1 (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cg1/smil:cg1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCG2.me",TVCG 2 (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cg2/smil:cg2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) +http://rtcg3.videostreaming.rs:1935/rtcg/smil:rtcg.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cgsat/smil:cgsat.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] +http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.1.stream/index.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] +http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.2.stream/playlist.m3u8 diff --git a/streams/mk.m3u b/streams/mk.m3u new file mode 100644 index 000000000..852ba2d36 --- /dev/null +++ b/streams/mk.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KohaTV.mk",Koha TV (720p) [Offline] +rtmp://live.tvkoha.tv:1935/live/koha/livestream +#EXTINF:-1 tvg-id="LiveTVHD.mk",LiveTV HD [Offline] +rtmp://live.livetvhd.cf/live/livetvhd +#EXTINF:-1 tvg-id="SkyFolkTV.mk",Sky Folk TV (720p) [Not 24/7] +https://eu.live.skyfolk.mk/live.m3u8 +#EXTINF:-1 tvg-id="SkyFolkTV.mk",Sky Folk TV (720p) [Not 24/7] +https://skyfolk.mk/live.m3u8 +#EXTINF:-1 tvg-id="TVPlus.mk",TVPlus [Timeout] +http://141.136.14.18/kanal1/kanal1.m3u8 diff --git a/streams/ml.m3u b/streams/ml.m3u new file mode 100644 index 000000000..3d3e1758b --- /dev/null +++ b/streams/ml.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ORTM1.ml",ORTM1 (576p) [Not 24/7] +http://51.210.1.13:18000/ortm/hls/playlist.m3u8 diff --git a/streams/mm.m3u b/streams/mm.m3u new file mode 100644 index 000000000..b3ac41cb2 --- /dev/null +++ b/streams/mm.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChannelK.mm",Channel K [Offline] +https://d3cs5y5559s57s.cloudfront.net/live/channelk.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports1.mm",Sky Net Sports 1 (480p Scaled) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport1_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports2.mm",Sky Net Sports 2 (480p Scaled) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport2_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports3.mm",Sky Net Sports 3 (480p Scaled) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport3_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports4.mm",Sky Net Sports 4 (480p Scaled) (720p) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport4_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports5.mm",Sky Net Sports 5 (480p Scaled) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport5_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports6.mm",Sky Net Sports 6 (480p Scaled) (720p) [Not 24/7] +https://www.livedoomovie.com/03_skynetsport6_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports.mm",Sky Net Sports (720p) [Not 24/7] +https://www.livedoomovie.com/03_skynetsporthd_720p/chunklist.m3u8 diff --git a/streams/mn.m3u b/streams/mn.m3u new file mode 100644 index 000000000..f8ee90e34 --- /dev/null +++ b/streams/mn.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MongolynMedee.mn",Монголын Мэдээ (576p) [Offline] +http://103.14.38.107:1935/live/mn2.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="MUONT1.mn",МҮОНТ-1 (576p) [Offline] +http://103.14.38.107:1935/live/mnb.stream/chunklist.m3u8 diff --git a/streams/mo.m3u b/streams/mo.m3u new file mode 100644 index 000000000..c15c087b8 --- /dev/null +++ b/streams/mo.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalMacau.mo",Canal Macau (720p) [Not 24/7] +http://live4.tdm.com.mo/ch2/_definst_/ch2.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMInfoMacau.mo",TDM Info. Macau (720p) [Not 24/7] +http://live4.tdm.com.mo/ch5/_definst_/info_ch5.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMMacau.mo",TDM Macau (720p) +http://live4.tdm.com.mo/ch1/_definst_/ch1.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMMacauSatelite.mo",TDM Macau Satelite (720p) +http://live4.tdm.com.mo/ch3/_definst_/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMSportsMacau.mo",TDM Sports Macau (720p) +http://live4.tdm.com.mo/ch4/_definst_/sport_ch4.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳视澳门 (720p) +http://live3.tdm.com.mo:1935/ch1/ch1.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳門綜藝 (720p) +http://live4.tdm.com.mo/ch6/_definst_/hd_ch6.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳门体育 (720p) +http://live3.tdm.com.mo:1935/ch4/sport_ch4.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳门卫星 (720p) +http://live3.tdm.com.mo:1935/ch3/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳门综艺 (720p) [Not 24/7] +http://live2.tdm.com.mo:1935/ch6/hd_ch6.live/playlist.m3u8 +#EXTINF:-1 tvg-id="",澳门资讯 (720p) +http://live3.tdm.com.mo:1935/ch5/info_ch5.live/playlist.m3u8 diff --git a/streams/mq.m3u b/streams/mq.m3u new file mode 100644 index 000000000..c101fb75e --- /dev/null +++ b/streams/mq.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EsperanceTV.mq",Espérance TV (720p) [Not 24/7] +https://hcinteram.mmdlive.lldns.net/hcinteram/5fb30e8b271544039e79f93d4d496b25/manifest.m3u8 +#EXTINF:-1 tvg-id="",Martinique la 1ère (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgA9V57lQlZFXkDfhVGTWSg/live diff --git a/streams/mt.m3u b/streams/mt.m3u new file mode 100644 index 000000000..71ec13798 --- /dev/null +++ b/streams/mt.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ONE.mt",One (720p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_124/201830-1293592-1/playlist.m3u8 +#EXTINF:-1 tvg-id="SmashTV.mt",Smash TV (720p) [Not 24/7] +http://s3.smashmalta.com/hls/smash/smash.m3u8 +#EXTINF:-1 tvg-id="TVM.mt",TVM (360p) [Not 24/7] +https://iptv--iptv.repl.co/Maltese/TVM diff --git a/streams/mv.m3u b/streams/mv.m3u new file mode 100644 index 000000000..2fea28365 --- /dev/null +++ b/streams/mv.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="VTV.mv",VTV (1080p) +http://vtvstreaming.myvnc.com:1935/vtvlive/vmedia/chunklist.m3u8 diff --git a/streams/mw.m3u b/streams/mw.m3u new file mode 100644 index 000000000..979df579c --- /dev/null +++ b/streams/mw.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MBC.mw",MBC (614p) [Not 24/7] +http://41.216.229.205:8080/live/livestream/index.m3u8 diff --git a/streams/mx.m3u b/streams/mx.m3u new file mode 100644 index 000000000..7a6673490 --- /dev/null +++ b/streams/mx.m3u @@ -0,0 +1,203 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ADN40.mx",ADN 40 (480p) +https://mdstrm.com/live-stream-playlist/60b578b060947317de7b57ac.m3u8 +#EXTINF:-1 tvg-id="ADN40.mx",ADN 40 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7k--FhnJzhPTrbtldMSoQQ/live +#EXTINF:-1 tvg-id="AlcarriaTV.mx",Alcarria TV (576p) [Not 24/7] +http://217.182.77.27/live/alcarriatv-livestream.m3u8 +#EXTINF:-1 tvg-id="AMXNoticias.mx",AMX Noticias (720p) [Not 24/7] +https://5e50264bd6766.streamlock.net/mexiquense2/videomexiquense2/playlist.m3u8 +#EXTINF:-1 tvg-id="",Azcorazon (480p) [Offline] +http://181.115.72.65:8099/play/a016/index.m3u8 +#EXTINF:-1 tvg-id="",Azmundo (480p) [Offline] +http://181.115.72.65:8099/play/a025/index.m3u8 +#EXTINF:-1 tvg-id="XHJKTDT.mx",Azteca Uno (XHJK-TDT) (480p) [Not 24/7] +http://190.122.96.187:8888/http/002 +#EXTINF:-1 tvg-id="Canal5.mx",Canal 5 (480p) [Offline] +http://45.174.77.243:8000/play/a0fl/index.m3u8 +#EXTINF:-1 tvg-id="Canal8CostaRica.mx",Canal 8 Costa Rica (720p) +https://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 +#EXTINF:-1 tvg-id="Canal10Cancun.mx",Canal 10 Cancún (720p) [Not 24/7] +http://stream2.dynalias.com:1935/live/tvlive1/playlist.m3u8 +#EXTINF:-1 tvg-id="XEWTTDT.mx",Canal 12 (XETW-TDT) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjwXjnO3BGePtB7gSKEpoqA/live +#EXTINF:-1 tvg-id="Canal28.mx",Canal 28 (720p) [Not 24/7] +https://api.new.livestream.com/accounts/3789491/events/8003011/live.m3u8 +#EXTINF:-1 tvg-id="Canal44.mx",Canal 44 Chihuahua (720p) [Not 24/7] +https://5e50264bd6766.streamlock.net/canal442/videocanal442/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal44.mx",Canal 44 Ciudad Juárez (720p) [Geo-blocked] +https://5e50264bd6766.streamlock.net/canal44/videocanal44/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCatorce.mx",Canal Catorce (720p) +https://d3nljkrx6mjqra.cloudfront.net/out/v1/1b9d9efd27814b3b8dc570113ae54409/index.m3u8 +#EXTINF:-1 tvg-id="CanaldelasEstrellas.mx",Canal de Las Estrellas (480p) [Offline] +http://170.83.242.153:8000/play/a012 +#EXTINF:-1 tvg-id="CanalMundoPlus.mx",Canal Mundo+ (560p) [Not 24/7] +http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 +#EXTINF:-1 tvg-id="Capital21.mx",Capital 21 (720p) [Not 24/7] +https://video.cdmx.gob.mx/livestream/stream.m3u8 +#EXTINF:-1 tvg-id="ClaroCinema.mx",Claro Cinema (480p) [Offline] +http://170.83.242.153:8000/play/a00d +#EXTINF:-1 tvg-id="ClaroSinLimites.mx",Claro Sin Limites (480p) [Offline] +http://170.83.242.153:8000/play/a01k +#EXTINF:-1 tvg-id="ClaroSports.mx",Claro Sports (480p) +http://45.179.140.242:8000/play/a0ht +#EXTINF:-1 tvg-id="ConectaTV.mx",Conecta TV (720p) +http://204.12.211.210:1935/conectatv/conectatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CortTV.mx",CorTV (800p) +https://stream.oursnetworktv.com/latin/encoder29/playlist.m3u8 +#EXTINF:-1 tvg-id="",Energía Musical TV (360p) [Not 24/7] +https://ss2.domint.net:3224/emtv_str/energiamusical/playlist.m3u8 +#EXTINF:-1 tvg-id="",ForoTV (720p) [Geo-blocked] +https://live-streams-notusa.televisa.com/channel02-b/index.m3u8 +#EXTINF:-1 tvg-id="GenesisTV.mx",Genesis TV (720p) [Not 24/7] +http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GoldenLatinoamerica.mx",Golden Latinoamérica (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8026/8026/playlist.m3u8 +#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx",Hipodromo de las Americas (360p) [Not 24/7] +http://wms10.tecnoxia.com/soelvi/slv423/playlist.m3u8 +#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx",Hipódromo de las Américas (480p) [Geo-blocked] +http://wms.tecnoxia.com:1935/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="IcrtvColima.mx",Icrtv Colima (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal11/videocanal11/playlist.m3u8 +#EXTINF:-1 tvg-id="ImagenMulticast.mx",Imagen Multicast (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClqo4ZAAZ01HQdCTlovCgkA/live +#EXTINF:-1 tvg-id="ImagenRadio.mx",Imagen Radio (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCB0BUmdBOrH9mYU2ebs1eWA/live +#EXTINF:-1 tvg-id="",Imagen TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82z4if +#EXTINF:-1 tvg-id="JaliscoTV.mx",Jalisco TV (720p) [Geo-blocked] +https://5fa5de1a545ae.streamlock.net/sisjalisciense/sisjalisciense/playlist.m3u8 +#EXTINF:-1 tvg-id="LaOctava.mx",La Octava TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x80mow9 +#EXTINF:-1 tvg-id="MariaVisionMexico.mx",María Visión Mexico (360p) [Not 24/7] +https://1601580044.rsc.cdn77.org/live/_jcn_/amlst:Mariavision/master.m3u8 +#EXTINF:-1 tvg-id="MexicoTravelChannel.mx",México Travel Channel (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7v76vf +#EXTINF:-1 tvg-id="MexiquenseTV.mx",Mexiquense TV (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/mexiquense/videomexiquense/playlist.m3u8 +#EXTINF:-1 tvg-id="Milenio.mx",Milenio Televisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFxHplbcoJK9m70c4VyTIxg/live +#EXTINF:-1 tvg-id="MonteMaria.mx",Monte Maria (720p) [Timeout] +https://rbaca.livestreamingcdn.com/envivo3/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MultimediosGuadalajara.mx",Multimedios Guadalajara (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5c54d38ca392a5119bb0aa0d.m3u8 +#EXTINF:-1 tvg-id="MultimediosLaguna.mx",Multimedios Laguna (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/57bf686a61ff39e1085d43e1.m3u8 +#EXTINF:-1 tvg-id="MultimediosMonterrey.mx",Multimedios Monterrey (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/57b4dbf5dbbfc8f16bb63ce1.m3u8 +#EXTINF:-1 tvg-id="",Multipremier (480p) [Timeout] +http://201.168.205.12:8000/play/a0cp/index.m3u8 +#EXTINF:-1 tvg-id="MVMNoticias.mx",MVM Noticias (Oaxaca) (400p) [Not 24/7] +https://dcunilive21-lh.akamaihd.net/i/dclive_1@59479/master.m3u8 +#EXTINF:-1 tvg-id="NoticiasCanal10.mx",Noticias Canal 10 (360p) [Not 24/7] +https://canal10.mediaflix.istream.mx/wza_live/live/movil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceInternacional.mx",Once Internacional [Offline] +http://live.canaloncelive.tv:1935/livepkgr2/smil:internacional.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceMexico.mx",Once Mexico (720p) [Not 24/7] +http://live.canaloncelive.tv/livepkgr/smil:nacional.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceMexico.mx",Once Mexico (720p) [Not 24/7] +https://live2.canaloncelive.tv/livepkgr3/cepro/playlist.m3u8 +#EXTINF:-1 tvg-id="XHTJBTDT.mx",Once Niñas y Niños (XHTJB-TDT) (432p) [Offline] +https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt2.m3u8 +#EXTINF:-1 tvg-id="XHTJBTDT.mx",Once TV (XHTJB-TDT) (1080p) [Offline] +https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt.m3u8 +#EXTINF:-1 tvg-id="POPTV.mx",POP TV (542p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico3/smil:obregon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="QuieroTV.mx",Quiero TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8452uw +#EXTINF:-1 tvg-id="RCGTV2.mx",RCG TV 2 (360p) [Not 24/7] +http://wowzacontrol.com:1936/stream23/stream23/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV2.mx",RCG TV 2 (360p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/stream23/stream23/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV3.mx",RCG TV 3 (360p) [Not 24/7] +http://wowzacontrol.com:1936/stream56/stream56/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV3.mx",RCG TV 3 (360p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/stream56/stream56/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV.mx",RCG TV (1080p) +https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8 +#EXTINF:-1 tvg-id="RTQQueretaro.mx",RTQ Queretaro (360p) [Not 24/7] +http://wms.tecnoxia.com:1935/rytqrolive/rytqrolive/master.m3u8 +#EXTINF:-1 tvg-id="SetPuebla.mx",SET Televisión Canal 26.1 (720p) [Not 24/7] +http://189.240.210.28:1935/envivo/puecom/playlist.m3u8 +#EXTINF:-1 tvg-id="SetPuebla.mx",SET Televisión Canal 26.2 (720p) [Not 24/7] +http://189.240.210.28:1935/live/setpuebla/playlist.m3u8 +#EXTINF:-1 tvg-id="sintesistv.mx",SintesisTV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/sintesistv +#EXTINF:-1 tvg-id="TELESISTEMACANAL9.mx",TELE SISTEMA CANAL 9 (486p) [Geo-blocked] +http://k4.usastreams.com/ARBtv/ARBtv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Telefórmula (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7u0spq +#EXTINF:-1 tvg-id="TelemarCampeche.mx",Telemar Campeche (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/8410/8410/playlist.m3u8 +#EXTINF:-1 tvg-id="XEWHTDT.mx",Telemax (XEWH-TDT) (720p) +http://s5.mexside.net:1935/telemax/telemax/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleritmo.mx",Teleritmo (720p) [Geo-blocked] +http://mdstrm.com/live-stream-playlist/57b4dc126338448314449d0c.m3u8 +#EXTINF:-1 tvg-id="TelevisaAguascalientes.mx",Televisa Aguascalientes (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5ZtV3bu3bjSuOLoA6oCFIg/live +#EXTINF:-1 tvg-id="TelevisaChihuahua.mx",Televisa Chihuahua (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjfxDe7In59Jbfw2HmIh_Vg/live +#EXTINF:-1 tvg-id="TelevisaCiudadJuarez.mx",Televisa Ciudad Juarez (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCot4t8PVKz8TT5xVM8Eb00w/live +#EXTINF:-1 tvg-id="",Televisa Del Bajio [Offline] +http://viptv-query/?streaming-ip=https://www.youtube.com/channel/UC-uYy4_jIvDoJ4wigEv1S5A/live +#EXTINF:-1 tvg-id="TelevisaDelGolfo.mx",Televisa Del Golfo [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQ08tNTPiBn44c975S81ftg/live +#EXTINF:-1 tvg-id="TelevisaEstado.mx",Televisa Estado (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9DH82HVSf4katwMeUpY80w +#EXTINF:-1 tvg-id="TelevisaGuadalajara.mx",Televisa Guadalajara (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRujF_YxVVFmTRWURQH-Cww/live +#EXTINF:-1 tvg-id="TelevisaGuerrero.mx",Televisa Guerrero (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnxTRk2K1iNsQkgpWXxyj4w/live +#EXTINF:-1 tvg-id="TelevisaLaguna.mx",Televisa Laguna (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC_mwCcsKDJLSWjply5s0h8w/live +#EXTINF:-1 tvg-id="TelevisaMexicali.mx",Televisa Mexicali (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcmuFsMIIIHO3LBqeBVfm8Q/live +#EXTINF:-1 tvg-id="TelevisaMonterrey.mx",Televisa Monterrey (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCGDJLLphnP0zQQaE3kgo5Wg/live +#EXTINF:-1 tvg-id="TelevisaMorelos.mx",Televisa Morelos [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcC9ykApQrgl4UxbKg2U4zw/live +#EXTINF:-1 tvg-id="TelevisaNewsMexico.mx",Televisa News Mexico (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCUsm-fannqOY02PNN67C0KA/live +#EXTINF:-1 tvg-id="TelevisaNoreste.mx",Televisa Noreste (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC752DYv5vPlTSMrvEjfZXcw/live +#EXTINF:-1 tvg-id="TelevisaPiedrasNegras.mx",Televisa Piedras Negras (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCxK8C1E8UZ5RipNXIBYEvTA/live +#EXTINF:-1 tvg-id="TelevisaPuebla.mx",Televisa Puebla [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC-HNztluSQSffhIWJTL-LUw/live +#EXTINF:-1 tvg-id="TelevisaQueretaro.mx",Televisa Queretaro [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9QNz6VS3gGz55dzxAQtgtA/live +#EXTINF:-1 tvg-id="",Televisa San Luis Potosí (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCaRuyaHshLdq462E9_pLzdA/live +#EXTINF:-1 tvg-id="TelevisaSinaloa.mx",Televisa Sinaloa [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtm1LvYEIQ_NrfOUVJ08YhQ/live +#EXTINF:-1 tvg-id="TelevisaSonora.mx",Televisa Sonora (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCyzWMHGS7bs0sot6KZk5EZg/live +#EXTINF:-1 tvg-id="TelevisaVeracruz.mx",Televisa Veracruz (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5EnLdE7ASjYzWt7wvT-QSg/live +#EXTINF:-1 tvg-id="TelevisaZacatecas.mx",Televisa Zacatecas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQb3i7gu9J8A4zzQU7j6C1Q/live +#EXTINF:-1 tvg-id="",Tlaxcala Televisión (360p) [Not 24/7] +https://vid.mega00.com:5443/LiveApp/streams/928111829917388844551988/928111829917388844551988.m3u8?token=null +#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx",Transmedia Televisión Morelia (614p) [Not 24/7] +http://streamingcws20.com:1935/tmtv/videotmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx",Transmedia Televisión Morelia (614p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/tmtv/videotmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVLobo.mx",TV Lobo (720p) [Not 24/7] +http://streamingcws20.com:1935/lobodurango/videolobodurango/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Unam (720p) +https://5ca3e84a76d30.streamlock.net/tvunam/videotvunam/playlist.m3u8?DVR= +#EXTINF:-1 tvg-id="XHGVTDT.mx",TVMÁS (XHGV-TDT) (360p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/rtv/videortv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVP.mx",TVP (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico4/smil:mazatlan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVP Culiacán (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico1/smil:gpculiacan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPLosMochis.mx",TVP Los Mochis (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico2/mochis.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPObregon.mx",TVP Obregón (542p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico3/obregon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UDG44.mx",UDG44 TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3m1xfy +#EXTINF:-1 tvg-id="UnoTV.mx",Uno TV (720p) [Not 24/7] +https://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8 diff --git a/streams/mx_samsung.m3u b/streams/mx_samsung.m3u new file mode 100644 index 000000000..0f35be8f2 --- /dev/null +++ b/streams/mx_samsung.m3u @@ -0,0 +1,31 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArcadeCloudMexico.us",Arcade Cloud (Mexico) (720p) [Offline] +https://arcade-cloud-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-5-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DemandAfricaMexico.us",Demand Africa (Mexico) (1080p) +https://demandafrica-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) +https://euronews-euronews-spanish-2-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-11-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkMexico.us",MyTime movie network Mexico (720p) +https://appletree-mytime-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeMexico.us",People are Awesome Mexico (720p) [Offline] +https://jukin-peopleareawesome-2-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeMexico.us",Runtime (Mexico) (1080p) +https://runtimemx-samsungmx.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Not 24/7] +https://samsung-mx.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) +https://tastemadees16intl-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveMexico.us",The Pet Collective Mexico (720p) [Offline] +https://the-pet-collective-international-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyMexico.us",WeatherSpy Mexico (720p) [Offline] +https://jukin-weatherspy-2-mx.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/my.m3u b/streams/my.m3u new file mode 100644 index 000000000..7ce3c3c1d --- /dev/null +++ b/streams/my.m3u @@ -0,0 +1,39 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AstroAwani.my",Astro Awani (720p) [Not 24/7] +https://awanitv.akamaized.net/hls/live/2017836/LiveTV1/index.m3u8 +#EXTINF:-1 tvg-id="AstroVaanavil.my",Astro Vaanavil [Geo-blocked] +https://agsplayback01.astro.com.my/CH3/master_VAANGOSHOP5.m3u8 +#EXTINF:-1 tvg-id="BeritaRTM.my",Berita RTM (1080p) +https://rtmlive03tv.secureswiftcontent.com/rtmchannel/03-manifest.mpd +#EXTINF:-1 tvg-id="BernamaTV.my",Bernama TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcZg5r9hBqK_VPUT2I7eYVw/live +#EXTINF:-1 tvg-id="CinemaWorld.my",CinemaWorld (576p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h04/index.m3u8 +#EXTINF:-1 tvg-id="DramaSangat.my",Drama Sangat (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/Drama_Sangat.m3u8 +#EXTINF:-1 tvg-id="Hello.my",Hello [Geo-blocked] +https://agsplayback01.astro.com.my/CH1/master_HELLOGOSHOP6.m3u8 +#EXTINF:-1 tvg-id="MaahTV.my",Maah TV (720p) [Not 24/7] +http://51.210.199.33/hls/stream.m3u8 +#EXTINF:-1 tvg-id="NTV7.my",NTV 7 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/DidikTVKPM.m3u8 +#EXTINF:-1 tvg-id="OKEY.my",OKEY (1080p) +https://rtmlive02tv.secureswiftcontent.com/rtmchannel/02-manifest.mpd +#EXTINF:-1 tvg-id="SukanRTM.my",Sukan RTM (1080p) +https://rtmlive06tv.secureswiftcontent.com/rtmchannel/06-manifest.mpd +#EXTINF:-1 tvg-id="TV1.my",TV1 (1080p) +https://rtmlive01tv.secureswiftcontent.com/rtmchannel/01-manifest.mpd +#EXTINF:-1 tvg-id="TV2.my",TV2 (1080p) +https://rtmlive05tv.secureswiftcontent.com/rtmchannel/05-manifest.mpd +#EXTINF:-1 tvg-id="TV3.my",TV3 (720p) [Timeout] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV3.m3u8 +#EXTINF:-1 tvg-id="TV6.my",TV6 (1080p) +https://rtmlive07tv.secureswiftcontent.com/rtmchannel/07-manifest.mpd +#EXTINF:-1 tvg-id="TV8.my",TV8 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/8TV.m3u8 +#EXTINF:-1 tvg-id="TV9.my",TV9 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV9.m3u8 +#EXTINF:-1 tvg-id="TVIKIM.my",TVIKIM (720p) [Not 24/7] +http://edge.vediostream.com/abr/tvikim/playlist.m3u8 +#EXTINF:-1 tvg-id="TVS.my",TVS (576p) [Geo-blocked] +https://agsplayback01.astro.com.my/CH1/master_AGS_TVS.m3u8 diff --git a/streams/mz.m3u b/streams/mz.m3u new file mode 100644 index 000000000..3d885a942 --- /dev/null +++ b/streams/mz.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",TV Maná Moçambique (576p) [Not 24/7] +http://c3.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM.mz",TVM (480p) +http://196.28.226.121:1935/live/smil:Channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM.mz",TVM (480p) [Not 24/7] +http://online.tvm.co.mz:1935/live/smil:Channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMInternacional.mz",TVM Internacional (480p) [Not 24/7] +http://online.tvm.co.mz:1935/live/smil:Channel2.smil/playlist.m3u8 diff --git a/streams/ne.m3u b/streams/ne.m3u new file mode 100644 index 000000000..c8d5ea5bd --- /dev/null +++ b/streams/ne.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TeleSahel.ne",Télé Sahel (480p) [Geo-blocked] +https://iptv--iptv.repl.co/French/tele_sahel diff --git a/streams/ng.m3u b/streams/ng.m3u new file mode 100644 index 000000000..8dfd55bf7 --- /dev/null +++ b/streams/ng.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AfricaTV1.ng",Africa TV1 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 +#EXTINF:-1 tvg-id="AfricaTV2.ng",Africa TV2 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="AfricaTV3.ng",Africa TV3 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv3/playlist.m3u8 +#EXTINF:-1 tvg-id="Channels24.ng",Channels 24 [Offline] +http://93.152.174.144:4000/play/ch24ng/index.m3u8 +#EXTINF:-1 tvg-id="ComedyChannel.ng",Comedy Channel [Offline] +http://93.152.174.144:4000/play/comedych/index.m3u8 +#EXTINF:-1 tvg-id="EMTV.ng",EM.tv [Offline] +http://93.152.174.144:4000/play/kingsword/index.m3u8 +#EXTINF:-1 tvg-id="EmmanuelTV.ng",Emmanuel TV (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/23202872/events/7200883/live.m3u8 +#EXTINF:-1 tvg-id="LagosTelevision.ng",Lagos Television (360p) [Not 24/7] +http://185.105.4.193:1935/ltv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTAInternational.ng",NTA International (576p) [Not 24/7] +https://api.visionip.tv/live/ASHTTP/visiontvuk-entertainment-ntai-hsslive-25f-4x3-MB/playlist.m3u8 diff --git a/streams/ni.m3u b/streams/ni.m3u new file mode 100644 index 000000000..f0dd96361 --- /dev/null +++ b/streams/ni.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal6.ni",Canal 6 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/canal6nicaraguaoficial +#EXTINF:-1 tvg-id="Canal9.ni",Canal 9 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH09-HD-CVS/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10.ni",Canal 10 (576p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH10-SD-ZUK/playlist.m3u8 +#EXTINF:-1 tvg-id="jbn.ni",JBN (720p) [Not 24/7] +https://inliveserver.com:1936/17510/17510/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.ni",Nicavisión Canal 12 (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal12/videocanal12/playlist.m3u8 +#EXTINF:-1 tvg-id="",Telenica Canal 8 (tn8) (720p) [Not 24/7] +https://60417ddeaf0d9.streamlock.net/tn8/videotn8/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.ni",Televicentro Canal 2 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH02-HD-YON/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.ni",TV RED Canal 11 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH11-SD-GZN/playlist.m3u8 +#EXTINF:-1 tvg-id="VivaNicaraguaCanal13.ni",Viva Nicaragua Canal 13 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vivanicaragua13 +#EXTINF:-1 tvg-id="vostv.ni",Vos Tv (720p) [Not 24/7] +http://ott.streann.com:8080/loadbalancer/services/public/channels/59e60c4997381ef50d15c041/playlist.m3u8 +#EXTINF:-1 tvg-id="wtv.ni",WTV Canal 20 (720p) +https://cloudvideo.servers10.com:8081/8130/index.m3u8 diff --git a/streams/nl.m3u b/streams/nl.m3u new file mode 100644 index 000000000..6da96438b --- /dev/null +++ b/streams/nl.m3u @@ -0,0 +1,217 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BazmeAsheghan.nl",Bazme Asheghan (720p) [Offline] +https://5dc143936e9ae.streamlock.net/saeed_nl/saeed_nl/chunklist.m3u8 +#EXTINF:-1 tvg-id="BNRNieuwsradio.nl",BNR Nieuwsradio (720p) [Geo-blocked] +https://bnr-cache-cdp.triple-it.nl/studio/index.m3u8 +#EXTINF:-1 tvg-id="BR6TV.nl",BR6 TV (720p) +https://58c04fb1d143f.streamlock.net/slob/slob/playlist.m3u8 +#EXTINF:-1 tvg-id="DenHaagTV.nl",Den Haag TV (1080p) [Not 24/7] +http://wowza5.video-streams.nl:1935/denhaag/denhaag/playlist.m3u8 +#EXTINF:-1 tvg-id="EDETV.nl",EDE TV (480p) [Not 24/7] +https://ms7.mx-cd.net/tv/113-474263/EdeTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FeelGoodTV.nl",Feel Good TV (720p) [Not 24/7] +https://58c04fb1d143f.streamlock.net/feel_good_radio_1/feel_good_radio_1/playlist.m3u8 +#EXTINF:-1 tvg-id="GigantFM.nl",Gigant FM (720p) [Timeout] +https://streams.uitzending.tv/gigantfm/gigantfm/playlist.m3u8 +#EXTINF:-1 tvg-id="GORTV.nl",GO-RTV (720p) +http://593aed234297b.streamlock.net:1935/gotvsjoerd/gotvsjoerd/playlist.m3u8 +#EXTINF:-1 tvg-id="Groningen1.nl",Groningen1 (1080p) [Not 24/7] +http://59132e529e3d1.streamlock.net/Groningen1/Groningen1/playlist.m3u8 +#EXTINF:-1 tvg-id="HK13TV.nl",HK13 TV (1080p) [Not 24/7] +http://mtxstr001.matrixdata.nl/live/hk13/playlist.m3u8 +#EXTINF:-1 tvg-id="IdeaalTV.nl",Ideaal TV (480p) +https://ms2.mx-cd.net/dtv-09/236-2051366/Ideaal_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JenZ.nl",JenZ (1080p) +https://ms2.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",JENZ (1080p) +https://ms7.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="" status="online",JIN TV (720p) +https://live.jintv.org:12443/medialive/jintv.m3u8 +#EXTINF:-1 tvg-id="",JIN TV (720p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/27 +#EXTINF:-1 tvg-id="",JIN TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/27.m3u8 +#EXTINF:-1 tvg-id="",L1mburg (720p) [Not 24/7] +https://d34pj260kw1xmk.cloudfront.net/live/l1/tv/index.m3u8 +#EXTINF:-1 tvg-id="LansingerlandTV.nl",Lansingerland TV (1080p) +https://streaming-outbound-video-02.rtvlansingerland.nl/hls/livetv/index.m3u8 +#EXTINF:-1 tvg-id="LOETV.nl",LOE TV (720p) +https://58c04fb1d143f.streamlock.net/loemedia/loemedia/playlist.m3u8 +#EXTINF:-1 tvg-id="LONTV.nl",LON TV (720p) [Timeout] +https://streamingserver01.omroepnuenen.nl/lon/lonweb_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MeerTV.nl",Meer TV (720p) [Not 24/7] +https://593aed234297b.streamlock.net/meervandaag/meervandaag/playlist.m3u8 +#EXTINF:-1 tvg-id="ML5TV.nl",ML5 TV (480p) +https://ms2.mx-cd.net/dtv-02/204-1147034/3ML_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO1.nl",NPO 1 (342p) [Geo-blocked] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo1/npo1.isml/.m3u8 +#EXTINF:-1 tvg-id="NPO1.nl",NPO 1 (1080p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO2.nl",NPO 2 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO2.nl",NPO 2 (342p) +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo2/npo2.isml/.m3u8 +#EXTINF:-1 tvg-id="NPO3.nl",NPO 3 (342p) [Not 24/7] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo3/npo3.isml/.m3u8 +#EXTINF:-1 tvg-id="NPO3.nl",NPO 3 (1080p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPONieuws.nl",NPO Nieuws (576p) [Offline] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/journaal24/journaal24.isml/.m3u8 +#EXTINF:-1 tvg-id="NPOPolitiek.nl",NPO Politiek (576p) [Offline] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/politiek24/politiek24.isml/.m3u8 +#EXTINF:-1 tvg-id="OmroepBrabant.nl",Omroep Brabant (1080p) +https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/tv/index.m3u8 +#EXTINF:-1 tvg-id="OmroepBrabantRadio.nl",Omroep Brabant Radio (1080p) +https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/visualradio/index.m3u8 +#EXTINF:-1 tvg-id="OmroepCentraalTV.nl",Omroep Centraal TV (480p) +https://ms7.mx-cd.net/tv/208-1258878/Omroep_Centraal_GB.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepFlevoland.nl",Omroep Flevoland (540p) [Not 24/7] +https://d5ms27yy6exnf.cloudfront.net/live/omroepflevoland/tv/index.m3u8 +#EXTINF:-1 tvg-id="",Omroep Gelderland (720p) [Not 24/7] +https://web.omroepgelderland.nl/live/livetv.m3u8 +#EXTINF:-1 tvg-id="",Omroep Gelderland (1080p) [Timeout] +https://rrr.sz.xlcdn.com/?account=omroepgelderland&file=livetv&output=playlist.m3u8&protocol=http&service=wowza&type=live +#EXTINF:-1 tvg-id="OmroepHulstTV.nl",Omroep Hulst TV (720p) [Not 24/7] +https://stream.iconbroadcastgroup.com:1443/OH-Playout/smil:OH-Playout.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepOnsWestBrabant.nl",Omroep Ons West Brabant (480p) +https://ms2.mx-cd.net/tv/177-710139/Ons_West_Brabant_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepPM.nl",Omroep P&M (480p) [Offline] +https://ms7.mx-cd.net/tv/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepPMTV.nl",Omroep P&M TV (1080p) +https://ms7.mx-cd.net/dtv-10/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepTilburg.nl",Omroep Tilburg (480p) +https://ms2.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepTilburgTV.nl",Omroep Tilburg TV (480p) +https://ms7.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Omroep West (1080p) [Not 24/7] +https://d2dslh4sd7yvc1.cloudfront.net/live/omroepwest/ngrp:tv-feed_all/playlist.m3u8 +#EXTINF:-1 tvg-id="",Omroep Zeeland (1080p) +https://d3isaxd2t6q8zm.cloudfront.net/live/omroepzeeland/tv/index.m3u8 +#EXTINF:-1 tvg-id="OmropFryslan.nl",Omrop Fryslân (1080p) [Not 24/7] +https://d3pvma9xb2775h.cloudfront.net/live/omropfryslan/stream04/index.m3u8 +#EXTINF:-1 tvg-id="OpenRotterdam.nl",Open Rotterdam (480p) [Not 24/7] +http://ms2.mx-cd.net/tv/141-573555/OPEN_Rotterdam.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ORTS.nl",ORTS (480p) +http://ms7.mx-cd.net/tv/200-1006554/ORTS_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PodiumTV2.nl",Podium.TV 2 (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC2&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="PodiumTV3.nl",Podium.TV 3 (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC3&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="PodiumTV.nl",Podium.TV (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC1&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="Qmusic.nl",Qmusic (720p) +https://dpp-qmusicnl-live.akamaized.net/streamx/QmusicNL.m3u8 +#EXTINF:-1 tvg-id="Radio10.nl",Radio 10 (720p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/698637/VR-Radio10-1/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio350.nl",Radio 350 (360p) [Not 24/7] +https://stream.radio350.nl/hls/radio350.m3u8 +#EXTINF:-1 tvg-id="Radio538.nl",Radio 538 (270p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/624107/VR-Radio538-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioA1.nl",Radio A1 (1080p) [Not 24/7] +http://stream.a1mediagroep.eu/hls/a1studio.m3u8 +#EXTINF:-1 tvg-id="RadioAalsmeerTV.nl",Radio Aalsmeer TV (720p) [Not 24/7] +https://radioaalsmeer.nl:4443/live/tv.m3u8 +#EXTINF:-1 tvg-id="RadioNL.nl",Radio NL (1080p) [Not 24/7] +http://558bd16067b67.streamlock.net:1935/radionl/radionl/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRN7.nl",Radio RN7 (576p) [Geo-blocked] +http://streaming.rn7.nl/rn7tv/live_576/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioVeronica.nl",Radio Veronica (270p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/585615/VR-Veronica-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioVOSFM.nl",Radio VOS FM (720p) [Not 24/7] +http://593aed234297b.streamlock.net:1935/henrymeeuws/henrymeeuws/playlist.m3u8 +#EXTINF:-1 tvg-id="Regio8TV.nl",Regio8 TV (1080p) +https://ms7.mx-cd.net/tv/71-475821/Regio8TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Regio90TV.nl",Regio90 TV (480p) +https://ms7.mx-cd.net/MC-Monitoring/260-2403096/90TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVNieuws.nl",Regio TV Nieuws (1080p) [Not 24/7] +http://highvolume04.streampartner.nl/regiomedia/regiomedia/playlist.m3u8 +#EXTINF:-1 tvg-id="RN7TV.nl",RN 7 TV (1080p) [Geo-blocked] +https://streaming.rn7.nl/rn7live_abr/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVAmstelveen.nl",RTV Amstelveen (720p) [Not 24/7] +https://live.rtva.nl/live/zender.m3u8 +#EXTINF:-1 tvg-id="RTVArnhem.nl",RTV Arnhem (480p) +https://ms2.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVConnectTV.nl",RTV Connect TV (480p) +https://ms7.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDordrecht.nl",RTV Dordrecht (480p) +https://ms2.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDordrecht.nl",RTV Dordrecht (480p) +https://ms7.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDrenthe.nl",RTV Drenthe (1080p) +https://cdn.rtvdrenthe.nl/live/rtvdrenthe/tv/index.m3u8 +#EXTINF:-1 tvg-id="RTVGO.nl",RTV GO! (1080p) [Not 24/7] +http://59132e529e3d1.streamlock.net:1935/Groningen1/Groningen1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVMaastricht.nl",RTV Maastricht (720p) [Not 24/7] +http://stream.rtvmaastricht.nl:8081/rtvm_live/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNOF1.nl",RTV NOF 1 (720p) +http://593aed234297b.streamlock.net:1935/rtvnof/rtvnof/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNOF2.nl",RTV NOF 2 (720p) [Not 24/7] +http://593aed234297b.streamlock.net:1935/rtvnof2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNoord.nl",RTV Noord (1080p) [Not 24/7] +https://media.rtvnoord.nl/live/rtvnoord/tv/index.m3u8 +#EXTINF:-1 tvg-id="RTVNoordExtra.nl",RTV Noord Extra (1080p) [Not 24/7] +https://media.rtvnoord.nl/live/rtvnoord/extra/index.m3u8 +#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl",RTV Noordoost Friesland (720p) +https://593aed234297b.streamlock.net/rtvnof/rtvnof/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl",RTV Noordoost Friesland (720p) [Not 24/7] +http://cdn15.streampartner.nl:1935/rtvnof2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVOost.nl",RTV Oost (720p) [Offline] +https://mediacdn.rtvoost.nl/live/rtvoost/tv-oost/index.m3u8 +#EXTINF:-1 tvg-id="RTVPurmerend.nl",RTV Purmerend (720p) +https://ms2.mx-cd.net/dtv-10/268-2641474/RTV_Purmerend_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVRijnmond.nl",RTV Rijnmond (1080p) +https://d3r4bk4fg0k2xi.cloudfront.net/rijnmondTv/index.m3u8 +#EXTINF:-1 tvg-id="RTVRijnstreekTV.nl",RTV Rijnstreek TV (720p) [Not 24/7] +https://vdo.verrips.email:3789/live/televisielive.m3u8 +#EXTINF:-1 tvg-id="RTVSlingeland.nl",RTV Slingeland (1080p) [Not 24/7] +https://ms7.mx-cd.net/dtv-10/105-475831/RTV_Slingeland.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVUtrecht.nl",RTV Utrecht (1080p) +https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/rtvutrecht/index.m3u8 +#EXTINF:-1 tvg-id="RTVWesterwolde.nl",RTV Westerwolde (432p) [Offline] +http://59132e529e3d1.streamlock.net:1935/westerwolde/westerwolde/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVWesterwolde.nl",RTV Westerwolde (432p) [Offline] +https://59132e529e3d1.streamlock.net/westerwolde/westerwolde/playlist.m3u8 +#EXTINF:-1 tvg-id="",rtvutrecht (1080p) +http://media.rtvutrecht.nl/live/rtvutrecht/rtvutrecht/index.m3u8 +#EXTINF:-1 tvg-id="Salto4.nl",Salto 4 (1080p) [Offline] +https://salto-streams.nl/hls/sotv2_high.m3u8 +#EXTINF:-1 tvg-id="SaltoADE.nl",Salto ADE (1080p) +https://live.salto.nl/hls/at5_high.m3u8 +#EXTINF:-1 tvg-id="SaltoBrasaMusic.nl",Salto Brasa Music (1080p) +https://salto-streams.nl/hls/sotv1_high.m3u8 +#EXTINF:-1 tvg-id="Samen1TV.nl",Samen1 TV (720p) +https://server-67.stream-server.nl:1936/Samen1TV/Samen1TV/playlist.m3u8 +#EXTINF:-1 tvg-id="SilenceTV.nl",Silence TV (720p) [Not 24/7] +http://93.190.140.42:8081/SilenceTV/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SirisTV.nl",Siris TV (720p) [Not 24/7] +https://videostream.siris.nl/hls/playoutweb/index.m3u8 +#EXTINF:-1 tvg-id="StreekTV.nl",Streek TV (720p) [Not 24/7] +http://cdn22.streampartner.nl/streektv/streektv/playlist.m3u8 +#EXTINF:-1 tvg-id="StreekTV.nl",Streek TV (720p) [Not 24/7] +https://58e4d59f4ba2c.streamlock.net/streektv/streektv/playlist.m3u8 +#EXTINF:-1 tvg-id="TommyTeleshopping.nl",Tommy Teleshopping (480p) +http://ms7.mx-cd.net/tv/71-1356094/Tommy_Teleshopping.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEllef.nl",TV Ellef (540p) [Not 24/7] +https://58e4d59f4ba2c.streamlock.net/tvellef/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVValkenburg.nl",TV Valkenburg (720p) [Not 24/7] +https://livestream.tvvalkenburg.tv/hls/tv-valkenburg/tv-valkenburg.m3u8 +#EXTINF:-1 tvg-id="UStad.nl",UStad (1080p) +https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/ustad/index.m3u8 +#EXTINF:-1 tvg-id="VechtdalTV.nl",Vechtdal TV (480p) +https://ms2.mx-cd.net/tv/81-334271/VechtdalTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl",Visit-X TV (720p) [Not 24/7] +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) +https://ms2.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) +https://ms7.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) +https://ms7.mx-cd.net/tv/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",XITE (720p) [Not 24/7] +https://ms2.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",XITE (BE) (720p) [Not 24/7] +https://ms7.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZO34.nl",ZO!34 (720p) [Timeout] +https://streams.uitzending.tv/zo34/zo34/playlist.m3u8 +#EXTINF:-1 tvg-id="ZuidWestTV.nl",ZuidWest TV (1080p) +https://live.zuidwesttv.nl/live/zwtv.m3u8 diff --git a/streams/nl_samsung.m3u b/streams/nl_samsung.m3u new file mode 100644 index 000000000..f7d0965bb --- /dev/null +++ b/streams/nl_samsung.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) [Not 24/7] +http://fueltv-fueltv-14-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeNetherlands.us",People are Awesome Netherlands (720p) [Not 24/7] +https://jukin-peopleareawesome-2-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionNetherland.es",Rakuten Action (Netherland) (720p) [Offline] +https://rakuten-action-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyNetherlands.es",Rakuten Comedy (Netherlands) (720p) [Offline] +https://rakuten-comedy-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesNetherland.es",Rakuten Documentaries (Netherland) (720p) [Offline] +https://rakuten-documentaries-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaNetherlands.es",Rakuten Drama (Netherlands) (720p) [Offline] +https://rakuten-drama-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyNetherlands.es",Rakuten Family (Netherlands) (720p) [Offline] +https://rakuten-family-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightNetherlands.es",Rakuten Spotlight (Netherlands) (720p) [Offline] +https://rakuten-spotlight-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKarokeNetherland.ca",Stingray Karoke (Netherland) (1080p) +https://stingray-karaoke-4-nl.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/no.m3u b/streams/no.m3u new file mode 100644 index 000000000..739eb27fd --- /dev/null +++ b/streams/no.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalMotor.no",Canal Motor (720p) +http://digicom.hls.iptvdc.com/canalmotor/index.m3u8 +#EXTINF:-1 tvg-id="CanalMotor.no",Canal Motor (720p) +https://digicom.hls.iptvdc.com/motorstv/index.m3u8 +#EXTINF:-1 tvg-id="FatstoneTV.no",Fatstone TV [Offline] +http://bgo1.cdn.s3m.no/fs/live/ngrp:live_all/chunklist_b5196000.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Kanal10Asia.no",Kanal 10 Asia (540p) +http://cdn-kanal10.crossnet.net:1935/kanal10/kanal10asia/playlist.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) +http://194.132.85.39/19333-live0/_definst_/push-stortinget_1/chunklist_w1136072204.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) [Not 24/7] +https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) [Not 24/7] +https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetHS2.no",Stortinget HS2 (576p) +https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetHS2.no",Stortinget HS2 (576p) [Not 24/7] +https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetN202.no",Stortinget N-202 (576p) [Not 24/7] +https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetN202.no",Stortinget N-202 (576p) [Not 24/7] +https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetNettTV.no",Stortinget Nett-TV (576p) +http://flash0.19333-live0.dna.qbrick.com:1935/19333-live0/push-stortinget_1/playlist.m3u8 +#EXTINF:-1 tvg-id="StortingetStortingssalen.no",Stortinget Stortingssalen (576p) +https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetStortingssalen.no",Stortinget Stortingssalen (576p) [Not 24/7] +https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="",TV2 Nyhetsstrømmen (720p) +https://ws15-hls-live.akamaized.net/out/u/1153546.m3u8 +#EXTINF:-1 tvg-id="TV2Sporten.no",TV 2 Sporten (720p) +https://ws31-hls-live.akamaized.net/out/u/1416253.m3u8 +#EXTINF:-1 tvg-id="TVHaugaland.no",TV Haugaland (720p) [Not 24/7] +https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.ip-only.net/90216-cachelive0/smil:APPLETV/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHaugaland.no",TV Haugaland (720p) [Not 24/7] +https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.qbrick.com/90216-cachelive0/smil:APPLETV/playlist.m3u8 diff --git a/streams/no_samsung.m3u b/streams/no_samsung.m3u new file mode 100644 index 000000000..7fbb9f86f --- /dev/null +++ b/streams/no_samsung.m3u @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) +https://rakuten-africanews-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) +https://mmm-ducktv-4-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavtVNorway.us",MavTV Norway (720p) [Offline] +https://mavtv-mavtvglobal-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionNorway.es",Rakuten Action (Norway) (720p) [Offline] +https://rakuten-action-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyNorway.es",Rakuten Comedy (Norway) (720p) [Offline] +https://rakuten-comedy-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesNorway.es",Rakuten Documentaries (Norway) (720p) [Offline] +https://rakuten-documentaries-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaNorway.es",Rakuten Drama (Norway) (720p) [Offline] +https://rakuten-drama-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyNorway.es",Rakuten Family (Norway) (720p) [Offline] +https://rakuten-family-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightNorway.es",Rakuten Spotlight (Norway) (720p) [Offline] +https://rakuten-spotlight-11-no.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/np.m3u b/streams/np.m3u new file mode 100644 index 000000000..7e7505e80 --- /dev/null +++ b/streams/np.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AvenuesKhabar.np",Avenues Khabar (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCMDzPE_7fcZSRJgpwIVor_A/live +#EXTINF:-1 tvg-id="KantipurTV.np",Kantipur TV (1080p) +https://ktvhdnpicc.ekantipur.com/ktv_desktop_02347834/hd/kantipurtv/hd_1080/chunks.m3u8 diff --git a/streams/nz.m3u b/streams/nz.m3u new file mode 100644 index 000000000..5bd07ed15 --- /dev/null +++ b/streams/nz.m3u @@ -0,0 +1,31 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BreezeTV.nz",Breeze TV (720p) +https://livestreamdirect-breezetv.mediaworks.nz/breezetv.m3u8 +#EXTINF:-1 tvg-id="Firstlight.nz",Firstlight (576p) +https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JuiceTV.nz",Juice TV (1080p) [Not 24/7] +https://juicex.nz/hls/mystream.m3u8 +#EXTINF:-1 tvg-id="KordiaTV.nz",Kordia TV (1080p) +https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8 +#EXTINF:-1 tvg-id="MaoriTV.nz",Maori TV (1080p) +https://bcsecurelivehls-i.akamaihd.net/hls/live/720612/1614493167001_1/master.m3u8 +#EXTINF:-1 tvg-id="parliament.nz",Parliament TV (1080p) +https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8 +#EXTINF:-1 tvg-id="TeReo.nz",Te Reo (1080p) +https://bcsecurelivehls-i.akamaihd.net/hls/live/720613/1614493167001_2/master.m3u8 +#EXTINF:-1 tvg-id="TheEdge.nz",The Edge (720p) +https://livestreamdirect-edgetv.mediaworks.nz/edgetv.m3u8 +#EXTINF:-1 tvg-id="Three.nz",Three [Geo-blocked] +https://livestreamdirect-three.mediaworks.nz/three.m3u8 +#EXTINF:-1 tvg-id="TVNZ1.nz",TVNZ 1 [Geo-blocked] +https://d2ce82tpc3p734.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_1/master.m3u8 +#EXTINF:-1 tvg-id="TVNZ2.nz",TVNZ 2 [Geo-blocked] +https://duoak7vltfob0.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_2/master.m3u8 +#EXTINF:-1 tvg-id="TVNZDuke.nz",TVNZ Duke [Geo-blocked] +https://dayqb844napyo.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_Duke/master.m3u8 +#EXTINF:-1 tvg-id="",TVSN Shopping (360p) +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn_nz/tvsn_nz_750.m3u8 +#EXTINF:-1 tvg-id="WairarapaTV.nz",Wairarapa TV (360p) [Not 24/7] +http://stream.wairarapatv.co.nz/Cellular_High/playlist.m3u8 +#EXTINF:-1 tvg-id="WairarapaTV.nz",Wairarapa TV (1080p) [Not 24/7] +https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8 diff --git a/streams/om.m3u b/streams/om.m3u new file mode 100644 index 000000000..400c3f4b7 --- /dev/null +++ b/streams/om.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Al Istiqama TV (576p) +https://jmc-live.ercdn.net/alistiqama/alistiqama.m3u8 +#EXTINF:-1 tvg-id="OmanAlthakafia.om",Oman Althakafia (1080p) +https://partwo.cdn.mangomolo.com/omcultural/smil:omcultural.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanLive.om",Oman Live (1080p) +https://partwo.cdn.mangomolo.com/omlive/smil:omlive.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanSportsTV.om",Oman Sports TV (1080p) [Offline] +https://partne.cdn.mangomolo.com/omsport/smil:omsport.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanTV.om",Oman TV (272p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/oman_tv/hls1/oman_tv.m3u8 +#EXTINF:-1 tvg-id="OmanTV.om",Oman TV (1080p) +https://partne.cdn.mangomolo.com/omantv/smil:omantv.stream.smil/playlist.m3u8 diff --git a/streams/pa.m3u b/streams/pa.m3u new file mode 100644 index 000000000..9b3ca6b6b --- /dev/null +++ b/streams/pa.m3u @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ASondeSalsa.pa",A Son de Salsa (720p) [Not 24/7] +https://stmv1.panelzcast.com/asondesalsa/asondesalsa/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVPanama.pa",BTV Panamá (480p) [Offline] +https://stream.oursnetworktv.com/latin/btvp/playlist.m3u8 +#EXTINF:-1 tvg-id="CabinaRPCRadio.pa",Cabina RPC Radio (360p) +https://mdstrm.com/live-stream-playlist/5d976689ab55a60f94ec98e8.m3u8 +#EXTINF:-1 tvg-id="CabinaTelemetroRadio.pa",Cabina Telemetro Radio (480p) +https://mdstrm.com/live-stream-playlist/5d97ca5673de440761ff194e.m3u8 +#EXTINF:-1 tvg-id="DreikoTv.pa",DreikoTv (480p) [Not 24/7] +https://stmv3.voxtvhd.com.br/reikotv/reikotv/playlist.m3u8 +#EXTINF:-1 tvg-id="HosannaVision.pa",Hosanna Vision (480p) [Not 24/7] +https://1206618505.rsc.cdn77.org/LS-ATL-59020-1/playlist.m3u8 +#EXTINF:-1 tvg-id="NexTV.pa",Nex TV (Canal 21) [Timeout] +http://209.91.213.10:8088/play/a01o +#EXTINF:-1 tvg-id="OyeTV.pa",Oye TV (480p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88df173853e7072f3f953f.m3u8 +#EXTINF:-1 tvg-id="RPC.pa",RPC (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88d659120a717cf93ce620.m3u8 +#EXTINF:-1 tvg-id="",Teleclásicos (480p) [Not 24/7] +https://tvdatta.com:3484/stream/play.m3u8 +#EXTINF:-1 tvg-id="Telemetro.pa",Telemetro (480p) [Timeout] +http://209.91.213.10:8088/play/a00h +#EXTINF:-1 tvg-id="Telemetro.pa",Telemetro (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88dd2229b0890723df2165.m3u8 +#EXTINF:-1 tvg-id="TVN.pa",TVN (720p) +https://bcovlive-a.akamaihd.net/2f670e324b9b46bba7582e919ed90924/us-east-1/6058004209001/playlist.m3u8 diff --git a/streams/pe.m3u b/streams/pe.m3u new file mode 100644 index 000000000..28b251896 --- /dev/null +++ b/streams/pe.m3u @@ -0,0 +1,423 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Andes Televisión (Sicusani) (720p) [Not 24/7] +https://stmv1.voxhdnet.com/tvsicuani/tvsicuani/playlist.m3u8 +#EXTINF:-1 tvg-id="AntaresTelevision.pe",Antares Televisión (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvantares/liveantarestv/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiritv.pe",AsiriTV (Lima) (720p) [Not 24/7] +https://video2.lhdserver.es/asiritv/live.m3u8 +#EXTINF:-1 tvg-id="ATMTelevision.pe",ATM Televisión (Apurimac) (720p) [Not 24/7] +https://v4.tustreaming.cl/atmtv/index.m3u8 +#EXTINF:-1 tvg-id="ATV.pe",ATV (480p) [Not 24/7] +https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATVPlus.pe",ATV+ Noticias (480p) [Not 24/7] +https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv-mas.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Auténtica Televisión (720p) [Not 24/7] +https://live.obslivestream.com/autenticatvmux/index.m3u8 +#EXTINF:-1 tvg-id="BellaAbanquinaTV.pe",Bella Abanquina TV (Apurimac) (720p) [Not 24/7] +https://v4.tustreaming.cl/bellatv/index.m3u8 +#EXTINF:-1 tvg-id="BellaAsuncionTV.pe",Bella Asuncion TV (352p) [Not 24/7] +https://tvdatta.com:3602/stream/play.m3u8 +#EXTINF:-1 tvg-id="BestCableMasCumbia.pe",Best Cable Más Cumbia (720p) [Not 24/7] +https://ca.inka.net.pe/mascumbiatvonline/mascumbiatvonline/index.m3u8 +#EXTINF:-1 tvg-id="BestCableMusic.pe",Best Cable Music (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablemusic/bestcablemusic/index.m3u8 +#EXTINF:-1 tvg-id="BestCablePeru.pe",Best Cable Perú (720p) [Not 24/7] +https://ca.inka.net.pe/bestcable/bestcable/index.m3u8 +#EXTINF:-1 tvg-id="BestCableSportsPeru.pe",Best Cable Sports Perú (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablesports/bestcablesports/index.m3u8 +#EXTINF:-1 tvg-id="BethelTV.pe",Bethel TV (720p) [Not 24/7] +https://ott.streann.com/loadbalancer/services/public/channels/5e0689c82cdcb4fdbcd79151/playlist.m3u8 +#EXTINF:-1 tvg-id="BeXtremeTVLima.pe",BeXtreme TV (Lima) (1080p) [Geo-blocked] +https://video1.getstreamhosting.com:1936/8106/8106/playlist.m3u8 +#EXTINF:-1 tvg-id="BHTV.pe",BHTV (720p) [Not 24/7] +http://cdn1.ujjina.com:1935/iptvbhtv/livebhtvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBellezaAndina.pe",Cable Netword Belleza Andina TV (720p) [Not 24/7] +https://ca.inka.net.pe/bellezaandina/index.m3u8 +#EXTINF:-1 tvg-id="CNCumbia.pe",Cable Netword Cumbia TV (720p) [Not 24/7] +https://ca.inka.net.pe/cumbiatv/index.m3u8 +#EXTINF:-1 tvg-id="CNTV.pe",Cable Netword TV (480p) [Not 24/7] +https://ca.inka.net.pe/cntv/index.m3u8 +#EXTINF:-1 tvg-id="CadenaTVHuancayo.pe",Cadena TV Huancayo (720p) [Not 24/7] +https://tvdatta.com:3262/live/cadenatvlive.m3u8 +#EXTINF:-1 tvg-id="CajamarcaTV.pe",Cajamarca TV (480p) [Not 24/7] +https://ca.inka.net.pe/cajamarcatv/cajamarcatv/index.m3u8 +#EXTINF:-1 tvg-id="Canal8Catacaos.pe",Canal 8 (Catacaos) (360p) [Not 24/7] +https://tvdatta.com:3838/live/canalcatacaoslive.m3u8 +#EXTINF:-1 tvg-id="Canal43Sudamericana.pe",Canal 43 Sudamericana (Ica) (360p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8014/index.m3u8 +#EXTINF:-1 tvg-id="CanalEvelyn.pe",Canal E (Evelyn) (Altomayo) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/8006/index.m3u8 +#EXTINF:-1 tvg-id="CanalEvelyn.pe",Canal E (Evelyn) (Nororiente) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/8004/index.m3u8 +#EXTINF:-1 tvg-id="CANALIPE.pe",CANAL IPE (1080p) [Not 24/7] +https://cdnh8.iblups.com/hls/OVJNKV4pSr.m3u8 +#EXTINF:-1 tvg-id="CanalB.pe",CanalB (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alfonsobaella/live +#EXTINF:-1 tvg-id="CaribeTelevisionOtuzco.pe",Caribe Televisión (Otuzco) (1080p) [Not 24/7] +http://191.97.56.183:1935/caribetv/caribetv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Central TV (Chosica) (614p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvcentraltv/livecentraltvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ChicosIPe.pe",Chicos IPe (1080p) [Not 24/7] +http://cdnh4.iblups.com/hls/OVJNKV4pSr.m3u8 +#EXTINF:-1 tvg-id="ClipsTV.pe",ClipsTV (Ica) (360p) [Not 24/7] +https://7.innovatestream.pe:19360/clipstv/clipstv.m3u8 +#EXTINF:-1 tvg-id="CNCCajamarca.pe",CNC (Cajamarca) (720p) [Offline] +https://7.innovatestream.pe:19360/cnctv/cnctv.m3u8 +#EXTINF:-1 tvg-id="CNCDigital.pe",CNC Digital (Iquitos) (480p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8150/index.m3u8 +#EXTINF:-1 tvg-id="Conecta2TV.pe",Conecta2TV (Lima) (720p) [Not 24/7] +https://servilive.com:3528/live/conect2tvlive.m3u8 +#EXTINF:-1 tvg-id="CongresoTV.pe",Congreso TV (Perú) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/congresodelarepublicadelperútvenvivo/live +#EXTINF:-1 tvg-id="ContactoDeportivo.pe",Contacto Deportivo (720p) [Not 24/7] +https://live.obslivestream.com/cdeportivomux/index.m3u8 +#EXTINF:-1 tvg-id="ControversiaTV.pe",Controversia TV (Moyobamba) (360p) [Not 24/7] +https://live.obslivestream.com/controversiamux/index.m3u8 +#EXTINF:-1 tvg-id="CRTelevisionMoyobamba.pe",CR Television (Moyobamba) (720p) [Not 24/7] +https://live.obslivestream.com/crtvmux/index.m3u8 +#EXTINF:-1 tvg-id="CreoTV.pe",CreoTV (Cajamarca) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/creotv/index.m3u8 +#EXTINF:-1 tvg-id="CTC.pe",CTC (720p) +http://190.108.83.142:8000/play/a007/index.m3u8 +#EXTINF:-1 tvg-id="Cultura24tv.pe",Cultura 24 (360p) [Not 24/7] +https://vs8.live.opencaster.com/cultura24/smil:cultura24/playlist.m3u8 +#EXTINF:-1 tvg-id="CVMTelevision.pe",CVM TV Digital (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/cvmtv/cvmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="DeltaTV.pe",DeltaTV (Pacayzapa | San Martín) (480p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8038/index.m3u8 +#EXTINF:-1 tvg-id="DiarioHechiceraTumbes.pe",Diario Hechicera (Tumbes) (720p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/8108/8108/playlist.m3u8 +#EXTINF:-1 tvg-id="DMJ.pe",DMJ (Cuzco) (720p) [Not 24/7] +https://v4.tustreaming.cl/s1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DTV.pe",DTV (Junin) [Not 24/7] +https://ed5ov.live.opencaster.com/ArEetgEqqozh/index.m3u8 +#EXTINF:-1 tvg-id="ExitosaTV.pe",Exitosa TV (720p) +https://cu.onliv3.com/livevd1/user2.m3u8 +#EXTINF:-1 tvg-id="Expresion.pe",Expresión (Tacna) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/radioilo.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.pe",FuegoTV (Lima) (720p) [Not 24/7] +http://190.108.83.142:8000/play/a003/index.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.pe",FuegoTV (Lima) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="FullTV.pe",FullTV (Lima) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/8018/8018/playlist.m3u8 +#EXTINF:-1 tvg-id="GacetaUcayalina.pe",Gaceta Ucayalina (720p) [Not 24/7] +https://tvsource.gacetaucayalina.com/hls/prueba.m3u8 +#EXTINF:-1 tvg-id="GalacticaTVPeru.pe",Galáctica TV (Peru) (720p) [Not 24/7] +https://pacific.direcnode.com:3715/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="GeniosTVMoyobamba.pe",Genios TV (Moyobamba) (720p) [Not 24/7] +https://live.obslivestream.com/geniostvmux/index.m3u8 +#EXTINF:-1 tvg-id="GoldValleyTV.pe",Gold Valley TV (Casma) (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/gold/gold/playlist.m3u8 +#EXTINF:-1 tvg-id="GORESAMTV.pe",GORESAM TV [Not 24/7] +https://video.obslivestream.com/gtv/index.m3u8 +#EXTINF:-1 tvg-id="HatunTV.pe",Hatun TV (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablehatuntv/bestcablehatuntv/index.m3u8 +#EXTINF:-1 tvg-id="Hoynet.pe",Hoynet (540p) [Not 24/7] +https://tv.portalexpress.es:3641/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="HuachoPeruTV.pe",Huacho Perú TV (720p) [Not 24/7] +https://tv.portalexpress.es:3124/live/hchoperutvlive.m3u8 +#EXTINF:-1 tvg-id="HuachoPeruTV.pe",Huacho Perú TV (720p) [Offline] +https://tv.portalexpress.es:3124/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="HuantaTV.pe",Huanta TV (288p) [Not 24/7] +https://inliveserver.com:1936/19002/19002/playlist.m3u8 +#EXTINF:-1 tvg-id="HuanucoenVivo.pe",Huánuco en Vivo (480p) [Not 24/7] +https://cp.sradiotv.com:1936/8006/8006/playlist.m3u8 +#EXTINF:-1 tvg-id="IdentidadTV.pe",Identidad TV (1080p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvrci/livercitv/playlist.m3u8 +#EXTINF:-1 tvg-id="ImagenTelevisionRioja.pe",Imagen Televisión (Rioja) (720p) [Not 24/7] +http://191.97.56.183:1935/imagentv/imagentv/playlist.m3u8 +#EXTINF:-1 tvg-id="ImpactoTelevision.pe",Impacto Televisión (Cajamarca) (720p) +https://eu1.servers10.com:8081/impactotv/index.m3u8 +#EXTINF:-1 tvg-id="ImperialTelevision.pe",Imperial Televisión (Huancayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/imperu/imperu/playlist.m3u8 +#EXTINF:-1 tvg-id="Inkavision.pe",Inkavisión (Cuzco) [Offline] +https://7.innovatestream.pe:19360/inkavision/inkavision.m3u8 +#EXTINF:-1 tvg-id="Innovafm.pe",Innova FM (Bagua Grande) (480p) [Not 24/7] +https://live.tvcontrolcp.com:1936/8170/8170/playlist.m3u8 +#EXTINF:-1 tvg-id="JN19.pe",JN19 (720p) [Not 24/7] +https://servilive.com:3149/live/jn19tvlive.m3u8 +#EXTINF:-1 tvg-id="JNETV.pe",JNE TV (720p) [Not 24/7] +https://dc1.webstream.eu/hls/hls/jnetvhdstreaming_high/index.m3u8 +#EXTINF:-1 tvg-id="Kachorro.pe",Kachorro (Super TV | Amazonas) (720p) [Not 24/7] +https://tvdatta.com:3517/live/kachorrotvlive.m3u8 +#EXTINF:-1 tvg-id="Karibena.pe",Karibeña (720p) [Not 24/7] +https://cu.onliv3.com/livevd/user1.m3u8 +#EXTINF:-1 tvg-id="KBOQuillabamba.pe",KBO Quillabamba (1080p) [Not 24/7] +https://cdnhd.iblups.com/hls/YGpW43RUOD.m3u8 +#EXTINF:-1 tvg-id="KeBuenaBarranca.pe",KeBuena (Barranca) (480p) [Not 24/7] +https://inliveserver.com:1936/18016/18016/playlist.m3u8 +#EXTINF:-1 tvg-id="KoraTV.pe",Kora TV (360p) [Not 24/7] +https://megastreamm.com:3129/live/koratvlive.m3u8 +#EXTINF:-1 tvg-id="LaAbeja.pe",La Abeja (720p) [Not 24/7] +http://cdnhd.iblups.com/hls/F87ppt1YAT.m3u8 +#EXTINF:-1 tvg-id="LaLuzTV.pe",La Luz TV (720p) [Not 24/7] +http://ott.streann.com:8080/loadbalancer/services/public/channels/59ce7f292cdc7ba015a93b82/playlist.m3u8 +#EXTINF:-1 tvg-id="RTV.pe",La República TV (RTV) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVLaRepública/live +#EXTINF:-1 tvg-id="LaRiberena.pe",La Ribereña (Pucallpa) (480p) [Not 24/7] +https://inliveserver.com:1936/19020/19020/playlist.m3u8 +#EXTINF:-1 tvg-id="Latina.pe",Latina (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5ce7109c7398b977dc0744cd.m3u8 +#EXTINF:-1 tvg-id="LimaLive.pe",LimaLive (536p) [Not 24/7] +https://stmv.panel.grupolimalive.com/limalive/limalive/playlist.m3u8 +#EXTINF:-1 tvg-id="LotPlusTV.pe",LotPlus TV (Chiclayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/lotplustv/lotplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="MasterTVTarapoto.pe",Master TV (Tarapoto) (480p) [Not 24/7] +https://tv.oyotunstream.com:1936/master/master/playlist.m3u8 +#EXTINF:-1 tvg-id="MaticesTV.pe",MaticesTV (Cañete) (720p) [Not 24/7] +http://v4.tustreaming.cl/matices/index.m3u8 +#EXTINF:-1 tvg-id="MegaTVAQP.pe",Mega TV (Arequipa) (360p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8008/index.m3u8 +#EXTINF:-1 tvg-id="MegaTVJaen.pe",Mega TV (Jaen) (720p) [Not 24/7] +https://tv.portalexpress.es:3399/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="MegaTVTarapoto.pe",Mega TV (Tarapoto) (480p) [Not 24/7] +https://tv.portalexpress.es:3870/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="MetropolitanadelCuzco.pe",Metropolitana del Cuzco (CCTVRadio) (576p) [Not 24/7] +https://video1.earthcam.com/myearthcam/075ff02f78c35af55564cf3af3b3f750.flv/playlist.m3u8 +#EXTINF:-1 tvg-id="Millenium49TVPucallpa.pe",Millenium 49 TV (Pucallpa) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/milleniuntv/milleniuntv/playlist.m3u8 +#EXTINF:-1 tvg-id="Millenium109FM.pe",Millenium 109 FM (Lamas) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/millenium/millenium/playlist.m3u8 +#EXTINF:-1 tvg-id="",MINEDU IPTV 1 (320p) [Not 24/7] +http://iptv.perueduca.pe:1935/canal1/canal11/playlist.m3u8 +#EXTINF:-1 tvg-id="",MINEDU IPTV 2 (320p) [Not 24/7] +http://iptv.perueduca.pe:1935/canal2/canal22/playlist.m3u8 +#EXTINF:-1 tvg-id="MitosTV.pe",MitosTV (Mitos de la Selva | Pucallpa) (480p) [Not 24/7] +https://inliveserver.com:1936/19018/19018/playlist.m3u8 +#EXTINF:-1 tvg-id="ModaHuancayo.pe",Moda Huancayo TV [Offline] +https://tvdatta.com:3383/live/huancayotvlive.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (360p) [Not 24/7] +https://ed1ov.live.opencaster.com/jcpstream_mid/index.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (360p) [Not 24/7] +https://www.opencaster.com/resources/hls_stream/hipodromojcp2.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (1080p) [Not 24/7] +http://vs8.live.opencaster.com/20100152275/jcpstream/playlist.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (1080p) [Not 24/7] +https://ed1ov.live.opencaster.com/jcpstream_hd720/index.m3u8 +#EXTINF:-1 tvg-id="MTVMasAncash.pe",MTV Más (Ancash) (720p) [Not 24/7] +https://mediacp.hostradios.com.ar:19360/8044/8044.m3u8 +#EXTINF:-1 tvg-id="NacionalTV.pe",NacionalTV (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/nacionaltv/nacionaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="NazarenasTV.pe",Nazarenas TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvnazarenas/livenazarenastv/playlist.m3u8 +#EXTINF:-1 tvg-id="NorSelvaRTV.pe",NorSelva RTV (Rioja) (288p) [Not 24/7] +https://live.tvcontrolcp.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="NuestraTVLima.pe",Nuestra TV (Lima) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/nuestratvlima +#EXTINF:-1 tvg-id="OasisRTV.pe",Oasis RTV (Trujillo) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/oasisrtv/oasisrtv.m3u8 +#EXTINF:-1 tvg-id="OKTeVe.pe",OK TeVe (Yurimaguas) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/wesdey3/wesdey3/playlist.m3u8 +#EXTINF:-1 tvg-id="OmegaTVYurimaguas.pe",Omega TV (Yurimaguas) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/omega/omega.m3u8 +#EXTINF:-1 tvg-id="OndaDigital.pe",Onda Digital (720p) [Not 24/7] +https://ed1ov.live.opencaster.com/CwCfFGFdtebB/index.m3u8 +#EXTINF:-1 tvg-id="OndaDigital.pe",Onda Digital (720p) [Not 24/7] +https://tv.ondadigital.pe:1936/ondatv2/ondatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="OrientalTV.pe",Oriental TV 21 (Pucallpa) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/orientaltv/orientaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="OvacionTV.pe",Ovacion TV (720p) [Not 24/7] +http://cdn2.ujjina.com:1935/iptvovacion1/liveovacion1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OvacionTV.pe",Ovación TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvovacion1/liveovacion1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PanamericanaTV.pe",Panamericana TV (298p) [Not 24/7] +https://cdnhd.iblups.com/hls/ptv2.m3u8 +#EXTINF:-1 tvg-id="PanamericanaTV.pe" status="error",Panamericana TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/PanamericanaPTV +#EXTINF:-1 tvg-id="PaxTV.pe",Pax TV (480p) [Not 24/7] +https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PBO.pe",PBO Digital (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgR0st4ZLABi-LQcWNu3wnQ/live +#EXTINF:-1 tvg-id="PeruMagico.pe",Peru Magico (480p) [Not 24/7] +http://38.131.11.9:1080/play/a0dh +#EXTINF:-1 tvg-id="PeruvianRadioTV.pe",PeruvianRadio TV (268p) [Not 24/7] +https://stmv.panel.grupolimalive.com/peruviantv/peruviantv/playlist.m3u8 +#EXTINF:-1 tvg-id="PiuraTV.pe",PiuraTV (720p) [Not 24/7] +http://190.108.83.142:8000/play/a00d/index.m3u8 +#EXTINF:-1 tvg-id="PlanetaTVBagua.pe",Planeta TV Bagua (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/planeatv/planeatv/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetaTVMoyobamba.pe",Planeta TV Moyobamba (720p) [Not 24/7] +https://live.obslivestream.com/planetatvmux/index.m3u8 +#EXTINF:-1 tvg-id="Primavera15RadiotelevisionMoquegua.pe",Primavera 15 Radiotelevisión (Moquegua) (720p) [Not 24/7] +https://tv.portalexpress.es:3270/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="",Proyecta Televisión (Huacho) (720p) [Not 24/7] +https://servilive.com:3194/live/proyectatvlive.m3u8 +#EXTINF:-1 tvg-id="PucallpaTelevision.pe",Pucallpa Televisión (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/pucallpatv/pucallpatv/playlist.m3u8 +#EXTINF:-1 tvg-id="PymeTV.pe",PymeTV [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/PymeTV/live +#EXTINF:-1 tvg-id="QTTelevision.pe",QT Televisión (Cuzco) (720p) [Not 24/7] +https://servilive.com:3753/live/qosqotimeslive.m3u8 +#EXTINF:-1 tvg-id="QuattroTV.pe",Quattro TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/quatrotvgo +#EXTINF:-1 tvg-id="Quillavision.pe",Quillavision (Cuzco) (720p) [Not 24/7] +http://v4.tustreaming.cl/quillavision/index.m3u8 +#EXTINF:-1 tvg-id="RadioCalorHuancayo.pe",Radio Calor (Huancayo) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/calortv +#EXTINF:-1 tvg-id="RadioChalaca.pe",Radio Chalaca (720p) [Not 24/7] +https://servilive.com:3162/multi_web/play.m3u8 +#EXTINF:-1 tvg-id="RadioDigital941TV.pe",Radio Digital 94.1 TV (Juanjui) (240p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8018/index.m3u8 +#EXTINF:-1 tvg-id="RadioInkaTV.pe",Radio Inka TV (272p) [Not 24/7] +https://tv.portalexpress.es:3175/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="RadioLibertadArequipa.pe",Radio Libertad (Arequipa) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/radiolibertadarequipa +#EXTINF:-1 tvg-id="RadioPachatusan.pe",Radio Pachatusan (Cuzco) (720p) [Not 24/7] +https://tvdatta.com:3413/live/pachatusanlive.m3u8 +#EXTINF:-1 tvg-id="RadioSanBorjaTV.pe",Radio San Borja TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvsanborja/livesanborjatv/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTropicalTarapoto.pe",Radio Tropical Tarapoto (480p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/raditropical/raditropical/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVBinacional.pe",Radio TV Binacional (Desaguadero) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/binacional/binacional/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVCharles.pe",Radio TV Charles (Bambamarca) [Not 24/7] +https://media2.cdnlayer.biz:8081/8032/index.m3u8 +#EXTINF:-1 tvg-id="RadioTVJuanjui.pe",Radio TV Juanjui (480p) [Not 24/7] +https://tv.portalexpress.es:3611/live/radiotvjuanjuilive.m3u8 +#EXTINF:-1 tvg-id="RadioUnoTacna.pe",Radio Uno (Tacna) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCK0lpuL9PQb3I5CDcu7Y7bA/live +#EXTINF:-1 tvg-id="RadioVictoria780AM.pe",Radio Victoria 780 AM (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2pEdgRlAdGozFhlEb73PKA/live +#EXTINF:-1 tvg-id="RadioXtrema.pe",Radio Xtrema (360p) [Not 24/7] +https://tv.portalexpress.es:3090/stream/play.m3u8 +#EXTINF:-1 tvg-id="RadioyTvFiladelfia.pe",Radio y Tv Filadelfia (720p) [Not 24/7] +https://streamlive7.hearthis.at/hls/9355343.m3u8 +#EXTINF:-1 tvg-id="RadioInka.pe",RadioInka (Abancay) (272p) [Not 24/7] +https://tv.portalexpress.es:3175/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="RadioTVOrienteYurimaguas.pe",RadioTV Oriente (Yurimaguas) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/orientetv/orientetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RCR.pe",Red de Comunicación Regional (RCR) (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvrcrperu/livercrperutv/playlist.m3u8 +#EXTINF:-1 tvg-id="RegionTVCallao.pe",Región TV (Callao) (480p) [Not 24/7] +https://servilive.com:3757/live/regiontvlive.m3u8 +#EXTINF:-1 tvg-id="RiberenaTV.pe",Ribereña TV (Bellavista) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/riberenatv/riberenatv.m3u8 +#EXTINF:-1 tvg-id="RNTelevisionYurimaguas.pe",RN Televisión (Yurimaguas) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/rntelevision/rntelevision/playlist.m3u8 +#EXTINF:-1 tvg-id="RPP.pe",RPP (480p) [Not 24/7] +http://38.131.11.9:1080/play/a0d8 +#EXTINF:-1 tvg-id="RSelvaTV.pe",RSelvaTV (Tarapoto) (720p) [Not 24/7] +https://live.obslivestream.com/selvatvmux/index.m3u8 +#EXTINF:-1 tvg-id="RTVTotalYurimaguas.pe",RTV Total (Yurimaguas) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/rtvtotal/rtvtotal.m3u8 +#EXTINF:-1 tvg-id="RumbaMixTV.pe",RumbaMix TV (860p) [Not 24/7] +https://tvdatta.com:3344/live/rumbamixlive.m3u8 +#EXTINF:-1 tvg-id="RWTelevisionTarapoto.pe",RW Televisión (Tarapoto) [Not 24/7] +https://tvdatta.com:3952/live/rwtelevisionlive.m3u8 +#EXTINF:-1 tvg-id="",Salgalú TV [Not 24/7] +https://6075e60da1f27.streamlock.net/live/wowza/playlist.m3u8 +#EXTINF:-1 tvg-id="SanjuaneraTV.pe",SanjuaneraTV (720p) [Not 24/7] +https://live.obslivestream.com/sanjuaneramux/playlist.m3u8 +#EXTINF:-1 tvg-id="SatelTV.pe",SatelTV (Puno) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/satel/satel.m3u8 +#EXTINF:-1 tvg-id="SelvaMiaTV.pe",SelvaMía TV (Aguaytía) (360p) [Not 24/7] +https://inliveserver.com:1936/18022/18022/playlist.m3u8 +#EXTINF:-1 tvg-id="Sistema1.pe",Sistema 1 (Huaraz) (720p) [Not 24/7] +https://tv.portalexpress.es:3839/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="Sistema1.pe",Sistema 1 (Huaraz) (720p) [Not 24/7] +https://tv.portalexpress.es:3839/live/sistema1tvlive.m3u8 +#EXTINF:-1 tvg-id="SolStereoTV.pe",Sol Stereo TV (Casma) (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/solstereotv/solstereotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SoriTVPicota.pe",SoriTV (Picota) (720p) [Not 24/7] +https://lamasremixes.com/hls/cadenasurrtv/index.m3u8 +#EXTINF:-1 tvg-id="StereoTVPeru.pe",Stereo TV (Peru) (720p) [Not 24/7] +https://servers.amelbasoluciones.co:19360/5medialive/5medialive.m3u8 +#EXTINF:-1 tvg-id="SumacTV.pe",Sumac TV (Lima) (480p) [Not 24/7] +https://vps1.lnx.pe/sumactv-web/envivo/index.m3u8 +#EXTINF:-1 tvg-id="SuperCanalYurimaguas.pe",Super Canal (Yurimaguas) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/supercanal/supercanal.m3u8 +#EXTINF:-1 tvg-id="SurTVIlo.pe",SurTV (Ilo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/surtv/surtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele2000.pe",Tele2000 (Ayacucho) (720p) [Not 24/7] +https://servilive.com:3126/live/tele2000live.m3u8 +#EXTINF:-1 tvg-id="TelesurCamana.pe",Telesur (Camana) (480p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/camana.m3u8 +#EXTINF:-1 tvg-id="TelesurIlo.pe",Telesur (Ilo) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/ilo.m3u8 +#EXTINF:-1 tvg-id="TelesurMollendo.pe",Telesur (Mollendo) (240p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/mollendo.m3u8 +#EXTINF:-1 tvg-id="TelesurMoquegua.pe",Telesur (Moquegua) (360p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/moquegua.m3u8 +#EXTINF:-1 tvg-id="TelesurTacna.pe",Telesur (Tacna) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/tacna.m3u8 +#EXTINF:-1 tvg-id="TelevisionTarapoto.pe",Televisión Tarapoto (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/televisiontpp/televisiontpp/playlist.m3u8 +#EXTINF:-1 tvg-id="TelSatelCineTVArequipa.pe",TelSatel Cine TV (Arequipa) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/cinperu/cinperu/playlist.m3u8 +#EXTINF:-1 tvg-id="TopFMTVAtalaya.pe",Top FM TV (Atalaya) (240p) [Not 24/7] +https://tvdatta.com:3084/live/toptvaguaytialive.m3u8 +#EXTINF:-1 tvg-id="TopLatino.pe",Top Latino TV (404p) [Not 24/7] +https://5cefcbf58ba2e.streamlock.net/tltvweb/tvweb.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TPTO.pe",TPTO TV (Tarapoto) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/tptotv/tptotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tropical TV (Puerto Maldonado) (720p) [Not 24/7] +https://tv.oyotunstream.com:1936/tropicaltv/tropicaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="TumpisTV.pe",Tumpis TV (Tumbes) (720p) [Not 24/7] +https://servilive.com:3531/live/tumpistvlive.m3u8 +#EXTINF:-1 tvg-id="TurboMixRadioTV.pe",Turbo Mix Radio TV (360p) [Not 24/7] +https://7.innovatestream.pe:19360/turbomixoficial/turbomixoficial.m3u8 +#EXTINF:-1 tvg-id="TV5.pe",TV5 Soritor (720p) [Not 24/7] +https://live.obslivestream.com/tv5soritormux/index.m3u8 +#EXTINF:-1 tvg-id="TVAndahuaylas.pe",TV Andahuaylas [Not 24/7] +https://pe-lim01-live-us01.cdnlayer.biz/panoramatv/index.m3u8 +#EXTINF:-1 tvg-id="TVCosmos.pe",TV Cosmos (720p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8134/8134/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHuarmey.pe",TV Huarmey (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tvhuarmey +#EXTINF:-1 tvg-id="TVMundoArequipa.pe",TV Mundo (Arequipa) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQH-6sv6ovHg4Nx-niZ_C1g/live +#EXTINF:-1 tvg-id="TVNorteChiclayo.pe",TV Norte (Chiclayo) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/TVNORTEHD +#EXTINF:-1 tvg-id="TVNoticias73.pe",TV Noticias 7.3 (768p) +http://cdnh4.iblups.com/hls/RMuwrdk7M9.m3u8 +#EXTINF:-1 tvg-id="TVPalmeras.pe",TV Palmeras (480p) [Not 24/7] +https://srv.panelcast.net/palmerastv/palmerastv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPeru.pe",TV Perú (450p) [Not 24/7] +https://cdnh8.iblups.com/hls/R9WtilpKKB.m3u8 +#EXTINF:-1 tvg-id="TVPeruInternacional.pe",TV Perú Internacional (460p) [Not 24/7] +http://cdnh4.iblups.com/hls/irtp.m3u8 +#EXTINF:-1 tvg-id="TVPeruNoticias.pe",TV Perú Noticias (768p) [Not 24/7] +https://cdnh8.iblups.com/hls/RMuwrdk7M9.m3u8 +#EXTINF:-1 tvg-id="TVPeruanisima.pe",TV Peruanísima (720p) [Not 24/7] +http://k4.usastreams.com/TVperuanisima/TVperuanisima/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSensacion.pe",TV Sensación (Tacna) (1080p) [Not 24/7] +https://ca.inka.net.pe/tvsensacion/tvsensacion/index.m3u8 +#EXTINF:-1 tvg-id="TVSistemasCuzco.pe",TV Sistemas Cuzco (Cuzco) (360p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/kdlrqjcp/kdlrqjcp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVenLinea.pe",TVenLinea (Cuzco) (720p) [Not 24/7] +https://s1.tvdatta.com:3883/live/tvenlinealive.m3u8 +#EXTINF:-1 tvg-id="TvfacesOnline.pe",Tvfaces Online (360p) [Not 24/7] +https://tvdatta.com:3211/stream/play.m3u8 +#EXTINF:-1 tvg-id="UCI.pe",UCI (720p) [Not 24/7] +https://servilive.com:3449/live/mlecaroslive.m3u8 +#EXTINF:-1 tvg-id="Unitel.pe",Unitel (Huancayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/uniteltv/uniteltv/playlist.m3u8 +#EXTINF:-1 tvg-id="UniversitariaTVChanchamayo.pe",Universitaria TV (Chanchamayo) (480p) [Not 24/7] +https://tvdatta.com:3670/live/universitariatvlive.m3u8 +#EXTINF:-1 tvg-id="UranioTVYurimaguas.pe",Uranio TV (Yurimaguas) (720p) [Not 24/7] +https://live.obslivestream.com/uraniomux/index.m3u8 +#EXTINF:-1 tvg-id="USILTV.pe",USIL TV (720p) [Not 24/7] +https://video.produccionesmagicorp.com/redes/video.m3u8 +#EXTINF:-1 tvg-id="USMPTV.pe",USMPTV (720p) [Not 24/7] +https://streamusmptv.ddns.net/dash/stream.mpd +#EXTINF:-1 tvg-id="VamisaTV.pe",VamisaTV (Lima) (480p) [Not 24/7] +https://vps1.lnx.pe/vamisa/envivo/index.m3u8 +#EXTINF:-1 tvg-id="ViaAltomayo.pe",Vía Altomayo (720p) [Not 24/7] +https://live.obslivestream.com/viaaltomayomux/index.m3u8 +#EXTINF:-1 tvg-id="",Vía Televisión (Tarapoto) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/viatv2021/viatv2021/playlist.m3u8 +#EXTINF:-1 tvg-id="VirgendeNatividadParuro.pe",Virgen de Natividad de Paruro [Not 24/7] +https://srv6.zcast.com.br/virgennatividad/virgennatividad/playlist.m3u8 +#EXTINF:-1 tvg-id="VisionNoticiasPeruVNP.pe",Visión Noticias Perú (VNP) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/visionnoticias/visionnoticias/playlist.m3u8 +#EXTINF:-1 tvg-id="VisionTVMusica.pe",Visión TV Musica (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/visionmusica/visionmusica/playlist.m3u8 +#EXTINF:-1 tvg-id="WillaxTV.pe",Willax (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/WillaxTV +#EXTINF:-1 tvg-id="",Wtv (Bambamarca) (480p) [Not 24/7] +https://ca.inka.net.pe/wtv/wtv/index.m3u8 +#EXTINF:-1 tvg-id="",Wtv (La Verdad y Punto) (Chincha) (720p) [Not 24/7] +https://v4.tustreaming.cl/wtv/index.m3u8 +#EXTINF:-1 tvg-id="XTVChachapoyas.pe",X TV (Chachapoyas) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/xtv/xtv/playlist.m3u8 diff --git a/streams/pf.m3u b/streams/pf.m3u new file mode 100644 index 000000000..56bdd619e --- /dev/null +++ b/streams/pf.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TNTV.pf",TNTV (720p) [Not 24/7] +https://bcovlive-a.akamaihd.net/304fe71ee59a4d9692c5fa03548aa91a/us-west-2/5816339219001/playlist.m3u8 diff --git a/streams/ph.m3u b/streams/ph.m3u new file mode 100644 index 000000000..8f61ccc8d --- /dev/null +++ b/streams/ph.m3u @@ -0,0 +1,37 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CCTN47.ph",CCTN 47 (1080p) [Not 24/7] +http://122.55.252.134:8443/live/bba5b536faeacb9b56a3239f1ee8e3b3/1.m3u8 +#EXTINF:-1 tvg-id="DepEdTV.ph",DepEd TV (480p) [Geo-blocked] +https://d3cbe0gidjd4k2.cloudfront.net/channel_7/channel7/playlist.m3u8 +#EXTINF:-1 tvg-id="DZRHNewsTV.ph",DZRH News TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/DZRHNewsTelevision/live +#EXTINF:-1 tvg-id="GMAPinoyTV.ph",GMA Pinoy TV (360p) [Offline] +http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Philippines/cd1b220644affbb.m3u8 +#EXTINF:-1 tvg-id="GreatCommissionTVGCTV.ph",Great Commission TV (GCTV) (360p) [Not 24/7] +http://45.32.115.103/live/livestream/index.m3u8 +#EXTINF:-1 tvg-id="INCTV.ph",INC TV (1080p) +http://churchrus2-lh.akamaihd.net/i/coctesting_1@57550/master.m3u8 +#EXTINF:-1 tvg-id="KapamilyaChannel.ph",Kapamilya Channel [Offline] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCstEtN0pgOmCf02EdXsGChw/live +#EXTINF:-1 tvg-id="LifeTVAsia.ph",Life TV Asia (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_6/channel6/playlist.m3u8 +#EXTINF:-1 tvg-id="",NET 25 (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/Net25Tv/live +#EXTINF:-1 tvg-id="PEPTV.ph",PEP TV [Not 24/7] +https://iptv--iptv.repl.co/streamlink?url=https://www.twitch.tv/communitytv3/ +#EXTINF:-1 tvg-id="PilipinasHD.ph",Pilipinas HD (360p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_5/smil:channel_5.smil/chunklist_w1281634943_b300000_sleng.m3u8 +#EXTINF:-1 tvg-id="PilipinasHD.ph",Pilipinas HD (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_5/channel5/playlist.m3u8 +#EXTINF:-1 tvg-id="PTV4.ph",PTV 4 (480p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x5cr6b9 +#EXTINF:-1 tvg-id="ShopTV.ph",Shop TV (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_1/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="SMNI.ph",SMNI (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19079954/events/7831871/live.m3u8 +#EXTINF:-1 tvg-id="SuperRadyoDZBB.ph",Super Radyo DZBB (720p) [Not 24/7] +http://stream.gmanews.tv/ioslive/livestream/chunklist.m3u8?wowzasessionid=693701106 +#EXTINF:-1 tvg-id="TVMaria.ph",TV Maria [Offline] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/TVMariaLIVE/live +#EXTINF:-1 tvg-id="UNTV.ph",UNTV (1080p) [Timeout] +https://cdn.untvweb.com/live-stream/untvweb.m3u8 diff --git a/streams/pk.m3u b/streams/pk.m3u new file mode 100644 index 000000000..50e23db08 --- /dev/null +++ b/streams/pk.m3u @@ -0,0 +1,65 @@ +#EXTM3U +#EXTINF:-1 tvg-id="92News.pk",92 News (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsgC5cbz3DE2Shh34gNKiog/live +#EXTINF:-1 tvg-id="92NewsUK.pk",92 News UK (576p) +https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-92_news-hsslive-25f-16x9-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="ARYDigital.pk",ARY Digital (1080p) [Offline] +https://6zklx4wryw9b-hls-live.5centscdn.com/arydigital/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",ARY Digital Usa (720p) [Not 24/7] +https://6zklx4wryw9b-hls-live.5centscdn.com/arydigitalusa/498f1704b692c3ad4dbfdf5ba5d04536.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ARYNews.pk",ARY News (720p) [Offline] +https://6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AVTKhyber.pk",AVT Khyber (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/index_150_av-p.m3u8 +#EXTINF:-1 tvg-id="AVTKhyber.pk",AVT Khyber (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/master.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (360p) [Not 24/7] +https://imob.dunyanews.tv/live/_definst_/ngrp:dunyalive_1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnMBV5Iw4WqKILKue1nP6Hg/live +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (480p) [Not 24/7] +https://imob.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (INT Feed) (480p) [Not 24/7] +https://intl.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (UK Feed) (360p) [Not 24/7] +https://ukintl.dunyanews.tv/liveuk/ngrp:dunyalive_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (USA Feed) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCpgLvM8Oor7kZHU6HHfwWVQ/live +#EXTINF:-1 tvg-id="ExpressNewsPakistan.pk",Express News Pakistan (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/expressdigital1/livestream/master.m3u8 +#EXTINF:-1 tvg-id="GeoNews.pk",Geo News (576p) [Not 24/7] +https://jk3lz82elw79-hls-live.5centscdn.com/Geo/eae835e83c0494a376229f254f7d3392.sdp/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Kay2TV.pk",Kay2 TV (404p) [Not 24/7] +https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/index_150_av-p.m3u8 +#EXTINF:-1 tvg-id="Kay2TV.pk",Kay2 TV (404p) [Not 24/7] +https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/master.m3u8 +#EXTINF:-1 tvg-id="KhyberMiddleEastTV.pk",Khyber Middle East TV (720p) [Not 24/7] +https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 +#EXTINF:-1 tvg-id="KhyberNewsTV.pk",Khyber News TV (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 +#EXTINF:-1 tvg-id="LahoreNews.pk",Lahore News (720p) [Not 24/7] +http://mlive.lahorenews.tv/lahorelive/lnews_1/chunklist_DVR.m3u8 +#EXTINF:-1 tvg-id="LahoreNews.pk",Lahore News (720p) [Not 24/7] +https://vcdn.dunyanews.tv/lahorelive/_definst_/ngrp:lnews_1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelBangla.pk",Madani Channel Bangla (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/madanitvbangla.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelBangla.pk",Madani Channel Bangla (1080p) [Offline] +https://madnitv.vdn.dstreamone.net/madnitvbangla/madnibanglaabr/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelEnglish.pk",Madani Channel English (1080p) [Offline] +https://madnitv.vdn.dstreamone.net/madnitvenglish/madnienglishabr/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelUrdu.pk",Madani Channel Urdu (1080p) [Geo-blocked] +https://madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8 +#EXTINF:-1 tvg-id="OneGolf.pk",One Golf (720p) +http://162.250.201.58:6211/pk/ONEGOLF/index.m3u8 +#EXTINF:-1 tvg-id="PTVHome.pk",PTV Home (238p) [Not 24/7] +https://live.ptv.com.pk/live/stream/ptvhome/playlist.m3u8 +#EXTINF:-1 tvg-id="PTVNews.pk",PTV News (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA/live +#EXTINF:-1 tvg-id="PTVSports.pk",PTV Sports (1080p) [Offline] +http://103.81.104.118/hls/stream11.m3u8 +#EXTINF:-1 tvg-id="PTVWorld.pk",PTV World (360p) [Not 24/7] +https://live.ptv.com.pk/live/ptvworld/playlist.m3u8 +#EXTINF:-1 tvg-id="SuchTV.pk",Such TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x72hrde +#EXTINF:-1 tvg-id="ZindagiTV.pk",Zindagi TV (576p) [Not 24/7] +https://5ad386ff92705.streamlock.net/live_transcoder/ngrp:zindagitv.stream_all/chunklist.m3u8 diff --git a/streams/pl.m3u b/streams/pl.m3u new file mode 100644 index 000000000..3350c989d --- /dev/null +++ b/streams/pl.m3u @@ -0,0 +1,83 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",4FUN TV (576p) [Not 24/7] +https://stream.4fun.tv:8888/hls/4f_high/index.m3u8 +#EXTINF:-1 tvg-id="dlaCiebietv.pl",dlaCiebie.tv (1080p) [Not 24/7] +http://94.246.128.53:1935/tv/dlaCiebieTv/playlist.m3u8 +#EXTINF:-1 tvg-id="Echo24.tv",Echo24 (720p) [Not 24/7] +https://live-insysgo.cf.insyscd.net/echo24.720.smil/manifest.mpd +#EXTINF:-1 tvg-id="EzoTV.pl",Ezo TV (576p) [Not 24/7] +http://live.ezotv.pl:1935/live/EZOTV/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioCzworka.pl",Radio Czworka (1080p) +http://stream14.polskieradio.pl:1935/pr4_video/video_pr4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SferaTV.pl",Sfera TV (480p) [Not 24/7] +http://stream.sferatv.pl:1935/sferalive/smil:sferalive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelewizjaPograniczeGlubczyce.pl",Telewizja Pogranicze (Głubczyce) (720p) [Not 24/7] +http://95.160.28.218:1935/pogranicze/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TelewizjaTorun.pl",Telewizja Toruń (1080p) [Not 24/7] +http://217.173.176.107:1935/live/ngrp:tvk.stream_mobile/chunks.m3u8 +#EXTINF:-1 tvg-id="TrwamTV.pl",Trwam TV (480p) +http://trwamtv.live.e57-po.insyscd.net/cl01/out/u/trwam_3.m3u8 +#EXTINF:-1 tvg-id="TVKujawy.pl",TV Kujawy (576p) [Not 24/7] +http://stream.tvkujawy.pl:8080/live/broadcast.m3u8 +#EXTINF:-1 tvg-id="TVRegionalnaLubin.pl",TV Regionalna (Lubin) (576p) [Not 24/7] +https://tvreg.klemit.net/regionalna/stream/index.m3u8 +#EXTINF:-1 tvg-id="TVRepublika.pl",TV Republika (540p) [Not 24/7] +http://m1-tvrepublika.4vod.tv/smil:premium_abr.ism/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRepublika.pl",TV Republika (1080p) +https://ec08.luz1.cache.orange.pl/jupiter/o2-cl7/live/tvrepublika/live.m3u8 +#EXTINF:-1 tvg-id="",TV REPUBLIKA (1080p) [Offline] +http://188.47.212.71/jupiter/o1-cl1/live/tvrepublika/live.m3u8 +#EXTINF:-1 tvg-id="TVTorun.pl",TV Toruń (1080p) +http://217.173.176.107:1935/live/tvk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Trwam (480p) +https://trwamtv.live.e59-po.insyscd.net/cl01/out/u/trwam_3.m3u8 +#EXTINF:-1 tvg-id="TVP1.pl",TVP 1 (720p) [Offline] +http://207.110.52.61:8080/s/hls/5/9584/tvp1_276/1/1/index.m3u8 +#EXTINF:-1 tvg-id="TVP3Bialystok.pl",TVP 3 Białystok (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbialystok +#EXTINF:-1 tvg-id="TVP3Bydgoszcz.pl",TVP 3 Bydgoszcz (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbydgoszcz +#EXTINF:-1 tvg-id="TVP3Gdansk.pl",TVP 3 Gdańsk (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgdansk +#EXTINF:-1 tvg-id="TVP3GorzowWielkopolski.pl",TVP 3 Gorzów Wielkopolski (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgorzow +#EXTINF:-1 tvg-id="TVP3Katowice.pl",TVP 3 Katowice (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkatowice +#EXTINF:-1 tvg-id="TVP3Kielce.pl",TVP 3 Kielce (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkielce +#EXTINF:-1 tvg-id="TVP3Krakow.pl",TVP 3 Kraków (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkrakow +#EXTINF:-1 tvg-id="TVP3Lodz.pl",TVP 3 Łódź (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplodz +#EXTINF:-1 tvg-id="TVP3Lublin.pl",TVP 3 Lublin (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplublin +#EXTINF:-1 tvg-id="TVP3Olsztyn.pl",TVP 3 Olsztyn (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpolsztyn +#EXTINF:-1 tvg-id="TVP3Opole.pl",TVP 3 Opole (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpopole +#EXTINF:-1 tvg-id="TVP3Poznan.pl",TVP 3 Poznań (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvppoznan +#EXTINF:-1 tvg-id="TVP3Rzeszow.pl",TVP 3 Rzeszów (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvprzeszow +#EXTINF:-1 tvg-id="TVP3Szczecin.pl",TVP 3 Szczecin (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpszczecin +#EXTINF:-1 tvg-id="TVP3Warszawa.pl",TVP 3 Warszawa (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwarszawa +#EXTINF:-1 tvg-id="TVP3Wroclaw.pl",TVP 3 Wrocław (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwroclaw +#EXTINF:-1 tvg-id="TVPInfo.pl",TVP Info (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpinfo +#EXTINF:-1 tvg-id="TVPParlament1.pl",TVP Parlament (kanał 1) (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal1 +#EXTINF:-1 tvg-id="TVPParlament2.pl",TVP Parlament (kanał 2) (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal2 +#EXTINF:-1 tvg-id="TVPSejm.pl",TVP Sejm (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=sejm +#EXTINF:-1 tvg-id="TVPSenat.pl",TVP Senat (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=senat +#EXTINF:-1 tvg-id="TVT.pl",TVT (720p) [Not 24/7] +http://176.107.129.219/media/tvt/index.m3u8 +#EXTINF:-1 tvg-id="TVTZgorzelec.pl",TVT Zgorzelec (576p) [Not 24/7] +http://gargoyle.tomkow.pl/hls/tvt.m3u8 +#EXTINF:-1 tvg-id="BelsatTV.pl",Белсат ТВ (1080p) +http://f1.stream.devkom.pro:1063/ramowka/video.m3u8 diff --git a/streams/pr.m3u b/streams/pr.m3u new file mode 100644 index 000000000..6f695bf05 --- /dev/null +++ b/streams/pr.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CDMInternational.pr",CDM International (480p) [Not 24/7] +https://59825a54e4454.streamlock.net:8443/marcos536/marcos536/playlist.m3u8 +#EXTINF:-1 tvg-id="CDMTV.pr",CDM TV (480p) [Not 24/7] +http://205.164.56.130:1935/marcos536/marcos536/playlist.m3u8 +#EXTINF:-1 tvg-id="ConectateTV.pr",Conéctate TV (ACS Network) (480p) [Not 24/7] +https://play.amelbasoluciones.co:3257/live/acsnetworklive.m3u8 +#EXTINF:-1 tvg-id="",CTNi (Christian Television Network International) (480p) [Not 24/7] +https://584097344c1f0.streamlock.net/48/smil:48.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MasTV.pr",Mas TV (1080p) +https://video1.getstreamhosting.com:1936/8212/8212/playlist.m3u8 +#EXTINF:-1 tvg-id="NotiUnoPuertoRico.pr",Noti Uno Puerto Rico (854p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/unoradio/unoradio1/playlist.m3u8 +#EXTINF:-1 tvg-id="PuraPalabra.pr",Pura Palabra (718p) [Not 24/7] +https://59825a54e4454.streamlock.net:8443/william233/william233/playlist.m3u8 +#EXTINF:-1 tvg-id="WKAQNoticias.pr",Telemundo WKAQ Noticias Puerto Rico (1080p) [Offline] +https://wkaqlive-lh.akamaihd.net/i/PR_STREAM1@311877/master.m3u8 diff --git a/streams/ps.m3u b/streams/ps.m3u new file mode 100644 index 000000000..99c119b37 --- /dev/null +++ b/streams/ps.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7alaTV.ps",7ala TV [Geo-blocked] +http://vstream3.hadara.ps:8081/7alafm2020/7alafm2020/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ajyal TV (720p) [Not 24/7] +http://htvajyal.mada.ps:8888/ajyal/index.m3u8 +#EXTINF:-1 tvg-id="",Ajyal TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/ajyal/index.m3u8 +#EXTINF:-1 tvg-id="AlAqsaChannel.ps",Al Aqsa Channel (416p) [Not 24/7] +https://live-1.linuxway.info/aqsatv/live/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfajerTV1.ps",Alfajer TV 1 (304p) [Not 24/7] +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="AlfajerTV2.ps",Alfajer TV 2 (720p) +http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="Audeh.ps",Audeh (480p) +http://htvpalsat.mada.ps:8888/audeh/index.m3u8 +#EXTINF:-1 tvg-id="Falastini.ps",Falastini (720p) [Offline] +http://51.255.84.28:8081/palestiniantv_source/live/playlist.m3u8 +#EXTINF:-1 tvg-id="HebronTV.ps",Hebron TV (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/newhebron/newheb/playlist.m3u8 +#EXTINF:-1 tvg-id="HekayaTV.ps",Hekaya TV (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/Hekaya/hekayamix/playlist.m3u8 +#EXTINF:-1 tvg-id="MarahFM.ps",Marah FM (720p) [Not 24/7] +http://vstream3.hadara.ps:8081/marahFM_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="Mawal.ps",Mawal (720p) [Not 24/7] +http://vstream3.hadara.ps:8081/MawwalHD_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="MusawaChannel.ps",MusawaChannel (404p) [Not 24/7] +http://htvpalsat.mada.ps:8888/musawa/index.m3u8 +#EXTINF:-1 tvg-id="NablusTV.ps",Nablus TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/nabluslive/index.m3u8 +#EXTINF:-1 tvg-id="PalestineMubasher.ps",Palestine Mubasher (404p) +http://htvpalsat.mada.ps:8888/PBCLive/index.m3u8 +#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps",Palestine Satellite Channel (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/palestinian_satellite_channel/hls1/palestinian_satellite_channel.m3u8 +#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps",Palestine Satellite Channel (404p) +http://htvpalsat.mada.ps:8888/PBC/index.m3u8 +#EXTINF:-1 tvg-id="PalestineToday.ps",Palestine Today (480p) [Geo-blocked] +https://live.paltoday.tv/paltv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="palestiniantv.ps",palestiniantv (720p) +http://palestiniantv.origin.technostreaming.net:8081/palestiniantv_source/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioAlbaladTV.ps",Radio Albalad TV (1080p) [Not 24/7] +http://streaming.zaytonatube.com:8080/radioalbalad/radioalbalad/playlist.m3u8 +#EXTINF:-1 tvg-id="RajeenTV.ps",Rajeen TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/palabroad/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ShababFM.ps",Shabab FM (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/ShababFM/shabab/index.m3u8 +#EXTINF:-1 tvg-id="WatarTV.ps",Watar TV (720p) [Not 24/7] +http://htvint.mada.ps:8889/orient/index.m3u8 +#EXTINF:-1 tvg-id="WattanTV.ps",Wattan TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/wattan/index.m3u8 diff --git a/streams/pt.m3u b/streams/pt.m3u new file mode 100644 index 000000000..31d3e5fdc --- /dev/null +++ b/streams/pt.m3u @@ -0,0 +1,101 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal11.pt",Canal 11 (720p) +https://d2ve4fchffi4n1.cloudfront.net/out/v1/df356edd16f3434ab417f2c48cb1d516/index.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.pt",Canal Parlamento (432p) [Not 24/7] +https://playout175.livextend.cloud/livenlin4/2liveartvpub/playlist.m3u8 +#EXTINF:-1 tvg-id="IgrejaOnline.pt",Igreja Online (574p) [Not 24/7] +http://195.22.11.11:1935/igronline/igronline2/playlist.m3u8 +#EXTINF:-1 tvg-id="KuriakosCine.pt",Kuriakos Cine (1080p) [Not 24/7] +http://c2.manasat.com:1935/kcine/kcine3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosKids.pt",Kuriakos Kids (1080p) +http://c2.manasat.com:1935/kkids/kkids3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosMusic.pt",Kuriakos Music (1080p) +http://c2.manasat.com:1935/kmusic/kmusic3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosTV.pt",Kuriakos TV (576p) +http://195.22.11.11:1935/ktv/ktv2/playlist.m3u8 +#EXTINF:-1 tvg-id="KuriakosTV.pt",Kuriakos TV (1080p) +http://195.22.11.11:1935/ktv/ktv1/master.m3u8 +#EXTINF:-1 tvg-id="PortoCanal.pt",Porto Canal (360p) [Not 24/7] +https://streamer-a01.videos.sapo.pt/live/portocanal/playlist.m3u8 +#EXTINF:-1 tvg-id="PortoCanal.pt",Porto Canal (360p) [Not 24/7] +https://streamer-b02.videos.sapo.pt/live/portocanal/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioClubeTV.pt",Radio Clube TV (720p) [Not 24/7] +https://stmv1.srvsite.com/clubefmradio/clubefmradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP1.pt",RTP1 (480p) +http://162.212.178.69:41042/bysid/608 +#EXTINF:-1 tvg-id="RTP1.pt",RTP1 (720p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/rtpClean1HD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP2.pt",RTP2 (504p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtp2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP2.pt",RTP2 (720p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/rtpClean2HD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP3.pt",RTP3 (504p) [Not 24/7] +https://streaming-live.rtp.pt/livetvhlsDVR/rtpndvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP3.pt",RTP3 (720p) [Not 24/7] +https://streaming-live.rtp.pt/livetvhlsDVR/rtpnHDdvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAcores.pt",RTP Açores (504p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpacores.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAcores.pt",RTP Açores (720p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpacoresHD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAfrica.pt",RTP África (504p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpafrica.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPInternacional.pt",RTP Internacional (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s38/index.m3u8 +#EXTINF:-1 tvg-id="RTPInternacional.pt",RTP Internacional (504p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPMadeira.pt",RTP Madeira (504p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpmadeira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPMemoria.pt",RTP Memória (360p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:rtpmem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPRadiozigzag.pt",RTP Rádio Zig Zag (720p) [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:zigzagHD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPRadiozigzag.pt",RTP Rádio Zig Zag [Not 24/7] +https://streaming-live.rtp.pt/liverepeater/smil:zigzag.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SICInternacional.pt",SIC Internacional (720p) [Offline] +http://live.impresa.pt/live/sicint/sicint.m3u8 +#EXTINF:-1 tvg-id="SICNoticias.pt",SIC Noticias [Geo-blocked] +http://live.impresa.pt/live/sicnot/sicnot.m3u8 +#EXTINF:-1 tvg-id="SobrenaturalTV.pt",Sobrenatural TV (360p) [Not 24/7] +http://livestreamcdn.net:1935/SobrenaturalTV/SobrenaturalTV/playlist.m3u8 +#EXTINF:-1 tvg-id="SobrenaturalTV.pt",Sobrenatural TV (1080p) +http://213.13.26.11:1935/live/sobrenaturaltv/livestream.m3u8 +#EXTINF:-1 tvg-id="SportTV1.pt",Sport TV 1 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV2.pt",Sport TV 2 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV3.pt",Sport TV 3 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV4.pt",Sport TV 4 (576p) +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="STVNoticias.pt",STV Noticias (240p) [Not 24/7] +http://dcunilive36-lh.akamaihd.net/i/dclive_1@668002/master.m3u8 +#EXTINF:-1 tvg-id="TVFatima.pt",TV Fátima (1080p) +http://213.13.26.11:1935/live/santuario.stream/livestream.m3u8 +#EXTINF:-1 tvg-id="TVFatima.pt",TV Fátima (1080p) [Not 24/7] +https://streamer-b02.videos.sapo.pt/live/santuario.stream/livestream.m3u8 +#EXTINF:-1 tvg-id="TVMana1BRA.pt",TV Maná 1 (320p) [Not 24/7] +http://195.22.11.11:1935/tvmana/tvmana1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMana2BRA.pt",TV Maná 2 (576p) [Not 24/7] +http://195.22.11.11:1935/tvmana/tvmana2/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA (ENG) (484p) +http://c2.manasat.com:1935/church-online/ingles3/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA (ESP) (488p) +http://c2.manasat.com:1935/iglesia-online/espanhol3/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA (FR) (484p) +http://c2.manasat.com:1935/eglise-online/frances3/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA (RU) (486p) +http://c2.manasat.com:1935/tserkov-online/russo3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVManaCordoba.pt",TV Maná Córdoba (576p) [Not 24/7] +http://csvl03.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA MAPUTO (526p) [Not 24/7] +http://streamspub.manasat.com:1935/tvmz/tvmz2/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MANA MAPUTO (576p) [Not 24/7] +http://csvl03.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANA1PORTUGAL.pt",TV MANA-1 PORTUGAL (1080p) [Not 24/7] +http://csvl04.manasat.com:1935/tvmana/tvmana3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVI24.pt",TVI24 (480p) +https://video-auth2.iol.pt/live_edge/tvi24_abr/edge_servers/tvi24-480p/chunks.m3u8 +#EXTINF:-1 tvg-id="TVI.pt",TVI (480p) +https://video-auth2.iol.pt/live_edge/tvi_abr/edge_servers/tvi-480p/chunks.m3u8 +#EXTINF:-1 tvg-id="TVIReality.pt",TVI Reality (480p) +https://video-auth2.iol.pt/live_tvi_direct/live_tvi_direct/edge_servers/tvireality-480p/chunks.m3u8 diff --git a/streams/pt_samsung.m3u b/streams/pt_samsung.m3u new file mode 100644 index 000000000..4afa92b6a --- /dev/null +++ b/streams/pt_samsung.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews Português (720p) +https://rakuten-euronews-8-pt.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/py.m3u b/streams/py.m3u new file mode 100644 index 000000000..aa4cabdc4 --- /dev/null +++ b/streams/py.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABCTV.py",ABC TV (720p) +https://d2e809bgs49c6y.cloudfront.net/live/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851/live.isml/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851.m3u8 +#EXTINF:-1 tvg-id="C9N.py",C9N (480p) [Offline] +http://170.83.242.153:8000/play/a022 +#EXTINF:-1 tvg-id="C9N.py",C9N (1080p) [Offline] +http://170.83.242.153:8000/play/c9nhd +#EXTINF:-1 tvg-id="FarraPlay.py",Farra Play (720p) [Not 24/7] +http://159.203.148.226/live/farra.m3u8 +#EXTINF:-1 tvg-id="",GEN (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/paraguay/gentv +#EXTINF:-1 tvg-id="",La Tele (480p) [Offline] +http://170.83.242.153:8000/play/a00j +#EXTINF:-1 tvg-id="LIMTV.py",LIM TV (720p) [Not 24/7] +https://live.admefy.com/live/default/ashamed_crimson_3360d.m3u8 +#EXTINF:-1 tvg-id="MasTV.py",Más TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/mastvonline +#EXTINF:-1 tvg-id="NPY.py",NPY (480p) [Offline] +http://170.83.242.153:8000/play/a024 +#EXTINF:-1 tvg-id="Paravision.py",Paravision (480p) [Offline] +http://170.83.242.153:8000/play/a021 +#EXTINF:-1 tvg-id="RadioUniverso.py",Radio Universo (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/paraguay/universo +#EXTINF:-1 tvg-id="SNT.py",SNT (480p) [Offline] +http://170.83.242.153:8000/play/a03d +#EXTINF:-1 tvg-id="SURTVItapua.py",SUR TV Itapúa (480p) [Offline] +http://170.83.242.153:8000/play/a025 +#EXTINF:-1 tvg-id="Telefuturo.py",Telefuturo (480p) [Offline] +http://170.83.242.153:8000/play/a03e +#EXTINF:-1 tvg-id="TreceParaguay.py",Trece Paraguay (720p) [Not 24/7] +http://174.138.118.252/live/trece.m3u8 +#EXTINF:-1 tvg-id="Unicanal.py",Unicanal (720p) [Not 24/7] +http://45.55.127.106/live/unicanal.m3u8 diff --git a/streams/qa.m3u b/streams/qa.m3u new file mode 100644 index 000000000..e069e9161 --- /dev/null +++ b/streams/qa.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlJazeeraArabic.qa",Al Jazeera Arabic (420p) +https://live-hls-web-aja.getaj.net/AJA/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraArabic.qa",Al Jazeera Arabic (480p) +http://ott-cdn.ucom.am/s69/index.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera Balkans (1080p) +https://live-hls-web-ajb.getaj.net/AJB/index.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera Documentary (270p) [Geo-blocked] +https://live-hls-web-ajd.getaj.net/AJD/index.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera Documentary (576p) [Not 24/7] +http://teledunet.com:8080/live/azrotv/azrotv2021/10040.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera English (480p) +http://ott-cdn.ucom.am/s23/index.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera English (1080p) +https://live-hls-web-aje.getaj.net/AJE/index.m3u8 +#EXTINF:-1 tvg-id="",Al Jazeera Mubasher (1080p) +https://live-hls-web-ajm.getaj.net/AJM/index.m3u8 +#EXTINF:-1 tvg-id="AlKassFive.qa",Al Kass Five (304p) +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="AlRassoul.qa",Al Rassoul (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/AlRassoulChannel/live +#EXTINF:-1 tvg-id="AlRayyan.qa",Al Rayyan (1080p) +https://svs.itworkscdn.net/alrayyanlive/alrayyan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRayyanAlQadeem.qa",Al Rayyan Al Qadeem (1080p) +https://svs.itworkscdn.net/alrayyanqadeemlive/alrayyanqadeem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="QatarTV2.qa",Qatar TV 2 (480p) +https://qatartv.akamaized.net/hls/live/2026574/qtv2/master.m3u8 +#EXTINF:-1 tvg-id="QatarTV.qa",Qatar TV (360p) +https://qatartv.akamaized.net/hls/live/2026573/qtv1/master.m3u8 diff --git a/streams/ro.m3u b/streams/ro.m3u new file mode 100644 index 000000000..ac03243c8 --- /dev/null +++ b/streams/ro.m3u @@ -0,0 +1,141 @@ +#EXTM3U +#EXTINF:-1 tvg-id="A7TV.ro",A7TV (720p) [Not 24/7] +https://play.streamkit.tv/content/channel/aseventv/live/aseventv.player.m3u8 +#EXTINF:-1 tvg-id="AgroTV.ro",AgroTV (404p) [Not 24/7] +https://stream1.1616.ro:1945/agro/livestream/playlist.m3u8?wowzatokenhash=NqSD4qaHc94SbTW05NBB-lXC78ZiAOIbnbUBOHj1DAM= +#EXTINF:-1 tvg-id="AlephNews.ro",Aleph News (720p) +https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaOmegaTV.ro",Alfa Omega TV (540p) [Not 24/7] +http://s5.alfaomega.tv:1935/alfaomega/alfaomega1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaOmegaTV.ro",Alfa Omega TV (540p) [Not 24/7] +http://s5.alfaomega.tv:1935/alfaomega/smil:alfaomegatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Antena1.ro",Antena 1 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/a1 +#EXTINF:-1 tvg-id="Antena3.ro",Antena 3 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/a3 +#EXTINF:-1 tvg-id="AntenaComedy.ro",Antena Comedy (432p) [Not 24/7] +http://stream1.antenaplay.ro/live/smil:ComedyPlay.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaInternational.ro",Antena International (576p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/ai +#EXTINF:-1 tvg-id="AntenaMonden.ro",Antena Monden (720p) [Not 24/7] +http://stream1.antenaplay.ro/live/smil:AntenaMonden.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaStars.ro",Antena Stars (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/astars +#EXTINF:-1 tvg-id="AntenaSport.ro",AntenaSport (720p) [Not 24/7] +https://stream1.antenaplay.ro/dfs/farasecrete5/playlist.m3u8 +#EXTINF:-1 tvg-id="B1.ro",B1 (272p) [Not 24/7] +https://stream.adunity.com/b1/b1.m3u8 +#EXTINF:-1 tvg-id="BucovinaTV.ro",Bucovina TV (480p) +http://46.4.14.12:9999/btvsvlive/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.ro",Canal33 (480p) [Timeout] +https://fms-https1.mediadirect.ro/live3/canal33.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ColumnaTV.ro",Columna TV (576p) [Not 24/7] +rtmp://columna1.arya.ro/live/columnatv1 +#EXTINF:-1 tvg-id="CooknPlay.ro",Cook&Play (480p/720p) (720p) [Not 24/7] +https://stream1.antenaplay.ro/live/smil:CookPlay.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CorneaTV.ro",Cornea TV (720p) [Not 24/7] +http://89.149.30.158:1935/CorneaTV/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CredoTV.ro",Credo TV (720p) [Not 24/7] +http://cdn.credonet.tv:1935/ctv/smil:livecredo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Digi24.ro",Digi 24 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/digi24 +#EXTINF:-1 tvg-id="ElitaTV.ro",Elita TV (576p) [Timeout] +http://46.55.111.242:8080/Rezina.m3u8 +#EXTINF:-1 tvg-id="EstTVNeamt.ro",Est TV (Neamt) (576p) [Not 24/7] +http://89.38.8.130:39435 +#EXTINF:-1 tvg-id="GTV.ro",GTV (576p) [Not 24/7] +rtmp://gtv1.arya.ro:1935/live/gtv1.flv +#EXTINF:-1 tvg-id="HappyChannel.ro",Happy Channel (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/romania/happy-channel +#EXTINF:-1 tvg-id="IntermediaTV.ro",Intermedia TV (576p) +http://46.4.14.12:9999/intermedia1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalD.ro",Kanal D (384p) [Not 24/7] +https://stream1.kanald.ro/iphone/live.m3u8 +#EXTINF:-1 tvg-id="KissTV.ro",Kiss TV (576p) [Not 24/7] +https://fms-https1.mediadirect.ro/live3/_definst_/kiss.smil/playlist.m3u8?publisher=83 +#EXTINF:-1 tvg-id="LightChannel.ro",Light Channel (480p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/GMIlcbgM/playlist.m3u8 +#EXTINF:-1 tvg-id="MEDIAREGIONAL.ro",MEDIA REGIONAL (576p) +http://83.103.150.198:8080 +#EXTINF:-1 tvg-id="Mireasa.ro",Mireasa (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/mireasa +#EXTINF:-1 tvg-id="MoozDance.ro",MoozDance (576p) +https://rtmp.digitalbroadcast.ro/moozdance/moozdance.m3u8 +#EXTINF:-1 tvg-id="MoozHits.ro",MoozHits (576p) +https://rtmp.digitalbroadcast.ro/moozhits/moozhits.m3u8 +#EXTINF:-1 tvg-id="MoozRo.ro",MoozRo (576p) +https://rtmp.digitalbroadcast.ro/moozro/moozro.m3u8 +#EXTINF:-1 tvg-id="MusicChannelRomania.ro",Music Channel Romania (576p) [Offline] +https://edge126.rcs-rds.ro/utvedge/musicchannelhq.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NasulTV.ro",Naşul TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/NasulTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaTVBrasov.ro",Nova TV Brasov (576p) [Not 24/7] +http://novapress.ro:1935/live/nova/playlist.m3u8 +#EXTINF:-1 tvg-id="PloiestiTV.ro",Ploiesti TV [Offline] +rtmp://v1.arya.ro:1935/live/ptv1.flv +#EXTINF:-1 tvg-id="PrimaTV.ro",Prima TV (404p) [Not 24/7] +https://stream1.1616.ro:1945/prima/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= +#EXTINF:-1 tvg-id="ProTV.ro",Pro TV (1080p) +https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0 +#EXTINF:-1 tvg-id="Profitro.ro",Profit.ro (404p) +https://stream1.1616.ro:1945/profit/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= +#EXTINF:-1 tvg-id="Profitro.ro",Profit.ro (404p) [Not 24/7] +https://stream1.profit.ro:1945/profit/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RapsodiaTV.ro",Rapsodia TV (576p) [Offline] +rtmp://rapsodia1.arya.ro/live/rapsodiatv1 +#EXTINF:-1 tvg-id="RealitateaTV.ro",Realitatea FM (Studio) (576p) [Not 24/7] +https://live.realitatea.net/livertmp/plus/playlist.m3u8 +#EXTINF:-1 tvg-id="RealitateaTV.ro",Realitatea Plus (720p) [Timeout] +https://livestream.realitatea.net/livestream/liverealitatea.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RockTV.ro",Rock TV (180p) +https://fms-https1.mediadirect.ro/live3/_definst_/rocktv.smil/master.m3u8 +#EXTINF:-1 tvg-id="SangeorzTV.ro",Sangeorz TV (396p) [Not 24/7] +http://s2.streamnet.ro:8035/stream.flv +#EXTINF:-1 tvg-id="SomaxTV.ro",Somax TV [Offline] +http://webmobile.xdev.ro:81/tv12/playlist.m3u8 +#EXTINF:-1 tvg-id="SperantaTV.ro",Speranta TV (720p) [Not 24/7] +http://play.streamkit.tv/content/channel/sperantatv/live/sperantatv.player.m3u8 +#EXTINF:-1 tvg-id="SperantaTV.ro",Speranta TV (720p) [Not 24/7] +http://us200.streamkit.tv/edge/sperantatv_1200/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.ro",SuperTV (1080p) [Not 24/7] +http://live.supertv.ro:1935/live/smil:hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telestar1.ro",Telestar1 (480p) [Not 24/7] +http://s1.streamnet.ro:8053/stream.flv +#EXTINF:-1 tvg-id="Telestar1.ro",Telestar1 (576p) [Offline] +http://193.34.109.10:8090 +#EXTINF:-1 tvg-id="TravelMix.ro",Travel Mix (1080p) [Not 24/7] +http://89.38.8.131:39520 +#EXTINF:-1 tvg-id="TVSE.ro",TV SE (576p) [Not 24/7] +http://89.38.8.130:39419 +#EXTINF:-1 tvg-id="TVPlusSuceava.ro",TVPlus Suceava (576p) +http://85.186.146.34:8080 +#EXTINF:-1 tvg-id="TVR1.ro",TVR 1 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr1_hd_live/smil:tvr1_hd_live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR2.ro",TVR 2 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr2_test/smil:tvr2_test.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVR3.ro",TVR 3 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr3_test/smil:tvr3_test.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRCluj.ro",TVR Cluj (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrcluj_new/smil:tvrcluj_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRCraiova.ro",TVR Craiova (720p) [Not 24/7] +https://mn-nl.mncdn.com/tvrcraiova_new/smil:tvrcraiova_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRIasi.ro",TVR Iași (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvriasi_new/smil:tvriasi_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRInternational.ro",TVR International (720p) [Not 24/7] +https://mn-nl.mncdn.com/tvri_test/smil:tvri_test.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRMoldova.ro",TVR Moldova (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrmoldova_new/smil:tvrmoldova_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRTarguMures.ro",TVR Târgu Mureș (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrtgmures_new/smil:tvrtgmures_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRTimisoara.ro",TVR Timișoara (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrtimisoara_new/smil:tvrtimisoara_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVSat.ro",TVSat (576p) [Not 24/7] +http://89.38.8.130:39443 +#EXTINF:-1 tvg-id="UTV.ro",UTV (576p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/utv +#EXTINF:-1 tvg-id="VPTV.ro",VP TV (576p) [Not 24/7] +http://89.38.8.130:39437 +#EXTINF:-1 tvg-id="ZURadioTV.ro",ZU Radio TV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/zuradiotv +#EXTINF:-1 tvg-id="",ZU TV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/zutv diff --git a/streams/rs.m3u b/streams/rs.m3u new file mode 100644 index 000000000..3135c0d6a --- /dev/null +++ b/streams/rs.m3u @@ -0,0 +1,95 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdriaMusicTV.rs",Adria Music TV (1080p) +https://srv1.adriatelekom.com/AdriaMusicTV/index.m3u8 +#EXTINF:-1 tvg-id="DjakTV.rs",Djak TV (720p) +https://srv1.adriatelekom.com/DjakTV/index.m3u8 +#EXTINF:-1 tvg-id="KurirTV.rs",Kurir TV (720p) +https://kurir-tv.haste-cdn.net/providus/live2805.m3u8 +#EXTINF:-1 tvg-id="MarsTV.rs",Marš TV (576p) [Not 24/7] +http://cdn.dovecher.tv:8081/live/marsh/chunks.m3u8 +#EXTINF:-1 tvg-id="MISTelevizija.rs",MIS Televizija (720p) [Not 24/7] +https://5afd52b55ff79.streamlock.net/MISTV/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikAMVA2020.rs",Muzzik AMVA 2020 (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-8/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikCafeClubSerbia.rs",Muzzik Cafe&Club Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-3/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikHipHopSerbia.rs",Muzzik HipHop Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a4/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikJekaSerbia.rs",Muzzik Jeka Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-4/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikMediteraneoSerbia.rs",Muzzik Mediteraneo Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a5/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikOKKSerbia.rs",Muzzik OKK Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikReplaySerbia.rs",Muzzik Replay Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a3/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikRockRollSerbia.rs",Muzzik Rock&Roll Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-1/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikSaculatacSerbia.rs",Muzzik Saculatac Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikTVSerbia.rs",Muzzik TV Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikWorldwideSerbia.rs",Muzzik Worldwide Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-5/playlist.m3u8 +#EXTINF:-1 tvg-id="N1.ba",N1 BIH (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1bos&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.hr",N1 HRVATSKA (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1hrv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.rs",N1 RS (576p) [Not 24/7] +https://best-str.umn.cdn.united.cloud/stream?channel=n1srp&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.si",N1 SLOVENSKA (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1slv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="PinkExtra.rs",Pink Extra (576p) +http://109.105.201.198/PINKEXTRA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFamily.rs",Pink Family (576p) +http://109.105.201.198/PINKFAMILY/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFilm.rs",Pink Film (576p) +http://109.105.201.198/PINKFILM/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFolk1.rs",Pink Folk 1 (576p) +http://109.105.201.198/PINKFOLK/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkKoncert.rs",Pink Koncert (576p) +http://109.105.201.198/PINKKONCERT/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkMovies.rs",Pink Movies (576p) +http://109.105.201.198/PINKMOVIES/playlist.m3u8 +#EXTINF:-1 tvg-id="PinknRoll.rs",Pink n Roll (360p) +http://109.105.201.198/PINKROLL/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkPedia.rs",Pink Pedia (576p) +http://109.105.201.198/PINKPEDIA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkPremium.rs",Pink Premium (576p) +http://109.105.201.198/PINKPREMIUM/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkSciFiFantasy.rs",Pink Sci-Fi & Fantasy (576p) +http://109.105.201.198/PINKSCIFI/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkSerije.rs",Pink Serije (576p) +http://109.105.201.198/PINKSERIJE/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkWorld.rs",Pink World (360p) +http://109.105.201.198/PINKWORLD/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkWorldCinema.rs",Pink World Cinema (576p) +http://109.105.201.198/PINKWORLDCINEMA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkZabava.rs",Pink Zabava (360p) +http://109.105.201.198/PINKZABAVA/playlist.m3u8 +#EXTINF:-1 tvg-id="RedTV.rs",Red TV (720p) +https://live.rednet.rs/providus/redtv_multi.m3u8 +#EXTINF:-1 tvg-id="RTV1.rs",RTV 1 (576p) [Not 24/7] +mmsh://212.200.255.151/rtv1 +#EXTINF:-1 tvg-id="RTV1.rs",RTV 1 (576p) [Offline] +rtsp://212.200.255.151/rtv1 +#EXTINF:-1 tvg-id="RTV2.rs",RTV 2 (576p) [Not 24/7] +mmsh://212.200.255.151/rtv2 +#EXTINF:-1 tvg-id="RTV2.rs",RTV 2 (576p) [Not 24/7] +rtsp://212.200.255.151/rtv2 +#EXTINF:-1 tvg-id="RTVAS.rs",RTV AS (576p) +https://srv1.adriatelekom.com/TVAS/index.m3u8 +#EXTINF:-1 tvg-id="RTVCityUb.rs",RTV City Ub (576p) [Not 24/7] +http://167.172.39.13/hls/tvcityub.m3u8 +#EXTINF:-1 tvg-id="RTVNoviPazar.rs",RTV Novi Pazar (576p) +https://rtvnp.rs/hls/rtvnp.m3u8 +#EXTINF:-1 tvg-id="SuperSatTVHD.rs",SuperSat TV HD (1080p) [Not 24/7] +https://srv1.adriatelekom.com/SuperSatTV/index.m3u8 +#EXTINF:-1 tvg-id="belami.rs",TV Belle Amie (540p) [Not 24/7] +http://92.60.238.10:1935/live/belleamie/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDugaPlus.rs",TV Duga Plus (480p) [Not 24/7] +http://109.92.29.10:1935/tvduga/tvduga/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHram.rs",TV Hram (576p) [Not 24/7] +https://vod1.laki.eu/live/hram/index.m3u8 +#EXTINF:-1 tvg-id="TVPiCanal.rs",TV Pi Canal Pirot (576p) [Not 24/7] +http://stream.pikanal.rs/pikanal/pgm.m3u8 diff --git a/streams/ru.m3u b/streams/ru.m3u new file mode 100644 index 000000000..aaa64d1e3 --- /dev/null +++ b/streams/ru.m3u @@ -0,0 +1,773 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",1HD Music Television (404p) [Not 24/7] +https://sc.id-tv.kz/1hd.m3u8 +#EXTINF:-1 tvg-id="",1HD Music Television (1080p) [Not 24/7] +http://1hdru-hls-otcnet.cdnvideo.ru/onehdmusic/tracks-v1a1/index.m3u8 +#EXTINF:-1 tvg-id="2x2.ru",2x2 (576p) [Geo-blocked] +http://176.114.16.54/2x2/index.m3u8 +#EXTINF:-1 tvg-id="2x2.ru",2x2 (720p) +https://bl.uma.media/live/317805/HLS/4614144_3,2883584_2,1153024_1/1613019214/3754dbee773afc02014172ca26d3bb79/playlist.m3u8 +#EXTINF:-1 tvg-id="8KanalKrym.ru",8 канал Крым (576p) +http://176.99.110.252/stream8/playlist.m3u8 +#EXTINF:-1 tvg-id="9Volna.ru",9 Волна (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/9volna/playlist.m3u8 +#EXTINF:-1 tvg-id="9Volna.ru",9 Волна (720p) [Geo-blocked] +https://strm.yandex.ru/kal/acb/acb0.m3u8 +#EXTINF:-1 tvg-id="43kanal.ru",43 канал (720p) +http://sochinskayatrk.ru/hdtv/hls/43Channel_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="360deg.ru",360° (576p) [Offline] +https://strm.yandex.ru/kal/360tv/360tv0.m3u8 +#EXTINF:-1 tvg-id="360deg.ru",360° (720p) +https://video1.in-news.ru/360/index.m3u8 +#EXTINF:-1 tvg-id="360deg.ru",360° (1080p) [Not 24/7] +https://edge2-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/index.m3u8 +#EXTINF:-1 tvg-id="360degNovosti.ru",360° Новости (1080p) [Offline] +https://edge2-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/index.m3u8 +#EXTINF:-1 tvg-id="A1.ru",A1 (480p) +http://ott-cdn.ucom.am/s45/index.m3u8 +#EXTINF:-1 tvg-id="A2.ru",A2 (480p) +http://ott-cdn.ucom.am/s33/index.m3u8 +#EXTINF:-1 tvg-id="A2.ru",A2 (576p) [Not 24/7] +https://sc.id-tv.kz/A2.m3u8 +#EXTINF:-1 tvg-id="AkudjiTV.ru",Akudji TV (720p) [Offline] +https://hls.goodgame.ru/hls/5346.m3u8 +#EXTINF:-1 tvg-id="AmediaHit.ru",Amedia Hit (1080p) [Not 24/7] +https://sc.id-tv.kz/amedia_hit_hd.m3u8 +#EXTINF:-1 tvg-id="AmediaPremium.ru",Amedia Premium (480p) +http://ott-cdn.ucom.am/s64/index.m3u8 +#EXTINF:-1 tvg-id="BackusTV.ru",Backus TV (720p) [Not 24/7] +http://stream.backustv.ru/live/btv/index.m3u8 +#EXTINF:-1 tvg-id="BackusTVStrashnoe.ru",Backus TV Страшное (720p) [Not 24/7] +http://stream.backustv.ru/live/btv2/index.m3u8 +#EXTINF:-1 tvg-id="BollywoodHD.ru",Bollywood HD (1080p) [Not 24/7] +https://sc.id-tv.kz/bollywood_hd.m3u8 +#EXTINF:-1 tvg-id="BridgeTV.ru",Bridge TV (480p) +http://ott-cdn.ucom.am/s34/index.m3u8 +#EXTINF:-1 tvg-id="BridgeTV.ru",Bridge TV (480p) +http://ott-cdn.ucom.am/s78/index.m3u8 +#EXTINF:-1 tvg-id="Cinema.ru",Cinema (576p) [Not 24/7] +https://sc.id-tv.kz/Cinema.m3u8 +#EXTINF:-1 tvg-id="FAN.ru",FAN (576p) [Not 24/7] +http://194.9.27.164:8103/play/FAN/index.m3u8 +#EXTINF:-1 tvg-id="FreshTV.ru",FreshTV (720p) [Geo-blocked] +https://strm.yandex.ru/kal/fresh/fresh0.m3u8 +#EXTINF:-1 tvg-id="GlobalStarTV.ru",Global Star TV (720p) [Timeout] +http://stream2.hardlife.tv:8134/hls-live/hlsGS/_definst_/liveevent/gs.m3u8 +#EXTINF:-1 tvg-id="HDlife.ru",HD life (1080p) [Not 24/7] +http://37.193.6.155:34040/udp/239.1.9.2:1234 +#EXTINF:-1 tvg-id="HDMedia.ru",HD Медиа (720p) [Geo-blocked] +https://strm.yandex.ru/kal/hdmedia/hdmedia0.m3u8 +#EXTINF:-1 tvg-id="HDL.ru",HDL (404p) [Not 24/7] +https://sc.id-tv.kz/hdl.m3u8 +#EXTINF:-1 tvg-id="HITV.ru",HITV (1080p) [Offline] +https://strm.yandex.ru/kal/hittv/hittv0.m3u8 +#EXTINF:-1 tvg-id="Leomax24.ru",Leomax 24 (1080p) +https://tvshops.bonus-tv.ru/cdn/shop24/playlist.m3u8 +#EXTINF:-1 tvg-id="LeomaxPlus.ru",Leomax Plus (576p) +https://tvshops.bonus-tv.ru/cdn/discount/playlist.m3u8 +#EXTINF:-1 tvg-id="Luxury.ru",Luxury (1080p) +http://nano.teleservice.su:8080/hls/luxury.m3u8 +#EXTINF:-1 tvg-id="MilleniumTV.ru",Millenium TV (540p) [Offline] +http://tv1.mmg.ooo/live/sd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MilleniumTV.ru",Millenium TV (1080p) +http://tv1.mmg.ooo/live/hd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSOBRTV.ru",MOSOBR.TV (720p) +http://retj.educom.ru/mosobrtv/tv1/index.m3u8 +#EXTINF:-1 tvg-id="MOSOBRTV.ru",MOSOBR.TV (720p) [Not 24/7] +http://retc.educom.ru/mosobrtv/tv1/index.m3u8 +#EXTINF:-1 tvg-id="MTVmix.ru",MTVmix (Уфа) (384p) [Timeout] +http://81.30.182.82:18092/hls/live.m3u8 +#EXTINF:-1 tvg-id="MusicBoxRussia.ru",Music Box Russia (1080p) [Offline] +https://strm.yandex.ru/kal/rmbox/rmbox0.m3u8 +#EXTINF:-1 tvg-id="Olala.ru",O-la-la (576p) [Not 24/7] +http://194.9.27.164:8103/play/O_la_la/index.m3u8 +#EXTINF:-1 tvg-id="OceanTV.ru",Ocean TV (576p) [Offline] +http://91.192.168.242:9091 +#EXTINF:-1 tvg-id="RadostMoya.ru",Radost Moya (576p) [Geo-blocked] +https://cdn-01.bonus-tv.ru/radostmoya_edge/index.m3u8 +#EXTINF:-1 tvg-id="RTAmerica.ru",RT America (480p) +http://ott-cdn.ucom.am/s96/index.m3u8 +#EXTINF:-1 tvg-id="RTAmerica.ru",RT America (1080p) [Not 24/7] +https://rt-usa.gcdn.co/live/rtusa/playlist.m3u8 +#EXTINF:-1 tvg-id="RTArabic.ru",RT Arabic (1080p) +https://rt-arb.gcdn.co/live/rtarab/playlist.m3u8 +#EXTINF:-1 tvg-id="RTArabic.ru",RT Arabic (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsP3Clx2qtH2mNZ6KolVoZQ/live +#EXTINF:-1 tvg-id="RTDocumentary.ru",RT Documentary (1080p) +https://rt-rtd.gcdn.co/live/rtdoc/playlist.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (480p) +http://ott-cdn.ucom.am/s93/index.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) +https://hls.rt.com/hls/rtdru.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) +https://rtmp.api.rt.com/hls/rtdru.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) [Not 24/7] +http://uiptv.do.am/1ufc/300663722/playlist.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) [Not 24/7] +https://strm.yandex.ru/kal/rtd_hd/rtd_hd0.m3u8 +#EXTINF:-1 tvg-id="RTenEspanol.ru",RT en Español (1080p) [Not 24/7] +https://rt-esp.gcdn.co/live/rtesp/playlist.m3u8 +#EXTINF:-1 tvg-id="RTFrance.ru",RT France (1080p) +https://rt-fra.gcdn.co/live/rtfrance/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNews.ru",RT News (1080p) [Not 24/7] +https://rt-glb.gcdn.co/live/rtnews/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNews.ru",RT News (1080p) [Timeout] +https://strm.yandex.ru/kal/rt_hd/rt_hd0.m3u8 +#EXTINF:-1 tvg-id="RTUK.ru",RT UK (1080p) +https://rt-uk.gcdn.co/live/rtuk/playlist.m3u8 +#EXTINF:-1 tvg-id="RTGTV.ru",RTG (480p) [Timeout] +http://ott-cdn.ucom.am/s80/index.m3u8 +#EXTINF:-1 tvg-id="RTGHD.ru",RTG HD (480p) +http://ott-cdn.ucom.am/s63/index.m3u8 +#EXTINF:-1 tvg-id="",RU.TV (360p) [Offline] +https://rut-v.gcdn.co/streams/1410_95/playlist.m3u8 +#EXTINF:-1 tvg-id="",RU.TV (1080p) [Offline] +https://rutv.gcdn.co/streams/1410_95/playlist.m3u8 +#EXTINF:-1 tvg-id="",RU.TV (1080p) [Offline] +https://strm.yandex.ru/kal/rutv_cv/rutv_cv0.m3u8 +#EXTINF:-1 tvg-id="SGDF24RU.ru",SGDF24.RU (Свердлов) (720p) [Not 24/7] +http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoppingLive.ru",Shopping Live (576p) [Not 24/7] +http://serv30.vintera.tv:8081/shoppinglive/shoppinglive_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ShotTV.ru",Shot TV [Not 24/7] +http://cdn.tvmatic.net/shot.m3u8 +#EXTINF:-1 tvg-id="SochiLiveHD.ru",Sochi Live HD (720p) [Not 24/7] +http://serv30.vintera.tv:8081/sochi/sochi_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TRK555.ru",TRK 555 (720p) +http://trk555.tv:8888/live +#EXTINF:-1 tvg-id="TVBRICSChinese.ru",TV BRICS Chinese (1080p) [Not 24/7] +https://brics.bonus-tv.ru/cdn/brics/chinese/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSEnglish.ru",TV BRICS English (1080p) +https://brics.bonus-tv.ru/cdn/brics/english/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSPortuguese.ru",TV BRICS Portuguese (1080p) +https://brics.bonus-tv.ru/cdn/brics/portuguese/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSRussian.ru",TV BRICS Russian (1080p) +https://brics.bonus-tv.ru/cdn/brics/russian/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPRO.ru",TV PRO (576p) [Not 24/7] +http://rtmp.tvpro-online.ru/hls/ch1.m3u8 +#EXTINF:-1 tvg-id="TVGuberniya.ru",TV Губерния (Воронеж) (720p) +https://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMChannel.ru",TVMChannel (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/tvm_edge/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMChannel.ru",TVMChannel (720p) [Geo-blocked] +https://strm.yandex.ru/kal/tvm_supres/tvm_supres0.m3u8 +#EXTINF:-1 tvg-id="UniverTV.ru",Univer TV (1080p) +https://cdn.universmotri.ru/live/smil:univer.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UniverTV.ru",Univer TV (1080p) [Not 24/7] +https://cdn.universmotri.ru/live/smil:mbr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VIVARussia.ru",VIVA Russia (1080p) [Not 24/7] +https://live.prd.dlive.tv/hls/live/viva-russia.m3u8 +#EXTINF:-1 tvg-id="WorldFashionChannel.ru",World Fashion Channel (1080p) +https://wfcint.mediacdn.ru/cdn/wfcintweb/playlist.m3u8 +#EXTINF:-1 tvg-id="AbazaTV.ru",Абаза ТВ (576p) [Offline] +http://watcher-node5.apsny.camera/tv_abaza_tv/index.m3u8 +#EXTINF:-1 tvg-id="Avto24.ru",Авто 24 (576p) [Geo-blocked] +http://185.52.77.67:8080/Avto24/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="Aris24.ru",Арис 24 (720p) [Not 24/7] +http://serv25.vintera.tv:8081/test/aris/playlist.m3u8 +#EXTINF:-1 tvg-id="Arsenal.ru",Арсенал (480p) +http://ott-cdn.ucom.am/s68/index.m3u8 +#EXTINF:-1 tvg-id="Arhyz24.ru",Архыз 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/arhyz24/arhyz240.m3u8 +#EXTINF:-1 tvg-id="Arhyz24.ru",Архыз 24 (1080p) +https://live.mediacdn.ru/sr1/arhis24/playlist.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) +https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/astrahan24/astrahan240.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) [Not 24/7] +http://83.234.104.142/astrakhan24hd/playlist.m3u8 +#EXTINF:-1 tvg-id="AstrahanRuSport.ru",Астрахань.Ru Sport (720p) +https://streaming.astrakhan.ru/astrakhanrusporthd/playlist.m3u8 +#EXTINF:-1 tvg-id="AstrahanRuTV.ru",Астрахань.Ru TV (480p) +https://streaming.astrakhan.ru/astrakhanrulivehd/playlist.m3u8 +#EXTINF:-1 tvg-id="Afontovo.ru",Афонтово (Красноярск) (1080p) [Geo-blocked] +http://xstream.afontovo.ru/afontovo_ya.m3u8 +#EXTINF:-1 tvg-id="Bashkortostan24.ru",Башкортостан 24 (1080p) +http://live.gtrk.tv/hls/b24-hls.m3u8 +#EXTINF:-1 tvg-id="Bashkortostan24.ru",Башкортостан 24 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/bashkortostan24/bashkortostan240.m3u8 +#EXTINF:-1 tvg-id="Belgorod24.ru",Белгород 24 (1080p) +http://belnovosti.cdn.easyhoster.ru:8080/stream.m3u8 +#EXTINF:-1 tvg-id="BelRos.ru",БелРос (576p) +http://live2.mediacdn.ru/sr1/tro/playlist.m3u8 +#EXTINF:-1 tvg-id="Bober.ru",Бобер (576p) [Not 24/7] +https://sc.id-tv.kz/bober.m3u8 +#EXTINF:-1 tvg-id="BolshayaAziya.ru",Большая Азия (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/bigasia/bigasia0.m3u8 +#EXTINF:-1 tvg-id="",БСТ (Башкирское спутниковое телевидение) (576p) +https://bsttv.bonus-tv.ru/cdn/bst/playlist.m3u8 +#EXTINF:-1 tvg-id="Vera24.ru",Вера 24 (720p) [Timeout] +http://62.32.67.187:1935/WEB_Vera24/Vera24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VestnikNadymaPlus2.ru",Вестник Надыма +2 (720p) [Not 24/7] +http://live-trknadym.cdnvideo.ru/trknadym-pub/trknadym.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Vetta24.ru",Ветта 24 (Пермь) (576p) [Not 24/7] +http://serv24.vintera.tv:8081/vetta/vetta_office/playlist.m3u8 +#EXTINF:-1 tvg-id="VechernyayaMoskva.ru",Вечерняя Москва (1080p) [Not 24/7] +https://vmvideo.gcdn.co/streams/1503_161/playlist.m3u8 +#EXTINF:-1 tvg-id="VmesteRF.ru",Вместе-РФ (1080p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/vmesterf/index.m3u8 +#EXTINF:-1 tvg-id="VmesteRF.ru",Вместе-РФ (1080p) [Geo-blocked] +http://uiptv.do.am/1ufc/118056781/playlist.m3u8 +#EXTINF:-1 tvg-id="Volgograd1.ru",Волгоград 1 (576p) [Offline] +http://213.234.30.38/Live/1000k/stream.m3u8 +#EXTINF:-1 tvg-id="Volgograd1.ru",Волгоград 1 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/volgograd1/volgograd10.m3u8 +#EXTINF:-1 tvg-id="Vremya.ru",Время (576p) +http://91.185.3.218:4000/play/607 +#EXTINF:-1 tvg-id="",ВТВ Плюс (Херсон) (576p) +http://193.107.128.8:8552/play/a007 +#EXTINF:-1 tvg-id="",ВТВ Плюс (Херсон) (576p) +http://iptv.rubintele.com:8552/play/a007 +#EXTINF:-1 tvg-id="GALTV.ru",ГАЛ ТВ (576p) [Offline] +http://watcher-node5.apsny.camera/tv_gal_tv_hd_online/index.m3u8 +#EXTINF:-1 tvg-id="",Городской телеканал (Ярославль) (576p) +http://www.gtk.tv/hls/gtyar.m3u8 +#EXTINF:-1 tvg-id="Guberniya33.ru",Губерния 33 (Владимир) (360p) +https://live-trc33.cdnvideo.ru/trc33/trc33.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Губерния (Самара) (576p) +http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Dagestan.ru",Дагестан (1080p) +https://dagestan.mediacdn.ru/cdn/dagestan/playlist.m3u8 +#EXTINF:-1 tvg-id="DayvingTV.ru",Дайвинг.TV (720p) [Geo-blocked] +https://strm.yandex.ru/kal/diving/diving0.m3u8 +#EXTINF:-1 tvg-id="Dialogiorybalke.ru",Диалоги о рыбалке (1080p) [Offline] +http://strm.yandex.ru/kal/dialogi/dialogi0.m3u8 +#EXTINF:-1 tvg-id="Dozhd.ru",Дождь (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/tvrain/tvrain0.m3u8 +#EXTINF:-1 tvg-id="Doktor.ru",Доктор (720p) [Not 24/7] +http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/512/index.m3u8 +#EXTINF:-1 tvg-id="",Дом кино (576p) +http://91.185.3.218:4000/play/606 +#EXTINF:-1 tvg-id="DomKinoPremium.ru",Дом Кино Премиум (1080p) [Not 24/7] +https://sc.id-tv.kz/domkino_hd.m3u8 +#EXTINF:-1 tvg-id="",Дом кино Премиум (1080p) [Offline] +http://87.247.44.26/btv/SWM/Dom_kino_Prem/Dom_kino_Prem.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (480p) +http://ott-cdn.ucom.am/s88/index.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (576p) [Timeout] +http://31.128.159.41:8080/domashniy/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Дорама (480p) +http://ott-cdn.ucom.am/s95/index.m3u8 +#EXTINF:-1 tvg-id="",Дорама (1080p) [Not 24/7] +https://sc.id-tv.kz/dorama_hd.m3u8 +#EXTINF:-1 tvg-id="Evraziya.ru",Евразия (Орск) (720p) +http://infochhdcdn.trkeurasia.ru/orsk-infochhd/infochhd/playlist.m3u8 +#EXTINF:-1 tvg-id="Evraziya.ru",Евразия (Орск) (720p) +https://infochh.trkeurasia.ru/hlsinfoch/infochhd.m3u8 +#EXTINF:-1 tvg-id="Evronovosti.ru" status="online",Евроновости (540p) +http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist.m3u8 +#EXTINF:-1 tvg-id="Evronovosti.ru",Евроновости (720p) [Offline] +https://strm.yandex.ru/kal/euronews_supres/euronews_supres0.m3u8 +#EXTINF:-1 tvg-id="Enisey.ru",Енисей (1080p) [Not 24/7] +http://hls-eniseytv.cdnvideo.ru/eniseytv/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Жар Птица (404p) [Geo-blocked] +http://streamer.rtcommufa.ru:1935/ptica/ptica1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Жар Птица (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/firebird/firebird0.m3u8 +#EXTINF:-1 tvg-id="",Жара (576p) [Not 24/7] +http://185.161.224.216/dash/JaraTv_SD.ism/playlist.mpd +#EXTINF:-1 tvg-id="Zagorodnyy.ru",Загородный (480p) +http://ott-cdn.ucom.am/s31/index.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (480p) +http://ott-cdn.ucom.am/s85/index.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (1080p) [Not 24/7] +https://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooTV.ru",Зоо ТВ (480p) +http://ott-cdn.ucom.am/s92/index.m3u8 +#EXTINF:-1 tvg-id="",Известия (720p) +https://hls-igi.cdnvideo.ru/igi/igi_sq/playlist.m3u8 +#EXTINF:-1 tvg-id="",Известия (1080p) +http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8 +#EXTINF:-1 tvg-id="",Индийское кино (576p) [Not 24/7] +https://sc.id-tv.kz/Indiiskoe_kino.m3u8 +#EXTINF:-1 tvg-id="",История (480p) +http://ott-cdn.ucom.am/s40/index.m3u8 +#EXTINF:-1 tvg-id="",К16 (Саров) (406p) [Not 24/7] +http://serv25.vintera.tv:8081/test/k16/playlist.m3u8 +#EXTINF:-1 tvg-id="KabbalaTV.ru",Каббала ТВ (360p) [Not 24/7] +https://edge2.uk.kab.tv/live/tvrus-rus-medium/playlist.m3u8 +#EXTINF:-1 tvg-id="Kavkaz24.ru",Кавказ 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/kavkaz24_supres/kavkaz24_supres0.m3u8 +#EXTINF:-1 tvg-id="KarapuzTV.ru",Карапуз ТВ (1080p) [Offline] +https://karapuztv.fenixplustv.xyz/content/33418/index.m3u8 +#EXTINF:-1 tvg-id="Karusel.ru",Карусель (576p) +http://91.185.3.218:4000/play/604 +#EXTINF:-1 tvg-id="",Кинокомедия (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinokomediya_hd.m3u8 +#EXTINF:-1 tvg-id="Kinomiks.ru",Киномикс (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinomix_hd.m3u8 +#EXTINF:-1 tvg-id="",Кинопремьера (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinopremiera_hd.m3u8 +#EXTINF:-1 tvg-id="Kinosvidanie.ru",Киносвидание (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinosvidanie_hd.m3u8 +#EXTINF:-1 tvg-id="",Киносемья (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinosemiya_hd.m3u8 +#EXTINF:-1 tvg-id="Kinohit.ru",Кинохит (404p) [Not 24/7] +https://sc.id-tv.kz/Kinohit_hd.m3u8 +#EXTINF:-1 tvg-id="KlassikaKino.ru",Классика Кино (720p) [Geo-blocked] +https://strm.yandex.ru/kal/kinoclassic/kinoclassic0.m3u8 +#EXTINF:-1 tvg-id="Komediynoe.ru",Комедийное (540p) [Timeout] +http://185.97.150.19:8082/2402 +#EXTINF:-1 tvg-id="Komediya.ru",Комедия (576p) [Not 24/7] +http://188.40.68.167/russia/komediya/playlist.m3u8 +#EXTINF:-1 tvg-id="",Конный Мир (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru/konnyimir/playlist.m3u8 +#EXTINF:-1 tvg-id="",Красная линия (480p) +https://kprf-htlive.cdn.ngenix.net/live/stream_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KrasnogorskTV.ru",Красногорск ТВ (480p) [Not 24/7] +http://live-krtv.cdnvideo.ru/krtv/krtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KrikTV.ru",Крик-ТВ (576p) [Geo-blocked] +https://strm.yandex.ru/kal/krik_tv/krik_tv0.m3u8 +#EXTINF:-1 tvg-id="Krym24.ru",Крым 24 (540p) [Not 24/7] +http://mr2live.1tvcrimea.ru:8080/24tvcrimea.m3u8 +#EXTINF:-1 tvg-id="Kuban24Orbita.ru",Кубань 24 Орбита (576p) +https://stream.kuban24.tv:1500/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Kuzbass1.ru",Кузбасс 1 (1080p) [Not 24/7] +https://www.10kanal.ru:1443/10kanal/k24/playlist.m3u8 +#EXTINF:-1 tvg-id="",Культура (480p) +http://ott-cdn.ucom.am/s16/index.m3u8 +#EXTINF:-1 tvg-id="",Культура (576p) [Timeout] +http://uiptv.do.am/1ufc/000000005/playlist.m3u8 +#EXTINF:-1 tvg-id="",Культура (1920p) [Geo-blocked] +https://zabava-htlive.cdn.ngenix.net/hls/CH_RUSSIAK/variant.m3u8 +#EXTINF:-1 tvg-id="",Курай (576p) +https://bsttv.bonus-tv.ru/cdn/kurai/playlist.m3u8 +#EXTINF:-1 tvg-id="KFUTV.ru",КФУ ТВ (1080p) [Not 24/7] +https://cdn.universmotri.ru/live/kfu.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (480p) +http://46.46.143.222:1935/live/mp4:ldpr.stream_480p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (720p) +http://46.46.143.222:1935/live/mp4:ldpr.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Lipeckoevremya.ru",Липецкое время (576p) [Not 24/7] +http://serv25.vintera.tv:8081/liptime/liptime/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVProza.ru",ЛитКлуб ТВ Проза (720p) +http://hls-rossp.cdnvideo.ru/hls/5ace67f0dc96bf0a90d8a2b7/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVSlovo.ru",ЛитКлуб ТВ Слово (720p) +http://hls-rossp.cdnvideo.ru/hls/5ace6814e563f22e4ddc1f44/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVStihi.ru",ЛитКлуб ТВ Стихи (720p) +http://hls-rossp.cdnvideo.ru/hls/5aac88ffdc96bf05a7f78899/playlist.m3u8 +#EXTINF:-1 tvg-id="",Луч (Пуровск) (720p) [Not 24/7] +https://live.trk-luch.ru/hls/live.m3u8 +#EXTINF:-1 tvg-id="LyubimoeTV.ru",Любимое.ТВ (720p) [Geo-blocked] +https://strm.yandex.ru/kal/lovedtv/lovedtv0.m3u8 +#EXTINF:-1 tvg-id="MirPlus3.ru",Мir +3 (576p) [Not 24/7] +https://sc.id-tv.kz/Mir.m3u8 +#EXTINF:-1 tvg-id="MaturTV.ru",Матур ТВ (1080p) +https://public.streaming.matur-tv.ru/hls/h264_aac/stream.m3u8 +#EXTINF:-1 tvg-id="",Между.Net (Междуреченск) (720p) [Not 24/7] +http://212.77.128.179:8089/www_mezhdunet/mezhdunet/playlist.m3u8 +#EXTINF:-1 tvg-id="Millet.ru",Миллет (540p) [Not 24/7] +http://live.trkmillet.ru/millet/index.m3u8 +#EXTINF:-1 tvg-id="Ministerstvoidey.ru",Министерство идей (720p) +http://live-minidey.cdnvideo.ru/minidey/minidey.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Mir24.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mir24_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) [Not 24/7] +http://188.40.68.167/russia/mir24/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir.ru",Мир (1080p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir.ru",Мир (1080p) [Not 24/7] +http://uiptv.do.am/1ufc/113500247/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus2.ru",Мир +2 (540p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv2_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus4.ru",Мир +4 (540p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv3_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus7.ru",Мир +7 (540p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv7_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="",Мир Белагорья (720p) [Geo-blocked] +http://mirbelogorya.ru:8080/mirbelogorya/index.m3u8 +#EXTINF:-1 tvg-id="",Мир Белогорья (720p) [Geo-blocked] +http://live-mirbelogorya.cdnvideo.ru/mirbelogorya/mirbelogorya1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Мир Белогорья (720p) [Geo-blocked] +http://stream.tvbelgorod.ru:8080/mirbelogorya/index.m3u8 +#EXTINF:-1 tvg-id="MirSeriala.ru",Мир Сериала (576p) [Not 24/7] +http://185.161.224.216/dash/Mir_seriala_SD.ism/playlist.mpd +#EXTINF:-1 tvg-id="",Мир сериала (576p) [Not 24/7] +http://188.40.68.167/russia/mir_seriala/playlist.m3u8 +#EXTINF:-1 tvg-id="Mistoplyus.ru",Мисто плюс (480p) [Timeout] +http://93.78.206.172:8080/stream4/stream.m3u8 +#EXTINF:-1 tvg-id="Mistoplyus.ru",Мисто плюс (720p) [Timeout] +http://93.78.206.172:8080/stream5/stream.m3u8 +#EXTINF:-1 tvg-id="Mordoviya24.ru",Мордовия 24 (360p) [Not 24/7] +https://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8 +#EXTINF:-1 tvg-id="",Морской (720p) [Not 24/7] +http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/742/index.m3u8 +#EXTINF:-1 tvg-id="Moskva24.ru",Москва 24 (576p) +https://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist.m3u8 +#EXTINF:-1 tvg-id="Moskva24.ru",Москва 24 (720p) [Offline] +https://strm.yandex.ru/kal/msk24_supres/msk24_supres0.m3u8 +#EXTINF:-1 tvg-id="",Моя планета (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/master.m3u8 +#EXTINF:-1 tvg-id="MoyaPlaneta.ru",Моя Планета (576p) [Offline] +https://a3569456481-s26881.cdn.ngenix.net/live/smil:mplan.smil/index.m3u8 +#EXTINF:-1 tvg-id="MTV.ru",МТВ (Волгоград) (720p) [Not 24/7] +http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Мужское кино (1080p) [Not 24/7] +https://sc.id-tv.kz/Mujskoe_kino_hd.m3u8 +#EXTINF:-1 tvg-id="",Муз союз (576p) +http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (480p) [Timeout] +http://ott-cdn.ucom.am/s28/index.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (720p) [Offline] +https://strm.yandex.ru/kal/muztv_supres/muztv_supres0.m3u8 +#EXTINF:-1 tvg-id="MuzSoyuz.ru",МузСоюз (576p) +http://hls.tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzikaPervogo.ru",Музыка Первого (576p) +http://91.185.3.218:4000/play/608 +#EXTINF:-1 tvg-id="",Мультиландия (576p) [Geo-blocked] +http://serv30.vintera.tv:8081/detskiy/multimania20/playlist.m3u8 +#EXTINF:-1 tvg-id="Nadezhda.ru",Надежда (720p) +https://live-tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Nadezhda.ru",Надежда (720p) +https://tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Нано (540p) +http://nano.teleservice.su:8080/hls/nano.m3u8 +#EXTINF:-1 tvg-id="Nauka.ru",Наука (480p) +http://ott-cdn.ucom.am/s98/index.m3u8 +#EXTINF:-1 tvg-id="",Наш дом [Not 24/7] +http://85.234.33.60/stream/c11.m3u8 +#EXTINF:-1 tvg-id="NashaSibir.ru",Наша Сибирь (1080p) [Offline] +https://strm.yandex.ru/kal/sibir/sibir0.m3u8 +#EXTINF:-1 tvg-id="",Наша Сибирь / Кемерово (480p) [Not 24/7] +https://strm.yandex.ru/kal/sibir/sibir0_169_480p.json/index-v1-a1.m3u8 +#EXTINF:-1 tvg-id="NasheKrutoeHD.ru",Наше Крутое HD (1080p) [Not 24/7] +http://ba5729d5.krasnafhg.ru/iptv/EAEWFFWBXPVVLY/915/index.m3u8 +#EXTINF:-1 tvg-id="NasheNovoeKino.ru",Наше Новое Кино [Not 24/7] +https://s1.idata.uz/stch_temp6/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",НВК Саха (1080p) [Not 24/7] +http://live-saha.cdnvideo.ru/saha/saha/playlist.m3u8 +#EXTINF:-1 tvg-id="NizhniyNovgorod24.ru",Нижний Новгород 24 (720p) [Not 24/7] +https://live-vestinn.cdnvideo.ru/vestinn/nn24-khl/playlist.m3u8 +#EXTINF:-1 tvg-id="NikaTV.ru",Ника ТВ (576p) [Not 24/7] +https://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Новое радио (1080p) +https://hls-video01.cdnvideo.ru/video01/smil:video01.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoeTV.ru",Новое ТВ (404p) [Not 24/7] +https://sc.id-tv.kz/New_Television.m3u8 +#EXTINF:-1 tvg-id="NovoeTV.ru",Новое ТВ (576p) [Not 24/7] +http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NovorossiyaTV.ru",Новороссия ТВ (720p) +http://ott.inmart.tv:8081/19/index.m3u8 +#EXTINF:-1 tvg-id="Novyymir.ru",Новый мир (406p) [Not 24/7] +http://stream.studio360.tv/nw/nw_576p/playlist.m3u8 +#EXTINF:-1 tvg-id="Noyabrsk24.ru",Ноябрьск 24 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/noyabrsk24/noyabrsk240.m3u8 +#EXTINF:-1 tvg-id="NTV.ru",НТВ (480p) +http://ott-cdn.ucom.am/s17/index.m3u8 +#EXTINF:-1 tvg-id="NTV.ru",НТВ (576p) [Timeout] +http://31.128.159.41:8080/ntv/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",НТВ Стиль (480p) +http://ott-cdn.ucom.am/s77/index.m3u8 +#EXTINF:-1 tvg-id="NTM.ru",НТМ (Народное телевидение Мордовии) (720p) [Not 24/7] +https://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",НТС (Севастополь) (1080p) [Not 24/7] +https://peqk71plnjy.a.trbcdn.net/livemaster/w4kz7pki62_nts_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="O2TV.ru",О2ТВ (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/o2/o20.m3u8 +#EXTINF:-1 tvg-id="O.ru",О! (576p) [Not 24/7] +https://sc.id-tv.kz/o.m3u8 +#EXTINF:-1 tvg-id="Oplot2.ru",Оплот 2 (1080p) +http://ott.inmart.tv:8081/17/index.m3u8 +#EXTINF:-1 tvg-id="OplotTV.ru",Оплот ТВ (1080p) +http://ott.inmart.tv:8081/54/index.m3u8 +#EXTINF:-1 tvg-id="",Остросюжетное (540p) [Timeout] +http://185.97.150.19:8082/2235 +#EXTINF:-1 tvg-id="OTV.ru",ОТВ (Одинцово) (576p) +http://185.18.4.16/live/3m/playlist.m3u8 +#EXTINF:-1 tvg-id="OTR.ru",ОТР (720p) [Offline] +https://strm.yandex.ru/kal/otr/otr0.m3u8 +#EXTINF:-1 tvg-id="OTS.ru",ОТС (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/otstv/otstv0.m3u8 +#EXTINF:-1 tvg-id="OhotnikiRybolov.ru",Охотник и Рыболов (480p) +http://ott-cdn.ucom.am/s62/index.m3u8 +#EXTINF:-1 tvg-id="OhotnikirybolovInternational.ru",Охотник и рыболов International (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/ohotnik/ohotnik0.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (480p) +http://ott-cdn.ucom.am/s14/04.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (576p) +http://91.185.3.218:4000/play/603 +#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал [Offline] +https://cdn1.mobiletv.bg/T5/perviy_kanal/perviy_kanal_794613_850k.m3u8 +#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru",Первый канал Евразия (396p) [Not 24/7] +http://stream.euroasia.lfstrm.tv/perviy_evrasia/1/index.m3u8 +#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru",Первый канал Евразия (576p) [Not 24/7] +https://sc.id-tv.kz/1KanalEvraziya.m3u8 +#EXTINF:-1 tvg-id="Pervyykrymskiy.ru",Первый крымский (540p) [Not 24/7] +http://mrlive.1tvcrimea.ru:8080/1tvcrimea.m3u8 +#EXTINF:-1 tvg-id="PervyyPskovskiy.ru",Первый Псковский (540p) [Not 24/7] +http://194.190.78.91/pskov/rewind-10800.m3u8 +#EXTINF:-1 tvg-id="Pervyyrespublikanskiy.ru",Первый республиканский (720p) +http://ott.inmart.tv:8081/18/index.m3u8 +#EXTINF:-1 tvg-id="PervyyTulskiy.ru",Первый Тульский (576p) [Not 24/7] +http://5.164.24.83/tula/1tv_low/index.m3u8 +#EXTINF:-1 tvg-id="Planeta.ru",Планета [Offline] +https://cdn1.mobiletv.bg/T5/planeta/planeta_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Pobeda.ru",Победа (576p) [Not 24/7] +https://sc.id-tv.kz/Pobeda.m3u8 +#EXTINF:-1 tvg-id="Pobeda.ru",Победа (576p) [Offline] +http://87.247.44.26/btv/SWM/Pobeda/Pobeda.m3u8 +#EXTINF:-1 tvg-id="Poehali.ru",Поехали! (576p) [Not 24/7] +https://sc.id-tv.kz/poehali.m3u8 +#EXTINF:-1 tvg-id="",Прима (1920p) +https://rt-sib-krsk-htlive.cdn.ngenix.net/hls/CH_R11_OTT_SIB_KRSK_STS/variant.m3u8 +#EXTINF:-1 tvg-id="PRNK.ru",ПРНК (720p) [Not 24/7] +http://serv25.vintera.tv:8081/1pnk/1pnk/playlist.m3u8 +#EXTINF:-1 tvg-id="",Продвижение (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/prodvizheniye/prodvizheniye0.m3u8 +#EXTINF:-1 tvg-id="Prosveshchenie.ru",Просвещение (540p) [Geo-blocked] +https://cdn-01.bonus-tv.ru/prosveschenie_edge/playlist.m3u8 +#EXTINF:-1 tvg-id="PyatnicaInternational.ru",Пятница! International (480p) +http://ott-cdn.ucom.am/s50/index.m3u8 +#EXTINF:-1 tvg-id="Radio10.ru",Радио 10 (1024p) [Not 24/7] +http://langate.tv/acc/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio1018.ru",Радио 101.8 (540p) +https://video.penzainform.ru/e/r1018.m3u8 +#EXTINF:-1 tvg-id="RadioGovoritMoskva.ru",Радио Говорит Москва (404p) [Not 24/7] +http://video.govoritmoskva.ru:8080/live/rufmbk-1/index.m3u8 +#EXTINF:-1 tvg-id="",Радио Говорит Москва (Веб-камера) (720p) +https://video.govoritmoskva.ru/rufm/index.m3u8 +#EXTINF:-1 tvg-id="RadioPilot.ru",Радио Пилот (720p) [Not 24/7] +https://pilotfm.ru/cam/hls/pilothd.m3u8 +#EXTINF:-1 tvg-id="",Радио России (Чувашия) (720p) [Not 24/7] +https://chgtrk.ru/pl/stream/hls/RR_720p/index.m3u8 +#EXTINF:-1 tvg-id="",радио Хит ТВ (300p) +http://lova.me/hls/hit.m3u8 +#EXTINF:-1 tvg-id="RadioShanson.ru",Радио Шансон (720p) [Not 24/7] +http://chanson-video.hostingradio.ru:8080/hls/chansonabr/live.m3u8 +#EXTINF:-1 tvg-id="RamenskoeTV.ru",Раменское ТВ (720p) [Timeout] +https://rtv.facecast.io/rtv/0.m3u8 +#EXTINF:-1 tvg-id="Ratnik.ru",Ратник (1080p) +https://online-video.rbc.ru/online/rbctv.m3u8 +#EXTINF:-1 tvg-id="Ratnik.ru",Ратник (1080p) [Geo-blocked] +http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",РБК (480p) [Timeout] +http://ott-cdn.ucom.am/s36/index.m3u8 +#EXTINF:-1 tvg-id="",РБК (560p) +http://92.50.128.180/utv/1358/index.m3u8 +#EXTINF:-1 tvg-id="",РБК (576p) +http://uiptv.do.am/1ufc/701293058/playlist.m3u8 +#EXTINF:-1 tvg-id="",РБК (720p) [Geo-blocked] +https://strm.yandex.ru/kal/rbc_supres/rbc_supres0.m3u8 +#EXTINF:-1 tvg-id="Region29.ru",Регион 29 (Архангельск) (720p) [Geo-blocked] +http://live-atkmedia.cdnvideo.ru/atkmedia/atkmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="RENTV.ru",РЕН ТВ (576p) +http://ad-hls-rentv.cdnvideo.ru/ren/smil:ren.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RENTVInternational.ru",РЕН ТВ International (576p) [Not 24/7] +https://sc.id-tv.kz/RenTV.m3u8 +#EXTINF:-1 tvg-id="",РЖД ТВ (360p) [Geo-blocked] +http://hls.tva.cdnvideo.ru/tva/tva.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",РЖД ТВ (720p) [Geo-blocked] +http://hls.tva.cdnvideo.ru/tva/tvahd.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="",Родное кино (576p) [Not 24/7] +https://sc.id-tv.kz/Rodnoe_kino.m3u8 +#EXTINF:-1 tvg-id="Rodnoykanal.ru",Родной канал (720p) [Not 24/7] +https://n1.slavmir.tv/live/slavmir/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Kaluga.ru",Россия 1 (Калуга) (202p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/vgtrkrtmp/smil:kaluga_r1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1MariyEl.ru",Россия 1 (Марий Эл) (720p) [Offline] +http://gtrkmariel-live.cdnvideo.ru/gtrkmariel/gtrkmariel/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Plus6.ru",Россия 1 +6 (180p) +https://gtrkchita.ru:8081/hls/r1-chita_180p.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Plus6.ru",Россия 1 +6 (360p) +https://gtrkchita.ru:8081/hls/r1-chita_360p.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (720p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (720p) [Not 24/7] +https://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (480p) [Timeout] +http://ott-cdn.ucom.am/s21/index.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (576p) +http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (576p) [Not 24/7] +http://uiptv.do.am/1ufc/000000006/playlist.m3u8 +#EXTINF:-1 tvg-id="" status="online",Россия 24 (Н.Новгород) (576p) [Not 24/7] +https://live-vestinn.cdnvideo.ru/vestinn/vestinn/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya24Chita.ru",Россия 24 (Чита) (360p) +https://gtrkchita.ru:8081/hls/r24-chita_360p.m3u8 +#EXTINF:-1 tvg-id="Rossiya24Chita.ru",Россия 24 (Чита) (576p) +https://gtrkchita.ru:8081/hls/r24-chita_576p.m3u8 +#EXTINF:-1 tvg-id="RossiyaK.ru",Россия К (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist.m3u8 +#EXTINF:-1 tvg-id="",Россия РТР (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Россия РТР [Timeout] +https://a3569455801-s26881.cdn.ngenix.net/live/smil:rtrp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ростов-папа (1080p) +http://live-rostovpapa.cdnvideo.ru/rostovpapa/rostovpapa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="RTRPlaneta.ru",РТР-Планета (480p) +http://ott-cdn.ucom.am/s15/index.m3u8 +#EXTINF:-1 tvg-id="RusskiyDetektiv.ru",Русский Детектив (576p) [Timeout] +http://78.58.133.179:28000/play/a01t/index.m3u8 +#EXTINF:-1 tvg-id="RusskiyDetektiv.ru",Русский Детектив (576p) [Timeout] +http://193.33.88.172/rus-detective/playlist.m3u8 +#EXTINF:-1 tvg-id="RusskiySever.ru",Русский Север (Вологда) (1080p) +http://185.186.142.16/streams.rs.m3u8 +#EXTINF:-1 tvg-id="",Русский Экстрим [Timeout] +http://vid.extremtv.ru/hls_get/cameraFeed.m3u8 +#EXTINF:-1 tvg-id="Rybolov.ru",Рыболов (480p) +http://ott-cdn.ucom.am/s55/index.m3u8 +#EXTINF:-1 tvg-id="Ryzhiy.ru",Рыжий (480p) +http://ott-cdn.ucom.am/s57/index.m3u8 +#EXTINF:-1 tvg-id="Ryzhiy.ru",Рыжий (576p) [Geo-blocked] +http://serv30.vintera.tv:8081/detskiy/ryzhiy_08/playlist.m3u8 +#EXTINF:-1 tvg-id="S1.ru",С1 (Сургут) (1080p) [Not 24/7] +https://sitv.ru/hls/stv.m3u8 +#EXTINF:-1 tvg-id="Salyam.ru",Салям (576p) +https://bsttv.bonus-tv.ru/cdn/salyam/playlist.m3u8 +#EXTINF:-1 tvg-id="SamaraGIS.ru",Самара ГИС (1080p) [Not 24/7] +http://45.67.57.9:8080/new/new/playlist.m3u8 +#EXTINF:-1 tvg-id="Saratov24.ru",Саратов 24 (1080p) [Not 24/7] +https://saratov24.tv/online/playlist.php +#EXTINF:-1 tvg-id="Sarafan.ru",Сарафан (576p) [Not 24/7] +http://195.26.83.96:7024/play/82 +#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) +https://live2.mediacdn.ru/sr1/sever-mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) +https://live2.mediacdn.ru/sr1/sever/playlist.m3u8 +#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) +https://live.mediacdn.ru/sr1/sever/playlist.m3u8 +#EXTINF:-1 tvg-id="SelengaTV.ru",Селенга ТВ (576p) +http://90.188.37.86/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Siesta.ru",Сиеста (720p) [Not 24/7] +https://1hdru-hls-otcnet.cdnvideo.ru/siesta/index.m3u8 +#EXTINF:-1 tvg-id="SmaylikTV.ru",Смайлик ТВ (720p) [Not 24/7] +http://62.32.67.187:1935/WEB_Smilik/ngrp:Smilik.stream-adaptive/playlist.m3u8 +#EXTINF:-1 tvg-id="SmaylikTV.ru",Смайлик ТВ (720p) [Timeout] +http://62.32.67.187:1935/WEB_Smilik/Smilik.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SolnechnogorskoeTV.ru",Солнечногорское ТВ (360p) [Geo-blocked] +http://hls.solntv.cdnvideo.ru/solntv/solntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Soyuz.ru",Союз (576p) +http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz/soyuz/playlist.m3u8 +#EXTINF:-1 tvg-id="Soyuz.ru",Союз (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/soyuz/soyuz0.m3u8 +#EXTINF:-1 tvg-id="Spas.ru",СПАС (576p) +http://spas.mediacdn.ru/cdn/spas/playlist.m3u8 +#EXTINF:-1 tvg-id="Start.ru",Старт (1080p) [Offline] +https://strm.yandex.ru/kal/start/start0.m3u8 +#EXTINF:-1 tvg-id="STVKazahstan.ru",СТВ Казахстан (576p) [Not 24/7] +https://sc.id-tv.kz/STV.m3u8 +#EXTINF:-1 tvg-id="",Страна FM (720p) [Not 24/7] +http://live.stranafm.cdnvideo.ru/stranafm/stranafm_hd.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="STRK.ru",СТРК (720p) [Not 24/7] +http://sochinskayatrk.ru/hdtv/hls/strc_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="STS.ru",СТС (480p) +http://ott-cdn.ucom.am/s52/04.m3u8 +#EXTINF:-1 tvg-id="STS.ru",СТС (576p) [Not 24/7] +https://sc.id-tv.kz/STS.m3u8 +#EXTINF:-1 tvg-id="Surgut24.ru",Сургут 24 (720p) [Not 24/7] +https://video1.in-news.ru/c24/index.m3u8 +#EXTINF:-1 tvg-id="",Такт/Рен ТВ (Курск) (294p) [Not 24/7] +http://109.194.62.29:8080 +#EXTINF:-1 tvg-id="Tamyr.ru",Тамыр (576p) +https://bsttv.bonus-tv.ru/cdn/tamyr/playlist.m3u8 +#EXTINF:-1 tvg-id="Tatarstan24.ru",Татарстан24 (1080p) [Not 24/7] +http://stream.efir24.tv:1935/live/efir24tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TBN.ru",ТБН (720p) [Timeout] +http://62.32.67.187:1935/WEB_TBN/TBN.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",ТВ Европа [Offline] +https://cdn1.mobiletv.bg/T10/tvevropa/tvevropa_794613_850k.m3u8 +#EXTINF:-1 tvg-id="TVKvarc.ru",ТВ Кварц (576p) [Not 24/7] +https://video.quartztelecom.ru:18080/hls/2386168/71fe656b993c510f39a5/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCentr.ru",ТВ Центр (432p) +http://uiptv.do.am/1ufc/000000009/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCentr.ru",ТВ Центр (480p) +http://ott-cdn.ucom.am/s54/index.m3u8 +#EXTINF:-1 tvg-id="TVEkstra.ru",ТВ Экстра (720p) +http://live-1.otcnet.ru/tvextra720b/index.m3u8 +#EXTINF:-1 tvg-id="TV3.ru",ТВ-3 (1080p) [Timeout] +http://bar-timeshift-inet.ll-bar.zsttk.ru:8080/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVK24.ru",ТВК 24 (576p) +http://air.tvk6.ru/tvk24/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR24.ru",ТВР24 (Сергиев Посад) (1080p) [Not 24/7] +https://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTUR.ru",ТВТУР (720p) [Geo-blocked] +https://strm.yandex.ru/kal/tvtour/tvtour0.m3u8 +#EXTINF:-1 tvg-id="TVCMezhdunarodnyy.ru",ТВЦ (Международный) (576p) [Timeout] +http://ad-hls-tvc.cdnvideo.ru/tvc-p222/smil:tvc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TDK.ru",ТДК (576p) [Not 24/7] +https://sc.id-tv.kz/TDK-42.m3u8 +#EXTINF:-1 tvg-id="Telekanal86.ru",Телеканал 86 (Сургут) (1080p) [Not 24/7] +https://sitv.ru/hls/s86.m3u8 +#EXTINF:-1 tvg-id="Telecafe.ru",Телекафе (576p) +http://91.185.3.218:4000/play/605 +#EXTINF:-1 tvg-id="Teleputeshestviya.ru",Телепутешествия (480p) +http://ott-cdn.ucom.am/s71/index.m3u8 +#EXTINF:-1 tvg-id="",Телестанция МИР (Новосибирск) (720p) [Not 24/7] +http://serv30.vintera.tv:8081/stanciya_mir/mir/playlist.m3u8 +#EXTINF:-1 tvg-id="TelplyusTVAstrahan.ru",Телплюс ТВ (Астрахань) (360p) [Not 24/7] +http://streaming.astrakhan.ru/telplushd/playlist.m3u8 +#EXTINF:-1 tvg-id="Tivikom.ru",Тивиком (Улан-Удэ) (1080p) [Not 24/7] +http://tvcom.stream.intelema.ru/tvcom/studio/playlist.m3u8 +#EXTINF:-1 tvg-id="TKAlmaznyykray.ru",ТК Алмазный край (576p) +https://stream.almaz-media.tv:8080/hls/576.m3u8 +#EXTINF:-1 tvg-id="",ТКР (Рязань) (1080p) [Not 24/7] +http://live.tkr.cdnvideo.ru/tkr/tkr.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TNVPlaneta.ru",ТНВ-Планета (576p) +http://tnv.bonus-tv.ru/cdn/tnvplanet/playlist.m3u8 +#EXTINF:-1 tvg-id="TNT4.ru",ТНТ4 (576p) [Not 24/7] +https://sc.id-tv.kz/tnt4.m3u8 +#EXTINF:-1 tvg-id="TNTInternational.ru",ТНТ International (480p) +http://ott-cdn.ucom.am/s19/04.m3u8 +#EXTINF:-1 tvg-id="ToyDuman.ru",Той Думан (576p) [Not 24/7] +https://sc.id-tv.kz/ToiDuman.m3u8 +#EXTINF:-1 tvg-id="Tolyatti24.ru",Тольятти 24 (720p) +http://91.234.108.26/hls-live/livepkgr/_definst_/liveevent1/vazlivestream1.m3u8 +#EXTINF:-1 tvg-id="Tonus.ru" status="online",Тонус (480p) +http://ott-cdn.ucom.am/s90/index.m3u8 +#EXTINF:-1 tvg-id="",Три Ангела (720p) +https://hls.tv.3angels.ru/stream/HQ.m3u8 +#EXTINF:-1 tvg-id="TuganTel.ru",Туган Тел (576p) [Offline] +http://195.20.196.69:1935/tugantel/tugantel1/playlist.m3u8 +#EXTINF:-1 tvg-id="TuganTel.ru",Туган Тел (576p) [Offline] +http://streamer.rtcommufa.ru:1935/tugantel/tugantel1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Туран ТВ (576p) [Not 24/7] +https://sc.id-tv.kz/TuranTV.m3u8 +#EXTINF:-1 tvg-id="Udmurtiya.ru",Удмуртия (404p) [Offline] +https://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="UchalyTV.ru",Учалы ТВ (576p) [Not 24/7] +http://live-uchalytv.cdnvideo.ru/uchalytv/uchalytv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Futbol.ru",Футбол (480p) [Timeout] +http://ott-cdn.ucom.am/s41/index.m3u8 +#EXTINF:-1 tvg-id="",Хабар 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar_24.m3u8 +#EXTINF:-1 tvg-id="",Хабар (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar.m3u8 +#EXTINF:-1 tvg-id="",Хузур ТВ (720p) [Not 24/7] +https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Центральное телевидение (ЦТВ) (480p) [Timeout] +http://ott-cdn.ucom.am/s20/index.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (480p) +http://ott-cdn.ucom.am/s43/index.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (512p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] +http://uiptv.do.am/1ufc/602079679/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] +https://hls-shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Шокирующее (540p) [Timeout] +http://185.97.150.19:8082/2401 +#EXTINF:-1 tvg-id="ShchyolkovskoeTV.ru",Щёлковское ТВ (576p) [Not 24/7] +http://stream0.tv41.ru/live.m3u8 +#EXTINF:-1 tvg-id="EhoTV.ru",Эхо TV (Рязань) (576p) [Not 24/7] +https://live-echotv.cdnvideo.ru/echotv/echotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Yu.ru",Ю (576p) [Offline] +https://strm.yandex.ru/kal/utv/utv0.m3u8 +#EXTINF:-1 tvg-id="YuvelirochkaTV.ru",Ювелирочка ТВ (576p) +http://live-uvelirochka.cdnvideo.ru/uvelirochka/uvelirochka_720p3/playlist.m3u8 +#EXTINF:-1 tvg-id="Yugra.ru",Югра (360p) +http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Yurgan.ru",Юрган (1080p) +http://yurgan.bonus-tv.ru/cdn/yurgan/playlist.m3u8 +#EXTINF:-1 tvg-id="YuTV.ru",ЮТВ (Чебоксары) (432p) [Not 24/7] +http://serv24.vintera.tv:8081/utv/Stream/playlist.m3u8 diff --git a/streams/ru_catcast.m3u b/streams/ru_catcast.m3u new file mode 100644 index 000000000..43eff2f1e --- /dev/null +++ b/streams/ru_catcast.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Eurodance90HD.ru",Eurodance 90 HD (1080p) [Not 24/7] +https://eurodance90.catcast.tv/content/36987/index.m3u8 +#EXTINF:-1 tvg-id="KinderTV.ua",FilmTV Kinder (400p) [Not 24/7] +https://v2.catcast.tv/content/38144/index.m3u8 +#EXTINF:-1 tvg-id="FreshTV.am",Fresh TV (720p) +https://freshtv.catcast.tv/content/33718/index.m3u8 +#EXTINF:-1 tvg-id="GravityFouls.ru",Gravity Fouls (480p) [Not 24/7] +https://v3.catcast.tv/content/38105/index.m3u8 +#EXTINF:-1 tvg-id="MetalTV.ru",Metal TV (360p) [Not 24/7] +https://v2.catcast.tv/content/33816/index.m3u8 +#EXTINF:-1 tvg-id="",Кинозал (VHS 90s) (720p) [Not 24/7] +https://v2.catcast.tv/content/37925/index.m3u8 +#EXTINF:-1 tvg-id="",Премьера (304p) [Not 24/7] +https://v2.catcast.tv/content/39161/index.m3u8 +#EXTINF:-1 tvg-id="SSSRTV.ru",СССР ТВ (464p) [Not 24/7] +https://v2.catcast.tv/content/38821/index.m3u8 +#EXTINF:-1 tvg-id="Uzhastik.ru",Ужастик (300p) [Not 24/7] +https://v2.catcast.tv/content/38896/index.m3u8 +#EXTINF:-1 tvg-id="FantastikaSciFi.ru",Фантастика Sci-Fi (272p) [Not 24/7] +https://v2.catcast.tv/content/38801/index.m3u8 diff --git a/streams/ru_okkotv.m3u b/streams/ru_okkotv.m3u new file mode 100644 index 000000000..477b61856 --- /dev/null +++ b/streams/ru_okkotv.m3u @@ -0,0 +1,91 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",5 канал (480p) +https://okkotv-live.cdnvideo.ru/channel/5_OTT.m3u8 +#EXTINF:-1 tvg-id="BlackRussia.us",.black Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_Turbo.m3u8 +#EXTINF:-1 tvg-id="RedRussia.us",.red Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_ET.m3u8 +#EXTINF:-1 tvg-id="SciFiRussia.us",.sci-fi Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_SciFi.m3u8 +#EXTINF:-1 tvg-id="A1.ru",A1 (720p) +https://okkotv-live.cdnvideo.ru/channel/A1_HD.m3u8 +#EXTINF:-1 tvg-id="A2.ru",A2 (1080p) +https://okkotv-live.cdnvideo.ru/channel/A2_HD.m3u8 +#EXTINF:-1 tvg-id="AmediaHit.ru",Amedia Hit (1080p) +https://okkotv-live.cdnvideo.ru/channel/Amedia_Hit_HD.m3u8 +#EXTINF:-1 tvg-id="BabyTV.ru",Baby TV (480p) [Not 24/7] +http://okkotv-live.cdnvideo.ru/channel/BabyTV.m3u8 +#EXTINF:-1 tvg-id="FoxLifeRussia.us",Fox Life Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Fox_Life_HD.m3u8 +#EXTINF:-1 tvg-id="FoxRussia.us",Fox Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Fox_HD.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicRussia.us",National Geographic (1080p) +https://okkotv-live.cdnvideo.ru/channel/NGC_HD.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us",National Geographic Wild Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/NGC_Wild_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000ActionRussia.se",TV1000 Action Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_Action_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000HDRussia.se",TV1000 Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000RusskoeKino.se",TV1000 Русское кино (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_Rus_Kino_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatExploreRussia.se",Viasat Explore Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_Explore_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatHistoryRussia.se",Viasat History Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_History_ad_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatNatureRussia.se",Viasat Nature Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_Nature_ad_HD.m3u8 +#EXTINF:-1 tvg-id="ViPComedyRussia.se",ViP Comedy Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Comedy_HD.m3u8 +#EXTINF:-1 tvg-id="VIPMegahitRussia.se",VIP Megahit Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Megahit_HD.m3u8 +#EXTINF:-1 tvg-id="VIPPremiereRussia.se",VIP Premiere Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Premiere_HD.m3u8 +#EXTINF:-1 tvg-id="VIPSerialRussia.se",VIP Serial Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Serial_HD.m3u8 +#EXTINF:-1 tvg-id="Dikayaohota.ru",Дикая охота (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dikaya_Ohota_HD.m3u8 +#EXTINF:-1 tvg-id="Dikayarybalka.ru",Дикая рыбалка (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dikaya_Rybalka_HD.m3u8 +#EXTINF:-1 tvg-id="",Дикий (480p) +https://okkotv-live.cdnvideo.ru/channel/Dikiy.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dom_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (480p) +https://okkotv-live.cdnvideo.ru/channel/Zvezda_SD.m3u8 +#EXTINF:-1 tvg-id="",Известия (1080p) +https://okkotv-live.cdnvideo.ru/channel/Izvestiya_HD_2.m3u8 +#EXTINF:-1 tvg-id="Kaleydskop.ru",Калейдскоп (480p) +https://okkotv-live.cdnvideo.ru/channel/Kaleidoskop.m3u8 +#EXTINF:-1 tvg-id="KanalDisney.us",Канал Disney (480p) +https://okkotv-live.cdnvideo.ru/channel/Disney.m3u8 +#EXTINF:-1 tvg-id="Mir.ru",Мир (480p) +https://okkotv-live.cdnvideo.ru/channel/Mir_OTT.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (480p) +https://okkotv-live.cdnvideo.ru/channel/MuzTV.m3u8 +#EXTINF:-1 tvg-id="",Мультиландия (1080p) +https://okkotv-live.cdnvideo.ru/channel/Multilandia_HD.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (1080p) +https://okkotv-live.cdnvideo.ru/channel/Pervii_Kanal_OTT_HD.m3u8 +#EXTINF:-1 tvg-id="RENTV.ru",РЕН ТВ (1080p) +https://okkotv-live.cdnvideo.ru/channel/Rentv_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (1080p) +https://okkotv-live.cdnvideo.ru/channel/Russia1HD.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (480p) +https://okkotv-live.cdnvideo.ru/channel/Russia24.m3u8 +#EXTINF:-1 tvg-id="RossiyaK.ru",Россия К (480p) +https://okkotv-live.cdnvideo.ru/channel/Russia_K_SD.m3u8 +#EXTINF:-1 tvg-id="Spas.ru",СПАС (480p) +https://okkotv-live.cdnvideo.ru/channel/Spas.m3u8 +#EXTINF:-1 tvg-id="STS.ru",СТС (1080p) +https://okkotv-live.cdnvideo.ru/channel/CTC_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="CTCKids.ru",СТС Kids (1080p) +https://okkotv-live.cdnvideo.ru/channel/CTC_Kids_HD.m3u8 +#EXTINF:-1 tvg-id="STSLove.ru",СТС Love (480p) +https://okkotv-live.cdnvideo.ru/channel/CTC_Love_OTT_2.m3u8 +#EXTINF:-1 tvg-id="",Феникс Кино (480p) +https://okkotv-live.cdnvideo.ru/channel/Phoenix.m3u8 +#EXTINF:-1 tvg-id="Che.ru",Че (480p) +https://okkotv-live.cdnvideo.ru/channel/Che_OTT_2.m3u8 +#EXTINF:-1 tvg-id="Yu.ru",Ю (480p) +https://okkotv-live.cdnvideo.ru/channel/Yu_OTT.m3u8 diff --git a/streams/rw.m3u b/streams/rw.m3u new file mode 100644 index 000000000..f0702acfe --- /dev/null +++ b/streams/rw.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KC2.rw",KC2 (720p) [Not 24/7] +http://197.243.19.131:1935/kc2/kc2/chunklist.m3u8 +#EXTINF:-1 tvg-id="KC2.rw",KC2 (720p) [Not 24/7] +https://5c46fa289c89f.streamlock.net/kc2/kc2/chunklist.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] +http://197.243.19.131:1935/rtv/rtv/chunklist.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] +http://197.243.19.131:1935/rtv/rtv/chunklist_w2093872577.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] +https://5c46fa289c89f.streamlock.net/rtv/rtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (576p) [Not 24/7] +https://1600706787.rsc.cdn77.org/1600706787/tracks-v1a1/mono.m3u8 diff --git a/streams/sa.m3u b/streams/sa.m3u new file mode 100644 index 000000000..a64563cbf --- /dev/null +++ b/streams/sa.m3u @@ -0,0 +1,111 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AhluAlQuranTV.sa",Ahlu Al Quran TV (576p) +https://ahlualquran.tv/live/ysfbfBvecZ/SaNVjgaYnE/8.m3u8 +#EXTINF:-1 tvg-id="AlEkhbariya.sa",Al Ekhbariya (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Ekhbariyah +#EXTINF:-1 tvg-id="ALHOKAIRGroupTV.sa",AL HOKAIR Group TV (576p) +http://82.212.74.3:8000/live/7513.m3u8 +#EXTINF:-1 tvg-id="AlKhalij.sa",Al Khalij (720p) +https://mn-nl.mncdn.com/khalij/khalij/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_quran/hls1/saudi_quran.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (720p) [Not 24/7] +http://m.live.net.sa:1935/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Quran_TV +#EXTINF:-1 tvg-id="AlSaudiya.sa",Al Saudiya (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_tv/hls1/saudi_tv.m3u8 +#EXTINF:-1 tvg-id="AlSaudiya.sa",Al Saudiya (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Saudi1_TV +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_sunnah/hls1/saudi_sunnah.m3u8 +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (720p) [Not 24/7] +http://m.live.net.sa:1935/live/sunnah/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Sunnah_TV +#EXTINF:-1 tvg-id="AlResalah.sa",Al-Resalah (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-risala.m3u8 +#EXTINF:-1 tvg-id="AlResalah.sa",Al-Resalah (1080p) [Geo-blocked] +https://shls-rotana-alresalah-prod-dub.shahid.net/out/v1/936b89606b5e48db8ca28caa40adc886/index.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) +https://shls-asharq-prod-dub.shahid.net/out/v1/3b6b4902cf8747a28619411239584002/index.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) +https://svs.itworkscdn.net/bloomberarlive/bloomberg.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) [Offline] +https://bcsecurelivehls-i.akamaihd.net/hls/live/1021447/6203311941001/index.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa",Asharq (Portrait) (1280p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/VERTICAL_1@301860/master.m3u8 +#EXTINF:-1 tvg-id="AtfalWaMawaheb.sa",Atfal Wa Mawaheb (1080p) +https://5d658d7e9f562.streamlock.net/atfal1.com/atfal2/playlist.m3u8 +#EXTINF:-1 tvg-id="Beity.sa",Beity [Offline] +http://82.212.74.2:8000/live/7312.m3u8 +#EXTINF:-1 tvg-id="ENTV.sa",EN TV [Timeout] +http://82.212.74.100:8000/live/8130.m3u8 +#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Adkar Nawn) (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_iPASlANiI8 +#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Surat Stream 1) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=hoKsZRXS7vo +#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Surat Stream 2) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=plqRs-gWAOk +#EXTINF:-1 tvg-id="Iqraa.sa",Iqraa (576p) [Not 24/7] +https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar1.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraaEuropeAfrica.sa",Iqraa Europe Africa (576p) [Not 24/7] +https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar2.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JascoEventsTV.sa",Jasco Events TV (576p) [Offline] +http://82.212.74.100:8000/live/hls/8131.m3u8 +#EXTINF:-1 tvg-id="KaifTV.sa",Kaif TV (576p) [Not 24/7] +http://82.212.74.2:8000/live/hls/7311.m3u8 +#EXTINF:-1 tvg-id="KSASports1.sa",KSA Sports 1 (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport1 +#EXTINF:-1 tvg-id="KSASports2.sa",KSA Sports 2 (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport2 +#EXTINF:-1 tvg-id="",LBC (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-lbc.m3u8 +#EXTINF:-1 tvg-id="MakkahTV.sa",Makkah TV (480p) +http://makkahtv.srfms.com:1935/makkahtv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="MakkahTV.sa",Makkah TV (480p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/makkahtv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="PanoramaFM.sa",Panorama FM (1080p) +https://shls-panoramafm-prod-dub.shahid.net/out/v1/66262e420d824475aaae794dc2d69f14/index.m3u8 +#EXTINF:-1 tvg-id="RotanaCinema.sa",Rotana Cinema (1080p) +https://shls-rotanacinema-egy-prod-dub.shahid.net/out/v1/c39c0ecbcbdb46e890e91106776397a8/index.m3u8 +#EXTINF:-1 tvg-id="",Rotana Cinema (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-cinema.m3u8 +#EXTINF:-1 tvg-id="RotanaCinemaKSA.sa",Rotana Cinema KSA (1080p) +https://shls-rotanacinema-ksa-prod-dub.shahid.net/out/v1/6cee1c57ea7841e697eb15cefc98e0a6/index.m3u8 +#EXTINF:-1 tvg-id="",Rotana Classic (1080p) +https://shls-rotanaclassic-prod-dub.shahid.net/out/v1/4eebed211c8441228321b4f67a46c5a5/index.m3u8 +#EXTINF:-1 tvg-id="",Rotana Classic (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-classical.m3u8 +#EXTINF:-1 tvg-id="",Rotana Comedy (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-comedy.m3u8 +#EXTINF:-1 tvg-id="",Rotana Drama (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-drama.m3u8 +#EXTINF:-1 tvg-id="",Rotana Drama (1080p) [Geo-blocked] +https://shls-rotanadrama-prod-dub.shahid.net/out/v1/20c617b40dc743589ecc9d08d9d3345d/index.m3u8 +#EXTINF:-1 tvg-id="",Rotana Khalijia (1080p) +https://shls-rotanakhalijia-prod-dub.shahid.net/out/v1/a639fd49db684f1b8c063d398101a888/index.m3u8 +#EXTINF:-1 tvg-id="",Rotana Khalijia (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-khaleejiya.m3u8 +#EXTINF:-1 tvg-id="RotanaKids.sa",Rotana Kids (1080p) +https://shls-rotanakids-prod-dub.shahid.net/out/v1/df6e0eb3cdc4410b98209aafc8677cef/index.m3u8 +#EXTINF:-1 tvg-id="RotanaKids.sa",Rotana Kids (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-kids.m3u8 +#EXTINF:-1 tvg-id="RotanaMusic.sa",Rotana Music (1080p) [Offline] +https://shls-rotanamusic-prod-dub.shahid.net/out/v1/edfe0095261648908a3a931b72489f3f/index.m3u8 +#EXTINF:-1 tvg-id="RotanaPlus.sa",Rotana+ (1080p) +https://shls-rotanaplus-prod-dub.shahid.net/out/v1/1fc6103458be480b96e6a574b00fe1c0/index.m3u8 +#EXTINF:-1 tvg-id="SBC.sa",SBC (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/SBC +#EXTINF:-1 tvg-id="SSC1HD.sa",SSC1 HD (1080p) +https://ssc-5-ak.akamaized.net/out/v1/6ae0a2ebab224c72ab9c298afeec8d91/index.m3u8 +#EXTINF:-1 tvg-id="SSCActionWaleed.sa",SSC Action Waleed (1080p) [Not 24/7] +https://shls-live-event2-prod-dub.shahid.net/out/v1/0456ede1a39145d98b3d8c8062ddc998/index.m3u8 +#EXTINF:-1 tvg-id="SSCActionWaleedExtra.sa",SSC Action Waleed Extra (1080p) [Not 24/7] +https://d2x08mwxhmpplo.cloudfront.net/out/v1/587631773e55495a8aa3dd4050318f6e/index.m3u8 +#EXTINF:-1 tvg-id="ThikrayatTV.sa",Thikrayat TV (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Zikrayat +#EXTINF:-1 tvg-id="WesalTV.sa",Wesal TV [Not 24/7] +http://live.noorlive.com:1935/wesal/wesal1/playlist.m3u8 +#EXTINF:-1 tvg-id="",ZAD TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOll3M-P7oKs5cSrQ9ytt6g/live diff --git a/streams/sd.m3u b/streams/sd.m3u new file mode 100644 index 000000000..b09ddc90d --- /dev/null +++ b/streams/sd.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlAlamiya2.sd",Al Alamiya 2 [Timeout] +http://82.212.74.98:8000/live/7815.m3u8 +#EXTINF:-1 tvg-id="SudanBukra.sd",Sudan Bukra (720p) [Offline] +http://live.ditve.tv:1935/sudanbukra/sudanbukra.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SudanTV.sd",Sudan TV (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/sudan_tv/hls1/sudan_tv.m3u8 diff --git a/streams/se.m3u b/streams/se.m3u new file mode 100644 index 000000000..65dcc70f1 --- /dev/null +++ b/streams/se.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AftonbladetTV.se",Aftonbladet TV (144p) +https://aftonbladetlive-lh.akamaihd.net/i/livestream01_1@182509/master.m3u8 +#EXTINF:-1 tvg-id="ATG.se",ATG (432p) +https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free.m3u8 +#EXTINF:-1 tvg-id="ATG.se",ATG (432p) +https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free_3.m3u8 +#EXTINF:-1 tvg-id="AzerbaijanNewsTV.se",Azerbaijan News TV (720p) [Not 24/7] +https://edge1.socialsmart.tv/aznews/smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DiTV.se",Di TV (720p) +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx4_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ExpressenTV.se",Expressen TV (720p) [Not 24/7] +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/chunklist_b3628000.m3u8 +#EXTINF:-1 tvg-id="ExpressenTV.se",Expressen TV (720p) [Offline] +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal10Asia.se",Kanal 10 Asia (540p) [Not 24/7] +https://cdn-kanal10.crossnet.net/kanal10/ngrp:kanal10asia_all/chunklist_w522739009_b2128000.m3u8 +#EXTINF:-1 tvg-id="MiracleChannel.se",Miracle Channel (360p) +https://yjh3p.stream.miraclechannel.com/hls/miracle1_med/index.m3u8 +#EXTINF:-1 tvg-id="MiracleChannel.se",Miracle Channel (576p) +https://yjh3p.stream.miraclechannel.com/hls/miracle1_high/index.m3u8 +#EXTINF:-1 tvg-id="OppnaKanalen.se",Oppna Kanalen (540p) +https://edg03-prd-se-ixn.solidtango.com/edge/_451iw2h_/451iw2h/playlist.m3u8 +#EXTINF:-1 tvg-id="",OPPNA KANALEN (540p) [Offline] +http://83.140.64.214/edge/_451iw2h_/451iw2h/chunklist_w348058882.m3u8 +#EXTINF:-1 tvg-id="OppnaKanalen.se",Öppna Kanalen (540p) [Offline] +http://83.140.64.214/edge/_451iw2h_/451iw2h/playlist.m3u8 +#EXTINF:-1 tvg-id="SVT2Varmland.se",SVT2 Värmland [Offline] +http://51.91.73.99:25461/sweden/PM66f7Y43H/12476 +#EXTINF:-1 tvg-id="TV4.se",TV4 (576p) [Offline] +https://lbs-aws-hls.tv4play.se/dailive/bbr-event1-p/master3404.m3u8 +#EXTINF:-1 tvg-id="TV4.se",TV4 (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791716.m3u8 +#EXTINF:-1 tvg-id="TV4Nyheterna.se",TV4Nyheterna (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791350.m3u8 +#EXTINF:-1 tvg-id="TV4SvenskPolitik.se",TV4 Svensk Politik (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791553.m3u8 +#EXTINF:-1 tvg-id="VastmanlandsTV.se",Västmanlands TV (720p) +https://edg01-prd-se-dcs.solidtango.com/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 +#EXTINF:-1 tvg-id="VastmanlandsTV.se",Västmanlands TV (720p) [Offline] +http://83.140.64.214/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 +#EXTINF:-1 tvg-id="ViPComedyRussia.se",ViP Comedy Russia (720p) [Not 24/7] +http://188.40.68.167/russia/vip_comedy/playlist.m3u8 diff --git a/streams/se_samsung.m3u b/streams/se_samsung.m3u new file mode 100644 index 000000000..68c4dc6f6 --- /dev/null +++ b/streams/se_samsung.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Euronews English (720p) [Not 24/7] +https://rakuten-euronews-1-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] +https://failarmy-international-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-13-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeSweden.us",People are Awesome Sweden (720p) [Offline] +https://jukin-peopleareawesome-2-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionSweden.es",Rakuten Action (Sweden) (720p) [Offline] +https://rakuten-action-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedySweden.es",Rakuten Comedy (Sweden) (720p) [Offline] +https://rakuten-comedy-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesSweden.es",Rakuten Documentaries (Sweden) (720p) [Offline] +https://rakuten-documentaries-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaSweden.es",Rakuten Drama (Sweden) (720p) [Not 24/7] +https://rakuten-drama-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilySweden.es",Rakuten Family (Sweden) (720p) [Offline] +https://rakuten-family-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightSweden.es",Rakuten Spotlight (Sweden) (720p) [Offline] +https://rakuten-spotlight-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraokeSweden.ca",Stingray Karaoke (Sweden) (1080p) +https://stingray-karaoke-3-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveSweden.us",The Pet Collective Sweden (720p) [Offline] +https://the-pet-collective-international-se.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/sg.m3u b/streams/sg.m3u new file mode 100644 index 000000000..7681ec6c4 --- /dev/null +++ b/streams/sg.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Channel5.sg",Channel 5 [Geo-blocked] +https://ddftztnzt6o79.cloudfront.net/hls/clr4ctv_okto/master.m3u8 +#EXTINF:-1 tvg-id="Channel5.sg",Channel 5 [Geo-blocked] +https://dlau142f16b92.cloudfront.net/hls/clr4ctv_ch5/master.m3u8 +#EXTINF:-1 tvg-id="Channel8.sg",Channel 8 [Geo-blocked] +https://d34e90s3s13i7n.cloudfront.net/hls/clr4ctv_ch8/master.m3u8 +#EXTINF:-1 tvg-id="CNA.sg",CNA (1080p) +https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 +#EXTINF:-1 tvg-id="CNA.sg",CNA (1080p) [Geo-blocked] +https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 +#EXTINF:-1 tvg-id="Suria.sg",Suria (720p) [Offline] +http://50.7.161.82:8278/streams/d/Suria/playlist.m3u8 +#EXTINF:-1 tvg-id="Suria.sg",Suria [Geo-blocked] +https://d11h6a6nhl9kj9.cloudfront.net/hls/clr4ctv_suria/master.m3u8 +#EXTINF:-1 tvg-id="Vasantham.sg",Vasantham [Geo-blocked] +https://d39v9xz8f7n8tk.cloudfront.net/hls/clr4ctv_vsnthm/master.m3u8 diff --git a/streams/si.m3u b/streams/si.m3u new file mode 100644 index 000000000..99efb231e --- /dev/null +++ b/streams/si.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="GTV.si",GTV (360p) [Not 24/7] +http://91.220.221.60/gtv_hls/gtv_03.m3u8 +#EXTINF:-1 tvg-id="MMC.si",MMC (720p) [Not 24/7] +https://29-rtvslo-tv-mmc-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKOPER.si",TV Koper-Capodistria (720p) +https://27-rtvslo-tv-kp-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV MARIBOR (720p) [Not 24/7] +https://25-rtvslo-tv-mb-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV SLOVENIJA 1 (1080p) +https://31-rtvslo-tv-slo1-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV SLOVENIJA 2 (720p) +https://21-rtvslo-tv-slo2-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV SLOVENIJA 3 (720p) +https://16-rtvslo-tv-slo3-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="tvdx.si",TVDX (486p) [Not 24/7] +http://5ca49f2417d90.streamlock.net/live/dolnykubin1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Veseljak TV (1080p) +https://stream.veseljak.tv/hls/stream.m3u8 diff --git a/streams/sk.m3u b/streams/sk.m3u new file mode 100644 index 000000000..0389e1168 --- /dev/null +++ b/streams/sk.m3u @@ -0,0 +1,69 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BTV.sk",BTV (720p) [Not 24/7] +rtmp://s1.media-planet.sk:80/live/bardejov1 +#EXTINF:-1 tvg-id="FashionTVCzechSlovak.sk",FashionTV Czech&Slovak (450p) +http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk",JOJ (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/joj-540.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk",JOJ (720p) [Not 24/7] +https://nn.geo.joj.sk/hls/joj-720.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk",JOJ (720p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/joj-720.m3u8 +#EXTINF:-1 tvg-id="",JOJ Family (360p) [Not 24/7] +https://nn.geo.joj.sk/hls/family-360.m3u8 +#EXTINF:-1 tvg-id="",JOJ Family (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/family-540.m3u8 +#EXTINF:-1 tvg-id="",JOJ Family (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/family-540.m3u8 +#EXTINF:-1 tvg-id="Kosicednes.sk",Košice:dnes (450p) [Offline] +http://lb.streaming.sk/tvnasa/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Lifetv.sk",Life.tv (720p) [Timeout] +http://86.110.233.68:1935/lifetv/lifetv.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="LocAll.sk",LocAll (406p) +http://tv.geniusnet.sk:8081/localltv/pl.m3u8 +#EXTINF:-1 tvg-id="NoveZamky.sk",Nove Zamky (486p) +http://s1.media-planet.sk/live/novezamky/playlist.m3u8 +#EXTINF:-1 tvg-id="Plus.sk",Plus (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/jojplus-540.m3u8 +#EXTINF:-1 tvg-id="RajTV.sk",Raj TV (720p) [Not 24/7] +https://ottst05.flexitv.sk/2827-tv-pc.m3u8 +#EXTINF:-1 tvg-id="Reduta.sk",Reduta (486p) +http://s1.media-planet.sk/live/reduta/playlist.m3u8 +#EXTINF:-1 tvg-id="Rik.sk",Rik (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/rik-540.m3u8 +#EXTINF:-1 tvg-id="SenziTV.sk",Senzi TV [Offline] +http://109.74.144.130/live/senzitest/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleviziaOSEM.sk",Televizia OSEM (360p) +http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleviziaOSEM.sk",Televízia OSEM (576p) +http://109.74.145.11:1935/tv8/ngrp:tv8.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDK.sk",TV DK (486p) [Not 24/7] +http://80.94.54.11:1935/live/dolnykubin1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJojko.sk",TV Jojko (540p) [Offline] +https://nn.geo.joj.sk/live/rik-index.m3u8 +#EXTINF:-1 tvg-id="TVLux.sk",TV Lux (1080p) [Not 24/7] +http://live.tvlux.sk:1935/lux/lux.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMarkiza.sk",TV Markíza (720p) [Geo-blocked] +http://ntv-st01-vod01-bts10-stage.orange.sk:8000/dna-5106-tv-pc/hls/4001v102.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk" status="online",TV Nové Zámky (486p) +http://s1.media-planet.sk/live/novezamky/lihattv.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk",TV Nové Zámky (486p) [Not 24/7] +http://s1.media-planet.sk/live/novezamky/BratuMarian.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk",TV Nové Zámky (486p) [Offline] +rtmp://s1.media-planet.sk:80/live/novezamky +#EXTINF:-1 tvg-id="TVPoprad.sk",TV Poprad (1080p) [Not 24/7] +http://213.81.153.221:8080/poprad +#EXTINF:-1 tvg-id="TVPovazie.sk",TV Povazie (400p) +http://213.181.128.248:8090/tvpovazie-h264.flv +#EXTINF:-1 tvg-id="TVReduta.sk",TV Reduta (486p) [Offline] +rtmp://s1.media-planet.sk:80/live/reduta +#EXTINF:-1 tvg-id="TVRuzinov.sk",TV Ružinov (1080p) +http://lb.streaming.sk/tvruzinov/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSeverka.sk",TV Severka (576p) [Timeout] +http://88.212.7.11/live/test_severka_web_player/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTurzovka.sk",TV Turzovka (486p) [Not 24/7] +rtmp://s1.media-planet.sk:80/live/turzovka +#EXTINF:-1 tvg-id="TVWAU.sk",TV WAU (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/wau-540.m3u8 +#EXTINF:-1 tvg-id="TVWAU.sk",TV WAU (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/wau-540.m3u8 diff --git a/streams/sl.m3u b/streams/sl.m3u new file mode 100644 index 000000000..3b4db6a58 --- /dev/null +++ b/streams/sl.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AYV.sl",AYV (720p) [Not 24/7] +https://1219373429.rsc.cdn77.org/live/stream-1/chunklist.m3u8 diff --git a/streams/sm.m3u b/streams/sm.m3u new file mode 100644 index 000000000..fbc831ae6 --- /dev/null +++ b/streams/sm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="SanMarinoRTV.sm",San Marino RTV (720p) +https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch01/_definst_/smil:ch-01.smil/chunklist_b1692000_slita.m3u8 +#EXTINF:-1 tvg-id="SanMarinoRTVSport.sm",San Marino RTV Sport (720p) +https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch02/smil:ch-02.smil/master.m3u8 diff --git a/streams/sn.m3u b/streams/sn.m3u new file mode 100644 index 000000000..a9cc5eabb --- /dev/null +++ b/streams/sn.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="2STV.sn",2STV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vidbb +#EXTINF:-1 tvg-id="7TV.sn",7TV (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/7tv +#EXTINF:-1 tvg-id="A2iMusic.sn",A2i Music (720p) [Not 24/7] +https://stream.sen-gt.com/A2iMusic/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iNaja.sn",A2i Naja (720p) [Not 24/7] +https://stream.sen-gt.com/A2iNaija/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iReligion.sn",A2i Religion (720p) [Not 24/7] +https://stream.sen-gt.com/A2iReligion/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iTV.sn",A2i TV (1080p) [Not 24/7] +https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Africa7.sn",Africa 7 (480p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7xq2dw +#EXTINF:-1 tvg-id="DTV.sn",DTV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/dtv +#EXTINF:-1 tvg-id="LabelTV.sn",Label TV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/label-tv +#EXTINF:-1 tvg-id="RFM.sn",RFM (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wi5y1 +#EXTINF:-1 tvg-id="RTS1.sn",RTS1 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/rts1 +#EXTINF:-1 tvg-id="RTS2.sn",RTS2 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/rts2 +#EXTINF:-1 tvg-id="SenTV.sn",SenTV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/sentv +#EXTINF:-1 tvg-id="TFM.sn",TFM (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wcr45 diff --git a/streams/so.m3u b/streams/so.m3u new file mode 100644 index 000000000..39f6b7ba0 --- /dev/null +++ b/streams/so.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HornCableTV.so",Horn Cable TV (720p) [Not 24/7] +http://cdn.mediavisionuae.com:1935/live/hctvlive.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="KalsanTV.so",Kalsan TV (360p) +https://ap02.iqplay.tv:8082/iqb8002/s03btv/chunks.m3u8 +#EXTINF:-1 tvg-id="KalsanTV.so",Kalsan TV (1080p) [Not 24/7] +http://cdn.mediavisionuae.com:1935/live/kalsantv.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="PuntlandTV.so",Puntland TV (360p) [Offline] +https://ap02.iqplay.tv:8082/iqb8002/p2t25/chunks.m3u8 +#EXTINF:-1 tvg-id="Somalicable.so",Somali cable (576p) +https://ap02.iqplay.tv:8082/iqb8002/somc131/chunks.m3u8 +#EXTINF:-1 tvg-id="SomaliNationalTV.so",Somali National TV (360p) +https://ap02.iqplay.tv:8082/iqb8002/s4ne/chunks.m3u8 diff --git a/streams/sv.m3u b/streams/sv.m3u new file mode 100644 index 000000000..2321e1661 --- /dev/null +++ b/streams/sv.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AgapeTVCanal8.sv",Agape TV 8 (480p) [Offline] +https://can1.krakeniptv.com:25463/live/agape/CPLdE2EadX/1764.m3u8 +#EXTINF:-1 tvg-id="Canal10.sv",Canal 10 (720p) +http://streamingcws20.com:1935/tves/tves.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.sv",Canal 11 TuTV (254p) [Not 24/7] +https://algochivo.com:1936/canal11/canal11/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.sv",Canal 12 (220p) [Not 24/7] +https://sv-canal12-canal12-live.ned.media/canal12/smil:canal12.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.sv",Canal 33 (1080p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal33/smil:canal33.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.sv",Canal 33 (1080p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal33/videocanal33/playlist.m3u8 +#EXTINF:-1 tvg-id="ElimTV.sv",Elim TV (480p) [Offline] +http://live-15.viewer.dacast.com/i/dclive_1@397642/master.m3u8 +#EXTINF:-1 tvg-id="OrbitaTVCanal25.sv",Órbita TV Canal 25 (480p) [Not 24/7] +https://5dcabf026b188.streamlock.net/orbitatv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TCS.sv",TCS (720p) +https://secure-video.tcsgo.com/tcshd/index.m3u8 +#EXTINF:-1 tvg-id="Tele1.sv",Tele1 (720p) [Not 24/7] +http://streamingcws40.com:1935/canaluno/videocanaluno/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele1.sv",Tele1 (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canaluno/smil:canaluno.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TribunaTV.sv",TribunaTV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/TRIBUNA-TV/tribuna.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMElSalvador.sv",TVM El Salvador (720p) +http://168.227.22.18:1935/tvm/tvm.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOCanal23.sv",TVO Canal 23 (720p) [Not 24/7] +https://5fc584f3f19c9.streamlock.net/tvo/smil:tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVX.sv",TVX (720p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canaltvx +#EXTINF:-1 tvg-id="WOWTV.sv",WOW TV (576p) [Not 24/7] +https://cdn.elsalvadordigital.com:1936/wowtv/smil:wowtv.smil/playlist.m3u8 diff --git a/streams/sy.m3u b/streams/sy.m3u new file mode 100644 index 000000000..2b8e1de04 --- /dev/null +++ b/streams/sy.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="alltv.sy",alltv (400p) [Timeout] +http://185.96.70.242:1935/live/alltv/playlist.m3u8 +#EXTINF:-1 tvg-id="ANN.sy",ANN [Not 24/7] +http://ns8.indexforce.com:1935/ann/ann/playlist.m3u8 +#EXTINF:-1 tvg-id="HalabTodayTV.sy",Halab Today TV (480p) [Not 24/7] +http://streaming.tootvs.com:1935/8010/8010/playlist.m3u8 +#EXTINF:-1 tvg-id="HalabTodayTV.sy",Halab Today TV (480p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/8010/8010/playlist.m3u8 +#EXTINF:-1 tvg-id="LanaTV.sy",Lana TV (720p) +https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc/master22-vod.m3u8 +#EXTINF:-1 tvg-id="LanaTVPlus.sy",Lana TV Plus (720p) +https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc2/m3u8/sdi2-720p.m3u8 +#EXTINF:-1 tvg-id="MinbijTV.sy",Minbij TV (576p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/45 +#EXTINF:-1 tvg-id="NoorAlSham.sy",Noor Al-Sham (160p) [Not 24/7] +http://82.137.248.16:1935/Nour/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="RojavaTV.sy",Rojava TV (1080p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/55 +#EXTINF:-1 tvg-id="RojavaTV.sy",Rojava TV (1080p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/55.m3u8 +#EXTINF:-1 tvg-id="RonahiTV.sy",Ronahî TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/26.m3u8 +#EXTINF:-1 tvg-id="SamaTV.sy",Sama TV (540p) [Not 24/7] +http://stream5.sama-tv.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ShamFM.sy",Sham FM (720p) [Not 24/7] +https://linkastream.co/headless?url=https://ok.ru/live/1366568541799 +#EXTINF:-1 tvg-id="ShamIPTV.sy",Sham IPTV (720p) [Not 24/7] +https://linkastream.co/headless?url=https://ok.ru/live/1366902775399 +#EXTINF:-1 tvg-id="SouryanaRadio.sy",Souryana Radio (160p) [Not 24/7] +http://82.137.248.16:1935/Souryana/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="Spacetoon.sy",Spacetoon (576p) +https://streams.spacetoon.com/live/stchannel/smil:livesmil.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Spacetoon.sy",Spacetoon (1080p) +https://shls-spacetoon-prod-dub.shahid.net/out/v1/6240b773a3f34cca95d119f9e76aec02/index.m3u8 +#EXTINF:-1 tvg-id="SuboroTV.sy",Suboro TV (576p) [Not 24/7] +https://streaming.viewmedia.tv/viewsatstream12/viewsatstream12.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Syria Drama (160p) [Not 24/7] +http://82.137.248.16:1935/Drama/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="",Syria Satellite Channel (160p) [Not 24/7] +http://82.137.248.16:1935/Sat/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyriaTV.sy",Syria TV (1080p) +https://svs.itworkscdn.net/syriatvlive/syriatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Syrian Education TV (160p) [Not 24/7] +http://82.137.248.16:1935/SEdu/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (160p) [Not 24/7] +http://82.137.248.16:1935/Snews/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (160p) [Not 24/7] +http://vod.alikhbaria.net:1935/Snews/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (360p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjmUU7Zy3BYHGSyUdRFuFIg/live +#EXTINF:-1 tvg-id="UgaritTV.sy",Ugarit TV (160p) [Not 24/7] +http://82.137.248.16:1935/Ugarit/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="UgaritTV.sy",Ugarit TV (720p) [Not 24/7] +https://linkastream.co/headless?url=https://ok.ru/live/2231907917430 diff --git a/streams/th.m3u b/streams/th.m3u new file mode 100644 index 000000000..7c639f1e7 --- /dev/null +++ b/streams/th.m3u @@ -0,0 +1,83 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ALTV.th",ALTV (1080p) +https://thaipbs-ujxrch.cdn.byteark.com/live/playlist_1080p/index.m3u8 +#EXTINF:-1 tvg-id="ASTVNews1.th",ASTV News 1 (1080p) [Not 24/7] +http://news1.live14.com/stream/news1.m3u8 +#EXTINF:-1 tvg-id="Channel5.th",Channel 5 (480p) +https://tc-live1.sanook.com/live/22302_ch5.m3u8 +#EXTINF:-1 tvg-id="Channel5.th",Channel 5 (1080p) +http://110.170.117.27:1935/apptv5hd1live/vdo-tv5hd1/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel7.th",Channel 7 (240p) +https://bcovlive-a.akamaihd.net/2d37038b355f4ea6a6b0d46993dc285c/ap-southeast-1/5282994675001/profile_0/chunklist.m3u8 +#EXTINF:-1 tvg-id="Channel8.th",Channel 8 (720p) [Not 24/7] +http://usa.login.in.th:1935/ch8/ch8/playlist.m3u8 +#EXTINF:-1 tvg-id="DLTV1.th",DLTV 1 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv01.m3u8 +#EXTINF:-1 tvg-id="DLTV2.th",DLTV 2 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv02.m3u8 +#EXTINF:-1 tvg-id="DLTV3.th",DLTV 3 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv03.m3u8 +#EXTINF:-1 tvg-id="DLTV4.th",DLTV 4 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv04.m3u8 +#EXTINF:-1 tvg-id="DLTV5.th",DLTV 5 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv05.m3u8 +#EXTINF:-1 tvg-id="DLTV6.th",DLTV 6 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv06.m3u8 +#EXTINF:-1 tvg-id="DLTV7.th",DLTV 7 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv07.m3u8 +#EXTINF:-1 tvg-id="DLTV8.th",DLTV 8 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv08.m3u8 +#EXTINF:-1 tvg-id="DLTV9.th",DLTV 9 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv09.m3u8 +#EXTINF:-1 tvg-id="DLTV10.th",DLTV 10 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv10.m3u8 +#EXTINF:-1 tvg-id="DLTV11.th",DLTV 11 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv11.m3u8 +#EXTINF:-1 tvg-id="DLTV12.th",DLTV 12 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv12.m3u8 +#EXTINF:-1 tvg-id="DLTV13.th",DLTV 13 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv13.m3u8 +#EXTINF:-1 tvg-id="DLTV14.th",DLTV 14 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv14.m3u8 +#EXTINF:-1 tvg-id="DLTV15.th",DLTV 15 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv15.m3u8 +#EXTINF:-1 tvg-id="GolfChannelThailand.th",Golf Channel Thailand (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_golfhd_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="Mono29.th",Mono 29 (1080p) [Geo-blocked] +https://edge2-bkk.3bb.co.th:9443/MONO29_HLS_1080P/mono29hls_1080TH.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NBTBangkok.th",NBT Bangkok (1080p) [Not 24/7] +http://live.prd.go.th:1935/live/ch1_L.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="",Thai PBS (Opt-4) (480p) +https://thaipbs-live.cdn.byteark.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ThairathTV32.th",Thairath TV 32 (720p) +https://live.thairath.co.th/trtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TPTV.th",TPTV (286p) [Not 24/7] +https://cdn-edge.i-iptv.com/live3/91b1-ff25-f5ee-c27f-283a/playlist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD1.th",True Premier Football HD 1 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_PremierHD1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD2.th",True Premier Football HD 2 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_PremierHD2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD3.th",True Premier Football HD 3 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_PremierHD3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD4.th",True Premier Football HD 4 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_PremierHD4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD5.th",True Premier Football HD 5 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_PremierHD5_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSport5.th",True Sport 5 (480p Scaled) (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_sport5_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSport7.th",True Sport 7 (480p Scaled) (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_sport7_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD1.th",True Sport HD 1 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_2sporthd1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD2.th",True Sport HD 2 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_2sporthd2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD3.th",True Sport HD 3 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_2sporthd3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD4.th",True Sport HD 4 (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_2sporthd4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueTennisHD.th",True Tennis HD (720p) [Not 24/7] +https://smart-tv.livedoomovie.com:4431/02_TennisHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVMuslim.th",TV Muslim (1080p) [Not 24/7] +http://vip2.liveanywhere.asia:1935/tvmuslim/tvmuslim/playlist.m3u8 +#EXTINF:-1 tvg-id="WhiteChannel.th",White Channel (1080p) +http://symc-cdn.violin.co.th:1935/tndedge/whitechannel/chunklist.m3u8 diff --git a/streams/tj.m3u b/streams/tj.m3u new file mode 100644 index 000000000..8c0c081cc --- /dev/null +++ b/streams/tj.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HuzurTV.tj",Хузур ТВ (720p) [Not 24/7] +https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 diff --git a/streams/tm.m3u b/streams/tm.m3u new file mode 100644 index 000000000..d306649df --- /dev/null +++ b/streams/tm.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AltynAsyr.tm",Altyn Asyr (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch001.m3u8 +#EXTINF:-1 tvg-id="AltynAsyr.tm",Altyn Asyr (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch001.m3u8 +#EXTINF:-1 tvg-id="Asgabat.tm",Aşgabat (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch006.m3u8 +#EXTINF:-1 tvg-id="Asgabat.tm",Aşgabat (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch006.m3u8 +#EXTINF:-1 tvg-id="Miras.tm",Miras (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch003.m3u8 +#EXTINF:-1 tvg-id="Miras.tm",Miras (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch003.m3u8 +#EXTINF:-1 tvg-id="TurkmenOwazy.tm",Türkmen Owazy (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch005.m3u8 +#EXTINF:-1 tvg-id="TurkmenOwazy.tm",Türkmen Owazy (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch005.m3u8 +#EXTINF:-1 tvg-id="Turkmenistan.tm",Türkmenistan (226p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch007.m3u8 +#EXTINF:-1 tvg-id="Turkmenistan.tm",Türkmenistan (226p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch007.m3u8 +#EXTINF:-1 tvg-id="TurkmenistanSport.tm",Türkmenistan Sport (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch004.m3u8 +#EXTINF:-1 tvg-id="TurkmenistanSport.tm",Türkmenistan Sport (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch004.m3u8 +#EXTINF:-1 tvg-id="Yaslyk.tm",Ýaşlyk (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch002.m3u8 +#EXTINF:-1 tvg-id="Yaslyk.tm",Ýaşlyk (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch002.m3u8 diff --git a/streams/tn.m3u b/streams/tn.m3u new file mode 100644 index 000000000..f022dd1f8 --- /dev/null +++ b/streams/tn.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn",El Hiwar El Tounsi (400p) [Not 24/7] +http://217.182.137.206/elhiwar.m3u8 +#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn",El Hiwar El Tounsi (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k2IuM11CZakq4ZvrUkv +#EXTINF:-1 tvg-id="",Hannibal (400p) [Offline] +http://217.182.137.206/hannibal.m3u8 +#EXTINF:-1 tvg-id="IFMTV.tn",IFM TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RadioIfmTunisia/live +#EXTINF:-1 tvg-id="JawharaTV.tn",JAWHARA TV (720p) +https://streaming.toutech.net/live/jtv/index.m3u8 +#EXTINF:-1 tvg-id="MosaiqueFM.tn",Mosaïque FM (480p) [Not 24/7] +https://webcam.mosaiquefm.net:1936/mosatv/studio/playlist.m3u8 +#EXTINF:-1 tvg-id="Nessma.tn",Nessma (720p) [Offline] +https://query-streamlink-us.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7lmd4f +#EXTINF:-1 tvg-id="SahelTV.tn",Sahel TV (720p) [Not 24/7] +http://142.44.214.231:1935/saheltv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TunisieImmobilierTV.tn",Tunisie Immobilier TV (720p) [Not 24/7] +https://5ac31d8a4c9af.streamlock.net/tunimmob/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TunisnaTV.tn",Tunisna TV [Timeout] +http://streaming.tunisna.tv:1935/live/tunisna/playlist.m3u8 +#EXTINF:-1 tvg-id="Watania1.tn",Watania 1 (400p) [Offline] +http://217.182.137.206/tunisie1.m3u8 +#EXTINF:-1 tvg-id="Watania1.tn",Watania 1 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/WataniaReplay/live +#EXTINF:-1 tvg-id="Watania2.tn",Watania 2 (400p) [Not 24/7] +http://217.182.137.206/tunisie2.m3u8 +#EXTINF:-1 tvg-id="Watania2.tn",Watania 2 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/Watania2Replay/live diff --git a/streams/tr.m3u b/streams/tr.m3u new file mode 100644 index 000000000..4cd859267 --- /dev/null +++ b/streams/tr.m3u @@ -0,0 +1,457 @@ +#EXTM3U +#EXTINF:-1 tvg-id="24TV.tr",24 TV (1080p) +https://mn-nl.mncdn.com/kanal24/smil:kanal24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="24TV.tr",24 TV (1080p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/134.m3u8 +#EXTINF:-1 tvg-id="360TV.tr",360 TV (720p) [Not 24/7] +https://turkmedya-live.ercdn.net/tv360/tv360.m3u8 +#EXTINF:-1 tvg-id="AALive.tr",AA Live (720p) [Not 24/7] +http://mtulqxgomrllive.mediatriple.net/mtulqxgomrllive/broadcast_59f9c0c785b88.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AfyonTurkTV.tr",Afyon Türk TV (720p) +https://5be5d840359c6.streamlock.net/afyonturktv/afyonturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="AkitTV.tr",Akit TV (720p) +https://akittv-live.ercdn.net/akittv/akittv.m3u8 +#EXTINF:-1 tvg-id="",AKSU TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/aksutv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="AlZahraTVTurkic.tr",Al-Zahra TV Turkic (720p) [Not 24/7] +https://live.al-zahratv.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="AlanyaPostaTV.tr",Alanya Posta TV (1080p) +http://win4.yayin.com.tr/postatv/postatv/playlist.m3u8 +#EXTINF:-1 tvg-id="",ALTAS TV (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/altastv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="",ALTAŞ TV (720p) [Not 24/7] +https://broadcasttr.com:446/altastv/bant1/index.m3u8 +#EXTINF:-1 tvg-id="ARASTV.tr",ARAS TV (576p) [Not 24/7] +http://1.rtmp.org/tv217/yayin.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATVAlanya.tr",ATV Alanya (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/alanyatv/alanyatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BENGUTURKTV.tr",BENGÜTÜRK TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/benguturk/index.m3u8 +#EXTINF:-1 tvg-id="BeratTV.tr",Berat TV (720p) [Not 24/7] +http://cdn-berattv.yayin.com.tr/berattv/berattv/playlist.m3u8 +#EXTINF:-1 tvg-id="BesiktasWebTV.tr",Beşiktaş Web TV (360p) +https://s01.vpis.io/besiktas/besiktas.m3u8 +#EXTINF:-1 tvg-id="BeyazTV.tr",Beyaz TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/87 +#EXTINF:-1 tvg-id="BeyazTV.tr",Beyaz TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/beyaztv/index.m3u8 +#EXTINF:-1 tvg-id="BodrumBelediyesiWebTV.tr",Bodrum Belediyesi Web TV (720p) +https://win2.yayin.com.tr/bodrumbeltv/bodrumbeltv/playlist.m3u8 +#EXTINF:-1 tvg-id="BRTV.tr",BRTV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/brtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaASTV.tr",Bursa AS TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/astv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaTV.tr",Bursa TV (720p) [Not 24/7] +https://cdn-bursatv.yayin.com.tr/bursatv/bursatv/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaTV.tr",Bursa TV (720p) [Not 24/7] +https://win1.yayin.com.tr/bursatv/bursatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanTV.tr",Can TV (720p) +http://canbroadcast.com:7000/canlican/tv.m3u8 +#EXTINF:-1 tvg-id="CanTV.tr",Can TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/105.m3u8 +#EXTINF:-1 tvg-id="",CAN TV (720p) [Not 24/7] +http://176.10.117.18:8000/play/a004/index.m3u8 +#EXTINF:-1 tvg-id="CayTV.tr",Cay TV (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/caytv/bant1/CAYTV.m3u8 +#EXTINF:-1 tvg-id="CekmekoyTV.tr",Cekmeköy TV (1080p) +https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv/playlist.m3u8 +#EXTINF:-1 tvg-id="CemTV.tr",Cem TV (576p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/104.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/ciftcitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (720p) [Not 24/7] +https://waw1.artiyerelmedya.net/ciftcitv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (1080p) [Not 24/7] +http://stream.taksimbilisim.com:1935/ciftcitv/smil:ciftcitv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Cine5TV.tr",Cine5 TV (720p) [Geo-blocked] +https://host.onlineradyotv.net:1936/cine5/cine5/playlist.m3u8 +#EXTINF:-1 tvg-id="",CRI Türk Belgesel (480p) [Offline] +http://cri.aa.net.tr:1935/belgesel/belgesel/playlist.m3u8 +#EXTINF:-1 tvg-id="DehaTV.tr",Deha TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/dehatv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DenizPostasiTV.tr",Deni̇z Postasi TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/denizpostasitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DenizPostasiTV.tr",Deniz Postası TV (720p) [Not 24/7] +http://waw1.artiyerelmedya.net:1935/denizpostasitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Dersim62TV.tr",Dersim62 TV (720p) +http://live.arkumedia.com:1935/dersim62tv/dersim62tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DHA.tr",DHA (720p) [Not 24/7] +https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8 +#EXTINF:-1 tvg-id="DIMTV.tr",DİM TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/dimtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DiyanetTV.tr",Diyanet TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_diyanet/smil:diyanet_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DRTTV.tr",DRT TV (720p) [Not 24/7] +https://broadcasttr.com:446/drt/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="EgeTurkTV.tr",Ege Türk TV (480p) +https://5be5d840359c6.streamlock.net/egeaturktv/egeaturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="EgeTV.tr",Ege TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/egetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ElmasTV.tr",Elmas TV (720p) [Not 24/7] +https://5be5d840359c6.streamlock.net/elmas67tv/elmas67tv/chunklist.m3u8 +#EXTINF:-1 tvg-id="EmTV.tr",Em TV (486p) +https://cdn.yayin.com.tr/TVEM/TVEM/playlist.m3u8 +#EXTINF:-1 tvg-id="",Er TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/ertv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ErtSahTV.tr",Ert Sah TV (720p) [Not 24/7] +http://win20.yayin.com.tr/ertsahtv/ertsahtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ErzurumWebTV.tr",Erzurum Web TV (720p) +https://win29.yayin.com.tr/erzurumwebtv/erzurumwebtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ETVManisa.tr",ETV Manisa (1080p) [Not 24/7] +https://broadcasttr.com:446/manisaetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Euro90Channel.tr",Euro 90 Channel (1080p) [Not 24/7] +https://ssl4.radyotvonline.com/e90tv/e90tvlive/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroGenc.tr",Euro Genc (1080p) [Not 24/7] +https://dcunilive258-lh.akamaihd.net/i/dclive_1@126972/master.m3u8 +#EXTINF:-1 tvg-id="FenerbahceTVFBTV.tr",Fenerbahçe TV (FBTV) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x21oo10 +#EXTINF:-1 tvg-id="FinansTurkTV.tr",Finans Turk TV (720p) +http://live.arkumedia.com:1935/finansturktv/finansturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="GaziantepOlayTv.tr",Gaziantep Olay Tv (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/olaytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GencTV.tr",Genç TV (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_genc.m3u8 +#EXTINF:-1 tvg-id="GoncaTV.tr",Gonca TV (720p) [Not 24/7] +https://broadcasttr.com:446/tuncerciftci/smil:tuncerciftci.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GRT.tr",GRT (720p) +https://waw2.artiyerelmedya.net/grt/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="GRTGaziantep.tr",GRT Gaziantep (720p) [Geo-blocked] +http://yerelmedya.tv:1935/grt/_definst_/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GSTV.tr",GSTV [Geo-blocked] +https://owifavo5.rocketcdn.com/gstv/gstv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GunesTVKibris.tr",Güneş TV Kibris (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_gunes.m3u8 +#EXTINF:-1 tvg-id="GuneyTVTarsus.tr",Guney TV Tarsus (270p) [Offline] +http://stream2.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GuneydoguTV.tr",Guneydoğu TV (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/gtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GuneydoguTV.tr",Guneydoğu TV (720p) [Not 24/7] +https://broadcasttr.com:446/gtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Haber61TV.tr",Haber61 TV (720p) [Not 24/7] +https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8 +#EXTINF:-1 tvg-id="",Haber61 TV (720p) [Not 24/7] +https://win8.yayin.com.tr/haber61tv/smil:haber61tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HaberGlobal.tr",Haber Global (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/haberglobal/index.m3u8 +#EXTINF:-1 tvg-id="",Habertürk TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/130 +#EXTINF:-1 tvg-id="",Habertürk TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/haberturk/index.m3u8 +#EXTINF:-1 tvg-id="HalkTV.tr",Halk TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_halktv/smil:halktv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HunatTV.tr",Hunat TV (480p) [Geo-blocked] +https://waw2.artiyerelmedya.net/hunattv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="HunatTV.tr",Hunat TV (480p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/hunattv/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr",IBB TV (1080p) +http://wowza.istweb.tv:1935/webtv/webtv_wowza1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr",IBB TV (1080p) [Not 24/7] +https://npserver1.ibb.gov.tr/webtv/webtv_wowza1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr",İBB TV (720p) [Offline] +http://wowza.istweb.tv:1935/dp/istanbul2/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr",İBB TV [Not 24/7] +rtmp://wowza.istweb.tv:1935/webtv/webtv_wowza1 +#EXTINF:-1 tvg-id="IcelTV.tr",Icel TV (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/iceltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="IcelTV.tr",Icel TV (720p) [Not 24/7] +https://broadcasttr.com:446/iceltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal3.tr",Kanal 3 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/kanal3/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal3.tr",Kanal 3 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal3/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal7.tr",Kanal 7 (576p) [Not 24/7] +https://live.kanal7.com/live/kanal7LiveMobile/index.m3u8 +#EXTINF:-1 tvg-id="Kanal7.tr",Kanal 7 (1080p) +https://live.kanal7.com/live/kanal7LiveDesktop/index.m3u8 +#EXTINF:-1 tvg-id="Kanal7Avrupa.tr",Kanal 7 Avrupa (1080p) [Not 24/7] +https://live.kanal7.com/live/kanal7AvrupaLive/index.m3u8 +#EXTINF:-1 tvg-id="Kanal12.tr",Kanal 12 (720p) [Not 24/7] +https://waw1.artiyerelmedya.net/kanal12/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal15.tr",Kanal 15 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal15/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal23.tr",Kanal 23 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal23/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal26.tr",Kanal 26 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal26/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal32.tr",Kanal 32 (480p) [Not 24/7] +https://edge1.socialsmart.tv/kanal32/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal33.tr",Kanal 33 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/kanal33/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal34.tr",Kanal 34 (720p) +https://5be5d840359c6.streamlock.net/kanal34tv/kanal34tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal34.tr",Kanal 34 (720p) [Not 24/7] +http://live.arkumedia.com:1935/kanal34tv/kanal34tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal38.tr",Kanal 38 (540p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/kanal38/playlist.m3u8 +#EXTINF:-1 tvg-id="KANAL58.tr",KANAL 58 (720p) [Not 24/7] +https://broadcasttr.com:446/kanal58/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal68.tr",Kanal 68 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal68/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalAvrupa.tr",Kanal Avrupa (1080p) [Not 24/7] +http://51.15.2.151/hls/kanalavrupa.m3u8 +#EXTINF:-1 tvg-id="KanalB.tr",Kanal B (480p) [Not 24/7] +http://212.174.58.161/hls-live/livepkgr/_definst_/liveevent/kanalb.m3u8 +#EXTINF:-1 tvg-id="KanalD.tr",Kanal D (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/66.m3u8 +#EXTINF:-1 tvg-id="KanalD.tr",Kanal D (540p) [Offline] +https://2122248074.duhnet.tv/S2/HLS_LIVE/kanaldnp/track_3_750/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalDRomania.tr",Kanal D Romania (384p) [Not 24/7] +https://stream1.kanald.ro/iphone/live.m3u8 +#EXTINF:-1 tvg-id="KanalFirat.tr",Kanal Firat (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanalfirat/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalT.tr",Kanal T (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_kanalt.m3u8 +#EXTINF:-1 tvg-id="KanalUrfa.tr",Kanal Urfa (576p) [Not 24/7] +https://broadcasttr.com:446/kanalurfa/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalV.tr",Kanal V (720p) [Not 24/7] +http://yerelmedya.tv:1935/kanalv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalZ.tr",Kanal Z (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/kanalz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KardelenTV.tr",Kardelen TV [Offline] +http://cdn1.streamencoding.com:1935/kardelen_live/HD/playlist.m3u8 +#EXTINF:-1 tvg-id="KayTV.tr",Kay TV (256p) [Not 24/7] +http://yayin3.canlitv.com:1935/canlitv/kaytv/playlist.m3u8 +#EXTINF:-1 tvg-id="KayTV.tr",Kay TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/kaytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KentTurk.tr",Kent Türk (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/38kenttv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KRTTV.tr",KRT TV (1080p) [Offline] +http://live1.krttv.com.tr/show/krttv_mobil/index.m3u8 +#EXTINF:-1 tvg-id="KudusTV.tr",Kudüs TV (480p) [Geo-blocked] +https://yayin.kudustv.com/981680400/kudustv/playlist.m3u8 +#EXTINF:-1 tvg-id="KudusTV.tr",Kudüs TV (480p) [Offline] +http://yayin10.canliyayin.org/P981680400/kudustv/playlist.m3u8 +#EXTINF:-1 tvg-id="LalegulTV.tr",Lalegül TV (720p) [Not 24/7] +http://lalegultv.netmedya.net/hls/lalegultv.m3u8 +#EXTINF:-1 tvg-id="LalegulTV.tr",Lalegül TV (720p) [Not 24/7] +http://lalegultv.netmedya.net/lalegul-tv/lalegultv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LifeTV.tr",Life TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/lifetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="LineTV.tr",Line TV (404p) [Not 24/7] +https://broadcasttr.com:446/linetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="LuysTV.tr",Luys TV [Offline] +http://luyse.mediatriple.net/luystv/luystv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MarTV.tr",Mar TV (480p) [Not 24/7] +http://marmaratv.canliyayin.org/P324353563/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="MarmaraTV.tr",Marmara TV (480p) [Geo-blocked] +https://yayin.marmaratv.com.tr/P324353563/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="MaviKaradeniz.tr",MaviKaradeniz (720p) [Geo-blocked] +http://yerelmedya.tv:1935/mavikaradeniz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MaviKaradeniz.tr",MaviKaradeniz (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/mavikaradeniz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Med Müzik TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/29.m3u8 +#EXTINF:-1 tvg-id="",Med Müzik TV (1080p) [Not 24/7] +http://137.74.205.201/medmuzik/MedStream/playlist.m3u8 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/23 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/23.m3u8 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (1080p) +https://602ccc850c9bb.streamlock.net/Medya/smil:1280.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Mercan TV (720p) [Not 24/7] +http://yerelmedya.tv:1935/mercantv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MercanTV.tr",Mercan TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/mercantv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteorolojiTV.tr",Meteoroloji TV (720p) [Offline] +https://b01c02nl.mediatriple.net/videoonlylive/mtfgdbkwkjllolive/broadcast_5b1673b7c36b7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MilyonTV.tr",Milyon TV (720p) [Offline] +https://milyontv-live.ercdn.net/milyontv/milyontv_720p.m3u8 +#EXTINF:-1 tvg-id="MiskFM.tr",Misk FM (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCrvsAwtrxZ0q31yU9JEBdWA/live +#EXTINF:-1 tvg-id="MSBCKanal2000.tr",MSBC Kanal 2000 (360p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/kanal-2000/playlist.m3u8 +#EXTINF:-1 tvg-id="NaturalTV.tr",Natural TV (720p) [Not 24/7] +http://broadcasttr.com:1935/naturaltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="NaturalTV.tr",Natural TV (720p) [Not 24/7] +https://broadcasttr.com:446/naturaltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="NTV.tr",NTV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/128 +#EXTINF:-1 tvg-id="NTVSpor.tr",NTV Spor [Timeout] +http://46.4.193.238:8484/hls/ntvspor/playlist.m3u8 +#EXTINF:-1 tvg-id="OgunTV.tr",Ogün TV (360p) +https://s01.vpis.io/ogun/ogun.m3u8 +#EXTINF:-1 tvg-id="OlayTurkTV.tr",Olay Türk TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/olayturk/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="OlayTurkKayseri.tr",OlayTürk Kayseri (720p) [Geo-blocked] +http://waw1.artiyerelmedya.net:1935/olayturk/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="On4TV.tr",On4 TV (1080p) [Not 24/7] +http://yayin.netradyom.com:1935/live/on4/playlist.m3u8 +#EXTINF:-1 tvg-id="ONMedyaHaber.tr",ON Medya Haber (720p) [Geo-blocked] +http://live.arkumedia.com:1935/marmaratv/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="OncuTV.tr",Öncü TV (1024p) [Not 24/7] +https://broadcasttr.com:446/oncurtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="PetraTV.tr",Petra TV (1080p) [Not 24/7] +http://tt61.mine.nu/live/PetraTV/Fw99Gpq7Gq/6478.m3u8 +#EXTINF:-1 tvg-id="PowerTurk.tr",Power Turk (720p) [Not 24/7] +https://mn-nl.mncdn.com/blutv_powerturk/smil:powerturk_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTurk.tr",Power Turk (1080p) [Not 24/7] +https://livetv.powerapp.com.tr/powerturkTV/powerturkhd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTV.tr",Power TV (1080p) +https://livetv.powerapp.com.tr/powerTV/powerhd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTurkTV.tr",PowerTürk TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/powerturktv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="RehberTV.tr",Rehber TV (720p) [Not 24/7] +http://rehbertv.canliyayin.org/P871000884/rehbertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SabanTV.tr",Şaban TV (720p) [Geo-blocked] +http://145.239.37.125:20458/sabantv3/sabantv3/playlist.m3u8 +#EXTINF:-1 tvg-id="SamsunCanliHaberTV.tr",Samsun Canli Haber TV (720p) [Not 24/7] +https://cdn-samsuncanlihabertv.yayin.com.tr/samsuncanlihabertv/samsuncanlihabertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SariyerTV.tr",Sarıyer TV (360p) +http://s01.vpis.io/sariyer/sariyer.m3u8 +#EXTINF:-1 tvg-id="",Sat7 Pars (720p) +https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Sat7 Türk (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SatrancTV.tr",Satranç TV (480p) [Not 24/7] +http://139.162.182.79/live/test/index.m3u8 +#EXTINF:-1 tvg-id="SemerkandTV.tr",Semerkand TV (720p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtisvwurbfcyslive/broadcast_58d915bd40efc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowTurkTV.tr",Show Türk TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_showturk/showturk_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowTV.tr",Show TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/showtv/index.m3u8 +#EXTINF:-1 tvg-id="Sinema1001.tr",Sinema 1001 (1080p) [Offline] +http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Turkish/8b8823ce5525d9b.m3u8 +#EXTINF:-1 tvg-id="SinopYildizTV.tr",Sinop Yildiz TV (360p) +https://s01.vpis.io/sinopyildiz/sinopyildiz.m3u8 +#EXTINF:-1 tvg-id="SportsTV.tr",Sports TV (720p) [Geo-blocked] +https://live.sportstv.com.tr/hls/low/sportstv.m3u8 +#EXTINF:-1 tvg-id="StarTV.tr",Star TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/69 +#EXTINF:-1 tvg-id="StarTV.tr",Star TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/69.m3u8 +#EXTINF:-1 tvg-id="StarTV.tr",Star TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.dailymotion.com/video/x729whv +#EXTINF:-1 tvg-id="SterkTV.tr",Sterk TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/24.m3u8 +#EXTINF:-1 tvg-id="SunRTV.tr",Sun RTV (720p) [Not 24/7] +https://tr.socialsmart.tv/suntv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="TarsusGuneyTV.tr",Tarsus Güney TV (270p) [Offline] +http://stream.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tay TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_taytv/smil:taytv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",teve2 (720p) [Offline] +https://mn-nl.mncdn.com/blutv_teve2/smil:teve2_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr",TGRT Belgesel TV (288p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe462afc6a0e.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr",TGRT Belgesel TV (576p) +https://tv.ensonhaber.com/tv/tr/tgrtbelgesel/index.m3u8 +#EXTINF:-1 tvg-id="TGRTEU.tr",TGRT EU (576p) +https://tv.ensonhaber.com/tv/tr/tgrteu/index.m3u8 +#EXTINF:-1 tvg-id="TGRTHaber.tr",TGRT Haber (360p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe4598be8e5d.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ThaqalaynTV.tr",Thaqalayn TV (720p) [Not 24/7] +https://live.thaqalayn.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="TonTV.tr",Ton TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/tontv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="ToprakTV.tr",Toprak TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/topraktv/playlist.m3u8 +#EXTINF:-1 tvg-id="TorbaTV.tr",Torba TV (1080p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/torbatv/playlist.m3u8 +#EXTINF:-1 tvg-id="TR24TV.tr",TR24 TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/24tv/index.m3u8 +#EXTINF:-1 tvg-id="TRT1.tr",TRT 1 (720p) [Geo-blocked] +https://tv-trt1.medya.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRT1.tr",TRT 1 (720p) [Not 24/7] +https://mn-nl.mncdn.com/blutv_trt1/smil:trt1_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRT2.tr",TRT 2 [Geo-blocked] +https://tv-trt2.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRT3.tr",TRT 3 (720p) [Offline] +https://tv-trt3.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTArabi.tr",TRT Arabi (720p) [Not 24/7] +https://tv-trtarabi.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTArabi.tr",TRT Arabi̇ (720p) [Offline] +https://mn-nl.mncdn.com/blutv_trtarapca/smil:trtarapca_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTAvaz.tr",TRT Avaz (720p) +https://tv-trtavaz.medya.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTBelgesel.tr",TRT Belgesel (720p) +https://tv-trtbelgesel.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTCocuk.tr",TRT Çocuk (720p) +https://tv-trtcocuk.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTDiyanet.tr",TRT Diyanet (1080p) +https://eustr73.mediatriple.net/videoonlylive/mtikoimxnztxlive/broadcast_5e3bf95a47e07.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTEBAIlkokul.tr",TRT EBA Ilkokul (720p) [Offline] +https://tv-e-okul00.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTEBALise.tr",TRT EBA Lise (720p) [Offline] +https://tv-e-okul02.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTEBAOrtaokul.tr",TRT EBA Ortaokul (720p) [Offline] +https://tv-e-okul01.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTHaber.tr",TRT Haber (720p) [Offline] +https://tv-trthaber.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTKurdi.tr",TRT Kurdî (720p) [Offline] +https://tv-trtkurdi.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTMuzik.tr",TRT Muzik (720p) [Offline] +https://mn-nl.mncdn.com/blutv_trtmuzik/smil:trtmuzik_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTSpor.tr",TRT Spor [Offline] +https://tv-trtspor1.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTTurk.tr",TRT Türk (720p) [Offline] +https://tv-trtturk.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTWorld.tr",TRT World (720p) [Not 24/7] +https://tv-trtworld.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TV4.tr",TV4 (720p) +https://turkmedya-live.ercdn.net/tv4/tv4_720p.m3u8 +#EXTINF:-1 tvg-id="TV8.tr",TV 8 (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/74.m3u8 +#EXTINF:-1 tvg-id="TV8.tr",TV8 (576p) [Not 24/7] +http://62.112.9.63:88/TV8_TR/index.m3u8?token=test +#EXTINF:-1 tvg-id="TV85.tr",TV 8.5 (720p) [Offline] +https://mn-nl.mncdn.com/blutv_tv8_5/smil:tv8_5_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV24.tr",TV24 (720p) [Offline] +https://mn-nl.mncdn.com/blutv_kanal24/smil:kanal24_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV35.tr",TV 35 (720p) [Offline] +https://59cba4d34b678.streamlock.net/canlitv/tv35/playlist.m3u8 +#EXTINF:-1 tvg-id="TV38.tr",TV 38 (360p) [Not 24/7] +https://59cba4d34b678.streamlock.net/live/tv38/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Geo-blocked] +https://waw1.artiyerelmedya.net/tv41/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/bant1/TV41.m3u8 +#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/smil:tv41.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr",TV41 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/tv41/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="TV52.tr",TV 52 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv52/smil:tv52.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV52.tr",TV 52 (720p) [Not 24/7] +https://broadcasttr.com:446/tv52/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="",tv100 (720p) [Not 24/7] +https://livex458745.livestreamlive.xyz/tv100.m3u8 +#EXTINF:-1 tvg-id="",tv100 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=8jEXHzMTR7s +#EXTINF:-1 tvg-id="tv100Ekonomi.tr",tv100 Ekonomi (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=32enbX7XKnw +#EXTINF:-1 tvg-id="TVDen.tr",TV Den (576p) [Not 24/7] +http://canli.tvden.com.tr/hls/live.m3u8 +#EXTINF:-1 tvg-id="TVEm.tr",TV Em (486p) +http://cdn-tvem.yayin.com.tr/TVEM/TVEM/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEm.tr",TV Em (486p) +https://cdn.yayin.com.tr/TVEM/TVEM/chunklist.m3u8 +#EXTINF:-1 tvg-id="UcanKusTV.tr",UçanKuş TV (720p) +https://ucankus-live.cdnnew.com/ucankus/ucankus.m3u8 +#EXTINF:-1 tvg-id="UcanKusTV.tr",UçanKuş TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_ucankus/ucankus_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UlkeTV.tr",Ülke TV (720p) [Offline] +https://mn-nl.mncdn.com/blutv_ulketv/smil:ulketv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UniversiteTV.tr",Üniversite TV (720p) [Not 24/7] +https://5be5d840359c6.streamlock.net/unitv/unitv/playlist.m3u8 +#EXTINF:-1 tvg-id="UUTVUskudarUniversitesiTV.tr",ÜÜ TV Üsküdar Üniversitesi TV (1080p) [Not 24/7] +http://uskudarunv.mediatriple.net/uskudarunv/uskudar2/playlist.m3u8 +#EXTINF:-1 tvg-id="Vizyon58TV.tr",Vizyon 58 TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/vizyon58/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="VTV.tr",VTV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanalv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/vuslattv/HasBahCa.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/vuslattv/playlist.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/live/vuslattv/playlist.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/vuslattv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="YeniMalatyasporTV.tr",Yeni Malatyaspor TV (720p) [Not 24/7] +https://592f1881b3d5f.streamlock.net:1443/santraltv_925/santraltv_925/playlist.m3u8 +#EXTINF:-1 tvg-id="YolTV.tr",Yol TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/107.m3u8 diff --git a/streams/tt.m3u b/streams/tt.m3u new file mode 100644 index 000000000..9e29ee538 --- /dev/null +++ b/streams/tt.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TheIslamicNetwork.tt",The Islamic Network (480p) [Not 24/7] +http://daruttarbiyah.srfms.com:1935/daruttarbiyah/livestream/playlist.m3u8 diff --git a/streams/tw.m3u b/streams/tw.m3u new file mode 100644 index 000000000..4625ac4c1 --- /dev/null +++ b/streams/tw.m3u @@ -0,0 +1,149 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CTITVAsia.tw",CTI TV Asia (720p) [Geo-blocked] +http://free.fullspeed.tv/query?url=https://www.youtube.com/channel/UC5l1Yto5oOIgRXlI4p4VKbw/live +#EXTINF:-1 tvg-id="FTVNews.tw",FTV News (720p) [Offline] +http://210.61.56.23/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH1 綜合台 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech1.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH2 真理台 (720p) +https://live.streamingfast.net/osmflivech2.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH3 真情部落格 短版 (720p) +https://live.streamingfast.net/osmflivech3.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH5 共享觀點 短版 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech5.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH6 親近神 詩歌音樂 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech6.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH7 禱告大軍 信息 (720p) +https://live.streamingfast.net/osmflivech7.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH8 幸福學堂 短版 (720p) +https://live.streamingfast.net/osmflivech8.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH9 愛+好醫生 短版 (720p) +https://live.streamingfast.net/osmflivech9.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH10 烤箱讀書會 短版 (720p) +https://live.streamingfast.net/osmflivech10.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH12 維他命施 (720p) +https://live.streamingfast.net/osmflivech12.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH13 健康新煮流 短版 (720p) +https://live.streamingfast.net/osmflivech13.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH14 真情部落格 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech14.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH15 真情之夜 (720p) +https://live.streamingfast.net/osmflivech15.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH16 葉光明 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech16.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH17 大衛鮑森 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech17.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH18 國際講員 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech18.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH19 共享觀點 (720p) +https://live.streamingfast.net/osmflivech19.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH20 恩典時分 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech20.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH21 華語講員 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech21.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH22 職場新視野 (720p) +https://live.streamingfast.net/osmflivech22.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH23 空中主日學 生活 (720p) +https://live.streamingfast.net/osmflivech23.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH24 劉三講古 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech24.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH25 福氣人生 (720p) +https://live.streamingfast.net/osmflivech25.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH26 空中主日學 查經 (720p) +https://live.streamingfast.net/osmflivech26.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH27 空中聖經學院 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech27.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH28 現代詩歌 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech28.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH29 經典音樂河 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech29.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH30 天堂敬拜 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech30.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH31 福音佈道音樂會 (720p) +https://live.streamingfast.net/osmflivech31.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH32 特會系列:禱告與轉化 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech32.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH33 特會系列:研經培靈 (720p) +https://live.streamingfast.net/osmflivech33.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH36 特會系列:超自然大能.醫治釋放 (720p) +https://live.streamingfast.net/osmflivech36.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH37 特會系列:以色列專題 (720p) +https://live.streamingfast.net/osmflivech37.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH38 特會系列:青年特會 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech38.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH40 家庭8點檔轉轉發現愛 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech40.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH41 幸福學堂 (720p) +https://live.streamingfast.net/osmflivech41.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH44 烤箱讀書會 (720p) +https://live.streamingfast.net/osmflivech44.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH45 卡通 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech45.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH47 牧者頻道 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech47.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH49 禱告頻道 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech49.m3u8 +#EXTINF:-1 tvg-id="",GOOD TV CH50 國際講員 中文發音 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech50.m3u8 +#EXTINF:-1 tvg-id="GSTVXingFuKongJianJuJiaTai.tw",GSTV Gorgeous Space TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCoo-jAsJgM8z09ddlhcBlSA/live +#EXTINF:-1 tvg-id="IndigenousTV.tw",Indigenous TV (720p) +http://streamipcf.akamaized.net/live/_definst_/smil:liveabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVBS新聞 [Geo-blocked] +http://seb.sason.top/sc/tvbsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",三立新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/sllive_fhd.m3u8 +#EXTINF:-1 tvg-id="",中天新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/ztxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",中視新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/zsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",原住民電視 (720p) +http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8 +#EXTINF:-1 tvg-id="",台視新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/tsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",唯心電視 (480p) +http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8 +#EXTINF:-1 tvg-id="",壹電視新聞台 (1080p) +http://stream.nexttv.com.tw/n001/hd/live.m3u8 +#EXTINF:-1 tvg-id="",大愛1 (720p) +https://pulltv1.wanfudaluye.com/live/tv1.m3u8 +#EXTINF:-1 tvg-id="DaAi2.tw",大愛2 (720p) +https://pulltv2.wanfudaluye.com/live/tv2.m3u8 +#EXTINF:-1 tvg-id="",大立電視 (720p) +http://www.dalitv.com.tw:4568/live/dali/index.m3u8 +#EXTINF:-1 tvg-id="",東森新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/dsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",東森財經新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/dscjxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",民視 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=ms +#EXTINF:-1 tvg-id="",民視台灣 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=tw +#EXTINF:-1 tvg-id="",民視新聞台 (720p) [Offline] +https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="",民視第一 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=dy +#EXTINF:-1 tvg-id="",立法院IVOD直播交通委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live6/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播內政委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live7/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播司法及法制委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live9/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播外交及國防委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live8/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播教育及文化委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live4/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播朝野協商 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live10/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播社會福利及衛生環境委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live3/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播經濟委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live5/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播財政委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live2/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",立法院IVOD直播院會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live1/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="",華視新聞資訊 [Geo-blocked] +http://seb.sason.top/sc/hsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="",華藏衛視 (1080p) [Not 24/7] +http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 diff --git a/streams/tz.m3u b/streams/tz.m3u new file mode 100644 index 000000000..b7d57c433 --- /dev/null +++ b/streams/tz.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AzamSports1.tz",Azam Sports 1 (540p) [Offline] +https://1446000130.rsc.cdn77.org/1446000130/index.m3u8 +#EXTINF:-1 tvg-id="AzamSports2.tz",Azam Sports 2 (540p) [Offline] +https://1326605225.rsc.cdn77.org/1326605225/index.m3u8 +#EXTINF:-1 tvg-id="ChannelTen.tz",Channel Ten (240p) [Not 24/7] +http://hls-pull-switchinternational.speedws.com/live/test1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBNTV.tz",IBN TV (360p) +http://138.68.138.119:8080/low/5a8993709ea19/index.m3u8 diff --git a/streams/ua.m3u b/streams/ua.m3u new file mode 100644 index 000000000..209f53b68 --- /dev/null +++ b/streams/ua.m3u @@ -0,0 +1,271 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1Plus1Sport.ua",1+1 Спорт (720p) [Not 24/7] +https://live-k2301-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",4 канал (576p) +http://95.67.106.10/hls/nta_ua_low/index.m3u8 +#EXTINF:-1 tvg-id="",4 канал (720p) +http://95.67.106.10/hls/nta_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="",4 канал (1080p) +http://95.67.106.10/hls/nta_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="7kanal.ua",7 канал (720p) +https://cdn10.live-tv.od.ua:8083/7tvod/7tvod/playlist.m3u8 +#EXTINF:-1 tvg-id="7kanal.ua",7 канал (Одесса) (720p) +https://cdn10.live-tv.od.ua:8083/7tvod/7tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="24Kanal.ua",24 Канал (1080p) +http://streamvideol1.luxnet.ua/news24/news24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="24Kanal.ua",24 Канал (1080p) +http://streamvideol1.luxnet.ua/news24/smil:news24.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="34kanal.ua",34 канал (576p) [Not 24/7] +http://streamvideol.luxnet.ua/34ua/34ua.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="100News.ua",100% News (576p) +http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8 +#EXTINF:-1 tvg-id="ATR.ua",ATR (504p) +http://stream.atr.ua/atr/live/index.m3u8 +#EXTINF:-1 tvg-id="BamBarBiaTV.ua",BamBarBia TV (1080p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/bbb/bbbtv-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="",CNL Европа (216p) +http://live-mobile.cdn01.net/hls-live/202E1F/default/mobile/stream_10429_3.m3u8 +#EXTINF:-1 tvg-id="DonezkTV.ua",Donezk TV (720p) [Offline] +http://stream.dn.ua/hls/stream.m3u8 +#EXTINF:-1 tvg-id="GIT.ua",GIT (720p) +https://stream.uagit.tv/gittv.m3u8 +#EXTINF:-1 tvg-id="GTV.ua",GTV (224p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-240p/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua",GTV (480p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-480p/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua",GTV (720p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua",GTV (720p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua",HDFashion & LifeStyle (1080p) +http://95.67.47.114/hls/hdfashion_ua.m3u8 +#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua",HDFashion & LifeStyle (1080p) +http://95.67.47.115/hls/hdfashion_ua.m3u8 +#EXTINF:-1 tvg-id="IDFashion.ua",ID Fashion (1080p) [Not 24/7] +https://idfashion.cdn-02.cosmonova.net.ua/hls/idfashion_ua.m3u8 +#EXTINF:-1 tvg-id="IHTEP.ua",IHTEP (576p) +https://edge1.iptv.macc.com.ua/img/inter_3/index.m3u8 +#EXTINF:-1 tvg-id="Inter.ua",Iнтер (576p) +https://edge3.iptv.macc.com.ua/img/inter_3/index.m3u8 +#EXTINF:-1 tvg-id="K1.ua",K1 (512p) +https://edge2.iptv.macc.com.ua/life/k1_2/index.m3u8 +#EXTINF:-1 tvg-id="Kratu.ua",Kratu (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/kratu/kratu-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Kratu.ua",Kratu (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/kratu/kratu/playlist.m3u8 +#EXTINF:-1 tvg-id="Lale.ua",Lale (504p) +http://stream.atr.ua/lale/live/index.m3u8 +#EXTINF:-1 tvg-id="M1.ua",M1 (720p) +http://live.m2.tv/hls2/stream.m3u8 +#EXTINF:-1 tvg-id="M2.ua",M2 (540p) +http://live.m2.tv/hls3/stream.m3u8 +#EXTINF:-1 tvg-id="Micto.ua" status="timeout",Micto (360p) [Timeout] +http://93.78.206.172:8080/stream3/stream.m3u8 +#EXTINF:-1 tvg-id="MostVideoTV.ua",MostVideo.TV (720p) [Not 24/7] +http://w4.mostvideo.tv/tv/ch1.m3u8 +#EXTINF:-1 tvg-id="OdessaFashion.ua",Odessa Fashion (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/ofod/ofod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Renome.ua",Renome (576p) +http://85.238.112.40:8810/hls_sec/online/list-renome.m3u8 +#EXTINF:-1 tvg-id="Simon.ua",Simon (576p) [Not 24/7] +https://hls.simon.ua/live-HD/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Skrypinua.ua",Skrypin.ua (1080p) [Not 24/7] +https://open-cdn.lanet.tv/live/1008.m3u8 +#EXTINF:-1 tvg-id="Sport1.ua",Sport 1 (576p) [Not 24/7] +https://95-213-224-183.livesports24.online/sport1ua.m3u8 +#EXTINF:-1 tvg-id="TravelGuideTV.ua",Travel Guide TV (720p) +https://cdn10.live-tv.od.ua:8083/leonovtv/test1/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelGuideTV.ua",Travel Guide TV (720p) +https://cdn10.live-tv.od.ua:8083/leonovtv/test-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) +https://hls.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) +https://hls.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) +https://rtsp.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) +https://rtsp.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Plus.ua",TV7+ (Хмельницький) (576p) [Not 24/7] +https://tv7plus.com/hls/tv7.m3u8 +#EXTINF:-1 tvg-id="UAOdesa.ua",UA: Одеса (384p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/odtrkod/odtrkod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="UATV.ua" status="online",UATV (576p) +https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_low/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) +http://95.67.106.242/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) +https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) +https://ua-tv-hls3.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UkrLive.ua",Ukr Live (1080p) [Not 24/7] +http://95.67.12.149:9005 +#EXTINF:-1 tvg-id="Z.ua",Z (Запорожье) (1080p) +https://stream.ztv.zp.ua/hls/live.m3u8 +#EXTINF:-1 tvg-id="A1.ua",А1 (Одесса) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/a1od/a1od-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Avtoradio.ua",Авторадио (720p) [Not 24/7] +https://rtmp.radiogroup.com.ua:8080/live/avto/index.m3u8 +#EXTINF:-1 tvg-id="",Академия (Одесса) (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/36chod/36chod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="ArhatTV.ua",Архат ТВ (720p) +https://arhat.tv/public/720p/index.m3u8 +#EXTINF:-1 tvg-id="BaltaTV.ua",Балта ТВ (768p) +http://194.50.51.34/playlist.m3u8 +#EXTINF:-1 tvg-id="VTV.ua",ВТВ (576p) +http://video.vtvplus.com.ua:81/hls/online/index.m3u8 +#EXTINF:-1 tvg-id="Glas.ua",Глас (576p) +http://85.238.112.69:8811/hls_sec/239.0.4.18-.m3u8 +#EXTINF:-1 tvg-id="GlassRU.ua",Гласс (RU) (576p) [Not 24/7] +https://glas.org.ua/hls/glassru.m3u8 +#EXTINF:-1 tvg-id="GlassUA.ua",Гласс (UA) (576p) [Not 24/7] +https://glas.org.ua/hls/glassua.m3u8 +#EXTINF:-1 tvg-id="DonbasOnline.ua",Донбас Online (1080p) [Not 24/7] +http://176.110.1.30:1935/live/donbasonline/playlist.m3u8 +#EXTINF:-1 tvg-id="DumskayaTV.ua",Думская ТВ (1080p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/dumska/dumska-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Zdorove.ua",Здоровье (504p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/zdorovood/zdorovo/playlist.m3u8 +#EXTINF:-1 tvg-id="IzmailTV.ua",Измаил ТВ (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/izod/izod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="IzmailTV.ua",Измаил ТВ (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/izod/izod/playlist.m3u8 +#EXTINF:-1 tvg-id="Inter.ua",Интер (512p) [Not 24/7] +http://109.68.40.67/img/inter_2/index.m3u8 +#EXTINF:-1 tvg-id="IRT.ua",ИРТ (Днепр) (576p) [Not 24/7] +http://91.193.128.233:1935/live/irt.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Inshiy.ua",Інший (720p) +https://cdn1.live-tv.od.ua:8083/ktkod/ktkod/playlist.m3u8 +#EXTINF:-1 tvg-id="K1.ua",К1 (576p) +http://109.68.40.67/life/k1.m3u8 +#EXTINF:-1 tvg-id="K1.ua",К1 (576p) +http://edge3.iptv.macc.com.ua/life/k1_3/index.m3u8 +#EXTINF:-1 tvg-id="Krug.ua",Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/krugod/krugod/playlist.m3u8 +#EXTINF:-1 tvg-id="Krug.ua",Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="LanetTV.ua",Ланет.TV (486p) +http://kiev1-cdn.lanet.tv/live/1008.m3u8 +#EXTINF:-1 tvg-id="NadiyaNovyykanal.ua",Надия/Новый канал (576p) [Not 24/7] +http://nadiya.home-net.com.ua/mob/mystream.m3u8 +#EXTINF:-1 tvg-id="Nadiya.ua",Надія (720p) [Not 24/7] +https://stream.hope.ua/hopeua/live_1/playlist.m3u8 +#EXTINF:-1 tvg-id="NLOTV.ua",НЛО ТВ (576p) [Geo-blocked] +https://xx001.vivat.live/t-0301.0f6f.d/sd/00047/2m/index.m3u8 +#EXTINF:-1 tvg-id="",НТК (1080p) [Not 24/7] +https://stream.ntktv.ua/s/ntk/ntk.m3u8 +#EXTINF:-1 tvg-id="NTN.ua",НТН (576p) +https://edge2.iptv.macc.com.ua/img/ntn_3/index.m3u8 +#EXTINF:-1 tvg-id="NTN.ua",НТН (576p) [Not 24/7] +https://edge3.iptv.macc.com.ua/img/ntn_3/index.m3u8 +#EXTINF:-1 tvg-id="ObshchestvennoeNezavisimoeTelevidenie.ua",Общественное Независимое Телевидение (576p) +http://85.238.112.40:8810/hls_sec/239.33.75.33-.m3u8 +#EXTINF:-1 tvg-id="Obektiv59.ua",Объектив 59 (576p) +https://hls.simon.ua/live-HD/live/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Odessa.ua",Одесса (576p) [Geo-blocked] +https://cdn1.live-tv.od.ua:8083/riood/riood-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Odessa.ua",Одесса (576p) [Geo-blocked] +https://cdn1.live-tv.od.ua:8083/riood/riood/playlist.m3u8 +#EXTINF:-1 tvg-id="OrbitaTV.ua",Орбіта ТВ (360p) [Not 24/7] +http://ftp.orbita.dn.ua/hls/orbita.m3u8 +#EXTINF:-1 tvg-id="",ОТВ (Днепр) (576p) +http://91.193.128.233:1935/live/otv.stream_576p/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyygorodskoyKrivoyRog.ua",Первый городской (Кривой Рог) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="",Первый Городской (Кривой Рог) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr/playlist.m3u8 +#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (504p) +https://cdn1.live-tv.od.ua:8083/1tvod/1tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (504p) +https://cdn1.live-tv.od.ua:8083/1tvod/1tvod/playlist.m3u8 +#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (576p) +http://91.194.79.46:8081/stream2/channel2/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyygorodskoyOdessa.ua",Первый городской (Одесса) (1080p) [Not 24/7] +http://91.194.79.46:8081/stream1/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (576p) [Not 24/7] +http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (720p) +http://95.67.127.156/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (720p) +http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PershiyDiloviy.ua",Перший Діловий (576p) +http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="PershiyDiloviy.ua",Перший Діловий (720p) +http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="",Перший Західний (Львов) (576p) +http://hls.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Перший Західний (Львов) (576p) +http://rtmp.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) +https://app.live.112.events/hls/112hd_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) +https://app.live.112.events/hls/112hd_mid/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) [Not 24/7] +http://app.live.112.events/hls-ua/112hd_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) [Timeout] +https://app.live.112.events/hls-ua/112hd_mid/index.m3u8 +#EXTINF:-1 tvg-id="",ПравдаТУТ (720p) +http://95.67.17.131/hls/pravdatytkievshina_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="",ПравдаТУТ (720p) +http://pravdatytkievshina-hls2.cosmonova.net.ua/hls/pravdatytkievshina_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="",Прямий (576p) +http://prm-hls1.cosmonova.net.ua/hls/prm_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="",Прямий (720p) +http://95.67.21.100/hls/prm_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="",Прямий (720p) +http://prm-hls1.cosmonova.net.ua/hls/prm_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="RadioLyuks.ua",Радио Люкс (1080p) +https://stream1.luxnet.ua/luxstudio/smil:luxstudio.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Reporter.ua",Репортер (720p) [Not 24/7] +http://cdn1.live-tv.od.ua:8081/31chod/31chod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Reporter.ua",Репортер (720p) [Not 24/7] +http://cdn1.live-tv.od.ua:8081/31chod/31chod/playlist.m3u8 +#EXTINF:-1 tvg-id="Svarozhichi.ua",Сварожичи (720p) +http://80.91.177.102:1935/live/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="Svarozhichi.ua",Сварожичи (720p) +http://tv.tv-project.com:1935/live/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua",СК 1 (256p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt240p/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua",СК 1 (480p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt480p/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua",СК 1 (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua",СК 1 (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="STB.ua",СТБ [Timeout] +http://188.35.9.11:11021/j +#EXTINF:-1 tvg-id="TVDom.ua",ТВ Дом [Offline] +http://46.149.48.21:1234 +#EXTINF:-1 tvg-id="TVA.ua",ТВА (Чернiвцi) (576p) +http://hls.cdn.ua/tva.ua_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVA.ua",ТВА (Чернiвцi) (576p) +http://rtsp.cdn.ua/tva.ua_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Телеканал Прямий (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCH9H_b9oJtSHBovh94yB5HA/live +#EXTINF:-1 tvg-id="TisTV.ua",Тис ТВ (480p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/riood/tisod504/playlist.m3u8 +#EXTINF:-1 tvg-id="TretiyCifrovoy.ua",Третий Цифровой (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/3tvod/3tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="TRKAleks.ua",ТРК Алекс (576p) +http://46.46.112.223/live/livestream1.m3u8 +#EXTINF:-1 tvg-id="TRKKrug.ua",ТРК Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod/playlist.m3u8 +#EXTINF:-1 tvg-id="TRKReporter.ua",ТРК Репортер (480p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/31chod/31chod-sub/playlist.m3u8 +#EXTINF:-1 tvg-id="",Трофей ТВ (720p) [Offline] +https://5db1ab4f970be.streamlock.net/live/smil:trofey.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Futbol1.ua",Футбол 1 (576p) [Not 24/7] +https://95-213-224-183.livesports24.online/uafootballua1.m3u8 +#EXTINF:-1 tvg-id="HersonPlyus.ua",Херсон Плюс (576p) +http://46.175.163.130/ks_plus/index.m3u8 +#EXTINF:-1 tvg-id="Cherniveckiypromin.ua",Чернівецький промінь (720p) [Not 24/7] +https://langate.tv/promin/live_720/index.m3u8 +#EXTINF:-1 tvg-id="",ЧП Инфо (576p) +http://edge3.iptv.macc.com.ua/life/magnolia_3/index.m3u8 +#EXTINF:-1 tvg-id="ChPinfo.ua",ЧП.інфо (576p) +http://109.68.40.67/life/magnolia.m3u8 +#EXTINF:-1 tvg-id="",Южная Волна (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/wave/wave-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="",Южная Волна ТВ (Одесса) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/wave/wave-720/playlist.m3u8 +#EXTINF:-1 tvg-id="YaTB.ua",ЯТБ (576p) +http://46.175.163.130/live_yatb/playlist.m3u8 diff --git a/streams/ug.m3u b/streams/ug.m3u new file mode 100644 index 000000000..b8586f384 --- /dev/null +++ b/streams/ug.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArkTV.ug",Ark TV (576p) +https://arktelevision.org/hlslive/test/test.m3u8 +#EXTINF:-1 tvg-id="NBSTV.ug",NBS TV (360p) [Not 24/7] +https://cdn1.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/10-hls/live-media.m3u8 +#EXTINF:-1 tvg-id="NBSTV.ug",NBS TV (480p) [Not 24/7] +https://vse-cdn1-readymedia.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/5-20-hls/live.m3u8 +#EXTINF:-1 tvg-id="SaltTV.ug",Salt TV (720p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692676/master.m3u8 diff --git a/streams/uk.m3u b/streams/uk.m3u new file mode 100644 index 000000000..bc3d04ceb --- /dev/null +++ b/streams/uk.m3u @@ -0,0 +1,397 @@ +#EXTM3U +#EXTINF:-1 tvg-id="4Music.uk",4Music (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,4music-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/4music/ +#EXTINF:-1 tvg-id="Afrobeats.uk",Afrobeats (1080p) +https://stream.ecable.tv/afrobeats/index.m3u8 +#EXTINF:-1 tvg-id="AhlulbaytTV.uk",Ahlulbayt TV (1080p) [Not 24/7] +http://109.123.126.14:1935/live/livestream1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AhlulbaytTV.uk",Ahlulbayt TV (1080p) [Not 24/7] +https://5f3e23ac71915.streamlock.net:4434/live/livestream1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Ahwazna.uk",Ahwazna (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ahwaznach +#EXTINF:-1 tvg-id="AkaalTV.uk",Akaal TV (360p) [Not 24/7] +http://akaal.zecast.net/akaal-live/smil:akaaltv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AkaalTV.uk",Akaal TV (396p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/akaal_tv/hls1_smart_akaal/akaal_tv.m3u8 +#EXTINF:-1 tvg-id="AlarabyTV.uk",Alaraby TV (720p) +https://alaraby.cdn.octivid.com/alaraby/smil:alaraby.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Alhiwar TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AnandTV.uk",Anand TV (720p) +https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8 +#EXTINF:-1 tvg-id="AriseNews.uk",Arise News (480p) +https://contributionstreams.sechls01.visionip.tv/live/visiontv-contributionstreams-arise-tv-25f-16x9-SDh/playlist.m3u8 +#EXTINF:-1 tvg-id="AriseNews.uk",Arise News (576p) +https://news.ashttp9.visionip.tv/live/visiontvuk-news-arise-tv-hsslive-25f-16x9-SD/playlist.m3u8 +#EXTINF:-1 tvg-id="AwraasTV.uk",Awraas TV (540p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtqtqloqdxtlive/broadcast_5cefc3677caee.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCAlba.uk",BBC Alba (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_alba/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (540p) +https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (540p) +https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd +#EXTINF:-1 tvg-id="BBCEarth.uk",BBC Earth [Geo-blocked] +https://livecdn.fptplay.net/qnetlive/bbcearth_hls.smil/chunklist_b2500000.m3u8 +#EXTINF:-1 tvg-id="BBCFour.uk",BBC Four (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCFourHD.uk",BBC Four HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCLifestyle.uk",BBC Lifestyle (576p) [Geo-blocked] +https://livecdn.fptplay.net/qnetlive/bbclifestyle_2000.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Geo-blocked] +https://cdnuk001.broadcastcdn.net/KUK-BBCNEWSHD/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCOneCambridge.uk",BBC One Cambridge (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_cambridge/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneChannelIslands.uk",BBC One Channel Islands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_channel_islands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEast.uk",BBC One East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEastMidlands.uk",BBC One East Midlands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEastYorkshire.uk",BBC One East Yorkshire (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_yorkshire/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneHD.uk",BBC One HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneLondon.uk",BBC One London (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_london/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthEast.uk",BBC One North East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthWest.uk",BBC One North West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthernIreland.uk",BBC One Northern Ireland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthernIrelandHD.uk",BBC One Northern Ireland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneOxford.uk",BBC One Oxford (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_oxford/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotland.uk",BBC One Scotland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotlandHD.uk",BBC One Scotland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouth.uk",BBC One South (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouthEast.uk",BBC One South East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouthWest.uk",BBC One South West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWales.uk",BBC One Wales (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWalesHD.uk",BBC One Wales HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneWest.uk",BBC One West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWestMidlands.uk",BBC One West Midlands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneYorks.uk",BBC One Yorks (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_yorks/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCParliament.uk",BBC Parliament (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_parliament/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (360p) [Not 24/7] +http://159.69.58.154/bbc/master.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (540p) +https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (540p) +https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd +#EXTINF:-1 tvg-id="BBCRedButton1.uk",BBC Red Button 1 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_01.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton2.uk",BBC Red Button 2 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_02.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton3.uk",BBC Red Button 3 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_03.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton4.uk",BBC Red Button 4 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_04.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton5.uk",BBC Red Button 5 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_05.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton6.uk",BBC Red Button 6 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_06.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton7.uk",BBC Red Button 7 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_07.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton8.uk",BBC Red Button 8 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_08.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton9.uk",BBC Red Button 9 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_09.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton10.uk",BBC Red Button 10 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_10.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton11.uk",BBC Red Button 11 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_11.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton12.uk",BBC Red Button 12 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_12.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton13.uk",BBC Red Button 13 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_13.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton14.uk",BBC Red Button 14 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_14.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton15.uk",BBC Red Button 15 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_15.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton16.uk",BBC Red Button 16 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_16.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton17.uk",BBC Red Button 17 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_17.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton18.uk",BBC Red Button 18 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_18.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton19.uk",BBC Red Button 19 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_19.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton20.uk",BBC Red Button 20 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_20.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton21.uk",BBC Red Button 21 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_21.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton22.uk",BBC Red Button 22 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_22.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton23.uk",BBC Red Button 23 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_23.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton24.uk",BBC Red Button 24 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_24.m3u8 +#EXTINF:-1 tvg-id="BBCScotland.uk",BBC Scotland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCScotlandHD.uk",BBC Scotland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/content/x=3/v=pv14/b=5070016/t=3840/i=urn:bbc:pips:service:bbc_scotland_hd/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoEngland.uk",BBC Two England (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCTwoHD.uk",BBC Two HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoNorthenIreland.uk",BBC Two Northen Ireland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCTwoNorthernIrelandHD.uk",BBC Two Northern Ireland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoWales.uk",BBC Two Wales (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_wales_digital/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCUHDTrial1.uk",BBC UHD Trial 1 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_01.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial2.uk",BBC UHD Trial 2 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_02.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial3.uk",BBC UHD Trial 3 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_03.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial4.uk",BBC UHD Trial 4 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_04.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial5.uk",BBC UHD Trial 5 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_05.mpd +#EXTINF:-1 tvg-id="BBCWorldNews.uk",BBC World News (480p) +http://ott-cdn.ucom.am/s24/index.m3u8 +#EXTINF:-1 tvg-id="BBCWorldNews.uk",BBC World News (576p) +http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8 +#EXTINF:-1 tvg-id="BoxHits.uk",Box Hits (576p) +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/boxhits/ +#EXTINF:-1 tvg-id="BoxHits.uk",Box Hits (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/boxhits/ +#EXTINF:-1 tvg-id="",Brit Asia Live (US Eastern) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0500/c.m3u8 +#EXTINF:-1 tvg-id="",Brit Asia Live (US Pacific) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0800/c.m3u8 +#EXTINF:-1 tvg-id="BritishMuslimTV.uk",British Muslim TV (576p) [Not 24/7] +https://api.visionip.tv/live/ASHTTP/visiontvuk-international-britishmuslimtv-hsslive-25f-16x9-MB/playlist.m3u8 +#EXTINF:-1 tvg-id="BTSport1.uk",BT Sport 1 (576p) [Not 24/7] +https://sport.livedoomovie.com/02_BTSPORTHD_1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="BTSport2.uk",BT Sport 2 (576p) [Not 24/7] +https://sport.livedoomovie.com/02_BTSPORTHD_2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="CBBC.uk",CBBC (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="CBBCHD.uk",CBBC HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="CBeebies.uk",CBeebies (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="CBeebiesHD.uk",CBeebies HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="ChannelS.uk",Channel S (576p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/chsukoff.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelS.uk",Channel S (720p) [Not 24/7] +https://a.jsrdn.com/r-373576a3/publish/22679_24MrQma9TX/index.m3u8 +#EXTINF:-1 tvg-id="",Channel S (US Eastern) (720p) +https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0500/c.m3u8 +#EXTINF:-1 tvg-id="",Channel S (US Pacific) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0800/c.m3u8 +#EXTINF:-1 tvg-id="ChelseaTV.uk",Chelsea TV (576p) +http://c0.cdn.trinity-tv.net/stream/hujuv8xpr4gdugis2szd4rqrvpzip8iuwn2jwpt68wmvpmdz79qime8idwrxga95rnghp64hfimevyvrp6n7p3c52yg3rfsuhxe9u9az35ti8te625sxerfwaxr2cbefyau4tmfa4nwqvca6ckmtwv2=.m3u8 +#EXTINF:-1 tvg-id="CraftStoreTV.uk",Craft Store TV (720p) +https://live-hochanda.simplestreamcdn.com/hochanda/live.m3u8 +#EXTINF:-1 tvg-id="Cruise1stTV.uk",Cruise1st TV (396p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/cruise_tv/hls_video/index.m3u8 +#EXTINF:-1 tvg-id="DeenTV.uk",Deen TV (576p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deentv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] +https://csm-e-stv.tls1.yospace.com/csm/live/195300285.m3u8 +#EXTINF:-1 tvg-id="EDGEsports.uk",EDGEsport (1080p) [Offline] +https://imgedge.akamaized.net/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EmanChannel.uk",Eman Channel (576p) +https://ap02.iqplay.tv:8082/iqb8002/3m9n/playlist.m3u8 +#EXTINF:-1 tvg-id="EnglishClubTV.uk",English Club TV (480p) [Timeout] +http://ott-cdn.ucom.am/s37/index.m3u8 +#EXTINF:-1 tvg-id="FadakTV.uk",Fadak TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/ddrricky/live +#EXTINF:-1 tvg-id="FadakTV.uk",Fadak TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBgM-sKkB4ySrdiCsk0ikUA/live +#EXTINF:-1 tvg-id="FreeSports.uk",FreeSports (1080p) [Not 24/7] +https://csm-e-stv.tls1.yospace.com/csm/live/203444271.m3u8 +#EXTINF:-1 tvg-id="GarshomTV.uk",Garshom TV (360p) [Not 24/7] +http://og2qd3aal7an-hls-live.5centscdn.com/garshomtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="GBNews.uk",GB News (1080p) +https://live-gbnews.simplestreamcdn.com/gbnews/gbnews/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="GemsTV.uk",Gems TV (360p) +http://57d6b85685bb8.streamlock.net:1935/abrgemporiaukgfx/livestream_360p/index.m3u8 +#EXTINF:-1 tvg-id="GodTVUK.uk",God TV UK (720p) +https://zypelive-lh.akamaihd.net/i/default_1@745545/master.m3u8 +#EXTINF:-1 tvg-id="GodTV.uk",God TV US (720p) +https://zypelive-lh.akamaihd.net/i/default_1@710958/master.m3u8 +#EXTINF:-1 tvg-id="HalaLondon.uk",Hala London (1080p) +https://halaldn.cdn.mangomolo.com/halavd/smil:halavd.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HealthMedia.uk",Health Media (720p) [Not 24/7] +https://j78dpkrjlq5r-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseCountryTV.uk",Horse & Country TV (1080p) +https://hnc-free-viewlift.amagi.tv/HNC_AUSTRALIA.m3u8 +#EXTINF:-1 tvg-id="IdealWorldTV.uk",Ideal World TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/IdealworldTvShopping/live +#EXTINF:-1 tvg-id="IonTV.uk",iON TV (576p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/iontvuk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraBangla.uk",Iqra Bangla (576p) +https://ap02.iqplay.tv:8082/iqb8002/iq53la/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraTV.uk",Iqra TV (576p) +https://ap02.iqplay.tv:8082/iqb8002/iq6a7k/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraaTV.uk",Iqraa TV (576p) [Geo-blocked] +http://wowzaprod3-lh.akamaihd.net/i/83372732_1@141298/master.m3u8 +#EXTINF:-1 tvg-id="IranInternational.ir",Iran International (1080p) +https://dev-live.livetvstream.co.uk/LS-63503-4/index.m3u8 +#EXTINF:-1 tvg-id="IranInternational.uk",Iran International (1080p) +https://live.playstop.me/1816184091/index.m3u8 +#EXTINF:-1 tvg-id="IranInternational.ir",Iran International (1080p) +https://live.playstop.me/LS-63503-4/index.m3u8 +#EXTINF:-1 tvg-id="IslamChannel.uk",Islam Channel (576p) [Not 24/7] +https://live.islamchannel.tv/islamtv/islamtv_english/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="ITV2.uk",ITV2 (432p) [Geo-blocked] +http://31.220.41.88:8081/live/itv2.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV2.uk",ITV2 (576p) [Not 24/7] +http://93.190.139.35:8278/streams/d/itv2_antik/playlist.m3u8 +#EXTINF:-1 tvg-id="ITV3.uk",ITV3 (432p) [Geo-blocked] +http://31.220.41.88:8081/live/itv3.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV4.uk",ITV4 (302p) [Geo-blocked] +http://31.220.41.88:8081/live/itv4.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV.uk",ITV (302p) [Geo-blocked] +http://31.220.41.88:8081/live/itv1.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="JewelleryMaker.uk",Jewelery Maker (1080p) +https://lo2-1.gemporia.com/abrjewellerymaker/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JimJamRossiya.uk" status="online",JimJam Россия (576p) [Not 24/7] +http://188.40.68.167/russia/jimjam/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.uk",Kalemeh TV (576p) [Not 24/7] +http://51.210.199.37/hls/stream.m3u8 +#EXTINF:-1 tvg-id="KanshiTV.uk",Kanshi TV (720p) [Not 24/7] +https://live.kanshitv.co.uk/mobile/kanshitvkey.m3u8 +#EXTINF:-1 tvg-id="Kerrang.uk",Kerrang (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kerrang/ +#EXTINF:-1 tvg-id="Kerrang.uk",Kerrang (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/kerrang/ +#EXTINF:-1 tvg-id="Kiss.uk",Kiss (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,kiss-inapp.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kiss/ +#EXTINF:-1 tvg-id="kMTV.uk",KMTV (576p) +https://dk7psf0dh3v1r.cloudfront.net/KMTV/playlist.m3u8 +#EXTINF:-1 tvg-id="KoolLondonRadio.uk",Kool London Radio (720p) [Timeout] +http://w10.streamgb.com:1935/kool/kool/playlist.m3u8 +#EXTINF:-1 tvg-id="LondonLive.uk",London Live (720p) [Offline] +http://bcoveliveios-i.akamaihd.net/hls/live/217434/3083279840001/master.m3u8 +#EXTINF:-1 tvg-id="Loveworld.uk",Loveworld TV (1080p) [Not 24/7] +https://cdn.lwuk.live/live/smil:lwukweb.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Magic.uk",Magic (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,magic-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/magic/ +#EXTINF:-1 tvg-id="Magnavision.uk",Magna Vision (1080p) [Not 24/7] +https://j78dpa3edq5r-hls-live.5centscdn.com/abr/0864028584026e6ad9cdf922473177a4/playlist.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto +1 (720p) [Offline] +http://159.69.58.154/manoto_plus1/manoto_plus.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto +2 [Offline] +http://159.69.58.154/manoto_plus2/manoto2.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto TV (1080p) +https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 +#EXTINF:-1 tvg-id="MTA1.uk",MTA 1 (720p) [Offline] +https://cflive-emea.live-delivery.ooyala.com/out/u/3vkkbgnvsm2r5/101593/1lanVtaDE6sCK6v0vDomDayqoKeSal6G/cn/8fb839e3a82045bd99a92ecd9df257e5.m3u8 +#EXTINF:-1 tvg-id="MTA1English.uk",MTA 1 English (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaeng_delivery@345736/master.m3u8 +#EXTINF:-1 tvg-id="MTA1Original.uk",MTA 1 Original (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaorigin_delivery@353498/master.m3u8 +#EXTINF:-1 tvg-id="MTA1Urdu.uk",MTA 1 Urdu (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaurdu_delivery@350117/master.m3u8 +#EXTINF:-1 tvg-id="MTA2.uk",MTA 2 (720p) +https://ooyalahd2-f.akamaihd.net/i/mtach7audio_delivery@65519/master.m3u8 +#EXTINF:-1 tvg-id="MTA2Urdu.uk",MTA 2 Urdu (720p) +https://ooyalahd2-f.akamaihd.net/i/mtageraudio_delivery@308889/master.m3u8 +#EXTINF:-1 tvg-id="MTA3.uk",MTA 3 (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtach7_delivery@348438/master.m3u8 +#EXTINF:-1 tvg-id="MTAAfrica.uk",MTA Africa (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaengaudio_delivery@138280/master.m3u8 +#EXTINF:-1 tvg-id="",n TV (US Eastern) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22680_3BR3zocwi9/-0500/c.m3u8 +#EXTINF:-1 tvg-id="NoorTV.uk",Noor TV (480p) [Not 24/7] +https://ls1.serverdump.com/stream3.m3u8 +#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk",Qello Concerts by Stingray (1080p) [Not 24/7] +https://csm-e-stv.tls1.yospace.com/csm/live/211935407.m3u8 +#EXTINF:-1 tvg-id="RugbyMensSevens.uk",Rugby Men's Sevens (288p) +https://esmhls1-i.akamaihd.net/hls/live/510580/hls1/playlist.m3u8 +#EXTINF:-1 tvg-id="RugbyWomensSevens.uk",Rugby Women's Sevens (288p) +https://esmhls2-i.akamaihd.net/hls/live/510581/hls2/playlist.m3u8 +#EXTINF:-1 tvg-id="RugbyWorldTV.uk",Rugby World TV (720p) +https://esmhls3-i.akamaihd.net/hls/live/510582/hls3/playlist.m3u8 +#EXTINF:-1 tvg-id="S4C.uk",S4C (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:s4cpbs/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="SangatTelevision.uk",Sangat Television (368p) [Not 24/7] +https://api.new.livestream.com/accounts/6986636/events/5362122/live.m3u8 +#EXTINF:-1 tvg-id="SheffieldLiveTV.uk",Sheffield Live TV (360p) [Not 24/7] +http://tv.sheffieldlive.org/hls/main.m3u8 +#EXTINF:-1 tvg-id="SkiTV.uk",Ski TV (1080p) [Not 24/7] +https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-Zee/193.m3u8 +#EXTINF:-1 tvg-id="SkyNews.uk",Sky News (576p) [Geo-blocked] +http://skydvn-sn-mobile-prod.skydvn.com/skynews/1404/latest.m3u8 +#EXTINF:-1 tvg-id="SkyNews.uk",Sky News (720p) [Geo-blocked] +http://skynews-sn-cdhls.ak-cdn.skydvn.com/cdhlsskynews/1404/latest.m3u8 +#EXTINF:-1 tvg-id="SkyNewsArabia.uk",Sky News Arabia (720p) [Not 24/7] +https://stream.skynewsarabia.com/hls/sna.m3u8 +#EXTINF:-1 tvg-id="SkyNewsArabia.uk",Sky News Arabia (Portrait) (1280p) [Not 24/7] +https://stream.skynewsarabia.com/vertical/vertical.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra1.uk",Sky News Extra 1 (540p) +https://skynewsau-live.akamaized.net/hls/live/2002689/skynewsau-extra1/master.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra2.uk",Sky News Extra 2 (540p) [Not 24/7] +https://skynewsau-live.akamaized.net/hls/live/2002690/skynewsau-extra2/master.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra3.uk",Sky News Extra 3 (1080p) +https://skynewsau-live.akamaized.net/hls/live/2002691/skynewsau-extra3/master.m3u8 +#EXTINF:-1 tvg-id="Spike.uk",Spike (480p) [Offline] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 +#EXTINF:-1 tvg-id="SportsTonight.uk",Sports Tonight (576p) [Not 24/7] +http://sports.ashttp9.visionip.tv/live/visiontvuk-sports-sportstonightlive-hsslive-25f-4x3-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportyStuffTV.uk",Sporty Stuff TV (720p) +https://ayozat-live.secure2.footprint.net/egress/bhandler/ayozat/sportystufftv/playlist.m3u8 +#EXTINF:-1 tvg-id="SpotlightTV.uk",Spotlight TV (576p) +https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-spotlighttv-hsslive-25f-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="STV.uk",STV (1080p) [Timeout] +https://csm-e-stv.tls1.yospace.com/csm/live/139900483.m3u8 +#EXTINF:-1 tvg-id="STVPlus1.uk",STV+1 (1080p) [Timeout] +https://csm-e-stv.tls1.yospace.com/csm/live/181023311.m3u8 +#EXTINF:-1 tvg-id="TheBoxUK.uk",The Box UK (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/thebox/ +#EXTINF:-1 tvg-id="TheBoxUK.uk",The Box UK (576p) [Not 24/7] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/thebox/ +#EXTINF:-1 tvg-id="TJC.uk",TJC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(TJCOTT)/index.m3u8 +#EXTINF:-1 tvg-id="V2BEAT.uk",V2BEAT (720p) [Not 24/7] +https://abr.de1se01.v2beat.live/playlist.m3u8 +#EXTINF:-1 tvg-id="V2BEAT.uk",V2BEAT (720p) [Not 24/7] +https://de1se01.v2beat.live/playlist.m3u8 +#EXTINF:-1 tvg-id="WilliamHillBTV1.uk",William Hill BTV 1 (720p) +https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_tklzcakd_1_1/chunklist.m3u8 +#EXTINF:-1 tvg-id="WilliamHillBTV2.uk",William Hill BTV 2 (720p) +https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_3838s0ja_1_1/chunklist.m3u8 diff --git a/streams/uk_samsung.m3u b/streams/uk_samsung.m3u new file mode 100644 index 000000000..fdf7c774e --- /dev/null +++ b/streams/uk_samsung.m3u @@ -0,0 +1,125 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BeanoTV.uk",Beano TV (720p) [Offline] +https://beanostudios-beanotv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubbingTV.uk",Clubbing TV (720p) +https://clubbingtv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNInternationalUK.us",CNN International UK (720p) [Not 24/7] +https://cnn-cnninternational-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyChannel.uk",Comedy Channel (1080p) +https://uksono1-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00434-tricoast-darkmatter-spanish-samsunguk/playlist.m3u8 +#EXTINF:-1 tvg-id="DiscoverFilm.uk",Discover.Film (720p) [Offline] +https://discoverfilm-discoverfilm-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] +https://dust-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) +https://edgesport-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://rakuten-euronews-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglishviaAlchimie.fr",Euronews English via Alchimie (720p) [Offline] +https://alchimie-euronews-4-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.uk",FailArmy (720p) [Offline] +https://failarmy-international-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEngland.fr",Fashion TV (England) (1080p) [Not 24/7] +https://fashiontv-fashiontv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] +https://spi-filmstream-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Filmzie.uk",Filmzie (720p) [Offline] +https://filmzie-filmzie-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FTFForthefans.uk",FTF For the fans (720p) +https://elevensports-uk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) +https://fueltv-fueltv-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GoUSA.uk",Go USA (720p) [Offline] +https://brandusa-gousa-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) +https://gustotv-samsung-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseandCountry.uk",Horse and Country (720p) +https://hncfree-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] +https://alchimie-humanity-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) +https://inwild-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGamerTV.uk",Kid Gamer TV (1080p) [Offline] +https://studio71-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LuxeTV.fr",Luxe TV (720p) [Offline] +https://alchimie-luxe-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVUK.us",MavTV UK (720p) [Offline] +https://mavtv-mavtvglobal-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] +https://alchimie-mmatv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoviesCentral.fr",Movies Central (720p) [Offline] +https://alchimie-movies-central-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphereuk-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSAmerica.us",PBS America (720p) +https://pbs-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetKnowledge.uk",Planet Knowledge (720p) [Offline] +https://vod365-planet-knowledge-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://playerstv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Pocketwatch.uk",Pocket watch (720p) [Offline] +https://pocketwatch-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk",Qello Concerts by Stingray (1080p) +https://stingray-qelloconcerts-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.fr",Qwest TV Classical (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestclassic-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr",Qwest TV Jazz & Beyond (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestjazz-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.fr",Qwest TV Mix (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestmix-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesUK.es",Rakuten TV Action Movies UK (720p) [Offline] +https://rakuten-actionmovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesUK.es",Rakuten TV Comedy Movies UK (720p) [Offline] +https://rakuten-comedymovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaUK.es",Rakuten TV Drama UK (720p) [Offline] +https://rakuten-tvshows-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesUK.es",Rakuten TV Family Movies UK (720p) [Offline] +https://rakuten-family-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightUK.es",Rakuten TV Spotlight UK (720p) [Offline] +https://rakuten-spotlight-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.uk",Real Stories (720p) +https://realstories-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) +https://sofytv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SparkTv.uk",Spark Tv (720p) +https://sparktv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsChannelNetwork.us",Sports Channel Network (720p) [Offline] +https://vod365-sports-channel-network-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.uk",Stingray Karaoke (1080p) +https://stingray-karaoke-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Supertoons.us",Supertoons (720p) [Offline] +https://kedoo-supertoonstv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.uk",Tastemade (720p) +https://tastemade-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.uk",Teletubbies (720p) [Offline] +https://dhx-teletubbies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (720p) +https://tennischannel-intl-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Tennis Channel (UK) (720p) +https://tennischannel-int-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveEngland.us",The Pet Collective UK (720p) [Offline] +https://the-pet-collective-international-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeLine.uk",Time Line (720p) +https://timeline-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Toongoggles.uk",Toongoggles (720p) [Offline] +https://toongoggles-toongoggles-3-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Truly.uk",Truly (720p) [Offline] +https://barcroft-truly-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Unearth.fr",Unearth (720p) [Offline] +https://alchimie-unearth-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) [Offline] +https://venntv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk",Wonder (720p) +https://wonder-samsung-uk.amagi.tv/playlist.m3u8 diff --git a/channels/uk_sportstribal.m3u b/streams/uk_sportstribal.m3u similarity index 51% rename from channels/uk_sportstribal.m3u rename to streams/uk_sportstribal.m3u index 1b178b733..f145fea7d 100644 --- a/channels/uk_sportstribal.m3u +++ b/streams/uk_sportstribal.m3u @@ -1,23 +1,23 @@ #EXTM3U -#EXTINF:-1 tvg-id="ChannelFight.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjNf/ChannelFight_490x490.png" group-title="Sports",Channel Fight (720p) [Offline] +#EXTINF:-1 tvg-id="ChannelFight.us",Channel Fight (720p) [Offline] https://live.serverside.ai/hls/7dc5907c-6d6e-45ef-a24f-e28353aa8e98/master.m3u8?api-key=4a09ede0-52da-4cd9-aa82-3b36d8dfa59b&channel_name=Channel+Fight&channel_partner=Channel+Fight&consent=&content_genre=MMA&content_id=a2e646e0_20210305163052_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:52.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=a2e646e0_20210305163052_D0CF72b -#EXTINF:-1 tvg-id="EDGESport.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjhf/EdgeSport_400x400.png" group-title="Sports",EDGESport (1080p) +#EXTINF:-1 tvg-id="EDGESport.us",EDGESport (1080p) https://edgesports-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ForTheFans.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzNf/FTF_720x720.png" group-title="Sports",For The Fans (720p) [Offline] +#EXTINF:-1 tvg-id="ForTheFans.us",For The Fans (720p) [Offline] https://live.serverside.ai/hls/0f7f0c30-e13d-41b6-9e15-9a9de7ef979f/master.m3u8?api-key=4c19fe78-8ce2-4f88-9a39-f202dc24236f&channel_name=For+The+Fans&channel_partner=For+The+Fans&consent=&content_genre=Sport&content_id=cf1e9700_20210305160000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:00:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=cf1e9700_20210305160000_D0CF72b -#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjRf/HardKnocks_490x490.png" group-title="Sports",Hard Knocks (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (1080p) [Not 24/7] https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-SportsTribal/121.m3u8 -#EXTINF:-1 tvg-id="IGNTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzNTVf/IGN_512x512.png" group-title="Kids",IGN TV (720p) +#EXTINF:-1 tvg-id="IGNTV.us",IGN TV (720p) https://ign-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LaxSportsNetwork.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjZf/LSN_720x720.png" group-title="Sports",Lax Sports Network (720p) [Offline] +#EXTINF:-1 tvg-id="LaxSportsNetwork.us",Lax Sports Network (720p) [Offline] https://live.serverside.ai/hls/4a34ba0f-2ffd-47cf-9f8d-5e91ede78e5a/master.m3u8?api-key=50f33b8a-4a95-4f68-b83a-2f2b00c4251d&channel_name=Lacrosse+Channel&channel_partner=Lacrosse+Channel&consent=&content_genre=Lacrosse&content_id=11e1c5cf_20210305163000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=11e1c5cf_20210305163000_D0CF72b -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjdf/PAC12_720x720.png" group-title="Sports",Pac12 Insider (720p) +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac12 Insider (720p) https://pac12-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PokerNightInAmerica.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzJf/PokerNight_720x720.png" group-title="Sports",Poker Night In America (720p) [Offline] +#EXTINF:-1 tvg-id="PokerNightInAmerica.us",Poker Night In America (720p) [Offline] https://rushstreet-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SKITV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjlf/SkiTV_400x400.png" group-title="Sports",SKI TV (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="SKITV.us",SKI TV (1080p) [Not 24/7] https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-SportsTribal/193.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzNTZf/SportsGrid_512x512.png" group-title="Sports",SportsGrid (1080p) +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) https://sportsgrid-tribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Sports",World Poker Tour (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-SportsTribal/120.m3u8 diff --git a/streams/unsorted.m3u b/streams/unsorted.m3u new file mode 100644 index 000000000..a294a7447 --- /dev/null +++ b/streams/unsorted.m3u @@ -0,0 +1,415 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",1A Network (720p) +https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8 +#EXTINF:-1 tvg-id="",Adria Music RS [Timeout] +http://91.212.150.248/AdriaMusicTV/index.m3u8 +#EXTINF:-1 tvg-id="",AdriaNet +http://79.106.48.2:4578/live/adriamed/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ahi TV Kirsehir (576p) +http://yayin3.canlitv.com:1935/canlitv/ahitv/playlist.m3u8 +#EXTINF:-1 tvg-id="AkilliTV.tr",Akilli TV [Timeout] +https://stream41.radyotelekom.com.tr/stream/m3u8/a5a7e883a71429fe9e605bb5d25d6185/chunklist_w895929071.m3u8 +#EXTINF:-1 tvg-id="",Al-Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 +#EXTINF:-1 tvg-id="",Al-Hurra Iraq (720p) +https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 +#EXTINF:-1 tvg-id="",Al-Iraqiya [Offline] +https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/imn/general2/chunks.m3u8 +#EXTINF:-1 tvg-id="",Al-Rasheed (408p) +https://media1.livaat.com/AL-RASHEED-HD/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Al-Sharqiya (1080p) +https://5d94523502c2d.streamlock.net/home/mystream/chunklist_w1408191520.m3u8 +#EXTINF:-1 tvg-id="",Al-Sharqiya News (1080p) +https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/chunklist_w449457930.m3u8 +#EXTINF:-1 tvg-id="",ALB Music (720p) [Not 24/7] +http://albmusic.dyndns.tv:1935/albuk/albmus.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",AlbDreams TV (720p) +http://live.albavision.net:1123/live/albdreams.m3u8 +#EXTINF:-1 tvg-id="",AlbKanale Music TV +https://albportal.net/albkanalemusic.m3u8 +#EXTINF:-1 tvg-id="",ATN Europe [Offline] +https://d10rltuy0iweup.cloudfront.net/ATNINT/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ava Entertainment (720p) +https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/c9aa559e_1_3310000/chunklist.m3u8 +#EXTINF:-1 tvg-id="",AXS TV NOW +https://dikcfc9915kp8.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bajo Cero TV [Offline] +https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Banovina TV +https://5b57bb229a2e6.streamlock.net/live/televizija/playlist.m3u8 +#EXTINF:-1 tvg-id="Belarus24.by",Belarus 24 (720p) +http://serv30.vintera.tv:8081/belarus24/belarus24/playlist.m3u8 +#EXTINF:-1 tvg-id="",Beteve +https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/protocol/https/uiConfId/42816492/a.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 +#EXTINF:-1 tvg-id="",Bitlis TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/bitlistv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) +http://live-edge01.telecentro.net.ar:1935/live/26hd-720/playlist.m3u8 +#EXTINF:-1 tvg-id="",Canal Acequia (432p) [Not 24/7] +https://api.new.livestream.com/accounts/6450028/events/5813077/live.m3u8 +#EXTINF:-1 tvg-id="",Canal Coín +http://stream.fion.es:1936/Canal_Coin/canalcoin.stream/master.m3u8 +#EXTINF:-1 tvg-id="",Canal Orbe 21 +https://cdn2.zencast.tv:30443/orbe/orbe21smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.es",Canal Parlamento (360p) +http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 +#EXTINF:-1 tvg-id="",Canalcosta TV +https://5d8d85cf2c308.streamlock.net:1936/CanalcostaTV/WXP6YT/playlist.m3u8 +#EXTINF:-1 tvg-id="",Carolina TV +https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/carolinatv/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBTV Now (1080p) +https://oj7lng29dg82-hls-live.5centscdn.com/lives/f7b44cfafd5c52223d5498196c8a2e7b.sdp/index.m3u8 +#EXTINF:-1 tvg-id="",Cekmeköy TV +https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv_1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",CGNTV +http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Chive TV +http://a.jsrdn.com/broadcast/4df1bf71c1/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",Contact Vision TV (540p) +http://contactvision.flashmediacast.com:1935/contactvision/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",CostadelSol TV +https://limited11.todostreaming.es/live/benalmadena-livestream.m3u8 +#EXTINF:-1 tvg-id="",Cowboy Theater (720p) +https://simultv.s.llnwi.net/o054/CowboyTheater/interlink.m3u8 +#EXTINF:-1 tvg-id="",Cut Up N Cook (720p) +https://simultv.s.llnwi.net/n4s4/CutUpNCook/interlink.m3u8 +#EXTINF:-1 tvg-id="",Cycle World [Offline] +http://a.jsrdn.com/broadcast/3e5befe5dd/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="",DeepHouse District +https://eu-nl-012.worldcast.tv/dancetelevisiontwo/dancetelevisiontwo.m3u8 +#EXTINF:-1 tvg-id="",Dijlah Tarab +https://ghaasiflu.online/tarab/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Dijlah TV +https://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Dimensions +https://simultv.s.llnwi.net/o054/Dimensions/interlink.m3u8 +#EXTINF:-1 tvg-id="",Drita TV +https://nesertv.live/DRITATV-5879/playlist.m3u8 +#EXTINF:-1 tvg-id="DRTV.nl",DRT TV (720p) +https://broadcasttr.com:446/drt/bant1/chunklist_w172830844.m3u8?hash=ff9087a17e9ff7a7a214048d240d21c0 +#EXTINF:-1 tvg-id="",EBS Kids [Offline] +rtsp://ebsonair.ebs.co.kr/ebsutablet500k/tablet500k +#EXTINF:-1 tvg-id="",Elbekanal Schönebeck +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",ems TV Lingen (280p) +https://5889e7d0d6e28.streamlock.net/ev1tv-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",ESTV +https://stream.ads.ottera.tv/playlist.m3u8?network_id=461 +#EXTINF:-1 tvg-id="",Fibracat TV (1080p) +https://cdn-02.fibracat.cat/fibracattv/index.m3u8 +#EXTINF:-1 tvg-id="FightNetwork.ca",Fight Network (1080p) +https://d12a2vxqkkh1bo.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Filstalwelle Göppingen (576p) +http://62.113.210.2/filstalwelle-live/_definst_/mp4:livestream/chunklist_w660034089.m3u8 +#EXTINF:-1 tvg-id="",Folk TV +http://584b0aa350b92.streamlock.net:1935/folk-tv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Friesischer Rundfunk Friedeburg [Offline] +https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/_definst_/mp4:friesischerrundfunk/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fun Radio (720p) +https://livevideo.infomaniak.com/streaming/livecast/funradiovisionhd/playlist.m3u8 +#EXTINF:-1 tvg-id="",Funnybone (720p) +https://simultv.s.llnwi.net/o054/FunnyBone/interlink.m3u8 +#EXTINF:-1 tvg-id="",Glas Drine +http://glasdrine.cutuk.net:8081/433ssdsw/GlasDrineSD/playlist.m3u8 +#EXTINF:-1 tvg-id="",Haldensleben TV (720p) +https://578d8e1867e87.streamlock.net/medienasa-vod/_definst_/mp4:hdl_sendung_720p.mp4/playlist.m3u8 +#EXTINF:-1 tvg-id="",HD 365 +https://netstreaming.eu:8080/hls/hd365.m3u8 +#EXTINF:-1 tvg-id="",Honor TV +https://a.jsrdn.com/broadcast/d5b48/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",Hrvatski Radio Karlovac [Offline] +https://5b57bb229a2e6.streamlock.net/live/_definst_/karlovac/playlist.m3u8 +#EXTINF:-1 tvg-id="",IDG (720p) +http://a.jsrdn.com/broadcast/529a360c04/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",Impact Wrestling (1080p) +https://d2tuwvs0ja335j.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",India TV (480p) +https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/indiatv-origin/live2/chunks.m3u8 +#EXTINF:-1 tvg-id="",Iranintl.Radio +http://51.210.199.46/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Jesus Shelanu (720p) +https://1247634592.rsc.cdn77.org/1247634592/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Kanal Alanya +https://broadcasttr.com:446/kanala/bant1/chunklist_w343770598.m3u8?hash=2ed1974639ec674a33ed440298136dcd +#EXTINF:-1 tvg-id="",Kartoon Circus +https://simultv.s.llnwi.net/o062/KartoonCircus/interlink.m3u8 +#EXTINF:-1 tvg-id="",Kid Central (720p) +https://simultv.s.llnwi.net/o058/KidCentral/interlink.m3u8 +#EXTINF:-1 tvg-id="",Klan Kosova +http://93.157.62.180/KlanKosova/index.m3u8 +#EXTINF:-1 tvg-id="",Klan Plus +http://93.157.62.180/KlanPlus/index.m3u8 +#EXTINF:-1 tvg-id="",Korça + (1080p) [Not 24/7] +http://32.shqiptv.org/korca/albplus/index.m3u8 +#EXTINF:-1 tvg-id="",KulturMD Magdeburg +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KurirTV.rs",Kurir TV (720p) +http://51.15.154.138/providus/live2805_hq/index.m3u8 +#EXTINF:-1 tvg-id="",KVF Faroe Island (360p) +https://w2.kringvarp.fo/uttanlands/_definst_/smil:uttanlands.smil/chunklist_w587901821_b772000_slfao.m3u8 +#EXTINF:-1 tvg-id="",La Muscle TV (360p) +https://streamcdn.lamuscle.com/lamtv-origin/smil:monsterworkout-tricepspt1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ländle Tv (1080p) +https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8 +#EXTINF:-1 tvg-id="",Latest TV [Not 24/7] +https://5a0e89631aa14.streamlock.net/LatestTV/LatestTV/playlist.m3u8 +#EXTINF:-1 tvg-id="",Latvijas Radio 1 +http://5a44e5b800a41.streamlock.net:1935/liveVLR1/mp4:LR1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Lausitzwelle Fernsehen (1080p) +https://5856e1a25f71a.streamlock.net/easycast9-live/_definst_/mp4:livestreamhd10/playlist.m3u8 +#EXTINF:-1 tvg-id="",Lifestyle +https://simultv.s.llnwi.net/o058/Lifestyle/interlink.m3u8 +#EXTINF:-1 tvg-id="",MDF.1 Magdeburg +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",Messinia TV +http://176.9.123.140:1935/messinia/messinia/master.m3u8 +#EXTINF:-1 tvg-id="",Military Home Life (720p) +https://simultv.s.llnwi.net/n4s4/MilitaryHomeLife/interlink.m3u8 +#EXTINF:-1 tvg-id="",Minhaj TV (720p) +https://api.new.livestream.com/accounts/547271/events/4237509/live.m3u8 +#EXTINF:-1 tvg-id="",MMA Junkie +http://a.jsrdn.com/broadcast/80f6ba72c8/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",Mola TV (720p) +http://ventdelnord.tv:8080/mola/directe.m3u8 +#EXTINF:-1 tvg-id="",Monarch TV (360p) +https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/low/c.m3u8 +#EXTINF:-1 tvg-id="",Motorcyclist [Offline] +http://a.jsrdn.com/broadcast/256ad9e679/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="MotorvisionTV.de",Motorvision TV (720p) +https://stream.ads.ottera.tv/playlist.m3u8?network_id=535 +#EXTINF:-1 tvg-id="",Movie Kingdom TV +https://a.jsrdn.com/broadcast/e9b4093a41/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="",MTC +http://mellitv.tulix.tv:1935/mellitv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Mundo TV +https://59f1cbe63db89.streamlock.net:1443/mundotv/_definst_/mundotv/playlist.m3u8 +#EXTINF:-1 tvg-id="",MUSIC + +http://s02.diazol.hu:10192/stream.m3u8 +#EXTINF:-1 tvg-id="",Muxx.tv (1080p) +https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Mythos +https://simultv.s.llnwi.net/o058/Mythos/interlink.m3u8 +#EXTINF:-1 tvg-id="NasaTV.mk",Naša TV (1080p) [Not 24/7] +https://stream.nasatv.com.mk/hls/nasatv_live.m3u8 +#EXTINF:-1 tvg-id="NeaTV.gr",Nea TV (720p) +https://live.neatv.gr:8888/hls/neatv_high/index.m3u8 +#EXTINF:-1 tvg-id="",Neser TV +https://nesertv.live/ntv/livestream/tracks-v1a1/index.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar",NET TV (720p) +https://unlimited1-us.dps.live/nettv/nettv.smil/nettv/livestream1/playlist.m3u8 +#EXTINF:-1 tvg-id="News18Lokmat.in",News18 Lokmat (504p) +https://news18lokmat-lh.akamaihd.net/i/n18lokmat_1@178974/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="",News 24 Albania +http://tv.balkanweb.com:8081/news24/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Nisville TV RS +http://92.60.237.32:1935/live/nisville/playlist.m3u8 +#EXTINF:-1 tvg-id="",OF-TV Offenbach (720p) +https://5864df9ceac85.streamlock.net/germanpictures-live/_definst_/mp4:streamschedule/playlist.m3u8 +#EXTINF:-1 tvg-id="",Offener Kanal Fulda +https://s.ok54.de/mok-fu/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Dessau +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Magdeburg (1080p) +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Mainz +https://s.ok54.de/oktvmainz/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Merseburg +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Salzwedel +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",OK Wernigerode +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",ORA News +http://93.157.62.180/OraNews/index.m3u8 +#EXTINF:-1 tvg-id="",Pardesi TV (720p) +http://stream.pardesitv.online/pardesi/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Persian Bazar +http://stream.persiantv1.com/ptv1/playlist.m3u8 +#EXTINF:-1 tvg-id="",Popular Science TV [Offline] +http://a.jsrdn.com/broadcast/447912f76b/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="PrimeAsiaTV.ca",Prime Asia TV (720p) +http://primeasia.dyndns.tv:8080/Live_web_250/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="",Prime Time Drama +https://simultv.s.llnwi.net/o064/PrimeTimeDrama/interlink.m3u8 +#EXTINF:-1 tvg-id="",Providence Christian Network +https://simultv.s.llnwi.net/n4s4/ProvidenceNetwork/interlink.m3u8 +#EXTINF:-1 tvg-id="",Punjabi TV +http://cdn9.live247stream.com/punjabitvcanada/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Punkteins +https://5852afe96c9bb.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="",PunktUm Hettstedt (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",Radio Javan TV (1080p) +https://stream.rjtv.tv/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Radio Weser TV Bremen +https://5857499ee635b.streamlock.net/radiowesertv-live/_definst_/mp4:livestreamTV/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ran1 Dessau-Roßlau (1080p) +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",RBW Bitterfeld-Wolfen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ready Set Action (720p) +https://simultv.s.llnwi.net/o059/ReadySetAction/interlink.m3u8 +#EXTINF:-1 tvg-id="RedBullTV.at",Red Bull TV (360p) +https://rbmn-live.akamaized.net/hls/live/622817/BoRB-US/master_928.m3u8 +#EXTINF:-1 tvg-id="RedTV.rs",Red TV (720p) +https://live.rednet.rs/providus/redtv_multi_hq/index.m3u8 +#EXTINF:-1 tvg-id="RedeTV.br",RedeTV! Tocantins (720p) [Offline] +https://59f1cbe63db89.streamlock.net:1443/redetvro/_definst_/redetvro/playlist.m3u8 +#EXTINF:-1 tvg-id="",Report TV +https://deb10stream.duckdns.org/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Rete 7 (576p) +https://stream.ets-sistemi.it/live.rete7/rete7/playlist.m3u8 +#EXTINF:-1 tvg-id="",Retro Plus 2 HD +https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/_definst_/retroplussenal2/playlist.m3u8 +#EXTINF:-1 tvg-id="",Retro Plus HD +https://59f1cbe63db89.streamlock.net:1443/retroplustv/_definst_/retroplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="",RFH Harz (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RheinMainTV.de",RheinMain TV (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",RMC +https://rmc2hdslive-lh.akamaihd.net/i/DVMR_RMC@167269/master.m3u8 +#EXTINF:-1 tvg-id="",RTSH 1 +http://79.106.48.2:4578/live/rtsh_1mob_pp2/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH 2 +http://79.106.48.2:4578/live/rtsh_2mob_p2/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH 3 (270p) +http://79.106.48.2:4578/live/rtsh3mobp1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH 24 +http://79.106.48.2:4578/live/rtsh_24_mob/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Film (270p) +http://79.106.48.2:4578/live/rtsh_film_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Gjirokastra (360p) +http://79.106.48.2:4578/live/rtsh_gjirokastra_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Kids +http://79.106.48.2:4578/live/rtsh_femije_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Korça (360p) +http://79.106.48.2:4578/live/rtsh_korca_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Kukesi +http://79.106.48.2:4578/live/rtsh_kukesi_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Muzike +http://79.106.48.2:4578/live/rtsh_muzike_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Plus +http://79.106.48.2:4578/live/rtsh_plus_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Sat (360p) +http://79.106.48.2:4578/live/rtsh_sat_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Shkodra (360p) +http://79.106.48.2:4578/live/rtsh_shkodra_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTSH Shqip +http://79.106.48.2:4578/live/rtsh_shqip_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTV Arberia Musik +http://rtvarberia4.flashmediacast.com:1935/RtvArberia4/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTV Herceg-Bosne +https://prd-hometv-live-open.spectar.tv/ERO_1_083/576p/chunklist.m3u8 +#EXTINF:-1 tvg-id="",RTV Ilirida +http://uk4.streamingpulse.com:1935/rtvilirida/rtvilirida/playlist.m3u8 +#EXTINF:-1 tvg-id="",RTV MIR [Offline] +https://rtvmir.info/MIR/index.m3u8 +#EXTINF:-1 tvg-id="",RTV USK +http://wslb.dobratv.net:8877/uzivo/usk/index.m3u8 +#EXTINF:-1 tvg-id="",Rudana +https://live.rudana.com.ua/hls/stream_FHD.m3u8 +#EXTINF:-1 tvg-id="SandzakTV.rs",Sandzak TV (576p) +https://vod1.laki.eu/sandzak/video.m3u8 +#EXTINF:-1 tvg-id="",Sat7 Türk (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/sat7turkpublish/sat7turk_720p/chunks_dvr.m3u8 +#EXTINF:-1 tvg-id="",Seenluft24 +https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/mp4:livestreamhd20/playlist.m3u8 +#EXTINF:-1 tvg-id="",SimSi TV [Timeout] +https://simultv.s.llnwi.net/o060/SimSiTV/interlink.m3u8 +#EXTINF:-1 tvg-id="",Slap Tech +https://simultv.s.llnwi.net/o061/SlapTech/interlink.m3u8 +#EXTINF:-1 tvg-id="",Sol Televisión +http://190.211.140.89:8081/SVTranscoder/SOLTVabr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Sonus FM TV [Not 24/7] +https://60015180a7f57.streamlock.net:444/public/stream_source/chunklist_w1017805699.m3u8 +#EXTINF:-1 tvg-id="",Sophia TV (720p) +https://www.onairport.live/sophiatv-es-live/livestream_high/master.m3u8 +#EXTINF:-1 tvg-id="",Space Channel +https://stream.ads.ottera.tv/playlist.m3u8?network_id=565 +#EXTINF:-1 tvg-id="",Spydar +https://simultv.s.llnwi.net/o062/Spydar/interlink.m3u8 +#EXTINF:-1 tvg-id="",Start TV +https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8 +#EXTINF:-1 tvg-id="",Studio 47 +https://5852afe96c9bb.streamlock.net/studio47-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="",STV (720p) +http://89.201.163.244:8080/hls/hdmi.m3u8 +#EXTINF:-1 tvg-id="",Super TV Media +https://mirtv.club/live/mirtv/index.m3u8 +#EXTINF:-1 tvg-id="",Switch (720p) +https://simultv.s.llnwi.net/o062/Switch/interlink.m3u8 +#EXTINF:-1 tvg-id="",Sylt1 +https://5aec29c5dd23b.streamlock.net:8443/sylt1/_definst_/sylt1_high1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Syri TV (720p) +https://tv.syri.net/syrilive/webtv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Teleonuba +https://5d8d85cf2c308.streamlock.net:1936/Teleonuba/605oPXx3/playlist.m3u8 +#EXTINF:-1 tvg-id="",Televizija Radio Banovina [Offline] +https://5b57bb229a2e6.streamlock.net/live/smil:banovina.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",teltOwkanal +https://5856e1a25f71a.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd8/playlist.m3u8 +#EXTINF:-1 tvg-id="",Temple TV +https://streaming.temple.edu/tutvlive/_definst_/mp4:8BRYCQMB/chunklist_w1944862924.m3u8 +#EXTINF:-1 tvg-id="",Tempo TV +https://waw2.artiyerelmedya.net/tempotv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="",The Archive (1080p) +https://ov.ottera.tv/live/master.m3u8?channel=mcom_ta_us +#EXTINF:-1 tvg-id="",The Grapevine +https://ov.ottera.tv/live/master.m3u8?channel=mcom_gv_us +#EXTINF:-1 tvg-id="",Tide TV (1080p) +https://5889e7d0d6e28.streamlock.net/tide-live/_definst_/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Top News +http://93.157.62.180/TopNews/index.m3u8 +#EXTINF:-1 tvg-id="",TopEstrada TV +http://live.topestrada.com/live/topestrada/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV2 Fyn (1080p) +https://cdnapisec.kaltura.com/p/1966291/sp/196629100/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/uiConfId/30288171/a.m3u8 +#EXTINF:-1 tvg-id="",TV Birigui (640p) +https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/_definst_/tvdigitalbirigui/chunklist_w763334596.m3u8 +#EXTINF:-1 tvg-id="",TV Brusque (720p) +https://5ad482a77183d.streamlock.net/rodrigotvbrusque.com.br/_definst_/5d880199c902eb4a1e8df00d/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Destak (360p) +https://59f2354c05961.streamlock.net:1443/pascoal/_definst_/pascoal/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Dielli (720p) +http://stream.tvdielli.com:8081/dielli/index.m3u8 +#EXTINF:-1 tvg-id="TVGazeta.br",TV Gazeta (720p) +http://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 +#EXTINF:-1 tvg-id="TVGuara.br",TV Guará (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvguara/_definst_/tvguara/chunklist.m3u8 +#EXTINF:-1 tvg-id="",TV Halle (720p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Johaniter +https://nesertv.live/webstream/index.m3u8 +#EXTINF:-1 tvg-id="",TV Marajoara (720p) +https://video01.kshost.com.br:4443/tv31966/tv31966/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Max +https://59f1cbe63db89.streamlock.net:1443/tvmax/_definst_/tvmax/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Pai Eterno +https://59f1cbe63db89.streamlock.net:1443/teste01/_definst_/teste01/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVPirot.rs",TV Pirot (240p) [Not 24/7] +https://5bc45691ca49f.streamlock.net/tvpirot/uzivo/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV S1 +https://sradio.ipradio.rs/sradio/radiostv/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Sharri +http://uk4.streamingpulse.com:1935/TVSHARRI/TVSHARRI/playlist.m3u8 +#EXTINF:-1 tvg-id="",TV Tema +http://134.209.238.38/hls/test.m3u8 +#EXTINF:-1 tvg-id="",TV União (720p) [Not 24/7] +https://596639ebdd89b.streamlock.net/tvuniao/tvuniao/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEBahia.br",TVE RS (1080p) +http://streaming.procergs.com.br:1935/tve/stve/playlist.m3u8 +#EXTINF:-1 tvg-id="",TVnet +https://mn-nl.mncdn.com/tvnet/tvnet/chunklist.m3u8 +#EXTINF:-1 tvg-id="",TVW +https://wowzaprod13-i.akamaihd.net/hls/live/254985/29c28f19/persisTarget_9375922947_TVWAIR_247_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="",Urban Revolution +https://www.urbanrevolution.es:444/live/5e6d8470a3832/index.m3u8 +#EXTINF:-1 tvg-id="",WATAN-E-MAA +https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8 +#EXTINF:-1 tvg-id="",WTV Wettin +http://62.113.210.250:1935/medienasa-live/ok-wettin_high/playlist.m3u8 +#EXTINF:-1 tvg-id="",XZone (720p) +https://simultv.s.llnwi.net/o060/xzone/interlink.m3u8 diff --git a/streams/us.m3u b/streams/us.m3u new file mode 100644 index 000000000..d05ab0f34 --- /dev/null +++ b/streams/us.m3u @@ -0,0 +1,1939 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3ABN.us",3ABN (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652042/secure/master.m3u8 +#EXTINF:-1 tvg-id="K17JIDT3.us",3ABN Dare to Dream (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652313/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNFrancais.us",3ABN Français (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652314/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNInternational.us",3ABN International (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652312/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNKids.us",3ABN Kids (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652318/secure/master.m3u8 +#EXTINF:-1 tvg-id="K17JIDT4.us",3ABN Latino (480p) +http://uni5rtmp.tulix.tv:1935/bettervida/bettervida/playlist.m3u8 +#EXTINF:-1 tvg-id="K18JLD2.us",3ABN Latino (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652315/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNPraiseHimMusicChannel.us",3ABN Praise Him Music Channel (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/554145/secure/playlist.m3u8 +#EXTINF:-1 tvg-id="K17JIDT2.us",3ABN Proclaim! (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652317/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNRussia.us",3ABN Russia (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652316/secure/master.m3u8 +#EXTINF:-1 tvg-id="",3 Studios Cleveland OH (WKYC) (1080p) +https://livevideo01.wkyc.com/hls/live/2015504/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",7News Boston MA (WHDH) (540p) +https://bcsecurelivehls-i.akamaihd.net/hls/live/598046/4744899807001_1/livestream/master.m3u8 +#EXTINF:-1 tvg-id="",12 News Beaumont TX (KBMT) (1080p) +https://livevideo01.12newsnow.com/hls/live/2017379/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",23 ABC Bakersfield CA (KERO) (720p) +https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8 +#EXTINF:-1 tvg-id="30ADarcizzleOffshore.us",30A Darcizzle Offshore (720p) +https://30a-tv.com/darcizzle.m3u8 +#EXTINF:-1 tvg-id="30AInvestmentPitch.us",30A Investment Pitch (720p) +https://30a-tv.com/feeds/xodglobal/30atv.m3u8 +#EXTINF:-1 tvg-id="30AMusic.us",30A Music (720p) +https://30a-tv.com/music.m3u8 +#EXTINF:-1 tvg-id="30ASidewalks.us",30A Sidewalks (720p) +https://30a-tv.com/sidewalks.m3u8 +#EXTINF:-1 tvg-id="30ATheBeachShow.us",30A The Beach Show (720p) +https://30a-tv.com/beachy.m3u8 +#EXTINF:-1 tvg-id="247RetroTV.us",247 Retro TV (432p) [Not 24/7] +http://hlsdpi-cdn-chqtx02.totalstream.net/dpilive/247retro/ret/dai/playlist.m3u8 +#EXTINF:-1 tvg-id="A3Bikini.us",A3Bikini (720p) [Offline] +https://vcnbikininetwork.teleosmedia.com/stream/bikininetwork/a3bikini/playlist.m3u8 +#EXTINF:-1 tvg-id="ABTV.us",AB TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/abtvusa.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC 2 Atlanta GA (WSB-TV) (720p) +https://d2rwx6gwduugne.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10010_183ec1c7-4183-4661-803b-3ed282ffb625_LE/in/cmg-wsbtvnow-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 2 Baton Rouge LA (WBRZ) (720p) [Not 24/7] +http://cms-wowza.lunabyte.io/wbrz-live-1/_definst_/smil:wbrz-live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC 3 Corpus Christi TX (KIII) (1080p) +https://livevideo01.kiiitv.com/hls/live/2017378/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 4 Seattle WA (KOMO-TV) (720p) +https://content.uplynk.com/2c88dfe19e1447e6a6aa27e8e143a140.m3u8 +#EXTINF:-1 tvg-id="",ABC 5 Cleveland OH (WEWS-TV) (1080p) +https://wews-syndication.ewscloud.com/out/v1/72729e3f4dbe4aafbab93d6b1117e5f1/index.m3u8 +#EXTINF:-1 tvg-id="",ABC 5 Des Moines IA (WOI) (1080p) +https://livevideo01.weareiowa.com/hls/live/2011593/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 5 Minneapolis MN (KSTP) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/kstp-tv +#EXTINF:-1 tvg-id="",ABC 7 Denver CO (KMGH) (720p) +https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8 +#EXTINF:-1 tvg-id="",ABC 7 Los Angeles CA (KABC-TV) (720p) +https://content.uplynk.com/channel/ext/2118d9222a87420ab69223af9cfa0a0f/kabc_24x7_news.m3u8 +#EXTINF:-1 tvg-id="",ABC 7 Washington DC (WJLA) (720p) +https://content.uplynk.com/40cec2bf074c40f08932da03ab4510be.m3u8 +#EXTINF:-1 tvg-id="",ABC 8 Dallas TX (WFAA) (1080p) +https://livevideo01.wfaa.com/hls/live/2014541/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 8 Davenport IA (WQAD) (1080p) +https://livevideo01.wqad.com/hls/live/2011657/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 9 Orlando FL (WFTV) (720p) +https://d3qm7vzp07vxse.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10070_fe1f5f6c-cd0b-4993-a4a4-6db66be4f313_LE/in/cmg-wftvtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 10 Sacramento CA (KXTV) (1080p) +https://livevideo01.abc10.com/hls/live/2014547/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 11 Louisville KY (WHAS) (1080p) +https://livevideo01.whas11.com/hls/live/2016284/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 13 Grand Rapids MI (WZZM) (1080p) +https://livevideo01.wzzm13.com/hls/live/2016280/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 13 Las Vegas NV (KTNV) (720p) +https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8 +#EXTINF:-1 tvg-id="",ABC 13 Norfolk VA (WVEC) (1080p) +https://livevideo01.13newsnow.com/hls/live/2014545/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 15 Phoenix AZ (KNXV-TV) (720p) +https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8 +#EXTINF:-1 tvg-id="",ABC 16 Wilkes Barre PA (WNEP) (1080p) +https://livevideo01.wnep.com/hls/live/2011655/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 24 Austin TX (KVUE) (1080p) +https://livevideo01.kvue.com/hls/live/2016282/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC 24 Memphis TN (WATN-TV) (1080p) +https://livevideo01.localmemphis.com/hls/live/2011654/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",ABC Buffalo NY (WKBW-TV1) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ABCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="",ABC Detroit MI (WXYZ-TV1) (480p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC Detroit MI (WXYZ-TV1) (720p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ABCNews.us",ABC News (720p) +https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive1.us",ABC News Live 1 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023560/abcnews1/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive2.us",ABC News Live 2 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023561/abcnews2/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive3.us",ABC News Live 3 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023562/abcnews3/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive4.us",ABC News Live 4 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023563/abcnews4/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive5.us",ABC News Live 5 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023564/abcnews5/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive6.us",ABC News Live 6 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023565/abcnews6/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive7.us",ABC News Live 7 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023566/abcnews7/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive8.us",ABC News Live 8 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023567/abcnews8/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive9.us",ABC News Live 9 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023568/abcnews9/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive10.us",ABC News Live 10 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023569/abcnews10/master.m3u8 +#EXTINF:-1 tvg-id="",ABC News New York NY (WABC-TV) (720p) +https://content.uplynk.com/channel/ext/72750b711f704e4a94b5cfe6dc99f5e1/wabc_24x7_news.m3u8 +#EXTINF:-1 tvg-id="",ABC Seattle WA (KOMO-TV1) (480p) +http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC Seattle WA (KOMO-TV1) (720p) +http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC Spokane WA (KXLY-TV1) (480p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC Spokane WA (KXLY-TV1) (720p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",ABC Tallahassee FL (WTXL-TV1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WTXLHD.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (720p) +https://a.jsrdn.com/broadcast/542cb2ce3c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="",Ace TV (KCKS-LD3) (480p) +https://cdn.igocast.com/channel3_hls/channel3_master.m3u8 +#EXTINF:-1 tvg-id="",Action (KCKS-LD4) (480p) +https://cdn.igocast.com/channel4_hls/channel4_master.m3u8 +#EXTINF:-1 tvg-id="Actionable.us",Actionable (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e25a1932c8368bdbfd87d/playlist.m3u8 +#EXTINF:-1 tvg-id="ActionMaxEast.us",ActionMax East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cinemaxaction.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AdoracionReal.us",Adoración Real (360p) [Not 24/7] +https://tv.tvcontrolcp.com:1936/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsTV.us",Adventure Sports TV (720p) [Not 24/7] +https://gizmeon.s.llnwi.net/channellivev3/live/master.m3u8?channel=275 +#EXTINF:-1 tvg-id="Akaku53.us",Akaku 53 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch1.m3u8 +#EXTINF:-1 tvg-id="Akaku54.us",Akaku 54 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch2.m3u8 +#EXTINF:-1 tvg-id="Akaku55.us" status="online",Akaku 55 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch3.m3u8 +#EXTINF:-1 tvg-id="AKCTV.us",AKC TV (1080p) +https://broadcast.blivenyc.com/speed/broadcast/22/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AKCTVMeettheBreeds.us",AKC TV Meet the Breeds (1080p) +https://broadcast.blivenyc.com/speed/broadcast/71/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AKCTVPuppies.us",AKC TV Puppies (1080p) +https://broadcast.blivenyc.com/speed/broadcast/29/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AlHorreyaTV.us",Al Horreya TV (1080p) +http://media.smc-host.com:1935/alhorreya.tv/alhorreya.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHorreyaTV.us",Al Horreya TV (1080p) +http://media.smc-host.com:1935/alhorreya.tv/mp4:alhorreya3/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHurra.us",Al Hurra (486p) [Not 24/7] +https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 +#EXTINF:-1 tvg-id="AlHurra.us",Al Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 +#EXTINF:-1 tvg-id="AlientoVision.us",Aliento Vision (720p) [Not 24/7] +http://209.133.209.195:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlientoVision.us",Aliento Vision (720p) [Not 24/7] +http://livestreamcdn.net:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us",Alkarma TV Australia (720p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us",Alkarma TV Australia (1080p) +https://5a8308add0b31.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVFamily.us",Alkarma TV Family (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaNA2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVMiddleEast.us",Alkarma TV Middle East (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVNorthAmericaCanada.us",Alkarma TV North America & Canada (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmana1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVPraise.us",Alkarma TV Praise (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmapa.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVTalmazaDiscipleship.us",Alkarma TV Talmaza (Discipleship) (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVYouthEnglish.us" status="online",Alkarma TV Youth & English (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmaus.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Alkerazatv (720p) +https://597f64b67707a.streamlock.net/alkerazatv.org/alkerazatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AllSportsTVNetwork.us",All Sports TV Network (404p) [Offline] +https://2-fss-2.streamhoster.com/pl_120/amlst:203932-1476320/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmagdTVMiddleEast.us",Almagd TV Middle East (1080p) +https://597f64b67707a.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmagdTVNorthAmerica.us",Almagd TV North America (1080p) +https://5aafcc5de91f1.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCLatinAmerica.us",AMC Latin America [Timeout] +http://209.91.213.10:8088/play/a013 +#EXTINF:-1 tvg-id="America.us",America (720p) [Not 24/7] +http://45.6.4.154/americatuc/vivo.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) +https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8 +#EXTINF:-1 tvg-id="",America's Voice (KCKS-LD5) (480p) [Not 24/7] +https://cdn.igocast.com/channel5_hls/channel5_master.m3u8 +#EXTINF:-1 tvg-id="AmericanHorrors.us",American Horrors (480p) +http://170.178.189.66:1935/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="AMGTV.us",AMG TV (1080p) +https://2-fss-2.streamhoster.com/pl_138/201660-1270634-1/playlist.m3u8 +#EXTINF:-1 tvg-id="AmgaTV.us",Amga TV (720p) [Not 24/7] +https://streamer1.connectto.com/AMGA_WEB_1202/playlist.m3u8 +#EXTINF:-1 tvg-id="ARTNTV.us",ARTN TV (1080p) [Not 24/7] +https://streamer1.connectto.com/ARTN_mobile/index.m3u8 +#EXTINF:-1 tvg-id="ATDTV.us",ATD TV (American TV of Dardania) (1080p) +http://46.99.146.236/0.m3u8 +#EXTINF:-1 tvg-id="AtlantaChannel.us",Atlanta Channel (720p) +http://media4.tripsmarter.com:1935/LiveTV/ACVBHD/playlist.m3u8 +#EXTINF:-1 tvg-id="AtlantaChannel.us",Atlanta Channel (720p) +https://5b0f5374bdf0c.streamlock.net:444/LiveTV/ATLHD/playlist.m3u8 +#EXTINF:-1 tvg-id="AudioDungeon.us",Audio Dungeon (720p) +https://content.uplynk.com/channel/5688add7ce704ce1a27ab62bb44044b9.m3u8 +#EXTINF:-1 tvg-id="AvangTV.us",Avang TV (1080p) [Not 24/7] +http://appavang.flashmediacast.com:1935/Appavang/livestream/palylist.m3u8 +#EXTINF:-1 tvg-id="AWEEncore.us",AWE Encore (720p) [Geo-blocked] +https://cdn.herringnetwork.com/80A4DFF/awee_nva/AWE_Encore.m3u8 +#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Thai) (720p) [Not 24/7] +https://www.livedoomovie.com/02_AXNHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Vietnamese) (1080p) [Offline] +http://103.81.104.118/hls/stream2.m3u8 +#EXTINF:-1 tvg-id="AXNLatinoamerica.us",AXN Latinoamérica (576p) [Timeout] +http://209.91.213.10:8088/play/a011 +#EXTINF:-1 tvg-id="AXSTVNow.us",AXS TV Now (1080p) +https://dikcfc9915kp8.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="AyenehTV.us",Ayeneh TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BabyFirstTV.us",BabyFirst TV (1080p) +https://babyfirst.akamaized.net/hls/live/2028842/bftvusaott/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVCSULB.us",Beach TV CSULB (720p) [Not 24/7] +http://stream04.amp.csulb.edu:1935/Beach_TV/smil:BeachTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us",Beach TV Florida & Alabama (720p) +http://media4.tripsmarter.com:1935/LiveTV/DTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us",Beach TV Florida & Alabama (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/DTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us",Beach TV Key West & Florida Keys (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/KTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us",Beach TV Key West & Florida Keys (720p) [Offline] +https://media4.tripsmarter.com:1935/LiveTV/KTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us",Beach TV Myrtle Beach & The Grand Strand (720p) +http://media4.tripsmarter.com:1935/LiveTV/MTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us",Beach TV Myrtle Beach & The Grand Strand (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/MTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVPanamaCity.us",Beach TV Panama City (720p) +http://media4.tripsmarter.com:1935/LiveTV/BTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVPanamaCity.us",Beach TV Panama City (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/BTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeautyIQ.us",Beauty IQ (1080p) +https://lsqvc4us-lh.akamaihd.net/i/lsqvc4us_01@802711/master.m3u8 +#EXTINF:-1 tvg-id="BekSportsEast.us",Bek Sports East (720p) +https://wowzaprod188-i.akamaihd.net/hls/live/728897/54d0bcd5/playlist.m3u8 +#EXTINF:-1 tvg-id="BekSportsWest.us",Bek Sports West (720p) +https://wowzaprod188-i.akamaihd.net/hls/live/728897/89b077e6/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterHealthTV.us",Better Health TV (480p) +https://uni5rtmp.tulix.tv/betterhealth/betterhealth/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterHealthTV.us",Better Health TV (480p) +https://uni10rtmp.tulix.tv/betterhealth/betterhealth.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us",Better Life Nature Channel (480p) +https://uni5rtmp.tulix.tv/betternature/betternature/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us",Better Life Nature Channel (480p) +https://uni10rtmp.tulix.tv/betternature/betternature.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeTV.us",Better Life TV (720p) +https://uni5rtmp.tulix.tv/betterlife/betterlife/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeTV.us",Better Life TV (720p) +https://uni10rtmp.tulix.tv/betterlife/betterlife.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BibleExplorations.us",Bible Explorations (480p) [Not 24/7] +http://stream.iphonewebtown.com:1935/bibleexplorations/bexplorationsmobile.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BizTV.us",Biz TV (576p) [Not 24/7] +http://gideommd.mmdlive.lldns.net/gideommd/46c072b287224782a4d4ce93c3646589/manifest.m3u8 +#EXTINF:-1 tvg-id="BizTV.us",Biz TV (1080p) +https://thegateway.app/BizAndYou/BizTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BizTV.us",Biz TV (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/m3u8/us_biztv.m3u8 +#EXTINF:-1 tvg-id="BlazeTV.us",Blaze TV (720p) +https://theblaze4.akamaized.net/hls/live/699982/theblaze/cm-dvr/master.m3u8 +#EXTINF:-1 tvg-id="BloombergHT.us",Bloomberg HT (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/bloomberght/index.m3u8 +#EXTINF:-1 tvg-id="BloombergHT.us",Bloomberg HT (720p) [Offline] +https://ciner.daioncdn.net/bloomberght/bloomberght.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (720p) +https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-03-qPp9HnlfNtK_live.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-02-oNnPi5xc6sq_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAsia.us",Bloomberg TV Asia (720p) +https://liveprodapnortheast.global.ssl.fastly.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAsiaLiveEvent.us",Bloomberg TV Asia Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/asia-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAustralia.us",Bloomberg TV Australia (270p) +https://liveprodapnortheast.akamaized.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-440-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAustralia.us",Bloomberg TV Australia (720p) +https://liveprodapnortheast.global.ssl.fastly.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEMEALiveEvent.us",Bloomberg TV EMEA Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/eu-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe (360p) +https://liveprodeuwest.global.ssl.fastly.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe (720p) +https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (180p) +https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-240-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (360p) +https://liveprodapnortheast.akamaized.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (360p) +https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) +https://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) +https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUSLiveEvent.us",Bloomberg TV US Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/us-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUSPoliticsLiveEvent.us",Bloomberg TV US Politics Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/politics.m3u8 +#EXTINF:-1 tvg-id="BluegrassMusic4U.us",Bluegrass Music 4U (360p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/blugrassmusic/blugrassmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="BoomerangLatinoamerica.us",Boomerang Latinoamérica [Geo-blocked] +http://45.5.8.78:8000/play/a00i +#EXTINF:-1 tvg-id="",Boston 25 News (WFXT) (720p) +https://d2dy6pkj44n6e7.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10020_27d61a9c-67b2-4d7c-9486-626a6a071467_LE/in/cmg-wftxtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",Bounce Tallahassee FL (WTXL-TV2) (480p) +https://5e6cea03e25b6.streamlock.net/live/BOUNCE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BowieTV.us",Bowie TV (360p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/cityofbowie/G0466_001/playlist.m3u8 +#EXTINF:-1 tvg-id="BrazzersLatinoamerica.us",Brazzers Latinoamérica [Geo-blocked] +http://45.5.8.78:8000/play/a029 +#EXTINF:-1 tvg-id="bspoketv.us",bspoketv (720p) [Not 24/7] +https://bspoketv.s.llnwi.net/streams/322/master.m3u8 +#EXTINF:-1 tvg-id="BuffaloTV.us",Buffalo TV (360p) [Offline] +https://na-all15.secdn.net/pegstream3-live/play/c3e1e4c4-7f11-4a54-8b8f-c590a95b4ade/playlist.m3u8 +#EXTINF:-1 tvg-id="BusinessRockstars.us",Business Rockstars (720p) +https://content.uplynk.com/channel/7ad2b600b40b4a89933ab6981757f8b3.m3u8 +#EXTINF:-1 tvg-id="",BUTV10 (Boston University) (1080p) [Not 24/7] +http://butv10-livestream.bu.edu/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) +https://buzzrota-web.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) [Offline] +https://a.jsrdn.com/broadcast/ds80weh4/c.m3u8 +#EXTINF:-1 tvg-id="",Buzzr (KCKS-LD1) (480p) +https://cdn.igocast.com/channel1_hls/channel1_master.m3u8 +#EXTINF:-1 tvg-id="BYUTV.us",byu TV (720p) [Offline] +https://a.jsrdn.com/broadcast/d5b46/+0000/c.m3u8 +#EXTINF:-1 tvg-id="CSPAN2.us",C-SPAN 2 (108p) +https://skystreams-lh.akamaihd.net/i/SkyC2_1@500807/master.m3u8 +#EXTINF:-1 tvg-id="CSPAN3.us",C-SPAN 3 (108p) [Not 24/7] +https://skystreams-lh.akamaihd.net/i/SkyC3_1@500808/master.m3u8 +#EXTINF:-1 tvg-id="CSPAN.us",C-SPAN (108p) +https://skystreams-lh.akamaihd.net/i/SkyC1_1@500806/master.m3u8 +#EXTINF:-1 tvg-id="CableHits.us",Cable Hits (720p) [Not 24/7] +https://bk7l2w4nlx53-hls-live.5centscdn.com/AETV/514c04b31b5f01cf00dd4965e197fdda.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us",California Music Channel (720p) [Geo-blocked] +https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMC-TV/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us",California Music Channel (720p) [Not 24/7] +https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMCU-92/playlist.m3u8 +#EXTINF:-1 tvg-id="CameraSmileTV.us",Camera Smile TV (480p) +https://playout4multirtmp.tulix.tv/live7/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="CampSpoopy.us",Camp Spoopy (1080p) +https://stream.ads.ottera.tv/playlist.m3u8?network_id=269 +#EXTINF:-1 tvg-id="CanelaTV.us",Canela TV (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=65 +#EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us",Capital City Connection Montgomery (360p) [Offline] +https://na-us-se13.secdn.net/pegstream3-live/play/5f0d9ca5-4e85-4c01-a426-9ec8d44c2c9c/playlist.m3u8 +#EXTINF:-1 tvg-id="CaptitalOTBBetting.us",Captital OTB Betting (720p) [Not 24/7] +https://d2up1hmow19bcd.cloudfront.net/livecf/liveracing/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkArabic.us",Cartoon Network Arabic (1080p) +https://shls-cartoon-net-prod-dub.shahid.net/out/v1/dc4aa87372374325a66be458f29eab0f/index.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkAsia.us",Cartoon Network Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Cn/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkIndia.us",Cartoon Network India (432p) [Not 24/7] +http://70.39.83.58:8278/cartoonnetworkhindikdin/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkIndia.us",Cartoon Network India (576p) [Timeout] +http://103.153.39.34:8000/play/a04k/index.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkLatinAmerica.us",Cartoon Network Latin America [Timeout] +http://209.91.213.10:8088/play/a00k +#EXTINF:-1 tvg-id="CartoonNetworkVietnam.us",Cartoon Network Vietnam (720p) [Geo-blocked] +https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CARTOON-SD-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CatholicTV.us",Catholic TV (720p) [Not 24/7] +http://catholictvhd-lh.akamaihd.net/i/ctvhd_1@88148/master.m3u8 +#EXTINF:-1 tvg-id="CBNEspanol.us",CBN Español (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/iptv2_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNEspanol.us",CBN Español (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/iptv2_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="CBNFamily.us",CBN Family (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/iptv1_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNFamily.us",CBN Family (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/iptv1_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] +http://bcliveuniv-lh.akamaihd.net/i/news_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/news_1@194050/index_3000_av-p.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/news_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="",CBS 2 Greensboro NC (WFMY) (1080p) +https://livevideo01.wfmynews2.com/hls/live/2016285/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 2 Spokane WA (KREM) (1080p) +https://livevideo01.krem.com/hls/live/2017156/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (720p) +https://content.uplynk.com/4a09fbea28ef4f32bce095e9eae04bd8.m3u8 +#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (720p) +https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8 +#EXTINF:-1 tvg-id="",CBS 4 New Orleans LA (WWL-TV) (1080p) +https://livevideo01.wwltv.com/hls/live/2016516/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 5 Ft Smith AR (KFSM-TV) (1080p) +https://livevideo01.5newsonline.com/hls/live/2011653/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 5 San Antonio TX (KENS) (1080p) +https://livevideo01.kens5.com/hls/live/2016281/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 6 Albany NY (WRGB) (720p) +https://content.uplynk.com/channel/bba3e7da884a49bba96341ecf5128f0f.m3u8 +#EXTINF:-1 tvg-id="",CBS 7 Dayton OH (WHIO) [Timeout] +https://svc-lvanvato-cxtv-whio.cmgvideo.com/whio/2596k/index.m3u8 +#EXTINF:-1 tvg-id="",CBS 7 Seattle WA (KIRO-TV) [Timeout] +https://svc-lvanvato-cxtv-kiro.cmgvideo.com/kiro/1864k/index.m3u8 +#EXTINF:-1 tvg-id="",CBS 8 San Diego CA (KFMB-TV) (1080p) +https://livevideo01.cbs8.com/hls/live/2014967/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 9 Washington DC (WUSA) (1080p) +https://livevideo01.wusa9.com/hls/live/2015498/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 10 Columbus OH (WBNS-TV) (1080p) +https://livevideo01.10tv.com/hls/live/2013836/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 10 Tampa FL (WTSP) (1080p) +https://livevideo01.wtsp.com/hls/live/2015503/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 11 Houston TX (KHOU) (1080p) +https://livevideo01.khou.com/hls/live/2014966/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 11 Toledo OH (WTOL) (1080p) +https://livevideo01.wtol.com/hls/live/2017153/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 12 West Palm Beach FL (WPEC) (720p) +https://content.uplynk.com/channel/0123b306191a4307a31b9fb573213fd3.m3u8 +#EXTINF:-1 tvg-id="",CBS 13 Macon GA (WMAZ-TV) (1080p) +https://livevideo01.13wmaz.com/hls/live/2017376/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 19 Columbia SC (WLTX) (1080p) +https://livevideo01.wltx.com/hls/live/2017152/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 19 Tyler TX (KYTX) (1080p) +https://livevideo01.cbs19.tv/hls/live/2017377/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",CBS 46 Atlanta GA (WGCL-TV) (720p) [Not 24/7] +https://live.field59.com/wgcl/ngrp:wgcl1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS 47 Action News Jacksonville FL (WJAX-TV) (720p) +https://d2eit0bra9qkiw.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10050_b9ac3c93-be86-4f7e-82b8-796b7f8bfda3_LE/in/cmg-wjaxtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",CBS Buffalo NY (WIVB-TV1) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="",CBS Detroit MI (WWJ-TV1) (480p) +http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS Detroit MI (WWJ-TV1) (720p) +http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CBSNewsBaltimore.us",CBS News Baltimore (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsDFW.us",CBS News Dallas Ft Worth (720p) +https://cbsn-dal.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us",CBS News Live (360p) +https://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsLA.us",CBS News Los Angeles (720p) +https://cbsn-la.cbsnstream.cbsnews.com/out/v1/57b6c4534a164accb6b1872b501e0028/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsMiami.us",CBS News Miami (720p) +https://cbsn-mia.cbsnstream.cbsnews.com/out/v1/ac174b7938264d24ae27e56f6584bca0/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsNY.us",CBS News New York (720p) +https://www.cbsnews.com/common/video/cbsn-ny-prod.m3u8 +#EXTINF:-1 tvg-id="KOVR.us",CBS News Sacramento (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnsac_2/master.m3u8 +#EXTINF:-1 tvg-id="",CBS Seattle WA (KIRO-TV1) (480p) +http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS Seattle WA (KIRO-TV1) (720p) +http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS Tallahassee FL (WCTV1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WCTVDT.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS THV11 Little Rock AR (KTHV) (1080p) +https://livevideo01.thv11.com/hls/live/2017154/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) [Not 24/7] +https://cbsnhls-i.akamaihd.net/hls/live/264710/CBSN_mdialog/prodstream/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) [Offline] +https://cbsn-us-cedexis.cbsnstream.cbsnews.com/out/v1/55a8648e8f134e82a470f83d562deeca/master.m3u8 +#EXTINF:-1 tvg-id="WJZTV.us",CBSN Baltimore (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsBoston.us",CBSN Boston (720p) +https://cbsn-bos.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 +#EXTINF:-1 tvg-id="",CBSN Boston MA (720p) [Offline] +https://cbsn-bos-cedexis.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 +#EXTINF:-1 tvg-id="KTVTTV.us",CBSN Dallas Ft Worth TX (720p) [Offline] +https://cbsn-dal-cedexis.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 +#EXTINF:-1 tvg-id="CBSNLiveEvent.us",CBSN Live Event (720p) +https://cbsnewshd-lh.akamaihd.net/i/cbsnewsLivePlayer_1@196305/master.m3u8 +#EXTINF:-1 tvg-id="CCTV.us",CC-TV (720p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/charlotte/G0055_002/playlist.m3u8 +#EXTINF:-1 tvg-id="CCXMediaNorthBrooklynParkMN.us",CCX Media North Brooklyn Park MN (1080p) +http://156.142.85.152/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="CelebritySceneTV.us",Celebrity Scene TV (720p) +https://playout4multirtmp.tulix.tv/live8/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="CerritosTV3.us",Cerritos TV3 (360p) +https://granicusliveus4-a.akamaihd.net/cerritos/G0010_002/playlist.m3u8 +#EXTINF:-1 tvg-id="",Channel 9 Orlando FL (WFTV) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wftve2-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="CVTV.us",Channel 23 Clark Vancouver TV (CVTV) (1080p) [Not 24/7] +https://wowzaprod3-i.akamaihd.net/hls/live/252233/15b8d438/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelFight.us",Channel Fight (540p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=68 +#EXTINF:-1 tvg-id="Charge.us",Charge! (720p) +http://content.uplynk.com/channel/37eb732888614810b512fdd82604244e.m3u8 +#EXTINF:-1 tvg-id="",Charge! Tallahassee FL (WTWC-TV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/CHARGE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) [Offline] +https://content.uplynk.com/channel/4ee18bd581dc4d3b90303e0cb9beeb0f.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://live.chdrstatic.com/cbn/index.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://live.chdrstatic.com/cbn/primary/index.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://live.chdrstatic.com/cheddar/primary/index.m3u8 +#EXTINF:-1 tvg-id="ChefChampion.us",Chef Champion (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-chefchampion/mono.m3u8 +#EXTINF:-1 tvg-id="ChefRocShow.us",Chef Roc Show (540p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-chefrock/mono.m3u8 +#EXTINF:-1 tvg-id="ChiveTV.us",Chive TV (720p) +https://a.jsrdn.com/broadcast/4df1bf71c1/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us",Christian Youth Channel (CYC) (1080p) +http://media3.smc-host.com:1935/cycnow.com/smil:cyc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us",Christian Youth Channel (CYC) (1080p) +http://media.smc-host.com:1935/cycnow.com/cyc2/playlist.m3u8 +#EXTINF:-1 tvg-id="Cinemax.us",Cinemax [Geo-blocked] +http://23.237.202.43:7283/CINEMAX-FHD/index.m3u8?sn=Ux0Oojow5FkqHQCpMmUNQKUr4Wb&tm=1626349319&un=rommel07 +#EXTINF:-1 tvg-id="CinemaxAsia.us",Cinemax Asia (720p) +https://livecdn.fptplay.net/hda1/cinemax_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CinemaxEast.us",Cinemax East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cinemax.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CinePride.us",CinePride (720p) +https://content.uplynk.com/channel/e54d7e92a0154d67ae0770c9d4210e77.m3u8 +#EXTINF:-1 tvg-id="",Circle Tallahassee FL (WCTV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/ION.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CGTV.us",City of Champaign IL (CGTV) (234p) [Offline] +https://reflect-live-champaign.cablecast.tv/live/CELL-296k-234p/CELL-296k-234p.m3u8 +#EXTINF:-1 tvg-id="Civilized.us",Civilized. (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2531932c8368bdbfd87c/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicArtsShowcase.us",Classic Arts Showcase (720p) [Offline] +https://d3s1xaoyhrialn.cloudfront.net/CAS/index.m3u8 +#EXTINF:-1 tvg-id="ClassicCinema.us",Classic Cinema (240p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-classiccinema/mono.m3u8 +#EXTINF:-1 tvg-id="ClassicMoviesChannel.us",Classic Movies Channel (720p) +https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicTV4U.us",Classic TV 4U (480p) +https://broadcast.mytvtogo.net/classictv4u/classictv4u/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudflareTV.us",Cloudflare TV (720p) +https://cloudflare.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="CNBC.us",CNBC (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/CNBC/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCArabiya.us",CNBC Arabiya (1080p) +https://hiplayer.hibridcdn.net/t/cnbcarabia-live.m3u8 +#EXTINF:-1 tvg-id="CNBCEurope.us",CNBC Europe (480p) +http://ott-cdn.ucom.am/s65/index.m3u8 +#EXTINF:-1 tvg-id="CNBCIndonesia.us",CNBC Indonesia (720p) +https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCTV18.us",CNBC TV 18 (504p) +https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNN.us",CNN (720p) +http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CNN.us",CNN (720p) +http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNBrasil.us",CNN Brasil (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvdwhh_fDyWccR42-rReZLw/live +#EXTINF:-1 tvg-id="CNNChile.us",CNN Chile (720p) [Timeout] +https://unlimited1-cl-movistar.dps.live/cnn/cnn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNenEspanol.us",CNN en Español [Timeout] +http://209.91.213.10:8088/play/a014 +#EXTINF:-1 tvg-id="CNNPhilippines.us",CNN Philippines (720p) [Not 24/7] +https://streaming.cnnphilippines.com/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNTurk.us",CNN Türk (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/129 +#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] +http://stream.tvtap.live:8081/live/us-cnn.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_3_1464000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_4_1064000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (480p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_2_1964000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (720p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) +https://comedydynamics-wurl.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Comet.us",Comet (720p) +http://content.uplynk.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://d2rir1vttzppfq.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="CookingPanda.us",Cooking Panda (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=46 +#EXTINF:-1 tvg-id="CornerstoneTV.us",Cornerstone TV (640p) +http://cdn.media9.truegod.tv/ctvnlive/smil:ctvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CourtTV.us",Court TV (720p) +https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8 +#EXTINF:-1 tvg-id="CourtTV.us",Court TV (1080p) +https://cdn-katz-networks-01.vos360.video/Content/HLS/Live/channel(courttv)/index.m3u8 +#EXTINF:-1 tvg-id="CourtTVMystery.us",Court TV Mystery (WTXL-TV4) (480p) +https://5e6cea03e25b6.streamlock.net/live/QVC.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimePlusInvestigationAsia.us",Crime + Investigation Asia [Offline] +http://203.154.243.31:15001 +#EXTINF:-1 tvg-id="CSatTV.us",CSat TV (1080p) [Not 24/7] +http://media.smc-host.com:1935/csat.tv/smil:csat.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CTNCourtFeed.us",CT-N Court Feed (360p) [Not 24/7] +http://video.ct-n.com/live/ctnSupreme/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="CTNLiveStream2.us",CT-N Live Stream 2 (360p) [Not 24/7] +http://video.ct-n.com/live/web2stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CTNTVConneticut.us",CT-N TV Conneticut (720p) [Not 24/7] +http://video.ct-n.com/live/ctnstream/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="WFGCDT1.us",CTN 61 Riviera Beach FL (WFGC) (720p) [Not 24/7] +http://hls1.livestreamingcdn.com:1935/livecdn631/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CTN.us",CTN (404p) +http://admin.ottdemo.rrsat.com:1935/ctntv/ctntv2/playlist.m3u8 +#EXTINF:-1 tvg-id="CTN.us",CTN (720p) +http://rtmp.ottdemo.rrsat.com/ctntv/ctntvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CTN.us",CTN (720p) [Not 24/7] +https://rrsatrtmp.tulix.tv/ctntv/ctntvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CWSeed.us",CW Seed (432p) [Geo-blocked] +https://cwseedlive.cwtv.com/ingest/playlist.m3u8 +#EXTINF:-1 tvg-id="CycleWorld.us",Cycle World (720p) [Offline] +https://a.jsrdn.com/broadcast/3e5befe5dd/+0000/c.m3u8 +#EXTINF:-1 tvg-id="DanceStarTV.us",DanceStar TV (720p) [Offline] +https://vcndstv.teleosmedia.com/stream/dstv/dstv/playlist.m3u8 +#EXTINF:-1 tvg-id="DCCouncilChannel.us",DC Council Channel (1080p) +https://video.oct.dc.gov/out/u/15_12.m3u8 +#EXTINF:-1 tvg-id="DCEagleCam.us",DC Eagle Cam (720p) +http://americaneagle-lh.akamaihd.net/i/AEF_DC1@31049/master.m3u8 +#EXTINF:-1 tvg-id="",Digi TV (WFTY-DT6) (720p) +https://amg01443-netxholdingsllc-digitv200-ono-zzfy4.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelAsia.us",Disney Channel Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Disneyxd/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelEspana.es",Disney Channel España (1080p) [Timeout] +http://5.255.90.184:2004/play/a006/index.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelJapan.us",Disney Channel Japan (720p) [Not 24/7] +https://redlabmcdn.s.llnwi.net/jp04/bs13hd/index.mpd +#EXTINF:-1 tvg-id="DisneyChannelPortugal.es",Disney Channel Portugal [Offline] +http://185.236.229.21:9981/play/a056 +#EXTINF:-1 tvg-id="DisneyJuniorAsia.us",Disney Junior Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Disneyjr/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyJuniorLatinoamerica.es",Disney Junior Latinoamérica [Timeout] +http://209.91.213.10:8088/play/a00n +#EXTINF:-1 tvg-id="DisneyJuniorPortugal.es",Disney Junior Portugal [Offline] +http://185.236.229.21:9981/play/a03q +#EXTINF:-1 tvg-id="DistrictofColumbiaNetwork.us",District of Columbia Network (DCN) (1080p) +https://video.oct.dc.gov/out/u/DCN.m3u8 +#EXTINF:-1 tvg-id="DittyTV.us",Ditty TV (720p) [Not 24/7] +https://azroe0x-lh.akamaihd.net/i/test_1@775856/master.m3u8 +#EXTINF:-1 tvg-id="DivineVision.us",Divine Vision (480p) [Not 24/7] +https://divineplayout-us2.tulix.tv/live/Stream1/.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] +https://dovenow.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DrGeneScott.us",Dr. Gene Scott (480p) +https://wescottcchls-lh.akamaihd.net/i/wcc_wowlivehls@24607/master.m3u8 +#EXTINF:-1 tvg-id="",DreamforceBTL (Rhino Radio TV | RRTV) (720p) [Offline] +https://stmv1.panelzcast.com/dreamforcebtl/dreamforcebtl/playlist.m3u8 +#EXTINF:-1 tvg-id="DrinkTV.us",Drink TV (720p) [Offline] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=62 +#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) +https://a.jsrdn.com/broadcast/e29bdbbbf3/+0000/c.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) [Offline] +https://59d39900ebfb8.streamlock.net/molaughtertv/molaughtertv/playlist.m3u8 +#EXTINF:-1 tvg-id="Ecuavisa.us",Ecuavisa (720p) +https://livestreamcdn.net:444/Alientoenvivo/Alientoenvivo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElConflecto.us",El Conflecto (480p) +https://content.uplynk.com/channel/c56a6c94a53843c79d3eca411d39f96f.m3u8 +#EXTINF:-1 tvg-id="ElMaqar.us",El Maqar (1080p) +http://135.181.79.179/ElmaqarTVHD/playlist.m3u8?token=mobileuser +#EXTINF:-1 tvg-id="ElMaqar.us",El Maqar (1080p) [Offline] +rtmp://elmaqar.info:1935/icopts/elKarous +#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us",El Sembrador Nueva Evangelización (ESNE) (720p) +https://zypelive-lh.akamaihd.net/i/default_1@44045/master.m3u8 +#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us",El Sembrador Nueva Evangelización (ESNE) (720p) +https://zypelive-lh.akamaihd.net/i/default_1@745572/master.m3u8 +#EXTINF:-1 tvg-id="ElbesharaGTV.us",Elbeshara GTV (1080p) [Not 24/7] +http://media3.smc-host.com:1935/elbesharagtv.com/gtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElectricNow.us",Electric Now (720p) [Not 24/7] +https://ov.ottera.tv/live/master.m3u8?channel=elec_en +#EXTINF:-1 tvg-id="EntertainmentTonight.us",Entertainment Tonight (1080p) +https://etlive-mediapackage-fastly.cbsaavideo.com/dvr/manifest.m3u8 +#EXTINF:-1 tvg-id="Entrepreneur.us",Entrepreneur (720p) +https://a.jsrdn.com/broadcast/7582ed85f7/+0000/c.m3u8 +#EXTINF:-1 tvg-id="EscambiaCountyTV.us",Escambia County TV (720p) [Offline] +https://stream.swagit.com/live-edge/escambiacountyfl/live-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperanzaTV.us",Esperanza TV (480p) [Not 24/7] +http://k3.usastreams.com:1935/etvSD/etvSD/playlist.m3u8 +#EXTINF:-1 tvg-id="",ESR 24x7 eSports Network (1080p) +https://eyeonesports.com/ES2RA-628g.m3u8 +#EXTINF:-1 tvg-id="EverydayHeroes.us",Everyday Heroes (720p) +https://a.jsrdn.com/broadcast/7b1451fa52/+0000/c.m3u8 +#EXTINF:-1 tvg-id="EWTNAfricaAsia.us",EWTN Africa-Asia (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-18/ngrp:yjnk-afxc_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNAsiaPacific.us",EWTN Asia-Pacific (720p) [Not 24/7] +https://cdn3.wowza.com/1/QmVNUVhTNTZSS3Uz/YWQ0aHpi/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNAsiaPacific.us",EWTN Asia-Pacific (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-12/ngrp:q6ms-g1u9_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (720p) [Not 24/7] +https://cdn3.wowza.com/1/YW5wSWZiRGd2eFlU/bGV0aVBq/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (720p) [Offline] +https://dyo5cp96eopax.cloudfront.net/p/CANE.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-34/ngrp:1d1d-wqrm_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us",EWTN el Canal Católico (720p) [Not 24/7] +https://cdn3.wowza.com/1/SmVrQmZCUXZhVDgz/b3J3MFJv/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us",EWTN el Canal Católico (1080p) [Timeout] +https://live-fd164e1.rmbl.ws/slot-21/ngrp:ajdj-xq6n_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNEurope.us",EWTN Europe (720p) [Not 24/7] +https://cdn3.wowza.com/1/T2NXeHF6UGlGbHY3/WFluRldQ/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNEurope.us",EWTN Europe (1080p) [Offline] +https://live-fd164e1.rmbl.ws/slot-27/ngrp:ipy0-yeb3_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNkatholischesTV.us",EWTN katholisches TV [Not 24/7] +https://cdn3.wowza.com/1/NWFLbEVOVjNsQWhP/YnpVbld5/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNUS.us",EWTN US (720p) [Offline] +https://d3kr0d4mfjxpbv.cloudfront.net/p/SPAS.m3u8 +#EXTINF:-1 tvg-id="ExternalOttera.us",External Ottera (720p) +https://otteravision-tg.ottera.tv/live/master.m3u8?channel=tg_tg_us +#EXTINF:-1 tvg-id="ExtremaTV.us",Extrema TV (720p) +http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="EYE95America.us",EYE95 America (1080p) [Not 24/7] +https://cdn20.liveonlineservices.com/hls/eye95tv.m3u8 +#EXTINF:-1 tvg-id="FairfaxPublicAccess.us",Fairfax Public Access (544p) [Not 24/7] +https://cs.ebmcdn.net/eastbay-live-hs-1/fairfax-pull/mp4:fairfax.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FaithLifeTV.us",Faith & Life TV (720p) [Offline] +https://na-all9.secdn.net/logos-channel/live/faithlifetv/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionBoxHD.us",Fast&Fun Box (Russian) (480p) [Timeout] +http://ott-cdn.ucom.am/s79/index.m3u8 +#EXTINF:-1 tvg-id="FastWay.us",FastWay (576p) [Offline] +http://fastway.ddns.net:6421/fastway/live10/index.m3u8 +#EXTINF:-1 tvg-id="FieldStream.us",Field & Stream (720p) [Offline] +https://a.jsrdn.com/broadcast/7536b84786/+0000/c.m3u8 +#EXTINF:-1 tvg-id="",FIGHT SPORTS (1080p) +https://shls-fight-sports-ak.akamaized.net/out/v1/ee7e6475b12e484bbfa5c31461ad4306/index.m3u8 +#EXTINF:-1 tvg-id="FightBoxHD.us",FightBox HD (480p) +http://ott-cdn.ucom.am/s86/index.m3u8 +#EXTINF:-1 tvg-id="FightingSpirit.us",Fighting Spirit (720p) +https://a.jsrdn.com/broadcast/47cff5378f/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FireplaceLounge.us",Fireplace Lounge (720p) +https://a.jsrdn.com/broadcast/aee08372e5/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FishTank.us",Fish Tank (720p) +https://a.jsrdn.com/broadcast/8b43a16c1e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Fite.us",Fite (720p) [Not 24/7] +https://cdn-cf.fite.tv/linear/fite247/playlist.m3u8 +#EXTINF:-1 tvg-id="FolkTVEast.us",Folk TV East (480p) [Not 24/7] +https://584b0aa350b92.streamlock.net/folk-tv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox 2 St. Louis MO (KTVI) (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/united-states/ktvi-tv +#EXTINF:-1 tvg-id="",Fox 9 Minneapolis-St. Paul MN (KMSP) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/fox-minneapolis +#EXTINF:-1 tvg-id="",Fox 15 West Texas Abilene TX (KXVA) (1080p) +https://livevideo01.myfoxzone.com/hls/live/2017381/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",Fox 23 Tulsa OK (KOKI-TV) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-kokitv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",Fox 28 Savannah GA (WTGS) (720p) +https://content.uplynk.com/channel/e56ba52a1b9d45ad8c8a033fd83fe480.m3u8 +#EXTINF:-1 tvg-id="",Fox 32 Chicago IL (WFLD) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/fox-chicago +#EXTINF:-1 tvg-id="",Fox 43 Harrisburg PA (WPMT) (1080p) +https://livevideo01.fox43.com/hls/live/2011656/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",Fox 54.1 Huntsville AL (WZDX) (1080p) +https://livevideo01.rocketcitynow.com/hls/live/2011659/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",Fox 61 Hartford CT (WTIC-TV) (1080p) +https://livevideo01.fox61.com/hls/live/2011658/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",Fox Boston MA (WFXT1) (480p) +http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox Boston MA (WFXT1) (720p) [Not 24/7] +http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox Buffalo NY (WUTV1) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_FOXHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="FoxBusiness.us",Fox Business [Geo-blocked] +http://199.66.95.242/1/1172/index.m3u8?token=test +#EXTINF:-1 tvg-id="FoxCrimeAdria.us",Fox Crime Adria [Offline] +https://cdn1.mobiletv.bg/T10/fox_crime/fox_crime_794613_850k.m3u8 +#EXTINF:-1 tvg-id="FoxGreece.us",Fox Greece (480p) [Not 24/7] +http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxMoviesAsia.us",Fox Movies Asia (Thai) (720p) [Not 24/7] +https://www.livedoomovie.com/02_FoxMoviesHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (480p) +http://encodercdn1.frontline.ca/encoder181/output/FOX_News/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (720p) +http://encodercdn1.frontline.ca/encoder181/output/FOX_News_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (720p) +http://trn03.tulix.tv/AsEAeOtIxz/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsRadio.us",Fox News Radio (720p) +https://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8 +#EXTINF:-1 tvg-id="",FOX Rochester NY (WUHF-DT1) (720p) +http://encodercdn1.frontline.ca/encoder184/output/FOX_Rochester_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxRussia.us",Fox Russia (576p) [Not 24/7] +http://188.40.68.167/russia/fox_russia_sd/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox Seattle WA (KCPQ1) (480p) +http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox Seattle WA (KCPQ1) (720p) +http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",FOX Spokane WA (KAYU-TV1) (480p) +http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="",FOX Spokane WA (KAYU-TV1) (720p) +http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Fox Tallahassee FL (WTWC-TV2) (720p) +https://5e6cea03e25b6.streamlock.net/live/WTWC-FX.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxThai.us",Fox Thai (720p) [Not 24/7] +https://www.livedoomovie.com/02_FoxThai_TH_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) +https://247wlive.foxweather.com/stream/index.m3u8 +#EXTINF:-1 tvg-id="FreeSpeechTV.us",Free Speech TV (480p) [Offline] +https://edge.free-speech-tv-live.top.comcast.net/out/u/fstv.m3u8 +#EXTINF:-1 tvg-id="FrightFlix.us",FrightFlix (720p) +https://content.uplynk.com/channel/4b3fda1ff2c24556bc2c6034307d117d.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) [Offline] +https://stream.ads.ottera.tv/playlist.m3u8?network_id=516 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7fueltv.m3u8 +#EXTINF:-1 tvg-id="FunRoads.us",Fun Roads (720p) +http://104.143.4.5:2080/funroads.m3u8 +#EXTINF:-1 tvg-id="FXPeru.us",FX Peru [Timeout] +http://209.91.213.10:8088/play/a01z +#EXTINF:-1 tvg-id="GalvestonCountyTV.us",Galveston County TV (720p) [Not 24/7] +https://stream.swagit.com/live-edge/galvestontx/smil:hd-16x9-1-b/playlist.m3u8 +#EXTINF:-1 tvg-id="GalxyTV.us",Galxy TV (720p) +https://content.uplynk.com/channel/f467430e4a8e49a59ff3183cf51092b2.m3u8 +#EXTINF:-1 tvg-id="GanjeHozourTV.us",Ganj e Hozour TV (720p) +http://topfi.ios.internapcdn.net/topfi/live_1/Test/Test.m3u8 +#EXTINF:-1 tvg-id="GenesisTV.us",Genesis TV (720p) [Not 24/7] +http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Glendale11AZ.us",Glendale 11 AZ (360p) +https://stream.swagit.com/live-edge/glendaleaz/smil:std-4x3-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="GlobalFashionChannel.us",Global Fashion Channel (1080p) +https://vcngfcssai.teleosmedia.com/linear/globalfashionchannel/globalfashionchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="GoldenTV.us",Golden TV (240p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-goldentv/mono.m3u8 +#EXTINF:-1 tvg-id="GoodLife45.us",GoodLife 45 (720p) [Not 24/7] +http://1-fss29-s0.streamhoster.com/lv_goodlife45f1/broadcast1/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelTruthTV.us",Gospel Truth TV [Timeout] +https://bstna.tulix.tv/live/bs_2m/index.m3u8 +#EXTINF:-1 tvg-id="",Greek Voice Live 48 Tampa Bay FL (WZRA-CD1) (480p) +http://wpso.com:1936/hls/wzra.m3u8 +#EXTINF:-1 tvg-id="GreenbeltTV.us",Greenbelt TV (480p) +https://t07113a-lh.akamaihd.net/i/t07113a_1@756729/master.m3u8 +#EXTINF:-1 tvg-id="GreensboroTV.us",Greensboro TV [Offline] +https://granicusliveus4-a.akamaihd.net/greensboro/G0197_003/chunklist.m3u8 +#EXTINF:-1 tvg-id="",Grit Tallahassee FL (WTXL-TV3) (480p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/GRIT.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="grvty.us",grvty (1080p) +https://d37j5jg7ob6kji.cloudfront.net/index.m3u8 +#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (480p) [Offline] +rtsp://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed02?nc=1 +#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (720p) [Not 24/7] +http://gtv.live.cdn.bitgravity.com/gtv/live/feed03 +#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (720p) [Not 24/7] +https://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed03/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] +https://a.jsrdn.com/broadcast/ebf95254ca/+0000/c.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (1080p) +https://d3cajslujfq92p.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="H2.us" status="online",H2 (720p) [Not 24/7] +https://www.livedoomovie.com/02_H2HD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonFactoryTV.us",Harley Davidson Factory TV (1080p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/e529407a-cb61-45ce-a9ad-94f0ad5e0ad9.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonRacingTV.us",Harley Davidson Racing TV (720p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/de245a96-516c-413d-81e9-419c05bbc6a7.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonRidesTV.us",Harley Davidson Rides TV (1080p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/d4b0111a-3dcb-46fb-b2bb-1c27eca5df35.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonTV.us",Harley Davidson TV (1080p) [Offline] +https://hdtv.prod2.ioio.tv/broker/play/cb4086ca-daba-42f5-8acf-27ee93fee0e8.m3u8 +#EXTINF:-1 tvg-id="WVITTV.us",Hartford WVIT 30 News (720p) [Offline] +http://wvitlive-f.akamaihd.net/i/wvitb2_1@71164/master.m3u8 +#EXTINF:-1 tvg-id="HBOFamilyEast.us",HBO Family East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/FAMILY/index.m3u8 +#EXTINF:-1 tvg-id="HBOFamilyEast.us",HBO Family East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/FAMILY/index.m3u8 +#EXTINF:-1 tvg-id="HBOHits.us",HBO Hits (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/HITS/index.m3u8 +#EXTINF:-1 tvg-id="HBOHits.us",HBO Hits (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/HITS/index.m3u8 +#EXTINF:-1 tvg-id="HBOMalaysia.us",HBO Malaysia (720p) [Offline] +http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8 +#EXTINF:-1 tvg-id="HBOSignatureEast.us",HBO Signature East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/SIG/index.m3u8 +#EXTINF:-1 tvg-id="HBOSignatureEast.us",HBO Signature East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/SIG/index.m3u8 +#EXTINF:-1 tvg-id="",Heroes & Icons Tallahassee FL (WTLH1) (720p) +https://5e6cea03e25b6.streamlock.net/live/HI.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HighTimes.us",High Times (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2503932c8368bdbfd875/playlist.m3u8 +#EXTINF:-1 tvg-id="HighVision.us",High Vision (1080p) [Not 24/7] +https://streamer1.connectto.com/HIGHVISION_WEB_1205/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="History.us",History (540p) [Not 24/7] +http://s1.mysportz.tv:2082/history/playlist.m3u8 +#EXTINF:-1 tvg-id="HistoryAsia.us",History Asia (Thai) (720p) [Not 24/7] +https://www.livedoomovie.com/02_HISTORYHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="HistoryEast.us",History East (720p) [Not 24/7] +https://bk7l2w4nlx53-hls-live.5centscdn.com/HISTORY/961ac1c875f5884f31bdd177365ef1e3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HLN.us",HLN (720p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586496/cnngo/hln/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="HmongTVNetwork.us",Hmong TV Network (720p) +https://livefta.malimarcdn.com/ftaedge00/cvabroadcasting.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.us",Holly Wire (720p) [Offline] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=141 +#EXTINF:-1 tvg-id="HonorTV.us",Honor TV (720p) +https://a.jsrdn.com/broadcast/d5b48/+0000/c.m3u8 +#EXTINF:-1 tvg-id="HopeChannelAfrica.us",Hope Channel Africa [Offline] +http://93.152.174.144:4000/play/hopechannel/index.m3u8 +#EXTINF:-1 tvg-id="HopeChannelInternational.us",Hope Channel International (1080p) [Geo-blocked] +https://hcintlinc.mmdlive.lldns.net/hcintlinc/60f14a7fec64454e90712421a46ac6f1/manifest.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (360p) +http://media1.adventist.no:1935/live/hope3/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (540p) +http://media1.adventist.no:1935/live/hope2/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (720p) +http://media1.adventist.no:1935/live/hope1/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelPhilippines.us",Hope Channel Philippines (576p) [Not 24/7] +https://hcfilipino.mmdlive.lldns.net/hcfilipino/f6e775755f2647159e0adefe01a44a0e/manifest.m3u8 +#EXTINF:-1 tvg-id="HorizonArmenian.us",Horizon Armenian (1080p) +http://5.254.76.34:17070/C441/index.m3u8?token=kdsdkwy453wrRq29IIIo +#EXTINF:-1 tvg-id="HorizonArmenian.us",Horizon Armenian (1080p) +http://5.254.76.34:17070/C441/mono.m3u8?token=kdsdkwy453wrRq29IIIo +#EXTINF:-1 tvg-id="HorizonSports.us",Horizon Sports (720p) [Offline] +https://a.jsrdn.com/broadcast/20dc4269f3/+0000/c.m3u8 +#EXTINF:-1 tvg-id="HSN2.us",HSN 2 (720p) [Not 24/7] +https://hsn2html5-lh.akamaihd.net/i/hsn2html5_01@13178/master.m3u8 +#EXTINF:-1 tvg-id="HSN.us",HSN (720p) +https://html5-lh.akamaihd.net/i/html5_01@182967/master.m3u8 +#EXTINF:-1 tvg-id="HSN.us",HSN (720p) +https://lshsn1usott-lh.akamaihd.net/i/lshsn1usott_01@838842/master.m3u8 +#EXTINF:-1 tvg-id="HTV1HoustonTelevision.us",HTV 1 Houston Television (720p) +https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-a/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV2HoustonTelevision.us",HTV 2 Houston Television (720p) +https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-b/playlist.m3u8 +#EXTINF:-1 tvg-id="HumraazTV.us",Humraaz TV [Not 24/7] +https://cdn61.liveonlineservices.com/hls/humraaz.m3u8 +#EXTINF:-1 tvg-id="HuntChannel.us",Hunt Channel (1080p) +https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/index.m3u8 +#EXTINF:-1 tvg-id="HuntChannel.us",Hunt Channel (1080p) [Offline] +https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/mono.m3u8 +#EXTINF:-1 tvg-id="IDG.us",IDG (720p) +https://a.jsrdn.com/broadcast/529a360c04/+0000/c.m3u8 +#EXTINF:-1 tvg-id="IMPACTWrestling.us",IMPACT! Wrestling (1080p) +https://d2p372oxiwmcn1.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="IndTVUSA.us",Ind TV USA (720p) +https://t06858-lh.akamaihd.net/i/t06858a_1@719164/master.m3u8 +#EXTINF:-1 tvg-id="InfoWars.us",InfoWars (720p) +http://wpc.9ec1.edgecastcdn.net/249EC1/infowarshd-edgecast/hd720.m3u8 +#EXTINF:-1 tvg-id="InfoWars.us",InfoWars (720p) +https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="InspirationTV.us",Inspiration TV (288p) +https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/index_2_av-p.m3u8 +#EXTINF:-1 tvg-id="InspirationTV.us",Inspiration TV (360p) +https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/master.m3u8 +#EXTINF:-1 tvg-id="",Ion 8 Christiansted VI (WSVI-TV) (300p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@534251/master.m3u8 +#EXTINF:-1 tvg-id="IraneFarda.us",Irane Farda (576p) [Not 24/7] +http://51.210.199.53/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IslandEscape.us",Island Escape (720p) +https://a.jsrdn.com/broadcast/41e3e6703e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ISN.us",ISN (1080p) +https://cpdc101-lh.akamaihd.net/i/ISNCPDCMB1_1@314337/master.m3u8 +#EXTINF:-1 tvg-id="JBS.us",JBS (304p) [Not 24/7] +https://uni8rtmp.tulix.tv/shalomtv-pc/smil:shalomtv.smil/master.m3u8 +#EXTINF:-1 tvg-id="JBS.us",JBS (404p) [Not 24/7] +http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/master.m3u8 +#EXTINF:-1 tvg-id="JBS.us",JBS (404p) [Not 24/7] +http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JewelryTV.us",Jewelry Television (720p) +https://cdn3.wowza.com/1/eUdsNEcyMmRvckor/K3pydHZw/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="JewelryTV.us",Jewelry Television (720p) [Not 24/7] +https://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8 +#EXTINF:-1 tvg-id="KCKSLD12.us",Jewelry TV (KCKS-LD12) (480p) +https://cdn.igocast.com/channel12_hls/channel12_master.m3u8 +#EXTINF:-1 tvg-id="JewishLifeTV.us",Jewish Life TV (480p) [Not 24/7] +https://d3svwuchx5fp62.cloudfront.net/rtplive/smil:jltv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (432p) +https://johnnycarson-zype.amagi.tv/playlistR432p.m3u8 +#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) +http://d3lzjtrf5mvf3p.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) +https://vcnovation.teleosmedia.com/linear/ovation/journy/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) +https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8 +#EXTINF:-1 tvg-id="JudgeKarensCourt.us",Judge Karen's Court (540p) +https://cb5273f195a147f2bcf23544e4495f66.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5eb1e7261474f9020c06f9ec/playlist.m3u8 +#EXTINF:-1 tvg-id="JuventudRenovadaenelEspirituSanto.us",Juventud Renovada en el Espiritu Santo (720p) [Not 24/7] +http://teleredmcp.com:1935/jrestv/jrestv/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.us",Kalemeh TV (1080p) [Not 24/7] +http://184.75.208.98:1935/live/kalemeh/playlist.m3u8 +#EXTINF:-1 tvg-id="KartoonCircus.us",Kartoon Circus (720p) +https://simultv.s.llnwi.net/n4s4/KartoonCircus/interlink.m3u8 +#EXTINF:-1 tvg-id="KBPSports.us",KBP Sports (720p) [Not 24/7] +https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSVAssyriaSat.us",KBSV/AssyriaSat (720p) [Not 24/7] +http://66.242.170.53/hls/live/temp/index.m3u8 +#EXTINF:-1 tvg-id="",KCRT-TV 28 Richmond CA (KCRT) (360p) +http://granicusliveus3-a.akamaihd.net/richmond/G0034_002/playlist.m3u8 +#EXTINF:-1 tvg-id="KFSNNews.us",KFSN News (1080p) [Not 24/7] +https://api.abcotvs.com/v3/kfsn/m3u8/url?id=432725&key=yuemix +#EXTINF:-1 tvg-id="KGOTV.us",KGO-TV News (720p) +https://content.uplynk.com/channel/ext/4413701bf5a1488db55b767f8ae9d4fa/kgo_24x7_news.m3u8 +#EXTINF:-1 tvg-id="KidsFlix.us",KidsFlix (720p) [Not 24/7] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50 +#EXTINF:-1 tvg-id="KoolTV.us",Kool TV (1080p) [Timeout] +http://209.182.219.50:1935/roku/roku/playlist.m3u8 +#EXTINF:-1 tvg-id="KTLATV.us",KTLA 5 Los Angeles CA (144p) +https://content.uplynk.com/channel/6cbf2d32a5384dc1b787539b1102433c.m3u8 +#EXTINF:-1 tvg-id="KTRKTVNews.us",KTRK TV News (720p) +https://content.uplynk.com/channel/ext/1efe3bfc4d1e4b5db5e5085a535b510b/ktrk_24x7_news.m3u8 +#EXTINF:-1 tvg-id="KVVBTV.us",KVVB-TV 33 Victor Valley (1080p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8 +#EXTINF:-1 tvg-id="KweliTV.us",Kweli TV (720p) +https://a.jsrdn.com/broadcast/9c897f1973/+0000/c.m3u8 +#EXTINF:-1 tvg-id="LaMegaMundial.us",La Mega Mundial (720p) [Not 24/7] +http://68.235.35.243:1935/lamegamundial/lamegamundial2/playlist.m3u8 +#EXTINF:-1 tvg-id="LaMegaMundial.us",La Mega Mundial (720p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/lamegamundial/lamegamundial2/playlist.m3u8 +#EXTINF:-1 tvg-id="LakeHavasuCity4.us",Lake Havasu City 4 (240p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/lakehavasucity/G0643_002/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoThaiUSTV.us",Lao-Thai US TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laothaius.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LatinosNCTV.us",Latinos NCTV (480p) [Not 24/7] +https://live.latinosnc.tv:1443/MRR/live/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) +https://lawcrime.s.llnwi.net/h72/lawcrimech2/playlist_scte.m3u8 +#EXTINF:-1 tvg-id="LaxSportsNetworkTV.us",Lax Sports Network TV (720p) +https://1840769862.rsc.cdn77.org/FTF/LSN_SCTE.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVEducational.us",Leominster TV Educational (720p) +http://edu.leominster.tv/Edu/smil:Edu.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVGovernment.us",Leominster TV Government (720p) +http://gov.leominster.tv/Gov/smil:Gov.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVPublic.us",Leominster TV Public (720p) [Not 24/7] +http://gov.leominster.tv/Pub/smil:Pub.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LevelOne.us",Level One [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5af61be7d5eeee7af3d1db47/playlist.m3u8 +#EXTINF:-1 tvg-id="LexTV.us",Lex TV (720p) +https://granicusliveus2-a.akamaihd.net/lfucg/G0264_002/playlist.m3u8 +#EXTINF:-1 tvg-id="Lifestyle.us",Lifestyle (720p) [Not 24/7] +https://bozztv.com/36bay2/gusa-lifestyle/index.m3u8 +#EXTINF:-1 tvg-id="LifevisionTV.us",LifevisionTV (720p) [Not 24/7] +https://uni5rtmp.tulix.tv/lifevision/lifevision.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LNKTVCity.us",LNKTV City (1080p) +http://5tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LNKTVEducation.us",LNKTV Education (1080p) +http://80tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LNKTVHealth.us",LNKTV Health (1080p) +http://10tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LogosTV.us",Logos TV (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logostv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTVEnglish.us",Logos TV English (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoseng/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.us",Logos TV Mubasher (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoshym/playlist.m3u8 +#EXTINF:-1 tvg-id="LoneStar.us",Lone Star (960p) +https://a.jsrdn.com/broadcast/5oWx2VgEmK/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Loop80sWest.us",Loop 80s West (1080p) [Geo-blocked] +https://a500d902bdf94ea69ad343720add6036.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/80s_party_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="Loop90sWest.us",Loop 90s West (1080p) [Geo-blocked] +https://7626362bfa104137aded60d8d7e72ff5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/90s_kids_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopBeastModeWest.us",Loop Beast Mode West (1080p) [Geo-blocked] +https://884a4c762d524aad88d463477402fb7d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopBedroomWest.us",Loop Bedroom West (1080p) [Geo-blocked] +https://3bbe22c035b4409d80f997adc8ad33ee.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/bedroom_beats_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopElectronicaWest.us",Loop Electronica West (1080p) [Geo-blocked] +https://0bdf3efc906045538c63468aa2f86a96.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopFarOutWest.us",Loop Far Out West (1080p) [Geo-blocked] +https://957d71ce01dc447384d3978d3cdc55d9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/that_70s_channel_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopFlashbackWest.us",Loop Flashback West (1080p) [Geo-blocked] +https://ea86081fb9454be9b3b50037f9117024.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/like_yesterday_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopWest.us",Loop Hip-Hop West (1080p) [Geo-blocked] +https://e4d2547e0c8c492a883054acd48276be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopHottestEast.us",Loop Hottest East (1080p) [Geo-blocked] +https://2e9a0ef101a14c2ebe97c713bc5340be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hottest_of_the_hot_v2_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopLatinWest.us",Loop Latin West (1080p) [Geo-blocked] +https://c3b9df023def467086d10677827171f8.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/latin_x_pop_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopPartyWest.us",Loop Party West (1080p) [Geo-blocked] +https://1d79349342334eb0bdeddd168b5c6e1a.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopRBWest.us",Loop R&B West (1080p) [Geo-blocked] +https://0cf4f660964046daa9e0b7b6467a4e84.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hot_rnb_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopSynapseWest.us",Loop Synapse West (1080p) [Geo-blocked] +https://2807722353b745629456a555257b16bc.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTexasTunesWest.us",Loop Texas Tunes West (1080p) [Geo-blocked] +https://2fb88e730c2647d69629c6f90b0b98b9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/texas_sized_hits_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTGIFWest.us",Loop TGIF West (1080p) [Geo-blocked] +https://480e67fe68b64c35ae48b77192cb1fdf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/friday_feels_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopThatsHotWest.us",Loop That's Hot West (1080p) [Geo-blocked] +https://dccd6216f2c9471399015e69d64818cd.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/thats_hot_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTrendingWest.us",Loop Trending West (1080p) [Geo-blocked] +https://3d26c463850c48c788975a9aad86c508.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/trending_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopUnwindWest.us",Loop Unwind West (1080p) [Geo-blocked] +https://8c455e94c5ff44d0ada529dffef58ae5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/unwind_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopYachtRockWest.us",Loop Yacht Rock West (1080p) [Geo-blocked] +https://90a0d12cbaff4b959ea24bb8a3560adf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/yacht_rock_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="Loupe4K.us",Loupe 4K (2160p) +http://d2dw21aq0j0l5c.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNature4K.us",Love Nature 4K [Offline] +https://d27r4t30huw0iy.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveWorldUSA.us",LoveWorld USA (1080p) [Offline] +https://loveworldusa-lh.akamaihd.net/i/lwusa2_1@514985/master.m3u8 +#EXTINF:-1 tvg-id="LuckyDog.us",Lucky Dog [Offline] +http://d1gsmhzkyjhxg4.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="MadDogandMerrill.us",Mad Dog and Merrill (540p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-mwg/playlist.m3u8 +#EXTINF:-1 tvg-id="MajestadTelevision.us",Majestad Televisión (480p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/majestadtv/majestadtv/playlist.m3u8 +#EXTINF:-1 tvg-id="MarvelHQ.us",Marvel HQ (1080p) [Timeout] +https://feed.play.mv/live/10005200/niZoVrR2vD/master.m3u8 +#EXTINF:-1 tvg-id="MCN6.us",MCN6 (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MAIN.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="MCN6ArtsChannel.us",MCN6 Arts Channel (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_COMEDY.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="MCN6MusicChannel.us",MCN6 Music Channel (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MUSIC.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="",MeTV Tallahassee FL (WCTV2) (480p) [Offline] +https://5e6cea03e25b6.streamlock.net/live/WCTVDT2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MGMHDUSA.us",MGM HD USA (576p) +http://c0.cdn.trinity-tv.net/stream/uq2t763988wmx82xs37vrzrtrvaz686y22jd9gcgvgbhu88g6dntdb82kggx9zgvpvwj5wisyi5mgwwgdqzm7d6xbf7yvctwzvhsu3t57ms3wa4qxwyeuqk3ayrdwx3k2b6cdtnrydx9qa3ezqzea===.m3u8 +#EXTINF:-1 tvg-id="MiamiCityTV.us",Miami City TV (360p) [Not 24/7] +https://granicusliveus9-a.akamaihd.net/miamifl/G2076_003/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTV.us",Miami TV (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/miamitv/smil:miamitvWEB/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVJennyLive.us",Miami TV Jenny Live (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/JennyLive/JennyLive/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVLatino.us",Miami TV Latino (720p) +https://5ee7c2b857b7f.streamlock.net/latino/latino/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVMexico.us",Miami TV México (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/mexicotv/smil:miamitvmexicoROKU/playlist.m3u8 +#EXTINF:-1 tvg-id="MihanTV.us",Mihan TV (720p) [Not 24/7] +http://iptv.mihantv.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MillenniumTV24.us",Millennium TV 24 (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/mnews24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MillenniumTVUSA.us",Millennium TV USA (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/millenniumtv-odr-up2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MissionTV.us",Mission TV (720p) [Not 24/7] +http://stream.missiontv.com:1935/live/missiontv_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MissionTV.us",Mission TV (1080p) [Not 24/7] +https://6096a9cf11ae5.streamlock.net:1943/live/missiontv/playlist.m3u8 +#EXTINF:-1 tvg-id="MLBNetwork.us",MLB Network [Offline] +https://hlslive-akc-med1.media.mlb.com/ls01/mlbnetwork/NETWORK_LINEAR_1/master_wired.m3u8 +#EXTINF:-1 tvg-id="MMAJunkie.us",MMA Junkie (720p) +https://a.jsrdn.com/broadcast/80f6ba72c8/+0000/c.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.us",Mohabat TV (540p) +http://media.mohabat.tv:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MonarchChannel.us",Monarch Channel (480p) +https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Motorcyclist.us",Motorcyclist (720p) [Offline] +https://a.jsrdn.com/broadcast/256ad9e679/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Movee4U.us",Movee 4U (480p) [Not 24/7] +https://broadcast.mytvtogo.net/movee4u/movee4u/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieKingdom.us",Movie Kingdom (720p) +https://a.jsrdn.com/broadcast/e9b4093a41/+0000/c.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (480p) +http://encodercdn1.frontline.ca/encoder182/output/MSNBC/playlist.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (720p) +http://encodercdn1.frontline.ca/encoder182/output/MSNBC_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/msnbc/playlist.m3u8 +#EXTINF:-1 tvg-id="MTVHitsEurope.us",MTV Hits Europe (576p) [Offline] +http://188.40.68.167/russia/mtv_hits/playlist.m3u8 +#EXTINF:-1 tvg-id="MTVHitsLatinoamerica.us",MTV Hits Latinoamérica (576p) [Timeout] +http://209.91.213.10:8088/play/a00z +#EXTINF:-1 tvg-id="MTV.us",MTV Latinoamérica (1080p) [Timeout] +http://209.91.213.10:8088/play/a01a +#EXTINF:-1 tvg-id="WISCDT2.us",My Madison TV (WISC-DT2) (720p) +https://ad-playlistserver.aws.syncbak.com/playlist/13613390/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkdyYXkyMDE2MDgyOSJ9.eyJtaWQiOjEzNjEzMzkwLCJtZDUiOiI2Y2M5MzczYjIxZWIwNzQ4ZDA0YTRlYzYyMjU2YjBhMiIsImlhdCI6MTQ5NzM4MTU5NywiaXNzIjoiU3luY2JhayIsInN1YiI6IkdyYXkifQ.qJPiMCbnGjAn9wgPrGjVl3M9Xfc4CVSyoZTZ5OH-1jo +#EXTINF:-1 tvg-id="Mythos.us",Mythos (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-mythos/playlist.m3u8 +#EXTINF:-1 tvg-id="",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7] +http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) +http://iphone-streaming.ustream.tv/uhls/6540154/streams/live/iphone/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) [Not 24/7] +https://hls.ums.ustream.tv/playlist/directhls/channel/6540154/playlist.m3u8?sgn=31d0dfb847c358d4cedcd2256dc4e1c42a7f13a7 +#EXTINF:-1 tvg-id="NASATVISSViews.us",NASA TV ISS Views (480p) [Not 24/7] +http://iphone-streaming.ustream.tv/uhls/9408562/streams/live/iphone/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATVMedia.us",NASA TV Media (720p) +https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master.m3u8 +#EXTINF:-1 tvg-id="NASATVPublic.us",NASA TV Public (720p) +https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.us",National Geographic Abu Dhabi (1080p) +https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicEast.us",National Geographic East (720p) [Geo-blocked] +https://livecdn.fptplay.net/foxlive/natgeohd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",National Geographic España [Timeout] +http://5.255.90.184:2001/play/a04i +#EXTINF:-1 tvg-id="NationalGeographicWild.us",National Geographic Wild [Offline] +https://cdn1.mobiletv.bg/T5/ng_wild_hd/ng_wild_hd_794613_850k.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildMiddleEast.us",National Geographic Wild Middle East (720p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us",National Geographic Wild Russia (1080p) [Not 24/7] +https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8 +#EXTINF:-1 tvg-id="NAUTVNorthernArizonaUniversity.us",NAU-TV Northern Arizona University (720p) [Not 24/7] +http://stream.ec.nau.edu/live/amlst:channelfour/playlist.m3u8 +#EXTINF:-1 tvg-id="NBATV.us",NBA TV (720p) [Not 24/7] +https://www.livedoomovie.com/02_nbahd_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="",NBC 2 Buffalo NY (WGRZ) (1080p) +https://livevideo01.wgrz.com/hls/live/2016286/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KNBCNews.us",NBC4 KNBC-TV News (1080p) [Not 24/7] +https://knbclive-f.akamaihd.net/i/LA_STREAM1@13988/master.m3u8 +#EXTINF:-1 tvg-id="",NBC 4 News Washington DC (WRC-TV) (720p) [Not 24/7] +https://wrclive-f.akamaihd.net/i/wrcb1_1@46880/master.m3u8 +#EXTINF:-1 tvg-id="WNBCNews.us",NBC4 WNBC-TV New York News (1080p) [Not 24/7] +https://wnbclive-f.akamaihd.net/i/NY_STREAM1@13992/master.m3u8 +#EXTINF:-1 tvg-id="WRCNews.us",NBC4 WRC-TV Washington News (1080p) +https://wrclive-f.akamaihd.net/i/DC_STREAM1@22925/master.m3u8 +#EXTINF:-1 tvg-id="KXASNews.us",NBC5 KXAS-TV News Dallas TX (1080p) [Not 24/7] +https://kxaslive-f.akamaihd.net/i/DALLAS_STREAM5@5495/master.m3u8 +#EXTINF:-1 tvg-id="",NBC 5 News Chicago IL (WMAQ-TV) (1080p) +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM1@22923/master.m3u8 +#EXTINF:-1 tvg-id="",NBC 5 Seattle WA (KING) (1080p) +https://livevideo01.king5.com/hls/live/2006665/live/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 5 St. Louis MO (KSDK) (1080p) +https://livevideo01.ksdk.com/hls/live/2014965/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 6 College Station TX (KAGS) (1080p) +https://livevideo01.kagstv.com/hls/live/2016283/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 6 Waco TX (KCEN) (1080p) +https://livevideo01.kcentv.com/hls/live/2017155/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WTVJNews.us",NBC6 WTVJ-TV News Miami FL (1080p) [Not 24/7] +https://wtvjlive-f.akamaihd.net/i/MIAMI_STREAM1@19309/master.m3u8 +#EXTINF:-1 tvg-id="",NBC 7 Boise ID (KTVB) (1080p) +https://livevideo01.ktvb.com/hls/live/2014542/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 8 Portland OR (KGW) (1080p) +https://livevideo01.kgw.com/hls/live/2015506/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 9 Denver CO (KUSA) (1080p) +https://livevideo01.9news.com/hls/live/2014548/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 10 Knoxville TN (WBIR-TV) (1080p) +https://livevideo01.wbir.com/hls/live/2016515/newscasts/live-2000.m3u8 +#EXTINF:-1 tvg-id="",NBC 11 Alive Atlanta GA (WXIA-TV) (1080p) +https://livevideo01.11alive.com/hls/live/2015499/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 11 Minneapolis MN (KARE) (1080p) +https://livevideo01.kare11.com/hls/live/2014544/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 11 Pittsburgh PA (WPXI) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wpxitv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 11 San Jose CA (KNTV) (416p) [Offline] +https://kntvlive-f.akamaihd.net/i/kntvb1_1@15530/master.m3u8 +#EXTINF:-1 tvg-id="",NBC 12 Phoenix AZ (KPNX) (1080p) +https://livevideo01.12news.com/hls/live/2015501/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 13 Indianapolis IN (WTHR) (1080p) +https://livevideo01.wthr.com/hls/live/2013835/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 15 Madison WI (WMTV) (720p) +https://ad-playlistserver.aws.syncbak.com/playlist/899088/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsImtpZCI6IkdyYXkyMDE2MDgyOSIsInN1YiI6IioiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE3OTAzNjkxMDUsImlzcyI6IldMUyIsIm1kNSI6ImJhZTU4Y2ZlZWM2NmU1MjZkNmVjZmE1YmUzNTQxMzQ4IiwibWlkIjoiODk5MDg4In0.vBWkHmqS3z3dpq8UWfbk4wFd-vQlj6B0up-rpt7X_7Q +#EXTINF:-1 tvg-id="",NBC 26 Green Bay WI (WGBA) (720p) +https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8 +#EXTINF:-1 tvg-id="",NBC 36 Charlotte NC (WCNC-TV) (1080p) +https://livevideo01.wcnc.com/hls/live/2015505/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC 207 Bangor Portland ME (WLBZ) (1080p) +https://livevideo01.newscentermaine.com/hls/live/2014540/newscasts/live/wcsh.m3u8 +#EXTINF:-1 tvg-id="",NBC / ABC Jacksonville FL (WTLV) (1080p) +https://livevideo01.firstcoastnews.com/hls/live/2014550/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="" status="error",NBC Boston MA (WBTS-CD1) (480p) [Not 24/7] +http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Boston MA (WBTS-CD1) (720p) +http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Buffalo NY (WGRZ1) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NBCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="NBCGolfChannel.us",NBC Golf Channel (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/golf/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC New York (WNBC-DT1) (720p) +http://38.91.57.12:2082/nbc/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) +http://nbcnews2.akamaized.net/hls/live/723426-b/NBCNewsPlaymaker24x7Linear99a3a827-ua/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) [Offline] +https://nbcnewshls.akamaized.net/hls/live/2011820/nnn_live1/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent1.us",NBC News Now Event 1 (720p) +https://nbcnews-lh.akamaihd.net/i/nbc_live11@183427/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent2.us",NBC News Now Event 2 (720p) +https://nbcnews-lh.akamaihd.net/i/nbc_live12@187393/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent3.us",NBC News Now Event 3 (360p) +https://nbcnews-lh.akamaihd.net/i/nbc_live13@187394/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent4.us",NBC News Now Event 4 (720p) +https://nbcnews-lh.akamaihd.net/i/nbc_live14@187395/master.m3u8 +#EXTINF:-1 tvg-id="",NBC NewsWest 9 Midland-Odessa TX (KWES) (1080p) +https://livevideo01.newswest9.com/hls/live/2017380/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="",NBC Seattle WA (KING-TV1) (480p) +http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Seattle WA (KING-TV1) (720p) +http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Spokane WA (KHQ-TV1) (480p) +http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Spokane WA (KHQ-TV1) (720p) +http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",NBC Tallahassee FL (WTWC-TV1) (720p) +https://5e6cea03e25b6.streamlock.net/live/WTWC-NB.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WVITNews.us",NBC-CT WVIT-TV News Hartford CT (1080p) +https://wvitlive-f.akamaihd.net/i/HARTFORD_STREAM1@22924/master.m3u8 +#EXTINF:-1 tvg-id="NBCLX.us",NBCLX (1080p) +https://lxlive-lh.akamaihd.net/i/LX_LIVE@148206/master.m3u8 +#EXTINF:-1 tvg-id="NegahTV.us",Negah TV (720p) [Not 24/7] +https://iptv.negahtv.com/negahtv/playlist2/index.m3u8 +#EXTINF:-1 tvg-id="NESNNational.us",NESN National (1080p) +https://bcovlive-a.akamaihd.net/bea11a7dfef34b08be06aaca4a72bcdf/us-east-1/6141518204001/playlist.m3u8 +#EXTINF:-1 tvg-id="NOTV.us",New Orleans Television (NOTV) (720p) +http://media4.tripsmarter.com:1935/LiveTV/NOTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="NOTV.us",New Orleans Television (NOTV) (720p) +https://5b0f5374bdf0c.streamlock.net:444/LiveTV/NOTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) +https://nmxairy.akamaized.net/hls/live/529965/Live_1/index.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (480p) [Not 24/7] +http://broadcastny.yournewsnet.com:8081/master/newsnetweb/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (480p) [Offline] +https://broadcaster1.prolivestream.net:8083/onair/newsnetweb/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (720p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1311088/playlist.m3u8 +#EXTINF:-1 tvg-id="",NewsNet (KCKS-LD2) (480p) [Not 24/7] +https://cdn.igocast.com/channel2_hls/channel2_master.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) +https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) +https://content.uplynk.com/channel/4bb4901b934c4e029fd4c1abfc766c37.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) +https://547f72e6652371c3.mediapackage.us-east-1.amazonaws.com/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) +https://d3ra88okaj5j4j.cloudfront.net/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 +#EXTINF:-1 tvg-id="NewsyTopStories.us",Newsy Top Stories (720p) +https://content.uplynk.com/channel/387c33ce09da4de699668c0c7d1244a8.m3u8 +#EXTINF:-1 tvg-id="NFLNetwork.us",NFL Network (720p) [Not 24/7] +http://s1.mysportz.tv:2082/nfl/playlist.m3u8 +#EXTINF:-1 tvg-id="NFLNetwork.us",NFL Network (720p) [Not 24/7] +http://s1.mysportz.tv:2082/nfl/playlist.m3u8 +#EXTINF:-1 tvg-id="NickJrEast.us",Nick Jr East [Offline] +https://cdn1.mobiletv.bg/T5/bit/bit_794613_850k.m3u8 +#EXTINF:-1 tvg-id="NickJrLatinoamerica.us",Nick Jr Latinoamérica (480p) [Timeout] +http://201.168.205.12:8000/play/a0ck/index.m3u8 +#EXTINF:-1 tvg-id="NickJrTooUK.us",Nick Jr Too UK (576p) [Geo-blocked] +http://212.224.98.213:2200/EX/Nick_Jr_Too-uk/index.m3u8?token= +#EXTINF:-1 tvg-id="NickelodeonAustralia.us",Nickelodeon Australia (576p) +http://c0.cdn.trinity-tv.net/stream/7tsewn83ddjifz69us9je7eftbm5nuausb4dsvz9g5aydin9672n734qbb9jgcfpiqtpwudvs9dpi2udjc3eh4h462eie5azjmfbfgfjeqfuhjmmgx9zuj736ijg7nffhf8rviq5svkgxbp639y9nfgc.m3u8 +#EXTINF:-1 tvg-id="NickelodeonEast.us",Nickelodeon East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-nick.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyDivorceCourt.us",Nosey Divorce Court (480p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e76d1474f9020c06f9ee_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyJerrySpringer.us",Nosey Jerry Springer [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e7f848f1ff2e1d2555a2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyJudgeKarensCourt.us",Nosey Judge Karen's Court (540p) +https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e7261474f9020c06f9ec_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyMaury.us",Nosey Maury [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e88458ad7801fa2cfc2e_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseySteveWilkos.us",Nosey Steve Wilkos [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e84c95ee0253b97679d7_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NothingScripted.us",Nothing Scripted (720p) +https://30a-tv.com/NothingScripted.m3u8 +#EXTINF:-1 tvg-id="NRBTV.us",NRB TV (480p) +https://uni6rtmp.tulix.tv/nrbnetwork/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NYXT.us",NYXT (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/19770665/events/5522162/live.m3u8 +#EXTINF:-1 tvg-id="OANEncore.us",OAN Encore (720p) [Geo-blocked] +https://cdn.herringnetwork.com/80A4DFF/oane_oregon/OAN_Encore.m3u8 +#EXTINF:-1 tvg-id="Olelo49.us",Olelo 49 (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/olelo/G0125_009/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo53.us",Olelo 53 (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/olelo/G0125_011/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo54.us",Olelo 54 (720p) [Not 24/7] +https://granicusliveus12-a.akamaihd.net/olelo/G0125_012/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo55.us",Olelo 55 (720p) [Not 24/7] +https://granicusliveus12-a.akamaihd.net/olelo/G0125_013/playlist.m3u8 +#EXTINF:-1 tvg-id="OmidJavedan.us",Omid Javedan (720p) [Not 24/7] +http://livestream.5centscdn.com/shaditv/23abe62a446fc05ce0a6c810f4045308.sdp/index.m3u8 +#EXTINF:-1 tvg-id="OURTV.us",Opportunities in Urban Renaissance Television (OURTV) (720p) +https://hls-cdn.tvstartup.net/barakyah-channel/play/mp4:ourtvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="OrangeTV.us",Orange TV (720p) +http://otv3.ocfl.net:1936/OrangeTV/smil:OrangeTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (720p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7outdoor.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (720p) [Geo-blocked] +https://livecdn.fptplay.net/world/outdoorfhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (1080p) [Offline] +http://ott.watch/stream/E7Q3UVKI5H/211.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7pac12.m3u8 +#EXTINF:-1 tvg-id="KNETCD2.us",Panarmenian TV (KNET-CD 25.2) (360p) [Not 24/7] +http://granicusliveus6-a.akamaihd.net/torrance/G0057_005/playlist.m3u8 +#EXTINF:-1 tvg-id="ParamountComedyRussia.us",Paramount Comedy Russia [Timeout] +http://45.145.32.11:20007/paramount_comedy/video.m3u8 +#EXTINF:-1 tvg-id="PartyTymeKaraoke.us",Party Tyme Karaoke (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=64 +#EXTINF:-1 tvg-id="PayameAfghanTV.us",Payam-e-Afghan TV (480p) [Not 24/7] +http://g5nl6xx5lpq6-hls-live.5centscdn.com/live1234/2621b29e501b445fabf227b086123b70.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="PayvandTV.us",Payvand TV (720p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/ucur1/Payvand/playlist.m3u8 +#EXTINF:-1 tvg-id="PBCTapeshTV.us",PBC Tapesh TV (720p) [Offline] +https://iptv.tapesh.tv/tapesh/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS 39 Allentown PA (WLVT) (720p) +https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS 39 Extra Philadelphia PA (WPPT) (480p) +https://forerunnerrtmp.livestreamingcdn.com/output18-2/output18-2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED-TV) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED-TV) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="",PBS Create Los Angeles CA (KLCS-DT3) (720p) [Geo-blocked] +https://d1mxoeplf1ak5a.cloudfront.net/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Create Tallahassee FL (WFSU-TV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/CREATE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Dallas TX (KERA) (1080p) [Geo-blocked] +https://kera-flash.streamguys1.com/live/eventStream/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS KET Louisville KY (WKMJ-TV) (720p) +https://2-fss-1.streamhoster.com/pl_134/amlst:200914-1282960/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSKidsAKST.us",PBS Kids Alaska (1080p) +https://livestream.pbskids.org/out/v1/2963202df0c142c69b5254a546473308/akst.m3u8 +#EXTINF:-1 tvg-id="PBSKidsEST.us",PBS Kids Eastern/Central (720p) +https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSKidsEST.us",PBS Kids Eastern/Central (1080p) +https://livestream.pbskids.org/out/v1/1e3d77b418ad4a819b3f4c80ac0373b5/est.m3u8 +#EXTINF:-1 tvg-id="PBSKidsHAST.us",PBS Kids Hawaii (1080p) +https://livestream.pbskids.org/out/v1/19d1d62bf61b4aea9ec20f83b6450a4e/hast.m3u8 +#EXTINF:-1 tvg-id="PBSKidsMST.us",PBS Kids Mountain (1080p) +https://livestream.pbskids.org/out/v1/00a3b9014fa54c40bee6ca68a104a8a4/mst.m3u8 +#EXTINF:-1 tvg-id="PBSKidsPST.us",PBS Kids Pacific (1080p) +https://livestream.pbskids.org/out/v1/c707b9310f2848de849b336f9914adbc/pst.m3u8 +#EXTINF:-1 tvg-id="MPT.us" status="online",PBS MPT Baltimore MD (WMPB) (1088p) +https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS-TV1) (480p) +http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS-TV1) (720p) +http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS-TV1) (480p) +http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS-TV1) (720p) +http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",PBS Tallahassee FL (WFSU-TV1) (720p) +https://5e6cea03e25b6.streamlock.net/live/WFSU-PBS.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldChannel.us",PBS World Channel (480p) +https://cs.ebmcdn.net/eastbay-live-hs-1/apt/mp4:apt-world/playlist.m3u8 +#EXTINF:-1 tvg-id="PCCTV.us",PCC-TV Pinellas County FL (480p) [Not 24/7] +http://granicusliveus1-a.akamaihd.net/pinellas/G1551_004/playlist.m3u8 +#EXTINF:-1 tvg-id="",Peachtree TV Atlanta GA (WPCH-TV1) (480p) +http://encodercdn1.frontline.ca/encoder181/output/Peachtree/playlist.m3u8 +#EXTINF:-1 tvg-id="",Peachtree TV Atlanta GA (WPCH-TV1) (720p) +http://encodercdn1.frontline.ca/encoder181/output/Peachtree_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) +https://d1qaz9zojo1ayt.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) +https://peopletv-oo.akamaized.net/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) +https://peopletv-samsungus-ingest.akamaized.net/playlist.m3u8 +#EXTINF:-1 tvg-id="WPIXTV.us",PIX11 New York NY (720p) +https://content.uplynk.com/channel/98828f7707b84dc496472d5789143df2.m3u8 +#EXTINF:-1 tvg-id="PlantBasedNetwork.us",Plant Based Network (1080p) [Not 24/7] +https://hls-cdn.tvstartup.net/barakyah-channel/live/pbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Pop.us",Pop (1080p) [Offline] +https://live-poptv-fastly-prod.global.ssl.fastly.net/pop/master.m3u8 +#EXTINF:-1 tvg-id="PopstarTV.us",Popstar! TV (1080p) [Offline] +https://a.jsrdn.com/broadcast/wAlxn4cs/c.m3u8 +#EXTINF:-1 tvg-id="PopularScience.us",Popular Science (720p) [Offline] +https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 +#EXTINF:-1 tvg-id="PositivTV.us",Positiv TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8973036/live.m3u8 +#EXTINF:-1 tvg-id="PrimeTimeDrama.us",Prime Time Drama (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-ptd/playlist.m3u8 +#EXTINF:-1 tvg-id="PTLTVNetwork.us",PTL TV Network (720p) +https://morningside-lh.akamaihd.net/i/jblive_1@303354/master.m3u8 +#EXTINF:-1 tvg-id="PureRock.us",Pure Rock [Offline] +http://159.69.56.148:25461/live/PuroRock/PuroRock24-7.com/25.m3u8 +#EXTINF:-1 tvg-id="QuahzTV.us",Quahz TV (360p) +https://t06243a-lh.akamaihd.net/i/t06243a_1@536897/index_750_av-p.m3u8 +#EXTINF:-1 tvg-id="QVC2.us",QVC 2 (720p) +https://lsqvc2us-lh.akamaihd.net/i/lsqvc2us_01@809440/master.m3u8 +#EXTINF:-1 tvg-id="QVC2Deutsch.us",QVC2 (Deutsch) (540p) +http://live.qvcde.simplestreamcdn.com/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVC3.us",QVC 3 (720p) +https://lsqvc3us-lh.akamaihd.net/i/lsqvc3us_01@809459/master.m3u8 +#EXTINF:-1 tvg-id="QVC.us",QVC (720p) +https://lsqvc1uscln-lh.akamaihd.net/i/lsqvc1uscln_01@809410/master.m3u8 +#EXTINF:-1 tvg-id="QVC.us",QVC (720p) +https://lsqvc1usott-lh.akamaihd.net/i/lsqvc1usott_01@838836/master.m3u8 +#EXTINF:-1 tvg-id="QVC.us",QVC (German) (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCBeauty.us",QVC Beauty (German) (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCItalia.us",QVC Italia (540p) +https://qrg.akamaized.net/hls/live/2017383/lsqvc1it/master.m3u8 +#EXTINF:-1 tvg-id="QVCJapan.us",QVC Japan (720p) +https://cdn-live1.qvc.jp/iPhone/1501/1501.m3u8 +#EXTINF:-1 tvg-id="QVCPlus.de",QVC PLUS (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCStyleDeutsch.us",QVC Style (Deutsch) (540p) +http://live.qvcde.simplestreamcdn.com/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUK.us",QVC UK (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUK.us",QVC UK (540p) +https://d1txbbj1u9asam.cloudfront.net/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKPlus1.us",QVC UK +1 (540p) +https://live-qvcuk.simplestreamcdn.com/hera/remote/qvcuk_primary_sdi1/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKBeauty.us",QVC UK Beauty (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKExtra.us",QVC UK Extra (540p) +https://live-qvcuk.simplestreamcdn.com/live/qvcuk_extra_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKStyle.us",QVC UK Style (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_style_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVTV.us",QVTV (720p) +https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioInmaculada.us",Radio Inmaculada (1080p) [Not 24/7] +https://tv2.fastcast4u.com:3594/live/vsojgreilive.m3u8 +#EXTINF:-1 tvg-id="RadioJavan.us",Radio Javan (1080p) +https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRitmo.us",Radio Ritmo (1080p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/lax/lax/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioUTV.us",Radio U TV (720p) [Not 24/7] +https://cdnlive.radiou.com/LS-ATL-43240-1/index.m3u8 +#EXTINF:-1 tvg-id="RadioyTelevisionMarti.us",Radio y Televisión Martí (1080p) +https://ocb-lh.akamaihd.net/i/ocb_mpls_tvmc1@383606/master.m3u8 +#EXTINF:-1 tvg-id="RealVision.us",Real Vision (720p) +https://a.jsrdn.com/broadcast/2a755012a8/+0000/c.m3u8 +#EXTINF:-1 tvg-id="",Red Apple 21 (Fairfax County Public Schools) (480p) [Not 24/7] +https://cs.ebmcdn.net/eastbay-live-hs-1/fcps/mp4:fcps/playlist.m3u8 +#EXTINF:-1 tvg-id="Reelz.us",Reelz (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/d37066a396/+0000/c.m3u8 +#EXTINF:-1 tvg-id="RelaxingRain.us",Relaxing Rain (720p) +https://a.jsrdn.com/broadcast/76381deeda/+0000/c.m3u8 +#EXTINF:-1 tvg-id="RetroTV.us",Retro TV (720p) +https://bcovlive-a.akamaihd.net/5e531be3ed6c41229b2af2d9bffba88d/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="",Retro TV (KCKS-LD9) (480p) +https://cdn.igocast.com/channel9_hls/channel9_master.m3u8 +#EXTINF:-1 tvg-id="Revn.us",Rev'n (720p) +https://bcovlive-a.akamaihd.net/a71236fdda1747999843bd3d55bdd6fa/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="",Rev'n (KCKS-LD7) (480p) +https://cdn.igocast.com/channel7_hls/channel7_master.m3u8 +#EXTINF:-1 tvg-id="RevelationTV.us",Revelation TV (576p) +https://rtv.cdn.mangomolo.com/rtv/smil:rtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RevelationTV.us",Revelation TV (576p) +https://rtv.cdn.mangomolo.com/rtv/smil:switch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RevryQueer.us",Revry Queer (720p) +https://4aafa23ec0a6477ca31466bd83a115a4.mediatailor.us-west-2.amazonaws.com/v1/master/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-GALXY/mt/galxy/43/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RoosterTeethTV.us",Rooster Teeth TV (1080p) +https://d2klx6wjx7p5vm.cloudfront.net/Rooster-teeth/ngrp:Rooster-teeth_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RunwayTV.us",Runway TV (720p) [Not 24/7] +https://runway-hls.secdn.net/runway-live/play/runway/playlist.m3u8 +#EXTINF:-1 tvg-id="SafeTV.us",SafeTV (1080p) +http://18.191.91.130:1935/live/safetv/playlist.m3u8 +#EXTINF:-1 tvg-id="SamsungWildlife.us",Samsung Wildlife [Offline] +https://d23gend7a1exlu.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Saveur.us",Saveur (720p) [Offline] +https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="SciFi4U.us",Sci-Fi 4U (720p) +https://broadcast.mytvtogo.net/SciFiTV4u/SciFiTV4u/playlist.m3u8 +#EXTINF:-1 tvg-id="Screamfest.us",Screamfest (720p) [Offline] +https://vcnleomarkstudios.teleosmedia.com/stream/leomarkstudios/screamfest/playlist.m3u8 +#EXTINF:-1 tvg-id="ScreenDreams.us",Screen Dreams (720p) +https://content.uplynk.com/channel/3e4b9cada2b74cf18977298804134a36.m3u8 +#EXTINF:-1 tvg-id="SeattleChannel.us",Seattle Channel (720p) [Not 24/7] +https://wowzaprod188-i.akamaihd.net/hls/live/730322/3fa8d5f5/playlist.m3u8 +#EXTINF:-1 tvg-id="SentTVGlobalNetwork.us",Sent TV Global Network (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-stgn/mono.m3u8 +#EXTINF:-1 tvg-id="SGTN49.us",Sent TV Global Network Atlanta (SGTN-49) (720p) [Timeout] +http://stgn-49.tulix.tv/live19/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="Shabakeh7.us",Shabakeh 7 (720p) +http://rtmp.abnsat.com/hls/txministry.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] +https://livestreamcdn.net:444/ShalomTV/ShalomTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ShopHQ.us",Shop HQ (720p) +https://aos01-evine.secure.footprint.net/evine/clean/appleman.m3u8 +#EXTINF:-1 tvg-id="ShopLC.us",Shop LC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/DASH_DASH/Live/channel(ott)/master.mpd +#EXTINF:-1 tvg-id="",Shop LC (KCKS-LD10) (480p) [Not 24/7] +https://cdn.igocast.com/channel10_hls/channel10_master.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) +https://shoutfactory-shoutfactory-zype.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Skwad.us",SKWAD (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=71 +#EXTINF:-1 tvg-id="Slimo.us",Slimo (540p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2783932c8368bdbfd8a5/playlist.m3u8 +#EXTINF:-1 tvg-id="",Smart Lifestyle TV [Offline] +https://t01587-lh.akamaihd.net/i/t01587SmartLifeStyle_1@692079/master.m3u8 +#EXTINF:-1 tvg-id="Smile.us",Smile (540p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266916/live.m3u8 +#EXTINF:-1 tvg-id="SoniderosTV.us",Sonideros TV (360p) [Not 24/7] +https://tv2.fastcast4u.com:3728/live/soniderostvlive.m3u8 +#EXTINF:-1 tvg-id="SBN.us",SonLife Broadcasting (SBN) (270p) +https://sonlife7-i.akamaihd.net/hls/live/585011/ch7/master.m3u8 +#EXTINF:-1 tvg-id="SBN.us",SonLife Broadcasting (SBN) (720p) [Offline] +https://sonlife5-i.akamaihd.net/hls/live/584631/ch5/master.m3u8 +#EXTINF:-1 tvg-id="SBNGlobal.us",SonLife Broadcasting Global (SBN) (720p) [Offline] +https://sonlife10-i.akamaihd.net/hls/live/585013/ch10/master.m3u8 +#EXTINF:-1 tvg-id="SpikeItalia.us",Spike Italia (480p) [Offline] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 +#EXTINF:-1 tvg-id="SpiritTV.us",Spirit TV (720p) [Not 24/7] +https://cdnlive.myspirit.tv/LS-ATL-43240-2/index.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (720p) +https://playout4multirtmp.tulix.tv/live6/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="SportskoolTV.us",Sportskool TV (486p) +https://a.jsrdn.com/broadcast/fabeab4b08/+0000/c.m3u8 +#EXTINF:-1 tvg-id="SpydarTV.us",Spydar TV (720p) +https://simultv.s.llnwi.net/n4s4/Spydar/interlink.m3u8 +#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Not 24/7] +https://stadiumlivein-i.akamaihd.net/hls/live/522512/mux_4/master.m3u8 +#EXTINF:-1 tvg-id="",Stadium | Live (720p) [Offline] +https://bcovlive-a.akamaihd.net/e64d564b9275484f85981d8c146fb915/us-east-1/5994000126001/f3d8696d886f4c3b9612132643061743/playlist_ssaiM.m3u8 +#EXTINF:-1 tvg-id="",STAR Channel (Spain) [Offline] +http://45.179.140.242:8000/play/a0h5 +#EXTINF:-1 tvg-id="",STAR Life (Spain) [Offline] +http://45.179.140.242:8000/play/a0h4 +#EXTINF:-1 tvg-id="StockchartsTV.us",StockCharts TV (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/united-states/stockchartstv +#EXTINF:-1 tvg-id="StreetMusic4U.us",Street Music 4U (720p) +https://59d39900ebfb8.streamlock.net/streetmusic/streetmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="StreetMusic4U.us",Street Music 4U (720p) [Not 24/7] +https://broadcast.mytvtogo.net/streetmusic/streetmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="SubRangTV.us",SubRang TV (720p) [Not 24/7] +https://cdn20.liveonlineservices.com/hls/subrang.m3u8 +#EXTINF:-1 tvg-id="SubRangTV.us",SubRang TV (720p) [Not 24/7] +https://cdn61.liveonlineservices.com/hls/subrang.m3u8 +#EXTINF:-1 tvg-id="SwordandShield.us",Sword and Shield (720p) +https://a.jsrdn.com/broadcast/9e63a1b236/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TAGTV.us",TAG TV (1080p) [Not 24/7] +https://cdn30.liveonlineservices.com/hls/tagtv.m3u8 +#EXTINF:-1 tvg-id="TangoTV.us",TangoTV (768p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/8066/8066/playlist.m3u8 +#EXTINF:-1 tvg-id="TasteItTV.us",Taste It TV (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5af61f59d5eeee7af3d1db8f/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) +https://tastemadessai.akamaized.net/amagi_hls_data_tastemade-tastemade/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeAustralia.us",Tastemade Australia (1080p) +https://tastemadeintaus-smindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) +https://tastemadees16intl-brightcove.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es16intl-brightcove/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TBD.us",TBD. (720p) +https://content.uplynk.com/channel/1831163f97674328ad9f4b4814ed39c5.m3u8 +#EXTINF:-1 tvg-id="TBNArmenia.us",TBN Armenia [Offline] +https://bogtvhdlive-f.akamaihd.net/i/tbn_armenia@198331/master.m3u8 +#EXTINF:-1 tvg-id="TBNAsia.us",TBN Asia (360p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s39/02.m3u8 +#EXTINF:-1 tvg-id="TBNInspire.us",TBN Inspire (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266909/live.m3u8 +#EXTINF:-1 tvg-id="TBNUS.us",TBN US (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266920/live.m3u8 +#EXTINF:-1 tvg-id="TBNUkraina.us",TBN Украина (720p) [Timeout] +http://62.32.67.187:1935/WEB_Ukraine24/Ukraine24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TBSEast.us",TBS East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023172/tbseast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TBSWest.us",TBS West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023174/tbswest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TCMEast.us",TCM East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023186/tcmeast/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="TCMWest.us",TCM West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023187/tcmwest/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="TCT.us",TCT (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/tct +#EXTINF:-1 tvg-id="TCTKids.us",TCT Kids (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/tctkids +#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us",TD Ameritrade Network (1080p) +https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8 +#EXTINF:-1 tvg-id="",Techno Warehouse (US) (1080p) [Not 24/7] +https://eu-nl-012.worldcast.tv/dancetelevisionthree/dancetelevisionthree.m3u8 +#EXTINF:-1 tvg-id="WZDCCD.us",Telemundo 44 Washington DC (432p) [Offline] +https://wrclive-f.akamaihd.net/i/wrcb2_1@46880/master.m3u8 +#EXTINF:-1 tvg-id="Telemundo.us",Telemundo (416p) [Offline] +https://wmaqlive-f.akamaihd.net/i/wmaqb1_1@24420/master.m3u8 +#EXTINF:-1 tvg-id="WSCVNoticias.us",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] +https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 +#EXTINF:-1 tvg-id="WSCVNoticias.us",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] +https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 +#EXTINF:-1 tvg-id="WSNSNoticias.us",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 +#EXTINF:-1 tvg-id="WSNSNoticias.us",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 +#EXTINF:-1 tvg-id="TeleRaydo.us",TeleRadyo (720p) +https://abscbn-ono.akamaized.net/midroll/amagi_hls_data_abscbnAAA-abscbn-teleradyo-oando/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Tempe11.us",Tempe 11 AZ (720p) [Not 24/7] +https://granicusliveus1-a.akamaihd.net/tempe/G0355_003/playlist.m3u8 +#EXTINF:-1 tvg-id="TGJunior.us",TG Junior (480p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=31 +#EXTINF:-1 tvg-id="TheArchive.us",The Archive (540p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=74 +#EXTINF:-1 tvg-id="TheBeachChannel.us",The Beach Channel (720p) +https://live.lwcdn.com/live/amlst:ALH8QFrg_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/14c063cc-8be5-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips +#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) [Offline] +https://a.jsrdn.com/broadcast/256ccf645e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="KTLADT1.us",The CW Los Angeles CA (KTLA-DT1) (720p) [Not 24/7] +http://trn03.tulix.tv/teleup-N8qwnqgUq2/playlist.m3u8 +#EXTINF:-1 tvg-id="",The CW New York NY (WPIX1) (720p) +http://encodercdn1.frontline.ca/kamino/output/pix11_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="",The CW Tallahassee FL (WTLF1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WTLHCW.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) [Geo-blocked] +https://a.jsrdn.com/broadcast/9Kl3dcb5l/c.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) +https://thefirst-distroscale.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="",The Florida Channel Tallahassee FL (WFSU-TV2) (480p) +https://5e6cea03e25b6.streamlock.net/live/WFSU-FL.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheHeartlandNetwork.us",The Heartland Network (720p) +https://bcovlive-a.akamaihd.net/1ad942d15d9643bea6d199b729e79e48/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="TheLoveDestination.us",The Love Destination (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=43 +#EXTINF:-1 tvg-id="TheNowNetwork.us",The Now Network (480p) [Not 24/7] +https://link.frontlayer.com/services/hls2/fl619843/index.m3u8 +#EXTINF:-1 tvg-id="",The Ohio Channel (WOSU-DT3) (720p) +https://5ebe6889de541.streamlock.net/live/stream_10/playlist.m3u8 +#EXTINF:-1 tvg-id="TheOutdoorCookingChannel.us",The Outdoor Cooking Channel (480p) [Offline] +http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/playlist.m3u8 +#EXTINF:-1 tvg-id="TheRetroChannel.us",The Retro Channel (1080p) [Not 24/7] +https://5fd5567570c0e.streamlock.net/theretrochannel/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheRockvilleChannel.us",The Rockville Channel (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/rockvillemd/G0458_001/playlist.m3u8 +#EXTINF:-1 tvg-id="TheShoppingChannel.us",The Shopping Channel (720p) +https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 +#EXTINF:-1 tvg-id="TheSoutheasternChannel.us",The Southeastern Channel (540p) +http://147.174.13.196/live/WIFI-1296k-540p/WIFI-1296k-540p.m3u8 +#EXTINF:-1 tvg-id="TheTitanicChannel.us",The Titanic Channel (720p) +https://a.jsrdn.com/broadcast/e6bdcb5ae9/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us",The Wall Street Journal Live (720p) +https://d155hi8td9k2ns.cloudfront.net/out/wapo-medialive3-rtmp/live.m3u8 +#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us",The Wall Street Journal Live (720p) +https://wsjlivehls-lh.akamaihd.net/i/events1_1@174990/master.m3u8 +#EXTINF:-1 tvg-id="ThisTVNetwork.us",This TV Network (480p) +https://cdn.igocast.com/channel11_hls/channel11_master.m3u8 +#EXTINF:-1 tvg-id="TNTEast.us",TNT East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023168/tnteast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TNTSports2Brasil.us",TNT Sports 2 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_02/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports3Brasil.us",TNT Sports 3 Brasil (720p) +https://glxlmn026c.singularcdn.net.br/playout_03/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports4Brasil.us",TNT Sports 4 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_04/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports5Brasil.us",TNT Sports 5 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_05/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTWest.us",TNT West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023170/tntwest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=37 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=36 +#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us",Top Stories by Newsy (720p) +http://content.uplynk.com/channel/04cce35dcd994bbc82d61805ae67a65f.m3u8 +#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us",Top Stories by Newsy (720p) +https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8 +#EXTINF:-1 tvg-id="TPTNow.us",TPT Now KTCA-DT5 (720p) [Not 24/7] +https://api.new.livestream.com/accounts/12638076/events/8488790/live.m3u8 +#EXTINF:-1 tvg-id="TranquilThunderstorms.us",Tranquil Thunderstorms (720p) +https://a.jsrdn.com/broadcast/18b42f9aef/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TrinityChannel.us",Trinity Channel (480p) [Not 24/7] +http://rtmp1.abnsat.com/hls/trinity.m3u8 +#EXTINF:-1 tvg-id="TruTVEast.us",TruTV East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023176/trueast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TruTVWest.us",TruTV West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023178/truwest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TSTV.us",TSTV (720p) +http://tstv-stream.tsm.utexas.edu/hls/livestream_hi/index.m3u8 +#EXTINF:-1 tvg-id="TulalipTV.us",Tulalip TV (720p) [Not 24/7] +https://dcunilive262-lh.akamaihd.net/i/dclive_1@303126/index_150_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="",TV33 Detroit Live (WHPR) (720p) [Not 24/7] +http://162.244.81.156:1935/whprtv33roku/whprtv33roku/playlist.m3u8 +#EXTINF:-1 tvg-id="TVLand.us",TV Land (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/TVLand/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBJ1.us",TVB J1 (720p) [Geo-blocked] +https://bcovlive-a.akamaihd.net/f23dfe49b06b45d8878b55b4b6909595/us-west-2/5324042807001/4a3bca5b047b4564b18bb12dfa26ba62/playlist_ssaiM.m3u8 +#EXTINF:-1 tvg-id="TVS.us",TVS (1080p) [Not 24/7] +https://rds3.desdeparaguay.net/tvs/tvs/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSBoxing.us",TVS Boxing (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsboxing/index.m3u8 +#EXTINF:-1 tvg-id="TVSCipherNetwork.us",TVS Cipher Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmystery/index.m3u8 +#EXTINF:-1 tvg-id="TVSClassicMovies.us",TVS Classic Movies (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsclassicmovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSClassicSports.us",TVS Classic Sports (360p) +http://rpn1.bozztv.com/36bay2/gusa-tvs/index.m3u8 +#EXTINF:-1 tvg-id="TVSComedyNetwork.us",TVS Comedy Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-comedyclassics/index.m3u8 +#EXTINF:-1 tvg-id="TVSDriveInMovie.us",TVS Drive In Movie (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsdriveinmovie/index.m3u8 +#EXTINF:-1 tvg-id="TVSFamilyChannel.us",TVS Family Channel (360p) +https://rpn1.bozztv.com/36bay2/gusa-TVSFamilyChannel/index.m3u8 +#EXTINF:-1 tvg-id="TVSFilmNoirNetwork.us",TVS Film Noir Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-TVSFilmNoir/index.m3u8 +#EXTINF:-1 tvg-id="TVSFrontPageDetective.us",TVS Front Page Detective (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsfrontpagedetective/index.m3u8 +#EXTINF:-1 tvg-id="TVSHiTops.us",TVS Hi Tops (360p) +https://rpn1.bozztv.com/36bay2/gusa-hitops/index.m3u8 +#EXTINF:-1 tvg-id="TVSHollywoodHistory.us",TVS Hollywood History (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvshollywoohistory/mono.m3u8 +#EXTINF:-1 tvg-id="TVSHorrorNetwork.us",TVS Horror Network (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvshorror/index.m3u8 +#EXTINF:-1 tvg-id="TVSInspirationalNetwork.us",TVS Inspirational Network (360p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-TVSInspirationalNetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSMainstreet.us",TVS Mainstreet (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmainst/index.m3u8 +#EXTINF:-1 tvg-id="TVSMusicNetwork.us",TVS Music Network (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmusic/index.m3u8 +#EXTINF:-1 tvg-id="TVSNostalgia.us",TVS Nostalgia (472p) +https://rpn1.bozztv.com/36bay2/gusa-nostalgia/index.m3u8 +#EXTINF:-1 tvg-id="TVSNostalgiaMovies.us",TVS Nostalgia Movies (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvsNostalgiaMovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSPetParadeNetwork.us",TVS Pet Parade Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-petparadenetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSPinballNetwork.us",TVS Pinball Network (694p) +https://rpn1.bozztv.com/36bay2/gusa-TVSCartoonNetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSQuizShowNetwork.us",TVS Quiz Show Network (272p) +https://rpn1.bozztv.com/36bay2/gusa-tvsgameshow/index.m3u8 +#EXTINF:-1 tvg-id="TVSRareCollectibles.us",TVS Rare Collectibles (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsrarecollectibles/index.m3u8 +#EXTINF:-1 tvg-id="TVSSelectNetwork.us",TVS Select Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsselect/index.m3u8 +#EXTINF:-1 tvg-id="TVSSiloDiscountNetwork.us",TVS Silo Discount Network (484p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvssilodiscount/index.m3u8 +#EXTINF:-1 tvg-id="TVSSports.us",TVS Sports (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvssports/index.m3u8 +#EXTINF:-1 tvg-id="TVSSportsBureau.us",TVS Sports Bureau (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvssportsbureau/index.m3u8 +#EXTINF:-1 tvg-id="TVSTallyHo.us",TVS Tally Ho (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvstallyho/index.m3u8 +#EXTINF:-1 tvg-id="TVSTavern.us",TVS Tavern (720p) +https://rpn1.bozztv.com/36bay2/gusa-tavern/index.m3u8 +#EXTINF:-1 tvg-id="TVSTelevisionNetwork.us",TVS Television Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvstn/index.m3u8 +#EXTINF:-1 tvg-id="TVSTodayHomeEntertainmentNetwork.us",TVS Today Home Entertainment Network (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-TVSTodayHomeEntertainment/index.m3u8 +#EXTINF:-1 tvg-id="TVSTravel.us",TVS Travel Network (352p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvstravel/index.m3u8 +#EXTINF:-1 tvg-id="TVSTurbo.us",TVS Turbo (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsturbo/index.m3u8 +#EXTINF:-1 tvg-id="TVSWesternMovie.us",TVS Western Movie (270p) +https://rpn1.bozztv.com/36bay2/gusa-tvswesternmovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSWomenSports.us",TVS Women Sports (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvswsn/index.m3u8 +#EXTINF:-1 tvg-id="UALRTV.us",UALR TV (720p) [Offline] +https://na-all23.secdn.net/pegstream3-live/play/65ea794b-dd82-41ce-8e98-a9177289a063/master.m3u8 +#EXTINF:-1 tvg-id="UCTVUniversityofCalifornia.us",UCTV University of California (720p) [Not 24/7] +https://59e8e1c60a2b2.streamlock.net/509/509.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="UNWebTV.us",UN Web TV (540p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/un150_A1_1@575439/master.m3u8 +#EXTINF:-1 tvg-id="UnbeatenCombat.us",Unbeaten Combat (720p) [Offline] +https://d179m5eq83yziw.cloudfront.net/live3/unbeaten_tv/bitrate1-clear.isml/manifest.m3u8 +#EXTINF:-1 tvg-id="Unidentified.us",Unidentified [Offline] +https://a.jsrdn.com/broadcast/4hhfi556/indexR720P.m3u8 +#EXTINF:-1 tvg-id="",Untamed Sports TV (KCKS-LD8) (480p) [Not 24/7] +https://cdn.igocast.com/channel8_hls/channel8_master.m3u8 +#EXTINF:-1 tvg-id="UNTV.us",UNTV News & Recue (1080p) [Timeout] +https://cdn.untvweb.com/live-stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VallenatoInternacional.us",Vallenato Internacional (720p) [Not 24/7] +https://59a564764e2b6.streamlock.net/vallenato/Vallenato2/playlist.m3u8 +#EXTINF:-1 tvg-id="VBSTV.us",VBS TV (360p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://d80z5qf1qyhbf.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Vevo2K.us",Vevo 2K (1080p) [Offline] +https://5fa09a21270b74000140368e-samsung.ssai.zype.com/5fa09a21270b74000140368e_samsung/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoCountry.us",Vevo Country (1080p) [Offline] +https://5dcc69faf960dd5dcc551818-s-2.ssai.zype.com/5dcc69faf960dd5dcc551818-s-2/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoHipHop.us",Vevo Hip Hop (720p) +https://5dcc6a54d90e8c5dc4345c16-s-4.ssai.zype.com/5dcc6a54d90e8c5dc4345c16-s-4/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoHoliday.us" status="error",Vevo Holiday (1080p) [Offline] +https://5dcc69bb1621dc5de50b1db7-s-1.ssai.zype.com/5dcc69bb1621dc5de50b1db7-s-1/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoLatino.us",Vevo Latino (1080p) [Not 24/7] +https://5dcc6a9f1621dc5dd511ca14-s-5.ssai.zype.com/5dcc6a9f1621dc5dd511ca14-s-5/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoPopEurope.us",Vevo Pop Europe (1080p) +https://5f3491c50b093e00015a3c4c-samsung.eu.ssai.zype.com/5f3491c50b093e00015a3c4c_samsung_eu/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoRB.us",Vevo R&B (1080p) [Offline] +https://5dcc6a2840dfd15e7f8518ef-s-3.ssai.zype.com/5dcc6a2840dfd15e7f8518ef-s-3/manifest.m3u8 +#EXTINF:-1 tvg-id="VH1.us",VH1 (1080p) +https://content.uplynk.com/channel/36953f5b6546464590d2fcd954bc89cf.m3u8 +#EXTINF:-1 tvg-id="VictorValleyMovies.us",Victor Valley Movies (1080p) [Not 24/7] +https://2-fss-1.streamhoster.com/pl_122/201794-1414514-1/playlist.m3u8 +#EXTINF:-1 tvg-id="VictoryTelevisionNetwork.us",Victory Television Network (240p) [Timeout] +http://184.173.179.163:1935/victorytelevisionnetwork/victorytelevisionnetwork/playlist.m3u8 +#EXTINF:-1 tvg-id="",Village of Hastings-On-Hudson NY (WHOH-TV) (360p) +http://stream.swagit.com/live-edge/hastingsonhudsonny/smil:std-4x3-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="VoAPersian.us",VoA Persian (1080p) +https://voa-lh.akamaihd.net/i/voapnn_7@72817/master.m3u8 +#EXTINF:-1 tvg-id="VoATV.us",VoA TV (1080p) +https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/master.m3u8 +#EXTINF:-1 tvg-id="VoATV.us",VoA TV (1080p) [Not 24/7] +https://voa-lh.akamaihd.net/i/voa_mpls_tvmc3_3@320295/master.m3u8 +#EXTINF:-1 tvg-id="VSiN.us",VSiN (720p) +https://stream.rcncdn.com/live/vsinproxy.m3u8 +#EXTINF:-1 tvg-id="WarnerTV.us",Warner TV (720p) [Not 24/7] +https://www.livedoomovie.com/02_WarnerTVHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="WarnerTV.us",Warner TV (720p) [Timeout] +http://203.154.243.89:11205 +#EXTINF:-1 tvg-id="WatchItKid.us",Watch It Kid (486p) +https://content.uplynk.com/channel/ce3b524c342247549e996e7d3a977157.m3u8 +#EXTINF:-1 tvg-id="WatchItScream.us",Watch It Scream! (720p) +https://content.uplynk.com/channel/29aff31fecb848ab9044369db2d61642.m3u8 +#EXTINF:-1 tvg-id="",WCBI-TV News Tupelo MS (720p) +https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 +#EXTINF:-1 tvg-id="",WCBI-TV News Tupelo MS (720p) +https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 +#EXTINF:-1 tvg-id="",WCCA 194 Worcester MA (WCCA-TV) (480p) +https://worcester.vod.castus.tv/live/ch1.m3u8 +#EXTINF:-1 tvg-id="",WDAY News Fargo ND (720p) +https://player-api.new.livestream.com/accounts/27442514/events/8305246/live.m3u8 +#EXTINF:-1 tvg-id="",WDAY-X Automatic Weather Frago ND (720p) +https://player-api.new.livestream.com/accounts/27442514/events/8331542/live.m3u8 +#EXTINF:-1 tvg-id="",WDEF-TV News Chattanooga TN (720p) +http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 +#EXTINF:-1 tvg-id="",WDEF-TV News Chattanooga TN (720p) +http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 +#EXTINF:-1 tvg-id="",WeatherNation (KCKS-LD6) (480p) [Not 24/7] +https://cdn.igocast.com/channel6_hls/channel6_master.m3u8 +#EXTINF:-1 tvg-id="Westerns4U.us",Westerns 4U (480p) [Not 24/7] +https://broadcast.mytvtogo.net/westerntv4u/westerntv4u/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (480p) +http://encodercdn1.frontline.ca/encoder182/output/WGN/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (720p) +http://encodercdn1.frontline.ca/encoder182/output/WGN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (720p) +http://trn03.tulix.tv/teleup-mBm5MQ50rA/playlist.m3u8 +#EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us",White Plains Community Media (360p) +https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8 +#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 3) (480p) +https://frontdoor.wcat-tv.org:8787/live/live.m3u8 +#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 15) (360p) [Not 24/7] +https://edu-wcat.azureedge.net/live/live.m3u8 +#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 22) (480p) +https://frontdoor.wcat-tv.org:8686/live/live.m3u8 +#EXTINF:-1 tvg-id="WLNGRadio.us",WLNG Radio (410p) [Not 24/7] +http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="WLSTVNews.us",WLS TV News (720p) +https://content.uplynk.com/channel/ext/aac37e2c66614e699fb189ab391084ff/wls_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WMFDTV.us",WMFD-TV 68 Mansfield OH (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/1194911/events/3466400/live.m3u8 +#EXTINF:-1 tvg-id="WMGT.us",WMGT-TV News Macon GA (720p) +https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 +#EXTINF:-1 tvg-id="WMGT.us",WMGT-TV News Macon GA (720p) +https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 +#EXTINF:-1 tvg-id="",WPIX 11 (1080p) [Timeout] +http://71.187.29.220:8000/play/a08o/index.m3u8 +#EXTINF:-1 tvg-id="WPVITV.us",WPVI-TV News (720p) +https://content.uplynk.com/channel/ext/10b98e7c615f43a98b180d51797e74aa/wpvi_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WTVDTVNews.us",WTVD TV News (720p) +https://content.uplynk.com/channel/ext/f05837c508c44712aa7129d531f7dbe6/wtvd_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WTVQ.us",WTVQ-DT News Lexington KY (720p) +https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 +#EXTINF:-1 tvg-id="WTVQ.us",WTVQ-DT News Lexington KY (720p) +https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 +#EXTINF:-1 tvg-id="WuTangCollection.us",Wu Tang Collection (576p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=73 +#EXTINF:-1 tvg-id="WWAY.us",WWAY News Willmington NC (720p) +https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 +#EXTINF:-1 tvg-id="WWAY.us",WWAY News Willmington NC (720p) +https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 +#EXTINF:-1 tvg-id="WWENet.us",WWE Network (720p) +http://38.91.57.12:2082/wwe/playlist.m3u8 +#EXTINF:-1 tvg-id="WXXV.us",WXXV-TV News Biloxi MS (720p) +https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 +#EXTINF:-1 tvg-id="WXXV.us",WXXV-TV News Biloxi MS (720p) +https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 +#EXTINF:-1 tvg-id="Xcorps.us",Xcorps (720p) [Offline] +https://rpn1.bozztv.com/36bay2/gusa-xcorps/playlist.m3u8 +#EXTINF:-1 tvg-id="Xcorps.us",Xcorps (720p) [Timeout] +https://simultv.s.llnwi.net/n4s4/xcorps/interlink.m3u8 +#EXTINF:-1 tvg-id="XploreReisen.us",Xplore Reisen (720p) [Not 24/7] +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/1ecb875d-8be7-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) +https://d1ewctnvcwvvvu.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooNews.us",Yahoo! News (720p) +https://content.uplynk.com/channel/411ba7ca8cb6403a9e73509e49c3a77b.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) +https://a.jsrdn.com/broadcast/e0f99ab19c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="YoutooAmerica.us",Youtoo America (1080p) +https://thegateway.app/YouToo/YTamerica/playlist.m3u8 +#EXTINF:-1 tvg-id="YoutooAmerica.us" status="online",Youtoo America (1080p) +https://thegateway.app/YouToo/CueTones/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalDisney.us",Канал Disney (576p) [Not 24/7] +http://188.40.68.167/russia/disney/playlist.m3u8 diff --git a/streams/us_adultiptv.m3u b/streams/us_adultiptv.m3u new file mode 100644 index 000000000..852c66daf --- /dev/null +++ b/streams/us_adultiptv.m3u @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultIPTVnetAnal.us",AdultIPTV.net Anal (720p) +http://cdn.adultiptv.net/anal.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetAsian.us",AdultIPTV.net Asian (720p) +http://cdn.adultiptv.net/asian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us",AdultIPTV.net Big Ass (720p) +http://cdn.adultiptv.net/bigass.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us",AdultIPTV.net Big Dick (720p) +http://cdn.adultiptv.net/bigdick.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us",AdultIPTV.net Big Tits (720p) +http://cdn.adultiptv.net/bigtits.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlonde.us",AdultIPTV.net Blonde (720p) +http://cdn.adultiptv.net/blonde.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us",AdultIPTV.net Blowjob (720p) +http://cdn.adultiptv.net/blowjob.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBrunette.us",AdultIPTV.net Brunette (720p) +http://cdn.adultiptv.net/brunette.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCompilation.us",AdultIPTV.net Compilation (720p) +http://cdn.adultiptv.net/compilation.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us",AdultIPTV.net Cuckold (720p) +http://cdn.adultiptv.net/cuckold.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us",AdultIPTV.net Fetish (720p) +http://cdn.adultiptv.net/fetish.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us",AdultIPTV.net Gangbang (720p) +http://cdn.adultiptv.net/gangbang.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGay.us",AdultIPTV.net Gay (720p) +http://cdn.adultiptv.net/gay.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us",AdultIPTV.net Hardcore (720p) +http://cdn.adultiptv.net/hardcore.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us",AdultIPTV.net Interracial (720p) +http://cdn.adultiptv.net/interracial.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us",AdultIPTV.net Latina (720p) +http://cdn.adultiptv.net/latina.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us",AdultIPTV.net Lesbian (720p) +http://cdn.adultiptv.net/lesbian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLiveCams.us",AdultIPTV.net Live Cams (720p) +http://cdn.adultiptv.net/livecams.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us",AdultIPTV.net MILF (720p) +http://cdn.adultiptv.net/milf.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us",AdultIPTV.net Pornstar (720p) +http://cdn.adultiptv.net/pornstar.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us",AdultIPTV.net POV (720p) +http://cdn.adultiptv.net/pov.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRough.us",AdultIPTV.net Rough (720p) +http://cdn.adultiptv.net/rough.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us",AdultIPTV.net Russian (720p) +http://cdn.adultiptv.net/russian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us",AdultIPTV.net Teen (720p) +http://cdn.adultiptv.net/teen.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us",AdultIPTV.net Threesome (720p) +http://cdn.adultiptv.net/threesome.m3u8 diff --git a/streams/us_adultswim.m3u b/streams/us_adultswim.m3u new file mode 100644 index 000000000..5f41ea544 --- /dev/null +++ b/streams/us_adultswim.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultSwimAquaTeenHungerForce.us",Adult Swim Aqua Teen Hunger Force (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/aqua-teen/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimBlackJesus.us",Adult Swim Black Jesus (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/black-jesus/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimChannel5.us",Adult Swim Channel 5 (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/channel-5/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimDreamCorpLLC.us",Adult Swim Dream Corp LLC (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/DREAM-CORP-LLC/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimFishcam.us",Adult Swim Fishcam (1080p) +https://media.cdn.adultswim.com/streams/playlists/fishcam.backup.m3u8 +#EXTINF:-1 tvg-id="AdultSwimFishcam.us",Adult Swim Fishcam (1080p) +https://media.cdn.adultswim.com/streams/playlists/live-stream.primary.v2.m3u8 +#EXTINF:-1 tvg-id="AdultSwimInfomercials.us",Adult Swim Infomercials (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/infomercials/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimLastStreamOnTheLeft.us",Adult Swim Last Stream On The Left (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/lsotl/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimMetalocalypse.us",Adult Swim Metalocalypse (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/metalocalypse/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimOffTheAir.us",Adult Swim Off The Air (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/off-the-air/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimRickAndMorty.us",Adult Swim Rick and Morty (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/rick-and-morty/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimRobotChicken.us",Adult Swim Robot Chicken (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/robot-chicken/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimSamuraiJack.us",Adult Swim Samurai Jack (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/samurai-jack/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimTheEricAndreShow.us",Adult Swim The Eric Andre Show (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/eric-andre/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimTheVentureBros.us",Adult Swim The Venture Bros (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/venture-bros/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimYourPrettyFaceIsGoingToHell.us",Adult Swim Your Pretty Face Is Going To Hell (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/ypf/stream.m3u8 diff --git a/streams/us_bumblebee.m3u b/streams/us_bumblebee.m3u new file mode 100644 index 000000000..559fd9e30 --- /dev/null +++ b/streams/us_bumblebee.m3u @@ -0,0 +1,73 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BumblebeeTVAnimalsLive.us",Bumblebee TV Animals Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9537b8932c837b49397343/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVAuroraLive.us",Bumblebee TV Aurora Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953819932c837b49397345/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVAutoMoto.us",Bumblebee TV AutoMoto (720p) +https://stitcheraws.unreel.me/wse-node01.powr.com/live/5bf220fad5eeee0f5a40941a/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVBeachesLive.us",Bumblebee TV Beaches Live (720p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95396f932c837b49397360/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bumblebee TV Classics #1 (480p) +https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/manifest/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/0d14dc99-cc30-4c0e-8531-40cdfe650694/1.m3u8 +#EXTINF:-1 tvg-id="",Bumblebee TV Classics #2 (720p) +https://stitcheraws.unreel.me/wse-node05.powr.com/live/60f881602da3a5575eceb854/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCoronaVirusGov.us",Bumblebee TV CoronaVirus.Gov (720p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e7559e8a46b495a2283c5e8/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCountryBoyKidsVideo.us",Bumblebee TV Country Boy Kids Video (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf225aed5eeee0f5a4094bd/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCuteZone.us",Bumblebee TV Cute Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22518d5eeee0f5a409486/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVDocsChannel.us",Bumblebee TV Docs Channel (480p) +https://0813a4e76b5d404a97a4070b8e087bc4.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609d9d6344257cbfb6ee4/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVEpicM.us",Bumblebee TV Epic M (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22225d5eeee0f5a40941d/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVFGTV.us",Bumblebee TV FGTV (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2624990145130f25474620/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVForestLive.us",Bumblebee TV Forest Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953836932c837b49397355/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVFunZone.us",Bumblebee TV Fun Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625030145130f25474622/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVGiggleZone.us",Bumblebee TV Giggle Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22526d5eeee0f5a4094b8/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLakeLive.us",Bumblebee TV Lake Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95385c932c837b49397356/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLegoToons.us",Bumblebee TV Lego Toons (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22549d5eeee0f5a4094ba/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLetsPlayMinecraft.us",Bumblebee TV Lets Play Minecraft (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625700145130f25474624/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLifeBae.us",Bumblebee TV LifeBae (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22681932c8304fc453418/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMasterBuilder.us",Bumblebee TV Master Builder (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2256ed5eeee0f5a4094bb/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMotorCyclist.us",Bumblebee TV MotorCyclist (360p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2218bd5eeee0f5a40941b/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMountainLive.us",Bumblebee TV Mountain Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95387b932c837b49397357/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us",Bumblebee TV Now You Know (720p) +https://stitcheraws.unreel.me/wse-node01.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us",Bumblebee TV Now You Know [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVPopCornFlixAction.us",Bumblebee TV PopCornFlix Action (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5d4b21643f4d602ba521b06c/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVRecoilTV.us",Bumblebee TV Recoil TV (540p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7dff0f932c8368bdbfd5fd/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVRiversLive.us",Bumblebee TV Rivers Live (720p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95388f932c837b4939735a/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVShortsChannel.us",Bumblebee TV Shorts Channel (720p) +https://b29da26d9a17436eafe339c08e488f33.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609010d552957bf5aa546/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVSmosh.us",Bumblebee TV Smosh (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625af5748670f12a3bee9/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVSunsetLive.us",Bumblebee TV Sunset Live (1080p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538a5932c837b4939735b/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us",Bumblebee TV Thinknoodles (Test for Bitcentral) (720p) +https://2459f78c2f5d42c996bb24407b76877a.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_60f88620abf1e257404a9250/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us",Bumblebee TV Thinknoodles [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5afc8Bumblebee+TV10e932c833522744733/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVToyZone.us",Bumblebee TV Toy Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22491932c8304fc4533e4/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVTrinityBeyond.us",Bumblebee TV Trinity & Beyond (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2626030145130f25474626/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVTropicsLive.us",Bumblebee TV Tropics Live (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538b9932c837b4939735c/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVWaterfallsLive.us",Bumblebee TV Waterfalls Live (1080p) +https://95771f8415a84e31bd152fe9c6c9905c.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5c953910932c837b4939735d/playlist.m3u8 diff --git a/streams/us_distro.m3u b/streams/us_distro.m3u new file mode 100644 index 000000000..dfdcf5e77 --- /dev/null +++ b/streams/us_distro.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ClassicRerunsTV.us",Classic Reruns TV (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/wnQPvAN9QBODw9hP-H0rZA/master.m3u8 +#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (1080p) [Not 24/7] +https://d397e8970cd346fdac04c0af81290c3a.mediatailor.us-west-2.amazonaws.com/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Hard-Knocks-DistroTV/109.m3u8 +#EXTINF:-1 tvg-id="HumorMill.us",Humor Mill (1080p) [Not 24/7] +https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-DistroTV/152.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) +https://nmxdistro.akamaized.net/hls/live/529965/Live_1/index.m3u8 +#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us",TD Ameritrade Network (1080p) +https://tdameritrade-distro.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) +https://tfd-distro.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) +https://thefirst-distroscale.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://venntv-distrotv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] +https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-DistroTV/150.m3u8 diff --git a/streams/us_filmon.m3u b/streams/us_filmon.m3u new file mode 100644 index 000000000..8bbd329e8 --- /dev/null +++ b/streams/us_filmon.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BBCNews.uk",BBC News (480p) [Offline] +http://www.filmon.com/vr-streams/27.high/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotland.uk",BBC One Scotland (480p) [Offline] +http://www.filmon.com/vr-streams/3166.high/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmonEroticSensations.us",Filmon Erotic Sensations (480p) [Not 24/7] +https://www.filmon.com/vr-streams/6152.high/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmonFetishFactory.us",Filmon Fetish Factory (480p) [Not 24/7] +https://www.filmon.com/vr-streams/6158.high/playlist.m3u8 diff --git a/streams/us_fubo.m3u b/streams/us_fubo.m3u new file mode 100644 index 000000000..fbf73499c --- /dev/null +++ b/streams/us_fubo.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FootballDailyXUMO.us",Football Daily (XUMO) (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-footballdaily/CDN/master.m3u8 +#EXTINF:-1 tvg-id="",fubo Sports Network (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-fubo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="MotorvisionXUMO.us",Motorvision (XUMO) (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-motorvisiontv/CDN/master.m3u8 diff --git a/streams/us_glewedtv.m3u b/streams/us_glewedtv.m3u new file mode 100644 index 000000000..26acdb286 --- /dev/null +++ b/streams/us_glewedtv.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) [Not 24/7] +https://redseat-thefirst-glewedtv.amagi.tv/index.m3u8 diff --git a/streams/us_imdbtv.m3u b/streams/us_imdbtv.m3u new file mode 100644 index 000000000..593998542 --- /dev/null +++ b/streams/us_imdbtv.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AbsoluteRealitybyWETV.us",Absolute Reality by WE TV (1080p) +https://amc-absolutereality-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (1080p) +https://amc-amcpresents-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IFCFilmsPicks.us",IFC Films Picks (1080p) +https://amc-ifc-films-picks-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RushbyAMC.us",Rush by AMC (1080p) +https://amc-rushbyamc-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SlightlyOffbyIFC.us",Slightly Off by IFC (1080p) +https://amc-slightly-off-by-amc-1.imdbtv.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_klowdtv.m3u b/streams/us_klowdtv.m3u new file mode 100644 index 000000000..efac8eafa --- /dev/null +++ b/streams/us_klowdtv.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AWE.us",AWE (720p) +http://n1.klowdtv.net/live1/awe_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="DemandAfrica.us",Demand Africa (720p) +https://demandafrica-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",ESTV (720p) [Offline] +https://estv-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FidoTV.us",Fido TV (720p) [Not 24/7] +http://n1.klowdtv.net/live3/fido_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (720p) [Not 24/7] +http://n1.klowdtv.net/live2/gsn_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="HNCFree.us",HNC Free (720p) [Offline] +https://hncfree-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) +http://n1.klowdtv.net/live1/oan_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) [Geo-blocked] +https://cdn.klowdtv.net/803B48A/oan_aws_ms/OAN.m3u8 +#EXTINF:-1 tvg-id="PopTV.us",Pop TV (720p) [Not 24/7] +http://n1.klowdtv.net/live2/pop_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="QVCLive.us",QVC Live (720p) [Not 24/7] +http://n1.klowdtv.net/live2/qvclive_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RedseatTheFirst.us",Redseat The First (720p) +https://redseat-thefirst-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (720p) +https://sportsgrid-klowdtv.amagi.tv/playlist.m3u8 diff --git a/streams/us_localbtv.m3u b/streams/us_localbtv.m3u new file mode 100644 index 000000000..22017b890 --- /dev/null +++ b/streams/us_localbtv.m3u @@ -0,0 +1,127 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KFPHDT3.us",KFPH-DT3 (GetTV) (480p) +https://v-px.theus6tv.tk/hls/13.3/playlist.m3u8 +#EXTINF:-1 tvg-id="KYWDT1.us" status="online",KYW-DT1 (CBS 3) (1080p) +https://v-pi.theus6tv.tk/hls/3.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WABCDT1.us",WABC-DT1 (ABC 7) (720p) +https://v-ny.theus6tv.tk/hls/7.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WABCDT4.us",WABC-DT4 (HSN) (432p) +https://v-ny.theus6tv.tk/hls/7.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT1.us",WACP-DT1 (TCT) (1080p) [Not 24/7] +https://v-pi.theus6tv.tk/hls/4.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT2.us",WACP-DT2 (AceTV) (480p) +https://v-pi.theus6tv.tk/hls/4.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT4.us",WACP-DT4 (ShopLC) (480p) +https://v-pi.theus6tv.tk/hls/4.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT5.us",WACP-DT5 (Jewelry TV) (480p) +https://v-pi.theus6tv.tk/hls/4.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT6.us",WACP-DT6 (The Family Channel) (480p) +https://v-pi.theus6tv.tk/hls/4.6/playlist.m3u8 +#EXTINF:-1 tvg-id="WCAUDT1.us",WCAU-DT1 (NBC 10) (1080p) +https://v-pi.theus6tv.tk/hls/10.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WCAUDT2.us",WCAU-DT2 (COZI TV) (432p) +https://v-pi.theus6tv.tk/hls/10.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WCBSDT1.us",WCBS-DT1 (CBS 2) (1080p) +https://v-ny.theus6tv.tk/hls/2.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WDPNDT2.us",WDPN-DT2 (Grit) (432p) +https://v-pi.theus6tv.tk/hls/2.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WDPNDT5.us",WDPN-DT5 (Retro TV) (432p) +https://v-pi.theus6tv.tk/hls/2.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WELLLD1.us",WELL-LD1 (Daystar) (1080p) +https://v-pi.theus6tv.tk/hls/45.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WFMZDT1.us",WFMZ-DT1 (720p) +https://v-pi.theus6tv.tk/hls/69.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT1.us",WHYY-DT1 (PBS Philadelphia) (1080p) +https://v-pi.theus6tv.tk/hls/12.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT2.us",WHYY-DT2 (Y2) (432p) +https://v-pi.theus6tv.tk/hls/12.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT3.us",WHYY-DT3 (Y Kids) (720p) [Not 24/7] +https://v-pi.theus6tv.tk/hls/12.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD1.us",WKOB-LD1 (Azteca America 42) (720p) +https://v-ny.theus6tv.tk/hls/42.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD2.us",WKOB-LD2 (Daystar) (480p) +https://v-ny.theus6tv.tk/hls/42.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD5.us",WKOB-LD5 (SonLife) (480p) +https://v-ny.theus6tv.tk/hls/42.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD6.us",WKOB-LD6 (Estrella TV) (480p) +https://v-ny.theus6tv.tk/hls/42.6/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD7.us",WKOB-LD7 (ShopLC) (480p) +https://v-ny.theus6tv.tk/hls/42.7/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD8.us",WKOB-LD8 (Novelisima) (480p) [Not 24/7] +https://v-ny.theus6tv.tk/hls/42.8/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT1.us",WLIW-DT1 (PBS WLIW) (1080p) +https://v-ny.theus6tv.tk/hls/21.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT2.us",WLIW-DT2 (Create TV) (432p) +https://v-ny.theus6tv.tk/hls/21.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT3.us",WLIW-DT3 (World) (432p) +https://v-ny.theus6tv.tk/hls/21.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT4.us",WLIW-DT4 (All Arts) (1080p) +https://v-ny.theus6tv.tk/hls/21.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WLVTDT1.us",WLVT-DT1 (PBS 39) (720p) +https://v-pi.theus6tv.tk/hls/39.1/playlist.m3u8 +#EXTINF:-1 tvg-id="",WMBQ-LD (FNX) (432p) +https://v-ny.theus6tv.tk/hls/46.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WMCNDT1.us",WMCN-DT1 (ShopHQ) (720p) +https://v-pi.theus6tv.tk/hls/44.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNBCDT1.us",WNBC-DT1 (NBC 4) (1080p) [Not 24/7] +https://v-ny.theus6tv.tk/hls/4.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNBCDT2.us",WNBC-DT2 (COZI TV) (432p) +https://v-ny.theus6tv.tk/hls/4.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNETDT1.us",WNET-DT1 (PBS THIRTEEN) (1080p) +https://v-ny.theus6tv.tk/hls/13.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNETDT2.us",WNET-DT2 (PBS KIDS) (720p) +https://v-ny.theus6tv.tk/hls/13.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJSDT1.us",WNJS-DT1 (NJ PBS) (1080p) +https://v-pi.theus6tv.tk/hls/23.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJSDT2.us",WNJS-DT2 (NHK WORLD) (1080p) +https://v-pi.theus6tv.tk/hls/23.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJUDT2.us",WNJU-DT2 (teleXitos) (432p) +https://v-ny.theus6tv.tk/hls/47.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT1.us",WNYE-DT1 (NYC Life) (1080p) +https://v-ny.theus6tv.tk/hls/25.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT2.us",WNYE-DT2 (NYC Gov) (432p) +https://v-ny.theus6tv.tk/hls/25.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT3.us",WNYE-DT3 (CUNY TV) (1080p) +https://v-ny.theus6tv.tk/hls/25.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYJLD.us",WNYJLD (480p) +https://v-ny.theus6tv.tk/hls/28.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYWDT1.us" status="online",WNYW-DT1 (FOX 5) (720p) +https://v-ny.theus6tv.tk/hls/5.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPHLDT1.us",WPHL-DT1 (PHL17) (720p) +https://v-pi.theus6tv.tk/hls/17.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPHLDT2.us",WPHL-DT2 (Antenna TV) (480p) +https://v-pi.theus6tv.tk/hls/17.2/playlist.m3u8 +#EXTINF:-1 tvg-id="",WPHY-CD2 (SonLife) (432p) +https://v-pi.theus6tv.tk/hls/25.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WPIXDT4.us",WPIX-DT4 (Rewind TV) (480p) +https://v-ny.theus6tv.tk/hls/11.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WPPXDT4.us",WPPX-DT4 (TrueReal) (480p) +https://v-pi.theus6tv.tk/hls/61.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WPPXDT5.us",WPPX-DT5 (Laff) (432p) +https://v-pi.theus6tv.tk/hls/61.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WPVIDT1.us",WPVI-DT1 (ABC 6) (720p) +https://v-pi.theus6tv.tk/hls/6.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPXNDT4.us",WPXN-DT4 (DEFY TV) (480p) +https://v-ny.theus6tv.tk/hls/31.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT1.us",WRNN-DT1 (ShopLC) (720p) +https://v-ny.theus6tv.tk/hls/48.1/playlist.m3u8 +#EXTINF:-1 tvg-id="",WRNN-DT2 (Circle) (432p) +https://v-ny.theus6tv.tk/hls/48.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT3.us",WRNN-DT3 (Canal de la Fe) (432p) +https://v-ny.theus6tv.tk/hls/48.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT4.us",WRNN-DT4 (QVC) (432p) +https://v-ny.theus6tv.tk/hls/48.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WTVEDT1.us",WTVE-DT1 (720p) +https://v-pi.theus6tv.tk/hls/51.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WTVEDT2.us",WTVE-DT2 (TimelessTV) (432p) +https://v-pi.theus6tv.tk/hls/51.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WTXFDT1.us",WTXF-DT1 (FOX 29) (720p) +https://v-pi.theus6tv.tk/hls/29.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WUVPDT3.us",WUVP-DT3 (True Crime Network) (432p) +https://v-pi.theus6tv.tk/hls/65.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WWSIDT2.us",WWSI-DT2 (teleXitos) (432p) +https://v-pi.theus6tv.tk/hls/62.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WXTVDT1.us",WXTV-DT1 (Univision 41) (720p) +https://v-ny.theus6tv.tk/hls/41.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WZTSCD1.us",WZTS-CD1 (COZI TV) (480p) +https://v-bluecbl.theus6tv.tk/hls/16.1/playlist.m3u8 diff --git a/streams/us_pbs.m3u b/streams/us_pbs.m3u new file mode 100644 index 000000000..bef8429b5 --- /dev/null +++ b/streams/us_pbs.m3u @@ -0,0 +1,265 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",PBS Albany NY (WMHT) (1080p) [Offline] +https://wmhtdt.lls.pbs.org/out/v1/5c496bd4d16348f0bca933eca69bdd1e/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Albuquerque NM (KNME) (1080p) [Offline] +https://knmedt.lls.pbs.org/out/v1/6bb7cfa3e3c34906a80c5babc026ca92/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Allentown PA (WLVT) (1080p) [Offline] +https://wlvtdt.lls.pbs.org/out/v1/92fd7dd5c56e47dfb169062a69f7a3bf/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Alliance OH (WNEO) (1080p) [Offline] +https://wneodt.lls.pbs.org/out/v1/59487e8689f14a92a443d8fd557ac948/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Anchorage AK (KAKM) (1080p) [Offline] +https://kakmdt.lls.pbs.org/out/v1/01b38c70d1e94da78deec21bb13383ed/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Appleton MN (KWCM) (1080p) [Offline] +https://kwcmdt.lls.pbs.org/out/v1/e178660dc7cf4389bf8834e4bb10df20/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Arlington DC (WETA) (1080p) [Offline] +https://wetadt5.lls.pbs.org/out/v1/616d9af7dd7641c1ba0b7be651c343a4/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Athens GA (WGTV) (1080p) [Offline] +https://wgtvdt.lls.pbs.org/out/v1/1fe7fe6e36524881bd999a7003394ec7/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Athens OH (WOUB) (1080p) [Offline] +https://woubdt.lls.pbs.org/out/v1/f9f879eacf9c4b3d859b93c1f889a5e0/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Austin TX (KLRU) (1080p) [Offline] +https://klrudt.lls.pbs.org/out/v1/c5d426d04957476186321c38e943c49f/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Bad Axe MI (WDCQ) (1080p) [Offline] +https://wdcqdt.lls.pbs.org/out/v1/ef33b9ec5f2f42ad831574cbb2c478f8/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Baton Rouge LA (WLPB) (1080p) [Offline] +https://wlpbdt.lls.pbs.org/out/v1/3f6379f418924ca39e09415a34c92738/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Binghamton NY (WSKG) (1080p) [Offline] +https://wskgdt.lls.pbs.org/out/v1/ff443d82d55c481a9d1561c5f77a3a4b/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Birmingham AL (WBIQ) (1080p) [Offline] +https://wbiqdt.lls.pbs.org/out/v1/3d5c7da724d741da9b8e203d03b6b8c3/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Bloomington IN (WTIU) (1080p) [Offline] +https://wtiudt.lls.pbs.org/out/v1/189f0df07ad448d29880d68f295ab06e/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Boise ID (KAID) (1080p) [Offline] +https://kaiddt.lls.pbs.org/out/v1/1ba7213ff76e4f3cb73405a2108922ce/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Boston MA (WGBH) (1080p) [Offline] +https://wgbhdt.lls.pbs.org/out/v1/0e31746edf794871ab0f06cdb48c1e82/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Bowling Green OH (WBGU) (1080p) [Offline] +https://wbgudt.lls.pbs.org/out/v1/6e28e12e9db04b798dc82052cc6d3375/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Bozeman MT (KUSM) (1080p) [Offline] +https://kusmdt.lls.pbs.org/out/v1/ad7a1ac654bc4231854568d83529f893/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED) (1080p) [Offline] +https://wneddt.lls.pbs.org/out/v1/9042ad5168e54cf8bf14b5db5582a84a/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Burlington VT (WETK) (1080p) [Offline] +https://wetkdt.lls.pbs.org/out/v1/9c3c95a5cabc4611b06086ae798b7716/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Chapel Hill NC (WUNC) (1080p) [Offline] +https://wuncdt.lls.pbs.org/out/v1/84bedaad5c7e4d7abd8a6b63f1b8d4c4/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Charleston IL (WEIU-TV) (1080p) [Offline] +https://weiudt.lls.pbs.org/out/v1/9f2dc5c07afb4e2a8b704e1462030872/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Charlotte NC (WTVI) (1080p) [Offline] +https://wtvidt.lls.pbs.org/out/v1/e01f07bdc0cc4375b8894f72b1f0bb40/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Chattanooga TN (WTCI) (1080p) [Offline] +https://wtcidt.lls.pbs.org/out/v1/b9b09144bbaf4c5b864711748cc32680/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Chicago IL (WTTW) (1080p) [Offline] +https://wttwdt.lls.pbs.org/out/v1/c9c6c698c02f404190e9e5a4e9f4e903/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Cincinnati OH (WCET) (1080p) [Offline] +https://wcetdt.lls.pbs.org/out/v1/742a384715ac468cbcd93fef92dafd9d/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Clearfield PA (WPSU) (1080p) [Offline] +https://wpsudt.lls.pbs.org/out/v1/9f1d8d513dc1419fade4c3e08177a585/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Cleveland OH (WVIZ) (1080p) [Offline] +https://wvizdt.lls.pbs.org/out/v1/94ec1f9fa451444789391cd8558ea5ed/index.m3u8 +#EXTINF:-1 tvg-id="",PBS College Station TX (KAMU) (1080p) [Offline] +https://kamudt.lls.pbs.org/out/v1/60a3ebbf04084e1e851df9b22d45a5e1/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Columbia SC (WRLK) (1080p) [Offline] +https://wrlkdt.lls.pbs.org/out/v1/ce2d1420a66b4c2a88d8a48ffecd908d/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Columbus OH (WOSU) (1080p) [Offline] +https://wosudt.lls.pbs.org/out/v1/72f8d6d91e614561b97f37439cd13f81/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Conway AR (KETS) (1080p) [Offline] +https://ketsdt.lls.pbs.org/out/v1/3eccbbb7a0544338b5ee13cf6d5fc1d8/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Cookeville TN (WCTE) (1080p) [Offline] +https://wctedt.lls.pbs.org/out/v1/f7929641d8ae4f0296b10e77ffe6d31c/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Cordova TN (WKNO) (1080p) [Offline] +https://wknodt.lls.pbs.org/out/v1/b7065d6c2d6047c0bb5bd9e20202103c/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Corpus Christi TX (KEDT) (1080p) [Offline] +https://kedtdt.lls.pbs.org/out/v1/2955c90649c44dac83a2a77513c0b861/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Dallas TX (KERA) (1080p) [Offline] +https://keradt.lls.pbs.org/out/v1/8dd50e7e0ee24d4e8a0812872f332a2c/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Dayton OH (WPTD) (1080p) [Offline] +https://wptddt.lls.pbs.org/out/v1/f372be5c7a994b3ebeab2797323de8ee/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Denver CO (KBDI) (1080p) [Offline] +https://kbdidt.lls.pbs.org/out/v1/5a01f14ff4e4492eb7cda1a79b0ced60/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Denver CO (KRMA) (1080p) [Offline] +https://krmadt.lls.pbs.org/out/v1/45cb988e1a7440288aae1fe7fe819841/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Des Moines IA (KDIN) (1080p) [Offline] +https://kdindt.lls.pbs.org/out/v1/e41a89f5fe884dbea2c80fdc974b21c6/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Detroit MI (WTVS) (1080p) [Offline] +https://wgvudt.lls.pbs.org/out/v1/a9456b151c3e4fe490213e776735bb16/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Duluth MN (WDSE) (1080p) [Offline] +https://wdsedt.lls.pbs.org/out/v1/33c52d8e7d6e43099ff584805245b694/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Durham NH (WENH) (1080p) [Offline] +https://wenhdt.lls.pbs.org/out/v1/a1c1eea03387432086459cf0fdd96334/index.m3u8 +#EXTINF:-1 tvg-id="",PBS East Lansing MI (WKAR) (1080p) [Offline] +https://wkardt.lls.pbs.org/out/v1/5b13b5c72f5d4b80a6ee9140392caf74/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Eureka CA (KEET) (1080p) [Offline] +https://keetdt.lls.pbs.org/out/v1/a223371529b14afa882d1e872d8acd3d/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Evansville IN (WNIN) (1080p) [Offline] +https://wnindt.lls.pbs.org/out/v1/338a207086464e179e97f83d4b1798be/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Fargo ND (KFME) (1080p) [Offline] +https://kfmedt.lls.pbs.org/out/v1/25be24fcd0864ec9be6f6b60cb2be826/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Fort Myers FL (WGCU) (1080p) [Offline] +https://wgcudt.lls.pbs.org/out/v1/ac57905c80c8486a8290af7ca78c5026/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Fort Wayne IN (WFWA) (1080p) [Offline] +https://wfwadt.lls.pbs.org/out/v1/8b2a780393274c2ba9b71b9168df2208/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Gary IN (WYIN) (1080p) [Offline] +https://wyindt.lls.pbs.org/out/v1/27414b46e52d43758be8227e4a91c863/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Harrisburg PA (WITF) (1080p) [Offline] +https://witfdt.lls.pbs.org/out/v1/15cd55cd6f7442c4a193a47bbfae608a/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Hartford CT (WEDH) (1080p) [Offline] +https://wedhdt.lls.pbs.org/out/v1/04182c8d6be24c1a98de212f3c55a442/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Honolulu HI (KHET) (1080p) [Not 24/7] +https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Houston TX (KUHT) (1080p) [Offline] +https://kuhtdt.lls.pbs.org/out/v1/5b02f861c8e6453aa2b6cd8c6d26e698/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Indianapolis IN (WFYI) (1080p) [Offline] +https://wfyidt.lls.pbs.org/out/v1/f969c8f98dc24032b3879664b622ead0/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Jackson MS (WMPN) (1080p) [Offline] +https://wmpndt.lls.pbs.org/out/v1/d914d235ec79418a866aef53f54f2bd2/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Jacksonville FL (WJCT) (1080p) [Offline] +https://wjctdt.lls.pbs.org/out/v1/a691e1e86f77462d81a738395505e911/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Kansas City MO (KCPT) (1080p) [Offline] +https://kcptdt.lls.pbs.org/out/v1/f63eb4e92e484fae845c31912340e2a2/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Knoxville TN (WETP) (1080p) [Offline] +https://wetpdt.lls.pbs.org/out/v1/8eb86a48b4f54a24a31aa9cf46b02494/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Lakeland MN (KAWE) (1080p) [Offline] +https://kawedt.lls.pbs.org/out/v1/b3a7b02a0d4241a193c91f1f33755c85/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Las Cruces NM (KRWG) (1080p) [Offline] +https://krwgdt.lls.pbs.org/out/v1/9cbfc7807e834ee39d2849c1bad667f2/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Las Vegas NV (KLVX) (1080p) [Offline] +https://klvxdt.lls.pbs.org/out/v1/c2d457573e4d4783b558c44e20547e21/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Lewiston ME (WCBB) (1080p) [Offline] +https://wcbbdt.lls.pbs.org/out/v1/d1ca1cb603fd4da09694f0f1f6ba8db0/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Lexington KY (WKLE) (1080p) [Offline] +https://wkledt.lls.pbs.org/out/v1/26354efcebc1400e8861988cd6a321ca/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Lexington TN (WLJT) (1080p) [Offline] +https://wljtdt.lls.pbs.org/out/v1/1ddf810d67f64eeeab40ad9da8885945/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Lincoln NE (KUON) (1080p) [Geo-blocked] +https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Los Angeles CA (KLCS-DT1) (1080p) [Offline] +https://klcsdt.lls.pbs.org/out/v1/6ee318cffa774733acf31f9a1af38036/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Los Angeles CA (KOCE) (1080p) [Offline] +https://kocedt.lls.pbs.org/out/v1/75f564cba25e4053a8789a1a14d13344/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Madison WI (WPNE) (1080p) [Offline] +https://wpnedt.lls.pbs.org/out/v1/12d4e3cd7f2c476ea575165bbfb5ac50/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Marquette MI (WNMU) (1080p) [Offline] +https://wnmudt.lls.pbs.org/out/v1/d762d9a7dd4a46c08ca89b1a1abbc475/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Medford OR (KSYS) (1080p) [Offline] +https://ksysdt.lls.pbs.org/out/v1/aecb830f3f7146a5ab62bacbeeaff661/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Miami FL (WLRN) (1080p) [Offline] +https://wlrndt.lls.pbs.org/out/v1/9e8346f507f645259f0c6f2837fb7cbe/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Miami FL (WPBT) (1080p) [Offline] +https://wpbtdt.lls.pbs.org/out/v1/0fbd3da6bffb465ba84f94abaff14973/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Milwaukee WI (WMVS) (1080p) [Offline] +https://wmvsdt.lls.pbs.org/out/v1/654e3fa9db6d465ea578cf39818fcee6/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Minneapolis MN (KTCA) (1080p) [Offline] +https://ktcadt.lls.pbs.org/out/v1/21103812ea504393b7f0d521a8b37ab7/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Moline IL (WQPT) (1080p) [Offline] +https://wqptdt.lls.pbs.org/out/v1/6ab72cd3813b469cb5f79a577d49c0b7/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Mount Pleasant MI (WCMU) (1080p) [Offline] +https://wcmudt.lls.pbs.org/out/v1/45ff0524571c41398c5f39ebab6262ef/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Muncie IN (WIPB) (1080p) [Offline] +https://wipbdt.lls.pbs.org/out/v1/73cd2d86797b4fc6ac5b660cd5a6f9c4/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Nashville TN (WNPT) (1080p) [Offline] +https://wnptdt.lls.pbs.org/out/v1/f6bca6d722674c5cad621f54b17c217b/index.m3u8 +#EXTINF:-1 tvg-id="PBSEast.us",PBS National East (1080p) [Geo-blocked] +https://pbs.lls.cdn.pbs.org/est/index.m3u8 +#EXTINF:-1 tvg-id="PBSWest.us",PBS National West (1080p) [Geo-blocked] +https://pbs.lls.cdn.pbs.org/pst/index.m3u8 +#EXTINF:-1 tvg-id="",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7] +https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8 +#EXTINF:-1 tvg-id="",PBS New Orleans LA (WYES) (1080p) [Offline] +https://wyesdt.lls.pbs.org/out/v1/3d4b8e15f65d475f8278fee4ff14becf/index.m3u8 +#EXTINF:-1 tvg-id="",PBS New York NY (WLIW) (1080p) [Offline] +https://wliwdt.lls.pbs.org/out/v1/a7a2556b48d348b8931d7fc77a57401d/index.m3u8 +#EXTINF:-1 tvg-id="",PBS New York NY (WNET) (1080p) [Not 24/7] +https://wnetdt.lls.pbs.org/out/v1/0456457548354b88b32fc437e4e7ee01/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Norfolk VA (WHRO) (1080p) [Offline] +https://whrodt.lls.pbs.org/out/v1/3266ff3730e745eba63de795e95e3c08/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Odessa TX (KPBT) (1080p) [Offline] +https://kpbtdt.lls.pbs.org/out/v1/9b66cea20b8341b8accdb0d20a49431f/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Oklahoma City OK (KETA) (1080p) [Offline] +https://ketadt.lls.pbs.org/out/v1/b718c2a2e2ab4a67a0fce0b1c3fb71a9/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Orlando FL (WUCF) (1080p) [Offline] +https://wucfdt.lls.pbs.org/out/v1/6557aa0623bc486d8fb3e54afad37307/index.m3u8 +#EXTINF:-1 tvg-id="WMPB.us",PBS Owings Mills MD (1080p) [Offline] +https://wmpbdt.lls.pbs.org/out/v1/d1dbc3dc021148fb9ba084e7a68c3739/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Pensacola FL (WSRE) (1080p) [Offline] +https://wsredt.lls.pbs.org/out/v1/d615170d96024c229c6ae2177dec84e5/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Peoria IL (WTVP) (1080p) [Offline] +https://wtvpdt.lls.pbs.org/out/v1/9e8f6bfce87a437d8a8a9aab016421e8/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Philadelphia PA (WHYY-DT1) (1080p) [Offline] +https://whyydt.lls.pbs.org/out/v1/40b7857a84ee4302be8ab755a719cc14/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Phoenix AZ (KAET) (1080p) [Offline] +https://kaetdt.lls.pbs.org/out/v1/259f25e61b3d47ce8a7e2339a00c5561/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Pittsburgh PA (WQED) (1080p) [Offline] +https://wqeddt.lls.pbs.org/out/v1/1f10d52cea0f45ae88184800e9e6b79e/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Plattsburgh NY (WCFE) (1080p) [Offline] +https://wcfedt.lls.pbs.org/out/v1/9483ef28a5a8442f8ff45b26ac23a9b0/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Portales NM (KENW) (1080p) [Offline] +https://kenwdt.lls.pbs.org/out/v1/5a08bd0c12464a42959d67ad54324081/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Portland OR (KOPB) (1080p) [Offline] +https://kopbdt.lls.pbs.org/out/v1/a946a78ff0304b51b4f95b40f6753f20/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Providence RI (WSBE) (1080p) [Offline] +https://hls-wsbedt.lls.pbs.org/out/v1/282a0653ed3341ebac0ff99c0f2a8137/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Redding CA (KIXE) (1080p) [Offline] +https://kixedt.lls.pbs.org/out/v1/fb0ef314bff940b18d8ff89dcfc0e395/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Reno NV (KNPB) (1080p) [Offline] +https://knpbdt.lls.pbs.org/out/v1/662db9937fe94ff997eda3af5a09ea43/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Richmond VA (WCVE) (1080p) [Offline] +https://wcvedt.lls.pbs.org/out/v1/178cb4bb51c44edc9bac3365ddbc66ca/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Riverton WY (KCWC) (1080p) [Offline] +https://kcwcdt.lls.pbs.org/out/v1/2f8c171f73764e29893631dad5be2849/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Roanoke VA (WBRA) (1080p) [Offline] +https://wbradt.lls.pbs.org/out/v1/cee6288a82584aee9e105cc7abc51da9/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Rochester NY (WXXI) (1080p) [Offline] +https://wxxidt.lls.pbs.org/out/v1/9ea6c5eb539d4545b74b67d064d12395/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Rohnert Park CA (KRCB) (1080p) [Offline] +https://krcbdt.lls.pbs.org/out/v1/1b383c47407b41a28a57037ee7fc237c/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Sacramento CA (KVIE) (1080p) [Offline] +https://kviedt.lls.pbs.org/out/v1/034f052201e7437da6266c4679e97526/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Salt Lake City UT (KUED) (1080p) [Offline] +https://kueddt.lls.pbs.org/out/v1/53400b74960e4a84bc4b945148e9e19a/index.m3u8 +#EXTINF:-1 tvg-id="",PBS San Antonio TX (KLRN) (1080p) [Offline] +https://klrndt.lls.pbs.org/out/v1/4d29690f8127489fafb33fb5ebd2cbeb/index.m3u8 +#EXTINF:-1 tvg-id="",PBS San Bernardino CA (KVCR) (1080p) [Offline] +https://kvcrdt.lls.pbs.org/out/v1/5114aad2d1844ccba15d559173feec19/index.m3u8 +#EXTINF:-1 tvg-id="",PBS San Diego CA (KPBS) (1080p) [Offline] +https://kpbsdt.lls.pbs.org/out/v1/cf509cc4289644f886f7496b7328a46b/index.m3u8 +#EXTINF:-1 tvg-id="",PBS San Francisco CA (KQED) (1080p) [Offline] +https://kqeddt.lls.pbs.org/out/v1/7bc5c6cfcf9b4593b7d6ad1f8b0a0138/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Scranton PA (WVIA) (1080p) [Offline] +https://wviadt.lls.pbs.org/out/v1/aa3bcde7d86a4b60b57f653c565188df/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS) (1080p) [Offline] +https://rtmp-kctsdt.lls.cdn.pbs.org/rtmp-kctsdt/271a9ab7-e9ed-4fec-9fe9-e46c97a3f8f0/primary.m3u8 +#EXTINF:-1 tvg-id="",PBS Smoky Hills KS (KOOD) (1080p) [Offline] +https://kooddt.lls.pbs.org/out/v1/67d31d78887e485282d135628be5489f/index.m3u8 +#EXTINF:-1 tvg-id="",PBS South Bend IN (WNIT) (1080p) [Offline] +https://wnitdt.lls.pbs.org/out/v1/0eb01a8a161e4650af15b6542a20cde5/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS) (1080p) [Offline] +https://kspsdt.lls.pbs.org/out/v1/cf8babf84d2b48e3876bae15e08dcdc6/index.m3u8 +#EXTINF:-1 tvg-id="",PBS St. Louis MO (KETC) (1080p) [Offline] +https://ketcdt.lls.pbs.org/out/v1/08273a78d29c4b0abd6e0eb996b3d8cf/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Tacoma WA (KBTC) (1080p) [Offline] +https://kbtcdt.lls.pbs.org/out/v1/4f08c8e00549441b9a2acce47d112525/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Tallahassee FL (WFSU) (1080p) [Offline] +https://wfsudt.lls.pbs.org/out/v1/d2be172139764358a0d54352c8411845/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Tampa FL (WEDU) (1080p) [Offline] +https://wedudt.lls.pbs.org/out/v1/3e147f13bc464958b6ace4e5a5b9accc/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Topeka KS (KTWU) (1080p) [Offline] +https://ktwudt.lls.pbs.org/out/v1/567e503539034dd0ab8838b7e33ba5de/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Tucson AZ (KUAT) (1080p) [Offline] +https://kuatdt.lls.pbs.org/out/v1/8d95fb8559594a7b9359077ea0a512c3/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Urbana-Champaign IL (WILL) (1080p) [Offline] +https://willdt.lls.pbs.org/out/v1/15103ad003674a29b20b847deb71992b/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Vermillion SD (KUSD) (1080p) [Offline] +https://kusddt.lls.pbs.org/out/v1/38b8947635c54de8a15c5260e5cf774e/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Vincennes IN (WVUT) (1080p) [Offline] +https://wvutdt.lls.pbs.org/out/v1/6f47817ed7d54053815e35042c1f4824/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Warrensburg MO (KMOS) (1080p) [Offline] +https://hls-kmosdt.lls.pbs.org/out/v1/95689f4594814dfca261ea90892eafab/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Washington DC (WHUT) (1080p) [Offline] +https://whutdt.lls.pbs.org/out/v1/dd1102f24d7948e58517ba6a6573c928/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Watertown NY (WPBS) (1080p) [Offline] +https://wpbsdt.lls.pbs.org/out/v1/e3680a91029c4df9b7797ce13d828207/index.m3u8 +#EXTINF:-1 tvg-id="",PBS West Palm Beach FL (WXEL) (1080p) [Offline] +https://wxeldt.lls.pbs.org/out/v1/d4f2bc8357164a2e93d35abd2caecc4b/index.m3u8 +#EXTINF:-1 tvg-id="",PBS Wichita KS (KPTS) (1080p) [Offline] +https://kptsdt.lls.pbs.org/out/v1/1ca3404d6bc3404c9daa86c8f1ae19d0/index.m3u8 diff --git a/streams/us_plex.m3u b/streams/us_plex.m3u new file mode 100644 index 000000000..d73a7dff4 --- /dev/null +++ b/streams/us_plex.m3u @@ -0,0 +1,221 @@ +#EXTM3U +#EXTINF:-1 tvg-id="24HourFreeMovies.us",24 Hour Free Movies (720p) [Not 24/7] +https://d15690s323oesy.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/UDU-Plex/158.m3u8 +#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (1080p) [Offline] +https://120sports-accdn-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AccuWeather.us",AccuWeather Now (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00684-accuweather-accuweather-plex/playlist.m3u8 +#EXTINF:-1 tvg-id="AFV.us",AFV (720p) +https://linear-12.frequency.stream/dist/plex/12/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVenEspanol.us",AFV en Español (720p) [Not 24/7] +https://linear-46.frequency.stream/dist/plex/46/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiancrush.us",Asiancrush (720p) [Offline] +https://ac-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Bambu.us",Bambu [Offline] +https://bambu-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (1080p) [Offline] +https://kmtvnow-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://cheddar.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Choppertown.us",Choppertown (720p) [Not 24/7] +https://linear-11.frequency.stream/dist/plex/11/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) +https://comedydynamics-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://contv-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://contvanime-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Crackle.us",Crackle (720p) +https://crackle-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (1080p) [Offline] +https://aenetworks-crime360-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) +https://dmtv-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Offline] +https://endemol-dealornodeal-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) +https://docurama-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] +https://dove-channel.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) +https://edgesports-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) +https://estrellanews-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) +https://estrellatv-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) +https://euronews-euronews-spanish-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) +https://euronews-euronews-world-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (1080p) [Offline] +https://failarmy-linear.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (540p) [Offline] +https://9c17e762ec814557b3516dd3e0a7ca56.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_FailArmy/ade59f27-be9b-4b71-b8dc-05928c1dfdf4/2.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (1080p) [Offline] +https://spi-filmstream-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FreebieTV.us",Freebie TV (720p) [Not 24/7] +https://d1h1d6qoy9vnra.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Freebie-Plex/187.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (540p) [Offline] +https://gsn-gameshowchannnel-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GFNTV.us",GFN TV (720p) [Not 24/7] +https://d3jxchypmk8fja.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/GFNTV-Plex/169.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (720p) [Offline] +https://glewedtv-3.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Offline] +https://gravitas-movies.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (1080p) +https://gustous-plex.amagi.tv/hls/amagi_hls_data_gustoAAAA-gustous-plex/CDN/playlist.m3u8?X-Plex-Token=MorUy57ijWhGe4ixZb_T&channelId=5f8746eabd529300418246d9&did=df8e1a36-847d-5096-86a7-3803ed330ede&dnt=0&us_privacy=1--- +#EXTINF:-1 tvg-id="HardKnocks.ca",Hard Knocks (1080p) [Not 24/7] +https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-PLEX/121.m3u8 +#EXTINF:-1 tvg-id="",Hi-YAH! (1080p) +https://linear-59.frequency.stream/dist/plex/59/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="HollywoodClassics.us",Hollywood Classics (1080p) [Offline] +https://vitor-hollywoodclassics-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HumorMill.us",Humor Mill (1080p) [Not 24/7] +https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-PLEX/152.m3u8 +#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) +https://ign-plex.amagi.tv/hls/amagi_hls_data_ignAAAAAA-ign-plexA/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) +https://ign-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) +https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=5f5132df62fe160040f26bc2&ptoken=PLbo_Jw_s1xgoB_1Srgg +#EXTINF:-1 tvg-id="JournysBourdainAllDay.us",Journy's Bourdain All Day (1080p) +https://plexpab.teleosmedia.com/linear/ovation/journypresentsanthonybourdain/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=6182cd0df4e62961d9c2ccf6&ptoken=PLbo_Jw_s1xgoB_1Srgg +#EXTINF:-1 tvg-id="JudgeFaith.us",Judge Faith (1080p) [Offline] +https://judge-faith-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) +https://vidaprimo-plex.amagi.tv/hls/amagi_hls_data_vidaprimo-vidaprimo-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) +https://vidaprimo-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) +https://lawandcrime-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LIT.us",LIT (1080p) [Offline] +https://studio1-lit-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (1080p) [Offline] +https://aenetworks-ae-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopBeastModeWest.us",Loop Beast Mode West (1080p) [Geo-blocked] +https://1f0e60dbce3043279c491fe51983361d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopElectronicaWest.us",Loop Electronica West (1080p) [Not 24/7] +https://57490d2f4ea646bbae56a1a816617a5f.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopWest.us",Loop Hip-Hop West (1080p) [Offline] +https://e20b86263a38460ba3647b18fb150000.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopPartyWest.us",Loop Party West (1080p) [Offline] +https://0b1ea79d9170498c91073ff8c460de18.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_plex/master.m3u8 +#EXTINF:-1 tvg-id="MagellanTVNow.us",Magellan TV Now (720p) [Offline] +https://magellantv-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) [Offline] +https://maverick-maverick-black-cinema-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (1080p) [Offline] +https://mavtv-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) +https://369f2966f62841f4affe37d0b330a13c.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_MidnightPulp/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c4427&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=263&ads.wurl_name=MidnightPulp +#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphere-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MuseumTVFast.us",Museum TV Fast (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtv-en-plex/playlist.m3u8 +#EXTINF:-1 tvg-id="NeuralFocused.us",Neural Focused [Offline] +https://1d75125ffd43490eb970a2f3f575e96c.mediatailor.us-west-2.amazonaws.com/v1/manifest/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_plex/35cba159-09d0-4e37-bf3c-99cd99ec425b/5.m3u8 +#EXTINF:-1 tvg-id="News12NewYork.us",News 12 New York (1080p) [Offline] +https://cheddar-news12ny-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) +https://newsmax-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-newsmax-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] +https://nosey-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) [Not 24/7] +https://d18toqrnfyz3v1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/OutdoorAmerica-PLEX/159.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://a357e37df8ec46719fdeffa29a3e8e40.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_PeopleAreAwesome/8fe64d6c-210c-42ac-8b42-8006b8721cf4/3.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (1080p) [Offline] +https://jukin-peopleareawesome-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (1080p) +https://b12eca572da7423284734ca3a6242ea2.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_PlayWorks/playlist.m3u8?ads.app_bundle=com.plexapp.desktop&ads.app_store_url=https://app.plex.tv&ads.consent=0&ads.gdpr=1&ads.plex_id=5f0ff263d71dcb00449ec01e&ads.plex_token=MorUy57ijWhGe4ixZb_T&ads.psid=df8e1a36-847d-5096-86a7-3803ed330ede&ads.targetopt=0&ads.ua=Mozilla/5.0+(Windows+NT+6.1;+rv:83.0)+Gecko/20100101+Firefox/83.0&ads.us_privacy=1---&ads.wurl_channel=512&ads.wurl_name=PlayWorks +#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (1080p) [Offline] +https://playworksdigital-playworks-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] +https://pocketwatch.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PopstarTV.us",Popstar! TV (1080p) [Not 24/7] +https://linear-10.frequency.stream/dist/plex/10/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="",Real Families (1080p) +https://lds-realfamilies-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (1080p) [Offline] +https://nosey-realnosey-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.us",Real Stories (1080p) +https://lds-realstories-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCrushTV.us",RetroCrush TV (1080p) +https://45034ce1cbb7489ab1499301f6274415.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_RetroCrush/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c442a&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=491&ads.wurl_name=RetroCrush +#EXTINF:-1 tvg-id="RetroCrushTV.us",RetroCrush TV (1080p) [Offline] +https://digitalmediarights-retrocrush-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Reuters.uk",Reuters (1080p) +https://reuters-reutersnow-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry2.us",Revry 2 (720p) [Offline] +https://0bef58ceebc44ecbba8ed46a4b17de0c.mediatailor.us-west-2.amazonaws.com/v1/manifest/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-PLEX/09eef831-6e1a-4f60-a138-77c0a1da8e06/0.m3u8 +#EXTINF:-1 tvg-id="Revry.us",Revry (720p) [Not 24/7] +https://linear-5.frequency.stream/dist/plex/5/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RevryNews.us",Revry News (720p) [Not 24/7] +https://linear-44.frequency.stream/dist/plex/44/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RunTimeFreeMovies.us",RunTime (1080p) +https://ammoruntime-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (1080p) +https://ammo-espanol-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RushbyAMC.us",Rush by AMC (1080p) [Offline] +https://amc-rushbyamc-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrills.us",Skills + Thrills (1080p) [Offline] +https://aenetworks-skills-thrills-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SoReal.us",So... Real (1080p) [Offline] +https://cinedigm-so-real-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) +https://sportsgrid-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Offline] +https://stadium-ringofhonor-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?app_bundle=com.plexapp.desktop&app_domain=app.plex.tv&app_name=plex&content_series=5f12332eeca6a20040b328e5&content_title=MorUy57ijWhGe4ixZb_T&coppa=1&custom4=plex&device_make=Windows&device_model=Firefox&did=df8e1a36-847d-5096-86a7-3803ed330ede&gdpr=1&h=691&live=1&network_id=39&us_privacy=1---&w=1224 +#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) [Offline] +https://playworksdigital-tankee-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) [Offline] +https://vitor-theboatshow-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (240p) +https://cinedigm-bobross-1.plex.wurl.com/master.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-5.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) +https://filmdetective-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-filmdetective-plex/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) +https://filmdetective-plex.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) [Offline] +https://631dd17512664bafa0f3d1bd9717d7c0.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_ThePetCollective/9a0bc894-3507-4712-ac73-40ae060ddbef/3.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) [Offline] +https://the-pet-collective-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Timeline.us",Timeline (1080p) +https://lds-timeline-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVClassics.us",TV Classics (720p) +https://vitor-tvclassics-1.plex.wurl.com/manifest/4300.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://venntv-plex.amagi.tv/hls/amagi_hls_data_venntvAAA-venntv-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (360p) [Offline] +https://waypointtv-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) [Offline] +https://04799df414944908856c6c521891945f.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_WeatherSpy/2eba863c-1452-4ea6-98b2-2b1c0c81c112/3.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (1080p) [Offline] +https://jukin-weatherspy-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] +https://whistle-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (1080p) [Offline] +https://endemol-wipeoutxtra-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk",Wonder (1080p) +https://lds-wonder-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] +https://dth07jsr8atug.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-Plex/171.m3u8 +#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) +https://xplore-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) +https://yahoo-plex.amagi.tv/hls/amagi_hls_data_yahoofina-yahoofinance-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) +https://yahoo-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YuyuTV.us",Yuyu TV (1080p) [Offline] +https://yuyu-samsung.plex.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_pluto.m3u b/streams/us_pluto.m3u similarity index 69% rename from channels/us_pluto.m3u rename to streams/us_pluto.m3u index 2dd62945d..2a861cde9 100644 --- a/channels/us_pluto.m3u +++ b/streams/us_pluto.m3u @@ -1,2159 +1,2159 @@ #EXTM3U -#EXTINF:-1 tvg-id="AmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/10272020/Americas_Test_Kitchen_190x190.png?raw=true" group-title="Cooking",America's Test Kitchen (720p) +#EXTINF:-1 tvg-id="AmericasTestKitchen.us",America's Test Kitchen (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appVersion=5.10.0-63088da67b32904787b837429cfa9c5c605b7626&architecture=&buildVersion=&clientTime=&deviceDNT=false&deviceId=730453b0-df89-477c-a53d-9f59f9f46f37&deviceLat=37.7510&deviceLon=-97.8220&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=72.0.3815.186&includeExtendedEvents=false&marketingRegion=US&serverSideAds=true&sid=130d48cd-22f9-11eb-9bad-0242ac110002&userId= -#EXTINF:-1 tvg-id="BBCDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60dafb9a0df1ba000758d37b/colorLogoPNG.png" group-title="",BBC Drama (720p) +#EXTINF:-1 tvg-id="BBCDrama.us",BBC Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dafb9a0df1ba000758d37b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="BlazeLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e46fba0c43b0d00096e5ac1/colorLogoPNG.png" group-title="",Blaze Live (720p) [Offline] +#EXTINF:-1 tvg-id="BlazeLive.us",Blaze Live (720p) [Offline] http://plutotv.vo.llnwd.net/m/hlslive/theblaze.m3u8?chname=theblaze&pub=0 -#EXTINF:-1 tvg-id="Boblepongeplus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Teb0Ty0.png" group-title="Kids",Bob l'éponge+ (720p) +#EXTINF:-1 tvg-id="Boblepongeplus.us",Bob l'éponge+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/609a33d06972da0007748ecf/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc9fd0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=195dd54b-932b-4f28-be70-7e736585335a -#EXTINF:-1 tvg-id="BounceXL.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6176fd25e83a5f0007a464c9/colorLogoPNG.png" group-title="Entertainment",Bounce XL (720p) +#EXTINF:-1 tvg-id="BounceXL.us",Bounce XL (720p) https://siloh.pluto.tv/lilo/production/BounceXL/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVCats247.de" tvg-country="US;DE" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (DE) (720p) +#EXTINF:-1 tvg-id="PlutoTVCats247.de",Cats 24/7 (DE) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a56ce10f0b0009e64037&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4f8f5d53-0580-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCats247.de" tvg-country="US;DE" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (DE) (720p) +#EXTINF:-1 tvg-id="PlutoTVCats247.de",Cats 24/7 (DE) (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCats247.uk" tvg-country="US;UK" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (UK) (720p) +#EXTINF:-1 tvg-id="PlutoTVCats247.uk",Cats 24/7 (UK) (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db044d7846b170009215ef0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCats247.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (US) (720p) +#EXTINF:-1 tvg-id="PlutoTVCats247.us",Cats 24/7 (US) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=599375885ceaac3cabccbed7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=635&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCats247.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (US) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCats247.us",Cats 24/7 (US) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) http://stitcher.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="ClubbingTV.fr" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/600ad8f86e1eba00081da3ce/solidLogoPNG.png" group-title="",Clubbing TV (720p) +#EXTINF:-1 tvg-id="ClubbingTV.fr",Clubbing TV (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/600ad8f86e1eba00081da3ce/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ae1b0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=97358d7c-5219-43db-bcda-c5057f0bc369 -#EXTINF:-1 tvg-id="ComediaMadeinSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JcJbAQv.png" group-title="",Comedia Made in Spain (720p) [Not 24/7] +#EXTINF:-1 tvg-id="ComediaMadeinSpain.us",Comedia Made in Spain (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1abce155a03d0007718834&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=505&terminate=false&userId= -#EXTINF:-1 tvg-id="ComedyCentralEast.us" tvg-country="US" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/60/Comedy_central.png" group-title="Comedy",Comedy Central East (720p) [Not 24/7] +#EXTINF:-1 tvg-id="ComedyCentralEast.us",Comedy Central East (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4947590ba40f75dc29c26b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=400&terminate=false&userId= -#EXTINF:-1 tvg-id="CribsMaisonsDeStar.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/602cf8963b4bc90007454541/solidLogoPNG.png" group-title="",Cribs Maisons De Star (720p) +#EXTINF:-1 tvg-id="CribsMaisonsDeStar.us",Cribs Maisons De Star (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/602cf8963b4bc90007454541/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5043513f-eb20-46fd-8286-9e9ba240e6f9 -#EXTINF:-1 tvg-id="DallasCowboyCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Dallas%20Cowboys%20Cheer_190x190.png?raw=true" group-title="",Dallas Cowboy Cheerleaders (720p) +#EXTINF:-1 tvg-id="DallasCowboyCheerleaders.us",Dallas Cowboy Cheerleaders (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="DoctorWho.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60d3574e97f10800078455de/colorLogoPNG.png" group-title="",Doctor Who (720p) +#EXTINF:-1 tvg-id="DoctorWho.us",Doctor Who (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3574e97f10800078455de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="DramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/10062020/Drama_Life_190x190.png?raw=true" group-title="Movies",Drama Life (720p) +#EXTINF:-1 tvg-id="DramaLife.us",Drama Life (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f06bc60e236570007793f31&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e7f6989c-0583-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f042bf0241c6f0007721021/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InsightPlus.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Insight+ (720p) +#EXTINF:-1 tvg-id="InsightPlus.nl",Insight+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b73efd87eb3a2717ccde/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d54bbd90-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f10cd89a-c878-4a4d-8b3d-f5238f421aa0&terminate=false&userId= -#EXTINF:-1 tvg-id="InstantSaga.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549e98061b5f000776866a/solidLogoPNG.png" group-title="",Instant Saga (720p) +#EXTINF:-1 tvg-id="InstantSaga.us",Instant Saga (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549e98061b5f000776866a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba501-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=e11c2399-2d50-4607-be2c-d35d72152bbe -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1005f9d5d3cf00074c0395&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=13e8959c-0584-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1004e0a5714d000745650d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=47a36c19-0584-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) [Not 24/7] +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="JustepourRire.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60afa1508284e60007163c08/solidLogoPNG.png" group-title="Comedy",Juste pour Rire (720p) +#EXTINF:-1 tvg-id="JustepourRire.us",Juste pour Rire (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60afa1508284e60007163c08/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fcc6e0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=a8b6a6bb-4f8c-438e-a638-d4cfa72ae69a -#EXTINF:-1 tvg-id="Loupe.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/604f8d6c7877d40007791af0/solidLogoPNG.png" group-title="",Loupe (720p) +#EXTINF:-1 tvg-id="Loupe.us",Loupe (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8d6c7877d40007791af0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5b9651e5-80c9-45f6-b3a0-499e9abe049a -#EXTINF:-1 tvg-id="LoveandHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Love%20&%20Hip%20Hop_190x190.png?raw=true" group-title="",Love and Hip Hop (720p) +#EXTINF:-1 tvg-id="LoveandHipHop.us",Love and Hip Hop (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="Minecraftv.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/MinecraftTV_190x190.png?raw=true" group-title="",Minecraftv (720p) +#EXTINF:-1 tvg-id="Minecraftv.us",Minecraftv (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY -#EXTINF:-1 tvg-id="MotorvisionTV.de" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60817e1aa6997500072d0d6d/solidLogoPNG.png" group-title="Sports",Motorvision TV (720p) +#EXTINF:-1 tvg-id="MotorvisionTV.de",Motorvision TV (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60817e1aa6997500072d0d6d/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc51b0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ede55dfe-45a7-4aa8-a283-7b8008be8d2e -#EXTINF:-1 tvg-id="ParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/06052020/Paramount_Movie_Channel_190x190.png?raw=true" group-title="Movies",Paramount Movie Channel (684p) +#EXTINF:-1 tvg-id="ParamountMovieChannel.us",Paramount Movie Channel (684p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54169f4b9b25000994a303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=340&terminate=false&userId= -#EXTINF:-1 tvg-id="007.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.007.com/wp-content/uploads/2017/07/rgb_logo_650-1.jpg" group-title="Movies",Pluto TV 007 (720p) [Offline] +#EXTINF:-1 tvg-id="",Pluto TV 007 (720p) [Offline] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4db961034718b2f52f9e52/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4db961034718b2f52f9e52&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTV21JumpStreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af00df345adb154b7a1f4/colorLogoPNG.png" group-title="Series",Pluto TV 21 Jump Street (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTV21JumpStreet.us",Pluto TV 21 Jump Street (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af00df345adb154b7a1f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV70sCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d878d3d19b30007d2e782/colorLogoPNG.png" group-title="Movies",Pluto TV 70s Cinema (684p) +#EXTINF:-1 tvg-id="PlutoTV70sCinema.us",Pluto TV 70s Cinema (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d878d3d19b30007d2e782/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV80sRewind.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca525b650be2571e3943c63/colorLogoPNG.png" group-title="Movies",Pluto TV 80s Rewind (684p) +#EXTINF:-1 tvg-id="PlutoTV80sRewind.us",Pluto TV 80s Rewind (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV90sThrowback.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d86f519358a00072b978e/colorLogoPNG.png" group-title="Movies",Pluto TV 90s Throwback (684p) +#EXTINF:-1 tvg-id="PlutoTV90sThrowback.us",Pluto TV 90s Throwback (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d86f519358a00072b978e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV90120.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d83e0a382c00007bc02e7/colorLogoPNG.png" group-title="Series",Pluto TV 90120 (720p) +#EXTINF:-1 tvg-id="PlutoTV90120.us" status="online",Pluto TV 90120 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d83e0a382c00007bc02e7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAvidamodernadeRocko.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f6df6293a12e10007017396/colorLogoPNG.png" group-title="",Pluto TV A vida moderna de Rocko (720p) +#EXTINF:-1 tvg-id="PlutoTVAvidamodernadeRocko.us" status="online",Pluto TV A vida moderna de Rocko (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (684p) +#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561d7d484dc7c8770484914a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=54&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (684p) +#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfeb961b411c00090b52b3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db867744f229f0009266784&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=759&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8588734f8000823b7de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db867744f229f0009266784&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=759&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAdventureTV" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5938876b78d8d9c074c3c657/colorLogoPNG.png" group-title="Travel",Pluto TV Adventure TV (720p) [Offline] +#EXTINF:-1 tvg-id="",Pluto TV Adventure TV (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAfterSchoolCartoons.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56171fafada51f8004c4b40f/colorLogoPNG.png" group-title="Kids",Pluto TV After School Cartoons (720p) +#EXTINF:-1 tvg-id="PlutoTVAfterSchoolCartoons.us",Pluto TV After School Cartoons (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAFVTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82b55ad0213e00079c509f/colorLogoPNG.png" group-title="Series",Pluto TV AFV TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAFVTV.us",Pluto TV AFV TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82b55ad0213e00079c509f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAllEliteWrestling.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d1697f10a0e000798ed8d/colorLogoPNG.png" group-title="Sports",Pluto TV All Elite Wrestling (720p) +#EXTINF:-1 tvg-id="PlutoTVAllEliteWrestling.us",Pluto TV All Elite Wrestling (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d1697f10a0e000798ed8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAllRealitybyWEtv.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82530945600e0007ca076c/colorLogoPNG.png" group-title="Entertainment",Pluto TV All Reality by WE tv (720p) +#EXTINF:-1 tvg-id="PlutoTVAllRealitybyWEtv.us",Pluto TV All Reality by WE tv (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e84f54a82f05300080e6746/colorLogoPNG.png" group-title="Cooking",Pluto TV America's Test Kitchen (720p) +#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us",Pluto TV America's Test Kitchen (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84f54a82f05300080e6746&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=605&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e84f54a82f05300080e6746/colorLogoPNG.png" group-title="Cooking",Pluto TV America's Test Kitchen (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us",Pluto TV America's Test Kitchen (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815e489b315b154db2e053/colorLogoPNG.png" group-title="Series",Pluto TV American Gladiators (720p) +#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us",Pluto TV American Gladiators (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815e489b315b154db2e053&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=303&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815e489b315b154db2e053/colorLogoPNG.png" group-title="Series",Pluto TV American Gladiators (720p) +#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us",Pluto TV American Gladiators (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnaylos7.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acce7f17797000718f9be/colorLogoPNG.png" group-title="",Pluto TV Ana y los 7 (720p) +#EXTINF:-1 tvg-id="PlutoTVAnaylos7.us",Pluto TV Ana y los 7 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acce7f17797000718f9be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAndromeda.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8db96bccae160007c71eec/colorLogoPNG.png" group-title="",Pluto TV Andromeda (720p) +#EXTINF:-1 tvg-id="PlutoTVAndromeda.us",Pluto TV Andromeda (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8db96bccae160007c71eec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAndromeda.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acc3e061597000768d4ea/colorLogoPNG.png" group-title="",Pluto TV Andrómeda (720p) +#EXTINF:-1 tvg-id="PlutoTVAndromeda.us",Pluto TV Andrómeda (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc3e061597000768d4ea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimakids.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimakids.us",Pluto TV Animakids (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimakidsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimakidsSpain.us",Pluto TV Animakids (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aabee6f4a2c00076a322c&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=905&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimakidsPlus.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids Plus (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAnimakidsPlus.us",Pluto TV Animakids Plus (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5a0b44cc331900075e7769/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimales.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd834c66fe2ca0009303b8d/colorLogoPNG.png" group-title="Family",Pluto TV Animales (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimales.us",Pluto TV Animales (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd834c66fe2ca0009303b8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ae7b456c8cf265ce922&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9015b970-057f-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56b27f85ff3037045055037e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=666&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimalsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimalsEngland.us",Pluto TV Animals (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf8ea0d000120009bcad83&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=550&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimalsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (Germany) (720p) +#EXTINF:-1 tvg-id="",Pluto TV Animals (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ae7b456c8cf265ce922&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=301&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimalsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals+ (480p) +#EXTINF:-1 tvg-id="PlutoTVAnimalsPlus.us",Pluto TV Animals+ (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6f57ef2767e1846e59f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d548b050-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b6f8a12a-554c-4970-82ca-4dc1f84a4016&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimaux.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60925a44f0350600075a1fdc/solidLogoPNG.png" group-title="Family",Pluto TV Animaux (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimaux.us",Pluto TV Animaux (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60925a44f0350600075a1fdc/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c1-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5cc06a56-861b-4448-84df-34ad224ceaa7 -#EXTINF:-1 tvg-id="PlutoTVAnime.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde17bf6591d0009839e02/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (720p) +#EXTINF:-1 tvg-id="PlutoTVAnime.us",Pluto TV Anime (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnime.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde17bf6591d0009839e02/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAnime.us",Pluto TV Anime (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde17bf6591d0009839e02/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e6a4d875d7ccf0007cc2cf1/colorLogoPNG.png" group-title="Animation",Pluto TV Animé Acción (480p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAccion.us",Pluto TV Animé Acción (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6a4d875d7ccf0007cc2cf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5be4c6311843b56328bce619/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Ages (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us",Pluto TV Anime All Ages (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5be4c6311843b56328bce619/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Ages (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us",Pluto TV Anime All Ages (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us",Pluto TV Anime All Day (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b7d3249444e05d09cc49&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=830&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us",Pluto TV Anime All Day (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayFR.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed52a62fa750007733239/colorLogoPNG.png" group-title="Animation",Pluto TV Animé All Day (720p) +#EXTINF:-1 tvg-id="",Pluto TV Animé All Day (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayFR.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed52a62fa750007733239/colorLogoPNG.png" group-title="Animation",Pluto TV Animé All Day (720p) [Not 24/7] +#EXTINF:-1 tvg-id="",Pluto TV Animé All Day (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayUK.us" tvg-country="UK" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (UK) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="",Pluto TV Anime All Day (UK) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363ac9e41be30cb6054c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6054acc871ec430007f54c7d/colorLogoPNG.png" group-title="Animation",Pluto TV Anime Clásico (720p) +#EXTINF:-1 tvg-id="PlutoTVAnimeClasico.us",Pluto TV Anime Clásico (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054acc871ec430007f54c7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce44810b421747ae467b7cd/colorLogoPNG.png" group-title="Series",Pluto TV Antiques Roadshow UK (720p) +#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us",Pluto TV Antiques Roadshow UK (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce44810b421747ae467b7cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=621&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce44810b421747ae467b7cd/colorLogoPNG.png" group-title="Series",Pluto TV Antiques Roadshow UK (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us",Pluto TV Antiques Roadshow UK (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8c19b2678b000780d032/colorLogoPNG.png" group-title="Series",Pluto TV Archivos Forenses (720p) +#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us",Pluto TV Archivos Forenses (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8c19b2678b000780d032/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8c19b2678b000780d032/colorLogoPNG.png" group-title="Series",Pluto TV Archivos Forenses (720p) +#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us",Pluto TV Archivos Forenses (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984f4a09e92d0007d74647/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAsPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99aad4e82db50007fac4b2/colorLogoPNG.png" group-title="",Pluto TV As Pistas de Blue (720p) +#EXTINF:-1 tvg-id="PlutoTVAsPistasdeBlue.us",Pluto TV As Pistas de Blue (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAsesinatosdeMidsomer.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca8310a30e00074fab92/colorLogoPNG.png" group-title="",Pluto TV Asesinatos de Midsomer (720p) +#EXTINF:-1 tvg-id="PlutoTVAsesinatosdeMidsomer.us",Pluto TV Asesinatos de Midsomer (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca8310a30e00074fab92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede45d077746000072be0fe/colorLogoPNG.png" group-title="Series",Pluto TV Auction Hunters (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us",Pluto TV Auction Hunters (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45d077746000072be0fe&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=58a8da20-057f-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede45d077746000072be0fe/colorLogoPNG.png" group-title="Series",Pluto TV Auction Hunters (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us",Pluto TV Auction Hunters (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f760c3d41aa2d0007bfde19/colorLogoPNG.png" group-title="Sports",Pluto TV Auto Motor Sport (720p) +#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us",Pluto TV Auto Motor Sport (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f760c3d41aa2d0007bfde19&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c676a4b5-65d2-474a-b477-c04f8b88e727&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f760c3d41aa2d0007bfde19/colorLogoPNG.png" group-title="Sports",Pluto TV Auto Motor Sport (720p) +#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us",Pluto TV Auto Motor Sport (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAvatar.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/600adbdf8c554e00072125c9/colorLogoPNG.png" group-title="",Pluto TV Avatar (720p) +#EXTINF:-1 tvg-id="PlutoTVAvatar.us",Pluto TV Avatar (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600adbdf8c554e00072125c9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddc266f80e3550009136843/colorLogoPNG.png" group-title="Series",Pluto TV Aventura (720p) +#EXTINF:-1 tvg-id="PlutoTVAventura.us",Pluto TV Aventura (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc266f80e3550009136843/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5595e43c66ace1652e63c6a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=194&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7656a8d0438aceb41cfdef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBabar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67e20c93312100076f3ffe/colorLogoPNG.png" group-title="",Pluto TV Babar (720p) +#EXTINF:-1 tvg-id="PlutoTVBabar.us",Pluto TV Babar (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67e20c93312100076f3ffe/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBabyFirst.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Family",Pluto TV BabyFirst (360p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBabyFirst.us",Pluto TV BabyFirst (360p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac49ce4dc8b00078b23bc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBackcountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cabdf1437b88b26947346b2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Backcountry (720p) +#EXTINF:-1 tvg-id="PlutoTVBackcountry.us",Pluto TV Backcountry (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cabdf1437b88b26947346b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=755&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBackcountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cabdf1437b88b26947346b2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Backcountry (720p) +#EXTINF:-1 tvg-id="PlutoTVBackcountry.us",Pluto TV Backcountry (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBarney.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f29ada4bdaebd000708d49d/colorLogoPNG.png" group-title="Series",Pluto TV Barney (720p) +#EXTINF:-1 tvg-id="PlutoTVBarney.us",Pluto TV Barney (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f29ada4bdaebd000708d49d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBaywatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815eb889bca2ce7b746fdd/colorLogoPNG.png" group-title="Series",Pluto TV Baywatch (720p) +#EXTINF:-1 tvg-id="PlutoTVBaywatch.us",Pluto TV Baywatch (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815eb889bca2ce7b746fdd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=142&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBaywatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815eb889bca2ce7b746fdd/colorLogoPNG.png" group-title="Series",Pluto TV Baywatch (720p) +#EXTINF:-1 tvg-id="PlutoTVBaywatch.us",Pluto TV Baywatch (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBBCFood.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fb5844bf5514d0007945bda/colorLogoPNG.png" group-title="Cooking",Pluto TV BBC Food (720p) +#EXTINF:-1 tvg-id="PlutoTVBBCFood.us",Pluto TV BBC Food (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5844bf5514d0007945bda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBBCHome.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fb5836fe745b600070fc743/colorLogoPNG.png" group-title="Lifestyle",Pluto TV BBC Home (720p) +#EXTINF:-1 tvg-id="PlutoTVBBCHome.us",Pluto TV BBC Home (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5836fe745b600070fc743/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeautyandtheGeek.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18c138c32460007cc6b46/colorLogoPNG.png" group-title="",Pluto TV Beauty and the Geek (720p) +#EXTINF:-1 tvg-id="PlutoTVBeautyandtheGeek.us",Pluto TV Beauty and the Geek (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18c138c32460007cc6b46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78f4dd001977000787d7e3/colorLogoPNG.png" group-title="",Pluto TV Being Human (720p) +#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us",Pluto TV Being Human (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e78f4dd001977000787d7e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=dd1d87dc-057f-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78f4dd001977000787d7e3/colorLogoPNG.png" group-title="",Pluto TV Being Human (720p) +#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us",Pluto TV Being Human (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ebc8688f3697d00072f7cf8/colorLogoPNG.png" group-title="Sports",Pluto TV Bellator MMA (720p) +#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us",Pluto TV Bellator MMA (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ebc8688f3697d00072f7cf8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=730&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ebc8688f3697d00072f7cf8/colorLogoPNG.png" group-title="Sports",Pluto TV Bellator MMA (720p) +#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us",Pluto TV Bellator MMA (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBestLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5887ba337b8e94223eb121bd/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Best Life (720p) +#EXTINF:-1 tvg-id="PlutoTVBestLife.us",Pluto TV Best Life (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5887ba337b8e94223eb121bd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=630&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBestLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5887ba337b8e94223eb121bd/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Best Life (720p) +#EXTINF:-1 tvg-id="PlutoTVBestLife.us",Pluto TV Best Life (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (720p) +#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (360p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150978589c0700095f97ae/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca670f6593a5d78f0e85aed&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=174&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (720p) +#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (360p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150978589c0700095f97ae/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVBETClassics.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b5ba040eaa0007074d0a/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Classics (720p) +#EXTINF:-1 tvg-id="PlutoTVBETClassics.us",Pluto TV BET Classics (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBETClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f92b5ba040eaa0007074d0a/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Classics (720p) +#EXTINF:-1 tvg-id="PlutoTVBETClassics.us",Pluto TV BET Classics (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBETHer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e6949ab8e2b35bdcaa9f/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Her (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e6949ab8e2b35bdcaa9f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=175&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBETHer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e6949ab8e2b35bdcaa9f/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Her (480p) +#EXTINF:-1 tvg-id="PlutoTVBETHer.us",Pluto TV BET Her (480p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db81695a95186000941ee8b/colorLogoPNG.png" group-title="Classic",Pluto TV Beverly Hillbillies (720p) +#EXTINF:-1 tvg-id="PlutoTVBETHer.us",Pluto TV BET Her (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e6949ab8e2b35bdcaa9f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=175&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us",Pluto TV Beverly Hillbillies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db81695a95186000941ee8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db81695a95186000941ee8b/colorLogoPNG.png" group-title="Classic",Pluto TV Beverly Hillbillies (720p) +#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us",Pluto TV Beverly Hillbillies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7796e470510900070d4e3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b551ddcd25500072c4dad/colorLogoPNG.png" group-title="Kids",Pluto TV Beyblade Burst Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us",Pluto TV Beyblade Burst Nick (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b551ddcd25500072c4dad&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a38b88ed-0712-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b551ddcd25500072c4dad/colorLogoPNG.png" group-title="Kids",Pluto TV Beyblade Burst Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us",Pluto TV Beyblade Burst Nick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59641d9173ac1fec2fc01f17/colorLogoPNG.png" group-title="Sports",Pluto TV Big Sky Conference (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us",Pluto TV Big Sky Conference (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59641d9173ac1fec2fc01f17&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=752&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59641d9173ac1fec2fc01f17/colorLogoPNG.png" group-title="Sports",Pluto TV Big Sky Conference (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us",Pluto TV Big Sky Conference (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBigTimeRush.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aa7aab66c76000790ee7e/colorLogoPNG.png" group-title="",Pluto TV Big Time Rush (720p) +#EXTINF:-1 tvg-id="PlutoTVBigTimeRush.us",Pluto TV Big Time Rush (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa7aab66c76000790ee7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBiography.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af2a24f1c5ab2d298776b/colorLogoPNG.png" group-title="Documentary",Pluto TV Biography (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBiography.us",Pluto TV Biography (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2a24f1c5ab2d298776b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (720p) +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (684p) +https://stitcher.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?appVersion=2.0.0&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012 +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58af4c093a41ca9d4ecabe96&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=80&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (720p) +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (684p) -https://stitcher.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?appVersion=2.0.0&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012 -#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e2bceca5b4b2c0e06c50/colorLogoPNG.png" group-title="Series",Pluto TV Black Ink Crew (720p) +#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us",Pluto TV Black Ink Crew (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e2bceca5b4b2c0e06c50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=285&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e2bceca5b4b2c0e06c50/colorLogoPNG.png" group-title="Series",Pluto TV Black Ink Crew (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us",Pluto TV Black Ink Crew (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f1efad04320070007dbb60b/colorLogoPNG.png" group-title="News",Pluto TV Black News Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVBlackNewsChannel.us",Pluto TV Black News Channel (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1efad04320070007dbb60b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlazeLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="",Pluto TV Blaze Live (720p) +#EXTINF:-1 tvg-id="PlutoTVBlazeLive.us",Pluto TV Blaze Live (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e46fba0c43b0d00096e5ac1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=238&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="Kids",Pluto TV Blaze Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us",Pluto TV Blaze Nick (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b60419becf60008c841fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ebc579c0-0712-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="Kids",Pluto TV Blaze Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us",Pluto TV Blaze Nick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBloombergTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Business",Pluto TV Bloomberg TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBloombergTV.us",Pluto TV Bloomberg TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/54ff7ba69222cb1c2624c584/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=54ff7ba69222cb1c2624c584&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=224&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b564ff59d130007363823/colorLogoPNG.png" group-title="Kids",Pluto TV Blue's Clues Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us",Pluto TV Blue's Clues Nick (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b564ff59d130007363823&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=29e99f3f-0713-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b564ff59d130007363823/colorLogoPNG.png" group-title="Kids",Pluto TV Blue's Clues Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us",Pluto TV Blue's Clues Nick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobEsponja.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca0b4e448e00075e7c5e/colorLogoPNG.png" group-title="Kids",Pluto TV Bob Esponja (720p) +#EXTINF:-1 tvg-id="PlutoTVBobEsponja.us",Pluto TV Bob Esponja (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca0b4e448e00075e7c5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobEsponjaPlus.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca0b4e448e00075e7c5e/colorLogoPNG.png" group-title="Kids",Pluto TV Bob Esponja Plus (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBobEsponjaPlus.us",Pluto TV Bob Esponja Plus (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd87d882574170007fac022/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobleponge.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ffc8c345822750007e167de/colorLogoPNG.png" group-title="Kids",Pluto TV Bob l'éponge (720p) +#EXTINF:-1 tvg-id="PlutoTVBobleponge.us",Pluto TV Bob l'éponge (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBobleponge.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ffc8c345822750007e167de/colorLogoPNG.png" group-title="Kids",Pluto TV Bob l'éponge (720p) +#EXTINF:-1 tvg-id="PlutoTVBobleponge.us",Pluto TV Bob l'éponge (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBoxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac425f949b4600079938f3/colorLogoPNG.png" group-title="Sports",Pluto TV Boxing (720p) +#EXTINF:-1 tvg-id="PlutoTVBoxing.us",Pluto TV Boxing (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac425f949b4600079938f3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBritishTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b68a18823ecb93393cba2f1/colorLogoPNG.png" group-title="Entertainment",Pluto TV British TV (720p) +#EXTINF:-1 tvg-id="PlutoTVBritishTV.us",Pluto TV British TV (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b68a18823ecb93393cba2f1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=154&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBritishTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b68a18823ecb93393cba2f1/colorLogoPNG.png" group-title="Entertainment",Pluto TV British TV (720p) +#EXTINF:-1 tvg-id="PlutoTVBritishTV.us",Pluto TV British TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBritpocalypse.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e1edac394e0e80009b2416a/colorLogoPNG.png" group-title="",Pluto TV Britpocalypse (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVBritpocalypse.us",Pluto TV Britpocalypse (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1edac394e0e80009b2416a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5a4bb7da5c0007e5c9e9/colorLogoPNG.png" group-title="Kids",Pluto TV Bubble Guppies (720p) +#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us",Pluto TV Bubble Guppies (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b5a4bb7da5c0007e5c9e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c631817-0713-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5a4bb7da5c0007e5c9e9/colorLogoPNG.png" group-title="Kids",Pluto TV Bubble Guppies (720p) +#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us",Pluto TV Bubble Guppies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBuzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Pluto TV Buzzr (720p) +#EXTINF:-1 tvg-id="PlutoTVBuzzr.us",Pluto TV Buzzr (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bfbe4ced4f7b601b12e6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=540&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBuzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Pluto TV Buzzr (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVBuzzr.us",Pluto TV Buzzr (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) +#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b3a4249444e05d09cc46&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=663&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) [Offline] http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c12ba66eae03059cbdc77f2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (240p) +#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="CBSSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e9f2c05172a0f0007db4786/colorLogoPNG.png" group-title="Sports",Pluto TV CBS Sports HQ (1080p) +#EXTINF:-1 tvg-id="CBSSports.us",Pluto TV CBS Sports HQ (1080p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5e9f2c05172a0f0007db4786/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5a6b92f6e22a617379789618/colorLogoPNG.png" group-title="News",Pluto TV CBSN (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSN2.us",Pluto TV CBSN (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a6b92f6e22a617379789618/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a6b92f6e22a617379789618&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=204&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Baltimore MD (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCBSNBaltimore.us",Pluto TV CBSN Baltimore MD (720p) [Not 24/7] http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f75919718aed0007250d7a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSNewsBayArea.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1afb21486df0007abc57c/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Bay Area CA (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCBSNewsBayArea.us",Pluto TV CBSN Bay Area CA (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1afb21486df0007abc57c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsBoston.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Boston MA (1080p) +#EXTINF:-1 tvg-id="PlutoTVCBSNewsBoston.us",Pluto TV CBSN Boston MA (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1af2ad345340008fccd1e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsChicago.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1aeb2fd4b8a00076c2047/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Chicago IL (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNewsChicago.us",Pluto TV CBSN Chicago IL (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1aeb2fd4b8a00076c2047/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNDallasFortWorth.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Dallas Ft Worth TX (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNDallasFortWorth.us",Pluto TV CBSN Dallas Ft Worth TX (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5eceb0d4065c240007688ec6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSNewsDenver.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1b12146cba40007aa7e5d/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Denver CO (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNewsDenver.us",Pluto TV CBSN Denver CO (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b12146cba40007aa7e5d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsLosAngeles.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc481cda1d430000948a1b4/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Los Angeles CA (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNewsLosAngeles.us",Pluto TV CBSN Los Angeles CA (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc481cda1d430000948a1b4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc481cda1d430000948a1b4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=207&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNMinnesota.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b0bf2240d8000732a09c/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Minnesota MN (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNMinnesota.us",Pluto TV CBSN Minnesota MN (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b0bf2240d8000732a09c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNNewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc48170e280c80009a861ab/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN New York NY (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNNewYork.us",Pluto TV CBSN New York NY (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc48170e280c80009a861ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc48170e280c80009a861ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=206&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNPhilly.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b05ea168cc000767ba67/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Philly PA (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNPhilly.us",Pluto TV CBSN Philly PA (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b05ea168cc000767ba67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNPittsburgh.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b17aa5277e00083f6521/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Pittsburgh PA (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNPittsburgh.us",Pluto TV CBSN Pittsburgh PA (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b17aa5277e00083f6521/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNSacramento.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60cb6df2b2ad610008cd5bea/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Sacramento CA (720p) +#EXTINF:-1 tvg-id="PlutoTVCBSNSacramento.us",Pluto TV CBSN Sacramento CA (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60cb6df2b2ad610008cd5bea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCelebrity.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8bf1472907815f66a866dd/colorLogoPNG.png" group-title="",Pluto TV Celebrity (720p) +#EXTINF:-1 tvg-id="PlutoTVCelebrity.us",Pluto TV Celebrity (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf1472907815f66a866dd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=320&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCelebrity.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8bf1472907815f66a866dd/colorLogoPNG.png" group-title="",Pluto TV Celebrity (720p) +#EXTINF:-1 tvg-id="PlutoTVCelebrity.us",Pluto TV Celebrity (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVChassy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b6b285823ecb93393cbf766/colorLogoPNG.png" group-title="",Pluto TV Chassy (720p) +#EXTINF:-1 tvg-id="PlutoTVChassy.us",Pluto TV Chassy (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b6b285823ecb93393cbf766&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=687&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVChassy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b6b285823ecb93393cbf766/colorLogoPNG.png" group-title="",Pluto TV Chassy (720p) +#EXTINF:-1 tvg-id="PlutoTVChassy.us",Pluto TV Chassy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCheddar.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV Cheddar (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCheddar.us",Pluto TV Cheddar (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812afe1d0f0b8d55dde67fa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812afe1d0f0b8d55dde67fa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=226&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCheddar.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV Cheddar (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCheddar.us",Pluto TV Cheddar (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e02c08ee5378be82db47/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVChefkoch.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8c4c3f141f350007936f7d/colorLogoPNG.png" group-title="",Pluto TV Chefkoch (720p) +#EXTINF:-1 tvg-id="PlutoTVChefkoch.us",Pluto TV Chefkoch (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8c4c3f141f350007936f7d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8ae325bb-0580-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVChefkoch.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8c4c3f141f350007936f7d/colorLogoPNG.png" group-title="",Pluto TV Chefkoch (720p) +#EXTINF:-1 tvg-id="PlutoTVChefkoch.us",Pluto TV Chefkoch (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCiencia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd8364ea1d6780009929902/colorLogoPNG.png" group-title="Science",Pluto TV Ciencia (720p) +#EXTINF:-1 tvg-id="PlutoTVCiencia.us",Pluto TV Ciencia (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd8364ea1d6780009929902/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96b1c4f1ca3f0629f4bf0/colorLogoPNG.png" group-title="Movies",Pluto TV Cine (720p) +#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Cine (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b1c4f1ca3f0629f4bf0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=902&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96b1c4f1ca3f0629f4bf0/colorLogoPNG.png" group-title="Movies",Pluto TV Cine (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Cine (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed0f17564a300082b676a/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné (720p) +#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Ciné (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed0f17564a300082b676a/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Ciné (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcb62e63d4d8f0009f36881/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d164d92e97a5e107638d2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=904&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac2591dd8880007bb7d6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcb62e63d4d8f0009f36881/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/61373bb45168fe000773eecd/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Clásico (720p) +#EXTINF:-1 tvg-id="PlutoTVCineClasico.us",Pluto TV Cine Clásico (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/61373bb45168fe000773eecd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (720p) +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcdde78f080d900098550e4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8099c49f600076579b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (720p) +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcdde78f080d900098550e4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac947dcd00d0007937c08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf968040ab7d8f181e6a68b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=901&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde437229eff00091b6c30/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1f1b66c76000790ef27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineFamília" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="",Pluto TV Cine Família (240p) +#EXTINF:-1 tvg-id="",Pluto TV Cine Família (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ddb30a1d8a000908ed4c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineFamília" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="",Pluto TV Cine Família (720p) [Not 24/7] +#EXTINF:-1 tvg-id="",Pluto TV Cine Família (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineRetro.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed168f72fcd0007e56269/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné Rétro (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineRetro.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed168f72fcd0007e56269/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné Rétro (480p) +#EXTINF:-1 tvg-id="PlutoTVCineRetro.us",Pluto TV Ciné Rétro (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineSuspenso.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f984c1dc54853000797a5e8/colorLogoPNG.png" group-title="Culture",Pluto TV Cine Suspenso (240p) +#EXTINF:-1 tvg-id="PlutoTVCineRetro.us",Pluto TV Ciné Rétro (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineSuspenso.us",Pluto TV Cine Suspenso (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc4e8bcbb9010009b4e84f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d180092e97a5e107638d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=913&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (480p) +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddf1ed95e740009fef7ab/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d180092e97a5e107638d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=913&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCinePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5ff5eb810e2996000768c0e2/solidLogoPNG.png" group-title="Movies",Pluto TV Ciné+ (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCinePlus.us",Pluto TV Ciné+ (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5eb810e2996000768c0e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89a930-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=d7d7d33d-5784-4dee-a799-d09bd30b065a -#EXTINF:-1 tvg-id="PlutoTVCinema.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Movies",Pluto TV Cinéma (720p) +#EXTINF:-1 tvg-id="PlutoTVCinema.us",Pluto TV Cinéma (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?appVersion=5.4.0&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe73477534 -#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (684p) +#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us",Pluto TV Classic Movies (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5b0dada51f8004c4d855&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=106&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (684p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us",Pluto TV Classic Movies (684p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicMoviesEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicMoviesEngland.us",Pluto TV Classic Movies (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d134a74ca91eedee1630faa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=903&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicNickBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Classic",Pluto TV Classic Nick (Brazil) (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicNickBrazil.us",Pluto TV Classic Nick (Brazil) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f12151794c1800007a8ae63&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=730&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/562ea53fa9060c5a7d463e74/colorLogoPNG.png" group-title="Kids",Pluto TV Classic Toons TV (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us",Pluto TV Classic Toons TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=562ea53fa9060c5a7d463e74&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=548&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/562ea53fa9060c5a7d463e74/colorLogoPNG.png" group-title="Kids",Pluto TV Classic Toons TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us",Pluto TV Classic Toons TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5e46ae801f347500099d461a/solidLogoPNG.png" group-title="Classic",Pluto TV Classic TV (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicTV.us",Pluto TV Classic TV (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46ae801f347500099d461a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35f76fb0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=2fac39a7-56bc-492e-ae1e-3f6fb6cef1bc -#EXTINF:-1 tvg-id="PlutoTVClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e46ae801f347500099d461a/solidLogoPNG.png" group-title="Classic",Pluto TV Classic TV (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicTV.us",Pluto TV Classic TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e32b297f96000768f928/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Comedy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e32b297f96000768f928/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Comedy (684p) +#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us",Pluto TV Classic TV Comedy (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e32b297f96000768f928&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=501&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e3cccf49290007053c67/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e3cccf49290007053c67&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=520&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e3cccf49290007053c67/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us",Pluto TV Classic TV Comedy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us",Pluto TV Classic TV Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f779951372da90007fd45e8/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" status="online",Pluto TV Classic TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e3cccf49290007053c67&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=520&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us",Pluto TV Classic TV Drama (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f779951372da90007fd45e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f984784ccb4de0007dfad74/colorLogoPNG.png" group-title="Music",Pluto TV Clubbing TV (720p) +#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us",Pluto TV Clubbing TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984784ccb4de0007dfad74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f984784ccb4de0007dfad74/colorLogoPNG.png" group-title="Music",Pluto TV Clubbing TV (720p) +#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us",Pluto TV Clubbing TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ad1a372e57c0007dbee5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dcc42446750e200093b15e2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=182&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channelStore=us&channel_id=151908&content=0adc72cd87e45d3491f8e47e54bbcc98&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMTEqualPlay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f68f53eb1e5800007390bf8/colorLogoPNG.png" group-title="Music",Pluto TV CMT Equal Play (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCMTEqualPlay.us",Pluto TV CMT Equal Play (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f68f53eb1e5800007390bf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMTWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e94282d4ec87bdcbb87cd/colorLogoPNG.png" group-title="Movies",Pluto TV CMT Westerns (240p) +#EXTINF:-1 tvg-id="PlutoTVCMTWesterns.us",Pluto TV CMT Westerns (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e94282d4ec87bdcbb87cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e94282d4ec87bdcbb87cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=103&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCNET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56283c8769ba54637dea0464/colorLogoPNG.png" group-title="",Pluto TV CNET (720p) +#EXTINF:-1 tvg-id="PlutoTVCNET.us",Pluto TV CNET (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56283c8769ba54637dea0464&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=228&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCNET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56283c8769ba54637dea0464/colorLogoPNG.png" group-title="",Pluto TV CNET (720p) +#EXTINF:-1 tvg-id="PlutoTVCNET.us",Pluto TV CNET (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCNN.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV CNN (720p) +#EXTINF:-1 tvg-id="PlutoTVCNN.us",Pluto TV CNN (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5421f71da6af422839419cb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5421f71da6af422839419cb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=209&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) +#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0fbaa8742fa3093899da&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=956&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) +#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0fbaa8742fa3093899da&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=956&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0657444a40009cd2422/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCocinaSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cocina (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVCocinaSpain.us",Pluto TV Cocina (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdaa8ba90f0007d5e760&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=700&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cold Case Files (720p) +#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us",Pluto TV Cold Case Files (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c37d6712de254456f7ec340&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=373&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cold Case Files (720p) +#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us",Pluto TV Cold Case Files (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1ac3e268cae539bcedb07/colorLogoPNG.png" group-title="Sports",Pluto TV Combate World (720p) +#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us",Pluto TV Combate World (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ac3e268cae539bcedb07&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=970&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1ac3e268cae539bcedb07/colorLogoPNG.png" group-title="Sports",Pluto TV Combate World (720p) +#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us",Pluto TV Combate World (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComediaMadeinSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abce155a03d0007718834/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedia (Made in Spain) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVComediaMadeinSpain.us",Pluto TV Comedia (Made in Spain) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedie.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb91bb9b9e7000817e67f/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédie (720p) +#EXTINF:-1 tvg-id="PlutoTVComedie.us",Pluto TV Comédie (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVComedie.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb91bb9b9e7000817e67f/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédie (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVComedie.us",Pluto TV Comédie (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) +#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (288p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d3a00ad95e4718ae8d8db&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efd0dbbe3ba000908b639&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2ede5357-0728-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) +#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363c2411c5ca053f198f97/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (288p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d3a00ad95e4718ae8d8db&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca671f215a62078d2ec0abf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=465&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4947590ba40f75dc29c26b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5ca4fefb-0728-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13bde24f4ca800093d57b5/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us",Pluto TV Comedy Central (Made in Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4948418101147596fd6c5a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=91083755-0728-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us",Pluto TV Comedy Central (Made in Germany) (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermanyPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany)+ (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermanyPlus.us",Pluto TV Comedy Central (Made in Germany)+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b8923fc302800079e4f4f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b8923fc302800079e4f4f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ee59b770-663e-4463-bf9b-3f7c374fbc39&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central + (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralPlus.us",Pluto TV Comedy Central + (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcea6bc6fb8890009322ff3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcea6bc6fb8890009322ff3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=90d72ed4-4920-4983-a25f-2926c714e415&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f99e24636d67d0007a94e6d/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Animation (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralAnimation.us",Pluto TV Comedy Central Animation (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99e24636d67d0007a94e6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96dad1652631e36d43320/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us",Pluto TV Comedy Central Latino (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96dad1652631e36d43320&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=967&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96dad1652631e36d43320/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us",Pluto TV Comedy Central Latino (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCompetencias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6d935d000120009bc1132/colorLogoPNG.png" group-title="",Pluto TV Competencias (360p) +#EXTINF:-1 tvg-id="PlutoTVCompetencias.us",Pluto TV Competencias (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6d935d000120009bc1132/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVConspiracy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4ae94ef1a1bbb350ca41bb/colorLogoPNG.png" group-title="",Pluto TV Conspiracy (480p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVConspiracy.us",Pluto TV Conspiracy (480p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVConspiracyEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4ae94ef1a1bbb350ca41bb/colorLogoPNG.png" group-title="",Pluto TV Conspiracy (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVConspiracyEngland.us",Pluto TV Conspiracy (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4ae94ef1a1bbb350ca41bb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCookalong.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dbc297672961b0009f12e5b/colorLogoPNG.png" group-title="Cooking",Pluto TV Cookalong (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVCookalong.us",Pluto TV Cookalong (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc297672961b0009f12e5b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCops.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e1f7e089f23700009d66303/colorLogoPNG.png" group-title="Series",Pluto TV Cops (720p) +#EXTINF:-1 tvg-id="PlutoTVCops.us",Pluto TV Cops (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e1f7e089f23700009d66303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=367&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCops.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e1f7e089f23700009d66303/colorLogoPNG.png" group-title="Series",Pluto TV Cops (720p) +#EXTINF:-1 tvg-id="PlutoTVCops.us",Pluto TV Cops (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Court TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCourtTV.us",Pluto TV Court TV (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0b4841a7d0000938ddbd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0b4841a7d0000938ddbd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=395&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCourtroom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6036e6e7ac69c400072afca2/colorLogoPNG.png" group-title="Entertainment",Pluto TV Courtroom (720p) +#EXTINF:-1 tvg-id="PlutoTVCourtroom.us",Pluto TV Courtroom (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e6e7ac69c400072afca2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b6c60fd20c50007910bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2da8f50-0581-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767790d0438aceb41d03ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (England) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCrimeEngland.us",Pluto TV Crime (England) (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea18cd42ee5410007e349dc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=200&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f31fd1b4c510e00071c3103/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f31fd1b4c510e00071c3103/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Drama (684p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us",Pluto TV Crime Drama (684p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f31fd1b4c510e00071c3103&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=350&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18cd42ee5410007e349dc/colorLogoPNG.png" group-title="Series",Pluto TV Crime Investigation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation360.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6000a5a9e767980007b497ca/colorLogoPNG.png" group-title="Series",Pluto TV Crime Investigation 360 (720p) +#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us",Pluto TV Crime Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation360.us",Pluto TV Crime Investigation 360 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a5a9e767980007b497ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Movies (720p) +#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation.us",Pluto TV Crime Investigation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeMovies.us",Pluto TV Crime Movies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d8594eb979c0007706de7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV Crime TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCrimeTV.us",Pluto TV Crime TV (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c571faeb3e2738ae27933&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5ffebbeabd18520007b37709/solidLogoPNG.png" group-title="",Pluto TV Crime+ (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVCrimePlus.us",Pluto TV Crime+ (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebbeabd18520007b37709/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9391-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=fc31112d-4925-4f44-b50f-ddf0ca08e7c7 -#EXTINF:-1 tvg-id="PlutoTVCSI.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd29e4aa26700076c0d06/colorLogoPNG.png" group-title="Series",Pluto TV CSI (720p) +#EXTINF:-1 tvg-id="PlutoTVCSI.us",Pluto TV CSI (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd29e4aa26700076c0d06&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=355&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCSI.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd29e4aa26700076c0d06/colorLogoPNG.png" group-title="Series",Pluto TV CSI (720p) +#EXTINF:-1 tvg-id="PlutoTVCSI.us",Pluto TV CSI (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCuisine.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed48146ba9e00078424b6/colorLogoPNG.png" group-title="Cooking",Pluto TV Cuisine (720p) +#EXTINF:-1 tvg-id="PlutoTVCuisine.us",Pluto TV Cuisine (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCuisine.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed48146ba9e00078424b6/colorLogoPNG.png" group-title="Cooking",Pluto TV Cuisine (720p) +#EXTINF:-1 tvg-id="PlutoTVCuisine.us",Pluto TV Cuisine (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c31f2f21b553c1f673fb0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (684p) +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c665db3e6c01b72c4977bc2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=109&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (684p) +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCurroJimenez.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acd36779de70007a680d1/colorLogoPNG.png" group-title="",Pluto TV Curro Jiménez (720p) +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c31f2f21b553c1f673fb0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCurroJimenez.us",Pluto TV Curro Jiménez (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acd36779de70007a680d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40855b3fb0855028c99b6f/colorLogoPNG.png" group-title="Series",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40855b3fb0855028c99b6f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=315&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40855b3fb0855028c99b6f/colorLogoPNG.png" group-title="Series",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e843d849109b700075d5ada/colorLogoPNG.png" group-title="Series",Pluto TV Dark Matter (720p) +#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us",Pluto TV Dark Matter (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e843d849109b700075d5ada&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ddc64e1e-0581-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e843d849109b700075d5ada/colorLogoPNG.png" group-title="Series",Pluto TV Dark Matter (720p) +#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us",Pluto TV Dark Matter (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3958c66ac540007d6e6a7/colorLogoPNG.png" group-title="Series",Pluto TV Dark Shadows (720p) +#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us",Pluto TV Dark Shadows (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3958c66ac540007d6e6a7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=535&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3958c66ac540007d6e6a7/colorLogoPNG.png" group-title="Series",Pluto TV Dark Shadows (720p) +#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us",Pluto TV Dark Shadows (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDating.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6092544e7639460007d4835e/solidLogoPNG.png" group-title="Series",Pluto TV Dating (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDating.us",Pluto TV Dating (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6092544e7639460007d4835e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5a2b1311-2550-464b-8060-15765b30c4f8 -#EXTINF:-1 tvg-id="PlutoTVDeadlyWomen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1df0d50be2571e393ad31/colorLogoPNG.png" group-title="Series",Pluto TV Deadly Women (720p) +#EXTINF:-1 tvg-id="PlutoTVDeadlyWomen.us",Pluto TV Deadly Women (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1df0d50be2571e393ad31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9debf8c881310007d7bde1/colorLogoPNG.png" group-title="Series",Pluto TV Deal or No Deal (720p) +#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us",Pluto TV Deal or No Deal (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9debf8c881310007d7bde1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=165&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9debf8c881310007d7bde1/colorLogoPNG.png" group-title="Series",Pluto TV Deal or No Deal (720p) +#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us",Pluto TV Deal or No Deal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (720p) +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6eeb85c05dfc257e5a50c4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=144&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de58ef515635d00091f605d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (720p) +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6eeb85c05dfc257e5a50c4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=144&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f061242a7951e00075d7413/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Demand Africa (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDemandAfrica.us",Pluto TV Demand Africa (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f061242a7951e00075d7413/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f061242a7951e00075d7413&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=172&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDeportes.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde07af1c85b0009b18651/colorLogoPNG.png" group-title="Sports",Pluto TV Deportes (720p) +#EXTINF:-1 tvg-id="PlutoTVDeportes.us",Pluto TV Deportes (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde07af1c85b0009b18651/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce4475cd43850831ca91ce7/colorLogoPNG.png" group-title="Classic",Pluto TV Doctor Who Classic (720p) +#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us",Pluto TV Doctor Who Classic (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce4475cd43850831ca91ce7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=532&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce4475cd43850831ca91ce7/colorLogoPNG.png" group-title="Classic",Pluto TV Doctor Who Classic (720p) +#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us",Pluto TV Doctor Who Classic (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b85a7582921777994caea63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=91&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db048f9447d6c0009b8f29d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0d94d79f-0582-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04252241007000975faac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogelcazarrecompensas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f9992c685a2a80007fa414a/colorLogoPNG.png" group-title="Series",Pluto TV Dog el cazarrecompensas (480p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDogelcazarrecompensas.us",Pluto TV Dog el cazarrecompensas (480p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9992c685a2a80007fa414a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (720p) +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bee1a7359ee03633e780238&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=381&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (720p) +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b535a278bfe000799484a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bee1a7359ee03633e780238&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=381&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b329e0a7b9d8872aeb49ceb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=636&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d8dc1d8da13e15d9fce6911&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7254c815-0582-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc0740e843c7812dcb8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e43c344b54fe800093552f4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c28ebf75-0713-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e43c344b54fe800093552f4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c28ebf75-0713-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fb6c84dd37df3b4290c5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=985&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="PlutoTVDrOz" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac43a40fe4ab0007f478ac/colorLogoPNG.png" group-title="Series",Pluto TV Dr. Oz (720p) [Offline] +#EXTINF:-1 tvg-id="",Pluto TV Dr. Oz (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac43a40fe4ab0007f478ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e92e4694c027be6ecece1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=60&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc190f7bfed110009d934c3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a1f190ec-0582-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e92e4694c027be6ecece1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=60&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVDramaEngland.us",Pluto TV Drama (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91149880d60009d35d27&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=402&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (Germany) (720p) +#EXTINF:-1 tvg-id="",Pluto TV Drama (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc190f7bfed110009d934c3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=200&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f24662bebe0f0000767de32/colorLogoPNG.png" group-title="Movies",Pluto TV Drama Life (720p) +#EXTINF:-1 tvg-id="PlutoTVDramaLife.us",Pluto TV Drama Life (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f24662bebe0f0000767de32&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=332&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f24662bebe0f0000767de32/colorLogoPNG.png" group-title="Movies",Pluto TV Drama Life (720p) +#EXTINF:-1 tvg-id="PlutoTVDramaLife.us",Pluto TV Drama Life (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama+ (720p) +#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us",Pluto TV Drama+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebb618f6cb4000728082c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9390-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7eed86a2-2fee-402b-9978-ecaffe0235c0 -#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama+ (720p) +#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us",Pluto TV Drama+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddbf866b1862a0009a0648e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ddbf866b1862a0009a0648e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3a2ed1cd-e3a3-4fa3-bdbc-94e7363ca0cf&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDuckDynasty.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f6b54b9e67cf60007d4cef1/colorLogoPNG.png" group-title="Series",Pluto TV Duck Dynasty (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVDuckDynasty.us",Pluto TV Duck Dynasty (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b54b9e67cf60007d4cef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElConquistadordelFin.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f280149cec6be00072ab1fc/colorLogoPNG.png" group-title="",Pluto TV El Conquistador del Fin (720p) +#EXTINF:-1 tvg-id="PlutoTVElConquistadordelFin.us",Pluto TV El Conquistador del Fin (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f280149cec6be00072ab1fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElEncantadordePerros.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60e45687313c5f0007bc8e94/colorLogoPNG.png" group-title="",Pluto TV El Encantador de Perros (720p) +#EXTINF:-1 tvg-id="PlutoTVElEncantadordePerros.us",Pluto TV El Encantador de Perros (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60e45687313c5f0007bc8e94/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElReinoInfantil.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d3d06fb60d8000781fce8/colorLogoPNG.png" group-title="",Pluto TV El Reino Infantil (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVElReinoInfantil.us",Pluto TV El Reino Infantil (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3d06fb60d8000781fce8/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVEmpenosalobestia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f23102d5e239d00074b092a/colorLogoPNG.png" group-title="",Pluto TV Empeños a lo bestia (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVEmpenosalobestia.us",Pluto TV Empeños a lo bestia (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f23102d5e239d00074b092a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Pluto TV EN DIRECTO EN VIVO (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=a6f8 -#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Pluto TV EN DIRECTO EN VIVO (684p) [Not 24/7] +#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us",Pluto TV EN DIRECTO EN VIVO (684p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=9f61 -#EXTINF:-1 tvg-id="PlutoTVESR24/7.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1e0ee50be2571e393ad33/colorLogoPNG.png" group-title="Sports",Pluto TV ESR 24/7 (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us",Pluto TV EN DIRECTO EN VIVO (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=a6f8 +#EXTINF:-1 tvg-id="",Pluto TV ESR 24/7 (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e0ee50be2571e393ad33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVEstrellasdeAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e972a21ad709d00074195ba/colorLogoPNG.png" group-title="",Pluto TV Estrellas de Acción (480p) +#EXTINF:-1 tvg-id="PlutoTVEstrellasdeAccion.us",Pluto TV Estrellas de Acción (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e972a21ad709d00074195ba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVETLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc0c78281eddb0009a02d5e/colorLogoPNG.png" group-title="Entertainment",Pluto TV ET Live (1080p) +#EXTINF:-1 tvg-id="PlutoTVETLive.us",Pluto TV ET Live (1080p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc0c78281eddb0009a02d5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=190&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVETLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc0c78281eddb0009a02d5e/colorLogoPNG.png" group-title="Entertainment",Pluto TV ET Live (1080p) +#EXTINF:-1 tvg-id="PlutoTVETLive.us",Pluto TV ET Live (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVEuronews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60d3583ef310610007fb02b1/colorLogoPNG.png" group-title="News",Pluto TV Euronews (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVEuronews.us",Pluto TV Euronews (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3583ef310610007fb02b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVExplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad9b8551b95267e225e59c1/colorLogoPNG.png" group-title="",Pluto TV Explore (720p) +#EXTINF:-1 tvg-id="PlutoTVExplore.us",Pluto TV Explore (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b8551b95267e225e59c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVExtreme.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed327f9e9b0000761141e/colorLogoPNG.png" group-title="",Pluto TV Extrême (720p) +#EXTINF:-1 tvg-id="PlutoTVExtreme.us",Pluto TV Extrême (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVExtreme.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed327f9e9b0000761141e/colorLogoPNG.png" group-title="",Pluto TV Extrême (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVExtreme.us",Pluto TV Extrême (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebaccf1734aaf0007142c86/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d883e738977e2c31096b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7ffe738977e2c312133/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf5fafb5ee0007d4d0ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/554158e864526b29254ff105/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFaithTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c58a539fae3812612f33ca3/colorLogoPNG.png" group-title="Religious",Pluto TV Faith TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFaithTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c58a539fae3812612f33ca3/colorLogoPNG.png" group-title="Religious",Pluto TV Faith TV (240p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFaithTV.us",Pluto TV Faith TV (240p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c58a539fae3812612f33ca3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=643&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc3fc6b9133f500099c7d98/colorLogoPNG.png" group-title="Family",Pluto TV Family (720p) +#EXTINF:-1 tvg-id="PlutoTVFaithTV.us",Pluto TV Faith TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFamily.us",Pluto TV Family (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc3fc6b9133f500099c7d98/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFamilyTies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f77939a630f530007dde654/colorLogoPNG.png" group-title="Series",Pluto TV Family Ties (720p) +#EXTINF:-1 tvg-id="PlutoTVFamilyTies.us",Pluto TV Family Ties (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77939a630f530007dde654/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (720p) +#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b64a245a202b3337f09e51d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=66&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (720p) +#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b64a245a202b3337f09e51d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=66&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFashionTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60c882460ea4a200076a2a37/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashion TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFashionTV.us",Pluto TV Fashion TV (720p) https://siloh.pluto.tv/lilo/production/FashionTV/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVFashionBox.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee8d84bfb286e0007285aad/colorLogoPNG.png" group-title="Lifestyle",Pluto TV FashionBox (720p) +#EXTINF:-1 tvg-id="",Pluto TV FashionBox (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee8d84bfb286e0007285aad/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFashionbox.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ee8d84bfb286e0007285aad/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashionbox (720p) +#EXTINF:-1 tvg-id="PlutoTVFashionbox.us",Pluto TV Fashionbox (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFBIFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cb6f6f9a461406ffe4022cf/colorLogoPNG.png" group-title="Series",Pluto TV FBI Files (720p) +#EXTINF:-1 tvg-id="PlutoTVFBIFiles.us",Pluto TV FBI Files (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb6f6f9a461406ffe4022cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (720p) +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=588128d17d64bc0d0f385c34&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=301&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (720p) +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c362ded581a86051df509b4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed673cad35f0007651fd4/colorLogoPNG.png" group-title="",Pluto TV Femmes de Loi (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us",Pluto TV Femmes de Loi (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed673cad35f0007651fd4/colorLogoPNG.png" group-title="",Pluto TV Femmes de Loi (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us",Pluto TV Femmes de Loi (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFifthGear.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1de9208ee5378be82db3b/colorLogoPNG.png" group-title="",Pluto TV Fifth Gear (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFifthGear.us",Pluto TV Fifth Gear (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1de9208ee5378be82db3b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bda9fd87eb3a2717cce0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c2fb668-242f-4e7f-a025-087099fd0aca&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b0f2237a6ff45d16c3f9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=726&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d659fd87eb3a2717afc9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f120f41b7d403000783a6d6/colorLogoPNG.png" group-title="",Pluto TV Filmes Ação (720p) +#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.us",Pluto TV Filmes Ação (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFilmesSuspense.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f171d3442a0500007362f22/colorLogoPNG.png" group-title="",Pluto TV Filmes Suspense (720p) +#EXTINF:-1 tvg-id="PlutoTVFilmesSuspense.us",Pluto TV Filmes Suspense (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFishing.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af39510fd17b31a528eda/colorLogoPNG.png" group-title="Outdoor",Pluto TV Fishing (720p) +#EXTINF:-1 tvg-id="PlutoTVFishing.us",Pluto TV Fishing (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af39510fd17b31a528eda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b0c92783b3f0007a4c7df/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fitness (720p) +#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0c92783b3f0007a4c7df&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3b0b1ee4-3c26-4c24-8a7c-1b12f2e4e536&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b0c92783b3f0007a4c7df/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fitness (720p) +#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6140a074a99e79000738162a/colorLogoPNG.png" group-title="Movies",Pluto TV Fitness (720p) +#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6140a074a99e79000738162a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58e55b14ad8e9c364d55f717/colorLogoPNG.png" group-title="Movies",Pluto TV Flicks of Fury (720p) +#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us",Pluto TV Flicks of Fury (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58e55b14ad8e9c364d55f717&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=112&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58e55b14ad8e9c364d55f717/colorLogoPNG.png" group-title="Movies",Pluto TV Flicks of Fury (720p) +#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us",Pluto TV Flicks of Fury (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFocusTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f3bd0e63f793300071574cd/colorLogoPNG.png" group-title="",Pluto TV Focus TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFocusTV.us",Pluto TV Focus TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3bd0e63f793300071574cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=95e98e2b-3403-11eb-b13a-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFocusTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f3bd0e63f793300071574cd/colorLogoPNG.png" group-title="",Pluto TV Focus TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFocusTV.us",Pluto TV Focus TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +#EXTINF:-1 tvg-id="",Pluto TV Food (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc280c9aa218c0009724b4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0734c282-0583-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +#EXTINF:-1 tvg-id="",Pluto TV Food (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +#EXTINF:-1 tvg-id="",Pluto TV Food (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFoodEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVFoodEngland.us",Pluto TV Food (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf930548ff9b00090d5686&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=500&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFoodTV.us",Pluto TV Food TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877ac8cb791f4eb4a140d81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877ac8cb791f4eb4a140d81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=601&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) http://stitcher.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1af6a268cae539bcedb0a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=370&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files en ESP (720p) +#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us",Pluto TV Forensic Files en ESP (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e94cd036cc69d0007e8a1ba&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=933&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files en ESP (720p) +#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us",Pluto TV Forensic Files en ESP (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a74b8e1e22a61737979c6bf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=705&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) [Not 24/7] https://stitcher.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=3fab0050-8b86-11e8-a44b-996a399dacd8&deviceLat=38.8177&deviceLon=-77.1527&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=67.0.3396.99&serverSideAds=false&sid=3fab7580-8b86-11e8-a44b-996a399dacd8&userId= -#EXTINF:-1 tvg-id="PlutoTVFrontDoor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5938888cd045ffce74cf9048/colorLogoPNG.png" group-title="",Pluto TV FrontDoor [Offline] +#EXTINF:-1 tvg-id="PlutoTVFrontDoor.us",Pluto TV FrontDoor [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938888cd045ffce74cf9048/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938888cd045ffce74cf9048&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=612&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f1673d0e4370000784dc61/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fuel TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFuelTV.us",Pluto TV Fuel TV (720p) https://siloh.pluto.tv/lilo/production/FuelTV/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVFuelTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60f1673d0e4370000784dc61/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fuel TV (720p) +#EXTINF:-1 tvg-id="PlutoTVFuelTV.us",Pluto TV Fuel TV (720p) https://siloh.pluto.tv/lilo/production/FuelTV/SP/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVFullCustomGarage.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78faa05a0e200007a6f487/colorLogoPNG.png" group-title="Auto",Pluto TV Full Custom Garage (720p) +#EXTINF:-1 tvg-id="PlutoTVFullCustomGarage.us",Pluto TV Full Custom Garage (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78faa05a0e200007a6f487/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/580e87ff497c73ba2f321dd3/colorLogoPNG.png" group-title="Comedy",Pluto TV Funny AF (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/580e87ff497c73ba2f321dd3/colorLogoPNG.png" group-title="Comedy",Pluto TV Funny AF (684p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us",Pluto TV Funny AF (684p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=580e87ff497c73ba2f321dd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=450&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFutbolParaFans.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e3ddd1a3ef73b00091d5779/colorLogoPNG.png" group-title="Sports",Pluto TV Fútbol Para Fans (720p) +#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us",Pluto TV Funny AF (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFutbolParaFans.us",Pluto TV Fútbol Para Fans (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddd1a3ef73b00091d5779/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e54187aae660e00093561d6/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Show Central (720p) +#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us",Pluto TV Game Show Central (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54187aae660e00093561d6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=167&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e54187aae660e00093561d6/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Show Central (720p) +#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us",Pluto TV Game Show Central (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGameShows.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6036e7c385749f00075dbd3b/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Shows (720p) +#EXTINF:-1 tvg-id="PlutoTVGameShows.us",Pluto TV Game Shows (720p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e7c385749f00075dbd3b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVGamer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca7f16c37b88b2694731c79/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gamer (480p) +#EXTINF:-1 tvg-id="PlutoTVGamer.us",Pluto TV Gamer (480p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGamer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca7f16c37b88b2694731c79/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gamer (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVGamer.us",Pluto TV Gamer (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca7f16c37b88b2694731c79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=801&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameSpot.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f186626dcd00d0007936443/colorLogoPNG.png" group-title="Entertainment",Pluto TV GameSpot (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVGameSpot.us",Pluto TV GameSpot (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f186626dcd00d0007936443&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=806&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameSpot.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f186626dcd00d0007936443/colorLogoPNG.png" group-title="Entertainment",Pluto TV GameSpot (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVGameSpot.us",Pluto TV GameSpot (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGamingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eccd81062c300078a11df/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gaming TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGamingTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eccd81062c300078a11df/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gaming TV (480p) +#EXTINF:-1 tvg-id="PlutoTVGamingTV.us",Pluto TV Gaming TV (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGarfield.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6054ab20a365c70007e4fd44/colorLogoPNG.png" group-title="Kids",Pluto TV Garfield (720p) +#EXTINF:-1 tvg-id="PlutoTVGamingTV.us",Pluto TV Gaming TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGarfield.us",Pluto TV Garfield (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054ab20a365c70007e4fd44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGetfactual.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2a69bc928a600093a7976/colorLogoPNG.png" group-title="",Pluto TV Get.factual (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVGetfactual.us",Pluto TV Get.factual (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a69bc928a600093a7976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGhostDimension.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c45f5a9d40d58066869fa60/colorLogoPNG.png" group-title="",Pluto TV Ghost Dimension (720p) +#EXTINF:-1 tvg-id="PlutoTVGhostDimension.us",Pluto TV Ghost Dimension (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f5a9d40d58066869fa60/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGhostHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f27bbe4779de70007a6d1c1/colorLogoPNG.png" group-title="",Pluto TV Ghost Hunters (720p) +#EXTINF:-1 tvg-id="PlutoTVGhostHunters.us",Pluto TV Ghost Hunters (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f27bbe4779de70007a6d1c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9be1be738977e2c312134&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f6e88030-d7c8-47c8-8fed-7e24dd0a038a&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5417a212ff9fba68282fbf5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=736&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d6f5e738977e2c310949/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGoDiegoGo.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aa89d42a0500007363ea3/colorLogoPNG.png" group-title="",Pluto TV Go Diego Go! (720p) +#EXTINF:-1 tvg-id="PlutoTVGoDiegoGo.us",Pluto TV Go Diego Go! (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa89d42a0500007363ea3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e99f4423e067bd6df6903/colorLogoPNG.png" group-title="Cooking",Pluto TV Gordon Ramsay's Kitchen (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e99f4423e067bd6df6903/colorLogoPNG.png" group-title="Cooking",Pluto TV Gordon Ramsay's Kitchen (240p) +#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us",Pluto TV Gordon Ramsay's Kitchen (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e99f4423e067bd6df6903&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=294&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGuíadecanales.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e793a7cfbdf780007f7eb75/colorLogoPNG.png" group-title="",Pluto TV Guía de canales (240p) +#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us",Pluto TV Gordon Ramsay's Kitchen (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="",Pluto TV Guía de canales (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e793a7cfbdf780007f7eb75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Gusto TV (720p) +#EXTINF:-1 tvg-id="PlutoTVGustoTV.us",Pluto TV Gusto TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c47f3662f6b3c476fc03e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHappyDays.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7794162a4559000781fc12/colorLogoPNG.png" group-title="Series",Pluto TV Happy Days (720p) +#EXTINF:-1 tvg-id="PlutoTVHappyDays.us",Pluto TV Happy Days (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794162a4559000781fc12/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHealth.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2d7ae59bf23c192c411c/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Health (720p) +#EXTINF:-1 tvg-id="PlutoTVHealth.us",Pluto TV Health (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2d7ae59bf23c192c411c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHeleneetlesgarcons.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/604f8de01b479400078fb1e7/solidLogoPNG.png" group-title="Series",Pluto TV Hélène et les garçons (720p) +#EXTINF:-1 tvg-id="PlutoTVHeleneetlesgarcons.us",Pluto TV Hélène et les garçons (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8de01b479400078fb1e7/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b2fd0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=65d7f2cc-e6f8-4e43-9cb5-1de8d1f71f71 -#EXTINF:-1 tvg-id="PlutoTVHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e6f38792075160007d85823/colorLogoPNG.png" group-title="Cooking",Pluto TV Hell's Kitchen (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVHellsKitchen.us",Pluto TV Hell's Kitchen (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6f38792075160007d85823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHER.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e4bf0db50560a000948ce52/colorLogoPNG.png" group-title="",Pluto TV HER (720p) +#EXTINF:-1 tvg-id="PlutoTVHER.us",Pluto TV HER (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e4bf0db50560a000948ce52/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b87428fe37d8cadba44/colorLogoPNG.png" group-title="Religious",Pluto TV Hillsong Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us",Pluto TV Hillsong Channel (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b87428fe37d8cadba44&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=898&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b87428fe37d8cadba44/colorLogoPNG.png" group-title="Religious",Pluto TV Hillsong Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us",Pluto TV Hillsong Channel (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHistoria.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de5758e1a30dc00094fcd6c/colorLogoPNG.png" group-title="",Pluto TV Historia (720p) +#EXTINF:-1 tvg-id="PlutoTVHistoria.us",Pluto TV Historia (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de5758e1a30dc00094fcd6c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHistoriasdeUltratumba.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d3696d938c900072679fd/colorLogoPNG.png" group-title="",Pluto TV Historias de Ultratumba (720p) +#EXTINF:-1 tvg-id="PlutoTVHistoriasdeUltratumba.us",Pluto TV Historias de Ultratumba (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3696d938c900072679fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d35dfa5c02e717a234f86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=651&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767b1c126c65d0a307355f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=52e8f9a9-0583-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af1803e7983b391d73b13/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d35dfa5c02e717a234f86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=651&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORYGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVHISTORYGermany.us",Pluto TV HISTORY (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b1c126c65d0a307355f&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=302&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORYPlus.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY+ (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVHISTORYPlus.us",Pluto TV HISTORY+ (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6941b95267e225e59c0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b6941b95267e225e59c0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4637a2ad-1dd6-49d1-a8cc-435684c4a7ea&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHogar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6ab8056beb000091fc6b6/colorLogoPNG.png" group-title="",Pluto TV Hogar (360p) +#EXTINF:-1 tvg-id="PlutoTVHogar.us",Pluto TV Hogar (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ab8056beb000091fc6b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5eb96303f5bb020008e7e44f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8044788b-0583-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04c9eedc89300090d2884/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHomesUnderHammer.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2e9d8002db3c3e0b1c72/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Homes Under Hammer (720p) +#EXTINF:-1 tvg-id="PlutoTVHomesUnderHammer.us",Pluto TV Homes Under Hammer (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2e9d8002db3c3e0b1c72/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (684p) +#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=569546031a619b8f07ce6e25&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=75&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (684p) +#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (684p) https://stitcher.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceLat=38.5783&deviceLon=-90.6666&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012&userId= -#EXTINF:-1 tvg-id="PlutoTVHSN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f8a02476b72230007e62b7d/colorLogoPNG.png" group-title="",Pluto TV HSN (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHSN.us",Pluto TV HSN (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8a02476b72230007e62b7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHumor.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e8397936791b30007ebb5a7/colorLogoPNG.png" group-title="",Pluto TV Humor (720p) +#EXTINF:-1 tvg-id="PlutoTVHumor.us",Pluto TV Humor (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8397936791b30007ebb5a7/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHunter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c99f5810c95814ff92512f9/colorLogoPNG.png" group-title="Outdoor",Pluto TV Hunter (720p) +#EXTINF:-1 tvg-id="PlutoTVHunter.us",Pluto TV Hunter (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c99f5810c95814ff92512f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c53d6ac-a6d2-4c2c-9403-6101f770b205&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarlyNickGermany.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly Nick (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTViCarlyNickGermany.us",Pluto TV iCarly Nick (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=406&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly+ (720p) +#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us",Pluto TV iCarly+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed9ba24f6a00074a9b91/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a4570-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0432d921-f53e-4dfe-8afd-2d0b3fb750f3 -#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecc7aa44d9c00081fca29/colorLogoPNG.png" group-title="",Pluto TV iCarly+ (720p) +#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us",Pluto TV iCarly+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2cb9f5b291000773807a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2cb9f5b291000773807a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c128fa6-7ec2-4a50-a81b-37f9e8c1e48f&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40f42ba7f7f5ea9518fe1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aeca4ad7-0583-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3639dd01112605397333a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5f613286e48904fb2677&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=805&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bc207ef2767e1846e5a0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac118dd7e6000077e31af/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d982e738977e2c3109a6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59b722526996084038c01e1b/colorLogoPNG.png" group-title="Sports",Pluto TV IMPACT Wrestling (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59b722526996084038c01e1b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=734&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59b722526996084038c01e1b/colorLogoPNG.png" group-title="Sports",Pluto TV IMPACT Wrestling (480p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us",Pluto TV IMPACT Wrestling (480p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us",Pluto TV IMPACT Wrestling (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59b722526996084038c01e1b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=734&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40e59246a395e9758923e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aa724654-057a-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60cc807324d60a0007708dc8/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60cc807324d60a0007708dc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c542e03044f5604b11cf808/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (720p) +#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (720p) +#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInsideEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVInsideEngland.us",Pluto TV Inside (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767857f65029ce2385b217&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=302&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInsideGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVInsideGermany.us",Pluto TV Inside (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b4889bca2ce7b73ef2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b4889bca2ce7b73ef2e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=303&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc2d1ce10f0b0009e6cf9e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=efbfa162-0713-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765786aad587cf4d0e2bf6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde27ffae9520009c0c75a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b8f4f1ca3f0629f4bf1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=936&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde27ffae9520009c0c75a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestigacao.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f32cf37c9ff2b00082adbc8/colorLogoPNG.png" group-title="Series",Pluto TV Investigação (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestigacao.us",Pluto TV Investigação (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66928133461100077dfd73/colorLogoPNG.png" group-title="Classic",Pluto TV Johnny Carson TV (720p) +#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us",Pluto TV Johnny Carson TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e66928133461100077dfd73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=514&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66928133461100077dfd73/colorLogoPNG.png" group-title="Classic",Pluto TV Johnny Carson TV (720p) +#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us",Pluto TV Johnny Carson TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9decb953e157000752321c/colorLogoPNG.png" group-title="Series",Pluto TV Judge nosey (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us",Pluto TV Judge nosey (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9decb953e157000752321c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=160&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9decb953e157000752321c/colorLogoPNG.png" group-title="Series",Pluto TV Judge nosey (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us",Pluto TV Judge nosey (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (360p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa9bcd8160700076d45d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2ac4bc6c500094ab45b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKenanyKel.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fcea93ffcf94500071c4b2f/colorLogoPNG.png" group-title="Comedy",Pluto TV Kenan y Kel (720p) +#EXTINF:-1 tvg-id="PlutoTVKenanyKel.us",Pluto TV Kenan y Kel (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fcea93ffcf94500071c4b2f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5af09e645126c2157123f9eb/colorLogoPNG.png" group-title="Comedy",Pluto TV Kevin Hart LOL (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5af09e645126c2157123f9eb/colorLogoPNG.png" group-title="Comedy",Pluto TV Kevin Hart LOL (480p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us",Pluto TV Kevin Hart LOL (480p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5af09e645126c2157123f9eb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=462&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us",Pluto TV Kevin Hart LOL (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b648e738977e2c312131&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=30292edb-0714-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=51c75f7bb6f26ba1cd00002f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=989&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d54be738977e2c310940/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dae8ce788b0009eaf77b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsSpain.us",Pluto TV Kids (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aab1d29b39600073e243f&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=910&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (360p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ad56edc89300090d2ebb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=976&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ad56edc89300090d2ebb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=976&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b625c1ffbc0007e60c37/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Collection (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b625c1ffbc0007e60c37/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Collection (480p) +#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us",Pluto TV Kids Collection (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsHalloween.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abeb21044ee0007f19d33/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Halloween (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us",Pluto TV Kids Collection (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsHalloween.us",Pluto TV Kids Halloween (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abeb21044ee0007f19d33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us",Pluto TV Kids Séries (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us",Pluto TV Kids Séries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSeriesPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries+ (720p) +#EXTINF:-1 tvg-id="PlutoTVKidsSeriesPlus.us",Pluto TV Kids Séries+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ebe299d30c0007b1f12a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89d040-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=8f06f039-4f3e-499b-a415-5cf7148a64d7 -#EXTINF:-1 tvg-id="PlutoTVLaChicaInvisible.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abe3ffcd659000770d88d/colorLogoPNG.png" group-title="Series",Pluto TV La Chica Invisible (720p) +#EXTINF:-1 tvg-id="PlutoTVLaChicaInvisible.us",Pluto TV La Chica Invisible (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abe3ffcd659000770d88d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/12082020/TVLand_190x190circle.png?raw=true" group-title="",Pluto TV Land Sitcoms [Offline] +#EXTINF:-1 tvg-id="PlutoTVLandSitcoms.us",Pluto TV Land Sitcoms [Offline] http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/997452/playlist.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appName=samsungmobiletvplus&appVersion=unknown&architecture=&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsungmobiletvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&includeExtendedEvents=&paln=&serverSideAds=true&sid=SAMSUNG-TVPLUS-fcaa053c-0ece-49c6-ae1f-c3e42a7faf17&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLasPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f9996533c9de3000759ccb5/colorLogoPNG.png" group-title="Series",Pluto TV Las Pistas de Blue (360p) +#EXTINF:-1 tvg-id="PlutoTVLasPistasdeBlue.us",Pluto TV Las Pistas de Blue (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9996533c9de3000759ccb5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLasreglasdeljuego.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acb4eebe0f0000767b40f/colorLogoPNG.png" group-title="Series",Pluto TV Las reglas del juego (720p) +#EXTINF:-1 tvg-id="PlutoTVLasreglasdeljuego.us",Pluto TV Las reglas del juego (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acb4eebe0f0000767b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLatinAngels.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5df41355939756000921d15b/colorLogoPNG.png" group-title="Series",Pluto TV Latin Angels (720p) +#EXTINF:-1 tvg-id="PlutoTVLatinAngels.us",Pluto TV Latin Angels (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df41355939756000921d15b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLemieletlesabeilles.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549a8d8f1b53000768bc52/solidLogoPNG.png" group-title="Series",Pluto TV Le miel et les abeilles (720p) +#EXTINF:-1 tvg-id="PlutoTVLemieletlesabeilles.us",Pluto TV Le miel et les abeilles (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549a8d8f1b53000768bc52/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9dcb446c-ad5a-4171-a84f-d144607d7b33 -#EXTINF:-1 tvg-id="PlutoTVLemiracledelamour.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549c238c3f21000753d3e0/solidLogoPNG.png" group-title="Series",Pluto TV Le miracle de l'amour (720p) +#EXTINF:-1 tvg-id="PlutoTVLemiracledelamour.us",Pluto TV Le miracle de l'amour (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549c238c3f21000753d3e0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=af1cb1d2-a877-4020-81af-3f89e475eb94 -#EXTINF:-1 tvg-id="PlutoTVLesCordier.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed80fa09f120007c8daa5/colorLogoPNG.png" group-title="Series",Pluto TV Les Cordier (720p) +#EXTINF:-1 tvg-id="PlutoTVLesCordier.us",Pluto TV Les Cordier (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLesCordier.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed80fa09f120007c8daa5/colorLogoPNG.png" group-title="Series",Pluto TV Les Cordier (720p) +#EXTINF:-1 tvg-id="PlutoTVLesCordier.us",Pluto TV Les Cordier (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLesfillesdacote.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549d97cd7b090007c73314/solidLogoPNG.png" group-title="Series",Pluto TV Les filles d'à côté (720p) +#EXTINF:-1 tvg-id="PlutoTVLesfillesdacote.us",Pluto TV Les filles d'à côté (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549d97cd7b090007c73314/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba500-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0e7a9749-ec3d-4fea-9861-01e153b22e40 -#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edb6df1ebb800072edf10/colorLogoPNG.png" group-title="Series",Pluto TV Les Nouveaux Detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us",Pluto TV Les Nouveaux Detectives (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edb6df1ebb800072edf10/colorLogoPNG.png" group-title="Series",Pluto TV Les Nouveaux Detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us",Pluto TV Les Nouveaux Detectives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLittleBabyBum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb301b7395671000780d100/colorLogoPNG.png" group-title="Series",Pluto TV Little Baby Bum (720p) +#EXTINF:-1 tvg-id="PlutoTVLittleBabyBum.us",Pluto TV Little Baby Bum (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb301b7395671000780d100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5eb301b7395671000780d100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=995&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLiveinConcert.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6080411af03506000759916e/solidLogoPNG.png" group-title="Music",Pluto TV Live in Concert (720p) +#EXTINF:-1 tvg-id="PlutoTVLiveinConcert.us",Pluto TV Live in Concert (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6080411af03506000759916e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb571-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9c6d294f-660b-47ef-bc20-1961faf21c6a -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (720p) +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (720p) http://stitcher.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (US) (720p) +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (US) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5873fc21cad696fb37aa9054&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=855&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc1cb279c91420009db261d/colorLogoPNG.png" group-title="Series",Pluto TV Lively Place (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc1cb279c91420009db261d/colorLogoPNG.png" group-title="Series",Pluto TV Lively Place (240p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us",Pluto TV Lively Place (240p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc1cb279c91420009db261d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=615&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us",Pluto TV Lively Place (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8beeb39b5d5d5f8c672530&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=276&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db04b360fa2560009deb3de&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=84dcf52a-0584-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600acaff5f2d6e000745effb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8beeb39b5d5d5f8c672530&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=276&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLogo.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce5a8954311f992edbe1da2/colorLogoPNG.png" group-title="",Pluto TV Logo (720p) +#EXTINF:-1 tvg-id="PlutoTVLogo.us",Pluto TV Logo (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce5a8954311f992edbe1da2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=187&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLogo.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce5a8954311f992edbe1da2/colorLogoPNG.png" group-title="",Pluto TV Logo (720p) +#EXTINF:-1 tvg-id="PlutoTVLogo.us",Pluto TV Logo (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67d41b93312100076f3fca/colorLogoPNG.png" group-title="Series",Pluto TV Los archivos del FBI (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acbed25948a0007ffbe65/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67d41b93312100076f3fca/colorLogoPNG.png" group-title="Series",Pluto TV Los archivos del FBI (432p) +#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us",Pluto TV Los archivos del FBI (432p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67d41b93312100076f3fca/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLosnuevosdetectives.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acba0d1f6340007db8843/colorLogoPNG.png" group-title="",Pluto TV Los nuevos detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us",Pluto TV Los archivos del FBI (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acbed25948a0007ffbe65/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLosnuevosdetectives.us",Pluto TV Los nuevos detectives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acba0d1f6340007db8843/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed6d569d2d4000864a976/colorLogoPNG.png" group-title="",Pluto TV Louis La Brocante (480p) +#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us",Pluto TV Louis La Brocante (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed6d569d2d4000864a976/colorLogoPNG.png" group-title="",Pluto TV Louis La Brocante (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us",Pluto TV Louis La Brocante (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoupe.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f0cb39b4ae1f80007bad585/colorLogoPNG.png" group-title="",Pluto TV Loupe (720p) +#EXTINF:-1 tvg-id="PlutoTVLoupe.us",Pluto TV Loupe (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f0cb39b4ae1f80007bad585&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=694&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoupe.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f0cb39b4ae1f80007bad585/colorLogoPNG.png" group-title="",Pluto TV Loupe (720p) +#EXTINF:-1 tvg-id="PlutoTVLoupe.us",Pluto TV Loupe (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51ddf0369acdb278dfb05e/colorLogoPNG.png" group-title="Series",Pluto TV Love & Hip Hop (720p) +#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us",Pluto TV Love & Hip Hop (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51ddf0369acdb278dfb05e/colorLogoPNG.png" group-title="Series",Pluto TV Love & Hip Hop (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us",Pluto TV Love & Hip Hop (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51ddf0369acdb278dfb05e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=283&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoveNature.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60dd6b1da79e4d0007309455/colorLogoPNG.png" group-title="Series",Pluto TV Love Nature (720p) +#EXTINF:-1 tvg-id="PlutoTVLoveNature.us",Pluto TV Love Nature (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dd6b1da79e4d0007309455/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveStories.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e181520cfa000771ce79/colorLogoPNG.png" group-title="Series",Pluto TV Love Stories (720p) +#EXTINF:-1 tvg-id="PlutoTVLoveStories.us",Pluto TV Love Stories (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e181520cfa000771ce79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=147&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoveStories.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e181520cfa000771ce79/colorLogoPNG.png" group-title="Series",Pluto TV Love Stories (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVLoveStories.us",Pluto TV Love Stories (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (720p) +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f99a772c54853000797bf18/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c01df1759ee03633e7b272c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=971&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (720p) +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f99a772c54853000797bf18/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb71a26ed8300076433f9/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aaefb96f755000733c11a/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aaefb96f755000733c11a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb71a26ed8300076433f9/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMADEInBritain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e14486590ba3e0009d912ff/colorLogoPNG.png" group-title="Series",Pluto TV MADE In Britain (720p) +#EXTINF:-1 tvg-id="PlutoTVMADEInBritain.us",Pluto TV MADE In Britain (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e14486590ba3e0009d912ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc264e0451770009ed742f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc02ece31f6050009de4b39&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ecc4d45-0714-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMasterChef.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e3ddbd27091820009f86dd9/colorLogoPNG.png" group-title="",Pluto TV MasterChef (720p) +#EXTINF:-1 tvg-id="PlutoTVMasterChef.us",Pluto TV MasterChef (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddbd27091820009f86dd9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMcLeodsDaughters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18e5df6dd1d0007cf7bad/colorLogoPNG.png" group-title="Series",Pluto TV McLeod's Daughters (720p) +#EXTINF:-1 tvg-id="PlutoTVMcLeodsDaughters.us",Pluto TV McLeod's Daughters (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18e5df6dd1d0007cf7bad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMidsomerMurders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cbf6a868a1bce4a3d52a5e9/colorLogoPNG.png" group-title="Series",Pluto TV Midsomer Murders (720p) +#EXTINF:-1 tvg-id="PlutoTVMidsomerMurders.us",Pluto TV Midsomer Murders (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cbf6a868a1bce4a3d52a5e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cbf6a868a1bce4a3d52a5e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=385&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMilitary.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb3fea0f711fd76340eebff/colorLogoPNG.png" group-title="Series",Pluto TV Military (720p) +#EXTINF:-1 tvg-id="PlutoTVMilitary.us",Pluto TV Military (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb3fea0f711fd76340eebff&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=655&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMilitary.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb3fea0f711fd76340eebff/colorLogoPNG.png" group-title="Series",Pluto TV Military (720p) +#EXTINF:-1 tvg-id="PlutoTVMilitary.us",Pluto TV Military (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (360p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d907e738977e2c31099a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b821249444e05d09cc4c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=815&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bca67ef2767e1846e5a1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (360p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d907e738977e2c31099a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinutoParaGanar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e46e64dc73db400094b5f0b/colorLogoPNG.png" group-title="Series",Pluto TV Minuto Para Ganar (720p) +#EXTINF:-1 tvg-id="PlutoTVMinutoParaGanar.us",Pluto TV Minuto Para Ganar (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46e64dc73db400094b5f0b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMissionImpossible.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f77977bd924d80007eee60c/colorLogoPNG.png" group-title="Series",Pluto TV Mission: Impossible (720p) +#EXTINF:-1 tvg-id="PlutoTVMissionImpossible.us",Pluto TV Mission: Impossible (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77977bd924d80007eee60c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMisterios.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde2f53449c50009b2b4dc/colorLogoPNG.png" group-title="Series",Pluto TV Misterios (720p) +#EXTINF:-1 tvg-id="PlutoTVMisterios.us",Pluto TV Misterios (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2f53449c50009b2b4dc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="MisteriosMedicos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f230e416b68ff00075b0139/colorLogoPNG.png" group-title="Series",Pluto TV Misterios Medicos (480p) +#EXTINF:-1 tvg-id="MisteriosMedicos.us",Pluto TV Misterios Medicos (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f230e416b68ff00075b0139/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMisteriossinResolver.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f610042272f68000867685b/colorLogoPNG.png" group-title="Series",Pluto TV Misterios sin Resolver (480p) +#EXTINF:-1 tvg-id="PlutoTVMisteriossinResolver.us",Pluto TV Misterios sin Resolver (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f610042272f68000867685b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMLB.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66968a70f34c0007d050be/colorLogoPNG.png" group-title="Sports",Pluto TV MLB (720p) +#EXTINF:-1 tvg-id="PlutoTVMLB.us",Pluto TV MLB (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66968a70f34c0007d050be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb626cfcaf83414128f439c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=712&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (480p) +#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.7.4-9a7fc53e0c1da468e3c566c3f53e98a36ca1f97b&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=9f228953-21cb-4b82-a393-dd32d047379f&deviceLat=45.4994&deviceLon=-73.5703&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=76.0.3809.132&serverSideAds=true&sid=d1634607-2892-447a-b316-17a106f905fb&userId= -#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (480p) +#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (480p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMotor.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db0510962948d000961d3c6/colorLogoPNG.png" group-title="Auto",Pluto TV Motor (720p) +#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb626cfcaf83414128f439c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=712&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMotor.us",Pluto TV Motor (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMotorEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db0510962948d000961d3c6/colorLogoPNG.png" group-title="Auto",Pluto TV Motor (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVMotorEngland.us",Pluto TV Motor (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0510962948d000961d3c6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=576&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMOVIECHANNEL.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Movies",Pluto TV MOVIE CHANNEL (684p) +#EXTINF:-1 tvg-id="PlutoTVMOVIECHANNEL.us",Pluto TV MOVIE CHANNEL (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appVersion=5.2.2-d60060c7283e0978cc63ba036956b5c1657f8eba&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=9daeec78-6a24-43e9-b800-df83d8e465a8&deviceLat=-35.1192&deviceLon=-60.5047&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=80.0.3987.149&includeExtendedEvents=false&serverSideAds=true&sid=e2177d24-366a-4c1c-b974-702fe1d6159a&userId= -#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (720p) +#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=eddfafe3-0584-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMoviesEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVMoviesEngland.us",Pluto TV Movies (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ad8d3a31b95267e225e4e09&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMoviesGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVMoviesGermany.us",Pluto TV Movies (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMoviesCH.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dc2bdfec6cdc10009975e20/colorLogoPNG.png" group-title="Movies",Pluto TV Movies CH (720p) +#EXTINF:-1 tvg-id="PlutoTVMoviesCH.us",Pluto TV Movies CH (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2bdfec6cdc10009975e20/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMoviesPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies+ (720p) +#EXTINF:-1 tvg-id="PlutoTVMoviesPlus.us",Pluto TV Movies+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0a1f73654db655a9274428/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d0a1f73654db655a9274428&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=372611e5-6b4b-4a3f-9491-368034dfa39e&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMoviesPlusCH.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies+ (CH) (720p) +#EXTINF:-1 tvg-id="",Pluto TV Movies+ (CH) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c8a6bc64dc7286c6afaf4ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c8a6bc64dc7286c6afaf4ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f747754f-ee3e-4968-9e8e-779da031bce9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=545943f1c9f133a519bbac92&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=488&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d44cfd87eb3a2717afc5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (240p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca672f515a62078d2ec0ad2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=178&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fab088b3279760007d4e4fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf325764025859afdd6c4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1b711cc8-0587-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcebe53d352330009e56f5b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcebe53d352330009e56f5b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b3be0889-389b-4ef9-a876-b3d589aa6cd9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13b6dd7ec3510009e032d0/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fab088b3279760007d4e4fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (240p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca672f515a62078d2ec0ad2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=178&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVGermany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVGermany.us",Pluto TV MTV (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5caf325764025859afdd6c4d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVAnimaciones.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8ce2e426140007c78fd1/colorLogoPNG.png" group-title="Series",Pluto TV MTV Animaciones (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVAnimaciones.us",Pluto TV MTV Animaciones (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8ce2e426140007c78fd1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVAreyoutheOne.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f6108d8cc331900075e98e4/colorLogoPNG.png" group-title="Series",Pluto TV MTV Are you the One? (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVAreyoutheOne.us",Pluto TV MTV Are you the One? (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Biggest Pop (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS02/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Series",Pluto TV MTV Biggest Pop (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Biggest Pop (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509fb7809fd000949e39b/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Series",Pluto TV MTV Biggest Pop (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fd1a252d35decbc4080c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=870&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150a3d73fd3f00094f722f/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS03/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150a3d73fd3f00094f722f/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d3609cd6a6c78d7672f2a81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=868&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us",Pluto TV MTV Catfish (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a697d5f34a000934cd13&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f1438745-0586-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us",Pluto TV MTV Catfish (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Catfish (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishGermany.us",Pluto TV MTV Catfish (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db6a697d5f34a000934cd13&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishSpain.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Catfish (Spain) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishSpain.us",Pluto TV MTV Catfish (Spain) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab3c7778230000735cf41&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=305&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish+ (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us",Pluto TV MTV Catfish+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed0bb61f1200072ca4cd/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e61-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0698157f-70d9-4890-978e-e648d753b321 -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish+ (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us",Pluto TV MTV Catfish+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b855972c36600076b7ddd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b855972c36600076b7ddd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4433ef8f-a215-466e-a65b-405518cd6e6c&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91b7ea86ee60009d89e75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassicsPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Music",Pluto TV MTV Classics+ (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVClassicsPlus.us",Pluto TV MTV Classics+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ec5500d4c70007341c7c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e60-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=de18fdd4-d30a-4263-8ecc-df902150744d -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ea815a515d149000748ee9b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fb612cc2-0587-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCribsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Cribs (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCribsGermany.us",Pluto TV MTV Cribs (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea815a515d149000748ee9b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlutoTVSpain.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Cribs (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlutoTVSpain.us",Pluto TV MTV Cribs (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab9c6d8f1300007f54e30&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=315&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs+ (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlus.us",Pluto TV MTV Cribs+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb54eaa5714d000744b6a0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5efb54eaa5714d000744b6a0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f664f477-078c-4957-bc9a-51f90e3d9ce7&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6899a37b88b269472ea4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=330&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf330ea5068259a32320fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c740197-0587-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600169ec77e6f70008fa9cf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6899a37b88b269472ea4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=330&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVEmbarazadaalos16.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f98537a5a4341000733aefe/colorLogoPNG.png" group-title="Series",Pluto TV MTV Embarazada a los 16 (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVEmbarazadaalos16.us",Pluto TV MTV Embarazada a los 16 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98537a5a4341000733aefe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVEnVivo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6130d6f3f3f7bb0007dbd092/colorLogoPNG.png" group-title="Series",Pluto TV MTV En Vivo (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVEnVivo.us",Pluto TV MTV En Vivo (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d6f3f3f7bb0007dbd092/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96d351652631e36d4331f/colorLogoPNG.png" group-title="Music",Pluto TV MTV Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us",Pluto TV MTV Latino (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96d351652631e36d4331f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=965&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96d351652631e36d4331f/colorLogoPNG.png" group-title="Music",Pluto TV MTV Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us",Pluto TV MTV Latino (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVLoveMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/600ae79fa46e17000794e84c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Love Music (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVLoveMusic.us",Pluto TV MTV Love Music (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ae79fa46e17000794e84c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVMistleYO.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Mistle YO! (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVMistleYO.us",Pluto TV MTV Mistle YO! (720p) http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS08/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVMusicMadeinSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60a26a056d55b30007918d5a/colorLogoPNG.png" group-title="Music",Pluto TV MTV Music Made in Spain (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVMusicMadeinSpain.us",Pluto TV MTV Music Made in Spain (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60a26a056d55b30007918d5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVOriginals.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aadf373bed3000794d1d7/colorLogoPNG.png" group-title="Music",Pluto TV MTV Originals (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVOriginals.us",Pluto TV MTV Originals (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVOriginalsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aadf373bed3000794d1d7/colorLogoPNG.png" group-title="Series",Pluto TV MTV Originals (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVOriginalsSpain.us",Pluto TV MTV Originals (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aadf373bed3000794d1d7&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=300&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVPranks.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e98a911c881310007d7aae2/colorLogoPNG.png" group-title="Series",Pluto TV MTV Pranks (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVPranks.us",Pluto TV MTV Pranks (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98a911c881310007d7aae2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVRealities.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6130d8dc943001000708548d/colorLogoPNG.png" group-title="Series",Pluto TV MTV Realities (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVRealities.us",Pluto TV MTV Realities (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d8dc943001000708548d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVRidiculousness.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f9847fd513250000728a9a5/solidLogoPNG.png" group-title="Series",Pluto TV MTV Ridiculousness (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVRidiculousness.us",Pluto TV MTV Ridiculousness (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9847fd513250000728a9a5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fdb8ca91eedee1633117/colorLogoPNG.png" group-title="Series",Pluto TV MTV Spankin' New (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us",Pluto TV MTV Spankin' New (720p) http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS07/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fdb8ca91eedee1633117/colorLogoPNG.png" group-title="Series",Pluto TV MTV Spankin' New (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us",Pluto TV MTV Spankin' New (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fdb8ca91eedee1633117/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fdb8ca91eedee1633117&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=869&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTattooADos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/611b87946b7f420007c22361/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Tattoo A Dos (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVTattooADos.us",Pluto TV MTV Tattoo A Dos (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/611b87946b7f420007c22361/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cffcf5686dfe15595fb3f56/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Teen Mom (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us",Pluto TV MTV Teen Mom (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cffcf5686dfe15595fb3f56&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ca1fec5-0587-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cffcf5686dfe15595fb3f56/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Teen Mom (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us",Pluto TV MTV Teen Mom (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e86bf0bac55fe7f75736/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Hills (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us",Pluto TV MTV The Hills (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e86bf0bac55fe7f75736&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a934c097-0587-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e86bf0bac55fe7f75736/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Hills (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us",Pluto TV MTV The Hills (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5caf32c2a5068259a32320fc/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Shores (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us",Pluto TV MTV The Shores (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf32c2a5068259a32320fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d49824ea-0587-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5caf32c2a5068259a32320fc/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Shores (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us",Pluto TV MTV The Shores (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVUnplugged.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f98471110cca20007d39f76/colorLogoPNG.png" group-title="Series",Pluto TV MTV Unplugged (720p) +#EXTINF:-1 tvg-id="PlutoTVMTVUnplugged.us",Pluto TV MTV Unplugged (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98471110cca20007d39f76/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d103f031154a4172d262b/colorLogoPNG.png" group-title="Series",Pluto TV Mundo (720p) +#EXTINF:-1 tvg-id="PlutoTVMundo.us",Pluto TV Mundo (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d103f031154a4172d262b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=959&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d103f031154a4172d262b/colorLogoPNG.png" group-title="Series",Pluto TV Mundo (720p) +#EXTINF:-1 tvg-id="PlutoTVMundo.us",Pluto TV Mundo (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1acdfda84c970007e750b5/colorLogoPNG.png" group-title="Series",Pluto TV Mundo Real (720p) +#EXTINF:-1 tvg-id="PlutoTVMundoReal.us",Pluto TV Mundo Real (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundoRealSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1acdfda84c970007e750b5/colorLogoPNG.png" group-title="",Pluto TV Mundo Real (Spain) (720p) +#EXTINF:-1 tvg-id="PlutoTVMundoRealSpain.us",Pluto TV Mundo Real (Spain) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdfda84c970007e750b5&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=405&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMutantX.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8dc008d4422e00072d2405/colorLogoPNG.png" group-title="Series",Pluto TV Mutant X (720p) +#EXTINF:-1 tvg-id="PlutoTVMutantX.us",Pluto TV Mutant X (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc008d4422e00072d2405/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMutanteX.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acc91cc9e1b000711ff21/colorLogoPNG.png" group-title="Series",Pluto TV Mutante X (720p) +#EXTINF:-1 tvg-id="PlutoTVMutanteX.us",Pluto TV Mutante X (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc91cc9e1b000711ff21/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5Crime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d2c571faeb3e2738ae27933/colorLogoPNG.png" group-title="Series",Pluto TV My5 Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVMy5Crime.us",Pluto TV My5 Crime (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Documentary",Pluto TV My5 Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us",Pluto TV My5 Documentaries (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf901280e3550009139c86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=475&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Documentary",Pluto TV My5 Documentaries (720p) +#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us",Pluto TV My5 Documentaries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5GPs.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV My5 GP's (720p) +#EXTINF:-1 tvg-id="PlutoTVMy5GPs.us",Pluto TV My5 GP's (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5GPsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV My5 GP's (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVMy5GPsEngland.us",Pluto TV My5 GP's (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c57ee4f9ddf73da8a0ba5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMythbusters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd833b41843b56328bac189/colorLogoPNG.png" group-title="Series",Pluto TV Mythbusters (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVMythbusters.us",Pluto TV Mythbusters (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd833b41843b56328bac189/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVN24Doku.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/60080e8a4bf36000076a81b1/colorLogoPNG.png" group-title="Documentary",Pluto TV N24 Doku (720p) +#EXTINF:-1 tvg-id="PlutoTVN24Doku.us",Pluto TV N24 Doku (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60080e8a4bf36000076a81b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNarcos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f7274806621ff00072651ff/colorLogoPNG.png" group-title="Series",Pluto TV Narcos (684p) +#EXTINF:-1 tvg-id="PlutoTVNarcos.us",Pluto TV Narcos (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7274806621ff00072651ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) +#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee92e72fb286e0007285fec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5da0c85bd2c9c10009370984&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=836&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) +#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) +#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee92e72fb286e0007285fec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNashville.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/601a026c464ef900073130f0/featuredImage.jpg" group-title="Outdoor",Pluto TV Nashville (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVNashville.us",Pluto TV Nashville (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a026c464ef900073130f0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d10ce06a9665fe54bf74a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=962&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd85eac039bba0009e86d1d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1c3f9851dd5632e2c91b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1e26d24e-0585-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db050444f3c52000984c72a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0c2f3739f6b900075f366c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bd9f249444e05d09cc4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=692&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNatureza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1213ba0ecebc00070e170f/colorLogoPNG.png" group-title="",Pluto TV Natureza (720p) +#EXTINF:-1 tvg-id="PlutoTVNatureza.us",Pluto TV Natureza (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5df97894467dfa00091c873c/colorLogoPNG.png" group-title="News",Pluto TV NBC News NOW (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us",Pluto TV NBC News NOW (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5df97894467dfa00091c873c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=213&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5df97894467dfa00091c873c/colorLogoPNG.png" group-title="News",Pluto TV NBC News NOW (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us",Pluto TV NBC News NOW (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5268abcd0ce20a8472000114/colorLogoPNG.png" group-title="News",Pluto TV News (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5268abcd0ce20a8472000114/colorLogoPNG.png" group-title="News",Pluto TV News (480p) +#EXTINF:-1 tvg-id="PlutoTVNews.us",Pluto TV News (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5268abcd0ce20a8472000114&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ced7d5df64be98e07ed47b6/colorLogoPNG.png" group-title="Sports",Pluto TV NFL Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVNews.us",Pluto TV News (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us",Pluto TV NFL Channel (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ced7d5df64be98e07ed47b6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=708&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ced7d5df64be98e07ed47b6/colorLogoPNG.png" group-title="Sports",Pluto TV NFL Channel (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us",Pluto TV NFL Channel (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede448d3d50590007a4419e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fbbb3638-0714-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2b57d6c60800074cb305/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2b57d6c60800074cb305&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=19a8ba6e-9713-4df0-83d9-93dd72c984f0&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNICK.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +#EXTINF:-1 tvg-id="",Pluto TV Nick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) https://siloh.pluto.tv/lilo/production/Nick/01/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca673e0d0bd6c2689c94ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=977&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&coppa=1&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= -#EXTINF:-1 tvg-id="PlutoTVNickGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (Germany) (720p) +#EXTINF:-1 tvg-id="",Pluto TV Nick (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ede448d3d50590007a4419e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=261&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7c348520b40009c347e2/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Clásico (720p) +#EXTINF:-1 tvg-id="PlutoTVNickClasico.us",Pluto TV Nick Clásico (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7c348520b40009c347e2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNickClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7c348520b40009c347e2/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Clásico (720p) +#EXTINF:-1 tvg-id="PlutoTVNickClasico.us",Pluto TV Nick Clásico (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f4796368174910007756454/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Emma einfach magisch! (720p) +#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us",Pluto TV Nick Emma einfach magisch! (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f4796368174910007756454&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=db62fa8b-15bd-11eb-bde1-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f4796368174910007756454/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Emma einfach magisch! (720p) +#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us",Pluto TV Nick Emma einfach magisch! (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) +#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45451dce190007ef9ff2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d1d4cf70-0714-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) +#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) [Not 24/7] http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6748a37b88b269472dad9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=978&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us" tvg-country="US" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121460b73ac6000719fbaf/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7cb2cbb9010009b4fe32/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (360p) +#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us",Pluto TV Nick Jr. Club (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7cb2cbb9010009b4fe32/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJuniorClubBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ddd7cb2cbb9010009b4fe32/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (Brazil) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us",Pluto TV Nick Jr. Club (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="",Pluto TV Nick Jr. Club (Brazil) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f121460b73ac6000719fbaf&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=706&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d0ec7b0f7015fbe0a3bf7/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us",Pluto TV Nick Jr. Latino (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0ec7b0f7015fbe0a3bf7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=998&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d0ec7b0f7015fbe0a3bf7/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Latino (720p) +#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us",Pluto TV Nick Jr. Latino (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Latino (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNickLatino.us",Pluto TV Nick Latino (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d08395f39465da6fb3ec4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=997&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickRewind.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Rewind (720p) +#EXTINF:-1 tvg-id="PlutoTVNickRewind.us",Pluto TV Nick Rewind (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1f8c3bd8-0715-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickRewind.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Rewind (720p) +#EXTINF:-1 tvg-id="PlutoTVNickRewind.us",Pluto TV Nick Rewind (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickRewindGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="",Pluto TV Nick Rewind (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVNickRewindGermany.us",Pluto TV Nick Rewind (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=262&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnickrewindPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV nickrewind+ (720p) +#EXTINF:-1 tvg-id="PlutoTVnickrewindPlus.us",Pluto TV nickrewind+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2bcd0fadc30007b4863b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2bcd0fadc30007b4863b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=26a921c8-2009-4fa8-9d4f-3edbe18a97f7&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aec96ec5126c2157123c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=159&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2ba1a9c91420009db4858/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0cc2efd2700090b7ff4/colorLogoPNG.png" group-title="",Pluto TV Novelas (360p) +#EXTINF:-1 tvg-id="PlutoTVNovelas.us",Pluto TV Novelas (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0cc2efd2700090b7ff4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us",Pluto TV Novelas Drama (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dbf4a838b60007ffbba1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=942&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Drama (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us",Pluto TV Novelas Drama (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelasDramas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Series",Pluto TV Novelas Dramas (720p) +#EXTINF:-1 tvg-id="PlutoTVNovelasDramas.us",Pluto TV Novelas Dramas (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Series",Pluto TV Novelas Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84db2db3851800077c871e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=941&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Romance (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84db2db3851800077c871e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=941&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dc59026b9b000766f9a2/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Thriller (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dc59026b9b000766f9a2/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Thriller (360p) +#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us",Pluto TV Novelas Thriller (360p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dc59026b9b000766f9a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=943&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e6690befbdf780007f78158/colorLogoPNG.png" group-title="",Pluto TV Nuestra Vision (720p) +#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us",Pluto TV Novelas Thriller (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us",Pluto TV Nuestra Vision (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e6690befbdf780007f78158&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=920&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e6690befbdf780007f78158/colorLogoPNG.png" group-title="",Pluto TV Nuestra Vision (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us",Pluto TV Nuestra Vision (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVOhMyPet.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f2acdab16f5b3000721ae2c/colorLogoPNG.png" group-title="Series",Pluto TV Oh My Pet (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVOhMyPet.us",Pluto TV Oh My Pet (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2acdab16f5b3000721ae2c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVOnePiece.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7790b3ed0c88000720b241/colorLogoPNG.png" group-title="",Pluto TV One Piece (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVOnePiece.us",Pluto TV One Piece (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7790b3ed0c88000720b241/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f84ce2ac265700008d48dcf/colorLogoPNG.png" group-title="Sports",Pluto TV Pac-12 Insider (720p) [Offline] +#EXTINF:-1 tvg-id="Pac12Insider.us",Pluto TV Pac-12 Insider (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f84ce2ac265700008d48dcf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb0cae7a461406ffe3f5213/colorLogoPNG.png" group-title="Movies",Pluto TV Paramount Movie Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us",Pluto TV Paramount Movie Channel (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb0cae7a461406ffe3f5213&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=100&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb0cae7a461406ffe3f5213/colorLogoPNG.png" group-title="Movies",Pluto TV Paramount Movie Channel (720p) +#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us",Pluto TV Paramount Movie Channel (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParamountPlusPicks.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ff8c708653d080007361b14/featuredImage.jpg" group-title="Movies",Pluto TV Paramount+ Picks (720p) +#EXTINF:-1 tvg-id="PlutoTVParamountPlusPicks.us",Pluto TV Paramount+ Picks (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ff8c708653d080007361b14/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5adf96e3e738977e2c31cb04&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=669&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f98487036af340008da1e37&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=77386fa6-3401-11eb-8335-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/612ce5214bb5790007ad3016/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/612ce5214bb5790007ad3016/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5adf96e3e738977e2c31cb04&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=669&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormalEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVParanormalEngland.us",Pluto TV Paranormal (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4af2ffa9506ab29cf38c38&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=216&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPeleas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e98b0447665f200078caded/colorLogoPNG.png" group-title="",Pluto TV Peleas (720p) +#EXTINF:-1 tvg-id="PlutoTVPeleas.us",Pluto TV Peleas (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98b0447665f200078caded/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac65911406400078b8993/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95c119dc712000741fa35/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95d63b270fc0007c465e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1780e94100007f94b3f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",Pluto TV People TV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPeopleTV.us",Pluto TV People TV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c2c3ae40e64939daad8b76/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c2c3ae40e64939daad8b76&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=192&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5de94dacb394a300099fa22a/colorLogoPNG.png" group-title="Sports",Pluto TV PGA TOUR (720p) +#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us",Pluto TV PGA TOUR (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5de94dacb394a300099fa22a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=713&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5de94dacb394a300099fa22a/colorLogoPNG.png" group-title="Sports",Pluto TV PGA TOUR (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us",Pluto TV PGA TOUR (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aa82c150b2500077733d7/colorLogoPNG.png" group-title="",Pluto TV Pistas de Blue (720p) +#EXTINF:-1 tvg-id="PlutoTVPistasdeBlue.us",Pluto TV Pistas de Blue (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa82c150b2500077733d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlanetaJuniorTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/609501978c069d00074e0dd2/colorLogoPNG.png" group-title="",Pluto TV Planeta Junior TV (720p) +#EXTINF:-1 tvg-id="PlutoTVPlanetaJuniorTV.us",Pluto TV Planeta Junior TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609501978c069d00074e0dd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed5fba4ffb8000764ea01/colorLogoPNG.png" group-title="",Pluto TV Plus Belle La Vie (720p) +#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us",Pluto TV Plus Belle La Vie (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed5fba4ffb8000764ea01/colorLogoPNG.png" group-title="",Pluto TV Plus Belle La Vie (720p) +#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us",Pluto TV Plus Belle La Vie (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlusBellelaViePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Series",Pluto TV Plus Belle la Vie+ (720p) +#EXTINF:-1 tvg-id="PlutoTVPlusBellelaViePlus.us",Pluto TV Plus Belle la Vie+ (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fff211667854f00079a9b5b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8abaa0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=353eca77-9a84-4a7e-a1d5-97ac79861272 -#EXTINF:-1 tvg-id="PlutoTVPluto80sRewind.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Music",Pluto TV Pluto 80s Rewind (684p) +#EXTINF:-1 tvg-id="PlutoTVPluto80sRewind.us",Pluto TV Pluto 80s Rewind (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca525b650be2571e3943c63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=95&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Pluto TV Pluto Action Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVPlutoActionSports.us",Pluto TV Pluto Action Sports (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1be871843b56328bc3ef1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8a1b4593-8596-4ff8-8720-2c3271ea36ca&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAdventureTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Outdoor",Pluto TV Pluto Adventure TV (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVPlutoAdventureTV.us",Pluto TV Pluto Adventure TV (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938876b78d8d9c074c3c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=675&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAfterSchoolCartoons.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Pluto TV Pluto After School Cartoons (720p) +#EXTINF:-1 tvg-id="PlutoTVPlutoAfterSchoolCartoons.us",Pluto TV Pluto After School Cartoons (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56171fafada51f8004c4b40f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=990&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAllRealitybyWEtv.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Pluto All Reality by WE tv (720p) +#EXTINF:-1 tvg-id="PlutoTVPlutoAllRealitybyWEtv.us",Pluto TV Pluto All Reality by WE tv (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82530945600e0007ca076c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=310&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae0a40e8ee0d000975e99b/colorLogoPNG.png" group-title="",Pluto TV pocket.watch (720p) +#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us",Pluto TV pocket.watch (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0a40e8ee0d000975e99b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=993&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae0a40e8ee0d000975e99b/colorLogoPNG.png" group-title="",Pluto TV pocket.watch (720p) +#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us",Pluto TV pocket.watch (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPoliceWomen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e79c2f280389000077242a8/colorLogoPNG.png" group-title="",Pluto TV Police Women (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPoliceWomen.us",Pluto TV Police Women (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e79c2f280389000077242a8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPortadosFundos.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f36f2346ede750007332d11/colorLogoPNG.png" group-title="",Pluto TV Porta dos Fundos (720p) +#EXTINF:-1 tvg-id="PlutoTVPortadosFundos.us",Pluto TV Porta dos Fundos (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b36abcddfb1f0729a3a7dab/colorLogoPNG.png" group-title="",Pluto TV Privacy Policy (720p) +#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us",Pluto TV Privacy Policy (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b36abcddfb1f0729a3a7dab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=899&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b36abcddfb1f0729a3a7dab/colorLogoPNG.png" group-title="",Pluto TV Privacy Policy (720p) +#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us",Pluto TV Privacy Policy (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVProWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac431fc1ffbc0007e6b6a7/colorLogoPNG.png" group-title="Sports",Pluto TV Pro Wrestling (720p) +#EXTINF:-1 tvg-id="PlutoTVProWrestling.us",Pluto TV Pro Wrestling (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac431fc1ffbc0007e6b6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPursuitUP.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Pursuit UP (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVPursuitUP.us",Pluto TV Pursuit UP (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486bed428fe37d8cadba45/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486bed428fe37d8cadba45&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=756&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVQelloConcerts.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60f16986acb81b0007c384ac/colorLogoPNG.png" group-title="Sports",Pluto TV Qello Concerts (720p) +#EXTINF:-1 tvg-id="PlutoTVQelloConcerts.us",Pluto TV Qello Concerts (720p) https://siloh.pluto.tv/lilo/production/Qello/ES/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVQwestTVJazzBeyond.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60db37b8b919720007c07fa4/colorLogoPNG.png" group-title="Sports",Pluto TV Qwest TV Jazz & Beyond (720p) +#EXTINF:-1 tvg-id="PlutoTVQwestTVJazzBeyond.us",Pluto TV Qwest TV Jazz & Beyond (720p) https://siloh.pluto.tv/lilo/production/QwestJazz/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVRealLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1abdceddf6a20007f8ccd2/colorLogoPNG.png" group-title="Series",Pluto TV Real Life (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVRealLife.us",Pluto TV Real Life (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abdceddf6a20007f8ccd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b4d71754e6a4298d086e/colorLogoPNG.png" group-title="Series",Pluto TV Realities ESP (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us",Pluto TV Realities ESP (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b4d71754e6a4298d086e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=953&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b4d71754e6a4298d086e/colorLogoPNG.png" group-title="Series",Pluto TV Realities ESP (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us",Pluto TV Realities ESP (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) +#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf0b06d2d855ee15115e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=275&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) +#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde197f6591d0009839e04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd8186d53ed2c6334ea0855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRescue911.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e831e9fe730007706acb/colorLogoPNG.png" group-title="Series",Pluto TV Rescue 911 (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e831e9fe730007706acb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=277&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRescue911.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e831e9fe730007706acb/colorLogoPNG.png" group-title="Series",Pluto TV Rescue 911 (360p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRescue911.us",Pluto TV Rescue 911 (360p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetro.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1212ad1728050007a523b8/colorLogoPNG.png" group-title="Classic",Pluto TV Retrô (684p) +#EXTINF:-1 tvg-id="PlutoTVRescue911.us",Pluto TV Rescue 911 (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e831e9fe730007706acb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=277&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRetro.us",Pluto TV Retrô (684p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dde47b63585b500099f74ec&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5204e9ec-0585-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDramaEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroDramaEngland.us",Pluto TV Retro Drama (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91f19c2c3300098ce961&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=415&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=886c7aee-0585-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a8542c9b-0714-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2b9d8002db3c3e0b1c6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d4e7e738977e2c310937/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58d947b9e420d8656ee101ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=489&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRoblox.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Roblox (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRoblox.us",Pluto TV Roblox (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51dd5d369acdb278dfb05d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51dd5d369acdb278dfb05d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=816&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRockosModernLifeBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Rocko’s Modern Life (Brazil) (720p) +#EXTINF:-1 tvg-id="",Pluto TV Rocko’s Modern Life (Brazil) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f6df6293a12e10007017396&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=731&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60812fc8539963000707d1e1/solidLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a66795ef91fef2c7031c599&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=70&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60812fc8539963000707d1e1/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf321-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7ebb5004-1cd6-44bb-990a-082fdcdcba6d -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc287ce3086a20009f5024c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2e82991-0585-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a66795ef91fef2c7031c599&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=70&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomanceEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVRomanceEngland.us",Pluto TV Romance (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677c0edace7cff8180b16&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRugrats.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/610c09219fc0430007a3fce6/colorLogoPNG.png" group-title="Kids",Pluto TV Rugrats (720p) +#EXTINF:-1 tvg-id="PlutoTVRugrats.us",Pluto TV Rugrats (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/610c09219fc0430007a3fce6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRugratsCrecidos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ea7215005d66d0007e8128a/colorLogoPNG.png" group-title="Kids",Pluto TV Rugrats Crecidos (720p) +#EXTINF:-1 tvg-id="PlutoTVRugratsCrecidos.us",Pluto TV Rugrats Crecidos (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea7215005d66d0007e8128a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc327d0451770009ed7577&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4aa698a0-0715-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d94a5451754e6a4298d1059/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSamCat.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5ba20af628000707cee3/colorLogoPNG.png" group-title="Kids",Pluto TV Sam & Cat (720p) +#EXTINF:-1 tvg-id="PlutoTVSamCat.us",Pluto TV Sam & Cat (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5ba20af628000707cee3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSanctuary.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e7de99bc5200300072e971a/colorLogoPNG.png" group-title="Series",Pluto TV Sanctuary (720p) +#EXTINF:-1 tvg-id="PlutoTVSanctuary.us",Pluto TV Sanctuary (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7de99bc5200300072e971a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e6fbc174-0585-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSanctuary.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e7de99bc5200300072e971a/colorLogoPNG.png" group-title="Series",Pluto TV Sanctuary (720p) +#EXTINF:-1 tvg-id="PlutoTVSanctuary.us",Pluto TV Sanctuary (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) +#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4fc274694c027be6ed3eea&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=151&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (432p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2817d3d7573a00080f9175/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) +#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6a38eaa5b68b0007a00e7a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (432p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2817d3d7573a00080f9175/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4fc274694c027be6ed3eea&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=151&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02a44a9518600094273ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=563a970aa1a1f7fe7c9daad7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=672&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d9492c77ea6f99188738ff1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSecretDealers.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8dc0af6784d10007d8ad42/colorLogoPNG.png" group-title="Series",Pluto TV Secret Dealers (720p) +#EXTINF:-1 tvg-id="PlutoTVSecretDealers.us",Pluto TV Secret Dealers (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc0af6784d10007d8ad42/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSensingMurder.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e9ed47c26ebb000074af566/colorLogoPNG.png" group-title="Series",Pluto TV Sensing Murder (720p) +#EXTINF:-1 tvg-id="PlutoTVSensingMurder.us",Pluto TV Sensing Murder (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9ed47c26ebb000074af566/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde1317578340009b751d0/colorLogoPNG.png" group-title="Series",Pluto TV Series (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSeries.us",Pluto TV Series (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde1317578340009b751d0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f121262a189a800076b9386/colorLogoPNG.png" group-title="Series",Pluto TV Séries (720p) +#EXTINF:-1 tvg-id="PlutoTVSeries.us",Pluto TV Séries (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeriesComedia.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f9853138d19af0007104a8d/colorLogoPNG.png" group-title="Comedy",Pluto TV Series Comedia (720p) +#EXTINF:-1 tvg-id="PlutoTVSeriesComedia.us",Pluto TV Series Comedia (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9853138d19af0007104a8d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeriesLatinas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd837642c6e9300098ad484/colorLogoPNG.png" group-title="",Pluto TV Series Latinas (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSeriesLatinas.us",Pluto TV Series Latinas (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd837642c6e9300098ad484/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSeriesRetro.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de802659167b10009e7deba/colorLogoPNG.png" group-title="Classic",Pluto TV Series Retro (480p) +#EXTINF:-1 tvg-id="PlutoTVSeriesRetro.us",Pluto TV Series Retro (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de802659167b10009e7deba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSherlock.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2c00abfed110009d97243/colorLogoPNG.png" group-title="Series",Pluto TV Sherlock (720p) +#EXTINF:-1 tvg-id="PlutoTVSherlock.us" status="online",Pluto TV Sherlock (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c00abfed110009d97243/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Shout! Factory TV (720p) +#EXTINF:-1 tvg-id="PlutoTVShoutFactoryTV.us",Pluto TV Shout! Factory TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/55a6a3275616b6240c26f393/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=55a6a3275616b6240c26f393&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=542&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVShowtimeSelect.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f988934a507de00075d9ae7/colorLogoPNG.png" group-title="",Pluto TV Showtime Select (720p) +#EXTINF:-1 tvg-id="PlutoTVShowtimeSelect.us",Pluto TV Showtime Select (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f988934a507de00075d9ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (720p) +#EXTINF:-1 tvg-id="PlutoTVSitcoms.us",Pluto TV Sitcoms (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ab2b456c8cf265ce921&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7e35daaa-06ef-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSitcoms.us",Pluto TV Sitcoms (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSitcomsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (Germany) (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSitcomsGermany.us",Pluto TV Sitcoms (Germany) (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ab2b456c8cf265ce921&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=405&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSitcomsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="",Pluto TV Sitcoms+ (720p) +#EXTINF:-1 tvg-id="PlutoTVSitcomsPlus.us",Pluto TV Sitcoms+ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cd149f021cb6c55e258bbe8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cd149f021cb6c55e258bbe8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=375760ce-ac7c-4306-818c-98562edc8da5&terminate=false&userId= -#EXTINF:-1 tvg-id="SkillsPlusThrills.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6000a6f4c3f8550008fc9b91/colorLogoPNG.png" group-title="",Pluto TV Skills + Thrills (720p) [Not 24/7] +#EXTINF:-1 tvg-id="SkillsPlusThrills.us",Pluto TV Skills + Thrills (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a6f4c3f8550008fc9b91/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82547b6b3df60007fec2b5/colorLogoPNG.png" group-title="",Pluto TV Slightly Off By IFC (720p) +#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us",Pluto TV Slightly Off By IFC (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82547b6b3df60007fec2b5/colorLogoPNG.png" group-title="",Pluto TV Slightly Off By IFC (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us",Pluto TV Slightly Off By IFC (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82547b6b3df60007fec2b5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=458&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (720p) +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5317bfebff98025b3200ff99&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=696&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (720p) +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765a05f65029ce2385aa30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSmithsonianChannelSelects.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f21ea08007a49000762d349/featuredImage.jpg" group-title="Science",Pluto TV Smithsonian Channel Selects (720p) +#EXTINF:-1 tvg-id="PlutoTVSmithsonianChannelSelects.us",Pluto TV Smithsonian Channel Selects (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21ea08007a49000762d349/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpace.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dbc2f98777f2e0009934ae7/colorLogoPNG.png" group-title="Science",Pluto TV Space (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSpace.us",Pluto TV Space (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2f98777f2e0009934ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d11baeb31c5a43b77bf59/colorLogoPNG.png" group-title="",Pluto TV Spike Aventura (720p) +#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us",Pluto TV Spike Aventura (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d11baeb31c5a43b77bf59&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=950&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d11baeb31c5a43b77bf59/colorLogoPNG.png" group-title="",Pluto TV Spike Aventura (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us",Pluto TV Spike Aventura (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c393cad2de254456f7ef8c2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Spike Outdoors (720p) +#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us",Pluto TV Spike Outdoors (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c393cad2de254456f7ef8c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=291&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c393cad2de254456f7ef8c2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Spike Outdoors (720p) +#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us",Pluto TV Spike Outdoors (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="Kids",Pluto TV SpongeBob Schwammkopf (720p) +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us",Pluto TV SpongeBob Schwammkopf (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="Kids",Pluto TV SpongeBob Schwammkopf (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us",Pluto TV SpongeBob Schwammkopf (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e8adaab96b5635b2a005&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=715c465f-0715-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopfGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="",Pluto TV SpongeBob Schwammkopf (Germany) (720p) +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopfGermany.us",Pluto TV SpongeBob Schwammkopf (Germany) (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d00e8adaab96b5635b2a005&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=248&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSPORTBeINSportsXtra.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Pluto TV SPORT : BeIN Sports Xtra (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVSPORTBeINSportsXtra.us",Pluto TV SPORT : BeIN Sports Xtra (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df975e2b27cf5000921c102/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.9.3-b879e400d5df7a969d4bff8863fe5cb02c7120e6&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=b702181a-c1d6-4ee2-9481-753f471e2ce7&deviceLat=40.8364&deviceLon=-74.1403&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=66.0.3515.44&includeExtendedEvents=false&serverSideAds=tr&sid=855d6801-c912-428d-b620-ede4dd0c3b15&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6081310e48d3200007afaf3b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf322-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0727f4fb-ea0b-4814-bb58-fdf3c4534220 -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bb941b95267e225e59c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b22749b0-ca0e-4663-8bb3-d83febbbb89f&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56340779a738201b4ccfeac9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=725&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSportsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (England) (720p) +#EXTINF:-1 tvg-id="PlutoTVSportsEngland.us",Pluto TV Sports (England) (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677fa2ec536ce1d587eeb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=607&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpotlight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ba3fb9c4b078e0f37ad34e8/colorLogoPNG.png" group-title="Movies",Pluto TV Spotlight (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpotlight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ba3fb9c4b078e0f37ad34e8/colorLogoPNG.png" group-title="Movies",Pluto TV Spotlight (684p) +#EXTINF:-1 tvg-id="PlutoTVSpotlight.us",Pluto TV Spotlight (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ba3fb9c4b078e0f37ad34e8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=51&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStadium.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Stadium (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVSpotlight.us",Pluto TV Spotlight (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStadium.us",Pluto TV Stadium (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59974b6d7ec5063cb56f24c9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59974b6d7ec5063cb56f24c9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=748&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStaffPicks.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d863b98b41000076cd061/colorLogoPNG.png" group-title="",Pluto TV Staff Picks (720p) +#EXTINF:-1 tvg-id="PlutoTVStaffPicks.us",Pluto TV Staff Picks (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d863b98b41000076cd061/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (720p) +#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d135e29a52c94dfe543c5d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5637d31f319573e26b64040b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=468&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (720p) +#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d135e29a52c94dfe543c5d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStarTrek.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd39f8c4ce900075d7698/colorLogoPNG.png" group-title="Series",Pluto TV Star Trek (720p) +#EXTINF:-1 tvg-id="PlutoTVStarTrek.us",Pluto TV Star Trek (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd39f8c4ce900075d7698&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=150&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStarTrek.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd39f8c4ce900075d7698/colorLogoPNG.png" group-title="Series",Pluto TV Star Trek (720p) +#EXTINF:-1 tvg-id="PlutoTVStarTrek.us",Pluto TV Star Trek (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStorageWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede464e7be0030007c58b73/colorLogoPNG.png" group-title="Series",Pluto TV Storage Wars (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVStorageWars.us",Pluto TV Storage Wars (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede464e7be0030007c58b73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5922d945-0586-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStorageWars.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5ede464e7be0030007c58b73/colorLogoPNG.png" group-title="Series",Pluto TV Storage Wars (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVStorageWars.us",Pluto TV Storage Wars (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8254118601b80007b4b7ae/colorLogoPNG.png" group-title="",Pluto TV Stories by AMC (720p) +#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us",Pluto TV Stories by AMC (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8254118601b80007b4b7ae&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=135&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8254118601b80007b4b7ae/colorLogoPNG.png" group-title="",Pluto TV Stories by AMC (720p) +#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us",Pluto TV Stories by AMC (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (720p) +#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1452156c07b50009d0230e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd81b1053ed2c6334ea0856/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (720p) +#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1452156c07b50009d0230e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSurf.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d1ce51dbaca4afdb7abfe5f/colorLogoPNG.png" group-title="",Pluto TV Surf (720p) +#EXTINF:-1 tvg-id="PlutoTVSurf.us",Pluto TV Surf (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d1ce51dbaca4afdb7abfe5f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSurf.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d1ce51dbaca4afdb7abfe5f/colorLogoPNG.png" group-title="",Pluto TV Surf (720p) +#EXTINF:-1 tvg-id="PlutoTVSurf.us",Pluto TV Surf (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSurvivor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e7b24744c60007c1f6fc/colorLogoPNG.png" group-title="Series",Pluto TV Survivor (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e7b24744c60007c1f6fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=296&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSurvivor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e7b24744c60007c1f6fc/colorLogoPNG.png" group-title="Series",Pluto TV Survivor (240p) +#EXTINF:-1 tvg-id="PlutoTVSurvivor.us",Pluto TV Survivor (240p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSuspense.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e281b0b8840007324b55/colorLogoPNG.png" group-title="",Pluto TV Suspense (720p) +#EXTINF:-1 tvg-id="PlutoTVSurvivor.us",Pluto TV Survivor (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e7b24744c60007c1f6fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=296&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSuspense.us",Pluto TV Suspense (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e281b0b8840007324b55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=149&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSuspense.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e281b0b8840007324b55/colorLogoPNG.png" group-title="",Pluto TV Suspense (720p) +#EXTINF:-1 tvg-id="PlutoTVSuspense.us",Pluto TV Suspense (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTastemade.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fd1419a3b4f4b000773ba85/colorLogoPNG.png" group-title="Cooking",Pluto TV Tastemade (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTastemade.us",Pluto TV Tastemade (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTBN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b2eeddd9576d66f9066/colorLogoPNG.png" group-title="Religious",Pluto TV TBN (720p) +#EXTINF:-1 tvg-id="PlutoTVTBN.us",Pluto TV TBN (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTBN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b2eeddd9576d66f9066/colorLogoPNG.png" group-title="Religious",Pluto TV TBN (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTBN.us",Pluto TV TBN (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b2eeddd9576d66f9066&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=644&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6de52b9914200091f047a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f0d668b872e4400073acc68&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9c22837c-0715-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb7e3d2ed18000746d09a/colorLogoPNG.png" group-title="Kids",Pluto TV TEEN SERIES (720p) +#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us",Pluto TV TEEN SERIES (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb7e3d2ed18000746d09a/colorLogoPNG.png" group-title="Kids",Pluto TV TEEN SERIES (720p) +#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us",Pluto TV TEEN SERIES (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTeenStars.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60016a60a8e3520008e0d331/colorLogoPNG.png" group-title="Kids",Pluto TV Teen Stars (720p) +#EXTINF:-1 tvg-id="PlutoTVTeenStars.us",Pluto TV Teen Stars (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60016a60a8e3520008e0d331/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTeenNick.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Pluto TV TeenNick (720p) +#EXTINF:-1 tvg-id="PlutoTVTeenNick.us",Pluto TV TeenNick (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelefeClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de91cf02fc07c0009910465/colorLogoPNG.png" group-title="",Pluto TV Telefe Clásico (480p) +#EXTINF:-1 tvg-id="PlutoTVTelefeClasico.us",Pluto TV Telefe Clásico (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91cf02fc07c0009910465/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelefeNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f523aa5523ae000074745ec/colorLogoPNG.png" group-title="News",Pluto TV Telefe Noticias (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTelefeNoticias.us",Pluto TV Telefe Noticias (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f523aa5523ae000074745ec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96cc422df39f1a338d165/colorLogoPNG.png" group-title="Movies",Pluto TV Telemundo Telenovelas (720p) +#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us",Pluto TV Telemundo Telenovelas (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96cc422df39f1a338d165&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=940&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96cc422df39f1a338d165/colorLogoPNG.png" group-title="Movies",Pluto TV Telemundo Telenovelas (720p) +#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us",Pluto TV Telemundo Telenovelas (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelenovela.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f914f9dccb4de0007df8bc4/colorLogoPNG.png" group-title="Movies",Pluto TV Telenovela (720p) +#EXTINF:-1 tvg-id="PlutoTVTelenovela.us",Pluto TV Telenovela (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelenovela.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f9dccb4de0007df8bc4/colorLogoPNG.png" group-title="Movies",Pluto TV Telenovela (720p) +#EXTINF:-1 tvg-id="PlutoTVTelenovela.us",Pluto TV Telenovela (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60b4c06717da110007ee1af6/colorLogoPNG.png" group-title="",Pluto TV Telenovelas (720p) +#EXTINF:-1 tvg-id="PlutoTVTelenovelas.us",Pluto TV Telenovelas (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60b4c06717da110007ee1af6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTerror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c6dc88fcd232425a6e0f06e/colorLogoPNG.png" group-title="Movies",Pluto TV Terror (720p) +#EXTINF:-1 tvg-id="PlutoTVTerror.us",Pluto TV Terror (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6dc88fcd232425a6e0f06e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=76&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTerror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c6dc88fcd232425a6e0f06e/colorLogoPNG.png" group-title="Movies",Pluto TV Terror (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTerror.us",Pluto TV Terror (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d81607ab737153ea3c1c80e/colorLogoPNG.png" group-title="Series",Pluto TV The Addams Family (684p) +#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us",Pluto TV The Addams Family (684p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d81607ab737153ea3c1c80e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=511&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d81607ab737153ea3c1c80e/colorLogoPNG.png" group-title="Series",Pluto TV The Addams Family (684p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us",Pluto TV The Addams Family (684p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e8a6e2f12b000755afdb/colorLogoPNG.png" group-title="Series",Pluto TV The Amazing Race (720p) +#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us",Pluto TV The Amazing Race (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e8a6e2f12b000755afdb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=297&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e8a6e2f12b000755afdb/colorLogoPNG.png" group-title="Series",Pluto TV The Amazing Race (720p) +#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us",Pluto TV The Amazing Race (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f0427b2c0c065e91aab5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Series",Pluto TV The Bob Ross Channel (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTheBobRossChannel.us",Pluto TV The Bob Ross Channel (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36d726234ce10007784f2a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Classic",Pluto TV The Carol Burnett Show (720p) +#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us",Pluto TV The Carol Burnett Show (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef396d1be50a3000722808b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=516&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Classic",Pluto TV The Carol Burnett Show (720p) +#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us",Pluto TV The Carol Burnett Show (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48685da7e9f476aa8a1888/colorLogoPNG.png" group-title="Series",Pluto TV The Challenge (720p) +#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us",Pluto TV The Challenge (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48685da7e9f476aa8a1888&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=298&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48685da7e9f476aa8a1888/colorLogoPNG.png" group-title="Series",Pluto TV The Challenge (720p) +#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us",Pluto TV The Challenge (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4ff8c8bcf3d600078af3eb/colorLogoPNG.png" group-title="Lifestyle",Pluto TV The Design Network (720p) +#EXTINF:-1 tvg-id="PlutoTVTheDesignNetwork.us",Pluto TV The Design Network (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ff8c8bcf3d600078af3eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV The First (720p) +#EXTINF:-1 tvg-id="PlutoTVTheFirst.us",Pluto TV The First (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486acc34ceb37d3c458a64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486acc34ceb37d3c458a64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=244&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheLoveBoat.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7794a788d29000079d2f07/colorLogoPNG.png" group-title="Classic",Pluto TV The Love Boat (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTheLoveBoat.us",Pluto TV The Love Boat (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794a788d29000079d2f07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aea40b35126c2157123aa64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=376&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea71d48af1d0b0007d837f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e393d5c696b3b0009775c8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebacbcae43a6d000787b88e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4f5a07694c027be6ed1417/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf097eb06300079b30f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebacbcae43a6d000787b88e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d819e738977e2c31096a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePriceisRight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7791b8372da90007fd45e6/colorLogoPNG.png" group-title="Series",Pluto TV The Price is Right (720p) +#EXTINF:-1 tvg-id="PlutoTVThePriceisRight.us",Pluto TV The Price is Right (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7791b8372da90007fd45e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e825550e758c700077b0aef/colorLogoPNG.png" group-title="Series",Pluto TV The Rifleman (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e825550e758c700077b0aef/colorLogoPNG.png" group-title="Series",Pluto TV The Rifleman (240p) +#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us",Pluto TV The Rifleman (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e825550e758c700077b0aef&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=529&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheSimpleLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18f35ae8f730007465915/colorLogoPNG.png" group-title="Series",Pluto TV The Simple Life (720p) +#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us",Pluto TV The Rifleman (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheSimpleLife.us",Pluto TV The Simple Life (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18f35ae8f730007465915/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f982c3420de4100070a545e/colorLogoPNG.png" group-title="Series",Pluto TV The Story of Beatclub (720p) +#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us",Pluto TV The Story of Beatclub (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f982c3420de4100070a545e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=09ab0f67-3401-11eb-a786-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f982c3420de4100070a545e/colorLogoPNG.png" group-title="Series",Pluto TV The Story of Beatclub (720p) +#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us",Pluto TV The Story of Beatclub (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e82bb378601b80007b4bd78/colorLogoPNG.png" group-title="Series",Pluto TV The Walking Dead ESP (720p) +#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82bb378601b80007b4bd78&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=925&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e82bb378601b80007b4bd78/colorLogoPNG.png" group-title="Series",Pluto TV The Walking Dead ESP (720p) +#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",Pluto TV This Old House (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",Pluto TV This Old House (240p) +#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us",Pluto TV This Old House (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e791b7dba3b2ae990ab2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=618&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3977e5d773400077de284/colorLogoPNG.png" group-title="Series",Pluto TV Three's Company (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3977e5d773400077de284&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=508&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3977e5d773400077de284/colorLogoPNG.png" group-title="Series",Pluto TV Three's Company (240p) +#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us",Pluto TV This Old House (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us",Pluto TV Three's Company (240p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us",Pluto TV Three's Company (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3977e5d773400077de284&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=508&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e69e08291147bd04a9fd7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=74&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efdbf90ba3e0009d99082&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b790e11f-0586-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8a87cd38d000745d7cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfedccc563080009b60f4a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTinyHouseNation.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/601a0342dcf4370007566891/colorLogoPNG.png" group-title="Series",Pluto TV Tiny House Nation (720p) +#EXTINF:-1 tvg-id="PlutoTVTinyHouseNation.us",Pluto TV Tiny House Nation (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a0342dcf4370007566891/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTODAY.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d695f7db53adf96b78e7ce3/colorLogoPNG.png" group-title="Series",Pluto TV TODAY (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTODAY.us",Pluto TV TODAY (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d695f7db53adf96b78e7ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=234&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTODAY.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d695f7db53adf96b78e7ce3/colorLogoPNG.png" group-title="Series",Pluto TV TODAY (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTODAY.us",Pluto TV TODAY (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c3f8f12a93c2d61b9990a4e/colorLogoPNG.png" group-title="Series",Pluto TV TokuSHOUTsu (720p) +#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us",Pluto TV TokuSHOUTsu (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c3f8f12a93c2d61b9990a4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=848&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c3f8f12a93c2d61b9990a4e/colorLogoPNG.png" group-title="Series",Pluto TV TokuSHOUTsu (720p) +#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us",Pluto TV TokuSHOUTsu (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVToonsClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/609e7e423e9173000706a681/colorLogoPNG.png" group-title="Kids",Pluto TV Toons Clásico (720p) +#EXTINF:-1 tvg-id="PlutoTVToonsClasico.us",Pluto TV Toons Clásico (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609e7e423e9173000706a681/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecc1b37867f00071469e9/colorLogoPNG.png" group-title="Series",Pluto TV Tortues Ninja TV (720p) +#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us",Pluto TV Tortues Ninja TV (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecc1b37867f00071469e9/colorLogoPNG.png" group-title="Series",Pluto TV Tortues Ninja TV (720p) +#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us",Pluto TV Tortues Ninja TV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTosh0.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae084727c8af0009fe40a4/colorLogoPNG.png" group-title="Series",Pluto TV Tosh.0 (720p) +#EXTINF:-1 tvg-id="PlutoTVTosh0.us",Pluto TV Tosh.0 (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae084727c8af0009fe40a4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTosh0.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae084727c8af0009fe40a4/colorLogoPNG.png" group-title="Series",Pluto TV Tosh.0 (720p) +#EXTINF:-1 tvg-id="PlutoTVTosh0.us",Pluto TV Tosh.0 (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d6792bd6be2998ad0ccce30&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ca4dc680-0715-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d0c16d686454ead733d08f8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=983&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) +#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c01b1953680139c6ae9d4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=678&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c444bac1f70009ca756e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (720p) +#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (720p) +#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aae8c65727d0007d15a17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812be1c249444e05d09cc50/colorLogoPNG.png" group-title="Series",Pluto TV True Crime (720p) +#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us",Pluto TV True Crime (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812be1c249444e05d09cc50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=365&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812be1c249444e05d09cc50/colorLogoPNG.png" group-title="Series",Pluto TV True Crime (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us",Pluto TV True Crime (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="Pluto TV Truly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebd0ff1e1a4770007479dc7/colorLogoPNG.png" group-title="",Pluto TV Truly (720p) +#EXTINF:-1 tvg-id="",Pluto TV Truly (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebd0ff1e1a4770007479dc7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTurmadaMonica.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f997e44949bc70007a6941e/colorLogoPNG.png" group-title="",Pluto TV Turma da Mônica (720p) +#EXTINF:-1 tvg-id="PlutoTVTurmadaMonica.us",Pluto TV Turma da Mônica (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40bebc5e3d2750a2239d7e/colorLogoPNG.png" group-title="Movies",Pluto TV TV Land Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us",Pluto TV TV Land Drama (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40bebc5e3d2750a2239d7e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=130&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40bebc5e3d2750a2239d7e/colorLogoPNG.png" group-title="Movies",Pluto TV TV Land Drama (720p) +#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us",Pluto TV TV Land Drama (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c2d64ffbdf11b71587184b8/colorLogoPNG.png" group-title="",Pluto TV TV Land Sitcoms (720p) +#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us",Pluto TV TV Land Sitcoms (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c2d64ffbdf11b71587184b8/colorLogoPNG.png" group-title="",Pluto TV TV Land Sitcoms (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us",Pluto TV TV Land Sitcoms (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c2d64ffbdf11b71587184b8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=455&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTween.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db0ae5af8797b00095c0794/colorLogoPNG.png" group-title="Kids",Pluto TV Tween (720p) +#EXTINF:-1 tvg-id="PlutoTVTween.us",Pluto TV Tween (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ae5af8797b00095c0794&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=991&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTween.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db0ae5af8797b00095c0794/colorLogoPNG.png" group-title="Kids",Pluto TV Tween (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTween.us",Pluto TV Tween (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTYTNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5331d5fb753499095a00045a/colorLogoPNG.png" group-title="",Pluto TV TYT Network (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVTYTNetwork.us",Pluto TV TYT Network (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5331d5fb753499095a00045a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnbeatenEsports.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2a961bac1f70009ca7524/colorLogoPNG.png" group-title="Entertainment",Pluto TV Unbeaten Esports (720p) +#EXTINF:-1 tvg-id="PlutoTVUnbeatenEsports.us",Pluto TV Unbeaten Esports (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a961bac1f70009ca7524/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUndercoverBossGlobal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f0dc00b15eef10007726ef7/colorLogoPNG.png" group-title="Series",Pluto TV Undercover Boss Global (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVUndercoverBossGlobal.us",Pluto TV Undercover Boss Global (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0dc00b15eef10007726ef7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e96a0423e067bd6df6901&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=379&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd05b4694d45d266bc951f2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVayasemanita.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f28009b150b2500077766b8/colorLogoPNG.png" group-title="",Pluto TV Vaya semanita (720p) +#EXTINF:-1 tvg-id="PlutoTVVayasemanita.us",Pluto TV Vaya semanita (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f28009b150b2500077766b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVelocidad.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6dc7480e3550009133d4a/colorLogoPNG.png" group-title="",Pluto TV Velocidad​ (720p) +#EXTINF:-1 tvg-id="PlutoTVVelocidad.us",Pluto TV Velocidad​ (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dc7480e3550009133d4a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVVEVO2K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7bca3e0a4ee0007a38e8c/featuredImage.jpg" group-title="Music",Pluto TV VEVO 2K (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVVEVO2K.us",Pluto TV VEVO 2K (1080p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bca3e0a4ee0007a38e8c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO70s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f32f26bcd8aea00071240e5/featuredImage.jpg" group-title="Music",Pluto TV VEVO 70's (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVO70s.us",Pluto TV VEVO 70's (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f26bcd8aea00071240e5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO80s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7b8bf927e090007685853/featuredImage.jpg" group-title="Music",Pluto TV VEVO 80's (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVO80s.us",Pluto TV VEVO 80's (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7b8bf927e090007685853/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO90s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7bb1f86d94a000796e2c2/featuredImage.jpg" group-title="Music",Pluto TV VEVO 90's (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVO90s.us",Pluto TV VEVO 90's (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bb1f86d94a000796e2c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVOCountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5da0d75e84830900098a1ea0/featuredImage.jpg" group-title="Music",Pluto TV VEVO Country (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVOCountry.us",Pluto TV VEVO Country (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d75e84830900098a1ea0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVevoPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d93b635b43dd1a399b39eee/colorLogoPNG.png" group-title="Music",Pluto TV Vevo Pop (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVVevoPop.us",Pluto TV Vevo Pop (1080p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b635b43dd1a399b39eee&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=890&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVevoPop.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b635b43dd1a399b39eee/colorLogoPNG.png" group-title="Music",Pluto TV Vevo Pop (1080p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVVevoPop.us",Pluto TV Vevo Pop (1080p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVORB.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5da0d83f66c9700009b96d0e/featuredImage.jpg" group-title="Music",Pluto TV VEVO R&B (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVORB.us",Pluto TV VEVO R&B (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d83f66c9700009b96d0e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVOReggeatonTrap.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f32f397795b750007706448/featuredImage.jpg" group-title="Music",Pluto TV VEVO Reggeaton & Trap (1080p) +#EXTINF:-1 tvg-id="PlutoTVVEVOReggeatonTrap.us",Pluto TV VEVO Reggeaton & Trap (1080p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f397795b750007706448/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1IClassic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/6076cd1df8576d0007c82193/colorLogoPNG.png" group-title="Music",Pluto TV VH1 Classics (720p) +#EXTINF:-1 tvg-id="PlutoTVVH1IClassic.us",Pluto TV VH1 Classics (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6076cd1df8576d0007c82193/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d71561df6f2e6d0b6493bf5/colorLogoPNG.png" group-title="Series",Pluto TV VH1 Hip Hop Family (720p) +#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us",Pluto TV VH1 Hip Hop Family (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d71561df6f2e6d0b6493bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=284&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d71561df6f2e6d0b6493bf5/colorLogoPNG.png" group-title="Series",Pluto TV VH1 Hip Hop Family (720p) +#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us",Pluto TV VH1 Hip Hop Family (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d7154fa8326b6ce4ec31f2e/colorLogoPNG.png" group-title="Series",Pluto TV VH1 I Love Reality (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d7154fa8326b6ce4ec31f2e/colorLogoPNG.png" group-title="Series",Pluto TV VH1 I Love Reality (240p) +#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us",Pluto TV VH1 I Love Reality (240p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7154fa8326b6ce4ec31f2e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=282&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVViajes.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfbdb7cf0e0009ae09ea/colorLogoPNG.png" group-title="",Pluto TV Viajes (720p) +#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us",Pluto TV VH1 I Love Reality (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVViajes.us",Pluto TV Viajes (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfbdb7cf0e0009ae09ea/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVVictorious.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b5e43f294f8000793c3d7/colorLogoPNG.png" group-title="",Pluto TV Victorious (720p) +#EXTINF:-1 tvg-id="PlutoTVVictorious.us",Pluto TV Victorious (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5e43f294f8000793c3d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVidaReal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5df265697ec3510009df1ef0/colorLogoPNG.png" group-title="",Pluto TV Vida Real (720p) +#EXTINF:-1 tvg-id="PlutoTVVidaReal.us",Pluto TV Vida Real (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (480p) +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (480p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=589aa03df9ba56a84197a560&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=681&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d1e9e738977e2c310925/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/603fde9026ecbf0007752c2c/colorLogoPNG.png" group-title="Sports",Pluto TV Vs. (480p) +#EXTINF:-1 tvg-id="PlutoTVVs.us",Pluto TV Vs. (480p) http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/603fde9026ecbf0007752c2c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",Pluto TV WeatherNation (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us",Pluto TV WeatherNation (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bdce04659ee03633e758130&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=217&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",Pluto TV WeatherNation (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us",Pluto TV WeatherNation (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877acecb16bb1e042ee453f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=632&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d49455dfd09fd7d4c0daf26/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (720p) +#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8df4bc16e34700077e77d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=526&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (720p) +#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4bdb635ce813b38639e6a3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (720p) +#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Wild%20N%20Out_190x190.png?raw=true" group-title="Series",Pluto TV Wild 'N Out (720p) +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48678d34ceb37d3c458a55/colorLogoPNG.png" group-title="Series",Pluto TV Wild 'N Out (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48678d34ceb37d3c458a55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48678d34ceb37d3c458a55/colorLogoPNG.png" group-title="Series",Pluto TV Wild 'N Out (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7792f6e093980007e02945/colorLogoPNG.png" group-title="Series",Pluto TV Wings (720p) +#EXTINF:-1 tvg-id="PlutoTVWings.us",Pluto TV Wings (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7792f6e093980007e02945/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea190ae85a26900075a80e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (480p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (480p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed6828192e8b3000743ef61/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea190ae85a26900075a80e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) [Offline] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ab3e1242be690697279c75d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=305&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (720p) [Offline] +#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) [Offline] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Series",Pluto TV World Poker Tour (720p) +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b7aae738977e2c312132&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=48d01e71-b553-42a5-9205-affb7381b546&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Series",Pluto TV World Poker Tour (720p) +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5616f9c0ada51f8004c4b091&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=770&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d796e738977e2c31094a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS01/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150921e2191900097c4c23/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) [Not 24/7] +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) [Not 24/7] https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fc31252d35decbc4080b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=873&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60803e541a829e0008e91641/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb570-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ca55bef6-f2a6-488a-be5d-c7ba24d93cdd -#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0d10e186bf0007e2b100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2c143e9d-0cd6-4d02-8b92-df3471ececef&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fceaab478f2af00080ff51f/colorLogoPNG.png" group-title="",Pluto TV Yu-Gi-Oh (720p) +#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us",Pluto TV Yu-Gi-Oh (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fceaab478f2af00080ff51f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5fceaab478f2af00080ff51f/colorLogoPNG.png" group-title="",Pluto TV Yu-Gi-Oh (720p) +#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us",Pluto TV Yu-Gi-Oh (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ec10ed9636f00089b8c89/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="SkyNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/SkyNews.png" group-title="News",Sky News (720p) [Offline] +#EXTINF:-1 tvg-id="SkyNews.us",Sky News (720p) [Offline] https://skynews2-plutolive-vo.akamaized.net/cdhlsskynewsamericas/1013/latest.m3u8 -#EXTINF:-1 tvg-id="SpikeAdventura.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/10062020/Spike_Aventura_190x190.png?raw=true" group-title="",Spike Adventura (720p) +#EXTINF:-1 tvg-id="SpikeAdventura.us",Spike Adventura (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (720p) +#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cc81e793798650e4f7d9fd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=867f59cf-0586-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (720p) +#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=591105034c1806b47438342c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=115&terminate=false&userId= -#EXTINF:-1 tvg-id="TheBlaze.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/toNeonC.png" group-title="",The Blaze (720p) +#EXTINF:-1 tvg-id="TheBlaze.us",The Blaze (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= -#EXTINF:-1 tvg-id="TheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/TheNewDetectives_190x190.png?raw=true" group-title="",The New Detectives (720p) +#EXTINF:-1 tvg-id="TheNewDetectives.us",The New Detectives (720p) http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ad55268cae539bcedb08&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=637&terminate=false&userId= -#EXTINF:-1 tvg-id="TopGear.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60d356a534f63f000850cdd7/colorLogoPNG.png" group-title="",Top Gear (720p) +#EXTINF:-1 tvg-id="TopGear.us",Top Gear (720p) https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d356a534f63f000850cdd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS diff --git a/streams/us_redbox.m3u b/streams/us_redbox.m3u new file mode 100644 index 000000000..873880bd6 --- /dev/null +++ b/streams/us_redbox.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://contv-redbox-us-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) +https://docurama-redbox-us-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (1080p) +https://johnnycarson-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-johnnycarson-redbox/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MST3K.us",MST3K (1080p) +https://mst3k-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-mst3k/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) [Not 24/7] +https://pac12-redbox.amagi.tv/hls/amagi_hls_data_pac-12AAA-pac12-redbox/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox1Spotlight.us",Redbox 1: Spotlight (1080p) +https://spotlight-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox2Comedy.us",Redbox 2: Comedy (1080p) +https://comedy-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox3Rush.us",Redbox 3: Rush (1080p) +https://rush-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-rush/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox3Rush.us",Redbox 3: Rush (1080p) +https://rush-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) +http://shoutfactory-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) +https://shoutfactory-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-shoutfactorytv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeFrance.us",Tastemade France (1080p) +https://tastemadefr16min-redbox.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-redbox/CDN/playlist.m3u8 diff --git a/streams/us_redtraffic.m3u b/streams/us_redtraffic.m3u new file mode 100644 index 000000000..c38b70099 --- /dev/null +++ b/streams/us_redtraffic.m3u @@ -0,0 +1,37 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us",AdultIPTV.net Big Ass (720p) +http://live.redtraffic.xyz/bigass.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us",AdultIPTV.net Big Dick (720p) +http://live.redtraffic.xyz/bigdick.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us",AdultIPTV.net Big Tits (720p) +http://live.redtraffic.xyz/bigtits.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us",AdultIPTV.net Blowjob (720p) +http://live.redtraffic.xyz/blowjob.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us",AdultIPTV.net Cuckold (720p) +http://live.redtraffic.xyz/cuckold.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us",AdultIPTV.net Fetish (720p) +http://live.redtraffic.xyz/fetish.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us",AdultIPTV.net Gangbang (720p) +http://live.redtraffic.net/gangbang.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us",AdultIPTV.net Hardcore (720p) +http://live.redtraffic.xyz/hardcore.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us",AdultIPTV.net Interracial (720p) +http://live.redtraffic.xyz/interracial.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us",AdultIPTV.net Latina (720p) +http://live.redtraffic.xyz/latina.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us",AdultIPTV.net Lesbian (720p) +http://live.redtraffic.xyz/lesbian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us",AdultIPTV.net MILF (720p) +http://live.redtraffic.xyz/milf.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us",AdultIPTV.net Pornstar (720p) +http://live.redtraffic.xyz/pornstar.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us",AdultIPTV.net POV (720p) +http://live.redtraffic.xyz/pov.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us",AdultIPTV.net Russian (720p) +http://live.redtraffic.xyz/russian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us",AdultIPTV.net Teen (720p) +http://live.redtraffic.xyz/teen.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us",AdultIPTV.net Threesome (720p) +http://live.redtraffic.xyz/threesome.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetWoman.us",AdultIPTV.net Woman (720p) +http://live.redtraffic.net/woman.m3u8 diff --git a/streams/us_roku.m3u b/streams/us_roku.m3u new file mode 100644 index 000000000..f77a35b5d --- /dev/null +++ b/streams/us_roku.m3u @@ -0,0 +1,243 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (1080p) [Offline] +https://120sports-accdn-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AccuWeather.us",AccuWeather Now (1080p) [Geo-blocked] +https://amg00684-accuweather-accuweather-rokuus-0endj.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AFV.us",AFV (720p) +https://linear-12.frequency.stream/dist/roku/12/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVenEspanol.us",AFV en Español (720p) [Not 24/7] +https://linear-46.frequency.stream/dist/roku/46/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) +https://p1media-americasvoice-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) +https://bnc-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) [Offline] +https://bnc-roku-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewsnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BloodyDisgusting.us",Bloody Disgusting (1080p) +https://bloodydisgusting-ingest-roku-us.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (1080p) [Offline] +https://bonappetit-roku-us.amagi.tv/hls/amagi_hls_data_condenast-bonappetitroku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) +https://brat-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) +https://buzzr-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) +https://cheddar.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://cheddar-cheddar-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CineSureno.us",Cine Sureño (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/CineSureno-roku/master.m3u8 +#EXTINF:-1 tvg-id="CineSureno.us",Cine Sureño (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-cinesureno-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us" status="timeout",Cinevault Westerns (540p) +https://20995731713c495289784ab260b3c830.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_CinevaultWesterns/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) [Offline] +https://gsn-cinevault-westerns-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://circle-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cocoro.us",Cocoro (1080p) +https://4ea7abcc97144832b81dc50c6e8d6330.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Cocoro/playlist.m3u8 +#EXTINF:-1 tvg-id="Cocoro.us",Cocoro (1080p) [Offline] +https://coco-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://contvanime-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (1080p) [Offline] +https://aenetworks-crime360-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimeTime.us",Crime Time (1080p) +https://crimetimebamca-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Offline] +https://endemol-dealornodeal-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) +https://dovenow-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] +https://edgesports-roku.amagi.tv/hls/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) +https://estrellanews-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) [Offline] +https://estrellanews-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellanews-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) +https://estrellatv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) [Offline] +https://estrellatv-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellatv-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) [Offline] +https://euronews-euronews-spanish-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",Euronews English (720p) [Offline] +https://euronews-euronews-world-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FidoTV.us",Fido TV (1080p) [Offline] +https://fidotv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) [Not 24/7] +http://fox-foxsoul-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) [Offline] +https://fox-foxsoul-roku.amagi.tv/hls/amagi_hls_data_foxAAAAAA-foxsoul-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us",FTF (720p) +https://eleven-rebroadcast-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkWest.us",Game Show Network West (1080p) [Offline] +https://gsn-gameshowchannnel-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HallmarkChannelEast.us",Hallmark Channel East [Offline] +https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_yupptvfrn-hallmark-frndlytv/CDN/768x432_2340800/index.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (1080p) +https://happykids-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HauntTV.us",Haunt TV (1080p) +https://haunttv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Hi-YAH! (1080p) +https://linear-59.frequency.stream/dist/roku/59/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="Horrify.us",Horrify (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/Horrify-roku/master.m3u8 +#EXTINF:-1 tvg-id="Horrify.us",Horrify (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-horrify-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (1080p) +https://ft-ifood-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (1080p) [Offline] +https://ft-ifood-roku.amagi.tv/hls/amagi_hls_data_futuretod-ifood-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Juntos.us",Juntos (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/Juntos-roku/master.m3u8 +#EXTINF:-1 tvg-id="Juntos.us",Juntos (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-juntos-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KetchupTV.us",Ketchup TV (1080p) [Offline] +https://vod365-ketchuptv-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGamerTV.us",Kid Gamer TV [Offline] +https://studio71-roku-us.amagi.tv/hls/amagi_hls_data_studio71A-studio71roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Kidoodle.us",Kidoodle.TV (1080p) [Offline] +http://kidoodletv-kdtv-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidzBop.us",Kidz Bop (1080p) [Offline] +https://kidzbop-rokuus.amagi.tv/hls/amagi_hls_data_kidzbopAA-kidzbop-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LegoChannel.us",Lego Channel (1080p) +https://legochannel-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (1080p) [Offline] +http://aenetworks-ae-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop80sEast.us",Loop 80s East (1080p) [Geo-blocked] +https://55e014b3437040d08777729c863a2097.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Loop80s-1/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop80sEast.us",Loop 80s East (1080p) [Geo-blocked] +https://loop-80s-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop90sEast.us",Loop 90s East (1080p) [Offline] +https://loop-90s-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopCountry.us",Loop Country East (1080p) [Offline] +https://053155d1274848ed85106dbf20adc283.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_LoopCountry/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopCountryEast.us",Loop Country East (1080p) [Offline] +https://loop-country-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopEast.us",Loop Hip-Hop East (1080p) [Offline] +https://loop-hip-hop-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopHottestEast.us",Loop Hottest East (1080p) [Offline] +https://loop-hottest-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopPartyEast.us",Loop Party East (1080p) [Offline] +https://loop-party-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNature.us",Love Nature (1080p) +http://bamus-eng-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNatureEspanol.us",Love Nature Español (1080p) [Offline] +https://bamus-spa-roku.amagi.tv/hls/amagi_hls_data_bamusaAAA-roku-bam-spanish/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MadeinHollywood.us",Made in Hollywood (720p) [Offline] +https://connection3-ent.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (1080p) [Offline] +https://maverick-maverick-black-cinema-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (1080p) [Offline] +https://mavtv-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.fr",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoonBug.uk",MoonBug (1080p) [Offline] +https://moonbug-rokuus.amagi.tv/hls/amagi_hls_data_moonbugAA-moonbug-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MoonbugKids.uk",Moonbug Kids (1080p) +https://moonbug-rokuus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_lionsgate-moviesphere-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphere-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MST3K.us",MST3K (1080p) +https://mst3k-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) +https://mytime-roku-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (1080p) +https://b9860b21629b415987978bdbbfbc3095.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_NewKID/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (1080p) [Offline] +https://newidco-newkid-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) [Offline] +https://newsmax-roku-us.amagi.tv/hls/amagi_hls_data_newsmaxAA-newsmax/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] +https://nosey-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) [Offline] +https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (1080p) +http://oneamericanews-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OANEncore.us",OAN Encore [Offline] +https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/512x288_875600/index.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) +https://outsidetv-roku-us.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) +https://pac12-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkfongBabyShark.us",Pinkfong Baby Shark (1080p) +https://fc2f8d2d3cec45bb9187e8de15532838.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_BabySharkTV/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkfongBabyShark.us",Pinkfong Baby Shark (1080p) [Offline] +https://newidco-babysharktv-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://playerstv-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] +https://pocketwatch.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] +https://rtmtv-powernation-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (1080p) [Offline] +https://nosey-realnosey-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox1Spotlight.us",Redbox 1: Spotlight (1080p) [Offline] +https://spotlight-rokuus.amagi.tv/hls/amagi_hls_data_redboxAAA-spotlight-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCrush.us",RetroCrush TV (1080p) [Offline] +https://digitalmediarights-retrocrush-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ReutersNow.uk",Reuters Now (1080p) [Offline] +https://reuters-reutersnow-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us",Revry (720p) +https://linear-45.frequency.stream/dist/roku/45/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (1080p) +https://runtime-espanol-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RyanandFriends.us",Ryan and Friends (720p) [Offline] +https://pocketwatch-ryanandfriends-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us",Samuel Goldwyn Channel (1080p) +https://samuelgoldwyn-films-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynClassics.us",Samuel Goldwyn Classics (1080p) +https://samuelgoldwyn-classic-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel2.us",Skills + Thrills Channel 2 (1080p) [Offline] +https://aenetworks-skills-thrills-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalComedias.es",Sony Canal Comedias (720p) [Offline] +https://sony-comedias-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalCompetencias.es",Sony Canal Competencias (720p) [Offline] +https://sony-competencias-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalNovelas.us",Sony Canal Novelas (720p) [Offline] +https://sony-novelas-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalNovelas.es",Sony Canal Novelas (720p) [Offline] +https://sony-novelas-1.roku.wurl.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Offline] +https://stadium.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) +https://tastemade-es8intl-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) [Offline] +https://tastemade-es8intl-roku.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es8intl-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCarolBurnettShow.us",The Carol Burnett Show (1080p) +https://carolburnett-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCraftistry.us",The Craftistry (1080p) +https://studio71-craftistry-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCraftistry.us",The Craftistry (1080p) [Offline] +https://studio71-craftistry-roku.amagi.tv/hls/amagi_hls_data_studio71A-craftistry-rokuA/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (1080p) [Offline] +https://thedesignnetwork-tdn-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThisOldHouse.us",This Old House (1080p) [Offline] +https://thisoldhouse-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TopCine.us",Top Cine (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/TopCine-roku/master.m3u8 +#EXTINF:-1 tvg-id="TopCine.us",Top Cine (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-topcine-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) +https://unbeaten-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) [Offline] +https://unbeaten-roku.amagi.tv/hls/amagi_hls_data_inverleig-unbeaten-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) [Offline] +https://venntv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us",WeatherNation (720p) [Geo-blocked] +https://weathernationtv.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (1080p) [Offline] +https://whistletv-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (1080p) [Offline] +https://endemol-wipeoutxtra-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) +https://xplore-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) +https://yahoo-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.nz",Zoo Moo (1080p) [Offline] +https://rockentertainment-zoomoo-1.roku.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_samsung.m3u b/streams/us_samsung.m3u new file mode 100644 index 000000000..bb493b193 --- /dev/null +++ b/streams/us_samsung.m3u @@ -0,0 +1,207 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (720p) [Offline] +https://120sports-accdn-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (720p) [Offline] +https://amc-amcpresents-2.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiancrush.us",Asiancrush (720p) [Offline] +https://ac-samsung.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BCCGaming.us" status="error",BCC Gaming (720p) [Offline] +https://arcade-cloud.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (1080p) +https://bonappetit-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BounceXL.us",Bounce XL (720p) +https://c217322ca48e4d1e98ab33fe41a5ed01.mediatailor.us-east-1.amazonaws.com/v1/master/04fd913bb278d8775298c26fdca9d9841f37601f/Samsung_BounceXL/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) +https://brat-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) +https://buzzr-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/samsungus-buzzr-samsungtv-us/playlist.m3u8 +#EXTINF:-1 tvg-id="CanelaTV.us",Canela TV (720p) [Offline] +https://canelamedia-canelatv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) +https://cheddar.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) [Offline] +https://gsn-cinevault-westerns-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://circle-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Not 24/7] +https://contv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (720p) +https://aenetworks-crime360-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DangerTV.us",Danger TV (720p) [Offline] +https://dangertv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (720p) [Offline] +https://endemol-dealornodeal-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DegrassiTheNextGeneration.us",Degrassi The Next Generation (720p) +https://dhx-degrassi-1-us.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Offline] +https://docurama.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] +https://dust.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) +https://edgesport-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) +https://edgesport-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (US) (720p) [Timeout] +https://img-edgesport.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) +https://estrellanews-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="",ESTV (1080p) +https://estv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (720p) +https://failarmy-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsNow.us",FOX News Now (720p) +https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) +https://fox-foxsoul-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us",FTF (540p) +https://elevensports.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) +https://fueltv-fueltv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (720p) [Offline] +https://gsn-gameshowchannnel-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Offline] +https://gravitas-movies.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) +https://gustotv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.us",Holly Wire (720p) [Offline] +https://hollywire.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HSN.us",HSN (720p) +https://hsn.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Hungry.us",Hungry (720p) [Offline] +https://food.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) +https://ign-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://insighttv-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) +https://introuble-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) +https://inwonder-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="IonPlus.us",Ion Plus (1080p) +https://ion-plus.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) +http://lawandcrime.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (720p) +https://aenetworks-ae-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.fr",Magellan TV (720p) [Offline] +https://magellantv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) [Offline] +https://maverick-maverick-black-cinema-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us",MavTV (720p) [Offline] +https://mavtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MHzNow.us",MHz Now (720p) [Offline] +https://mhz-samsung-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (720p) +https://dmr-midnightpulp-3-us.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieMix.us",MovieMix (720p) [Offline] +https://moviemix.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) +https://moviesphere-samsung-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) +https://mytimeuk-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKMovies.us",New K-Movies (720p) [Offline] +https://newidco-newmovies-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (720p) [Offline] +https://newidco-newkid-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) +https://newsmax-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) [Offline] +https://newsy.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us",Nosey (720p) [Offline] +https://nosey-2.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (720p) +https://outside-tv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) +https://pac12-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://playerstv-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] +https://pocketwatch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] +https://rtmtv-samsung.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] +https://rtmtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PursuitUp.us",Pursuit Up (720p) [Offline] +https://pursuitup.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Qubo.us",Qubo (720p) [Offline] +http://ion-qubo-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QVC.us",QVC (720p) +https://qvc.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RiffTrax.us",RiffTrax (720p) [Offline] +https://rifftrax.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (720p) +https://shout-factory.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel3.us",Skills + Thrills Channel 3 (720p) [Offline] +https://aenetworks-skills-thrills-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) +https://sportsgrid-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) +https://stadium.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.us",Stingray Naturescape (1080p) +https://stingray-naturescape-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQello.ca",Stingray Qello (1080p) +https://samsung.ott-channels.stingray.com/qello/master.m3u8 +#EXTINF:-1 tvg-id="STIRROutdoorAmerica.us",STIRR Outdoor America (720p) [Offline] +https://obsession-media-sinclair.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SurfNowTV.us",Surf Now TV (720p) [Offline] +https://1091-surfnowtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (720p) [Offline] +https://tastemade.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) +https://tastemade-es16tm-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TGJunior.us",TG Junior (720p) [Offline] +https://tg-junior.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) +https://thedesignnetwork-tdn-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) +https://the-pet-collective-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (720p) [Offline] +https://previewchannel-previewchannel-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheYoungTurks.us",The Young Turks (TYT) (720p) +https://tyt-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThisOldHouse.us",This Old House (720p) +https://26487f8be0614420a64b6f5964563a75.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Samsung_ThisOldHouse/playlist.m3u8 +#EXTINF:-1 tvg-id="TinyHouseNation.us",Tiny House Nation (720p) [Offline] +https://aenetworks-tinyhousenation-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Offline] +https://toon-goggles.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://venntv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (720p) [Offline] +https://waypointtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAbsoluteReality.us",We TV Absolute Reality (720p) [Offline] +https://amc-absolutereality-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAllWeddings.us",We TV All Weddings (720p) [Offline] +https://amc-allweddings-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us",Weather Nation (720p) [Offline] +https://weathernationtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) +https://jukin-weatherspy-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] +https://whistle-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (720p) [Offline] +https://endemol-wipeoutxtra-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) [Offline] +https://world-poker-tour.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) +http://xlpore-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) +https://yahoo-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) +https://younghollywood-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.us",Zoo Moo (720p) [Offline] +https://rockentertainment-zoomoo-1.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_ssh101.m3u b/streams/us_ssh101.m3u new file mode 100644 index 000000000..12a75f775 --- /dev/null +++ b/streams/us_ssh101.m3u @@ -0,0 +1,39 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABTelevision.pe",ABTelevision (480p) [Not 24/7] +https://tna5.bozztv.com/ABTelevision2020/index.m3u8 +#EXTINF:-1 tvg-id="AigaioTV.gr",Aigaio TV (360p) [Not 24/7] +https://tna5.bozztv.com/aigaiotv1/index.m3u8 +#EXTINF:-1 tvg-id="AVCHD.ar",AVC HD (Monte Caseros | Corrientes) (360p) [Not 24/7] +https://tna5.bozztv.com/AVCHD/index.m3u8 +#EXTINF:-1 tvg-id="Canal1.co",Canal 1 (432p) [Not 24/7] +https://tna5.bozztv.com/LiveCH007/index.m3u8 +#EXTINF:-1 tvg-id="CanalCaracol.co",Canal Caracol (432p) +https://tna5.bozztv.com/LiveCH005/index.m3u8 +#EXTINF:-1 tvg-id="CanalCaracolHD2.co",Canal Caracol HD2 (432p) [Not 24/7] +https://tna5.bozztv.com/LiveCH008/index.m3u8 +#EXTINF:-1 tvg-id="CanalRCN.co",Canal RCN (432p) [Not 24/7] +https://tna5.bozztv.com/LiveCH004/index.m3u8 +#EXTINF:-1 tvg-id="ChannelB.bd",Channel B (1080p) [Not 24/7] +https://tna5.bozztv.com/channelb/index.m3u8 +#EXTINF:-1 tvg-id="CityTV.co",City TV (Bogotà | Cundinamarca) (432p) [Not 24/7] +https://tna5.bozztv.com/LiveCH006/index.m3u8 +#EXTINF:-1 tvg-id="CLTV36.ph",CLTV 36 (480p) [Not 24/7] +https://tna5.bozztv.com/cltv36/index.m3u8 +#EXTINF:-1 tvg-id="ConectaTV.mx",Conecta TV (720p) [Not 24/7] +https://tna5.bozztv.com/Conectatvmexico/index.m3u8 +#EXTINF:-1 tvg-id="JessTV.ca",Jess TV (Lethbridge) (480p) [Not 24/7] +https://tna5.bozztv.com/jesstv/index.m3u8 +#EXTINF:-1 tvg-id="KallpaTV.pe",Kallpa TV (Chimbote) (720p) [Not 24/7] +https://tna5.bozztv.com/canaltv/index.m3u8 +#EXTINF:-1 tvg-id="LatacungaTV.ec",Latacunga TV (720p) [Not 24/7] +https://tna5.bozztv.com/latacungatv2021/index.m3u8 +#EXTINF:-1 tvg-id="OrbitaFM.sv",Órbita FM (720p) [Not 24/7] +https://tna5.bozztv.com/OrbitaFM/index.m3u8 +#EXTINF:-1 tvg-id="RadioSistema.pe",Radio Sistema (Ica) (720p) [Not 24/7] +https://tna5.bozztv.com/SISTEMA/index.m3u8 +#EXTINF:-1 tvg-id="SolarTelevision.pe",Solar Televisión (Abancay) (360p) [Not 24/7] +https://tna5.bozztv.com/televisionsolar/index.m3u8 +#EXTINF:-1 tvg-id="UchuTV.pe",Uchu TV (Cusco) (720p) [Not 24/7] +https://tna5.bozztv.com/Cusco/index.m3u8 +#EXTINF:-1 tvg-id="WORODT.pr",WORO-DT (720p) [Not 24/7] +https://tna5.bozztv.com/worodt/playlist.m3u8 diff --git a/streams/us_stirr.m3u b/streams/us_stirr.m3u new file mode 100644 index 000000000..2c2aeea1e --- /dev/null +++ b/streams/us_stirr.m3u @@ -0,0 +1,515 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AFV.us",AFV (720p) +https://dai.google.com/linear/hls/event/18_lZXPySFa5_GRVEbOX_A/master.m3u8 +#EXTINF:-1 tvg-id="AmericavsAddiction.us",America vs. Addiction (720p) +https://dai.google.com/linear/hls/event/-A9339ixSzydnZQZHd1u2A/master.m3u8 +#EXTINF:-1 tvg-id="beINSportsXtra.us",beIN Sports Xtra (1080p) +https://dai.google.com/linear/hls/event/3e-9BOvHQrCI9hboMYjb6w/master.m3u8 +#EXTINF:-1 tvg-id="BigLifeTV.us",Big Life TV (720p) +https://biglife.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTV.us",Bloomberg TV (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/NiumF4GTSGe-pXM-iMsP0A/master.m3u8 +#EXTINF:-1 tvg-id="BritCom.in",BritCom (720p) [Offline] +https://dai.google.com/linear/hls/event/IdHTuehZQPClis-gJaZkFQ/master.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) +https://dai.google.com/linear/hls/event/wFZ1ufQ8ToaSdPgGtbBbpw/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) +https://dai.google.com/linear/hls/event/Sid4xiTQTkCT1SLu6rjUSQ/master.m3u8 +#EXTINF:-1 tvg-id="KPIXTV.us",CBSN Bay Area CA (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/VE8b4n-YStusEGv5Z2NmsQ/master.m3u8 +#EXTINF:-1 tvg-id="",CBSN Boston MA (720p) +https://dai.google.com/linear/hls/event/26FJK7wRSo6RhPsK70XS_w/master.m3u8 +#EXTINF:-1 tvg-id="WBBM.us",CBSN Chicago IL (720p) +https://dai.google.com/linear/hls/event/DWt8iR1YQ-OJQsxczu8KfQ/master.m3u8 +#EXTINF:-1 tvg-id="KTVTTV.us",CBSN Dallas Ft Worth TX (720p) +https://dai.google.com/linear/hls/event/o5J3g4U9T16CvYnS7Qd86Q/master.m3u8 +#EXTINF:-1 tvg-id="KCNCTV.us",CBSN Denver CO (720p) +https://dai.google.com/linear/hls/event/EUo67MWSRh6toPi0heJKnQ/master.m3u8 +#EXTINF:-1 tvg-id="KCBSTV.us",CBSN Los Angeles CA (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/TxSbNMu4R5anKrjV02VOBg/master.m3u8 +#EXTINF:-1 tvg-id="",CBSN Minnesota MN (720p) +https://dai.google.com/linear/hls/event/zcWPVCfURNSPxeidcckQLA/master.m3u8 +#EXTINF:-1 tvg-id="WLNYTV.us",CBSN New York NY (720p) +http://dai.google.com/linear/hls/event/rtcMlf4RTvOEkaudeany5w/master.m3u8 +#EXTINF:-1 tvg-id="KYWTV.us",CBSN Philly PA (720p) +https://dai.google.com/linear/hls/event/Xu-ITJ2GTNGaxGn893mmWg/master.m3u8 +#EXTINF:-1 tvg-id="KDKA.us",CBSN Pittsburgh PA (720p) +https://dai.google.com/linear/hls/event/i5SXVKI4QIuV-eF2XAH4FQ/master.m3u8 +#EXTINF:-1 tvg-id="CGTNEnglish.cn",CGTN English (432p) [Not 24/7] +https://dai.google.com/linear/hls/event/r4sa-f6GSN2XIvzKv5jVng/master.m3u8 +#EXTINF:-1 tvg-id="Charge.us",Charge! (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/37eb732888614810b512fdd82604244e.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://dai.google.com/linear/hls/event/frfwucAPTVunrpitYiymwg/master.m3u8 +#EXTINF:-1 tvg-id="ChickenSoupForTheSoul.us",Chicken Soup For The Soul (1080p) +https://dai.google.com/linear/hls/event/2C5P0JGUSj65s8KpeyIDcQ/master.m3u8 +#EXTINF:-1 tvg-id="CineLife.us",CineLife (720p) +https://magselect-stirr.amagi.tv/playlist720p.m3u8 +#EXTINF:-1 tvg-id="CineLife.us",CineLife (1080p) +https://magselect-stirr.amagi.tv/playlist1080p.m3u8 +#EXTINF:-1 tvg-id="Comet.us",Comet (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://contv-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://dai.google.com/linear/hls/event/o8Smo_gsSAm26uW9Xkww_g/master.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Offline] +http://contv.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimeStory.us",Crime Story [Offline] +https://dai.google.com/linear/hls/event/HgozmUlQQviIXFUF23mloA/master.m3u8 +#EXTINF:-1 tvg-id="Dabl.us",Dabl (1080p) +http://dai.google.com/linear/hls/event/oIKcyC8QThaW4F2KeB-Tdw/master.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Not 24/7] +https://endemol-dealornodeal-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DickCavett.us",Dick Cavett (720p) +https://dai.google.com/linear/hls/event/-NacIpMDTZ2y1bhkJN96Vg/master.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) +https://dai.google.com/linear/hls/event/dfbBGQhPQQqypdEAjpUGlA/master.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (1080p) +https://dai.google.com/linear/hls/event/xuMJ1vhQQDGjEWlxK9Qh4w/master.m3u8 +#EXTINF:-1 tvg-id="DUSTx.us",DUSTx (720p) [Timeout] +https://dust.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsportSTIRR.uk",EDGEsport (STIRR) (1080p) [Offline] +https://dai.google.com/linear/hls/event/d4zeSI-dTuqizFrByjs3OA/master.m3u8 +#EXTINF:-1 tvg-id="ETLive.us",ET Live (1080p) +https://dai.google.com/linear/hls/event/xrVrJYTmTfitfXBQfeZByQ/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/hW5jMh7dTRK1UXW5fTH07A/master.m3u8 +#EXTINF:-1 tvg-id="Futurism.us",Futurism (720p) +https://dai.google.com/linear/hls/event/YakHdnr_RpyszducVuHOpQ/master.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (720p) +https://dai.google.com/linear/hls/event/ChWV1GupQOWE92uG4DvbkQ/master.m3u8 +#EXTINF:-1 tvg-id="Hallypop.kr",Hallypop (1080p) [Offline] +https://dai.google.com/linear/hls/event/ctGD-E18Q0-3WScFd_tK5w/master.m3u8 +#EXTINF:-1 tvg-id="HorseShoppingChannel.us",Horse Shopping Channel (720p) +https://uplynkcontent.sinclairstoryline.com/channel/26c7a77fd6ed453da6846a16ad0625d9.m3u8 +#EXTINF:-1 tvg-id="InsightTV.us",Insight TV (1080p) +https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (1080p) +https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 +#EXTINF:-1 tvg-id="KidsClick.us",KidsClick (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/1698bf57810a48c486b83d542bca298d.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/3w3PsYzZQzS8lyRfi7e4mQ/master.m3u8 +#EXTINF:-1 tvg-id="LIVExLIVE.us",LIVExLIVE (1080p) +https://dai.google.com/linear/hls/event/xC8SDBfbTKCTCa20kFJQXQ/master.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.us",Magellan TV (720p) +https://dai.google.com/linear/hls/event/5xreV3X4T9WxeIbrwOmdMA/master.m3u8 +#EXTINF:-1 tvg-id="Mobcrush.us",Mobcrush (720p) [Offline] +https://dai.google.com/linear/hls/event/LGDVXxxyT8SxrL4-ZodxKw/master.m3u8 +#EXTINF:-1 tvg-id="MusicBaeble.us",Music Baeble (1080p) [Offline] +https://dai.google.com/linear/hls/event/HuoWULBBQFKJalbtsd7qPw/master.m3u8 +#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) +https://uplynkcontent.sinclairstoryline.com/channel/ddd76fdc1c0a456ba537e4f48e827d3e.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) [Offline] +https://newsy.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) [Offline] +https://dai.google.com/linear/hls/event/0PopB0AoSiClAGrHVHBTlw/master.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) +https://dai.google.com/linear/hls/event/WB-7LjdsRVm0wVoLZjR8mA/master.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) +https://outsidetvplus-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QelloConcerts.us",Qello Concerts (1080p) +https://dai.google.com/linear/hls/event/BakMHO8xRSmGKYeiyhsq3A/master.m3u8 +#EXTINF:-1 tvg-id="Quicktake.us",Quicktake (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/6ANW1HGeSTKzJlnAa9u1AQ/master.m3u8 +#EXTINF:-1 tvg-id="RetroCrush.us",RetroCrush TV (720p) +https://digitalmediarights-retrocrush-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RingofHonorWrestling.us",Ring of Honor Wrestling (720p) +https://stadium-ringofhonor-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) +https://dai.google.com/linear/hls/event/JX5KKhKKRPqchP3LfXD-1A/master.m3u8 +#EXTINF:-1 tvg-id="SoReal.us",So...Real (1080p) +https://dai.google.com/linear/hls/event/VMzvtHhOQdOAzbV_hQKQbQ/master.m3u8 +#EXTINF:-1 tvg-id="SportsTVPlus.us",Sports TV Plus (1080p) +https://dai.google.com/linear/hls/event/9FKrAqCfRvGfn3tPbVFO-g/master.m3u8 +#EXTINF:-1 tvg-id="Sportswire.us",Sportswire (1080p) +https://dai.google.com/linear/hls/event/8R__yZf7SR6yMb-oTXgbEQ/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) +https://stirr.ott-channels.stingray.com/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassica.ca",Stingray Classica (1080p) +https://stirr.ott-channels.stingray.com/iota-classica/index.m3u8 +#EXTINF:-1 tvg-id="StingrayDjazz.ca",Stingray Djazz (1080p) +https://dai.google.com/linear/hls/event/C-lfmhUVTGeDNWwU13_EgA/master.m3u8 +#EXTINF:-1 tvg-id="",Stingray djazz (1080p) +https://stirr.ott-channels.stingray.com/djazz/master.m3u8 +#EXTINF:-1 tvg-id="StingrayEverything80s.ca",Stingray Everything 80s (1080p) +https://stirr.ott-channels.stingray.com/128/master.m3u8 +#EXTINF:-1 tvg-id="StingrayFlashback70s.ca",Stingray Flashback 70s (1080p) +https://stirr.ott-channels.stingray.com/115/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) +https://stirr.ott-channels.stingray.com/107/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHolidayHits.ca",Stingray Holiday Hits (1080p) +https://stirr.ott-channels.stingray.com/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) +https://stirr.ott-channels.stingray.com/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.us",Stingray Karaoke (720p) +https://dai.google.com/linear/hls/event/5bqbG8j7T_6_qMONC1SDsg/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.us",Stingray Naturescape (1080p) +https://dai.google.com/linear/hls/event/6RPZlzksTCyB1euPqLcBZQ/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Not 24/7] +https://stirr.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="STIRR2020Live.us",STIRR 2020 Live (720p) [Offline] +https://dai.google.com/linear/hls/event/mMP0Ny8OTb2Ev2EvsiIlrg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRAmericanClassics.us",STIRR American Classics (720p) +https://dai.google.com/linear/hls/event/0e06oV-NTI2ygS2MRQk9ZA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBiographies.us",STIRR Biographies (720p) [Offline] +https://dai.google.com/linear/hls/event/OzhtmoTQQjSNOimI6ikGCQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBlackCinema.us",STIRR Black Cinema (768p) [Not 24/7] +https://dai.google.com/linear/hls/event/9WuQ_LseR12mMx2-QW41XQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBonanza.us",STIRR Bonanza (720p) [Offline] +https://dai.google.com/linear/hls/event/LeVr-Z0_Q4qMDdXx7zr22w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCharge.us",STIRR Charge! (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/e1QjWFRNSR2YFYGsPbkfgg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRChoppertown.us",STIRR Choppertown (720p) +https://dai.google.com/linear/hls/event/N3c94WZQQq2fruixzfcCUQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCinehouse.us",STIRR Cinehouse (720p) +https://dai.google.com/linear/hls/event/28oUp4GcQ-u49U4_jjC4Iw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCineLife.us",STIRR CineLife (1080p) +https://dai.google.com/linear/hls/event/PFJ1Jhd6SsSMcu3qq86wzQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCity.us",STIRR City (720p) +https://dai.google.com/linear/hls/event/4aD5IJf0QgKUJwPbq2fngg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAbilene.us",STIRR City Abilene (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/uxPBn5ErTQ-FOjxIYle2PA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAlbany.us",STIRR City Albany (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/fD3VBzTxRXGz-v7HV0vryQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAlbany.us",STIRR City Albany (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/LT14Y2LdQSWx9OQCmgVfuA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAmarillo.us",STIRR City Amarillo (720p) +https://dai.google.com/linear/hls/event/qvOGhZEeQh-s6TMFz7dVcg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAustin.us",STIRR City Austin (720p) +https://dai.google.com/linear/hls/event/zDh7VBx8S7Sog5vzcXuehg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBakersfield.us",STIRR City Bakersfield (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/-4GLQIcZTUWzP8vDAXNQsQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBaltimore.us",STIRR City Baltimore (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/jCNW8TtPRe6lnJMMVBZWVA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBayCity.us",STIRR City Bay City (720p) +https://dai.google.com/linear/hls/event/kJPGlFKuS0itUoW7TfuDYQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBeaumont.us",STIRR City Beaumont (720p) +https://dai.google.com/linear/hls/event/FKoa3RaEQxyyrf8PfPbgkg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBeaumontPortArthur.us",STIRR City Beaumont Port Arthur (720p) +https://dai.google.com/linear/hls/event/tlvrrqidRaG0KbLN4Hd5mg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBirmingham.us",STIRR City Birmingham (720p) +https://dai.google.com/linear/hls/event/4RH6FntvSLOIv5FB-p4I8w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBoise.us",STIRR City Boise (720p) +https://dai.google.com/linear/hls/event/EXltT2IOQvCIn8v23_15ow/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCadillac.us",STIRR City Cadillac (720p) +https://dai.google.com/linear/hls/event/do9arGJBTD--KARQ056kpw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCedarRapids.us",STIRR City Cedar Rapids (720p) +https://dai.google.com/linear/hls/event/zPJC-rOUTg28uymLdmYw5w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChampaign.us",STIRR City Champaign (720p) +https://dai.google.com/linear/hls/event/YLDvM8DGQyqsYnDsgxOBPQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCharleston.us",STIRR City Charleston (720p) +https://dai.google.com/linear/hls/event/kMNMCCQsQYyyk2n2h_4cNw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCharlestonHuntington.us",STIRR City Charleston Huntington (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/fLqJePs_QR-FRTttC8fMIA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChattanooga.us",STIRR City Chattanooga (720p) +https://dai.google.com/linear/hls/event/7_v7qMjnQWGZShy2eOvR5g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChicoRedding.us",STIRR City Chico-Redding (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/sHnor7AERX60rGA1kR_wPA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCincinnati.us",STIRR City Cincinnati (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/ZaLvGYKiTfuSYgJuBZD67Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbia.us",STIRR City Columbia (480p) +https://dai.google.com/linear/hls/event/btXotLiMRvmsa5J5AetBGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbia.us",STIRR City Columbia (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/nkNBP1eHT_GQwS7oYq23zw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbus1.us",STIRR City Columbus #1 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/wV5ExXM9RxabBzbWnVv9RA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbus2.us",STIRR City Columbus #2 (720p) +https://dai.google.com/linear/hls/event/QLfrYVtERpCnzM7qE_PkUw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityDayton.us",STIRR City Dayton (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/nqvIiznDQO60CBNaJ5mmdQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityElPaso1.us",STIRR City El Paso #1 (720p) +https://dai.google.com/linear/hls/event/MYhAOCTqQA6QFBdc1xwULQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityElPaso2.us",STIRR City El Paso #2 (720p) +https://dai.google.com/linear/hls/event/Exp7zxEPSLWuEhMoD2voOg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield1.us",STIRR City Eugene Springfield #1 (720p) +https://dai.google.com/linear/hls/event/Ep4QBzH-TKW0iLhPVGuCvA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield2.us",STIRR City Eugene Springfield #2 (720p) +https://dai.google.com/linear/hls/event/bERQw8-YRoK3MtJ0UUaI5w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityFlorence.us",STIRR City Florence (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/6Ll-qQyAQlWgCt4PhH11Kw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityFresnoVisalia.us",STIRR City Fresno-Visalia (720p) +https://dai.google.com/linear/hls/event/tFAJ7xPcTYaLKwIfUA-JIw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGainesville.us",STIRR City Gainesville (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Ybz6nJKqSS2fcQYflsmpRw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGrandRapids.us",STIRR City Grand Rapids (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/leOKmL9fQ6eZyhdoROSh5Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenBay.us",STIRR City Green Bay (720p) +https://dai.google.com/linear/hls/event/a6lsWNYDQwyM9fjytUCrcw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenvilleAsheville.us",STIRR City Greenville Asheville (720p) +https://dai.google.com/linear/hls/event/trvuY4TqQCmrAKFTlr6tPQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenvilleNewBern.us",STIRR City Greenville New Bern (720p) +https://dai.google.com/linear/hls/event/B6RsXGIZSVqeVZGZIEZESg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityHarrisburg.us",STIRR City Harrisburg (720p) +https://dai.google.com/linear/hls/event/W_NyV_9eQ-qa0XDSMfYkEg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityHastings.us",STIRR City Hastings (720p) +https://dai.google.com/linear/hls/event/xtKyBDIFSZa6cT4Of9yaGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityJohnstownAltoona.us",STIRR City Johnstown Altoona (720p) +https://dai.google.com/linear/hls/event/BXZlH0kXTeGczlQ49-0QFQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLasVegas.us",STIRR City Las Vegas (720p) +https://dai.google.com/linear/hls/event/yDGZP35hTsqdf2rwaP1BGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLewiston.us",STIRR City Lewiston (720p) +https://dai.google.com/linear/hls/event/knBsxnquSYqFXTP_UzcGgw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLittleRock.us",STIRR City Little Rock (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/MqeaRgFBR2WJ_40ngbDruQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLosAngeles.us",STIRR City Los Angeles (720p) +https://dai.google.com/linear/hls/event/n3PVAFmPTJSVYjdSVf7XZw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLynchburgRoanoke.us",STIRR City Lynchburg Roanoke (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Fwm4J95UQi67l2FEV7N5kQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMacon.us",STIRR City Macon (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/PPMxI7GZSRG6Kgkp2gSF1g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMedford.us",STIRR City Medford (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/1g9qH9IOSIGGwAqw8fPzmw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMilwaukee.us",STIRR City Milwaukee (720p) +https://dai.google.com/linear/hls/event/jWaxnXHPQjGX1yTxuFxpuw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMinneapolis.us",STIRR City Minneapolis (720p) +https://dai.google.com/linear/hls/event/0P8RZiJkSBWfVDtjy-IiIQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMissoula.us",STIRR City Missoula (720p) +https://dai.google.com/linear/hls/event/ARX9M-X8RieADdAEYPXNuA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityNashville.us",STIRR City Nashville (720p) +https://dai.google.com/linear/hls/event/IG9ThaPaTwCojeoEWVNZRQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityNorfolkPortsmouth.us",STIRR City Norfolk Portsmouth (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/QuSOUXM4RPaC5zL4J8ZY3w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityOklahomaCity.us",STIRR City Oklahoma City (720p) +https://dai.google.com/linear/hls/event/pRd-k6tZSiCRsw_f51Vcvg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityOttumwa.us",STIRR City Ottumwa (720p) +https://dai.google.com/linear/hls/event/jH-4z3EkQO-fLYYgjX7d3g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPensacola.us",STIRR City Pensacola (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/CAU96LSyR_e7MSeK6UTmGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPittsburgh.us",STIRR City Pittsburgh (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/qJU_NkxXQoCbACvG5BWrXQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPortland.us",STIRR City Portland (720p) +https://dai.google.com/linear/hls/event/npdISdLWSIa1E_j7NCUDBg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPortland.us",STIRR City Portland (720p) +https://dai.google.com/linear/hls/event/OaqAqJ0yQPiEIUIYqD7IGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityProvidence.us",STIRR City Providence (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/5hLTCUyrQcS3B-NF8fNp-g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityQuincy.us",STIRR City Quincy (720p) +https://dai.google.com/linear/hls/event/bjWdbDzwTMOMd8Wmxl4rwg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityRaleighDurham.us",STIRR City Raleigh Durham (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/86JIujPNRWiVvtfzksp8QQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityReno.us",STIRR City Reno (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/0Zb5SSQcTme6P7FYwwAwcQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityRochester.us",STIRR City Rochester (720p) +https://dai.google.com/linear/hls/event/FftwN8CLTnaX1pFHztXlYw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySaltLakeCity.us",STIRR City Salt Lake City (720p) +https://dai.google.com/linear/hls/event/1bMiswhQQxqH-X8D3qbmKQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySanAntonio.us",STIRR City San Antonio (720p) +https://dai.google.com/linear/hls/event/TIQuLmldSj2SqS8y2ud9Xg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySeattle.us",STIRR City Seattle (720p) +https://dai.google.com/linear/hls/event/VLEduzwwQfGSwV4eNdkj0g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySiouxCity.us",STIRR City Sioux City (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/0Uj4AmiOSw6oTX9ilyV2rQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySouthBend.us",STIRR City South Bend (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/VGpvNIxIQRO7PXYRy7P0qw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySpringfield2.us",STIRR City Springfield #2 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/IaAlq3prS8Ghiq0FhLtzGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityStLouis.us",STIRR City St. Louis (234p) [Not 24/7] +https://dai.google.com/linear/hls/event/O5W1HC47QEKGc5tyscvsLw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySyracuse.us",STIRR City Syracuse (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/HSX_ZpxDQNy5aXzJHjhGGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityToledo.us",STIRR City Toledo (720p) +https://dai.google.com/linear/hls/event/1QSZA8OjS1y2Q64uTl5vWQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityTriCities.us",STIRR City Tri-Cities (720p) +https://dai.google.com/linear/hls/event/KPOafkGTRle7jOcRb9_KFw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityTulsa.us",STIRR City Tulsa (720p) +https://dai.google.com/linear/hls/event/5kbHZRGGS--RHp41xaUJHQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWashingtonDC.us",STIRR City Washington D.C. (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/_VmeKujXTf-nc9Lr2NO6tA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWestPalmBeach.us",STIRR City West Palm Beach (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/ji4LMCwtRCOw3TrRUKlQMQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWheelingSteubenville.us",STIRR City Wheeling Steubenville (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/dcaYfE2nRnqC6eAvCFWfzQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWilkesBarreScranton.us",STIRR City Wilkes Barre Scranton (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/jlf2tRLPTg2xjMtKe5ey-w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityYakimaPasco1.us",STIRR City Yakima Pasco #1 (720p) +https://dai.google.com/linear/hls/event/Ae0L5AucTcqefaIvaS504A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityYakimaPasco2.us",STIRR City Yakima Pasco #2 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/FJejnzFjSFGpaogi0GzPyw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRClassicTV.us",STIRR Classic TV (480p) +https://dai.google.com/linear/hls/event/8JiQCLfVQw6d7uCYt0qDJg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRClassica.us",STIRR Classica (1080p) +https://dai.google.com/linear/hls/event/AaFxJXOhQl-BsTVC9OCunQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComedy.us",STIRR Comedy (720p) [Offline] +https://dai.google.com/linear/hls/event/dGP9Z-PNRPCgGQSDEzxqYg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComedyDynamics.us",STIRR Comedy Dynamics (1080p) +https://dai.google.com/linear/hls/event/NJK_yxrcTBqULaHt-wi0Wg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComet.us",STIRR Comet (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/83L2OqtGSZ6lbWt8ODomWg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCooks.us",STIRR Cooks (720p) [Offline] +https://dai.google.com/linear/hls/event/CHaUZsCfSyS2CVF7I-NktA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCOVID19News.us",STIRR COVID-19 News (720p) [Offline] +https://dai.google.com/linear/hls/event/08ADpEIeQ8iZOjusLsZbCg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRDealorNoDeal.us",STIRR Deal or No Deal (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/9cq79TtPR6WbyaQGeDlHjA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRDocurama.us",STIRR Docurama (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/Hx_PEMEsSzOCcZgy0Tq2YQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRElectricNow.us",STIRR Electric Now (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/KsvJAc81Qoewj6opYso6Fw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRESR24x7eSportsNetwork.us",STIRR ESR 24x7 eSports Network (720p) [Offline] +https://dai.google.com/linear/hls/event/7-91LhuBQNONHzAbrFQr-Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRevrgrn.us",STIRR evrgrn (1080p) +https://dai.google.com/linear/hls/event/TDUiZE57Q3-CS7Its4kLDQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFailArmy.us",STIRR FailArmy (720p) +https://dai.google.com/linear/hls/event/7tuuoX1wSsCTaki1HqJFYw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFamily.us",STIRR Family (720p) +https://playoutengine.sinclairstoryline.com/playout/242b1153-0129-484e-8ec8-378edd691537.m3u8 +#EXTINF:-1 tvg-id="STIRRFilmRiseFreeMovies.us",STIRR FilmRise Free Movies (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Va1QEor0SWO_x_SQNyaF0w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFit.us",STIRR Fit (720p) [Offline] +https://dai.google.com/linear/hls/event/ZidoyK28TXyMRTZU7rFuEQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRForensicsFiles.us",STIRR Forensics Files (720p) [Offline] +https://dai.google.com/linear/hls/event/fJj7BuL_Tv2KjCnNAmLK8g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGravitasMovies.us",STIRR Gravitas Movies (720p) +https://dai.google.com/linear/hls/event/EpqgwRlpQKq73ySVSohJWA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGravitasMovies.us",STIRR Gravitas Movies (720p) +https://gravitas-movies.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRGreatestAmericanHero.us",STIRR Greatest American Hero (720p) [Offline] +https://dai.google.com/linear/hls/event/zaW9PVeXQeamNt6SZ9FsOg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGustoTV.us",STIRR Gusto TV (1080p) +https://dai.google.com/linear/hls/event/tdSCy5u2R5WtCLXX4NwDtg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHellsKitchen.us",STIRR Hell's Kitchen (720p) [Offline] +https://dai.google.com/linear/hls/event/SynaOtTyTq2y_N7BrGTz9Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHorrorMovies.us",STIRR Horror Movies (768p) +https://dai.google.com/linear/hls/event/3NTKKQBuQtaIrcUBj20lyg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHSN.us",STIRR HSN (720p) +https://dai.google.com/linear/hls/event/akursTHNTo6qGf1TtlHNsw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHunter.us",STIRR Hunter (720p) [Offline] +https://dai.google.com/linear/hls/event/Z-kHpGoATwyuxIuQEY_3fw/master.m3u8 +#EXTINF:-1 tvg-id="ItsShowtimeAtTheApollo.us",STIRR It's Showtime at the Apollo (720p) +https://dai.google.com/linear/hls/event/fAFfTnCAT2K8d83sYsA-cw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRKitchenNightmares.us",STIRR Kitchen Nightmares (720p) [Offline] +https://dai.google.com/linear/hls/event/23QIslh0TOqygKz-M9W29Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMadeinHollywood.us",STIRR Made in Hollywood (720p) [Offline] +https://dai.google.com/linear/hls/event/Mteif75-SJeFi19Sk3-dGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMavTV.us",STIRR MavTV (720p) +https://dai.google.com/linear/hls/event/YoBM0ae5Q62TPdrfFHS4RQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMavTV.us",STIRR MavTV (720p) +https://mavtv-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRMidnightPulp.us",STIRR Midnight Pulp (720p) +https://dai.google.com/linear/hls/event/1fO2zbpBRyy6S5yve_fnaw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMovieMix.us",STIRR MovieMix (720p) [Offline] +https://dai.google.com/linear/hls/event/TSIJo6RCRZWuCD9WrKtRFg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMovies.us",STIRR Movies (768p) [Not 24/7] +https://dai.google.com/linear/hls/event/f-zA7b21Squ7M1_sabGfjA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMusic.us",STIRR Music (720p) [Offline] +https://dai.google.com/linear/hls/event/_e1csFnJR6W6y056PyiG6A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMysteryScienceTheater3000.us",STIRR Mystery Science Theater 3000 (1080p) +https://dai.google.com/linear/hls/event/rmBGeSwhQEG64TrT0_JO2A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRNational.us",STIRR National (720p) +https://dai.google.com/linear/hls/event/-V3XSvA2Sa6e8h7cnHXB8w/master.m3u8 +#EXTINF:-1 tvg-id="StirrNews247.us",Stirr News 24/7 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/8hUeiLMpTm-YNqk7kadUwA/master.m3u8 +#EXTINF:-1 tvg-id="STIRROutsideTV.us",STIRR Outside TV (1080p) +https://dai.google.com/linear/hls/event/HJAq3zH1SUy_B6fb1j80_Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPD.us",STIRR P.D. (540p) +https://dai.google.com/linear/hls/event/dKG_ZFd_S82FPgNxHmhdJw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPeopleTV.us",STIRR People TV (1080p) +https://dai.google.com/linear/hls/event/Fe9LYYCFR5Csif-I5dyMHg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPopstarTV.us",STIRR Popstar! TV (1080p) +https://dai.google.com/linear/hls/event/cJFuxTLzQUqbGGrqTMBJuw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPursuitUp.us",STIRR PursuitUp (720p) +https://dai.google.com/linear/hls/event/NpkpFaFVRqaQwSkpPdramg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRQVC.us",STIRR QVC (720p) +https://dai.google.com/linear/hls/event/roEbn_l7Tzezwy22F1NSfA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRealPeople.us",STIRR Real People (720p) [Offline] +https://dai.google.com/linear/hls/event/RoiVzG-4TJiJMSVUatDd4A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRealityTV.us",STIRR Reality TV (720p) +https://dai.google.com/linear/hls/event/r9VoxPU7TYmpydEn2ZR0jA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRetroCrush.us",STIRR RetroCrush TV (720p) +https://dai.google.com/linear/hls/event/7LAMGFcmQN6iFJjNoHWXrg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRevry.us",STIRR Revry (720p) [Offline] +https://dai.google.com/linear/hls/event/gvO6-Y6TTjCxRf1QALU4VQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRingofHonor.us",STIRR Ring of Honor (720p) +https://dai.google.com/linear/hls/event/RNiQYO3aTjOqTe8od1zlqA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSilkStalkings.us",STIRR Silk Stalkings (720p) [Offline] +https://dai.google.com/linear/hls/event/8ZYru1fgSY6JL1Ejb6T5Ag/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSOAR.us",STIRR SOAR (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/_PDxBUttQYqkxPnmh3VOZA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSpace1999.us",STIRR Space:1999 (768p) +https://dai.google.com/linear/hls/event/NeKNJHuzSeCiN_7Fcuo83Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSports.us" status="error",STIRR Sports (720p) [Offline] +https://dai.google.com/linear/hls/event/1B2yihdIR1mCL63rXzERag/master.m3u8 +#EXTINF:-1 tvg-id="STIRRStadium.us",STIRR Stadium (720p) +http://stadium.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRStadium.us",STIRR Stadium (720p) +https://dai.google.com/linear/hls/event/0jRU1DBXSW6a_TFheLfAUQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRStarMovies.us",STIRR Star Movies (720p) [Offline] +https://sonar.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayPopAdult.us",STIRR Stingray Pop Adult (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/104.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayRockAlternative.us",STIRR Stingray Rock Alternative (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/102.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayTodaysLatinPop.us",STIRR Stingray Today's Latin Pop (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/190.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayUrbanBeats.us",STIRR Stingray Urban Beats (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/133.m3u8 +#EXTINF:-1 tvg-id="STIRRTennisChannel.us",STIRR Tennis Channel (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f.m3u8 +#EXTINF:-1 tvg-id="STIRRTheAdventuresofSherlockHolmes.us",STIRR The Adventures of Sherlock Holmes (720p) [Offline] +https://dai.google.com/linear/hls/event/fMcxjP7ORACGFsBvi7ZhAg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheArchive.us",STIRR The Archive (360p) +https://dai.google.com/linear/hls/event/MdbYPXWRStmMq1DaQhsBUw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheAsylum.us",STIRR The Asylum (1080p) [Offline] +https://dai.google.com/linear/hls/event/2r7F3DThT-C5YW21CUuGLQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheBobRossChannel.us",STIRR The Bob Ross Channel (1080p) +https://dai.google.com/linear/hls/event/3dbJrQmVT_-psb-KBYuKQA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheCommish.us",STIRR The Commish (720p) [Offline] +https://dai.google.com/linear/hls/event/zfyiHhG0TeuoNist_WUwjg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheFirst.us",STIRR The First (1080p) +https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheLoneRanger.us",STIRR The Lone Ranger (720p) [Offline] +https://dai.google.com/linear/hls/event/dRKvXuioSv-e5T65yR_7Ow/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheLucyShow.us",STIRR The Lucy Show (720p) [Offline] +https://dai.google.com/linear/hls/event/-s-FtbzrQCaLMDSyM0ejyw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTravel.us",STIRR Travel (720p) [Offline] +https://dai.google.com/linear/hls/event/0ZXyCbn9TYmrrAzcDfoU1w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTruly.us",STIRR Truly (720p) [Offline] +https://dai.google.com/linear/hls/event/Xu-I6qGiSTKeu6glzS4BtQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTVMix.us",STIRR TV Mix (720p) +https://dai.google.com/linear/hls/event/ZP8ZMv95Q0Gm9EiyYOGHAA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRUnsolvedMysteries.us",STIRR Unsolved Mysteries (720p) [Offline] +https://dai.google.com/linear/hls/event/iLjE1UKtRCiSNkFatA65bg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWesterns.us",STIRR Westerns (480p) +https://dai.google.com/linear/hls/event/YF2jfXh_QROPxoHEwp1Abw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWhistleSportsTV.us",STIRR Whistle Sports (1080p) +https://dai.google.com/linear/hls/event/Wu11mwhnTKGNhwZimEK6Jg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWhoseLineIsItAnyway.us",STIRR Whose Line Is It Anyway (720p) [Offline] +https://dai.google.com/linear/hls/event/SYob3ZZfTwyVW7LILC9ckw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWipeoutXtra.us",STIRR Wipeout Xtra (720p) +https://dai.google.com/linear/hls/event/0DG8p66IRES7ZzEe1WJS-w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWiseguy.us",STIRR Wiseguy (720p) [Offline] +https://dai.google.com/linear/hls/event/kv03O_9RS8-uRahEGtDcjA/master.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (504p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/f.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/g.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus1.us",Tennis Channel+ 1 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus2.us",Tennis Channel+ 2 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus2.us",Tennis Channel+ 2 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f/g.m3u8 +#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (1080p) +http://asylum-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCountryNetwork.us",The Country Network (1080p) +https://dai.google.com/linear/hls/event/3EEsfZhASryigfuSpHdfKg/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) +https://dai.google.com/linear/hls/event/OYH9J7rZSK2fabKXWAYcfA/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) +https://filmdetective-stirr.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) +https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 +#EXTINF:-1 tvg-id="TheTimConwayShow.us",The Tim Conway Show (768p) +https://dai.google.com/linear/hls/event/v51OvZmXQOizl-KOgpXw1Q/master.m3u8 +#EXTINF:-1 tvg-id="USSPORTTennisPlus1.us",US SPORT Tennis Plus 1 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60/g.m3u8 +#EXTINF:-1 tvg-id="USAToday.us",USA Today (1080p) +https://dai.google.com/linear/hls/event/gJJhuFTCRo-HAHYsffb3Xg/master.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://dai.google.com/linear/hls/event/gJpQRkqiS8SHzAbPlGNRQw/master.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (1080p) +https://dai.google.com/linear/hls/event/im0MqOKRTHy9nVa1sirQSg/master.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) +https://dai.google.com/linear/hls/event/vZB78SsNSXWOR63VJrNC2Q/master.m3u8 diff --git a/streams/us_tcl.m3u b/streams/us_tcl.m3u new file mode 100644 index 000000000..8034c1496 --- /dev/null +++ b/streams/us_tcl.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BloodyDisgusting.us",Bloody Disgusting (1080p) +https://bloodydisgusting-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) +https://comedydynamics-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://contv-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://contvanime-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) +https://docurama-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) +https://dovenow-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) +https://introuble-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (1080p) +https://inwonder-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) +https://vidaprimo-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) +https://mytime-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SoReal.us",So... Real (1080p) +https://soreal-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) +https://unbeaten-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (1080p) [Offline] +https://whistlesports-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) +https://younghollywood-tcl.amagi.tv/playlist.m3u8 diff --git a/streams/us_tubi.m3u b/streams/us_tubi.m3u new file mode 100644 index 000000000..2efb1c2ee --- /dev/null +++ b/streams/us_tubi.m3u @@ -0,0 +1,129 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",ABC 4 Pittsburg PA (WTAE) (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WTAE.m3u8 +#EXTINF:-1 tvg-id="",ABC 5 Cleveland OH (WEWS-TV) (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WEWS.m3u8 +#EXTINF:-1 tvg-id="",ABC 5 Oklahoma City OK (KOCO) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-KOCO.m3u8 +#EXTINF:-1 tvg-id="",ABC 7 Detroit MI (WXYZ-TV) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXYZ.m3u8 +#EXTINF:-1 tvg-id="",ABC 7 Omaha NE (KETV) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KETV.m3u8 +#EXTINF:-1 tvg-id="",ABC 9 Kansas City MO (KMBC-TV) (576p) [Offline] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KMBC.m3u8 +#EXTINF:-1 tvg-id="",ABC 9 Manchester NH (WMUR-TV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WMUR.m3u8 +#EXTINF:-1 tvg-id="AnAmericanChristmasCarol.us",An American Christmas Carol (720p) +https://cloudfront.tubi.video/5b97b1f5-a605-44a5-a192-12e10beece40/sd846jzc/stream.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (720p) +https://lnc-black-news.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (720p) [Offline] +https://csm-e-eb.csm.tubi.video/csm/live/283326845.m3u8 +#EXTINF:-1 tvg-id="CBCNewsHighlights.ca",CBC News Highlights (720p) +https://csm-e-eb.csm.tubi.video/csm/live/243017997.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (720p) +https://csm-e-eb.csm.tubi.video/csm/live/247083838.m3u8 +#EXTINF:-1 tvg-id="",FOX 2 Detroit MI (WJBK) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WJBK-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 2 San Francisco CA (KTVU) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTVU-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 4 Dallas / Fort Worth TX (KDFW) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KDFW-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 5 Atlanta GA (WAGA-TV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WAGA-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 5 New York NY (WNYW) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WNYW-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 5 Washington DC (WTTG) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTTG-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 6 Milwaukee WI (WITI) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WITI-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 7 Austin TX (KTBC) (720p) [Offline] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTBC-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 9 ST Paul Minneapolis MN (KMSP) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KMSP-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 10 Phoenix AZ (KZAS) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KSAZ-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 11 Los Angeles CA (KTTV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTTV-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 13 Memphis TN (WHBQ-TV) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WHBQ.m3u8 +#EXTINF:-1 tvg-id="",FOX 13 Tampa Bay FL (WTVT) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTVT-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 26 Houston TX (KRIV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KRIV-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 29 Philadelphia PA (WTXF-TV) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTXF-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 32 Chicago IL (WFLD) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WFLD-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX 35 Orlando FL (WOFL) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WOFL-Monetizer.m3u8 +#EXTINF:-1 tvg-id="",FOX Q13 Seattle WA (KCPQ) (576p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KCPQ-Monetizer.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (720p) +https://lnc-fox-soul-scte.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Fox-Weather.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Fox-Weather.m3u8 +#EXTINF:-1 tvg-id="KCCI.us",KCCI-TV News Des Moines IA (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCCI.m3u8 +#EXTINF:-1 tvg-id="KCRA.us",KCRA-TV News Sacramento CA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCRA.m3u8 +#EXTINF:-1 tvg-id="KHBS.us",KHBS-TV News Fort Smith AR (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KHBS.m3u8 +#EXTINF:-1 tvg-id="KOAT.us",KOAT-TV News Albuquerque NM (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KOAT.m3u8 +#EXTINF:-1 tvg-id="KSBW.us",KSBW-TV News Salinas CA (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KSBW.m3u8 +#EXTINF:-1 tvg-id="Localish.us",Localish (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Localish.m3u8 +#EXTINF:-1 tvg-id="",NBC 5 Cincinnati OH (WLWT) (360p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLWT.m3u8 +#EXTINF:-1 tvg-id="",NBC 6 New Orleans LA (WDSU) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WDSU.m3u8 +#EXTINF:-1 tvg-id="News12NewYork.us",News 12 New York (1080p) +https://lnc-news12.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Newsy.m3u8 +#EXTINF:-1 tvg-id="pattrn.us",Pattrn (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Pattrn.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) +https://lnc-people-tv.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="RealMadridTVUS.us",Real Madrid TV US Version (720p) [Offline] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Real-Madrid.m3u8 +#EXTINF:-1 tvg-id="SantaandtheThreeBears.us",Santa and the Three Bears (480p) +https://cloudfront.tubi.video/21df8036-fa23-49ff-9877-8af983546d2b/elw3phlf/stream.m3u8 +#EXTINF:-1 tvg-id="TodayAD.us",Today All Day (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Today.m3u8 +#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-USA-Today.m3u8 +#EXTINF:-1 tvg-id="VeryAlabama.us",Very Alabama (576p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WVTM.m3u8 +#EXTINF:-1 tvg-id="WAPT.us",WAPT-TV News Jackson MS (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WAPT.m3u8 +#EXTINF:-1 tvg-id="WBAL.us",WBAL-TV News Baltimore MD (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WBAL.m3u8 +#EXTINF:-1 tvg-id="",WCVB-TV News Boston MA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WCVB.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us",Weathernation (720p) [Geo-blocked] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Weather-Nation.m3u8 +#EXTINF:-1 tvg-id="",WESH-TV News Orlando FL (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WESH.m3u8 +#EXTINF:-1 tvg-id="",WGAL-TV News Lancaster PA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WGAL.m3u8 +#EXTINF:-1 tvg-id="WISN.us",WISN-TV News Milwaukee WI (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WISN.m3u8 +#EXTINF:-1 tvg-id="WJCL.us",WJCL-TV News Savannah GA (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WJCL.m3u8 +#EXTINF:-1 tvg-id="WLKY.us",WLKY-TV News Louisville KY (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLKY.m3u8 +#EXTINF:-1 tvg-id="WMOR.us",WMOR-TV News Lakeland FL (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMOR.m3u8 +#EXTINF:-1 tvg-id="WMTW.us",WMTW-TV News Portland ME (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMTW.m3u8 +#EXTINF:-1 tvg-id="WPBF.us",WPBF-TV News West Palm Beach FL (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPBF.m3u8 +#EXTINF:-1 tvg-id="WPTZ.us",WPTZ-TV News Plattsburgh NY (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPTZ.m3u8 +#EXTINF:-1 tvg-id="WXII.us",WXII-TV News Winston-Salem NC (720p) [Offline] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXII.m3u8 diff --git a/streams/us_vizio.m3u b/streams/us_vizio.m3u new file mode 100644 index 000000000..bf4bd058a --- /dev/null +++ b/streams/us_vizio.m3u @@ -0,0 +1,187 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AMCAbsoluteReality.us",AMC Absolute Reality (1080p) [Offline] +https://amc-absolutereality-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCIFCFilmPicks.us",AMC IFC Film Picks (1080p) [Offline] +https://amc-ifc-films-picks-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (1080p) [Offline] +https://amc-amcpresents-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCRush.us",AMC Rush (1080p) [Offline] +https://amc-rushbyamc-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCSlightlyOff.us",AMC Slightly Off (1080p) [Offline] +https://amc-slightly-off-by-amc-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) +https://p1media-americasvoice-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Ameritrade.us",Ameritrade (1080p) [Not 24/7] +https://tdameritrade-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AWEEncore.us",AWE Encore (720p) +https://aweencore-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (720p) +https://blacknewschannel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (720p) +https://condenast-bonappetit-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) [Offline] +https://brat-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) [Offline] +https://cheddar-cheddar-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Choppertown.us",Choppertown (1080p) [Offline] +https://oneworlddigital-choppertown-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Cinevault80s.us",Cinevault 80s (540p) +https://gsn-cinevault-80s-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) +https://gsn-cinevault-westerns-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://circle-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Not 24/7] +https://contv.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://contvanime-vizio-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) +https://dmtv-viziosc.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DemandAfrica.us",Demand Africa (720p) [Offline] +https://demandafrica-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DocTV.us",Doc TV (1080p) [Offline] +https://wownow-doctv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] +https://dove-channel.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us",Dust (1080p) [Offline] +https://dust-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (1080p) [Offline] +https://failarmy-linear.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Fawesome.us",Fawesome (720p) [Offline] +https://fawesome-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FlixFling.us",FlixFling (1080p) [Offline] +https://flixfling-flixflingnow-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsNow.us",FOX News Now (720p) +https://fox-foxnewsnow-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) +https://foxsoul-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (720p) [Offline] +https://funnyordie-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowCentralEast.us",Game Show Central East (1080p) [Offline] +https://gsn-gameshowchannnel-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GiggleMug.us",Giggle Mug (720p) [Offline] +https://janson-gigglemug-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (1080p) [Offline] +https://glewedtv-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) +https://gravitas-movies.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] +https://gustotv-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (720p) +https://happykids-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKidsJunior.us",HappyKids Junior (720p) +https://happykidsjunior-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HNCFree.us",HNC Free (1080p) +https://hncfree-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Hometalk.us",Hometalk (1080p) [Offline] +https://playworksdigital-hometalk-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (720p) +https://ifood-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (1080p) +https://insighttv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) [Offline] +https://introuble-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl",InWonder (1080p) [Offline] +https://inwonder-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="IonPlus.us",Ion Plus (1080p) +https://ion-ion-plus-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IonQubo.us",Ion Qubo (720p) [Offline] +https://ion-qubo-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (720p) +https://johnnycarson-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="JudgeFaith.us",Judge Faith (1080p) [Offline] +https://judge-faith-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (1080p) [Offline] +http://kidoodletv-kdtv-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (720p) +https://vidaprimo-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (720p) [Offline] +https://latidomusic.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="",LEGO Channels (720p) +https://legochannel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.us",Magellan TV (1080p) [Offline] +https://magellantv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (1080p) [Offline] +https://maverick-maverick-black-cinema-2.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us",MavTV (1080p) [Offline] +https://mavtv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MonsterMovies.us",Monster Movies (1080p) [Offline] +https://wownow-monstermovies-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MysteryScienceTheater3000.us",Mystery Science Theater 3000 (1080p) +https://mst3k-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) +https://mytime-vizio-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) +https://newsmax-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) [Offline] +https://newsy-newsy-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] +https://nosey-realnosey-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (1080p) +https://oneamericanews-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (720p) +https://outside-tv-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (720p) +https://pac12-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (1080p) [Offline] +https://jukin-peopleareawesome-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (720p) [Offline] +https://playworksdigital-playworks-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://playerstv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) +https://pocketwatch-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealTruthCrime.us",Real Truth Crime [Offline] +https://endemol-reeltruthcrime-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Restore.us",Restore [Offline] +https://endemol-restore-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RiffTrax.us",RiffTrax (720p) [Offline] +https://rifftrax-2.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (720p) [Offline] +https://shout-factory.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) +https://sportsgrid-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Spotlight.us",Spotlight (1080p) +https://spotlight-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperSimpleSongs.us",Super Simple Songs (1080p) [Offline] +https://janson-supersimplesongs-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) [Offline] +https://playworksdigital-tankee-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) +https://tastemade-intl-vizioca.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) +https://tastemadees16intl-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeTravel.us",Tastemade Travel (720p) +https://tastemadetravel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) [Offline] +https://cinedigm-bobross-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCarolBurnettShow.us",The Carol Burnett Show (1080p) +https://carolburnett-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us",The First (720p) +https://thefirst-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (1080p) [Offline] +https://the-pet-collective-linear.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (1080p) [Offline] +https://previewchannel-previewchannel-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (1080p) [Offline] +https://toon-goggles-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) +https://venntv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAllWeddings.us",We TV All Weddings (1080p) [Offline] +https://amc-allweddings-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (1080p) +https://jukin-weatherspy-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] +https://whistle-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wipeout.us",Wipeout [Offline] +https://endemol-wipeoutxtra-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WowNowKids.us",Wow Now Kids (1080p) [Offline] +https://wownow-wownowkids-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) +https://xplore-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (720p) +https://yahoo-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) +https://younghollywood-vizio.amagi.tv/playlist.m3u8 diff --git a/streams/us_xumo.m3u b/streams/us_xumo.m3u new file mode 100644 index 000000000..ad93c986d --- /dev/null +++ b/streams/us_xumo.m3u @@ -0,0 +1,369 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABCNews.us",ABC News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-abcnews/CDN/master.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioadventuresportsnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Ameba.us",Ameba (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuameba/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasTestKitchen.us",America's Test Kitchen (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericastestkitchen/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericanClassics.us",American Classics (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericanclassics/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ArchitecturalDigest.us",Architectural Digest (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxarchitecturaldigest/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ArchitecturalDigest.us",Architectural Digest (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokutraveler/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Asylum.us",Asylum (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-theasylum/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Baeble.us",Baeble Music (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbaeble/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BatteryPopXUMO.us",Battery Pop (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbatterypop/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) +http://redbox-blacknewschannel-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) +https://blacknewschannel-xumo-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewschannel-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) +https://blacknewschannel-xumo-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxblacknewschannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbloomberg/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbonappetit/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCNews.us",CBC News (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcbcnews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCNewsXUMO.us",CBC News (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-cbcnews/CDN/master.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcheddar/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo-host-cheddar/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ChiveTV.us",Chive TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxchive/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CineRomantico.us",Cine Romantico (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokucineromantico/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://circle-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcircletv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-circle/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo-host-comedydynamics/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Complex.us",Complex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-complextv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Complex.us",Complex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcomplex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcontv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Timeout] +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo123-contv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://contvanime.cinedigm.com/conapp-ssai/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CrackleXUMO.us",Crackle (XUMO) (1080p) +http://crackle-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxdocurama/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Timeout] +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-dovenow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-edgesportxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ElectricNow.us",Electric Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-electricnow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="eScapesXUMO.us",eScapes (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-escapes/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfailarmy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmHub.us",Film Hub (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmhub/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseAction.us",FilmRise Action (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmriseaction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (432p) +https://hls.xumo.com/channel-hls/v1/9fe012a9926c4e91/9999400/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmriseclassictv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV on Redbox (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmriseclassictv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (432p) +http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseForensicFiles.us",FilmRise Forensic Files (432p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuforensicfiles/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseForensicFilesXUMO.us",FilmRise Forensic Files (XUMO) (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxunsolvedmysteries/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us",FilmRise Free Movies (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us",FilmRise Free Movies (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofilmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMoviesRedbox.us",FilmRise Free Movies (Redbox) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseHellsKitchen.us",FilmRise Hell's Kitchen (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecooking/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us",FilmRise Mysteries (XUMO) (432p) +http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us",FilmRise Mysteries (XUMO) (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisemystery/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseSciFiXUMO.us",FilmRise Sci-Fi (XUMO) (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisesci-fi/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseTrueCrime.us",FilmRise True Crime (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseWestern.us",FilmRise Western (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisewestern/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FiremanSam.us",Fireman Sam (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufiremansam/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1212A-redboxfood52A/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfood52A/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofood52/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufunnyordie/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfunnyordie/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FuseEast.us",Fuse East (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfuse/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Glamour.us",Glamour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglamour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Glamour.us",Glamour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuglamour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GlobalGotTalent.us",Global Got Talent (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugottalentglobal/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GloryKickboxing.us",Glory Kickboxing (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglorykickboxing/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GoTraveler.us",Go Traveler (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgotraveler/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GQ.us",GQ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgq/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GQ.us",GQ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugq/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgravitas/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugravitasmovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="HallmarkMoviesMore.us",Hallmark Movies & More (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuhallmark/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhardknocksfightingchampionship/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="",Hi-YAH! (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhi-ya/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Hungry.us",Hungry (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhungry/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-insighttv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Journy.us",Journy (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxjourny/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="JustforLaughsGags.us",Just for Laughs Gags (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokujustforlaughsgags/CDN/master.m3u8 +#EXTINF:-1 tvg-id="JustforLaughsGags.us",Just for Laughs Gags (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziojustforlaughsgags/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="kabillion.us",kabillion (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxkabillion/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGenius.us",Kid Genius (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukidgenius/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KocowaClassic.us",Kocowa Classic (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukocowa/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumovidaprimolatido/CDN/master.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/master.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziolawandcrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrimeXUMO.us",Law & Crime (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LIVExLIVE.us",LIVExLIVE (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumolivexlive/CDN/master.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-maverickmovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Moovimex.us",Moovimex (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokumoovimex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Moovimex.us",Moovimex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziomoovimex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunbcnewsnow/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-nbcnewsnow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-newsmaxxumo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NitroCircus.us",Nitro Circus (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnitrocircus/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us",Nosey (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-nosey/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThis.us",Now This (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnowthis/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThis.us",Now This (900p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunowthis/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThisXUMO.us",Now This (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-nowthis/CDN/master.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutdooramerica/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutsidetv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTVPlus.us",Outside TV Plus (1080p) +https://outsidetvplus-xumo.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetvplusxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="OutsideTVPlus.us",Outside TV Plus (1080p) +https://outsidetvplus-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-peopleareawesome/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpeopleareawesome/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) +https://peopletvssai.akamaized.net/amagi_hls_data_peopletvA-peopletvxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-playerstv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpocketwatch/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PongaloNovelaclub.us",Pongalo Novelaclub (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunovelaclub/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RainbowRuby.us",Rainbow Ruby (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-roku-rainbow-ruby/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxrealnosey/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Reelz.us",Reelz (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokureelzchannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ReelzChannelXUMO.us",Reelz Channel (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxreelzchannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RevandRoll.us",Rev and Roll (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokurev-and-roll/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us",Revry (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-revryxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us",Samuel Goldwyn Channel (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsamuelgoldwyn/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ShopLC.us",Shop LC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(xumo)/index.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) +https://shoutfactory-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowtimeattheApollo.us",Showtime at the Apollo (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxshowtimeattheapollo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="SoYummy.us",So Yummy! (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsoyummy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="SoYummy.us",So Yummy! (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-soyummy-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumosportsgrid/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) +https://sportsgrid-xumo-us.amagi.tv/xumo.m3u8 +#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-stadiumsports/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayAmbience.ca",Stingray Ambience (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziostingrayambiance/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayclassicrock/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) +https://xumo-redbox.ott-channels.stingray.com/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayclassicrock/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraygreatesthits/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraygreatesthits/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) +https://xumo-redbox.ott-channels.stingray.com/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhitlist/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) +https://xumo-redbox.ott-channels.stingray.com/107/master.m3u8 +#EXTINF:-1 tvg-id="",Stingray Hitlist (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhitlist/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhotcountry/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhotcountry/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) +https://xumo-redbox.ott-channels.stingray.com/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.ca",Stingray Karaoke (144p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraykaraoke/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (360p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraynaturescape/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraynaturescape/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioqelloconcerts/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayqello/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraysoulstorm/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraysoulstorm/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) +https://xumo-redbox.ott-channels.stingray.com/134/master.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) +https://tastemade-xumo.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.uk",Teletubbies (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuteletubbies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheArchive.us",The Archive (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthearchive/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) +https://bobross-xumous-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) +https://bobross-xumous.cinedigm.com/midroll/amagi_hls_data_xumo-host-bobross-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbobross/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthedesignnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-petcollective/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpetcollective/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (720p) +https://hls.xumo.com/channel-hls/v1/bmneuerw7j9k5lfc/9999330/master.m3u8 +#EXTINF:-1 tvg-id="TheYoungTurks.us",The Young Turks (TYT) (1080p) [Not 24/7] +https://tyt-xumo-us.amagi.tv/hls/amagi_hls_data_tytnetwor-tyt-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziotmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-tmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtoongoggles/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us",USA Today (432p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuusatodaynews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxusatoday/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatoday/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USATodaySportswire.us",USA Today Sportswire (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatodaysportswire/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VanityFair.us",Vanity Fair (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvanityfair/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VanityFair.us",Vanity Fair (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvanityfair/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vevo80s.us",Vevo 80s (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo80s/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VevoPop.us",Vevo Pop (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vogue.us",Vogue (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvogue/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vogue.us",Vogue (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvogue/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VoyagerDocumentaries.us",Voyager Documentaries (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvoyager/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VoyagerDocumentaries.us",Voyager Documentaries (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvoyagerdocumentaries/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuweatherspy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxweatherspy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Wired.us",Wired (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxwired/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxworldpokertour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="XumoFreeMovies.us",Xumo Free Movies (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumofreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="XumoFreeWesterns.us",Xumo Free Westerns (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumowesterns/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="YoGabbaGabba.us",Yo Gabba Gabba! (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuyogabagaba/CDN/playlist.m3u8 diff --git a/streams/uy.m3u b/streams/uy.m3u new file mode 100644 index 000000000..6ed64b9be --- /dev/null +++ b/streams/uy.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="",Canal 10 (720p) [Offline] +https://edge3-hr.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating_FTA/Canal10_URU.m3u8 +#EXTINF:-1 tvg-id="",CANAL 10 [Offline] +http://edge2-ccast-sl.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating/Canal10_URU-video=1480000.m3u8 +#EXTINF:-1 tvg-id="CharruaTV.uy",Charrúa Televisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/charruatvcanal +#EXTINF:-1 tvg-id="LaRedTV.uy",LaRed TV (576p) [Not 24/7] +https://stmv1.srvif.com/laredtv/laredtv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatinoKids.uy",LatinoKids (360p) [Not 24/7] +https://s14.ssl-stream.com:3335/live/latinokidsonlinelive.m3u8 +#EXTINF:-1 tvg-id="UCL.uy",UCL TV (360p) [Not 24/7] +https://livedelta.cdn.antel.net.uy/out/u/url_canalu_2.m3u8 diff --git a/streams/uz.m3u b/streams/uz.m3u new file mode 100644 index 000000000..4cd3f7754 --- /dev/null +++ b/streams/uz.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AzonTV.uz",Azon TV (1080p) [Not 24/7] +http://tv2.azon.uz/high/stream.m3u8 +#EXTINF:-1 tvg-id="Milliy.uz",Milliy (480p) [Not 24/7] +http://milliy.tv/hls/index.m3u8 diff --git a/streams/va.m3u b/streams/va.m3u new file mode 100644 index 000000000..986b98312 --- /dev/null +++ b/streams/va.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV2000.va",TV2000 (360p) [Not 24/7] +http://cld01ibi16.wz.tv2000.it/tv2000_alfa.m3u8 +#EXTINF:-1 tvg-id="TV2000.va",TV2000 (360p) [Not 24/7] +http://mi1.wz.tv2000.it/tv2000_alfa.m3u8 diff --git a/streams/ve.m3u b/streams/ve.m3u new file mode 100644 index 000000000..cff6ac89b --- /dev/null +++ b/streams/ve.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="123TV.ve",123 TV [Timeout] +http://177.52.221.214:8000/play/a0ew/index.m3u8 +#EXTINF:-1 tvg-id="",Canal i (720p) [Not 24/7] +https://vcp.myplaytv.com/canali/canali/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalNubehTV.ve",Canal Nubeh TV (720p) [Not 24/7] +https://vcp.myplaytv.com/nubehtv/nubehtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Colombeia.ve",Colombeia [Timeout] +http://177.52.221.214:8000/play/a0co/index.m3u8 +#EXTINF:-1 tvg-id="Globovision.ve",Globovision (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCfJtBtmhnIyfUB6RqXeImMw/live +#EXTINF:-1 tvg-id="Italianissimo.ve",Italianissimo (358p) [Not 24/7] +https://vcp.myplaytv.com/italianissimo/italianissimo/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTeleTuya.ve",La Tele Tuya (TLT) (404p) [Geo-blocked] +https://vcp.myplaytv.com/tlthd/tlthd/playlist.m3u8 +#EXTINF:-1 tvg-id="OxigenoTV.ve",Oxigeno TV (360p) [Not 24/7] +https://vcp.myplaytv.com/oxigenotv/oxigenotv/playlist.m3u8 +#EXTINF:-1 tvg-id="PromarTV.ve",PromarTV (Yaracuy) (1080p) [Not 24/7] +http://vcp1.myplaytv.com:1935/promar/promar/playlist.m3u8 +#EXTINF:-1 tvg-id="RCR750.ve",Radio Caracas Radio 750 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5AA3XP4_pXIELctSsH_L7w/live +#EXTINF:-1 tvg-id="",teleSUR (260p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/360p/playlist.m3u8 +#EXTINF:-1 tvg-id="",teleSUR (360p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/480p/playlist.m3u8 +#EXTINF:-1 tvg-id="",teleSUR (1080p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="",TeleSUR English (1080p) [Not 24/7] +https://cdnenmain.telesur.ultrabase.net/mblivev3/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Televen.ve",Televen (404p) [Not 24/7] +https://cloud.streamingconnect.tv:455/televen/televenweb.m3u8 +#EXTINF:-1 tvg-id="TelevisoradeOriente.ve",Televisora de Oriente (480p) [Not 24/7] +http://vcp1.myplaytv.com:1935/tvo/tvo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVFamilia.ve",TV Familia (270p) +https://cdn01.yowi.tv/KPFPGJU8A6/master.m3u8 +#EXTINF:-1 tvg-id="TVVenezuela.ve",TV Venezuela (480p) [Not 24/7] +https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ValeTV.ve",Vale TV (480p) [Not 24/7] +http://vcp1.myplaytv.com/valetv/valetv/playlist.m3u8 +#EXTINF:-1 tvg-id="VePlus.ve",Ve Plus (480p) [Not 24/7] +http://190.122.96.187:8888/http/006 +#EXTINF:-1 tvg-id="Venevision.ve" status="online",Venevision [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/venevisionweb/live +#EXTINF:-1 tvg-id="VenezolanadeTelevision.ve",Venezolana de Televisión [Timeout] +http://177.52.221.214:8000/play/a0cj/index.m3u8 +#EXTINF:-1 tvg-id="VepacoTV.ve",Vepaco TV (486p) [Not 24/7] +http://vcp1.myplaytv.com:1935/tvepaco/tvepaco/playlist.m3u8 +#EXTINF:-1 tvg-id="VPItv.ve",VPItv (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vpitv diff --git a/streams/vn.m3u b/streams/vn.m3u new file mode 100644 index 000000000..fcc423734 --- /dev/null +++ b/streams/vn.m3u @@ -0,0 +1,103 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AirTV.vn",Air TV (720p) +https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Bến Tre (720p) [Timeout] +http://113.163.94.245/hls-live/livepkgr/_definst_/liveevent/thbt.m3u8 +#EXTINF:-1 tvg-id="BrianTV.vn",Brian TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT.vn",BRT (360p) +http://113.163.216.23:1935/live/tv2.stream_480p/playlist.m3u8 +#EXTINF:-1 tvg-id="CaMauTV.vn",Cà Mau TV (720p) [Geo-blocked] +http://tv.ctvcamau.vn/live/tv/tv.m3u8 +#EXTINF:-1 tvg-id="DaNangTV1.vn",Da Nang TV1 (1080p) [Not 24/7] +http://drtdnglive.e49a7c38.cdnviet.com/livedrt1/chunklist.m3u8 +#EXTINF:-1 tvg-id="DaNangTV2.vn",Da Nang TV2 (1080p) [Not 24/7] +http://drtdnglive.e49a7c38.cdnviet.com/livestream/chunklist.m3u8 +#EXTINF:-1 tvg-id="DaoLaneXang.vn",Dao Lane Xang (720p) +https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Dhammasapha TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="",Đồng Nai 1 (360p) [Not 24/7] +http://118.107.85.4:1935/live/smil:DNTV1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Đồng Nai 2 (360p) [Not 24/7] +http://118.107.85.4:1935/live/smil:DNTV2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GiaLaiTV.vn",Gia Lai TV (486p) +http://113.161.25.3:8134/hls/gialaitv/gialaitv.m3u8 +#EXTINF:-1 tvg-id="GoodIdeaTV.vn",Good Idea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HBTV.vn",HBTV (406p) [Not 24/7] +http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongStarTV.vn",Hmong Star TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongUSATV.vn",HmongUSA TV (360p) +https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HoungFa.vn",Houng Fa (720p) +https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.vn",ISTV (480p) +https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KhmerTV.vn",KhmerTV (1080p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/khmertv2020.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KhomsanhTV.vn",Khomsanh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KienGiangTV1.vn",KienGiangTV1 (1080p) [Geo-blocked] +http://tv.kgtv.vn/live/kgtv1/kgtv1.m3u8 +#EXTINF:-1 tvg-id="KienGiangTV.vn",KienGiangTV (1080p) [Geo-blocked] +http://tv.kgtv.vn/live/kgtv/kgtv.m3u8 +#EXTINF:-1 tvg-id="LA34LongAn.vn",LA34 Long An (720p) +http://113.161.229.13/hls-live/livepkgr/_definst_/liveevent/tv.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV1.vn",Lao Champa TV 1 (720p) +https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV2.vn",Lao Champa TV 2 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV3.vn",Lao Champa TV 3 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.vn",Lao Heritage Foundation TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoMuslimTV.vn",Lao Muslim TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoNetTV.vn",Lao Net TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoSVTV.vn",Lao SV TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaosPlanetTV.vn",Laos Planet TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LookThoongTV.vn",Look Thoong TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LSTV.vn",LS TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NATTV.vn",NAT TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Ning TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OhMuangLaoTV.vn",Oh Muang Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OyLaoTV.vn",Oy Lao TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PNTV.vn",PNTV (720p) +https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PTPPhuYen.vn",PTP Phú Yên (432p) [Not 24/7] +http://113.161.4.48:8080/phuyen/tv.m3u8 +#EXTINF:-1 tvg-id="QRT.vn",QRT (404p) [Not 24/7] +http://113.161.6.157:8081/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="",Quốc Hội (720p) +http://113.164.225.140:1935/live/quochoitvlive.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SupremeMasterTV.vn",Supreme Master TV (720p) +https://lbs-us1.suprememastertv.com/720p.m3u8 +#EXTINF:-1 tvg-id="TeaTV2.vn",Tea TV 2 (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV.vn",Tea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TienGiang.vn",Tien Giang (720p) +http://thtg.vn:8001/thtg.m3u8 +#EXTINF:-1 tvg-id="UniquelyThai.vn",Uniquely Thai (720p) +https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VajtswvTxojlus.vn",Vajtswv Txojlus (720p) +https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VanphenhTV.vn",Vanphenh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VatiLaoTV.vn",Vati Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VietMyTV.vn",Việt Mỹ TV (480p) [Not 24/7] +http://68.235.37.11:1935/vietmagazine/vietmagazine/playlist.m3u8 +#EXTINF:-1 tvg-id="VITV.vn",VITV (180p) +http://210.86.230.202:8134/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 diff --git a/streams/vn_fptplay.m3u b/streams/vn_fptplay.m3u new file mode 100644 index 000000000..b327c4dbd --- /dev/null +++ b/streams/vn_fptplay.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Vietnamese) (1080p) [Geo-blocked] +https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/AXN-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelV.vn",Channel V (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CHANNELV-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="FBNC.vn",FBNC (270p) [Offline] +https://livecdn.fptplay.net/sdc/fbnchd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxMoviesAsia.us",Fox Movies Asia (Vietnamese) (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/FOXMOVIES-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV1.vn",HTV1 (576p) +https://livecdn.fptplay.net/sdb/htv1_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV2.vn",HTV2 (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV2-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV3.vn",HTV3 (576p) +https://livecdn.fptplay.net/sdb/htv3_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV4.vn",HTV4 (576p) +https://livecdn.fptplay.net/sdb/htv4_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTV Thể Thao (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV-THETHAO-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Ca Nhạc (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-CANHAC-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Du Lịch Cuộc Sống (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-DULICH-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Gia Đình (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-GIADINH-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Phim (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHIM-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Phụ Nữ (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHUNU-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Thuần Việt (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIET-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",HTVC Thuần Việt (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIETHD-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCPlus.vn",HTVC+ (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PLUS-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="SkyShop.vn",SkyShop (720p) +https://livecdn.fptplay.net/sda/skymart_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Vĩnh Long 1 [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL1-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="",Vĩnh Long 2 [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL2-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC4.vn",VTC4 (720p) +https://livecdn.fptplay.net/sdc/vtc4_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC4Yeah1Family.vn",VTC4 Yeah1 Family (720p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/VTC4-SD-ABR/HTV-ABR/VTC4-SD-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC5.vn",VTC5 (576p) +https://livecdn.fptplay.net/sdb/vtc5_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC6.vn",VTC6 (576p) +https://livecdn.fptplay.net/sdb/vtc6_hls.smil/playlist.m3u8 diff --git a/streams/xk.m3u b/streams/xk.m3u new file mode 100644 index 000000000..3a6e7c962 --- /dev/null +++ b/streams/xk.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArtaNews.xk",Arta News (720p) [Not 24/7] +https://samiu.gjirafa.com/live/DpTlD159VIIRWtzFOvUI70nftnyosgUE/yt1q1x.m3u8 +#EXTINF:-1 tvg-id="RTK1.xk",RTK 1 (720p) [Not 24/7] +http://stream1.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK1.xk",RTK 1 (720p) [Not 24/7] +http://stream2.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK2.xk",RTK 2 (720p) +http://stream1.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK2.xk",RTK 2 (720p) +http://stream2.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK3.xk",RTK 3 (720p) +http://stream1.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK3.xk",RTK 3 (720p) +http://stream2.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK4.xk",RTK 4 (720p) [Not 24/7] +http://stream1.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK4.xk",RTK 4 (720p) [Not 24/7] +http://stream2.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelingoTV.xk",Travelingo TV (1080p) [Not 24/7] +https://abdyli.gjirafa.com/live/r6e3JjXjSjkUCsA7CmdhL8lzM4fGXGz4/ytkytq.m3u8 +#EXTINF:-1 tvg-id="ZeriTV.xk",Zeri TV (360p) [Offline] +https://abdyli.gjirafa.com/live/ZvTsY6MH7RPPvXuUDjRjcEYkK7yryigW/ytkt1k.m3u8 diff --git a/streams/ye.m3u b/streams/ye.m3u new file mode 100644 index 000000000..c7084d2e1 --- /dev/null +++ b/streams/ye.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdenTV.ye",Aden TV [Offline] +https://master.starmena-cloud.com/hls/aden.m3u8 +#EXTINF:-1 tvg-id="AICTV.ye",AIC TV (576p) [Timeout] +http://195.35.85.115:8000/play/a0fr +#EXTINF:-1 tvg-id="AlMahrah.ye",Al Mahrah (576p) [Offline] +http://82.212.74.99:8000/live/hls/8173.m3u8 +#EXTINF:-1 tvg-id="AlMasirah.ye",Al Masirah (720p) [Not 24/7] +https://svs.itworkscdn.net/almasiralive/almasira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMasirahMubacher.ye",Al Masirah Mubacher (642p) [Not 24/7] +https://svs.itworkscdn.net/almasiramubacherlive/almasira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="",Al Masirah TV (720p) [Not 24/7] +https://svs.itworkscdn.net/almasiralive/almasira/playlist.m3u8 +#EXTINF:-1 tvg-id="AlerthAlnabawi.ye",Alerth Alnabawi (576p) [Not 24/7] +http://82.212.74.2:8000/live/7307.m3u8 +#EXTINF:-1 tvg-id="AlghadAlmushreq.ye",Alghad Almushreq (576p) +http://82.212.74.3:8000/live/7512.m3u8 +#EXTINF:-1 tvg-id="AlyamanShabab.ye",Alyaman Shabab (1080p) [Not 24/7] +https://master.starmena-cloud.com/hls/yemenshabab.m3u8 +#EXTINF:-1 tvg-id="BelqeesTV.ye",Belqees TV (1080p) [Offline] +https://svs.itworkscdn.net/itwlive/itw3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Hadramout.ye",Hadramout [Offline] +https://linkastream.co/headless?url=https://www.youtube.com/c/hadramouttv/live +#EXTINF:-1 tvg-id="SuhailTV.ye",Suhail TV (576p) +http://82.212.74.98:8000/live/hls/7726.m3u8 diff --git a/streams/zm.m3u b/streams/zm.m3u new file mode 100644 index 000000000..e30382ee2 --- /dev/null +++ b/streams/zm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV1.zm",TV1 (480p) [Not 24/7] +https://dcunilive159-lh.akamaihd.net/i/dclive_1@1013574/master.m3u8 +#EXTINF:-1 tvg-id="TV4.zm",TV4 (576p) [Not 24/7] +https://dcunilive258-lh.akamaihd.net/i/dclive_1@348579/master.m3u8 diff --git a/tests/__data__/expected/database/db_create.streams.db b/tests/__data__/expected/database/db_create.streams.db index fb5069129..3eed2a5b7 100644 --- a/tests/__data__/expected/database/db_create.streams.db +++ b/tests/__data__/expected/database/db_create.streams.db @@ -1,4 +1,4 @@ -{"channel":null,"title":"1A Network (720p)","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"ZJejfvbOVTyuf6Gk"} -{"channel":null,"title":"Fox Sports 2 Asia (Thai) (720p)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"gnjGLZU1CEz79gcp"} -{"channel":"ATV.ad","title":"ATV (720p) [Offline]","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"9r9qmYRa2kxiirl0"} -{"channel":null,"title":"ABC (720p)","filepath":"tests/__data__/input/channels/wrong_id.m3u","url":"https://example.com/playlist2.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"unOCFJtsDCbJupxR"} +{"channel":null,"title":"1A Network (720p)","filepath":"tests/__data__/input/streams/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"ZJejfvbOVTyuf6Gk"} +{"channel":null,"title":"Fox Sports 2 Asia (Thai) (720p)","filepath":"tests/__data__/input/streams/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"gnjGLZU1CEz79gcp"} +{"channel":"ATV.ad","title":"ATV (720p) [Offline]","filepath":"tests/__data__/input/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"9r9qmYRa2kxiirl0"} +{"channel":null,"title":"ABC (720p)","filepath":"tests/__data__/input/streams/wrong_id.m3u","url":"https://example.com/playlist2.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"unOCFJtsDCbJupxR"} diff --git a/tests/__data__/expected/database/db_update.streams.db b/tests/__data__/expected/database/db_update.streams.db index 38ecd7198..8accfabc3 100644 --- a/tests/__data__/expected/database/db_update.streams.db +++ b/tests/__data__/expected/database/db_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"timeout"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"timeout"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/streams/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","status":"error"} {"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","status":"online"} diff --git a/tests/__data__/expected/database/streams.db b/tests/__data__/expected/database/streams.db index bb152cf0f..ae9993340 100644 --- a/tests/__data__/expected/database/streams.db +++ b/tests/__data__/expected/database/streams.db @@ -1,3 +1,3 @@ -{"channel":null,"title":"1A Network","filepath":"tests/__data__/input/channels/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} -{"channel":"FoxSports2AsiaThai.us","title":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/channels/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} -{"channel":"ATV.ad","title":"ATV","filepath":"tests/__data__/input/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} +{"channel":null,"title":"1A Network","filepath":"tests/__data__/input/streams/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} +{"channel":"FoxSports2AsiaThai.us","title":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/streams/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} +{"channel":"ATV.ad","title":"ATV","filepath":"tests/__data__/input/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} diff --git a/tests/__data__/expected/channels/ad.m3u b/tests/__data__/expected/streams/ad.m3u similarity index 100% rename from tests/__data__/expected/channels/ad.m3u rename to tests/__data__/expected/streams/ad.m3u diff --git a/tests/__data__/expected/channels/ru.m3u b/tests/__data__/expected/streams/ru.m3u similarity index 100% rename from tests/__data__/expected/channels/ru.m3u rename to tests/__data__/expected/streams/ru.m3u diff --git a/tests/__data__/expected/channels/uk.m3u b/tests/__data__/expected/streams/uk.m3u similarity index 100% rename from tests/__data__/expected/channels/uk.m3u rename to tests/__data__/expected/streams/uk.m3u diff --git a/tests/__data__/input/database/base_streams.db b/tests/__data__/input/database/base_streams.db index 180ac7f3e..91b402043 100644 --- a/tests/__data__/input/database/base_streams.db +++ b/tests/__data__/input/database/base_streams.db @@ -1,4 +1,4 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"Andorra TV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"Andorra TV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/__data__/input/database/db_export.streams.db b/tests/__data__/input/database/db_export.streams.db index 1318fecae..18f362471 100644 --- a/tests/__data__/input/database/db_export.streams.db +++ b/tests/__data__/input/database/db_export.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"error"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0","status":"error"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn","status":"blocked"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz","status":"error"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/streams/uk.m3u","url":"https://master.starmena-cloud.com/hls/libyas.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn","status":"online","bitrate":0,"width":1024,"height":576} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3","status":"error"} {"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","bitrate":2226543,"width":1280,"height":720,"url":"https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ","status":"online"} diff --git a/tests/__data__/input/database/db_update.streams.db b/tests/__data__/input/database/db_update.streams.db index a9d7a1e71..27a72b669 100644 --- a/tests/__data__/input/database/db_update.streams.db +++ b/tests/__data__/input/database/db_update.streams.db @@ -1,7 +1,7 @@ -{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} {"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"cFFpFVzSn6xFMUF3"} {"title":"Sharq","channel":"Sharq.af","filepath":"channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"u7iyA6cjtf1iWWAZ"} -{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"ABC","channel":"ABC.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCI3n"} +{"title":"BBC News HD","channel":"BBCNewsHD.ad","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"ABC","channel":"ABC.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCI3n"} diff --git a/tests/__data__/input/database/playlist_generate.streams.db b/tests/__data__/input/database/playlist_generate.streams.db index 34b6f29b9..c90b9ee7c 100644 --- a/tests/__data__/input/database/playlist_generate.streams.db +++ b/tests/__data__/input/database/playlist_generate.streams.db @@ -1,12 +1,12 @@ -{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD (720p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCId5"} -{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"error","cluster_id":1,"_id":"I6cjG2xCBRFFP44z"} -{"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} -{"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/channels/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF5"} -{"title":"Tastemade","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPAB"} -{"title":"Supra","channel":"","filepath":"tests/__data__/output/channels/unsorted.m3u","url":"https://www.youtube.com/watch?v=dzShOMiH1FY","http_referrer":null,"user_agent":null,"status":"error","cluster_id":1,"_id":"2ST8btby3mmsg5AB"} -{"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/channels/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF9"} -{"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/channels/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgP49"} -{"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} -{"title":"Zoo (720p)","channel":"Zoo.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCId5"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"error","cluster_id":1,"_id":"I6cjG2xCBRFFP44z"} +{"title":"Andorra TV (720p) [Not 24/7]","channel":"","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index2.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} +{"title":"Visit-X TV","channel":"VisitXTV.nl","filepath":"tests/__data__/output/streams/nl.m3u","url":"https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF5"} +{"title":"Tastemade","channel":"","filepath":"tests/__data__/output/streams/unsorted.m3u","url":"https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPAB"} +{"title":"Supra","channel":"","filepath":"tests/__data__/output/streams/unsorted.m3u","url":"https://www.youtube.com/watch?v=dzShOMiH1FY","http_referrer":null,"user_agent":null,"status":"error","cluster_id":1,"_id":"2ST8btby3mmsg5AB"} +{"title":"Daawah TV","channel":"","filepath":"tests/__data__/output/streams/in.m3u","url":"http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgPF9"} +{"title":"Meteomedia","channel":"MeteoMedia.ca","filepath":"tests/__data__/output/streams/in.m3u","url":"http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8","http_referrer":null,"user_agent":null,"status":"online","cluster_id":1,"_id":"2ST8btby3mmsgP49"} +{"title":"Zoo (480p)","channel":"Zoo.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo?480","http_referrer":null,"user_agent":null,"height":480,"width":640,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4s3"} +{"title":"Zoo (720p)","channel":"Zoo.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/zoo","http_referrer":null,"user_agent":null,"height":720,"width":1280,"status":"online","cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} diff --git a/tests/__data__/input/database/playlist_update.streams.db b/tests/__data__/input/database/playlist_update.streams.db index ccdc8e645..3fa913e3c 100644 --- a/tests/__data__/input/database/playlist_update.streams.db +++ b/tests/__data__/input/database/playlist_update.streams.db @@ -1,6 +1,6 @@ -{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/channels/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"cluster_id":1,"status":"online","_id":"2ST8btby3mmsgPF0"} -{"title":"BBC News HD (720p) [Not 24/7]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":3,"status":"error","_id":"3TbieV1ptnZVCIdn"} -{"title":"ATV (720p) [Offline]","channel":"AndorraTV.ad","filepath":"tests/__data__/output/channels/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"timeout","_id":"I6cjG2xCBRFFP4sz"} -{"title":"BBC News HD (480p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/channels/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":480,"width":640,"cluster_id":3,"status":"online","_id":"WTbieV1ptnZVCIdn"} -{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"blocked","_id":"cFFpFVzSn6xFMUF3"} -{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/channels/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"online","_id":"u7iyA6cjtf1iWWAZ"} +{"title":"ЛДПР ТВ (1080p)","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"height":1080,"width":1920,"cluster_id":1,"status":"online","_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD (720p) [Not 24/7]","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":3,"status":"error","_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV (720p) [Offline]","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"timeout","_id":"I6cjG2xCBRFFP4sz"} +{"title":"BBC News HD (480p) [Geo-blocked]","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/playlist.m3u8","http_referrer":null,"user_agent":null,"height":480,"width":640,"cluster_id":3,"status":"online","_id":"WTbieV1ptnZVCIdn"} +{"title":"Kayhan TV","channel":"KayhanTV.af","filepath":"tests/__data__/output/streams/af.m3u","url":"http://208.93.117.113/live/Stream1/playlist.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"blocked","_id":"cFFpFVzSn6xFMUF3"} +{"title":"Sharq","channel":"Sharq.af","filepath":"tests/__data__/output/streams/af.m3u","url":"http://51.210.199.50/hls/stream.m3u8","http_referrer":null,"user_agent":null,"height":720,"width":1280,"cluster_id":1,"status":"online","_id":"u7iyA6cjtf1iWWAZ"} diff --git a/tests/__data__/input/channels/ad.m3u b/tests/__data__/input/streams/ad.m3u similarity index 100% rename from tests/__data__/input/channels/ad.m3u rename to tests/__data__/input/streams/ad.m3u diff --git a/tests/__data__/input/channels/unsorted.m3u b/tests/__data__/input/streams/unsorted.m3u similarity index 100% rename from tests/__data__/input/channels/unsorted.m3u rename to tests/__data__/input/streams/unsorted.m3u diff --git a/tests/__data__/input/channels/us_blocked.m3u b/tests/__data__/input/streams/us_blocked.m3u similarity index 100% rename from tests/__data__/input/channels/us_blocked.m3u rename to tests/__data__/input/streams/us_blocked.m3u diff --git a/tests/__data__/input/channels/wrong_id.m3u b/tests/__data__/input/streams/wrong_id.m3u similarity index 100% rename from tests/__data__/input/channels/wrong_id.m3u rename to tests/__data__/input/streams/wrong_id.m3u diff --git a/tests/commands/database/create.test.js b/tests/commands/database/create.test.js index d3f7e07da..056b50cbd 100644 --- a/tests/commands/database/create.test.js +++ b/tests/commands/database/create.test.js @@ -6,7 +6,7 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') const stdout = execSync( - 'DB_DIR=tests/__data__/output/database npm run db:create -- --input-dir=tests/__data__/input/channels --max-clusters=1', + 'DB_DIR=tests/__data__/output/database npm run db:create -- --input-dir=tests/__data__/input/streams --max-clusters=1', { encoding: 'utf8' } ) }) diff --git a/tests/commands/playlist/validate.test.js b/tests/commands/playlist/validate.test.js index aff4f819a..28089e010 100644 --- a/tests/commands/playlist/validate.test.js +++ b/tests/commands/playlist/validate.test.js @@ -3,7 +3,7 @@ const { execSync } = require('child_process') it('show an error if channel name in the blocklist', () => { try { const stdout = execSync( - 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/us_blocked.m3u', + 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/streams/us_blocked.m3u', { encoding: 'utf8' } @@ -13,20 +13,20 @@ it('show an error if channel name in the blocklist', () => { } catch (err) { expect(err.status).toBe(1) expect(err.stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/us_blocked.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/channels/us_blocked.m3u\n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/streams/us_blocked.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/us_blocked.m3u\n 2 error "Fox Sports 2 Asia" is on the blocklist due to claims of copyright holders (https://github.com/iptv-org/iptv/issues/0000)\n\n1 problems (1 errors, 0 warnings)\n` ) } }) it('show a warning if channel has wrong id', () => { const stdout = execSync( - 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/channels/wrong_id.m3u', + 'DATA_DIR=tests/__data__/input/data npm run playlist:validate -- tests/__data__/input/streams/wrong_id.m3u', { encoding: 'utf8' } ) expect(stdout).toBe( - `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/channels/wrong_id.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/channels/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` + `\n> playlist:validate\n> node scripts/commands/playlist/validate.js "tests/__data__/input/streams/wrong_id.m3u"\n\nloading blocklist...\nfound 4 records\n\ntests/__data__/input/streams/wrong_id.m3u\n 2 warning "qib22lAq1L.us" is not in the database\n\n1 problems (0 errors, 1 warnings)\n` ) }) From 64899ef9f63488b64ff8d0ebde45413c69f464dc Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 02:53:12 +0300 Subject: [PATCH 128/157] Remove extra dependencies --- package-lock.json | 2743 ++++++++++++++++++++---------------------- package.json | 11 +- scripts/core/file.js | 2 +- 3 files changed, 1341 insertions(+), 1415 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7d7a20c98..5dc4c9537 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,75 +7,80 @@ "name": "iptv", "license": "MIT", "dependencies": { + "@alex_neo/jest-expect-message": "^1.0.5", "chalk": "^4.1.2", - "chunk": "^0.0.3", "commander": "^8.3.0", - "crypto": "^1.0.1", "dayjs": "^1.10.7", "fs-extra": "^10.0.0", "iptv-checker": "^0.22.0", "iptv-playlist-parser": "^0.10.2", - "jest": "^27.4.3", + "jest": "^27.5.1", + "jest-expect-message": "^1.0.2", "lodash": "^4.17.21", "m3u-linter": "^0.3.0", "markdown-include": "^0.4.3", - "mz": "^2.7.0", "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", "transliteration": "^2.2.0", "winston": "^3.3.3" - }, - "devDependencies": { - "@alex_neo/jest-expect-message": "^1.0.5", - "jest-expect-message": "^1.0.2" } }, "node_modules/@alex_neo/jest-expect-message": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@alex_neo/jest-expect-message/-/jest-expect-message-1.0.5.tgz", - "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==", - "dev": true + "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==" + }, + "node_modules/@ampproject/remapping": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.1.tgz", + "integrity": "sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.0" + }, + "engines": { + "node": ">=6.0.0" + } }, "node_modules/@babel/code-frame": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dependencies": { - "@babel/highlight": "^7.16.0" + "@babel/highlight": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.16.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", - "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz", + "integrity": "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", - "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-compilation-targets": "^7.16.0", - "@babel/helper-module-transforms": "^7.16.0", - "@babel/helpers": "^7.16.0", - "@babel/parser": "^7.16.0", - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.2.tgz", + "integrity": "sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw==", + "dependencies": { + "@ampproject/remapping": "^2.0.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.17.2", + "@babel/parser": "^7.17.0", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" @@ -85,20 +90,12 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@babel/generator": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", - "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.0.tgz", + "integrity": "sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw==", "dependencies": { - "@babel/types": "^7.16.0", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -115,12 +112,12 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", - "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", "dependencies": { - "@babel/compat-data": "^7.16.0", - "@babel/helper-validator-option": "^7.14.5", + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", "browserslist": "^4.17.5", "semver": "^6.3.0" }, @@ -131,171 +128,146 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", - "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", "dependencies": { - "@babel/helper-get-function-arity": "^7.16.0", - "@babel/template": "^7.16.0", - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", - "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "node_modules/@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", - "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", - "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", - "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", - "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.0", - "@babel/helper-replace-supers": "^7.16.0", - "@babel/helper-simple-access": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/helper-validator-identifier": "^7.15.7", - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", - "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", - "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.16.0", - "@babel/helper-optimise-call-expression": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0" - }, + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", - "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", - "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "dependencies": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.15.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", - "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", - "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz", + "integrity": "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==", "dependencies": { - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.3", - "@babel/types": "^7.16.0" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", - "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -340,6 +312,14 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -360,9 +340,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.16.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", - "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.0.tgz", + "integrity": "sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw==", "bin": { "parser": "bin/babel-parser.js" }, @@ -506,11 +486,11 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", - "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -520,30 +500,31 @@ } }, "node_modules/@babel/template": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", - "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dependencies": { - "@babel/code-frame": "^7.16.0", - "@babel/parser": "^7.16.0", - "@babel/types": "^7.16.0" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", - "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-function-name": "^7.16.0", - "@babel/helper-hoist-variables": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/parser": "^7.16.3", - "@babel/types": "^7.16.0", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.0.tgz", + "integrity": "sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.0", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.0", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -552,11 +533,11 @@ } }, "node_modules/@babel/types": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", - "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -602,15 +583,15 @@ } }, "node_modules/@jest/console": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.4.2.tgz", - "integrity": "sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.4.2", - "jest-util": "^27.4.2", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", "slash": "^3.0.0" }, "engines": { @@ -618,34 +599,34 @@ } }, "node_modules/@jest/core": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.4.3.tgz", - "integrity": "sha512-V9ms3zSxUHxh1E/ZLAiXF7SLejsdFnjWTFizWotMOWvjho0lW5kSjZymhQSodNW0T0ZMQRiha7f8+NcFVm3hJQ==", - "dependencies": { - "@jest/console": "^27.4.2", - "@jest/reporters": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^27.4.2", - "jest-config": "^27.4.3", - "jest-haste-map": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-resolve-dependencies": "^27.4.2", - "jest-runner": "^27.4.3", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", - "jest-watcher": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", @@ -664,73 +645,73 @@ } }, "node_modules/@jest/environment": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.4.2.tgz", - "integrity": "sha512-uSljKxh/rGlHlmhyeG4ZoVK9hOec+EPBkwTHkHKQ2EqDu5K+MaG9uJZ8o1CbRsSdZqSuhXvJCYhBWsORPPg6qw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dependencies": { - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2" + "jest-mock": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.2.tgz", - "integrity": "sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", - "jest-message-util": "^27.4.2", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2" + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/globals": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.4.2.tgz", - "integrity": "sha512-KkfaHEttlGpXYAQTZHgrESiEPx2q/DKAFLGLFda1uGVrqc17snd3YVPhOxlXOHIzVPs+lQ/SDB2EIvxyGzb3Ew==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dependencies": { - "@jest/environment": "^27.4.2", - "@jest/types": "^27.4.2", - "expect": "^27.4.2" + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/reporters": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.2.tgz", - "integrity": "sha512-sp4aqmdBJtjKetEakzDPcZggPcVIF6w9QLkYBbaWDV6e/SIsHnF1S4KtIH91eEc2fp7ep6V/e1xvdfEoho1d2w==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", @@ -750,12 +731,12 @@ } }, "node_modules/@jest/source-map": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.4.0.tgz", - "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dependencies": { "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "source-map": "^0.6.0" }, "engines": { @@ -763,12 +744,12 @@ } }, "node_modules/@jest/test-result": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.2.tgz", - "integrity": "sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dependencies": { - "@jest/console": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -777,36 +758,36 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.2.tgz", - "integrity": "sha512-HmHp5mlh9f9GyNej5yCS1JZIFfUGnP9+jEOH5zoq5EmsuZeYD+dGULqyvGDPtuzzbyAFJ6R4+z4SS0VvnFwwGQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dependencies": { - "@jest/test-result": "^27.4.2", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-runtime": "^27.4.2" + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.2.tgz", - "integrity": "sha512-RTKcPZllfcmLfnlxBya7aypofhdz05+E6QITe55Ex0rxyerkgjmmpMlvVn11V0cP719Ps6WcDYCnDzxnnJUwKg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dependencies": { "@babel/core": "^7.1.0", - "@jest/types": "^27.4.2", - "babel-plugin-istanbul": "^6.0.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-util": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", "micromatch": "^4.0.4", - "pirates": "^4.0.1", + "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" @@ -816,9 +797,9 @@ } }, "node_modules/@jest/types": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", - "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -830,6 +811,28 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "node_modules/@seald-io/binary-search-tree": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@seald-io/binary-search-tree/-/binary-search-tree-1.0.2.tgz", @@ -870,9 +873,9 @@ } }, "node_modules/@types/babel__core": { - "version": "7.1.17", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz", - "integrity": "sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==", + "version": "7.1.18", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", @@ -882,9 +885,9 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", - "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dependencies": { "@babel/types": "^7.0.0" } @@ -915,9 +918,9 @@ } }, "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", @@ -936,14 +939,14 @@ } }, "node_modules/@types/node": { - "version": "16.11.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", - "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==" + "version": "17.0.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.18.tgz", + "integrity": "sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==" }, "node_modules/@types/prettier": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz", - "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==" + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", + "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==" }, "node_modules/@types/stack-utils": { "version": "2.0.1", @@ -969,9 +972,9 @@ "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" }, "node_modules/acorn": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", - "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "bin": { "acorn": "bin/acorn" }, @@ -1054,11 +1057,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" - }, "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", @@ -1098,17 +1096,17 @@ } }, "node_modules/babel-jest": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.2.tgz", - "integrity": "sha512-MADrjb3KBO2eyZCAc6QaJg6RT5u+6oEdDyHO5HEalnpwQ6LrhTsQF2Kj1Wnz2t6UPXIXPk18dSXXOT0wF5yTxA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dependencies": { - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^27.4.0", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { @@ -1133,25 +1131,10 @@ "node": ">=8" } }, - "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", - "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-plugin-jest-hoist": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz", - "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -1185,11 +1168,11 @@ } }, "node_modules/babel-preset-jest": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz", - "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dependencies": { - "babel-plugin-jest-hoist": "^27.4.0", + "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1230,12 +1213,12 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" }, "node_modules/browserslist": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", - "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", "dependencies": { - "caniuse-lite": "^1.0.30001280", - "electron-to-chromium": "^1.3.896", + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", "escalade": "^3.1.1", "node-releases": "^2.0.1", "picocolors": "^1.0.0" @@ -1281,9 +1264,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001285", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001285.tgz", - "integrity": "sha512-KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==", + "version": "1.0.30001312", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz", + "integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==", "funding": { "type": "opencollective", "url": "https://opencollective.com/browserslist" @@ -1312,11 +1295,6 @@ "node": ">=10" } }, - "node_modules/chunk": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/chunk/-/chunk-0.0.3.tgz", - "integrity": "sha512-oGfwvhjGRW3Ks4GTdGoJhZWKEO1eomjOC26001R+5H0TIlP7vBCO+/XcNcPCA6ayYC7RQSq1/NsN4679Odcm5A==" - }, "node_modules/ci-info": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", @@ -1470,12 +1448,6 @@ "node": ">= 8" } }, - "node_modules/crypto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/crypto/-/crypto-1.0.1.tgz", - "integrity": "sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==", - "deprecated": "This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in." - }, "node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", @@ -1579,9 +1551,9 @@ } }, "node_modules/diff-sequences": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz", - "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } @@ -1606,9 +1578,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.12", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.12.tgz", - "integrity": "sha512-zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==" + "version": "1.4.69", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.69.tgz", + "integrity": "sha512-0rxK21MqWhN/fVUXNOeBksRlw79Wq26y6R8lxEEL2v7vwzRWbYhXI7Id5msee7/q1NNgu4mG78qaablN2xtfTQ==" }, "node_modules/emittery": { "version": "0.8.1", @@ -1631,6 +1603,19 @@ "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-ex/node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", @@ -1640,11 +1625,11 @@ } }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, "node_modules/escodegen": { @@ -1727,32 +1712,19 @@ } }, "node_modules/expect": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.4.2.tgz", - "integrity": "sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dependencies": { - "@jest/types": "^27.4.2", - "ansi-styles": "^5.0.0", - "jest-get-type": "^27.4.0", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-regex-util": "^27.4.0" + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/expect/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -1805,9 +1777,9 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "node_modules/follow-redirects": { - "version": "1.14.4", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz", - "integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==", + "version": "1.14.8", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", + "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==", "funding": [ { "type": "individual", @@ -1951,9 +1923,9 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" }, "node_modules/has": { "version": "1.0.3", @@ -2040,9 +2012,9 @@ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" }, "node_modules/import-local": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", - "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -2052,6 +2024,9 @@ }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { @@ -2121,9 +2096,9 @@ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" }, "node_modules/is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dependencies": { "has": "^1.0.3" }, @@ -2195,13 +2170,14 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dependencies": { - "@babel/core": "^7.7.5", + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "engines": { @@ -2235,9 +2211,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.1.tgz", - "integrity": "sha512-q1kvhAXWSsXfMjCdNHNPKZZv94OlspKnoGv+R9RGbnqOOQ0VbNfLFgQDVgi7hHenKsndGq3/o0OBdzDXthWcNw==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", + "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -2247,13 +2223,13 @@ } }, "node_modules/jest": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.3.tgz", - "integrity": "sha512-jwsfVABBzuN3Atm+6h6vIEpTs9+VApODLt4dk2qv1WMOpb1weI1IIZfuwpMiWZ62qvWj78MvdvMHIYdUfqrFaA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dependencies": { - "@jest/core": "^27.4.3", + "@jest/core": "^27.5.1", "import-local": "^3.0.2", - "jest-cli": "^27.4.3" + "jest-cli": "^27.5.1" }, "bin": { "jest": "bin/jest.js" @@ -2271,11 +2247,11 @@ } }, "node_modules/jest-changed-files": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.4.2.tgz", - "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" }, @@ -2284,26 +2260,26 @@ } }, "node_modules/jest-circus": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.2.tgz", - "integrity": "sha512-2ePUSru1BGMyzxsMvRfu+tNb+PW60rUyMLJBfw1Nrh5zC8RoTPfF+zbE0JToU31a6ZVe4nnrNKWYRzlghAbL0A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dependencies": { - "@jest/environment": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", - "expect": "^27.4.2", + "expect": "^27.5.1", "is-generator-fn": "^2.0.0", - "jest-each": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" @@ -2312,33 +2288,68 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.4.3.tgz", - "integrity": "sha512-DQ10HTSqYtC2pO7s9j2jw+li4xUnm2wLYWH2o7K1ftB8NyvToHsXoLlXxtsGh3AW9gUQR6KY/4B7G+T/NswJBw==", + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^27.4.2", - "@jest/types": "^27.4.2", - "babel-jest": "^27.4.2", + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-circus": "^27.4.2", - "jest-environment-jsdom": "^27.4.3", - "jest-environment-node": "^27.4.2", - "jest-get-type": "^27.4.0", - "jest-jasmine2": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-runner": "^27.4.3", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", "micromatch": "^4.0.4", - "pretty-format": "^27.4.2", - "slash": "^3.0.0" + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -2353,23 +2364,23 @@ } }, "node_modules/jest-diff": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.2.tgz", - "integrity": "sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^27.4.0", - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-docblock": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.4.0.tgz", - "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dependencies": { "detect-newline": "^3.0.0" }, @@ -2378,31 +2389,31 @@ } }, "node_modules/jest-each": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.4.2.tgz", - "integrity": "sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", - "jest-get-type": "^27.4.0", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2" + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-jsdom": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.3.tgz", - "integrity": "sha512-x1AUVz3G14LpEJs7KIFUaTINT2n0unOUmvdAby3s/sldUpJJetOJifHo1O/EUQC5fNBowggwJbVulko18y6OWw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dependencies": { - "@jest/environment": "^27.4.2", - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", "jsdom": "^16.6.0" }, "engines": { @@ -2410,16 +2421,16 @@ } }, "node_modules/jest-environment-node": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.2.tgz", - "integrity": "sha512-nzTZ5nJ+FabuZPH2YVci7SZIHpvtNRHPt8+vipLkCnAgXGjVzHm7XJWdnNqXbAkExIgiKeVEkVMNZOZE/LeiIg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dependencies": { - "@jest/environment": "^27.4.2", - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2" + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -2428,32 +2439,31 @@ "node_modules/jest-expect-message": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/jest-expect-message/-/jest-expect-message-1.0.2.tgz", - "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==", - "dev": true + "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==" }, "node_modules/jest-get-type": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", - "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-haste-map": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.2.tgz", - "integrity": "sha512-foiyAEePORUN2eeJnOtcM1y8qW0ShEd9kTjWVL4sVaMcuCJM6gtHegvYPBRT0mpI/bs4ueThM90+Eoj2ncoNsA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-regex-util": "^27.4.0", - "jest-serializer": "^27.4.0", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" }, @@ -2465,27 +2475,26 @@ } }, "node_modules/jest-jasmine2": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.2.tgz", - "integrity": "sha512-VO/fyAJSH9u0THjbteFiL8qc93ufU+yW+bdieDc8tzTCWwlWzO53UHS5nFK1qmE8izb5Smkn+XHlVt6/l06MKQ==", - "dependencies": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^27.4.2", - "@jest/source-map": "^27.4.0", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "expect": "^27.4.2", + "expect": "^27.5.1", "is-generator-fn": "^2.0.0", - "jest-each": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", "throat": "^6.0.1" }, "engines": { @@ -2493,43 +2502,43 @@ } }, "node_modules/jest-leak-detector": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.2.tgz", - "integrity": "sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dependencies": { - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.2.tgz", - "integrity": "sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^27.4.2", - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-message-util": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.2.tgz", - "integrity": "sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^27.4.2", + "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2538,11 +2547,11 @@ } }, "node_modules/jest-mock": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.2.tgz", - "integrity": "sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*" }, "engines": { @@ -2566,25 +2575,25 @@ } }, "node_modules/jest-regex-util": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz", - "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.2.tgz", - "integrity": "sha512-d/zqPjxCzMqHlOdRTg8cTpO9jY+1/T74KazT8Ws/LwmwxV5sRMWOkiLjmzUCDj/5IqA5XHNK4Hkmlq9Kdpb9Sg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" @@ -2594,43 +2603,42 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.2.tgz", - "integrity": "sha512-hb++cTpqvOWfU49MCP/JQkxmnrhKoAVqXWFjgYXswRSVGk8Q6bDTSvhbCeYXDtXaymY0y7WrrSIlKogClcKJuw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "dependencies": { - "@jest/types": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-snapshot": "^27.4.2" + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runner": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.3.tgz", - "integrity": "sha512-JgR6Om/j22Fd6ZUUIGTWNcCtuZVYbNrecb4k89W4UyFJoRtHpo2zMKWkmFFFJoqwWGrfrcPLnVBIgkJiTV3cyA==", - "dependencies": { - "@jest/console": "^27.4.2", - "@jest/environment": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-docblock": "^27.4.0", - "jest-environment-jsdom": "^27.4.3", - "jest-environment-node": "^27.4.2", - "jest-haste-map": "^27.4.2", - "jest-leak-detector": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" }, @@ -2639,81 +2647,75 @@ } }, "node_modules/jest-runtime": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.2.tgz", - "integrity": "sha512-eqPgcBaUNaw6j8T5M+dnfAEh6MIrh2YmtskCr9sl50QYpD22Sg+QqHw3J3nmaLzVMbBtOMHFFxLF0Qx8MsZVFQ==", - "dependencies": { - "@jest/console": "^27.4.2", - "@jest/environment": "^27.4.2", - "@jest/globals": "^27.4.2", - "@jest/source-map": "^27.4.0", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", - "@types/yargs": "^16.0.0", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", - "exit": "^0.1.2", "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-mock": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^16.2.0" + "strip-bom": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-serializer": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz", - "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dependencies": { "@types/node": "*", - "graceful-fs": "^4.2.4" + "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-snapshot": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.2.tgz", - "integrity": "sha512-DI7lJlNIu6WSQ+esqhnJzEzU70+dV+cNjoF1c+j5FagWEd3KtOyZvVliAH0RWNQ6KSnAAnKSU0qxJ8UXOOhuUQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dependencies": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", - "@babel/parser": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^27.4.2", - "graceful-fs": "^4.2.4", - "jest-diff": "^27.4.2", - "jest-get-type": "^27.4.0", - "jest-haste-map": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-util": "^27.4.2", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^27.4.2", + "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "engines": { @@ -2735,15 +2737,15 @@ } }, "node_modules/jest-util": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz", - "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { @@ -2751,25 +2753,25 @@ } }, "node_modules/jest-validate": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.2.tgz", - "integrity": "sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dependencies": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^27.4.0", + "jest-get-type": "^27.5.1", "leven": "^3.1.0", - "pretty-format": "^27.4.2" + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz", - "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "engines": { "node": ">=10" }, @@ -2778,16 +2780,16 @@ } }, "node_modules/jest-watcher": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.2.tgz", - "integrity": "sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dependencies": { - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^27.4.2", + "jest-util": "^27.5.1", "string-length": "^4.0.1" }, "engines": { @@ -2795,9 +2797,9 @@ } }, "node_modules/jest-worker": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.2.tgz", - "integrity": "sha512-0QMy/zPovLfUPyHuOuuU4E+kGACXXE84nRnq6lBVI9GJg5DCBiA97SATi+ZP8CpiJwEQy1oCPjRBf8AnLjN+Ag==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -2821,39 +2823,6 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jest/node_modules/jest-cli": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.3.tgz", - "integrity": "sha512-zZSJBXNC/i8UnJPwcKWsqnhGgIF3uoTYP7th32Zej7KNQJdxzOMj+wCfy2Ox3kU7nXErJ36DtYyXDhfiqaiDRw==", - "dependencies": { - "@jest/core": "^27.4.3", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "jest-config": "^27.4.3", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -2927,6 +2896,11 @@ "node": ">=4" } }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, "node_modules/json5": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", @@ -3001,6 +2975,11 @@ "immediate": "~3.0.5" } }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, "node_modules/localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -3175,16 +3154,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -3212,9 +3181,9 @@ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" }, "node_modules/node-releases": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", - "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -3251,14 +3220,6 @@ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -3338,6 +3299,23 @@ "node": ">=6" } }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", @@ -3378,9 +3356,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { "node": ">=8.6" }, @@ -3389,9 +3367,9 @@ } }, "node_modules/pirates": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", - "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "engines": { "node": ">= 6" } @@ -3416,11 +3394,10 @@ } }, "node_modules/pretty-format": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.2.tgz", - "integrity": "sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dependencies": { - "@jest/types": "^27.4.2", "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" @@ -3429,14 +3406,6 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pretty-format/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", @@ -3522,12 +3491,16 @@ } }, "node_modules/resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -3628,9 +3601,9 @@ } }, "node_modules/signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "node_modules/simple-swizzle": { "version": "0.2.2", @@ -3694,14 +3667,6 @@ "node": ">=10" } }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "engines": { - "node": ">=8" - } - }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -3781,6 +3746,17 @@ "node": ">=6" } }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -3804,6 +3780,17 @@ "node": ">=8" } }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -3842,25 +3829,6 @@ "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, "node_modules/throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", @@ -3986,9 +3954,9 @@ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "node_modules/v8-to-istanbul": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz", - "integrity": "sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", @@ -4185,9 +4153,9 @@ } }, "node_modules/ws": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", - "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "engines": { "node": ">=8.3.0" }, @@ -4257,57 +4225,57 @@ "@alex_neo/jest-expect-message": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@alex_neo/jest-expect-message/-/jest-expect-message-1.0.5.tgz", - "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==", - "dev": true + "integrity": "sha512-1eBykZCd0pPGl5qKtV6Z5ARA6yuhXzHsVN2h5GH5/H6svYa37Jr7vMio5OFpiw1LBHtscrZs7amSkZkcwm0cvQ==" + }, + "@ampproject/remapping": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.1.tgz", + "integrity": "sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==", + "requires": { + "@jridgewell/trace-mapping": "^0.3.0" + } }, "@babel/code-frame": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", - "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "requires": { - "@babel/highlight": "^7.16.0" + "@babel/highlight": "^7.16.7" } }, "@babel/compat-data": { - "version": "7.16.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", - "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==" + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz", + "integrity": "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==" }, "@babel/core": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", - "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", - "requires": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-compilation-targets": "^7.16.0", - "@babel/helper-module-transforms": "^7.16.0", - "@babel/helpers": "^7.16.0", - "@babel/parser": "^7.16.0", - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.2.tgz", + "integrity": "sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw==", + "requires": { + "@ampproject/remapping": "^2.0.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.17.2", + "@babel/parser": "^7.17.0", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } + "semver": "^6.3.0" } }, "@babel/generator": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", - "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.0.tgz", + "integrity": "sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw==", "requires": { - "@babel/types": "^7.16.0", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -4320,139 +4288,120 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", - "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", "requires": { - "@babel/compat-data": "^7.16.0", - "@babel/helper-validator-option": "^7.14.5", + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", "browserslist": "^4.17.5", "semver": "^6.3.0" } }, - "@babel/helper-function-name": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", - "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", "requires": { - "@babel/helper-get-function-arity": "^7.16.0", - "@babel/template": "^7.16.0", - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, - "@babel/helper-get-function-arity": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", - "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", "requires": { - "@babel/types": "^7.16.0" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" } }, - "@babel/helper-hoist-variables": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", - "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", - "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, "@babel/helper-module-imports": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", - "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, "@babel/helper-module-transforms": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", - "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", "requires": { - "@babel/helper-module-imports": "^7.16.0", - "@babel/helper-replace-supers": "^7.16.0", - "@babel/helper-simple-access": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/helper-validator-identifier": "^7.15.7", - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", - "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", - "requires": { - "@babel/types": "^7.16.0" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" - }, - "@babel/helper-replace-supers": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", - "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", - "requires": { - "@babel/helper-member-expression-to-functions": "^7.16.0", - "@babel/helper-optimise-call-expression": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0" - } + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==" }, "@babel/helper-simple-access": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", - "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, "@babel/helper-split-export-declaration": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", - "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "requires": { - "@babel/types": "^7.16.0" + "@babel/types": "^7.16.7" } }, "@babel/helper-validator-identifier": { - "version": "7.15.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", - "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==" + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" }, "@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" }, "@babel/helpers": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", - "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz", + "integrity": "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==", "requires": { - "@babel/template": "^7.16.0", - "@babel/traverse": "^7.16.3", - "@babel/types": "^7.16.0" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0" } }, "@babel/highlight": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", - "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -4488,6 +4437,11 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -4504,9 +4458,9 @@ } }, "@babel/parser": { - "version": "7.16.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", - "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==" + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.0.tgz", + "integrity": "sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw==" }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", @@ -4605,45 +4559,46 @@ } }, "@babel/plugin-syntax-typescript": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", - "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", + "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/template": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", - "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "requires": { - "@babel/code-frame": "^7.16.0", - "@babel/parser": "^7.16.0", - "@babel/types": "^7.16.0" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/traverse": { - "version": "7.16.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", - "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", - "requires": { - "@babel/code-frame": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/helper-function-name": "^7.16.0", - "@babel/helper-hoist-variables": "^7.16.0", - "@babel/helper-split-export-declaration": "^7.16.0", - "@babel/parser": "^7.16.3", - "@babel/types": "^7.16.0", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.0.tgz", + "integrity": "sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==", + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.0", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.0", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", - "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "requires": { - "@babel/helper-validator-identifier": "^7.15.7", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" } }, @@ -4680,47 +4635,47 @@ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" }, "@jest/console": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.4.2.tgz", - "integrity": "sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.4.2", - "jest-util": "^27.4.2", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", "slash": "^3.0.0" } }, "@jest/core": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.4.3.tgz", - "integrity": "sha512-V9ms3zSxUHxh1E/ZLAiXF7SLejsdFnjWTFizWotMOWvjho0lW5kSjZymhQSodNW0T0ZMQRiha7f8+NcFVm3hJQ==", - "requires": { - "@jest/console": "^27.4.2", - "@jest/reporters": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^27.4.2", - "jest-config": "^27.4.3", - "jest-haste-map": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-resolve-dependencies": "^27.4.2", - "jest-runner": "^27.4.3", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", - "jest-watcher": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", @@ -4728,64 +4683,64 @@ } }, "@jest/environment": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.4.2.tgz", - "integrity": "sha512-uSljKxh/rGlHlmhyeG4ZoVK9hOec+EPBkwTHkHKQ2EqDu5K+MaG9uJZ8o1CbRsSdZqSuhXvJCYhBWsORPPg6qw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "requires": { - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2" + "jest-mock": "^27.5.1" } }, "@jest/fake-timers": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.2.tgz", - "integrity": "sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", - "jest-message-util": "^27.4.2", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2" + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" } }, "@jest/globals": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.4.2.tgz", - "integrity": "sha512-KkfaHEttlGpXYAQTZHgrESiEPx2q/DKAFLGLFda1uGVrqc17snd3YVPhOxlXOHIzVPs+lQ/SDB2EIvxyGzb3Ew==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "requires": { - "@jest/environment": "^27.4.2", - "@jest/types": "^27.4.2", - "expect": "^27.4.2" + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" } }, "@jest/reporters": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.2.tgz", - "integrity": "sha512-sp4aqmdBJtjKetEakzDPcZggPcVIF6w9QLkYBbaWDV6e/SIsHnF1S4KtIH91eEc2fp7ep6V/e1xvdfEoho1d2w==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "requires": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", @@ -4794,63 +4749,63 @@ } }, "@jest/source-map": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.4.0.tgz", - "integrity": "sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "requires": { "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "source-map": "^0.6.0" } }, "@jest/test-result": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.2.tgz", - "integrity": "sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "requires": { - "@jest/console": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" } }, "@jest/test-sequencer": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.2.tgz", - "integrity": "sha512-HmHp5mlh9f9GyNej5yCS1JZIFfUGnP9+jEOH5zoq5EmsuZeYD+dGULqyvGDPtuzzbyAFJ6R4+z4SS0VvnFwwGQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "requires": { - "@jest/test-result": "^27.4.2", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-runtime": "^27.4.2" + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" } }, "@jest/transform": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.2.tgz", - "integrity": "sha512-RTKcPZllfcmLfnlxBya7aypofhdz05+E6QITe55Ex0rxyerkgjmmpMlvVn11V0cP719Ps6WcDYCnDzxnnJUwKg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "requires": { "@babel/core": "^7.1.0", - "@jest/types": "^27.4.2", - "babel-plugin-istanbul": "^6.0.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-util": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", "micromatch": "^4.0.4", - "pirates": "^4.0.1", + "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" } }, "@jest/types": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", - "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "requires": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -4859,6 +4814,25 @@ "chalk": "^4.0.0" } }, + "@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "@seald-io/binary-search-tree": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@seald-io/binary-search-tree/-/binary-search-tree-1.0.2.tgz", @@ -4896,9 +4870,9 @@ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, "@types/babel__core": { - "version": "7.1.17", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz", - "integrity": "sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==", + "version": "7.1.18", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", @@ -4908,9 +4882,9 @@ } }, "@types/babel__generator": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", - "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "requires": { "@babel/types": "^7.0.0" } @@ -4941,9 +4915,9 @@ } }, "@types/istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" }, "@types/istanbul-lib-report": { "version": "3.0.0", @@ -4962,14 +4936,14 @@ } }, "@types/node": { - "version": "16.11.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", - "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==" + "version": "17.0.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.18.tgz", + "integrity": "sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==" }, "@types/prettier": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz", - "integrity": "sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==" + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", + "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==" }, "@types/stack-utils": { "version": "2.0.1", @@ -4995,9 +4969,9 @@ "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" }, "acorn": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", - "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==" + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==" }, "acorn-globals": { "version": "6.0.0", @@ -5049,11 +5023,6 @@ "color-convert": "^2.0.1" } }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" - }, "anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", @@ -5090,17 +5059,17 @@ } }, "babel-jest": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.2.tgz", - "integrity": "sha512-MADrjb3KBO2eyZCAc6QaJg6RT5u+6oEdDyHO5HEalnpwQ6LrhTsQF2Kj1Wnz2t6UPXIXPk18dSXXOT0wF5yTxA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "requires": { - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^27.4.0", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "slash": "^3.0.0" } }, @@ -5114,26 +5083,12 @@ "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" - }, - "dependencies": { - "istanbul-lib-instrument": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", - "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - } - } } }, "babel-plugin-jest-hoist": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz", - "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "requires": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -5161,11 +5116,11 @@ } }, "babel-preset-jest": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz", - "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "requires": { - "babel-plugin-jest-hoist": "^27.4.0", + "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" } }, @@ -5197,12 +5152,12 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" }, "browserslist": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", - "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", "requires": { - "caniuse-lite": "^1.0.30001280", - "electron-to-chromium": "^1.3.896", + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", "escalade": "^3.1.1", "node-releases": "^2.0.1", "picocolors": "^1.0.0" @@ -5232,9 +5187,9 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "caniuse-lite": { - "version": "1.0.30001285", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001285.tgz", - "integrity": "sha512-KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==" + "version": "1.0.30001312", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz", + "integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==" }, "chalk": { "version": "4.1.2", @@ -5250,11 +5205,6 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" }, - "chunk": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/chunk/-/chunk-0.0.3.tgz", - "integrity": "sha512-oGfwvhjGRW3Ks4GTdGoJhZWKEO1eomjOC26001R+5H0TIlP7vBCO+/XcNcPCA6ayYC7RQSq1/NsN4679Odcm5A==" - }, "ci-info": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", @@ -5391,11 +5341,6 @@ "which": "^2.0.1" } }, - "crypto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/crypto/-/crypto-1.0.1.tgz", - "integrity": "sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==" - }, "cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", @@ -5475,9 +5420,9 @@ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" }, "diff-sequences": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz", - "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==" + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" }, "domexception": { "version": "2.0.1", @@ -5495,9 +5440,9 @@ } }, "electron-to-chromium": { - "version": "1.4.12", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.12.tgz", - "integrity": "sha512-zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==" + "version": "1.4.69", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.69.tgz", + "integrity": "sha512-0rxK21MqWhN/fVUXNOeBksRlw79Wq26y6R8lxEEL2v7vwzRWbYhXI7Id5msee7/q1NNgu4mG78qaablN2xtfTQ==" }, "emittery": { "version": "0.8.1", @@ -5514,15 +5459,30 @@ "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + } + } + }, "escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" }, "escodegen": { "version": "2.0.0", @@ -5573,23 +5533,14 @@ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" }, "expect": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.4.2.tgz", - "integrity": "sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "requires": { - "@jest/types": "^27.4.2", - "ansi-styles": "^5.0.0", - "jest-get-type": "^27.4.0", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-regex-util": "^27.4.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" } }, "fast-json-stable-stringify": { @@ -5638,9 +5589,9 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "follow-redirects": { - "version": "1.14.4", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz", - "integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==" + "version": "1.14.8", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", + "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" }, "form-data": { "version": "3.0.1", @@ -5729,9 +5680,9 @@ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" }, "has": { "version": "1.0.3", @@ -5797,9 +5748,9 @@ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" }, "import-local": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", - "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "requires": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -5865,9 +5816,9 @@ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" }, "is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "requires": { "has": "^1.0.3" } @@ -5918,13 +5869,14 @@ "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" }, "istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "requires": { - "@babel/core": "^7.7.5", + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" } }, @@ -5949,266 +5901,264 @@ } }, "istanbul-reports": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.1.tgz", - "integrity": "sha512-q1kvhAXWSsXfMjCdNHNPKZZv94OlspKnoGv+R9RGbnqOOQ0VbNfLFgQDVgi7hHenKsndGq3/o0OBdzDXthWcNw==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", + "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "requires": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }, "jest": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.3.tgz", - "integrity": "sha512-jwsfVABBzuN3Atm+6h6vIEpTs9+VApODLt4dk2qv1WMOpb1weI1IIZfuwpMiWZ62qvWj78MvdvMHIYdUfqrFaA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "requires": { - "@jest/core": "^27.4.3", + "@jest/core": "^27.5.1", "import-local": "^3.0.2", - "jest-cli": "^27.4.3" - }, - "dependencies": { - "jest-cli": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.3.tgz", - "integrity": "sha512-zZSJBXNC/i8UnJPwcKWsqnhGgIF3uoTYP7th32Zej7KNQJdxzOMj+wCfy2Ox3kU7nXErJ36DtYyXDhfiqaiDRw==", - "requires": { - "@jest/core": "^27.4.3", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "jest-config": "^27.4.3", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - } - } + "jest-cli": "^27.5.1" } }, "jest-changed-files": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.4.2.tgz", - "integrity": "sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" } }, "jest-circus": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.2.tgz", - "integrity": "sha512-2ePUSru1BGMyzxsMvRfu+tNb+PW60rUyMLJBfw1Nrh5zC8RoTPfF+zbE0JToU31a6ZVe4nnrNKWYRzlghAbL0A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "requires": { - "@jest/environment": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", - "expect": "^27.4.2", + "expect": "^27.5.1", "is-generator-fn": "^2.0.0", - "jest-each": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" } }, - "jest-config": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.4.3.tgz", - "integrity": "sha512-DQ10HTSqYtC2pO7s9j2jw+li4xUnm2wLYWH2o7K1ftB8NyvToHsXoLlXxtsGh3AW9gUQR6KY/4B7G+T/NswJBw==", + "jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^27.4.2", - "@jest/types": "^27.4.2", - "babel-jest": "^27.4.2", + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + } + }, + "jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "requires": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-circus": "^27.4.2", - "jest-environment-jsdom": "^27.4.3", - "jest-environment-node": "^27.4.2", - "jest-get-type": "^27.4.0", - "jest-jasmine2": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-runner": "^27.4.3", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", "micromatch": "^4.0.4", - "pretty-format": "^27.4.2", - "slash": "^3.0.0" + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" } }, "jest-diff": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.2.tgz", - "integrity": "sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "requires": { "chalk": "^4.0.0", - "diff-sequences": "^27.4.0", - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" } }, "jest-docblock": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.4.0.tgz", - "integrity": "sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "requires": { "detect-newline": "^3.0.0" } }, "jest-each": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.4.2.tgz", - "integrity": "sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", - "jest-get-type": "^27.4.0", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2" + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" } }, "jest-environment-jsdom": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.3.tgz", - "integrity": "sha512-x1AUVz3G14LpEJs7KIFUaTINT2n0unOUmvdAby3s/sldUpJJetOJifHo1O/EUQC5fNBowggwJbVulko18y6OWw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "requires": { - "@jest/environment": "^27.4.2", - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", "jsdom": "^16.6.0" } }, "jest-environment-node": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.2.tgz", - "integrity": "sha512-nzTZ5nJ+FabuZPH2YVci7SZIHpvtNRHPt8+vipLkCnAgXGjVzHm7XJWdnNqXbAkExIgiKeVEkVMNZOZE/LeiIg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "requires": { - "@jest/environment": "^27.4.2", - "@jest/fake-timers": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.4.2", - "jest-util": "^27.4.2" + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" } }, "jest-expect-message": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/jest-expect-message/-/jest-expect-message-1.0.2.tgz", - "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==", - "dev": true + "integrity": "sha512-WFiXMgwS2lOqQZt1iJMI/hOXpUm32X+ApsuzYcQpW5m16Pv6/Gd9kgC+Q+Q1YVNU04kYcAOv9NXMnjg6kKUy6Q==" }, "jest-get-type": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", - "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==" + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" }, "jest-haste-map": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.2.tgz", - "integrity": "sha512-foiyAEePORUN2eeJnOtcM1y8qW0ShEd9kTjWVL4sVaMcuCJM6gtHegvYPBRT0mpI/bs4ueThM90+Eoj2ncoNsA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "fsevents": "^2.3.2", - "graceful-fs": "^4.2.4", - "jest-regex-util": "^27.4.0", - "jest-serializer": "^27.4.0", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" } }, "jest-jasmine2": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.2.tgz", - "integrity": "sha512-VO/fyAJSH9u0THjbteFiL8qc93ufU+yW+bdieDc8tzTCWwlWzO53UHS5nFK1qmE8izb5Smkn+XHlVt6/l06MKQ==", - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^27.4.2", - "@jest/source-map": "^27.4.0", - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "expect": "^27.4.2", + "expect": "^27.5.1", "is-generator-fn": "^2.0.0", - "jest-each": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "pretty-format": "^27.4.2", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", "throat": "^6.0.1" } }, "jest-leak-detector": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.2.tgz", - "integrity": "sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "requires": { - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" } }, "jest-matcher-utils": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.2.tgz", - "integrity": "sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "requires": { "chalk": "^4.0.0", - "jest-diff": "^27.4.2", - "jest-get-type": "^27.4.0", - "pretty-format": "^27.4.2" + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" } }, "jest-message-util": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.2.tgz", - "integrity": "sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "requires": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^27.4.2", + "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" } }, "jest-mock": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.2.tgz", - "integrity": "sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*" } }, @@ -6219,136 +6169,129 @@ "requires": {} }, "jest-regex-util": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz", - "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==" + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==" }, "jest-resolve": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.2.tgz", - "integrity": "sha512-d/zqPjxCzMqHlOdRTg8cTpO9jY+1/T74KazT8Ws/LwmwxV5sRMWOkiLjmzUCDj/5IqA5XHNK4Hkmlq9Kdpb9Sg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" } }, "jest-resolve-dependencies": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.2.tgz", - "integrity": "sha512-hb++cTpqvOWfU49MCP/JQkxmnrhKoAVqXWFjgYXswRSVGk8Q6bDTSvhbCeYXDtXaymY0y7WrrSIlKogClcKJuw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "requires": { - "@jest/types": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-snapshot": "^27.4.2" + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" } }, "jest-runner": { - "version": "27.4.3", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.3.tgz", - "integrity": "sha512-JgR6Om/j22Fd6ZUUIGTWNcCtuZVYbNrecb4k89W4UyFJoRtHpo2zMKWkmFFFJoqwWGrfrcPLnVBIgkJiTV3cyA==", - "requires": { - "@jest/console": "^27.4.2", - "@jest/environment": "^27.4.2", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-docblock": "^27.4.0", - "jest-environment-jsdom": "^27.4.3", - "jest-environment-node": "^27.4.2", - "jest-haste-map": "^27.4.2", - "jest-leak-detector": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-runtime": "^27.4.2", - "jest-util": "^27.4.2", - "jest-worker": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" } }, "jest-runtime": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.2.tgz", - "integrity": "sha512-eqPgcBaUNaw6j8T5M+dnfAEh6MIrh2YmtskCr9sl50QYpD22Sg+QqHw3J3nmaLzVMbBtOMHFFxLF0Qx8MsZVFQ==", - "requires": { - "@jest/console": "^27.4.2", - "@jest/environment": "^27.4.2", - "@jest/globals": "^27.4.2", - "@jest/source-map": "^27.4.0", - "@jest/test-result": "^27.4.2", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", - "@types/yargs": "^16.0.0", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", - "exit": "^0.1.2", "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-mock": "^27.4.2", - "jest-regex-util": "^27.4.0", - "jest-resolve": "^27.4.2", - "jest-snapshot": "^27.4.2", - "jest-util": "^27.4.2", - "jest-validate": "^27.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^16.2.0" + "strip-bom": "^4.0.0" } }, "jest-serializer": { - "version": "27.4.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz", - "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "requires": { "@types/node": "*", - "graceful-fs": "^4.2.4" + "graceful-fs": "^4.2.9" } }, "jest-snapshot": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.2.tgz", - "integrity": "sha512-DI7lJlNIu6WSQ+esqhnJzEzU70+dV+cNjoF1c+j5FagWEd3KtOyZvVliAH0RWNQ6KSnAAnKSU0qxJ8UXOOhuUQ==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "requires": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", - "@babel/parser": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", - "@jest/transform": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^27.4.2", - "graceful-fs": "^4.2.4", - "jest-diff": "^27.4.2", - "jest-get-type": "^27.4.0", - "jest-haste-map": "^27.4.2", - "jest-matcher-utils": "^27.4.2", - "jest-message-util": "^27.4.2", - "jest-resolve": "^27.4.2", - "jest-util": "^27.4.2", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^27.4.2", + "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "dependencies": { @@ -6363,56 +6306,56 @@ } }, "jest-util": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz", - "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" } }, "jest-validate": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.2.tgz", - "integrity": "sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "requires": { - "@jest/types": "^27.4.2", + "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^27.4.0", + "jest-get-type": "^27.5.1", "leven": "^3.1.0", - "pretty-format": "^27.4.2" + "pretty-format": "^27.5.1" }, "dependencies": { "camelcase": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz", - "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" } } }, "jest-watcher": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.2.tgz", - "integrity": "sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "requires": { - "@jest/test-result": "^27.4.2", - "@jest/types": "^27.4.2", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^27.4.2", + "jest-util": "^27.5.1", "string-length": "^4.0.1" } }, "jest-worker": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.2.tgz", - "integrity": "sha512-0QMy/zPovLfUPyHuOuuU4E+kGACXXE84nRnq6lBVI9GJg5DCBiA97SATi+ZP8CpiJwEQy1oCPjRBf8AnLjN+Ag==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "requires": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -6482,6 +6425,11 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, "json5": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", @@ -6538,6 +6486,11 @@ "immediate": "~3.0.5" } }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, "localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -6675,16 +6628,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "requires": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -6709,9 +6652,9 @@ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" }, "node-releases": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", - "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==" }, "normalize-path": { "version": "3.0.0", @@ -6736,11 +6679,6 @@ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -6799,6 +6737,17 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", @@ -6830,14 +6779,14 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "pirates": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", - "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==" + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" }, "pkg-dir": { "version": "4.2.0", @@ -6853,21 +6802,15 @@ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" }, "pretty-format": { - "version": "27.4.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.2.tgz", - "integrity": "sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==", + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "requires": { - "@jest/types": "^27.4.2", "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, "ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", @@ -6930,12 +6873,13 @@ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" }, "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-cwd": { @@ -7006,9 +6950,9 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, "signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "simple-swizzle": { "version": "0.2.2", @@ -7058,13 +7002,6 @@ "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "requires": { "escape-string-regexp": "^2.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } } }, "string_decoder": { @@ -7119,6 +7056,11 @@ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -7136,6 +7078,11 @@ "supports-color": "^7.0.0" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -7165,22 +7112,6 @@ "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" }, - "thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, "throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", @@ -7272,9 +7203,9 @@ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "v8-to-istanbul": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz", - "integrity": "sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "requires": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", @@ -7441,9 +7372,9 @@ } }, "ws": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", - "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", + "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "requires": {} }, "xml-name-validator": { diff --git a/package.json b/package.json index 178a36ede..61a3da07c 100644 --- a/package.json +++ b/package.json @@ -25,27 +25,22 @@ "private": true, "license": "MIT", "dependencies": { + "@alex_neo/jest-expect-message": "^1.0.5", "chalk": "^4.1.2", - "chunk": "^0.0.3", "commander": "^8.3.0", - "crypto": "^1.0.1", "dayjs": "^1.10.7", "fs-extra": "^10.0.0", "iptv-checker": "^0.22.0", "iptv-playlist-parser": "^0.10.2", - "jest": "^27.4.3", + "jest": "^27.5.1", + "jest-expect-message": "^1.0.2", "lodash": "^4.17.21", "m3u-linter": "^0.3.0", "markdown-include": "^0.4.3", - "mz": "^2.7.0", "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", "transliteration": "^2.2.0", "winston": "^3.3.3" - }, - "devDependencies": { - "@alex_neo/jest-expect-message": "^1.0.5", - "jest-expect-message": "^1.0.2" } } diff --git a/scripts/core/file.js b/scripts/core/file.js index cdbe1a6db..3ec6a2041 100644 --- a/scripts/core/file.js +++ b/scripts/core/file.js @@ -2,7 +2,7 @@ const { create: createPlaylist } = require('./playlist') const store = require('./store') const path = require('path') const glob = require('glob') -const fs = require('mz/fs') +const fs = require('fs-extra') const _ = require('lodash') const file = {} From 72cbe4741b701a17a5b31668a236c8ec5206dc44 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 02:55:46 +0300 Subject: [PATCH 129/157] Replace winston package with signale --- package-lock.json | 841 ++++++++++++++++++----------------------- package.json | 4 +- scripts/core/logger.js | 43 +-- 3 files changed, 386 insertions(+), 502 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5dc4c9537..e568909bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,8 +22,8 @@ "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", - "transliteration": "^2.2.0", - "winston": "^3.3.3" + "signale": "^1.4.0", + "transliteration": "^2.2.0" } }, "node_modules/@alex_neo/jest-expect-message": { @@ -549,16 +549,6 @@ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz", - "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -1329,15 +1319,6 @@ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -1354,28 +1335,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "node_modules/color-string": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.7.4.tgz", - "integrity": "sha512-nVdUvPVgZMpRQad5dcsCMOSB5BXLljklTiaxS6ehhKxDsAI5sD7k5VmFuBt1y3Rlym8uulc/ANUN/bMWtBu6Sg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, "node_modules/colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", @@ -1384,15 +1343,6 @@ "node": ">=0.1.90" } }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -1430,11 +1380,6 @@ "safe-buffer": "~5.1.1" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -1598,11 +1543,6 @@ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1743,10 +1683,24 @@ "bser": "2.1.1" } }, - "node_modules/fecha": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", - "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==" + "node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } }, "node_modules/fill-range": { "version": "7.0.1", @@ -1771,11 +1725,6 @@ "node": ">=8" } }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, "node_modules/follow-redirects": { "version": "1.14.8", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", @@ -2090,11 +2039,6 @@ "resolved": "https://registry.npmjs.org/iptv-playlist-parser/-/iptv-playlist-parser-0.10.2.tgz", "integrity": "sha512-Ls2mKaSgbLtW46KyFd0EVmzLV5lfZzU9lJZTOTrchTsF+sRVGziA6JthtgvhIhPDitruedZRlsa8RdSKGBtDfA==" }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, "node_modules/is-core-module": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", @@ -2151,11 +2095,6 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -2896,6 +2835,11 @@ "node": ">=4" } }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -2942,11 +2886,6 @@ "node": ">=6" } }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -2980,6 +2919,40 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "engines": { + "node": ">=4" + } + }, "node_modules/localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -3009,18 +2982,6 @@ "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", "integrity": "sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=" }, - "node_modules/logform": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.3.0.tgz", - "integrity": "sha512-graeoWUH2knKbGthMtuG1EfaSPMZFZBIrhuJHhkS5ZseFBrc7DupCzihOQAzsK/qIKPQaPJ/lFQFctILUY5ARQ==", - "dependencies": { - "colors": "^1.2.1", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^1.1.0", - "triple-beam": "^1.3.0" - } - }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -3228,14 +3189,6 @@ "wrappy": "1" } }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "dependencies": { - "fn.name": "1.x.x" - } - }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", @@ -3366,6 +3319,14 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, "node_modules/pirates": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", @@ -3374,6 +3335,79 @@ "node": ">= 6" } }, + "node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", @@ -3417,11 +3451,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -3469,19 +3498,6 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -3552,11 +3568,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "node_modules/safe-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-1.1.1.tgz", - "integrity": "sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==" - }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -3605,12 +3616,81 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "node_modules/signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", "dependencies": { - "is-arrayish": "^0.3.1" + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/signale/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/signale/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/signale/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/signale/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/signale/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/signale/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/signale/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, "node_modules/sisteransi": { @@ -3648,14 +3728,6 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "engines": { - "node": "*" - } - }, "node_modules/stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", @@ -3667,33 +3739,6 @@ "node": ">=10" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -3824,11 +3869,6 @@ "node": ">=8" } }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, "node_modules/throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", @@ -3897,11 +3937,6 @@ "node": ">=6.0.0" } }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, "node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", @@ -3948,11 +3983,6 @@ "node": ">= 4.0.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, "node_modules/v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", @@ -4054,64 +4084,6 @@ "node": ">= 8" } }, - "node_modules/winston": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz", - "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==", - "dependencies": { - "@dabh/diagnostics": "^2.0.2", - "async": "^3.1.0", - "is-stream": "^2.0.0", - "logform": "^2.2.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.4.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/winston-transport": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz", - "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==", - "dependencies": { - "readable-stream": "^2.3.7", - "triple-beam": "^1.2.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/winston-transport/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/winston-transport/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/winston/node_modules/async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" - }, "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", @@ -4607,16 +4579,6 @@ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" }, - "@dabh/diagnostics": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz", - "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==", - "requires": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -5235,30 +5197,6 @@ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" }, - "color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "requires": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - }, - "dependencies": { - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } - } - }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -5272,29 +5210,11 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "color-string": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.7.4.tgz", - "integrity": "sha512-nVdUvPVgZMpRQad5dcsCMOSB5BXLljklTiaxS6ehhKxDsAI5sD7k5VmFuBt1y3Rlym8uulc/ANUN/bMWtBu6Sg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, "colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" }, - "colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "requires": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -5326,11 +5246,6 @@ "safe-buffer": "~5.1.1" } }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -5454,11 +5369,6 @@ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -5561,10 +5471,20 @@ "bser": "2.1.1" } }, - "fecha": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", - "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==" + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + } }, "fill-range": { "version": "7.0.1", @@ -5583,11 +5503,6 @@ "path-exists": "^4.0.0" } }, - "fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, "follow-redirects": { "version": "1.14.8", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", @@ -5810,11 +5725,6 @@ "resolved": "https://registry.npmjs.org/iptv-playlist-parser/-/iptv-playlist-parser-0.10.2.tgz", "integrity": "sha512-Ls2mKaSgbLtW46KyFd0EVmzLV5lfZzU9lJZTOTrchTsF+sRVGziA6JthtgvhIhPDitruedZRlsa8RdSKGBtDfA==" }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, "is-core-module": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", @@ -5853,11 +5763,6 @@ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -6425,6 +6330,11 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -6459,11 +6369,6 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" }, - "kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -6491,6 +6396,33 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + } + }, "localforage": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", @@ -6517,18 +6449,6 @@ "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", "integrity": "sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=" }, - "logform": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.3.0.tgz", - "integrity": "sha512-graeoWUH2knKbGthMtuG1EfaSPMZFZBIrhuJHhkS5ZseFBrc7DupCzihOQAzsK/qIKPQaPJ/lFQFctILUY5ARQ==", - "requires": { - "colors": "^1.2.1", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^1.1.0", - "triple-beam": "^1.3.0" - } - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -6687,14 +6607,6 @@ "wrappy": "1" } }, - "one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "requires": { - "fn.name": "1.x.x" - } - }, "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", @@ -6783,11 +6695,70 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, "pirates": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" }, + "pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", + "requires": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, "pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", @@ -6818,11 +6789,6 @@ } } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -6857,16 +6823,6 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -6913,11 +6869,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "safe-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-1.1.1.tgz", - "integrity": "sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==" - }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -6954,12 +6905,65 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", "requires": { - "is-arrayish": "^0.3.1" + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "sisteransi": { @@ -6991,11 +6995,6 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" - }, "stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", @@ -7004,21 +7003,6 @@ "escape-string-regexp": "^2.0.0" } }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, "string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -7107,11 +7091,6 @@ "minimatch": "^3.0.4" } }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, "throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", @@ -7161,11 +7140,6 @@ "yargs": "^16.1.0" } }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", @@ -7197,11 +7171,6 @@ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, "v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", @@ -7284,62 +7253,6 @@ "isexe": "^2.0.0" } }, - "winston": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz", - "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==", - "requires": { - "@dabh/diagnostics": "^2.0.2", - "async": "^3.1.0", - "is-stream": "^2.0.0", - "logform": "^2.2.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.4.0" - }, - "dependencies": { - "async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" - } - } - }, - "winston-transport": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz", - "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==", - "requires": { - "readable-stream": "^2.3.7", - "triple-beam": "^1.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", diff --git a/package.json b/package.json index 61a3da07c..8ef37f5e7 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "natural-orderby": "^2.0.3", "nedb-promises": "^5.0.2", "normalize-url": "^6.1.0", - "transliteration": "^2.2.0", - "winston": "^3.3.3" + "signale": "^1.4.0", + "transliteration": "^2.2.0" } } diff --git a/scripts/core/logger.js b/scripts/core/logger.js index a109a050b..2be5eda2d 100644 --- a/scripts/core/logger.js +++ b/scripts/core/logger.js @@ -1,42 +1,13 @@ -const { createLogger, format, transports, addColors } = require('winston') -const { combine, timestamp, printf } = format +const { Signale } = require('signale') -const consoleFormat = ({ level, message, timestamp }) => { - if (typeof message === 'object') return JSON.stringify(message) - return message -} +const options = {} -const config = { - levels: { - error: 0, - warn: 1, - info: 2, - failed: 3, - success: 4, - http: 5, - verbose: 6, - debug: 7, - silly: 8 - }, - colors: { - info: 'white', - success: 'green', - failed: 'red' - } -} +const logger = new Signale(options) -const t = [ - new transports.Console({ - format: format.combine(format.printf(consoleFormat)) - }) -] - -const logger = createLogger({ - transports: t, - levels: config.levels, - level: 'verbose' +logger.config({ + displayLabel: false, + displayScope: false, + displayBadge: false }) -addColors(config.colors) - module.exports = logger From 4355fdb28c8d5e6112784c02c969ea35b29452c1 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 02:59:19 +0300 Subject: [PATCH 130/157] Remove expected/database/streams.db --- tests/__data__/expected/database/streams.db | 3 --- .../database/{base_streams.db => cluster_load.streams.db} | 0 tests/__data__/input/database/db_matrix.streams.db | 4 ++++ tests/commands/cluster/load.test.js | 2 +- tests/commands/database/matrix.test.js | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 tests/__data__/expected/database/streams.db rename tests/__data__/input/database/{base_streams.db => cluster_load.streams.db} (100%) create mode 100644 tests/__data__/input/database/db_matrix.streams.db diff --git a/tests/__data__/expected/database/streams.db b/tests/__data__/expected/database/streams.db deleted file mode 100644 index ae9993340..000000000 --- a/tests/__data__/expected/database/streams.db +++ /dev/null @@ -1,3 +0,0 @@ -{"channel":null,"title":"1A Network","filepath":"tests/__data__/input/streams/unsorted.m3u","url":"https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"0ASgwU4iEPNhQfEj"} -{"channel":"FoxSports2AsiaThai.us","title":"Fox Sports 2 Asia (Thai)","filepath":"tests/__data__/input/streams/us_blocked.m3u","url":"https://example.com/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"Qo3RROg3sEOJoBfv"} -{"channel":"ATV.ad","title":"ATV","filepath":"tests/__data__/input/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"hPpP2KnQOeFMRnX0"} diff --git a/tests/__data__/input/database/base_streams.db b/tests/__data__/input/database/cluster_load.streams.db similarity index 100% rename from tests/__data__/input/database/base_streams.db rename to tests/__data__/input/database/cluster_load.streams.db diff --git a/tests/__data__/input/database/db_matrix.streams.db b/tests/__data__/input/database/db_matrix.streams.db new file mode 100644 index 000000000..91b402043 --- /dev/null +++ b/tests/__data__/input/database/db_matrix.streams.db @@ -0,0 +1,4 @@ +{"title":"ЛДПР ТВ","channel":"LDPRTV.ru","filepath":"tests/__data__/output/streams/ru.m3u","url":"http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"2ST8btby3mmsgPF0"} +{"title":"BBC News HD","channel":"BBCNews.uk","filepath":"tests/__data__/output/streams/uk.m3u","url":"https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"3TbieV1ptnZVCIdn"} +{"title":"ATV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/ad.m3u","url":"https://iptv-all.lanesh4d0w.repl.co/andorra/atv","http_referrer":null,"user_agent":null,"cluster_id":1,"_id":"I6cjG2xCBRFFP4sz"} +{"title":"Andorra TV","channel":"AndorraTV.ad","filepath":"tests/__data__/output/streams/uk.m3u","url":"http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8","http_referrer":null,"user_agent":null,"cluster_id":3,"_id":"WTbieV1ptnZVCIdn"} diff --git a/tests/commands/cluster/load.test.js b/tests/commands/cluster/load.test.js index b545ac806..430b935f9 100644 --- a/tests/commands/cluster/load.test.js +++ b/tests/commands/cluster/load.test.js @@ -5,7 +5,7 @@ const path = require('path') beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( - 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/input/database/cluster_load.streams.db', 'tests/__data__/output/streams.db' ) diff --git a/tests/commands/database/matrix.test.js b/tests/commands/database/matrix.test.js index 7e46636fe..1d2ae7a34 100644 --- a/tests/commands/database/matrix.test.js +++ b/tests/commands/database/matrix.test.js @@ -6,7 +6,7 @@ beforeEach(() => { fs.emptyDirSync('tests/__data__/output') fs.copyFileSync( - 'tests/__data__/input/database/base_streams.db', + 'tests/__data__/input/database/db_matrix.streams.db', 'tests/__data__/output/streams.db' ) }) From 4ab51bb79f004d9b8733ea8081588544a5504084 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 06:04:43 +0300 Subject: [PATCH 131/157] Delete supported-statuses.md --- .readme/supported-statuses.md | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .readme/supported-statuses.md diff --git a/.readme/supported-statuses.md b/.readme/supported-statuses.md deleted file mode 100644 index ec5f07606..000000000 --- a/.readme/supported-statuses.md +++ /dev/null @@ -1,8 +0,0 @@ -## Supported Statuses - -| Label | Description | -| ----------- | ------------------------------------------------- | -| Geo-blocked | Channel is only available in selected countries. | -| Not 24/7 | Broadcast is not available 24 hours a day. | -| Timeout | Server does not respond for more than 60 seconds. | -| Offline | The broadcast does not work for any other reason. | From 6ff6b514a78d865061eba6f8583bfe97731bc6bf Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 06:04:48 +0300 Subject: [PATCH 132/157] Update supported-categories.md --- .readme/supported-categories.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.readme/supported-categories.md b/.readme/supported-categories.md index f9f090137..b5f0f59c7 100644 --- a/.readme/supported-categories.md +++ b/.readme/supported-categories.md @@ -17,7 +17,6 @@ | Kids | Programming targeted to children | | Legislative | Programming specific to the operation of government | | Lifestyle | Programs related to health, fitness, leisure, fashion, decor, etc. | -| Local | Channels that are targeted for a local area or region | | Movies | Channels that only show movies | | Music | Programming is music or music related | | News | Programming is mostly news | @@ -31,4 +30,3 @@ | Travel | Programming is travel related | | Weather | Programming is focused on weather | | XXX | Programming is adult oriented and x-rated | -| Other | No category assigned | From 86f277a2649fa5aa9c0b65525967524b712eceb4 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 06:44:37 +0300 Subject: [PATCH 133/157] Update template.md --- .readme/template.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.readme/template.md b/.readme/template.md index 9f23b4bca..c9006d89c 100644 --- a/.readme/template.md +++ b/.readme/template.md @@ -63,18 +63,20 @@ To watch IPTV, simply insert one of the links below into any player that support ## EPG -Playlists already have a built-in list of EPG, so players that support the `x-tvg-url` tag should load it automatically. If not, you can find a list of available programs here: +The playlists already contain links to all guides, so players with support the `x-tvg-url` tag should load it automatically. Otherwise, you can choose one of the guides featured in the [iptv-org/epg](https://github.com/iptv-org/epg) repository. -https://github.com/iptv-org/epg +## Database -## Resources - -You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv). +If you find an error in the description of the channel, please create an issue in the [iptv-org/database](https://github.com/iptv-org/database) repository. ## API The API documentation can be found in the [iptv-org/api](https://github.com/iptv-org/api) repository. +## Resources + +Links to other useful IPTV-related resources can be found in the [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv) repository. + ## Contribution Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sending an issue or making a pull request. @@ -82,3 +84,7 @@ Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sendin ## Legal No video files are stored in this repository. The repository simply contains user-submitted links to publicly available video stream URLs, which to the best of our knowledge have been intentionally made publicly by the copyright holders. If any links in these playlists infringe on your rights as a copyright holder, they may be removed by sending a pull request or opening an issue. However, note that we have **no control** over the destination of the link, and just removing the link from the playlist will not remove its contents from the web. Note that linking does not directly infringe copyright because no copy is made on the site providing the link, and thus this is **not** a valid reason to send a DMCA notice to GitHub. To remove this content from the web, you should contact the web host that's actually hosting the content (**not** GitHub, nor the maintainers of this repository). + +## License + +[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](LICENSE) From eb008822369e1c130795091c4c67012ec975dd26 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 06:56:54 +0300 Subject: [PATCH 134/157] Update languages.js --- scripts/generators/languages.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/generators/languages.js b/scripts/generators/languages.js index d6ea90e75..9edb426e3 100644 --- a/scripts/generators/languages.js +++ b/scripts/generators/languages.js @@ -8,6 +8,7 @@ module.exports = async function (streams = []) { languages = languages.concat(stream.languages) }) languages = _.uniqBy(languages, 'code') + languages = _.sortBy(languages, 'name') const output = [] for (const language of languages) { From d495271e687cec5598462a707cae2df6085448d9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 06:59:19 +0300 Subject: [PATCH 135/157] Update template.md --- .readme/template.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.readme/template.md b/.readme/template.md index c9006d89c..7f737ef09 100644 --- a/.readme/template.md +++ b/.readme/template.md @@ -28,25 +28,25 @@ To watch IPTV, simply insert one of the links below into any player that support -### Playlists by country +### Playlists by language
Expand
-#include "./.readme/_countries.md" +#include "./.readme/_languages.md"
-### Playlists by language +### Playlists by country
Expand
-#include "./.readme/_languages.md" +#include "./.readme/_countries.md"
From 565140df9df14d001170238b322b3353c5de19e9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 08:14:08 +0300 Subject: [PATCH 136/157] Update CONTRIBUTING.md --- CONTRIBUTING.md | 116 ++++++++++-------------------------------------- 1 file changed, 24 insertions(+), 92 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6a330d4ea..21d5a9205 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,22 +4,22 @@ Before submitting your contribution, please make sure to take a moment and read - [Issue Reporting Guidelines](#issue-reporting-guidelines) - [Pull Request Guidelines](#pull-request-guidelines) -- [Channel Description Scheme](#channel-description-scheme) +- [Stream Description Scheme](#stream-description-scheme) - [Project Structure](#project-structure) ## Issue Reporting Guidelines ### Request a Channel -To request a channel, create an [issue](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=channel+request&template=------channel-request.yml&title=Add%3A+) and complete all details requested. Understand that our community of volunteers will try to help you, but if a public link cannot be found, there is little we can do. (**IMPORTANT:** the issue should contain a request for only one channel, otherwise it will be closed immediately) +To request a channel, create an [issue](https://github.com/iptv-org/iptv/issues/new?labels=channel+request&template=------channel-request.yml&title=Add%3A+) and complete all details requested. Understand that our community of volunteers will try to help you, but if a public link cannot be found, there is little we can do. (**IMPORTANT:** the issue should contain a request for only one channel, otherwise it will be closed immediately) ### Report a Broken Stream -To report a broadcast that is not working, create an [issue](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Replace%3A+) with a description of the channel. (**IMPORTANT:** an issue should contain a report for only one channel, otherwise it will be closed immediately) +To report a broadcast that is not working, create an [issue](https://github.com/iptv-org/iptv/issues/new?labels=broken+stream&template=-----broken-stream.yml&title=Replace%3A+) with a description of the channel. (**IMPORTANT:** an issue should contain a report for only one channel, otherwise it will be closed immediately) -### Request Channel Removal +### Content Removal Request -Publish your DMCA notice somewhere and send us a link to it through this [form](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=DMCA&template=--remove-channel.yml&title=Remove%3A+). +If you find any content in the repository that you own and you would like us to remove, please create an [issue](https://github.com/iptv-org/iptv/issues/new?assignees=freearhey&labels=removal+request&template=--removal-request.yml&title=Remove%3A+) and provide all necessary information. If the request is granted, the specified content will be removed from the repository within one business day. ## Pull Request Guidelines @@ -31,72 +31,13 @@ If you would like to replace a broken stream or add a new one, please do the fol - check if the channel is working outside your country by using a VPN or use a service like [streamtest.in](https://streamtest.in/) - find out from which country the channel is being broadcasted. This information can usually be found on [lyngsat.com](https://www.lyngsat.com/search.html) or [wikipedia.org](https://www.wikipedia.org/). If you are unable to determine which country the channel belongs to, add the channel onto the `channels/unsorted.m3u` playlist - find the corresponding [ISO_3166-2 code](https://en.wikipedia.org/wiki/ISO_3166-2) for the country -- open the `/channels` folder and find the file that has the same code in its name and open it +- open the `/streams` folder and find the file that has the same code in its name and open it - if broken, find the broken link in this file and replace it with working one - if new, at the very end of this file add a link to the channel with a description - if the broadcast is not available outside of a certain country, add the label `[Geo-blocked]` to the end of the channel name and list these countries in the `tvg-country` attribute - if the broadcast is not available 24 hours a day, add the label `[Not 24/7]` - commit all changes and send a pull request -### Add a Category to a Channel - -- select a channel that does not have a category specified -- find the file that contains the channel. You can use a [GitHub Search](https://github.com/search/advanced?q=CHANNEL_NAME+repo%3Aiptv-org%2Fiptv+path%3A%2Fchannels&type=Code) to do this -- find the desired channel in this file -- specify the appropriate category in the `group-title` attribute. A complete list of supported categories can be found [here](https://github.com/iptv-org/iptv/blob/master/.readme/supported-categories.md) -- commit all changes and send a pull request - -### Add a Language to a Channel - -- select a channel that does not have a language specified -- find the file that contains the channel. You can use a [GitHub Search](https://github.com/search/advanced?q=CHANNEL_NAME+repo%3Aiptv-org%2Fiptv+path%3A%2Fchannels&type=Code) to do this. -- find the desired channel in this file -- specify the appropriate language in the `tvg-language` attribute. The name of the language must comply with the [ISO 639-3](https://iso639-3.sil.org/code_tables/639/data?title=&field_iso639_cd_st_mmbrshp_639_1_tid=94671&name_3=&field_iso639_element_scope_tid=All&field_iso639_language_type_tid=51&items_per_page=500) standard. -- commit all changes and send a pull request - -If a channel is broadcasted in several languages at once, you can specify them all through a semicolon, like this: - -```xml -#EXTINF:-1 tvg-language="English;Chinese",CCTV -http://example.com/cctv.m3u8 -``` - -### Add a Country to a Channel - -- select a channel that does not have a country specified -- find out in which country the channel is broadcast. This information can usually be found in the channel description on Wikipedia. -- find the corresponding [ISO_3166-2 code](https://en.wikipedia.org/wiki/ISO_3166-2) corresponding to the country -- find the file that contains the channel. You can use a [GitHub Search](https://github.com/search/advanced?q=CHANNEL_NAME+repo%3Aiptv-org%2Fiptv+path%3A%2Fchannels&type=Code) to do this. -- find the desired channel in this file -- paste the country ISO_3166-2 code into `tvg-country` attribute of the channel description -- commit all changes and send a pull request - -If a channel is broadcasted in several countries at once, you can specify them all through a semicolon, like this: - -```xml -#EXTINF:-1 tvg-country="US;CA",CNN -http://example.com/cnn.m3u8 -``` - -If a channel is broadcast for an entire region, you can use one of the [supported region code](https://github.com/iptv-org/iptv/blob/master/.readme/supported-regions.md) to avoid listing all countries. In this case the channel will be added to the playlists of all countries from that region. - -In case the channel is broadcast worldwide you can use the code `INT`: - -```xml -#EXTINF:-1 tvg-country="INT",CNN -http://example.com/cnn.m3u8 -``` - -### Sort channels from `channels/unsorted.m3u` - -- select any channel from [channels/unsorted.m3u](https://github.com/iptv-org/iptv/blob/master/channels/unsorted.m3u) -- find out the full name of the channel and from which country it is being broadcasted. This information can usually be found on [lyngsat.com](https://www.lyngsat.com/search.html) or [wikipedia.org](https://www.wikipedia.org/) -- update the channel name if necessary -- find the corresponding [ISO_3166-2 code](https://en.wikipedia.org/wiki/ISO_3166-2) for the country -- open the `channels/` folder and find a file with the same name as the country code -- at the very end of this file add a link to the channel with a description -- commit all changes and send a pull request - ### Update README.md - open `.readme/template.md` @@ -109,40 +50,34 @@ http://example.com/cnn.m3u8 - make the necessary changes - commit all changes and send a pull request -## Channel Description Scheme +## Stream Description Scheme -For a channel to be approved, its description must follow this template: +For a stream to be approved, its description must follow this template: ``` -#EXTINF:-1 tvg-id="EPG_ID" tvg-country="COUNTRY" tvg-language="LANGUAGE" tvg-logo="LOGO_URL" group-title="CATEGORY",FULL_NAME STREAM_TIME_SHIFT (ALTERNATIVE_NAME) (STREAM_RESOLUTION) [STREAM_STATUS] +#EXTINF:-1 tvg-id="CHANNEL_ID",CHANNEL_NAME (RESOLUTION) [LABEL] STREAM_URL ``` -| Attribute | Description | -| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `EPG_ID` | Channel ID that is used to load EPG. The same ID is used in [iptv-org/epg](https://iptv-org.github.io/epg/index.html) to search for the corresponding program. (optional) | -| `COUNTRY` | The code of the country in which the channel is broadcast. The code of the country must conform to the standard [ISO_3166-2](https://en.wikipedia.org/wiki/ISO_3166-2). If the channel is broadcast in several countries you can list them separated by a semicolon. You can also use one of these [region codes](https://github.com/iptv-org/iptv/blob/master/.readme/supported-regions.md). (optional) | -| `LANGUAGE` | Channel language. The name of the language must conform to the standard [ISO 639-3](https://iso639-3.sil.org/code_tables/639/data?title=&field_iso639_cd_st_mmbrshp_639_1_tid=94671&name_3=&field_iso639_element_scope_tid=All&field_iso639_language_type_tid=51&items_per_page=500). If the channel is broadcast in several languages you can list them separated by a semicolon. (optional) | -| `LOGO_URL` | The logo of the channel that will be displayed if the player supports it. Supports files in png, jpeg and gif format. (optional) | -| `CATEGORY` | The category to which the channel belongs. The list of currently supported categories can be found [here](https://github.com/iptv-org/iptv/blob/master/.readme/supported-categories.md). (optional) | -| `FULL_NAME` | Full name of the channel. It is recommended to use the name listed on [lyngsat](https://www.lyngsat.com/search.html) or [wikipedia](https://www.wikipedia.org/) if possible. May contain any characters except round and square brackets. | -| `STREAM_TIME_SHIFT` | Must be specified if the channel is broadcast with a shift in time relative to the main stream. Should only contain a number and a sign. (optional) | -| `ALTERNATIVE_NAME` | Can be used to specify a short name or name in another language. May contain any characters except round and square brackets. (optional) | -| `STREAM_RESOLUTION` | The maximum height of the frame with a "p" at the end. In case of VLC Player this information can be found in `Window > Media Information... > Codec Details`. (optional) | -| `STREAM_STATUS` | Specified if the broadcast for some reason is interrupted or does not work in a particular application. The list of currently supported statuses can be found [here](https://github.com/iptv-org/iptv/blob/master/.readme/supported-statuses.md). (optional) | -| `STREAM_URL` | Channel broadcast URL. | +| Attribute | Description | Required | Valid values | +| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------------------------------------------------------------------------------- | +| `CHANNEL_ID` | Channel ID. | Optional | Full list of supported channels could be found on [iptv-org.github.io](https://iptv-org.github.io/) | +| `CHANNEL_NAME` | Full name of the channel. May contain any characters except: `,`, `(`, `)`, `[`, `]`. It is recommended to use the name listed on [lyngsat](https://www.lyngsat.com/search.html) or [wikipedia](https://www.wikipedia.org/) if possible. | Required | - | +| `RESOLUTION` | Maximum stream resolution. | Optional | `2160p`, `1080p`, `720p`, `480p`, `360p` etc | +| `LABEL` | Specified in cases where the broadcast for some reason may not be available to some users. | Optional | `Geo-blocked` or `Not 24/7` | +| `STREAM_URL` | Stream URL. | Required | - | Example: ```xml -#EXTINF:-1 tvg-id="ExampleTVPlus3.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/bu12f89.png" group-title="Kids",Example TV +3 (Пример ТВ) (720p) [not 24/7] +#EXTINF:-1 tvg-id="ExampleTV.ua",Example TV (720p) [Not 24/7] https://example.com/playlist.m3u8 ``` -Also, if necessary, you can specify custom HTTP User-Agent or Referrer via the `#EXTVLCOPT` tag: +Also, if necessary, you can specify custom HTTP User-Agent and Referrer via the `#EXTVLCOPT` tag: ```xml -#EXTINF:-1 tvg-id="ExampleTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://example.com/channel-logo.png" group-title="News",Example TV +#EXTINF:-1 tvg-id="ExampleTV.us",Example TV #EXTVLCOPT:http-referrer=http://example.com/ #EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) http://example.com/stream.m3u8 @@ -151,24 +86,21 @@ http://example.com/stream.m3u8 ## Project Structure - `.github/` - - `ISSUE_TEMPLATE/`: issue templates for this repository. + - `ISSUE_TEMPLATE/`: issue templates for the repository. - `workflows/` - `auto-update.yml`: GitHub workflow that launches daily playlist updates (at 0:00 and 12:00 UTC). - - `check.yml`: GitHub workflow that checks every pull request for syntax errors. - - `cleanup.yml`: GitHub workflow that removes broken links by request. - - `validate.yml`: GitHub workflow that compares channel names with the blocklist each time a pull request is made. + - `check.yml`: GitHub workflow that checks every pull request for syntax errors and blocked channels. - `CODE_OF_CONDUCT.md`: rules you shouldn't break if you don't want to get banned. - `.readme/` - `config.json`: config for the `markdown-include` package, which is used to compile everything into one `README.md` file. - `preview.png`: image displayed in the `README.md`. - `supported-categories.md`: list of supported categories. - - `supported-statuses.md`: list of supported statuses. - `supported-regions.md`: list of supported regions. - `template.md`: template for `README.md`. -- `channels/`: contains all channels broken down by the country from which they are broadcast. +- `scripts/`: contains all the scripts used in GitHub workflows. +- `streams/`: contains all streams broken down by the country from which they are broadcast. - ... - `unsorted.m3u`: playlist with channels not yet sorted. -- `scripts/`: contains all the scripts used in GitHub workflows. -- `tests/`: contains tests to check the scripts in the folder above. +- `tests/`: contains tests to check the scripts. - `CONTRIBUTING.md`: file you are currently reading. - `README.md`: project description generated from the contents of the `.readme/` folder. From a9b2fa93503c74536c3e350b940948867595a5fc Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 08:57:30 +0300 Subject: [PATCH 137/157] Update ------channel-request.yml --- .../ISSUE_TEMPLATE/------channel-request.yml | 49 ++++++++----------- 1 file changed, 20 insertions(+), 29 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/------channel-request.yml b/.github/ISSUE_TEMPLATE/------channel-request.yml index 0452b452d..368cc3315 100644 --- a/.github/ISSUE_TEMPLATE/------channel-request.yml +++ b/.github/ISSUE_TEMPLATE/------channel-request.yml @@ -1,58 +1,49 @@ name: 📺 Channel Request description: Request to add a channel into the playlist -title: "Add: " -labels: [ "channel request" ] +title: 'Add: ' +labels: ['channel request'] body: - type: markdown attributes: value: | - Please fill out the issue template as much as you can so we could efficiently process your request - - **IMPORTANT**: An issue may contain a request for only one channel, otherwise it will be closed + Please fill out the issue template as much as you can so we could efficiently process your request - type: input - id: name attributes: label: Channel Name description: Full name of the channel. It is recommended to use the name listed on [lyngsat](https://www.lyngsat.com/search.html) or [wikipedia](https://www.wikipedia.org/) if possible. - placeholder: 'Fox Life Russia' + placeholder: 'BBC America East' validations: required: true - - - type: input - id: origin - attributes: - label: Country - description: Country from which the channel originates from - validations: - required: true - + - type: input - id: lang attributes: - label: Language - validations: - required: true - + label: Channel ID + description: Unique channel ID from iptv-org/database. A complete list of supported channels can be found on [iptv-org.github.io](https://iptv-org.github.io/). + placeholder: 'BBCAmericaEast.us' + - type: input - id: source attributes: label: Website description: Where did you find the broadcast? - placeholder: 'ex. https://www.filmon.com/channel/strange-paradise' + placeholder: 'https://example.com/live-tv' validations: required: true - type: input - id: stream attributes: label: Stream URL description: Link to a stream in m3u8 format - placeholder: 'ex. https://lnc-kdfw-fox-aws.tubi.video/index.m3u8' - - - type: input - id: notes + placeholder: 'https://example.com/playlist.m3u8' + + - type: textarea attributes: label: Notes - placeholder: 'Anything else we should know about this broadcast? Is it 24/7?' + description: 'Anything else we should know about this broadcast?' + + - type: checkboxes + attributes: + label: Please confirm the following + options: + - label: I have read [Contributing Guide](https://github.com/iptv-org/iptv/blob/master/CONTRIBUTING.md#request-a-channel) From 6072e4754a0cb7a1afc493263073d3e302d4bf1b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 08:57:33 +0300 Subject: [PATCH 138/157] Update -----broken-stream.yml --- .github/ISSUE_TEMPLATE/-----broken-stream.yml | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/-----broken-stream.yml b/.github/ISSUE_TEMPLATE/-----broken-stream.yml index 9dffeaa39..ed88aa315 100644 --- a/.github/ISSUE_TEMPLATE/-----broken-stream.yml +++ b/.github/ISSUE_TEMPLATE/-----broken-stream.yml @@ -1,61 +1,61 @@ name: 🛠 Broken Stream description: Report a broken stream -title: "Replace: " -labels: [ "broken stream" ] +title: 'Replace: ' +labels: ['broken stream'] body: - type: markdown attributes: value: | - Please fill out the issue template as much as you can so we could efficiently process your request - **IMPORTANT**: An issue may contain a request for only one channel, otherwise it will be closed - + Please fill out the issue template as much as you can so we could efficiently process your request + - type: input - id: name attributes: - label: Channel Name - description: Full name of the channel. Please use the exact name, as in how it appears in the playlist. - placeholder: 'Fox Life Russia' + label: Stream Title + description: Please use the exact title, as in how it appears in the playlist. + placeholder: 'BBC America East (720p) [Geo-blocked]' validations: required: true - type: dropdown - id: reason attributes: label: What happened to the stream? options: - It is disappeared from the playlist - It is stuck at a single frame/the same segment - - I see visual artifacts - It is buffering to unplayable point + - I see visual artifacts + - Other validations: required: true - + - type: input - id: playlist attributes: label: Playlist description: What playlist was used to get the channel from? - placeholder: 'ex. https://iptv-org.github.io/iptv/countries/au.m3u' + placeholder: 'https://iptv-org.github.io/iptv/countries/au.m3u' validations: required: true - + - type: input - id: link attributes: label: Broken Link description: Please specify the broken link from a playlist if you can - placeholder: 'ex. https://lnc-kdfw-fox-aws.tubi.video/index.m3u8' - + placeholder: 'https://lnc-kdfw-fox-aws.tubi.video/index.m3u8' + - type: input - id: alt attributes: label: Possible Replacement - description: If you know an alternate non-protected source or the way to fix current stream please let us know + description: If you know an alternate source or the way to fix current stream please let us know placeholder: 'ex. https://lnc-kdfw-fox-aws.tubi.video/index.m3u8' - + - type: input - id: notes attributes: label: Notes placeholder: 'Anything else we should know?' + + - type: checkboxes + attributes: + label: Please confirm the following + options: + - label: I have read [Contributing Guide](https://github.com/iptv-org/iptv/blob/master/CONTRIBUTING.md#report-a-broken-stream) From 7d61b7cfc5f64204e3ddc593b08efd9ecab670d5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 08:57:35 +0300 Subject: [PATCH 139/157] Update ----bug-report.yml --- .github/ISSUE_TEMPLATE/----bug-report.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/----bug-report.yml b/.github/ISSUE_TEMPLATE/----bug-report.yml index accafd41f..38cab78e7 100644 --- a/.github/ISSUE_TEMPLATE/----bug-report.yml +++ b/.github/ISSUE_TEMPLATE/----bug-report.yml @@ -1,7 +1,7 @@ name: 🐞 Bug Report description: Report an error in this repository -title: "Fix: " -labels: [ "bug" ] +title: 'Fix: ' +labels: ['bug'] assignees: - freearhey @@ -9,14 +9,11 @@ body: - type: markdown attributes: value: | - This form is **ONLY** intended for auto-update, channel sorting and other automation scripts related issues. - If you're experiencing problems viewing a channel, **this is not the right form**. Please fill a [Broken stream](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Fix%3A+) form instead. - - Please describe the error in as much detail as possible so that we can fix it quickly. + This form is **ONLY** intended for auto-update, channel sorting and other automation scripts related issues. If you're experiencing problems viewing a channel please fill a [Broken Stream](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Fix%3A+) form instead. - type: textarea - id: bug attributes: label: Describe your issue + description: Please describe the error in as much detail as possible so that we can fix it quickly. validations: required: true From 0a3a827b98854f7df0e71fd2e88b9ead2cbdbf16 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 08:57:38 +0300 Subject: [PATCH 140/157] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b07f8cac2..a7aa31748 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,6 +3,6 @@ contact_links: - name: 💡 Feature Request url: https://github.com/iptv-org/iptv/discussions/new about: For any ideas or feature requests - - name: ❓ Ask a question + - name: ❓ Ask a Question url: https://github.com/iptv-org/iptv/discussions/new about: Ask questions about this project From 3185c0e2cce84b8f263fcb928f76abb5491bccde Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 09:26:43 +0300 Subject: [PATCH 141/157] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ef37f5e7..0edb22ade 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "iptv", "scripts": { - "act:auto-update": "act workflow_dispatch -W .github/workflows/auto-update.yml", + "act:auto-update": "act workflow_dispatch -W .github/workflows/auto-update.yml --artifact-server-path=.artifacts", "act:check": "act pull_request -W .github/workflows/check.yml", "db:create": "node scripts/commands/database/create.js", "db:matrix": "node scripts/commands/database/matrix.js", From e92e245cd829fa52c2e3cc038effe0f12f4848e9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 09:43:45 +0300 Subject: [PATCH 142/157] Update auto-update.yml --- .github/workflows/auto-update.yml | 59 ++++++++++++++++++------------- 1 file changed, 35 insertions(+), 24 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 21dcc633b..406923900 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -29,12 +29,12 @@ jobs: path: scripts/data - run: npm install - run: npm run db:create - - run: npm run db:matrix - id: create-matrix - uses: actions/upload-artifact@v2 with: name: database path: scripts/database + - run: npm run db:matrix + id: create-matrix outputs: matrix: ${{ steps.create-matrix.outputs.matrix }} load: @@ -73,23 +73,28 @@ jobs: - run: git config user.name 'iptv-bot[bot]' - run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' - run: git checkout -b ${{ steps.create-branch-name.outputs.branch_name }} - - run: curl -L -o scripts/data/codes.json https://iptv-org.github.io/epg/codes.json + - uses: tibdex/github-app-token@v1 + if: ${{ !env.ACT }} + id: create-app-token + with: + app_id: ${{ secrets.APP_ID }} + private_key: ${{ secrets.APP_PRIVATE_KEY }} - uses: actions/setup-node@v2 if: ${{ !env.ACT }} with: node-version: '14' - uses: actions/download-artifact@v2 with: - name: database + name: data path: scripts - uses: actions/download-artifact@v2 with: - name: data + name: database path: scripts - uses: actions/download-artifact@v2 with: name: logs - path: scripts/logs + path: scripts - run: npm install - run: npm run db:update - uses: actions/upload-artifact@v2 @@ -97,23 +102,38 @@ jobs: name: database path: scripts/database - run: npm run playlist:update - - run: git add channels/* - - run: git commit -m "[Bot] Update playlists" + - run: git add streams/* + - run: git commit -m "[Bot] Update streams" - run: npm run playlist:generate - uses: actions/upload-artifact@v2 with: name: logs path: scripts/logs + - uses: JamesIves/github-pages-deploy-action@4.1.1 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + branch: gh-pages + folder: .gh-pages + token: ${{ steps.create-app-token.outputs.token }} + git-config-name: iptv-bot[bot] + git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com + commit-message: '[Bot] Generate playlists' + - run: npm run db:export + - uses: JamesIves/github-pages-deploy-action@4.1.1 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + repository-name: iptv-org/api + branch: gh-pages + folder: .api + token: ${{ steps.create-app-token.outputs.token }} + git-config-name: iptv-bot[bot] + git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com + commit-message: '[Bot] Deploy to iptv-org/api' + clean: false - run: npm run readme:update - run: git add README.md - run: git commit -m "[Bot] Update README.md" - run: git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} - - uses: tibdex/github-app-token@v1 - if: ${{ !env.ACT }} - id: create-app-token - with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} - uses: repo-sync/pull-request@v2 if: ${{ !env.ACT }} id: pull-request @@ -127,17 +147,8 @@ jobs: [1]: https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }} - uses: juliangruber/merge-pull-request-action@v1 - if: ${{ github.ref == 'refs/heads/master' }} + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} with: github-token: ${{ secrets.PAT }} number: ${{ steps.pull-request.outputs.pr_number }} method: squash - - uses: JamesIves/github-pages-deploy-action@4.1.1 - if: ${{ github.ref == 'refs/heads/master' }} - with: - branch: gh-pages - folder: .gh-pages - token: ${{ steps.create-app-token.outputs.token }} - git-config-name: iptv-bot[bot] - git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com - commit-message: '[Bot] Generate playlists' From 14664c77b7ce509d415bc04246cb8fcc0a8e6627 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 12:17:47 +0300 Subject: [PATCH 143/157] Update auto-update.yml --- .github/workflows/auto-update.yml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 406923900..2c79bf3d0 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -48,15 +48,16 @@ jobs: cluster_id: [1] steps: - uses: actions/checkout@v2 - - uses: actions/download-artifact@v2 - with: - name: database - path: scripts - uses: FedericoCarboni/setup-ffmpeg@v1 - uses: actions/setup-node@v2 if: ${{ !env.ACT }} with: node-version: '14' + - uses: actions/download-artifact@v2 + with: + name: database + path: scripts/database + - run: ls scripts/database - run: npm install - run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 @@ -86,15 +87,15 @@ jobs: - uses: actions/download-artifact@v2 with: name: data - path: scripts + path: scripts/data - uses: actions/download-artifact@v2 with: name: database - path: scripts + path: scripts/database - uses: actions/download-artifact@v2 with: name: logs - path: scripts + path: scripts/logs - run: npm install - run: npm run db:update - uses: actions/upload-artifact@v2 @@ -102,8 +103,6 @@ jobs: name: database path: scripts/database - run: npm run playlist:update - - run: git add streams/* - - run: git commit -m "[Bot] Update streams" - run: npm run playlist:generate - uses: actions/upload-artifact@v2 with: @@ -131,9 +130,14 @@ jobs: commit-message: '[Bot] Deploy to iptv-org/api' clean: false - run: npm run readme:update - - run: git add README.md - - run: git commit -m "[Bot] Update README.md" - - run: git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} + - name: Commit Changes + if: ${{ !env.ACT }} + run: | + git add streams/* + git commit -m "[Bot] Update streams" + git add README.md + git commit -m "[Bot] Update README.md" + git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} - uses: repo-sync/pull-request@v2 if: ${{ !env.ACT }} id: pull-request From 1a86a3dfe1cad2a309a2fb1d1d7b7a9f2407de53 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 22:51:30 +0300 Subject: [PATCH 144/157] Update auto-update.yml --- .github/workflows/check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 42013f864..8571169f8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: tj-actions/changed-files@v12.2 id: files with: From 91e340639d497426697e65b899f5eaa357d316ca Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 23:05:34 +0300 Subject: [PATCH 145/157] Update auto-update.yml --- .github/workflows/auto-update.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 2c79bf3d0..8ecb01bc5 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -43,9 +43,9 @@ jobs: continue-on-error: true strategy: fail-fast: false - # matrix: ${{ fromJson(needs.setup.outputs.matrix) }} - matrix: - cluster_id: [1] + matrix: ${{ fromJson(needs.setup.outputs.matrix) }} + # matrix: + # cluster_id: [1] steps: - uses: actions/checkout@v2 - uses: FedericoCarboni/setup-ffmpeg@v1 @@ -57,7 +57,6 @@ jobs: with: name: database path: scripts/database - - run: ls scripts/database - run: npm install - run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 @@ -139,7 +138,7 @@ jobs: git commit -m "[Bot] Update README.md" git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} - uses: repo-sync/pull-request@v2 - if: ${{ !env.ACT }} + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} id: pull-request with: github_token: ${{ steps.create-app-token.outputs.token }} From a6221108a1de8bda5bf435f1c46f60c853f9edbb Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 01:54:28 +0300 Subject: [PATCH 146/157] Remove /streams --- streams/ad.m3u | 3 - streams/ae.m3u | 193 --- streams/af.m3u | 35 - streams/ag.m3u | 3 - streams/al.m3u | 263 ---- streams/am.m3u | 51 - streams/ao.m3u | 5 - streams/ar.m3u | 171 -- streams/at.m3u | 61 - streams/at_samsung.m3u | 11 - streams/au.m3u | 119 -- streams/au_samsung.m3u | 87 - streams/aw.m3u | 9 - streams/az.m3u | 55 - streams/ba.m3u | 29 - streams/bb.m3u | 3 - streams/bd.m3u | 7 - streams/bd_jagobd.m3u | 53 - streams/be.m3u | 43 - streams/be_samsung.m3u | 11 - streams/bf.m3u | 9 - streams/bg.m3u | 55 - streams/bh.m3u | 17 - streams/bj.m3u | 11 - streams/bn.m3u | 5 - streams/bo.m3u | 51 - streams/br.m3u | 309 ---- streams/br_samsung.m3u | 33 - streams/bs.m3u | 7 - streams/by.m3u | 33 - streams/by_sluhay.m3u | 25 - streams/ca.m3u | 273 ---- streams/ca_samsung.m3u | 49 - streams/ca_stingray.m3u | 21 - streams/cd.m3u | 13 - streams/cg.m3u | 3 - streams/ch.m3u | 85 - streams/ch_samsung.m3u | 11 - streams/ci.m3u | 3 - streams/cl.m3u | 355 ----- streams/cm.m3u | 9 - streams/cn.m3u | 2959 ----------------------------------- streams/co.m3u | 95 -- streams/cr.m3u | 81 - streams/cu.m3u | 13 - streams/cw.m3u | 11 - streams/cy.m3u | 57 - streams/cz.m3u | 53 - streams/de.m3u | 473 ------ streams/de_samsung.m3u | 49 - streams/dk.m3u | 15 - streams/dk_samsung.m3u | 25 - streams/do.m3u | 141 -- streams/dz.m3u | 49 - streams/ec.m3u | 49 - streams/ee.m3u | 15 - streams/eg.m3u | 79 - streams/es.m3u | 521 ------ streams/es_rakuten.m3u | 135 -- streams/es_samsung.m3u | 57 - streams/et.m3u | 3 - streams/fi.m3u | 21 - streams/fi_samsung.m3u | 23 - streams/fj.m3u | 5 - streams/fo.m3u | 3 - streams/fr.m3u | 253 --- streams/fr_samsung.m3u | 55 - streams/ge.m3u | 19 - streams/gh.m3u | 5 - streams/gl.m3u | 5 - streams/gm.m3u | 3 - streams/gn.m3u | 3 - streams/gp.m3u | 3 - streams/gq.m3u | 3 - streams/gr.m3u | 229 --- streams/gt.m3u | 13 - streams/hk.m3u | 63 - streams/hn.m3u | 99 -- streams/hr.m3u | 31 - streams/ht.m3u | 33 - streams/hu.m3u | 83 - streams/id.m3u | 289 ---- streams/ie.m3u | 17 - streams/ie_samsung.m3u | 11 - streams/il.m3u | 55 - streams/in.m3u | 829 ---------- streams/in_samsung.m3u | 29 - streams/iq.m3u | 121 -- streams/ir.m3u | 235 --- streams/ir_telewebion.m3u | 207 --- streams/is.m3u | 7 - streams/it.m3u | 491 ------ streams/it_samsung.m3u | 69 - streams/jm.m3u | 5 - streams/jo.m3u | 43 - streams/jp.m3u | 199 --- streams/ke.m3u | 25 - streams/kg.m3u | 7 - streams/kh.m3u | 21 - streams/kp.m3u | 5 - streams/kr.m3u | 117 -- streams/kw.m3u | 41 - streams/kz.m3u | 47 - streams/la.m3u | 63 - streams/lb.m3u | 57 - streams/li.m3u | 5 - streams/lk.m3u | 21 - streams/lt.m3u | 9 - streams/lu.m3u | 15 - streams/lu_samsung.m3u | 11 - streams/lv.m3u | 11 - streams/ly.m3u | 21 - streams/ma.m3u | 47 - streams/mc.m3u | 3 - streams/md.m3u | 27 - streams/me.m3u | 17 - streams/mk.m3u | 11 - streams/ml.m3u | 3 - streams/mm.m3u | 17 - streams/mn.m3u | 5 - streams/mo.m3u | 23 - streams/mq.m3u | 5 - streams/mt.m3u | 7 - streams/mv.m3u | 3 - streams/mw.m3u | 3 - streams/mx.m3u | 203 --- streams/mx_samsung.m3u | 31 - streams/my.m3u | 39 - streams/mz.m3u | 9 - streams/ne.m3u | 3 - streams/ng.m3u | 19 - streams/ni.m3u | 23 - streams/nl.m3u | 217 --- streams/nl_samsung.m3u | 23 - streams/no.m3u | 43 - streams/no_samsung.m3u | 27 - streams/np.m3u | 5 - streams/nz.m3u | 31 - streams/om.m3u | 13 - streams/pa.m3u | 27 - streams/pe.m3u | 423 ----- streams/pf.m3u | 3 - streams/ph.m3u | 37 - streams/pk.m3u | 65 - streams/pl.m3u | 83 - streams/pr.m3u | 17 - streams/ps.m3u | 49 - streams/pt.m3u | 101 -- streams/pt_samsung.m3u | 9 - streams/py.m3u | 33 - streams/qa.m3u | 29 - streams/ro.m3u | 141 -- streams/rs.m3u | 95 -- streams/ru.m3u | 773 --------- streams/ru_catcast.m3u | 21 - streams/ru_okkotv.m3u | 91 -- streams/rw.m3u | 13 - streams/sa.m3u | 111 -- streams/sd.m3u | 7 - streams/se.m3u | 43 - streams/se_samsung.m3u | 25 - streams/sg.m3u | 17 - streams/si.m3u | 19 - streams/sk.m3u | 69 - streams/sl.m3u | 3 - streams/sm.m3u | 5 - streams/sn.m3u | 29 - streams/so.m3u | 13 - streams/sv.m3u | 33 - streams/sy.m3u | 55 - streams/th.m3u | 83 - streams/tj.m3u | 3 - streams/tm.m3u | 29 - streams/tn.m3u | 29 - streams/tr.m3u | 457 ------ streams/tt.m3u | 3 - streams/tw.m3u | 149 -- streams/tz.m3u | 9 - streams/ua.m3u | 271 ---- streams/ug.m3u | 9 - streams/uk.m3u | 397 ----- streams/uk_samsung.m3u | 125 -- streams/uk_sportstribal.m3u | 23 - streams/unsorted.m3u | 415 ----- streams/us.m3u | 1939 ----------------------- streams/us_adultiptv.m3u | 51 - streams/us_adultswim.m3u | 33 - streams/us_bumblebee.m3u | 73 - streams/us_distro.m3u | 19 - streams/us_filmon.m3u | 9 - streams/us_fubo.m3u | 9 - streams/us_glewedtv.m3u | 3 - streams/us_imdbtv.m3u | 11 - streams/us_klowdtv.m3u | 25 - streams/us_localbtv.m3u | 127 -- streams/us_pbs.m3u | 265 ---- streams/us_plex.m3u | 221 --- streams/us_redbox.m3u | 25 - streams/us_redtraffic.m3u | 37 - streams/us_roku.m3u | 243 --- streams/us_samsung.m3u | 207 --- streams/us_ssh101.m3u | 39 - streams/us_stirr.m3u | 515 ------ streams/us_tcl.m3u | 29 - streams/us_tubi.m3u | 129 -- streams/us_vizio.m3u | 187 --- streams/us_xumo.m3u | 369 ----- streams/uy.m3u | 13 - streams/uz.m3u | 5 - streams/va.m3u | 5 - streams/ve.m3u | 49 - streams/vn.m3u | 103 -- streams/vn_fptplay.m3u | 49 - streams/xk.m3u | 23 - streams/ye.m3u | 25 - streams/zm.m3u | 5 - 216 files changed, 21644 deletions(-) delete mode 100644 streams/ad.m3u delete mode 100644 streams/ae.m3u delete mode 100644 streams/af.m3u delete mode 100644 streams/ag.m3u delete mode 100644 streams/al.m3u delete mode 100644 streams/am.m3u delete mode 100644 streams/ao.m3u delete mode 100644 streams/ar.m3u delete mode 100644 streams/at.m3u delete mode 100644 streams/at_samsung.m3u delete mode 100644 streams/au.m3u delete mode 100644 streams/au_samsung.m3u delete mode 100644 streams/aw.m3u delete mode 100644 streams/az.m3u delete mode 100644 streams/ba.m3u delete mode 100644 streams/bb.m3u delete mode 100644 streams/bd.m3u delete mode 100644 streams/bd_jagobd.m3u delete mode 100644 streams/be.m3u delete mode 100644 streams/be_samsung.m3u delete mode 100644 streams/bf.m3u delete mode 100644 streams/bg.m3u delete mode 100644 streams/bh.m3u delete mode 100644 streams/bj.m3u delete mode 100644 streams/bn.m3u delete mode 100644 streams/bo.m3u delete mode 100644 streams/br.m3u delete mode 100644 streams/br_samsung.m3u delete mode 100644 streams/bs.m3u delete mode 100644 streams/by.m3u delete mode 100644 streams/by_sluhay.m3u delete mode 100644 streams/ca.m3u delete mode 100644 streams/ca_samsung.m3u delete mode 100644 streams/ca_stingray.m3u delete mode 100644 streams/cd.m3u delete mode 100644 streams/cg.m3u delete mode 100644 streams/ch.m3u delete mode 100644 streams/ch_samsung.m3u delete mode 100644 streams/ci.m3u delete mode 100644 streams/cl.m3u delete mode 100644 streams/cm.m3u delete mode 100644 streams/cn.m3u delete mode 100644 streams/co.m3u delete mode 100644 streams/cr.m3u delete mode 100644 streams/cu.m3u delete mode 100644 streams/cw.m3u delete mode 100644 streams/cy.m3u delete mode 100644 streams/cz.m3u delete mode 100644 streams/de.m3u delete mode 100644 streams/de_samsung.m3u delete mode 100644 streams/dk.m3u delete mode 100644 streams/dk_samsung.m3u delete mode 100644 streams/do.m3u delete mode 100644 streams/dz.m3u delete mode 100644 streams/ec.m3u delete mode 100644 streams/ee.m3u delete mode 100644 streams/eg.m3u delete mode 100644 streams/es.m3u delete mode 100644 streams/es_rakuten.m3u delete mode 100644 streams/es_samsung.m3u delete mode 100644 streams/et.m3u delete mode 100644 streams/fi.m3u delete mode 100644 streams/fi_samsung.m3u delete mode 100644 streams/fj.m3u delete mode 100644 streams/fo.m3u delete mode 100644 streams/fr.m3u delete mode 100644 streams/fr_samsung.m3u delete mode 100644 streams/ge.m3u delete mode 100644 streams/gh.m3u delete mode 100644 streams/gl.m3u delete mode 100644 streams/gm.m3u delete mode 100644 streams/gn.m3u delete mode 100644 streams/gp.m3u delete mode 100644 streams/gq.m3u delete mode 100644 streams/gr.m3u delete mode 100644 streams/gt.m3u delete mode 100644 streams/hk.m3u delete mode 100644 streams/hn.m3u delete mode 100644 streams/hr.m3u delete mode 100644 streams/ht.m3u delete mode 100644 streams/hu.m3u delete mode 100644 streams/id.m3u delete mode 100644 streams/ie.m3u delete mode 100644 streams/ie_samsung.m3u delete mode 100644 streams/il.m3u delete mode 100644 streams/in.m3u delete mode 100644 streams/in_samsung.m3u delete mode 100644 streams/iq.m3u delete mode 100644 streams/ir.m3u delete mode 100644 streams/ir_telewebion.m3u delete mode 100644 streams/is.m3u delete mode 100644 streams/it.m3u delete mode 100644 streams/it_samsung.m3u delete mode 100644 streams/jm.m3u delete mode 100644 streams/jo.m3u delete mode 100644 streams/jp.m3u delete mode 100644 streams/ke.m3u delete mode 100644 streams/kg.m3u delete mode 100644 streams/kh.m3u delete mode 100644 streams/kp.m3u delete mode 100644 streams/kr.m3u delete mode 100644 streams/kw.m3u delete mode 100644 streams/kz.m3u delete mode 100644 streams/la.m3u delete mode 100644 streams/lb.m3u delete mode 100644 streams/li.m3u delete mode 100644 streams/lk.m3u delete mode 100644 streams/lt.m3u delete mode 100644 streams/lu.m3u delete mode 100644 streams/lu_samsung.m3u delete mode 100644 streams/lv.m3u delete mode 100644 streams/ly.m3u delete mode 100644 streams/ma.m3u delete mode 100644 streams/mc.m3u delete mode 100644 streams/md.m3u delete mode 100644 streams/me.m3u delete mode 100644 streams/mk.m3u delete mode 100644 streams/ml.m3u delete mode 100644 streams/mm.m3u delete mode 100644 streams/mn.m3u delete mode 100644 streams/mo.m3u delete mode 100644 streams/mq.m3u delete mode 100644 streams/mt.m3u delete mode 100644 streams/mv.m3u delete mode 100644 streams/mw.m3u delete mode 100644 streams/mx.m3u delete mode 100644 streams/mx_samsung.m3u delete mode 100644 streams/my.m3u delete mode 100644 streams/mz.m3u delete mode 100644 streams/ne.m3u delete mode 100644 streams/ng.m3u delete mode 100644 streams/ni.m3u delete mode 100644 streams/nl.m3u delete mode 100644 streams/nl_samsung.m3u delete mode 100644 streams/no.m3u delete mode 100644 streams/no_samsung.m3u delete mode 100644 streams/np.m3u delete mode 100644 streams/nz.m3u delete mode 100644 streams/om.m3u delete mode 100644 streams/pa.m3u delete mode 100644 streams/pe.m3u delete mode 100644 streams/pf.m3u delete mode 100644 streams/ph.m3u delete mode 100644 streams/pk.m3u delete mode 100644 streams/pl.m3u delete mode 100644 streams/pr.m3u delete mode 100644 streams/ps.m3u delete mode 100644 streams/pt.m3u delete mode 100644 streams/pt_samsung.m3u delete mode 100644 streams/py.m3u delete mode 100644 streams/qa.m3u delete mode 100644 streams/ro.m3u delete mode 100644 streams/rs.m3u delete mode 100644 streams/ru.m3u delete mode 100644 streams/ru_catcast.m3u delete mode 100644 streams/ru_okkotv.m3u delete mode 100644 streams/rw.m3u delete mode 100644 streams/sa.m3u delete mode 100644 streams/sd.m3u delete mode 100644 streams/se.m3u delete mode 100644 streams/se_samsung.m3u delete mode 100644 streams/sg.m3u delete mode 100644 streams/si.m3u delete mode 100644 streams/sk.m3u delete mode 100644 streams/sl.m3u delete mode 100644 streams/sm.m3u delete mode 100644 streams/sn.m3u delete mode 100644 streams/so.m3u delete mode 100644 streams/sv.m3u delete mode 100644 streams/sy.m3u delete mode 100644 streams/th.m3u delete mode 100644 streams/tj.m3u delete mode 100644 streams/tm.m3u delete mode 100644 streams/tn.m3u delete mode 100644 streams/tr.m3u delete mode 100644 streams/tt.m3u delete mode 100644 streams/tw.m3u delete mode 100644 streams/tz.m3u delete mode 100644 streams/ua.m3u delete mode 100644 streams/ug.m3u delete mode 100644 streams/uk.m3u delete mode 100644 streams/uk_samsung.m3u delete mode 100644 streams/uk_sportstribal.m3u delete mode 100644 streams/unsorted.m3u delete mode 100644 streams/us.m3u delete mode 100644 streams/us_adultiptv.m3u delete mode 100644 streams/us_adultswim.m3u delete mode 100644 streams/us_bumblebee.m3u delete mode 100644 streams/us_distro.m3u delete mode 100644 streams/us_filmon.m3u delete mode 100644 streams/us_fubo.m3u delete mode 100644 streams/us_glewedtv.m3u delete mode 100644 streams/us_imdbtv.m3u delete mode 100644 streams/us_klowdtv.m3u delete mode 100644 streams/us_localbtv.m3u delete mode 100644 streams/us_pbs.m3u delete mode 100644 streams/us_plex.m3u delete mode 100644 streams/us_redbox.m3u delete mode 100644 streams/us_redtraffic.m3u delete mode 100644 streams/us_roku.m3u delete mode 100644 streams/us_samsung.m3u delete mode 100644 streams/us_ssh101.m3u delete mode 100644 streams/us_stirr.m3u delete mode 100644 streams/us_tcl.m3u delete mode 100644 streams/us_tubi.m3u delete mode 100644 streams/us_vizio.m3u delete mode 100644 streams/us_xumo.m3u delete mode 100644 streams/uy.m3u delete mode 100644 streams/uz.m3u delete mode 100644 streams/va.m3u delete mode 100644 streams/ve.m3u delete mode 100644 streams/vn.m3u delete mode 100644 streams/vn_fptplay.m3u delete mode 100644 streams/xk.m3u delete mode 100644 streams/ye.m3u delete mode 100644 streams/zm.m3u diff --git a/streams/ad.m3u b/streams/ad.m3u deleted file mode 100644 index 12734ba1c..000000000 --- a/streams/ad.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ATV.ad",ATV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/streams/ae.m3u b/streams/ae.m3u deleted file mode 100644 index 86ff907ab..000000000 --- a/streams/ae.m3u +++ /dev/null @@ -1,193 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3eeshAlAanTV.ae",3eesh Al Aan TV (720p) [Timeout] -https://streaming.3eeshalaan.net/AAAFinalFeed/AlAanFeed_live.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiAloula.ae",Abu Dhabi Aloula (1080p) -https://admdn2.cdn.mangomolo.com/adtv/smil:adtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiDrama.ae",Abu Dhabi Drama (1080p) [Offline] -https://admdn5.cdn.mangomolo.com/drama/smil:drama.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiEmirates.ae",Abu Dhabi Emirates (1080p) -https://admdn3.cdn.mangomolo.com/emarat/smil:emarat.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports1.ae",Abu Dhabi Sports 1 (1080p) -https://admdn1.cdn.mangomolo.com/adsports1/smil:adsports1.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports2.ae",Abu Dhabi Sports 2 (1080p) -https://admdn5.cdn.mangomolo.com/adsports2/smil:adsports2.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports3.ae",Abu Dhabi Sports 3 (1080p) -https://admdn3.cdn.mangomolo.com/adsports3/smil:adsports3.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AbuDhabiSports4.ae",Abu Dhabi Sports 4 (1080p) [Geo-blocked] -https://admdn4ta.cdn.mgmlcdn.com/adsports4/smil:adsports4.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Ajman.ae",Ajman (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/emirates/ajman -#EXTINF:-1 tvg-id="AlAan.ae",Al Aan (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x74wje5 -#EXTINF:-1 tvg-id="",Al Arabiya (1080p) -https://live.alarabiya.net/alarabiapublish/alarabiya.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Al Arabiya (1080p) -https://shls-alarabiya-prod-dub.shahid.net/out/v1/f5f319206ed740f9a831f2097c2ead23/index.m3u8 -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Arabiya Al Hadath (1080p) [Not 24/7] -https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlDafrahTV.ae",Al Dafrah TV (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/aldafrah -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Hadath TV (1080p) -https://shls-hadath-prod-dub.shahid.net/out/v1/0e1a306399c346faac4226aa0858f99b/index.m3u8 -#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae",Al Hadath TV (1080p) [Not 24/7] -https://live.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQamarTV.ae",Al Qamar TV (360p) -https://cdn5.iqsat.net/iq/8c17d37e0f5c88b1e9c7e1f8f82bc980.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSharqiyaMinKabla.ae",Al Sharqiya Min Kabla (1080p) -https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlWoustaTV.ae",Al Wousta TV (1080p) -https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlYaumTV.ae",Al Yaum TV (720p) -https://ikomg1.s.llnwi.net/alyaumtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Asharq.ae",Asharq (1080p) -https://bcovlive-a.akamaihd.net/0b75ef0a49e24704a4ca023d3a82c2df/ap-south-1/6203311941001/playlist.m3u8 -#EXTINF:-1 tvg-id="BeeMovies.ae",Bee Movies (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCuaMJTqQ_W7qztqZ_zyErJg/live -#EXTINF:-1 tvg-id="BeeTheater.ae",Bee Theater (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC32M9DWf0zgMhBYGd_MOiIw/live -#EXTINF:-1 tvg-id="CitrussTV.ae",Citruss TV (720p) [Geo-blocked] -https://citrusstv.akamaized.net/hls/live/687285/CTV/index.m3u8 -#EXTINF:-1 tvg-id="DubaiOne.ae",Dubai One (304p) -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="DubaiOne.ae",Dubai One (1080p) -http://dminnvll.cdn.mangomolo.com/dubaione/smil:dubaione.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiRacing2.ae",Dubai Racing 2 (1080p) -https://dmithrvll.cdn.mangomolo.com/dubairacing/smil:dubairacing.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiRacing3.ae",Dubai Racing 3 (240p) -https://dmithrvll.cdn.mangomolo.com/dubaimubasher/smil:dubaimubasher.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiRacing.ae",Dubai Racing (1080p) -https://dmisvthvll.cdn.mangomolo.com/events/smil:events.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiSports1.ae",Dubai Sports 1 (1080p) -https://dmitnthvll.cdn.mangomolo.com/dubaisports/smil:dubaisports.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiSports2.ae",Dubai Sports 2 (1080p) -https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd/smil:dubaisportshd.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiSports3.ae",Dubai Sports 3 (1080p) [Not 24/7] -https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd5/smil:dubaisportshd5.smil/index.m3u8 -#EXTINF:-1 tvg-id="DubaiTV.ae",Dubai TV (1080p) -https://dmisxthvll.cdn.mgmlcdn.com/dubaitvht/smil:dubaitv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DubaiZaman.ae",Dubai Zaman (400p) [Not 24/7] -https://dmiffthvll.cdn.mangomolo.com/dubaizaman/smil:dubaizaman.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EXPO2020.ae",EXPO 2020 (1080p) -https://shls-expotv-prod-dub.shahid.net/out/v1/d01b0b3888284878b8898017895a5922/index.m3u8 -#EXTINF:-1 tvg-id="HawasTV.ae",Hawas TV (480p) -https://jmc-live.ercdn.net/hawastvhd/hawastvhd.m3u8 -#EXTINF:-1 tvg-id="KhyberMiddleEastTV.ae",Khyber Middle East TV (720p) [Not 24/7] -https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 -#EXTINF:-1 tvg-id="KhyberNewsTV.ae",Khyber News TV (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 -#EXTINF:-1 tvg-id="MajidTV.ae",Majid TV (1080p) [Offline] -https://admdn4.cdn.mangomolo.com/majid/smil:majid.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149009_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] -https://shls-mbc1ksa-ak.akamaized.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 -#EXTINF:-1 tvg-id="MBC.ae",MBC 1 KSA (1080p) [Geo-blocked] -https://shls-mbc1ksa-prod-dub.shahid.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 -#EXTINF:-1 tvg-id="MBC1USA.ae",MBC 1 USA (1080p) -https://shls-mbc1-usa-prod.shahid.net/out/v1/1b559e832c3f40f996c1984245b3b24b/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (576p) -http://93.184.1.247/MBC2/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (720p) [Timeout] -https://blogs.livehdchanel.live/mbc-222/index.m3u8 -#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149010_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC2.ae",MBC 2 (1080p) [Offline] -https://shls-mbc2-prod-dub.shahid.net/out/v1/b4befe19798745fe986f5a9bfba62126/index.m3u8 -#EXTINF:-1 tvg-id="MBC3.ae",MBC 3 (1080p) -https://shls-mbc3-prod-dub.shahid.net/out/v1/d5bbe570e1514d3d9a142657d33d85e6/index.m3u8 -#EXTINF:-1 tvg-id="MBC3.ae",MBC 3 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149011_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC3EUR.ae",MBC 3 EUR (1080p) -https://shls-mbc3-eur-prod-dub.shahid.net/out/v1/fce09dd6a967431a871efb3b8dec9f82/index.m3u8 -#EXTINF:-1 tvg-id="MBC3USA.ae",MBC 3 USA (1080p) -https://shls-mbc3-usa-prod.shahid.net/out/v1/f7584f50d13c4c01b0fac2be04c61c7e/index.m3u8 -#EXTINF:-1 tvg-id="MBC4.ae",MBC 4 (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149012_0.m3u8?session= -#EXTINF:-1 tvg-id="MBC4.ae",MBC 4 (1080p) [Geo-blocked] -https://shls-mbc4-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/index.m3u8 -#EXTINF:-1 tvg-id="MBC5.ae",MBC 5 (1080p) -https://shls-mbc5-prod-dub.shahid.net/out/v1/2720564b6a4641658fdfb6884b160da2/index.m3u8 -#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (576p) [Timeout] -https://blogs.livehdchanel.live/action2/index.m3u8 -#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149013_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCAction.ae",MBC Action (1080p) [Geo-blocked] -https://shls-mbcaction-prod-dub.shahid.net/out/v1/68dd761538e5460096c42422199d050b/index.m3u8 -#EXTINF:-1 tvg-id="MBCBollywood.ae",MBC Bollywood (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149014_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCBollywood.ae",MBC Bollywood (1080p) [Geo-blocked] -https://shls-mbcbollywood-prod-dub.shahid.net/out/v1/a79c9d7ef2a64a54a64d5c4567b3462a/index.m3u8 -#EXTINF:-1 tvg-id="MBCDrama.ae",MBC Drama KSA (1080p) -https://shls-mbcdramaksa-prod-dub.shahid.net/out/v1/ce0f0762d89e4394a856c5fd13e43645/index.m3u8 -#EXTINF:-1 tvg-id="M.ae",MBC Drama USA (1080p) -https://shls-mbc-drama-usa-prod.shahid.net/out/v1/efb67fc5c04a40778cd5c21e2e7ea884/index.m3u8 -#EXTINF:-1 tvg-id="MBCFM.ae",MBC FM (1080p) -https://mbcfm-riyadh-prod-dub.shahid.net/out/v1/69c8a03f507e422f99cf5c07291c9e3a/index.m3u8 -#EXTINF:-1 tvg-id="MBCIraq.ae",MBC Iraq (1080p) -https://shls-iraq-prod-dub.shahid.net/out/v1/c9bf1e87ea66478bb20bc5c93c9d41ea/index.m3u8 -#EXTINF:-1 tvg-id="MBCIraq.ae",MBC Iraq (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149018_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCEgypt.ae",MBC Masr 1 (1080p) [Geo-blocked] -https://shls-masr-prod-dub.shahid.net/out/v1/b7093401da27496797a8949de23f4578/index.m3u8 -#EXTINF:-1 tvg-id="MBCMasr1USA.ae",MBC Masr 1 USA (1080p) -https://shls-mbc-masr-usa-prod.shahid.net/out/v1/d4fded7d5df04b88b9ea1db61d00f095/index.m3u8 -#EXTINF:-1 tvg-id="MBCMasr2.ae",MBC Masr 2 (1080p) [Geo-blocked] -https://shls-masr2-prod-dub.shahid.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (576p) [Timeout] -https://blogs.livehdchanel.live/max/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149015_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Not 24/7] -https://shls-mbcmax-prod-dub.shahid.net/out/v1/13815a7cda864c249a88c38e66a2e653/index.m3u8 -#EXTINF:-1 tvg-id="MBCMax.ae",MBC Max (1080p) [Offline] -http://93.184.1.247/MBC_MAX/index.m3u8 -#EXTINF:-1 tvg-id="MBCPersia.ae",MBC Persia (1080p) -https://shls-mbcpersia-prod-dub.shahid.net/out/v1/bdc7cd0d990e4c54808632a52c396946/index.m3u8 -#EXTINF:-1 tvg-id="MBCDramaPlus.ae",MBC Plus Drama (1080p) -https://shls-mbcplusdrama-prod-dub.shahid.net/out/v1/97ca0ce6fc6142f4b14c0a694af59eab/index.m3u8 -#EXTINF:-1 tvg-id="MBCDramaPlus.ae",MBC Plus Drama (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149016_0.m3u8?session= -#EXTINF:-1 tvg-id="MBCVarietyPlus.ae",MBC Plus Variety (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149017_0.m3u8?session= -#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.ae",National Geographic Abu Dhabi (1080p) -https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NoorDubai.ae",Noor Dubai (576p) -https://dmiffthvll.cdn.mangomolo.com/noordubaitv/smil:noordubaitv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PeaceTVAlbanian.ae",Peace TV Albanian (360p) -http://82.114.67.178:8081/hls/PeaceTV.m3u8 -#EXTINF:-1 tvg-id="PeaceTVBangla.ae",Peace TV Bangla (720p) -http://199.223.252.162:8032/bangla_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVChinese.ae",Peace TV Chinese (720p) -http://199.223.252.162:8032/chinese_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVEnglish.ae",Peace TV English (1080p) -http://199.223.252.162:8032/english_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTVUrdu.ae",Peace TV Urdu (1080p) -http://199.223.252.162:8032/urdu_adaptive/index.m3u8 -#EXTINF:-1 tvg-id="",Sama Dubai (1080p) -https://dmieigthvll.cdn.mgmlcdn.com/samadubaiht/smil:samadubai.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Sharjah2.ae",Sharjah 2 (1080p) -https://svs.itworkscdn.net/smc2live/smc2tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SharjahRadioQuran.ae",Sharjah Radio Quran (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://youtube.com/channel/UCn8lMRYDANs_1yAL3iuw7_g/live -#EXTINF:-1 tvg-id="" status="online",Sharjah Sports TV (1080p) -https://svs.itworkscdn.net/smc4sportslive/smc4.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SharjahTV.ae",Sharjah TV (1080p) -https://svs.itworkscdn.net/smc1live/smc1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TowheedTV.ae",Towheed TV (720p) [Not 24/7] -http://51.210.199.1/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Wanasah.ae",Wanasah (1080p) -https://shls-wanasah-prod-dub.shahid.net/out/v1/c84ef3128e564b74a6a796e8b6287de6/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakAction.ae",Weyyak Action (1080p) -https://weyyak-live.akamaized.net/weyyak_action/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakDrama.ae",Weyyak Drama (720p) -https://weyyak-live.akamaized.net/weyyak_drama/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakMix.ae",Weyyak Mix (720p) -https://weyyak-live.akamaized.net/weyyak_mix/index.m3u8 -#EXTINF:-1 tvg-id="WeyyakNawaem.ae",Weyyak Nawaem (720p) -https://weyyak-live.akamaized.net/weyyak_nawaem/index.m3u8 -#EXTINF:-1 tvg-id="Yas.ae",Yas (1080p) -https://admdn1.cdn.mangomolo.com/yastv/smil:yastv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAflam.ae",Zee Aflam (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_zee_aflam/index.m3u8 -#EXTINF:-1 tvg-id="ZeeAlwan.ae",Zee Alwan (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_zee_alwan/index.m3u8 diff --git a/streams/af.m3u b/streams/af.m3u deleted file mode 100644 index 97710d3cf..000000000 --- a/streams/af.m3u +++ /dev/null @@ -1,35 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArianaAfghanistanInternationalTV.af",Ariana Afghanistan International TV (720p) [Not 24/7] -http://iptv.arianaafgtv.com/ariana/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVNational.af",Ariana TV National (720p) [Not 24/7] -https://d10rltuy0iweup.cloudfront.net/ATNNAT/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVUS.af",Ariana TV US (720p) [Not 24/7] -https://d2g7v53450s2i2.cloudfront.net/ATNUS/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ArianaTVUS.af",Ariana TV US (Delayed stream) (720p) [Not 24/7] -https://d2g7v53450s2i2.cloudfront.net/ATNUS/streamdelay/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNNews.af",ATN News (360p) [Not 24/7] -https://d10rltuy0iweup.cloudfront.net/ATNNEWS/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="BaharTV.af",Bahar TV (720p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/bahartv/bahartv/playlist.m3u8 -#EXTINF:-1 tvg-id="BaryaTV.af",Barya TV (720p) [Not 24/7] -http://51.210.199.56/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HelalTV.af",Helal TV (720p) [Not 24/7] -http://51.210.199.54/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HewadTV.af",Hewad TV (720p) [Not 24/7] -http://51.210.199.58/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ImanTV.af",Iman TV (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/imantv/imantv/playlist.m3u8 -#EXTINF:-1 tvg-id="KayhanTV.af",Kayhan TV (720p) -https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="KayhanTV.af",Kayhan TV (720p) [Geo-blocked] -http://208.93.117.113/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="PamirTV.af",Pamir TV (1080p) [Not 24/7] -http://live.stream.cdn.pamirtv.com/ptv/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 -#EXTINF:-1 tvg-id="Sharq.af",Sharq (576p) [Offline] -http://51.210.199.50/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SolhTV.af",Solh TV (576p) [Not 24/7] -http://51.210.199.42/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ToloTV.af",Tolo TV (720p) -https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolotv.m3u8 -#EXTINF:-1 tvg-id="Tuti.af",Tuti (480p) [Not 24/7] -https://rrsatrtmp.tulix.tv/livecdn827/myStream.sdp/playlist.m3u8 diff --git a/streams/ag.m3u b/streams/ag.m3u deleted file mode 100644 index a111f3fb0..000000000 --- a/streams/ag.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABSTV.ag",ABS TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ diff --git a/streams/al.m3u b/streams/al.m3u deleted file mode 100644 index 9dbde16ab..000000000 --- a/streams/al.m3u +++ /dev/null @@ -1,263 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7HD.al",7 HD (540p) [Not 24/7] -https://5d00db0e0fcd5.streamlock.net/7064/7064/playlist.m3u8 -#EXTINF:-1 tvg-id="21Mix.al",21 Mix (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8756/playlist.m3u8 -#EXTINF:-1 tvg-id="21Plus.al",21 Plus (576p) [Not 24/7] -http://46.29.169.15:4001/play/a00b/index.m3u8 -#EXTINF:-1 tvg-id="21PopulloreHD.al",21 Popullore HD (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8749/playlist.m3u8 -#EXTINF:-1 tvg-id="21RTV.al",21 RTV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8748/playlist.m3u8 -#EXTINF:-1 tvg-id="21TVMacedonia.al",21 TV Macedonia (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8790/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.al",A TV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8709/playlist.m3u8 -#EXTINF:-1 tvg-id="ABCNews.al",ABC News (720p) [Not 24/7] -https://tv2.abcnews.al/live/abcnews/playlist.m3u8 -#EXTINF:-1 tvg-id="AdriaTV.al",Adria TV (480p) [Timeout] -https://tvlive.rtsh.dev/live/adriamed/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbaniaFolk.al",Albania Folk (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8759/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbanianTVAmerica.al",Albanian TV America (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8711/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbMusikHD.al",AlbMusik HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8821/playlist.m3u8 -#EXTINF:-1 tvg-id="AlbUKTV.uk",AlbUK TV (1080p) [Not 24/7] -http://albuk.dyndns.tv:1935/albuk/albuk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ALPO.al",ALPO (720p) [Not 24/7] -https://5d00db0e0fcd5.streamlock.net/7236/7236/playlist.m3u8 -#EXTINF:-1 tvg-id="Alsat.al",Alsat (1080p) [Not 24/7] -http://93.157.62.180/AlsatM/index.m3u8 -#EXTINF:-1 tvg-id="ARTAHD.al",ARTA HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8745/playlist.m3u8 -#EXTINF:-1 tvg-id="ATD.al",ATD (1080p) -http://46.99.146.236/0.m3u8 -#EXTINF:-1 tvg-id="BabyTV.al",BabyTV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8747/playlist.m3u8 -#EXTINF:-1 tvg-id="BangBang.al",Bang Bang (576p) [Not 24/7] -http://93.157.62.180/BangBang/index.m3u8 -#EXTINF:-1 tvg-id="BBFMusicTV.al",BBF Music TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8795/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel117.al",Channel 117 (1080p) [Offline] -https://shkoder.gjirafa.com/api/media/rgjirafa/t0110y/index.m3u8 -#EXTINF:-1 tvg-id="Cufo.al",Çufo (576p) -http://93.157.62.180/Cufo/index.m3u8 -#EXTINF:-1 tvg-id="DigitalbAktionHD.al",Digitalb Aktion HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8742/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbAutor.al",Digitalb Autor (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8753/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP1.al",Digitalb Big Brother VIP 1 (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8803/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP2.al",Digitalb Big Brother VIP 2 (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8804/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbDrame.al",Digitalb Dramë (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8727/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbDYHD.al",Digitalb DY HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8731/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbEurofilm.al",Digitalb Eurofilm (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8758/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbFamilyHD.al",Digitalb Family HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8754/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHD.al",Digitalb HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8746/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHistori.al",Digitalb Histori (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8729/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbHitsHD.al",Digitalb Hits HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8755/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbKomedi.al",Digitalb Komedi (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8752/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbNatyra.al",Digitalb Natyra (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8739/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbNjeHD.al",Digitalb Një HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8730/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbShkense.al",Digitalb Shkensë (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8726/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbStinet.al",Digitalb Stinët (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8751/playlist.m3u8 -#EXTINF:-1 tvg-id="DigitalbThriller.al",Digitalb Thriller (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8757/playlist.m3u8 -#EXTINF:-1 tvg-id="Drame.al",Drame (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8883/playlist.m3u8 -#EXTINF:-1 tvg-id="dTVHD.al",dTV HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8793/playlist.m3u8 -#EXTINF:-1 tvg-id="ElrodiTV.al",Elrodi TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8718/playlist.m3u8 -#EXTINF:-1 tvg-id="FaxNews.al",Fax News (360p) [Not 24/7] -http://edge01eu.ekranet.com/faxnews/index.m3u8 -#EXTINF:-1 tvg-id="FirstChannel.al",First Channel (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8717/playlist.m3u8 -#EXTINF:-1 tvg-id="FrameTV.al",Frame TV (1080p) [Not 24/7] -http://195.154.252.221:8000/play/a002/index.m3u8 -#EXTINF:-1 tvg-id="KHD.al",K HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8710/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanali7.al",Kanali 7 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8761/playlist.m3u8 -#EXTINF:-1 tvg-id="KLAN.al",KLAN [Timeout] -http://79.106.73.244:4040/live/klanhdmob/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanHD.al",Klan HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8704/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanMakedonia.al",Klan Makedonia (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8789/playlist.m3u8 -#EXTINF:-1 tvg-id="",KLAN News [Offline] -http://51.195.88.12:4050/live/klannewsmobpp3/playlist.m3u8 -#EXTINF:-1 tvg-id="KlanPlus.al",Klan Plus (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8720/playlist.m3u8 -#EXTINF:-1 tvg-id="",KLAN Plus [Offline] -http://51.195.88.12:4050/live/klanplusmobpp3/playlist.m3u8 -#EXTINF:-1 tvg-id="Komedi.al",Komedi (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8881/playlist.m3u8 -#EXTINF:-1 tvg-id="Kosova.al",Kosova (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8706/playlist.m3u8 -#EXTINF:-1 tvg-id="KTVHD.al",KTV HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8705/playlist.m3u8 -#EXTINF:-1 tvg-id="Max.al",Max (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8882/playlist.m3u8 -#EXTINF:-1 tvg-id="MPT2.al",MPT 2 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8728/playlist.m3u8 -#EXTINF:-1 tvg-id="Muse.al",Muse (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8778/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.al",News 24 (392p) [Not 24/7] -http://tv.balkanweb.com/news24/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="News24AL.al",News24 AL (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8724/playlist.m3u8 -#EXTINF:-1 tvg-id="Novela.al",Novela (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8884/playlist.m3u8 -#EXTINF:-1 tvg-id="Opoja.al",Opoja (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8723/playlist.m3u8 -#EXTINF:-1 tvg-id="",Oranews (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8715/playlist.m3u8 -#EXTINF:-1 tvg-id="PeaceTV.al",Peace TV (360p) -http://93.157.62.180/PeaceTV/index.m3u8 -#EXTINF:-1 tvg-id="PeaceTV.al",Peace TV (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8792/playlist.m3u8 -#EXTINF:-1 tvg-id="PendimiTVHD.al",Pendimi TV HD (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8786/playlist.m3u8 -#EXTINF:-1 tvg-id="QSportNews.al",Q Sport News (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8785/playlist.m3u8 -#EXTINF:-1 tvg-id="",Report TV HD (576p) [Not 24/7] -http://93.157.62.180/ReportTV/index.m3u8 -#EXTINF:-1 tvg-id="RitaTV.al",Rita TV (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8890/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH1.al",RTSH 1 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_11mob1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH 1 HD (406p) -http://93.157.62.180/RTSH1/index.m3u8 -#EXTINF:-1 tvg-id="RTSH2.al",RTSH 2 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_2ott/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH 2 HD (720p) -http://93.157.62.180/RTSH2/index.m3u8 -#EXTINF:-1 tvg-id="RTSH3.al",RTSH 3 (406p) [Timeout] -https://tvlive.rtsh.dev/live/rtsh3ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH3.al",RTSH 3 (576p) -http://93.157.62.180/RTSH3/index.m3u8 -#EXTINF:-1 tvg-id="RTSH24.al",RTSH 24 (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_24_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSH24.al",RTSH 24 (1080p) -http://93.157.62.180/RTSH24/index.m3u8 -#EXTINF:-1 tvg-id="RTSHAgro.al",RTSH Agro (480p) [Not 24/7] -http://93.157.62.180/RTSHAgro/index.m3u8 -#EXTINF:-1 tvg-id="RTSHAgro.al",RTSH Agro (480p) [Timeout] -https://tvlive.rtsh.dev/live/rtsh_agro_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHFemije.al",RTSH Femijë (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_femije_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHFilm.al",RTSH Film (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_film_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHGjirokastra.al",RTSH Gjirokastra (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_gjirokastra_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKorca.al",RTSH Korça (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_korca_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKukesi.al",RTSH Kukësi (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_kukesi_ott_p2/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHKuvend.al",RTSH Kuvend (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_kuvendi_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHMuzike.al",RTSH Muzike (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_muzike_mob/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHPlus.al",RTSH Plus (480p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_plus_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHSatelit.al",RTSH Satelit (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8701/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHShkolle.al",RTSH Shkollë (360p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_shkolle_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHShqip.al",RTSH Shqip (406p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_shqip_ott/playlist.m3u8 -#EXTINF:-1 tvg-id="RTSHSport.al",RTSH Sport (720p) [Not 24/7] -https://tvlive.rtsh.dev/live/rtsh_sport_ott11/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDukagjini.al",RTV Dukagjini (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8788/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVFontana.al",RTV Fontana (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8852/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVIlirida.al",RTV Ilirida (360p) [Not 24/7] -https://5a1178b42cc03.streamlock.net/rtvilirida/rtvilirida/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVSCAN.al",RTV SCAN (480p) [Not 24/7] -http://edge01eu.ekranet.com/scantv/index.m3u8 -#EXTINF:-1 tvg-id="RTVislam.al",RTVislam (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8714/playlist.m3u8 -#EXTINF:-1 tvg-id="Shenja.al",Shenja (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8850/playlist.m3u8 -#EXTINF:-1 tvg-id="Shqiponja.al",Shqiponja (720p) [Offline] -http://ott.iptvshqipott.com:8080/live/shqiponja/tv/236.m3u8 -#EXTINF:-1 tvg-id="SofiaHD.al",Sofia HD (576p) [Not 24/7] -http://93.157.62.180/Sofia/index.m3u8 -#EXTINF:-1 tvg-id="StarHD.al",Star HD (1080p) [Geo-blocked] -http://us.bestvideostreaming.is/8781/playlist.m3u8 -#EXTINF:-1 tvg-id="SyriHD.al",Syri HD (720p) [Not 24/7] -http://93.157.62.180/SyriTV/index.m3u8 -#EXTINF:-1 tvg-id="SyriTV.al",Syri TV (720p) [Not 24/7] -http://live.syri.tv:6969/live/syriblue/hd/23.ts -#EXTINF:-1 tvg-id="SyriTV.al",Syri TV (720p) [Not 24/7] -rtmp://live.syri.tv:8001/input/bluehd -#EXTINF:-1 tvg-id="TipTV.al",Tip TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8776/playlist.m3u8 -#EXTINF:-1 tvg-id="TopChannel.al",Top Channel (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8708/playlist.m3u8 -#EXTINF:-1 tvg-id="TopNews.al",Top News (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x6inuzo -#EXTINF:-1 tvg-id="Tring3.al",Tring 3 (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8773/playlist.m3u8 -#EXTINF:-1 tvg-id="TringActionHD.al",Tring Action HD (1080p) [Not 24/7] -http://93.157.62.180/TringAction/index.m3u8 -#EXTINF:-1 tvg-id="TringComedy.al",Tring Comedy (1080p) [Geo-blocked] -http://93.157.62.180/TringComedy/index.m3u8 -#EXTINF:-1 tvg-id="TringFantasy.al",Tring Fantasy (576p) [Geo-blocked] -http://93.157.62.180/TringFantasy/index.m3u8 -#EXTINF:-1 tvg-id="TringHistory.al",Tring History (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8765/playlist.m3u8 -#EXTINF:-1 tvg-id="TringJollyHD.al",Tring Jolly HD (1080p) [Not 24/7] -http://93.157.62.180/JollyHD/index.m3u8 -#EXTINF:-1 tvg-id="TringKids.al",Tring Kids (576p) [Not 24/7] -http://93.157.62.180/TringKids/index.m3u8 -#EXTINF:-1 tvg-id="TringLife.al",Tring Life (1080p) -http://93.157.62.180/TringLife/index.m3u8 -#EXTINF:-1 tvg-id="TringPlanet.al",Tring Planet (576p) -http://93.157.62.180/TringPlanet/index.m3u8 -#EXTINF:-1 tvg-id="TringShqip.al",Tring Shqip (576p) [Not 24/7] -http://93.157.62.180/TringShqip/index.m3u8 -#EXTINF:-1 tvg-id="TringSmile.al",Tring Smile (576p) -http://93.157.62.180/TringSmile/index.m3u8 -#EXTINF:-1 tvg-id="TringSuperHD.al",Tring Super HD (480p) -http://93.157.62.180/TringSuper/index.m3u8 -#EXTINF:-1 tvg-id="TringTring.al",Tring Tring (576p) [Not 24/7] -http://93.157.62.180/TringTring/index.m3u8 -#EXTINF:-1 tvg-id="TringWorld.al",Tring World (576p) -http://93.157.62.180/TringWorld/index.m3u8 -#EXTINF:-1 tvg-id="TurboTV.al",Turbo TV (576p) [Geo-blocked] -http://us.bestvideostreaming.is/8839/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Albania.al",TV 7 Albania (540p) [Not 24/7] -http://media.az-mediaserver.com:1935/7064/7064/playlist.m3u8 -#EXTINF:-1 tvg-id="TVApollon.al",TV Apollon (720p) -https://live.apollon.tv/Apollon-WEB/video.m3u8?token=tnt3u76re30d2 -#EXTINF:-1 tvg-id="TVDielli.al",TV Dielli (720p) -http://93.157.62.180/DielliTV/index.m3u8 -#EXTINF:-1 tvg-id="TVKoha.al",TV Koha (720p) [Offline] -rtmp://live.tvkoha.tv/live/koha -#EXTINF:-1 tvg-id="TVLlapi.al",TV Llapi (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8823/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOpoja.al",TV Opoja (720p) [Not 24/7] -http://ip.opoja.tv:1935/tvopoja/tvopoja/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPlisi.al",TV Plisi (720p) [Geo-blocked] -http://us.bestvideostreaming.is/8735/playlist.m3u8 -#EXTINF:-1 tvg-id="VPlus.al",V Plus (1080p) -http://93.157.62.180/VizionPlus/index.m3u8 -#EXTINF:-1 tvg-id="ZjarrTelevizion.al",Zjarr Televizion (360p) [Not 24/7] -http://edge01eu.ekranet.com/zjarrtv/index.m3u8 diff --git a/streams/am.m3u b/streams/am.m3u deleted file mode 100644 index 523fd8eb4..000000000 --- a/streams/am.m3u +++ /dev/null @@ -1,51 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="5TV.am",5-րդ ալիք (480p) -http://ott-cdn.ucom.am/s6/index.m3u8 -#EXTINF:-1 tvg-id="21TV.am",21TV (480p) -http://ott-cdn.ucom.am/s10/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaPremium.am",Armenia Premium (1080p) -http://ott-cdn.ucom.am/s83/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaHayKino.am",Armenia Հայ Կինո (480p) -http://ott-cdn.ucom.am/s22/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaJanTV.am",Armenia Ջան TV (480p) [Not 24/7] -http://ott-cdn.ucom.am/s42/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaSinemaks.am",Armenia Սինեմաքս (480p) -http://ott-cdn.ucom.am/s66/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaTownTownik.am",Armenia Տուն Թունիկ (480p) -http://ott-cdn.ucom.am/s46/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaKomedi.am",Armenia Քոմեդի (480p) -http://ott-cdn.ucom.am/s32/index.m3u8 -#EXTINF:-1 tvg-id="ATV.am",ATV (480p) -http://ott-cdn.ucom.am/s8/index.m3u8 -#EXTINF:-1 tvg-id="ATVTavaTV.am",ATV Թավա TV (480p) -http://ott-cdn.ucom.am/s53/index.m3u8 -#EXTINF:-1 tvg-id="ATVKhaghaliqTV.am",ATV ԽաղԱլիք (480p) -http://ott-cdn.ucom.am/s74/index.m3u8 -#EXTINF:-1 tvg-id="ATVKinoman.am",ATV Կինոման (480p) [Timeout] -http://ott-cdn.ucom.am/s94/index.m3u8 -#EXTINF:-1 tvg-id="ATVHayTV.am",ATV Հայ TV (480p) -http://ott-cdn.ucom.am/s73/index.m3u8 -#EXTINF:-1 tvg-id="ATVFilmzone.am",ATV Ֆիլմզոն (480p) -http://ott-cdn.ucom.am/s48/index.m3u8 -#EXTINF:-1 tvg-id="H1.am",Առաջին ալիք (1080p) -http://serv24.vintera.tv:8081/test/h1_arm/index.m3u8 -#EXTINF:-1 tvg-id="H1.am",Առաջին ալիք (1080p) -https://amtv1.livestreamingcdn.com/am2abr/index.m3u8 -#EXTINF:-1 tvg-id="ArmeniaTV.am",Արմենիա TV (1080p) -http://ott-cdn.ucom.am/s4/index.m3u8 -#EXTINF:-1 tvg-id="ArmNews.am",Արմնյուզ (1080p) -http://ott-cdn.ucom.am/s11/index.m3u8 -#EXTINF:-1 tvg-id="YerkirMediaTV.am",Երկիր Մեդիա (480p) -http://ott-cdn.ucom.am/s7/index.m3u8 -#EXTINF:-1 tvg-id="KentronTV.am",Կենտրոն (480p) -http://ott-cdn.ucom.am/s5/index.m3u8 -#EXTINF:-1 tvg-id="H2.am",Հ2 (480p) [Timeout] -http://ott-cdn.ucom.am/s2/index.m3u8 -#EXTINF:-1 tvg-id="NorHayastanTV.am",Նոր Հայաստան (480p) -http://ott-cdn.ucom.am/s12/index.m3u8 -#EXTINF:-1 tvg-id="NorHayastanTV.am",Նոր Հայաստան (720p) [Offline] -https://cdn.onarmtv.com/str/7/output.m3u8 -#EXTINF:-1 tvg-id="ShantTV.am",Շանթ (1080p) -http://ott-cdn.ucom.am/s3/index.m3u8 -#EXTINF:-1 tvg-id="ShoghakatTV.am",Շողակաթ (480p) -http://ott-cdn.ucom.am/s13/index.m3u8 diff --git a/streams/ao.m3u b/streams/ao.m3u deleted file mode 100644 index 75e0dc49a..000000000 --- a/streams/ao.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TPA1.ao",TPA 1 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/angola/tpa1 -#EXTINF:-1 tvg-id="TVZimbo.ao",TV Zimbo (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/angola/tv-zimbo diff --git a/streams/ar.m3u b/streams/ar.m3u deleted file mode 100644 index 9570dfcec..000000000 --- a/streams/ar.m3u +++ /dev/null @@ -1,171 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",5RTv (720p) [Not 24/7] -https://api.new.livestream.com/accounts/22636012/events/8242619/live.m3u8 -#EXTINF:-1 tvg-id="5TV.ar",5TV (Corrientes) (480p) [Not 24/7] -http://www.coninfo.net:1935/tvcinco/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p) -https://59c5c86e10038.streamlock.net/6605140/6605140/playlist.m3u8 -#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p) -https://panel.dattalive.com/6605140/6605140/playlist.m3u8 -#EXTINF:-1 tvg-id="A24.ar",A24 (720p) -https://g1.vxral-hor.transport.edge-access.net/a15/ngrp:a24-100056_all/a24-100056.m3u8 -#EXTINF:-1 tvg-id="AmericaSports.ar",América Sports (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnx743KuO_16sCMIbEg7Y7Q/live -#EXTINF:-1 tvg-id="AmericaTV.ar",América TV (720p) -https://raw.githubusercontent.com/MachineSystems/archived_m3u8/main/america_hls.m3u8 -#EXTINF:-1 tvg-id="ArgentinisimaSatelital.ar",Argentinísima Satelital (720p) -http://186.0.233.76:1935/Argentinisima/smil:argentinisima.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2Jujuy.ar",Canal 2 Jujuy (720p) [Not 24/7] -http://api.new.livestream.com/accounts/679322/events/3782013/live.m3u8 -#EXTINF:-1 tvg-id="Canal3Pinamar.ar",Canal 3 Pinamar (360p) [Not 24/7] -http://www.intelintec.com.ar:9090/hls/canal3pinamar.m3u8 -#EXTINF:-1 tvg-id="Canal3Rosario.ar",Canal 3 Rosario (704p) [Geo-blocked] -https://59d52c5a5ce5e.streamlock.net:4443/canal3rosario/ngrp:canal3rosario_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4.ar",Canal 4 (Posadas) (360p) [Geo-blocked] -http://184.154.28.210:1935/canal4/canal4/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Balcarce.ar",Canal 4 Balcarce (480p) [Not 24/7] -http://inliveserver.com:1935/8550/8550/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Jujuy.ar",Canal 4 Jujuy (720p) -http://190.52.32.13:1935/canal4/smil:manifest.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Jujuy.ar",Canal 4 Jujuy (720p) -https://5cd577a3dd8ec.streamlock.net/canal4/smil:manifest.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Posadas.ar",Canal 4 Posadas (360p) [Geo-blocked] -http://184.154.28.210:1935/canal4/canal4/live.m3u8 -#EXTINF:-1 tvg-id="C5N.ar",Canal 5 Noticias (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/c5n/live -#EXTINF:-1 tvg-id="Canal7SALTA.ar",Canal 7 SALTA (404p) [Geo-blocked] -https://589ff3c36f7e8.streamlock.net/crespo3/crespo3/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9ComodoroRivadavia.ar",Canal 9 (Comodoro Rivadavia) (576p) [Not 24/7] -https://live.canalnueve.tv/canal.m3u8 -#EXTINF:-1 tvg-id="Canal9Televida.ar",Canal 9 Televida (720p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/viviloendirecto2/canal9/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10MardelPlata.ar",Canal 10 Mar del Plata (720p) [Not 24/7] -https://cdn2.zencast.tv:30443/live/canal10smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10RioNegro.ar",Canal 10 Rio Negro (720p) [Not 24/7] -http://panel.dattalive.com:1935/8204/8204/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11LaRioja.ar",Canal 11 La Rioja (Fénix Multiplataforma) (360p) -http://stmv4.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12PuertoMadryn.ar",Canal 12 Puerto Madryn (720p) [Not 24/7] -https://5f700d5b2c46f.streamlock.net/madryntv/madryntv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13LaRioja.ar",Canal 13 La Rioja (480p) -http://arcast.net:1935/mp/mp/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (360p) -http://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) -http://200.115.193.177/live/26hd-720/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) -http://live-edge02.telecentro.net.ar/live/c26.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalC.ar",Canal C (Córdoba | Provincia de Córdoba) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canalccordoba -#EXTINF:-1 tvg-id="CanaldelaCiudad.ar",Canal de la Ciudad (720p) [Offline] -https://g5.proy-hor.transport.edge-access.net/a08/ngrp:gcba_video4-100042_all/Playlist.m3u8?sense=true -#EXTINF:-1 tvg-id="CanalLuz.ar",Canal Luz (1080p) -https://g2.vxral-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8 -#EXTINF:-1 tvg-id="CanalMilenium.ar",Canal Milenium [Offline] -https://panel.tuvideostreaming.com:19360/8002/8002.m3u8 -#EXTINF:-1 tvg-id="CanalProvincial.ar",Canal Provincial (San Miguel) (360p) [Not 24/7] -http://www.trimi.com.ar/provincial/streaming/mystream.m3u8 -#EXTINF:-1 tvg-id="CANALTDC.ar",CANAL TDC (1080p) [Not 24/7] -https://5e7cdf2370883.streamlock.net/tdconline/tdconline/playlist.m3u8 -#EXTINF:-1 tvg-id="CANAL9MULTIVISION.ar",CANAL.9 MULTIVISION (720p) [Not 24/7] -https://panel.dattalive.com/8250/8250/playlist.m3u8 -#EXTINF:-1 tvg-id="",canalLUZ (1080p) [Not 24/7] -https://g1.mc-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8?sense=true -#EXTINF:-1 tvg-id="CatacamaTV.ar",Catacama TV (1080p) -https://5f700d5b2c46f.streamlock.net/catamarcatelevision/catamarcatelevision/playlist.m3u8 -#EXTINF:-1 tvg-id="ChacoTV.ar",Chaco TV (720p) [Not 24/7] -https://5b7ecefab6325.streamlock.net/Streamtv/chacotv/playlist.m3u8 -#EXTINF:-1 tvg-id="ChacraTV.ar",Chacra TV (480p) [Not 24/7] -https://s8.stweb.tv/chacra/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CincoTV.ar",Cinco TV (480p) [Not 24/7] -https://59537faa0729a.streamlock.net/cincotv/cincotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",CINE.AR (720p) [Not 24/7] -https://5fb24b460df87.streamlock.net/live-cont.ar/cinear/playlist.m3u8 -#EXTINF:-1 tvg-id="CiudadTVResistencia.ar",Ciudad TV Resistencia (Chaco) (720p) [Not 24/7] -http://coninfo.net:1935/chacodxdtv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CN3Pinamar.ar",CN3 Pinamar (720p) [Not 24/7] -https://wowza.telpin.com.ar:1935/canal3/canal3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CPEtv.ar",CPEtv (720p) [Offline] -https://dcunilive28-lh.akamaihd.net/i/dclive_1@533583/master.m3u8 -#EXTINF:-1 tvg-id="CrossingTVCrossingContenidos.ar",Crossing TV (Crossing Contenidos) (720p) [Not 24/7] -https://vivo.solumedia.com:19360/crossing/crossing.m3u8 -#EXTINF:-1 tvg-id="DeporTV.ar",DeporTV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSmh3DFxBwFurMttT60PQ1g/live -#EXTINF:-1 tvg-id="ElDoceTV.ar",El Doce TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?feature=emb_title&streaming-ip=https://www.youtube.com/watch?v=gBbMbqILzXU -#EXTINF:-1 tvg-id="ElGarageTV.ar",El Garage TV (480p) [Not 24/7] -http://186.0.233.76:1935/Garage/smil:garage.smil/master.m3u8 -#EXTINF:-1 tvg-id="ElOnce.ar",ElOnce (1080p) [Not 24/7] -https://elonceovh.elonce.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="Encuentro.ar",Encuentro (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC1zLDoKL-eKmd_K7qkUZ-ow/live -#EXTINF:-1 tvg-id="FenixTV.ar",Fenix TV (Ciudad de La Rioja) (360p) -https://stmv1.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 -#EXTINF:-1 tvg-id="GenTV.ar",GenTV (720p) [Not 24/7] -https://videohd.live:19360/8010/8010.m3u8 -#EXTINF:-1 tvg-id="",Informacion Periodística (1080p) -https://d1nmqgphjn0y4.cloudfront.net/live/ip/live.isml/5ee6e167-1167-4a85-9d8d-e08a3f55cff3.m3u8 -#EXTINF:-1 tvg-id="LaVozDeTucuman.ar",La Voz de Tucuman (480p) -https://srv1.zcast.com.br/lavozdetucuman/lavozdetucuman/playlist.m3u8 -#EXTINF:-1 tvg-id="LivePeruTVStreaming.ar",Live Perú TV Streaming (720p) [Not 24/7] -http://209.126.108.55/app/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MagicKids.ar",Magic Kids (720p) [Not 24/7] -https://live.admefy.com/live/default/rival_maroon_4fb1e.m3u8 -#EXTINF:-1 tvg-id="MediosRioja.ar",Medios Rioja (864p) [Not 24/7] -http://streamyes.alsolnet.com/mediosrioja/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MultivisionFederal.ar",Multivisión Federal (720p) [Not 24/7] -http://panel.dattalive.com:1935/8250/8250/playlist.m3u8 -#EXTINF:-1 tvg-id="MusicTop.ar",MusicTop (720p) -http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar",Net TV (720p) -https://unlimited6-cl.dps.live/nettv/nettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar",Net TV (720p) [Not 24/7] -https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Pakapaka.ar",Pakapaka (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCVVNYxncuD4EfHpKDlPIYcQ/live -#EXTINF:-1 tvg-id="PlanetaMultimedios.ar",Planeta Multimedios (720p) [Not 24/7] -https://videostream.shockmedia.com.ar:19360/planetamultimedia/planetamultimedia.m3u8 -#EXTINF:-1 tvg-id="PowerTV.ar",Power TV (720p) [Not 24/7] -https://wowza.telpin.com.ar:1935/live-powerTV/power.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QuatroTV.ar",Quatro TV (540p) [Not 24/7] -https://59d52c5a5ce5e.streamlock.net:4443/quatro/quatro/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVNeuquen.ar",Radio TV Neuquen (720p) [Not 24/7] -http://media.neuquen.gov.ar/rtn/television/playlist.m3u8 -#EXTINF:-1 tvg-id="RTN.ar",RTN (Neuquén) (720p) [Not 24/7] -http://media.neuquen.gov.ar/rtn/television/media.m3u8 -#EXTINF:-1 tvg-id="SantaMariaTV.ar",Santa María TV (360p) [Not 24/7] -http://www.trimi.com.ar/santa_maria/streaming/mystream.m3u8 -#EXTINF:-1 tvg-id="T5Satelital.ar",T5 Satelital (540p) [Not 24/7] -https://api.new.livestream.com/accounts/20819504/events/8664197/live.m3u8 -#EXTINF:-1 tvg-id="Telefe.ar",Telefe (480p) [Not 24/7] -http://170.83.242.153:8000/play/a00b -#EXTINF:-1 tvg-id="TelefeRosario.ar",Telefe Rosario (720p) [Not 24/7] -http://telefewhitehls-lh.akamaihd.net/i/whitelist_hls@302302/master.m3u8 -#EXTINF:-1 tvg-id="TeleJunin.ar",TeleJunín (576p) [Not 24/7] -https://videostream.shockmedia.com.ar:1936/telejunin/telejunin/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemax.ar",Telemax (720p) -http://live-edge01.telecentro.net.ar/live/smil:tlx.smil/master.m3u8 -#EXTINF:-1 tvg-id="TelenordCorrientes.ar",Telenord Corrientes (1080p) [Not 24/7] -http://www.coninfo.net:1935/previsoratv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TelesolTLS.ar",Telesol (TLS) (432p) [Not 24/7] -https://cnnsanjuan.com:9999/live/telesol/playlist.m3u8 -#EXTINF:-1 tvg-id="TelpinCanal2.ar",Telpin Canal 2 (360p) [Not 24/7] -https://wowza.telpin.com.ar:1935/telpintv/smil:ttv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelpinTV.ar",Telpin TV (1080p) [Not 24/7] -https://wowza.telpin.com.ar:1935/telpintv/ttv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tierra Mía TV (720p) -http://live-edge01.telecentro.net.ar/live/smil:trm.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Toonizaki.ar",Toonizaki (720p) [Not 24/7] -https://live.admefy.com/live/default/great_salmon_9bd9d.m3u8 -#EXTINF:-1 tvg-id="TVManaArgentina.ar",TV Maná Argentina (576p) [Not 24/7] -http://streamspub.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPublica.ar",TV Pública (TVP) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/TVPublicaArgentina/live -#EXTINF:-1 tvg-id="TVUniversidad.ar",TVU Universidad Nacional de La Plata (720p) [Not 24/7] -https://stratus.stream.cespi.unlp.edu.ar/hls/tvunlp.m3u8 -#EXTINF:-1 tvg-id="Venus.ar",Venus (480p) [Offline] -http://170.83.242.153:8000/play/a00z -#EXTINF:-1 tvg-id="VTV.ar",VerTV (VTV) (720p) [Not 24/7] -https://5f700d5b2c46f.streamlock.net/vertv/vertv/playlist.m3u8 -#EXTINF:-1 tvg-id="Vorterix.ar",Vorterix (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvCTWHCbBC0b9UIeLeNs8ug/live diff --git a/streams/at.m3u b/streams/at.m3u deleted file mode 100644 index f43b3b121..000000000 --- a/streams/at.m3u +++ /dev/null @@ -1,61 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Antenne Vorarlberg (720p) [Not 24/7] -https://5857db5306b83.streamlock.net/antennevorarlberg-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="DorfTV.at",Dorf TV (576p) -https://stream.openplayout.org/hls/dorftv/live.m3u8 -#EXTINF:-1 tvg-id="FS1Salzburg.at",FS1 Salzburg (720p) [Not 24/7] -http://stream.fs1.tv:8080/hls/webstream.m3u8 -#EXTINF:-1 tvg-id="FS1Salzburg.at",FS1 Salzburg (720p) [Not 24/7] -https://stream.fs1.tv/hls/webstream.m3u8 -#EXTINF:-1 tvg-id="GoTV.at",GoTV (576p) [Timeout] -https://nstream17.gotv.at:1443/live/gotvlive/manifest.mpd -#EXTINF:-1 tvg-id="HitradioO3.at",Hitradio Ö3 (360p) [Offline] -http://185.85.28.19/oe3sd/orf.sdp/master.m3u8 -#EXTINF:-1 tvg-id="HitradioO3.at",Hitradio Ö3 (720p) [Not 24/7] -https://studiocam-oe3.mdn.ors.at/out/u/studiocam_oe3/q6a/manifest_1.m3u8 -#EXTINF:-1 tvg-id="KTV.at",K-TV (720p) -https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 -#EXTINF:-1 tvg-id="KroneTV.at",Krone.TV (360p) -https://kronetv.mdn.ors.at/out/u/kronetv-nodrm.m3u8 -#EXTINF:-1 tvg-id="Kronehit.at",Kronehit (1080p) -https://bitcdn-kronehit.bitmovin.com/v2/hls/playlist.m3u8 -#EXTINF:-1 tvg-id="M4.at",M4 (1090p) [Not 24/7] -https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",oe24 TV (1080p) -https://varoe24live.sf.apa.at/oe24-live1/oe24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OktoEight.at",Okto Eight (720p) [Offline] -https://d38d1dtxhym0zi.cloudfront.net/LiveHTTPOrigin/okto/playlist.m3u8 -#EXTINF:-1 tvg-id="OktoTV.at",Okto TV [Offline] -https://d2i6psfxyapxwi.cloudfront.net/out/v1/f0cc8e3aceb64ad8968231dc5a0041d4/index.m3u8 -#EXTINF:-1 tvg-id="ORF1.at",ORF 1 (720p) [Geo-blocked] -https://orf1.mdn.ors.at/out/u/orf1/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORF2.at",ORF 2 (540p) [Geo-blocked] -https://orf2.mdn.ors.at/out/u/orf2/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORF3.at",ORF 3 (540p) [Geo-blocked] -https://orf3.mdn.ors.at/out/u/orf3/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="ORFSportPlus.at",ORF Sport+ (540p) [Geo-blocked] -https://orfs.mdn.ors.at/out/u/orfs/qxb/manifest.m3u8 -#EXTINF:-1 tvg-id="P3tv.at",P3tv (720p) [Not 24/7] -http://p3-6.mov.at:1935/live/weekstream/master.m3u8 -#EXTINF:-1 tvg-id="PremiumChannel.at",Premium Channel [Not 24/7] -http://premium-channel.tv:88/live/kali.m3u8 -#EXTINF:-1 tvg-id="R9.at",R9 (720p) [Not 24/7] -https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RedBullTV.at",Red Bull TV (1080p) -https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8 -#EXTINF:-1 tvg-id="RTV.at",RTV (1080p) -http://iptv.rtv-ooe.at/stream.m3u8 -#EXTINF:-1 tvg-id="SchauTV.at",SchauTV (720p) -https://schautv.mdn.ors.at/out/u/schautv-nodrm.m3u8 -#EXTINF:-1 tvg-id="SwamijiTV.at",Swamiji TV (720p) [Not 24/7] -https://stream.swamiji.tv/YogaIPTV/smil:YogaStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TeinsTV.at",Teins TV (1080p) [Not 24/7] -https://live1.markenfunk.com/t1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TirolTV.at",Tirol TV (720p) [Not 24/7] -https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8 -#EXTINF:-1 tvg-id="UpperaBalkan.at",Uppera Balkan (720p) [Geo-blocked] -http://89.187.168.245:8080/live/sUPPERchannel2/index.m3u8 -#EXTINF:-1 tvg-id="UPPERACommunityTV.at",UPPERA Community TV [Geo-blocked] -http://89.187.168.245:8080/live/sUPPERchannel/index.m3u8 -#EXTINF:-1 tvg-id="W24.at",W24 (720p) [Not 24/7] -https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8 diff --git a/streams/at_samsung.m3u b/streams/at_samsung.m3u deleted file mode 100644 index 4a09564eb..000000000 --- a/streams/at_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RakutenTVActionMoviesAustria.es",Rakuten TV Action Movies Austria (720p) [Offline] -https://rakuten-actionmovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesAustria.es",Rakuten TV Comedy Movies Austria (720p) [Offline] -https://rakuten-comedymovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaAustria.es",Rakuten TV Drama Austria (720p) [Offline] -https://rakuten-tvshows-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyAustria.es",Rakuten TV Family Austria (720p) [Offline] -https://rakuten-family-5-at.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightAustria.es",Rakuten TV Spotlight Austria (720p) [Offline] -https://rakuten-spotlight-5-at.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/au.m3u b/streams/au.m3u deleted file mode 100644 index 7f572c81d..000000000 --- a/streams/au.m3u +++ /dev/null @@ -1,119 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3AW.au",3AW (Melbourne) (574p) [Not 24/7] -http://melb3awvid-lh.akamaihd.net/i/melbournevid_1@109381/master.m3u8 -#EXTINF:-1 tvg-id="7flix.au",7flix [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020525.m3u8 -#EXTINF:-1 tvg-id="7mate.au",7mate [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020523.m3u8 -#EXTINF:-1 tvg-id="",7two [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020522.m3u8 -#EXTINF:-1 tvg-id="",9Gem [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200427.m3u8 -#EXTINF:-1 tvg-id="9Go.au",9Go! [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200428.m3u8 -#EXTINF:-1 tvg-id="9Life.au",9Life [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200424.m3u8 -#EXTINF:-1 tvg-id="9Rush.au",9Rush [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200429.m3u8 -#EXTINF:-1 tvg-id="",10 (720p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020625.m3u8 -#EXTINF:-1 tvg-id="10Bold.au",10 Bold (540p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020627.m3u8 -#EXTINF:-1 tvg-id="10Peach.au",10 Peach (540p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020628.m3u8 -#EXTINF:-1 tvg-id="10Shake.au",10 Shake [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101406020623.m3u8 -#EXTINF:-1 tvg-id="ABCKids.au",ABC Kids (720p) [Not 24/7] -https://c.mjh.nz/101002210222 -#EXTINF:-1 tvg-id="",ABC ME (720p) -https://c.mjh.nz/101002210224 -#EXTINF:-1 tvg-id="ABCNews.au",ABC News (720p) -https://abc-iview-mediapackagestreams-2.akamaized.net/out/v1/6e1cc6d25ec0480ea099a5399d73bc4b/index.m3u8 -#EXTINF:-1 tvg-id="ABCNews.au",ABC News (720p) [Geo-blocked] -https://c.mjh.nz/101002210220 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/3201026102E1 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/101002210221 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/101002310231 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/101002510251 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/101002710271 -#EXTINF:-1 tvg-id="ABCTV.au",ABC TV (720p) -https://c.mjh.nz/101002810281 -#EXTINF:-1 tvg-id="ABCTVPlus.au",ABC TV Plus (720p) -https://c.mjh.nz/abc2 -#EXTINF:-1 tvg-id="ACCTV.au",ACCTV (Adelaide) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/australia/acctv-adelaide -#EXTINF:-1 tvg-id="ACCTV.au",ACCTV (Melbourne) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/australia/acctv-melbourne -#EXTINF:-1 tvg-id="AflamMohtrama.au",Aflam Mohtrama (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/mim21889/live -#EXTINF:-1 tvg-id="AusTamil.au",Aus Tamil (720p) [Not 24/7] -https://bk7l2pn7dx53-hls-live.5centscdn.com/austamil/fe01ce2a7fbac8fafaed7c982a04e229.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",ausbiz TV (720p) [Geo-blocked] -https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8 -#EXTINF:-1 tvg-id="AustraliaChannel.au",Australia Channel (720p) -https://austchannel-live.akamaized.net/hls/live/2002729/austchannel-news/master.m3u8 -#EXTINF:-1 tvg-id="C31Melbourne.au",C31 Melbourne (240p) -https://d1k6kax80wecy5.cloudfront.net/RLnAKY/index.m3u8 -#EXTINF:-1 tvg-id="Channel44.au",Channel 44 (240p) -https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8 -#EXTINF:-1 tvg-id="ExpoChannel.au",Expo Channel (360p) -https://tvsn-i.akamaihd.net/hls/live/261837/expo/expo.m3u8 -#EXTINF:-1 tvg-id="JonmoBhumiTV.au",JonmoBhumi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jonmobhumitv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="M4TV.au",M4TV (1090p) -https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="M4TVMalayalam.au",M4TV Malayalam (1080p) [Not 24/7] -https://app.m4stream.live/mfourmalayalamhls/live.m3u8 -#EXTINF:-1 tvg-id="Nine.au",Nine [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101204200421.m3u8 -#EXTINF:-1 tvg-id="NITV.au",NITV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000305.m3u8 -#EXTINF:-1 tvg-id="OpenShop.au",Open Shop (720p) [Offline] -https://medialive.openshop.com.au/asn-live_1.m3u8 -#EXTINF:-1 tvg-id="OpenShop.au",Open Shop [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7openshop.m3u8 -#EXTINF:-1 tvg-id="RaceCentralTV.au",Race Central TV (720p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-racecentral/index.m3u8 -#EXTINF:-1 tvg-id="Racingcom.au",Racing.com (576p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/australia/racing -#EXTINF:-1 tvg-id="Racingcom.au",Racing.com [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020528.m3u8 -#EXTINF:-1 tvg-id="SBSFood.au",SBS Food [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000304.m3u8 -#EXTINF:-1 tvg-id="SBSTV.au",SBS TV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000301.m3u8 -#EXTINF:-1 tvg-id="SBSViceland.au",SBS Viceland [Geo-blocked] -https://dai.google.com/linear/hls/event/nPy2IRtvQTWudFfYwdBgsg/master.m3u8 -#EXTINF:-1 tvg-id="SBSViceland.au",SBS Viceland [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000303.m3u8 -#EXTINF:-1 tvg-id="SBSWorldMovies.au",SBS World Movies [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.320203000307.m3u8 -#EXTINF:-1 tvg-id="Seven.au",Seven [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.101305020520.m3u8 -#EXTINF:-1 tvg-id="SkyRacing1.au",Sky Racing 1 (270p) [Not 24/7] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky1.m3u8 -#EXTINF:-1 tvg-id="SkyRacing1.au",Sky Racing 1 (540p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky1.m3u8 -#EXTINF:-1 tvg-id="SkyRacing2.au",Sky Racing 2 (270p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky2.m3u8 -#EXTINF:-1 tvg-id="SkyRacing2.au",Sky Racing 2 (360p) [Not 24/7] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky2.m3u8 -#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au",Sky Thoroughbred Central (720p) -https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/stcsd.m3u8 -#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au",Sky Thoroughbred Central (720p) [Offline] -https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/stcsd.m3u8 -#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au",Snowy Mountains Television (1080p) [Geo-blocked] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 -#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au",Snowy Mountains Television (1080p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 -#EXTINF:-1 tvg-id="TravelFoodTV.au",Travel & Food TV (720p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-moviemagictv/index.m3u8 -#EXTINF:-1 tvg-id="TVSN.au",TVSN (360p) [Not 24/7] -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 -#EXTINF:-1 tvg-id="",澳大利亚天和电视 (720p) -http://www.rtvcdn.com.au:8082/TV0002.m3u8 diff --git a/streams/au_samsung.m3u b/streams/au_samsung.m3u deleted file mode 100644 index 30055db61..000000000 --- a/streams/au_samsung.m3u +++ /dev/null @@ -1,87 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ActionHollywoodMovies.au",Action Hollywood Movies (1080p) [Offline] -https://lightning-actionhollywood-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Aus Biz TV (720p) [Offline] -https://ausbiztv-ausbiz-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) [Offline] -https://bloomberg-quicktake-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) [Offline] -https://bloomberg-bloomberg-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BountyPlus.au",Bounty Plus (720p) [Offline] -https://bountyfilms-bounty-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.au",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] -https://dust-samsung-uk-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://euronews-euronews-world-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] -https://spi-filmstream-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) -https://fueltv-fueltv-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] -https://gustotv-samsung-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseandCountry.au",Horse and Country (720p) -https://hncfree-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) -https://introuble-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) -https://inwild-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MadeinHollywood.us",Made in Hollywood (720p) [Offline] -https://connection3-ent-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVAustralia.us",MavTV Australia (720p) [Offline] -https://mavtv-mavtvglobal-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (1080p) -https://outdoorchannel-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeAustralia.us",People are Awesome Australia (720p) [Offline] -https://jukin-peopleareawesome-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pulse.au",Pulse (1080p) [Offline] -https://lightning-pulse-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.au",Qwest TV Classical (720p) [Offline] -https://qwestclassic-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzandBeyond.au",Qwest TV Jazz and Beyond (720p) [Offline] -https://qwestjazz-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.au",Qwest TV Mix (720p) [Offline] -https://qwestmix-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealFamiliesAustralia.us",Real Families (Australia) (720p) -https://lds-realfamilies-samsunguau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.au",Real Stories (720p) -https://lds-realstories-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Rialto.nz",Rialto (1080p) -https://rialto-rialto-samsungaustralia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RyanandFriends.au",Ryan and Friends (1080p) -https://ryanandfriends-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SmithsonianChannelAsia.us",Smithsonian Channel Asia (1080p) -https://smithsonianaus-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraokeAustralia.ca",Stingray Karaoke (Australia) (1080p) -https://samsung-au.ott-channels.stingray.com/karaoke/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescapeAustralia.ca",Stingray Naturescape (Australia) (1080p) [Not 24/7] -https://samsung-au.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="TastemadeAustralia.us",Tastemade Australia (1080p) -https://tmint-aus-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveAustralia.us",The Pet Collective Australia (720p) [Offline] -https://the-pet-collective-international-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeLineAustralia.us",Time Line Australia (720p) -https://lds-timeline-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Offline] -https://toongoggles-toongoggles-3-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceSportStarsAustralia.fr",Trace Sport Stars (Australia) (1080p) -https://lightning-tracesport-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceUrbanAustralia.fr",Trace Urban (Australia) (1080p) -https://lightning-traceurban-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.au",VENN (1080p) -https://venntv-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyAustralia.us",WeatherSpy Australia (720p) [Offline] -https://jukin-weatherspy-2-au.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk",Wonder (720p) -https://lds-wonder-samsungau.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMooAustralia.nz",Zoo Moo (Australia) (1080p) -https://zoomoo-samsungau.amagi.tv/playlist.m3u8 diff --git a/streams/aw.m3u b/streams/aw.m3u deleted file mode 100644 index f27909414..000000000 --- a/streams/aw.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArubaTV.aw",Aruba.TV (720p) [Not 24/7] -https://ed1ov.live.opencaster.com/GzyysAAvEhht/index.m3u8 -#EXTINF:-1 tvg-id="NosIslaTV.aw",Nos Isla TV (720p) [Not 24/7] -https://backend-server-dot-telearuba-app.appspot.com/media/livestream23/playlist.m3u8 -#EXTINF:-1 tvg-id="Telearuba.aw",Telearuba (480p) [Not 24/7] -https://backend-server-dot-telearuba-app.appspot.com/media/livestream13/playlist.m3u8 -#EXTINF:-1 tvg-id="Telearuba.aw",Telearuba (720p) -http://cdn.setar.aw:1935/Telearuba/smil:telearuba.smil/playlist.m3u8 diff --git a/streams/az.m3u b/streams/az.m3u deleted file mode 100644 index af2e49c55..000000000 --- a/streams/az.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlvinChannelTV.az",Alvin Channel TV (360p) [Not 24/7] -http://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="ARB24.az",ARB 24 (1080p) [Not 24/7] -http://85.132.81.184:8080/arb24/live1/index.m3u8 -#EXTINF:-1 tvg-id="ARB.az",ARB (576p) [Not 24/7] -https://europe2.livetv.az/azerbaijan/arb/playlist.m3u8 -#EXTINF:-1 tvg-id="ARBGunes.az",ARB Günəş [Geo-blocked] -http://149.255.152.199/arbgunes.m3u8 -#EXTINF:-1 tvg-id="AzTV.az",Az TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/aztv_stream2/playlist.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/atv_sd_stream4/playlist.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (720p) -http://85.132.81.184:8080/atv/index.m3u8 -#EXTINF:-1 tvg-id="AzadTV.az",Azad TV (ATV) (720p) -http://85.132.81.184:8080/atvlive/atv-e1/index.m3u8 -#EXTINF:-1 tvg-id="AzadTVMinus2.az",Azad TV -2 (ATV) (720p) -http://85.132.81.184:8080/atv-2/index.m3u8 -#EXTINF:-1 tvg-id="AzadTVMinus4.az",Azad TV -4 (ATV) (720p) [Not 24/7] -http://85.132.81.184:8080/atv-4/index.m3u8 -#EXTINF:-1 tvg-id="CBC.az",CBC (720p) [Not 24/7] -http://cbctvlive.flashmediacast.com:1935/CBCTVLive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="ELTV.az",EL TV (260p) -http://85.132.53.162:1935/live/eltv/playlist.m3u8 -#EXTINF:-1 tvg-id="FTV.az",FTV (720p) [Not 24/7] -https://str2.yodacdn.net/publive/ftv/video.m3u8 -#EXTINF:-1 tvg-id="IctimaiTV.az",İctimai TV (480p) [Geo-blocked] -https://node19.connect.az:8086/ch1/ch1.med.m3u8 -#EXTINF:-1 tvg-id="IctimaiTV.az",İctimai TV (720p) [Geo-blocked] -https://node19.connect.az:8086/ch1/ch1.hi.m3u8 -#EXTINF:-1 tvg-id="IdmanTV.az",İdman TV (576p) -http://109.205.166.68/server124/idman_az/index.m3u8 -#EXTINF:-1 tvg-id="InterAz.az",İnterAz (1080p) [Not 24/7] -http://yayin.netradyom.com:1935/live/interaz/playlist.m3u8 -#EXTINF:-1 tvg-id="KepezTV.az",Kəpəz TV (540p) [Not 24/7] -http://85.132.81.184:8080/arbkepez/live/index.m3u8 -#EXTINF:-1 tvg-id="KepezTV.az",Kəpəz TV (540p) [Not 24/7] -http://streams.livetv.az/arbkepez/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MedeniyyetTV.az",Mədəniyyət TV (404p) [Not 24/7] -http://streams.livetv.az/azerbaijan/medeniyyet_stream2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuganTV.az",Muğan TV (1080p) [Not 24/7] -http://cdn10-mugantv.yayin.com.tr/mugantv/mugantv/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxcivanTV.az",Naxçıvan TV (720p) [Not 24/7] -http://streams.livetv.az/azerbaijan/nax/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxcivanTV.az",Naxçıvan TV (720p) [Offline] -http://canli.naxcivantv.az/media/20210930/index.m3u8 -#EXTINF:-1 tvg-id="QafqazTV.az",Qafqaz TV (360p) [Not 24/7] -https://europe2.livetv.az/azerbaijan/qafqaztv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Qəbələ TV (480p) [Not 24/7] -https://qebele.tv/live/stream/index.m3u8 -#EXTINF:-1 tvg-id="SpaceTV.az",Space TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/space_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="XezerTV.az",Xəzər TV (576p) [Not 24/7] -http://streams.livetv.az/azerbaijan/xazar_sd_stream_2/playlist.m3u8 diff --git a/streams/ba.m3u b/streams/ba.m3u deleted file mode 100644 index 12ac66a32..000000000 --- a/streams/ba.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="B1TV.ba",B1 TV (1080p) [Not 24/7] -http://proxy.bihnet.net:88/live/b1tv.m3u8 -#EXTINF:-1 tvg-id="BHRT.ba",BHRT (270p) [Geo-blocked] -https://bhrtstream.bhtelecom.ba/hls15/bhrtportal.m3u8 -#EXTINF:-1 tvg-id="BHRT.ba",BHRT (720p) [Geo-blocked] -https://bhrtstream.bhtelecom.ba/bhrtportal.m3u8 -#EXTINF:-1 tvg-id="BNTV.ba",BN TV (480p) -https://dns2.rtvbn.com:8080/live/index.m3u8 -#EXTINF:-1 tvg-id="Malta.ba",Malta (720p) [Not 24/7] -http://webtvstream.bhtelecom.ba/malta.m3u8 -#EXTINF:-1 tvg-id="ntvic.ba",NTV IC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ntvic -#EXTINF:-1 tvg-id="RTVBPK.ba",RTV BPK (720p) [Not 24/7] -https://webtvstream.bhtelecom.ba/gorazde_cam2.m3u8 -#EXTINF:-1 tvg-id="RTVHB.ba",RTV HB (576p) [Not 24/7] -https://prd-hometv-live-open.spectar.tv/ERO_1_083/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVZE.ba",RTV ZE (720p) [Not 24/7] -https://stream.rtvze.ba/123.m3u8 -#EXTINF:-1 tvg-id="Televizija5.ba",Televizija 5 (576p) -https://balkanmedia.dynu.net/hls/tv5web.m3u8 -#EXTINF:-1 tvg-id="tvslon.ba",TV Slon Extra (1080p) [Not 24/7] -http://31.47.0.130:8082 -#EXTINF:-1 tvg-id="tvslon.ba",TV Slon Extra (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVSLON/live -#EXTINF:-1 tvg-id="tvsloninfo.ba",TV SLON INFO (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=YHLiGONh--I -#EXTINF:-1 tvg-id="",РТРС (576p) [Geo-blocked] -https://parh.rtrs.tv/tv/live/playlist.m3u8 diff --git a/streams/bb.m3u b/streams/bb.m3u deleted file mode 100644 index 5c10cace2..000000000 --- a/streams/bb.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CBCTV8.bb",CBC TV8 (1080p) [Not 24/7] -https://1740288887.rsc.cdn77.org/1740288887/index.m3u8 diff --git a/streams/bd.m3u b/streams/bd.m3u deleted file mode 100644 index 694056e23..000000000 --- a/streams/bd.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChannelT1.bd",Channel T1 (720p) [Not 24/7] -http://irbtv.net/channelt1/1080/index.m3u8 -#EXTINF:-1 tvg-id="EkusheyTV.bd",Ekushey TV (480p) -https://ekusheyserver.com/etvlivesn.m3u8 -#EXTINF:-1 tvg-id="RTV.bd",RTV (720p) [Not 24/7] -https://stream.cstfctg.com/rtvonline/rtv2021.stream/playlist.m3u8 diff --git a/streams/bd_jagobd.m3u b/streams/bd_jagobd.m3u deleted file mode 100644 index afd287b06..000000000 --- a/streams/bd_jagobd.m3u +++ /dev/null @@ -1,53 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ATNBangla.bd",ATN Bangla (1080p) [Geo-blocked] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbd-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNBanglaUK.bd",ATN Bangla UK (576p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbanglauk-off.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNNews.bd",ATN News (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnws-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BanglaVision.bd",Bangla Vision (1080p) [Geo-blocked] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/banglav000.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BijoyTV.bd",Bijoy TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/bijoy00.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BoishakhiTV.bd",Boishakhi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/boishakhitv-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVChittagong.bd",BTV Chittagong (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvnational-ctg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVWorld.bd",BTV World (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvbd-office-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.bd",Channel 9 (720p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel9hd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel24.bd",Channel 24 (1080p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel24-sg-e8e.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelI.bd",Channel I (1080p) [Timeout] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channeli-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ColosalTV.bd",Colosal TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/colosal.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DBCNews.bd",DBC News (1080p) [Timeout] -https://live.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/dbcnews.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="GaanBangla.bd",Gaan Bangla (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/gaanbangla-8-orgd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="IndependentTV.bd",Independent TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/independent-8-org.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JamunaTV.bd",Jamuna TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jamuna-test-sample-ok.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.bd",News 24 (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/news24local.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NexusTV.bd",Nexus TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nexustv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NokshiTV.bd",Nokshi TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nakshitv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTVEurope.bd",NTV Europe (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/ntvuk00332211.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTV.bd",RTV (720p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/rtv-sg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SangshadTV.bd",Sangshad TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/songsodtv-world.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SATV.bd",SATV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/satvoff5666.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SomoyNewsTV.bd",Somoy News TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/somoyt000011226615544544.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SomoyNewsTV.bd",Somoy News TV (1080p) [Not 24/7] -https://somoy.appv.jagobd.com:444/somoy/somoyt000011226615544544.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeTelevision.us",Time Television (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/timetvusa.stream/playlist.m3u8 diff --git a/streams/be.m3u b/streams/be.m3u deleted file mode 100644 index b81fb5ef1..000000000 --- a/streams/be.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",ATV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27755193/events/8452381/live.m3u8 -#EXTINF:-1 tvg-id="BelRTL.be",Bel RTL (720p) -https://bel-lh.akamaihd.net/i/BEL_1@321282/master.m3u8 -#EXTINF:-1 tvg-id="BX1.be",BX1 (720p) [Not 24/7] -https://59959724487e3.streamlock.net/stream/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalZoom.be",Canal Zoom (720p) [Not 24/7] -http://streamer.canalc.be:1935/canalzoom/smil:SMIL-canalzoom-multi/playlist.m3u8 -#EXTINF:-1 tvg-id="CityMusicTV.be",City Music TV (720p) -https://5592f056abba8.streamlock.net/citytv/citytv/playlist.m3u8 -#EXTINF:-1 tvg-id="EbS.be",EbS Live (Europe by Satellite) (1080p) -https://euc-live.fl.freecaster.net/live/eucom/ebs.m3u8 -#EXTINF:-1 tvg-id="EbSPlus.be",EbS+ Live (Europe by Satellite) (1080p) -https://euc-live.fl.freecaster.net/live/eucom/ebsp.m3u8 -#EXTINF:-1 tvg-id="KetnetJunior.be",Ketnet Junior (720p) -https://content.uplynk.com/channel/e11a05356cc44198977436418ad71832.m3u8 -#EXTINF:-1 tvg-id="LN24.be",LN24 (1080p) -https://live.cdn.ln24.be/out/v1/b191621c8b9a436cad37bb36a82d2e1c/index.m3u8 -#EXTINF:-1 tvg-id="MaTele.be",MaTele (1080p) [Not 24/7] -https://live.matele.be/hls/live.m3u8 -#EXTINF:-1 tvg-id="MNM.be",MNM (720p) -https://live-vrt.akamaized.net/groupa/live/bac277a1-306d-44a0-8e2e-e5b9c07fa270/live.isml/.m3u8 -#EXTINF:-1 tvg-id="Notele.be",Notele (576p) [Not 24/7] -https://streaming01.divercom.be/notele_live/_definst_/direct.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="QMusic.be",Q-Music (1080p) -https://dpp-streamlive-plain.medialaancdn.be/qmusic/plain/hls.m3u8 -#EXTINF:-1 tvg-id="RadioContact.be",Radio Contact (720p) -https://contact-lh.akamaihd.net/i/CONTACT_1@321283/master.m3u8 -#EXTINF:-1 tvg-id="RadioPROS.be",Radio PROS (720p) [Not 24/7] -http://highvolume04.streampartner.nl/radiopros/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPROS.be",Radio PROS (720p) [Not 24/7] -https://558bd16067b67.streamlock.net/radiopros/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",ROB TV (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/27755193/events/8462344/live.m3u8 -#EXTINF:-1 tvg-id="",RTL-TVi (720p) -https://rtltvi-lh.akamaihd.net/i/TVI_1@319659/master.m3u8 -#EXTINF:-1 tvg-id="",TV Oost (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/27755193/events/8511193/live.m3u8 -#EXTINF:-1 tvg-id="TVL.be",TVL (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/27755193/events/8452383/live.m3u8 -#EXTINF:-1 tvg-id="",TVO (576p) -https://media.mediahuisvideo.be/hls/account=tqIhfOEY3U0A/item=oIFtpshSvwcy/oIFtpshSvwcy.m3u8 diff --git a/streams/be_samsung.m3u b/streams/be_samsung.m3u deleted file mode 100644 index 22c784941..000000000 --- a/streams/be_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews Français (720p) -https://rakuten-africanews-2-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-be.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] -https://rakuten-euronews-2-be.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/bf.m3u b/streams/bf.m3u deleted file mode 100644 index e4595b432..000000000 --- a/streams/bf.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3TV.bf",3TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/3tvbf -#EXTINF:-1 tvg-id="FasoTV.bf",Faso TV (480p) [Not 24/7] -https://playtv4kpro.com:5443/LiveApp/streams/163893638025530331068059.m3u8 -#EXTINF:-1 tvg-id="ImpactTV.bf",Impact TV (360p) -https://edge.vedge.infomaniak.com/livecast/ik:impacttv_1/manifest.m3u8 -#EXTINF:-1 tvg-id="RTB.bf",RTB (360p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:rtbtvlive1/manifest.m3u8 diff --git a/streams/bg.m3u b/streams/bg.m3u deleted file mode 100644 index 24ce9097c..000000000 --- a/streams/bg.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="100AutoMotoTV.bg",100% Auto Moto TV (406p) [Not 24/7] -http://100automoto.tv:1935/bgtv1/autotv/playlist.m3u8 -#EXTINF:-1 tvg-id="BalkanikaTV.bg",Balkanika TV (270p) [Offline] -rtsp://stream.teracomm.bg/balkanika -#EXTINF:-1 tvg-id="BGMusic.bg",BG Music [Offline] -https://cdn1.mobiletv.bg/T10/bgmusic/bgmusic_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BNMusic.bg",BN Music [Offline] -https://cdn1.mobiletv.bg/T5/bn_music/bn_music_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BoxTV.bg",Box TV [Offline] -https://cdn1.mobiletv.bg/T5/box_tv/box_tv_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BTK.bg",BTK (576p) [Not 24/7] -http://hls.cdn.bg:2007/fls/vtv/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVCinema.bg",BTV Cinema [Offline] -https://cdn1.mobiletv.bg/T8/btv_cinema/btv_c_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BTVComedy.bg",BTV Comedy [Offline] -https://cdn1.mobiletv.bg/T5/btvcomedy/btvcomedy_794613_850k.m3u8 -#EXTINF:-1 tvg-id="BulgariaOnAir.bg",Bulgaria On Air (576p) -http://edge1.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bulgaria On Air (576p) -http://hls.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bulgaria On Air (576p) -http://ios.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" status="online",Bulgaria On Air (576p) -http://edge15.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CityTV.bg",City TV (576p) [Not 24/7] -https://tv.city.bg/play/tshls/citytv/index.m3u8 -#EXTINF:-1 tvg-id="Diema.bg",Diema [Offline] -https://cdn1.mobiletv.bg/T13/diema/diema_794613_850k.m3u8 -#EXTINF:-1 tvg-id="DMSAT.bg",DM SAT [Offline] -https://cdn1.mobiletv.bg/T5/dm_sat/dm_sat_794613_850k.m3u8 -#EXTINF:-1 tvg-id="DSTV.bg",DSTV (614p) -http://46.249.95.140:8081/hls/data.m3u8 -#EXTINF:-1 tvg-id="",Ekids [Offline] -https://cdn1.mobiletv.bg/T8/ekids/ekids_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Evrokom.bg",Evrokom (360p) -https://live.ecomservice.bg/hls/stream.m3u8 -#EXTINF:-1 tvg-id="FishingHuntingChannel.bg",Fishing & Hunting Channel [Offline] -https://cdn1.mobiletv.bg/T5/fh/fh_794613_850k.m3u8 -#EXTINF:-1 tvg-id="HomeOneTV.bg",HomeOne TV (1080p) [Timeout] -https://streamer104.neterra.tv/n1tv/n1tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LightChannel.bg",Light Channel (480p) [Not 24/7] -https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8 -#EXTINF:-1 tvg-id="MMTV.bg",MM TV (480p) [Offline] -https://streamer103.neterra.tv/mmtv/mmtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Nostalgia.bg",Nostalgia [Offline] -https://cdn1.mobiletv.bg/T10/kanal4/kanal4_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Sportal.bg",Sportal.bg [Geo-blocked] -https://e113-ts.cdn.bg/sportal/fls/sportal_fullhd/chunklist.m3u8?at=c92098d9ab33bf471967c6b6195361e3 -#EXTINF:-1 tvg-id="ThisisBulgaria.bg",This is Bulgaria (1080p) [Offline] -https://streamer103.neterra.tv/thisisbulgaria/community.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPlus.bg",TV+ [Timeout] -http://141.136.14.18/kanal1/kanal1.m3u8 -#EXTINF:-1 tvg-id="WnessTV.bg",Wness TV (720p) [Offline] -https://wness103.neterra.tv/wness/wness.smil/playlist.m3u8 diff --git a/streams/bh.m3u b/streams/bh.m3u deleted file mode 100644 index 45be6252b..000000000 --- a/streams/bh.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BahrainInternational.bh",Bahrain International (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+International_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainLawal.bh",Bahrain Lawal (410p) -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Lawal_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainQuran.bh",Bahrain Quran (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Quran_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports1.bh",Bahrain Sports 1 (720p) [Not 24/7] -http://185.105.4.106:1935/live/Bahrain+Sports/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports1.bh",Bahrain Sports 1 (720p) [Not 24/7] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainSports2.bh",Bahrain Sports 2 (720p) [Offline] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports+2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainTV.bh",Bahrain TV (720p) [Not 24/7] -http://185.105.4.106:1935/live/Bahrain+TV/playlist.m3u8 -#EXTINF:-1 tvg-id="BahrainTV.bh",Bahrain TV (720p) [Not 24/7] -https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+TV_all/playlist.m3u8 diff --git a/streams/bj.m3u b/streams/bj.m3u deleted file mode 100644 index 17675a658..000000000 --- a/streams/bj.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BB24.bj",BB24 (360p) [Not 24/7] -https://edge9.vedge.infomaniak.com/livecast/ik:bb24/manifest.m3u8 -#EXTINF:-1 tvg-id="",Etélé (360p) [Not 24/7] -https://livetvsteam.com:1936/etelebenin/etelebenin/playlist.m3u8 -#EXTINF:-1 tvg-id="GolfeTVAfrica.bj",Golfe TV Africa (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC98EZ3PHQNrqV-B-CtwAHMA/live -#EXTINF:-1 tvg-id="KultuTV.bj",Kultu TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82zdni -#EXTINF:-1 tvg-id="ortb.bj",ORTB (1080p) [Offline] -https://edge3.vedge.infomaniak.com/livecast/ik:ortb/manifest.m3u8 diff --git a/streams/bn.m3u b/streams/bn.m3u deleted file mode 100644 index 4906c194d..000000000 --- a/streams/bn.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RTBGo.bn",RTB Go (720p) [Offline] -https://d19j8udk9agj55.cloudfront.net/smil:rtbgo/playlist.m3u8 -#EXTINF:-1 tvg-id="RTBSukmaindera.bn",RTB Sukmaindera (720p) [Offline] -https://d19j8udk9agj55.cloudfront.net/smil:rtb1/playlist.m3u8 diff --git a/streams/bo.m3u b/streams/bo.m3u deleted file mode 100644 index b2d250590..000000000 --- a/streams/bo.m3u +++ /dev/null @@ -1,51 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlegriaTV.bo",Alegria TV (720p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 -#EXTINF:-1 tvg-id="ATB.bo",ATB (360p) [Not 24/7] -https://mediacp.hostradios.com.ar:19360/atbcochabamba/atbcochabamba.m3u8 -#EXTINF:-1 tvg-id="ATB.bo",ATB (614p) [Not 24/7] -http://186.121.206.197/live/daniel/index.m3u8 -#EXTINF:-1 tvg-id="BoPlusLive.bo",Bo Plus Live (1080p) [Offline] -https://mediastreamm.com:3342/live/boplustvlive.m3u8 -#EXTINF:-1 tvg-id="BoliviaRadioTV.bo",Bolivia Radio TV (720p) [Not 24/7] -https://play.amelbasoluciones.co:3546/live/boliviaradiotvlive.m3u8 -#EXTINF:-1 tvg-id="BoliviaTV72.bo",Bolivia TV 7.2 (480p) -https://video1.getstreamhosting.com:1936/8224/8224/playlist.m3u8 -#EXTINF:-1 tvg-id="BoliviaTV.bo",Bolivia TV (720p) [Not 24/7] -http://boliviatv1.srfms.com:5735/live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CVC.bo",Canal Vírgen de Copacabana (CVC) (818p) [Timeout] -https://cp.sradiotv.com:1936/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="CTV.bo",CTV Canal 38 Digital (Viacha) (480p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8026/index.m3u8 -#EXTINF:-1 tvg-id="DTVPlay.bo",DTV Play (Deporte Total) (720p) [Not 24/7] -https://tv.portalexpress.es:3044/live/dtplaylive.m3u8 -#EXTINF:-1 tvg-id="MegaTV.bo",MegaTV (720p) [Not 24/7] -https://solo.disfrutaenlared.com:1936/tvcbba/tvcbba/playlist.m3u8 -#EXTINF:-1 tvg-id="MegaTVYacuiba.bo",MegaTV (Yacuiba) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/mega/mega/playlist.m3u8 -#EXTINF:-1 tvg-id="PAT.bo",PAT (720p) [Offline] -http://live.cdn.comteco.com.bo/comgo/0215/index.m3u8 -#EXTINF:-1 tvg-id="RedAdvenir.bo",Red Advenir (360p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/GMIredadvenirm/playlist.m3u8 -#EXTINF:-1 tvg-id="RedPatBolivia.bo",Red Pat Bolivia [Offline] -https://5975e06a1f292.streamlock.net:4443/patbolivia/patlapaz/master.m3u8 -#EXTINF:-1 tvg-id="RedUno.bo",Red Uno (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp -#EXTINF:-1 tvg-id="RedUno.bo",Red Uno (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp -#EXTINF:-1 tvg-id="RenuevaDigital.bo",Renueva Digital (720p) -https://inliveserver.com:1936/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP.bo",RTP (720p) [Not 24/7] -http://136.243.3.70:1935/RtpBolivia/RtpBolivia/playlist.m3u8 -#EXTINF:-1 tvg-id="SEOTV.bo",SEO TV (720p) [Not 24/7] -https://panel.seo.tv.bo:3645/live/franzleonel0live.m3u8 -#EXTINF:-1 tvg-id="SEOTVKids.bo",SEO TV Kids (540p) [Not 24/7] -https://panel.seo.tv.bo:3182/live/franzleonellive.m3u8 -#EXTINF:-1 tvg-id="SEOTVNovelas.bo",SEO TV Novelas (540p) [Not 24/7] -https://panel.seo.tv.bo:3337/live/franzbalboa2live.m3u8 -#EXTINF:-1 tvg-id="TVLatinaCanal42.bo",TV Latina Canal 42 (720p) [Not 24/7] -https://master.tucableip.com/live/tvlatinamontero/playlist.m3u8 -#EXTINF:-1 tvg-id="TVU.bo",TVU (276p) [Not 24/7] -http://136.243.3.70:1935/TvUniversitaria/TvUniversitaria/playlist.m3u8 -#EXTINF:-1 tvg-id="XTOTV.bo",XTOTV (404p) [Not 24/7] -http://www.channel.tevemi.com:1935/XtoTv/XtoTv/playlist.m3u8 diff --git a/streams/br.m3u b/streams/br.m3u deleted file mode 100644 index 2b8c1038e..000000000 --- a/streams/br.m3u +++ /dev/null @@ -1,309 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1001Noites.br",1001 Noites (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8155/ngrp:LVW8155_41E1ciuCvO_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AgroBrasilTV.br",AgroBrasil TV (720p) [Not 24/7] -http://45.162.230.234:1935/agrobrasiltv/agrobrasiltv/playlist.m3u8 -#EXTINF:-1 tvg-id="AgroBrasilTV.br",AgroBrasil TV (720p) [Not 24/7] -https://server.flixtv.com.br/agrobrasiltv/agrobrasiltv/playlist.m3u8 -#EXTINF:-1 tvg-id="Agromais.br",Agromais (1080p) [Geo-blocked] -https://evpp.mm.uol.com.br/geob_band/agromais/playlist.m3u8 -#EXTINF:-1 tvg-id="AllSports.br",All Sports (720p) -https://5cf4a2c2512a2.streamlock.net/dgrau/dgrau/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimeTV.br",Anime TV (360p) [Not 24/7] -https://stmv1.srvif.com/animetv/animetv/playlist.m3u8 -#EXTINF:-1 tvg-id="Animestation.br",Animestation (480p) [Not 24/7] -https://stmv.video.expressolider.com.br/animestation1/animestation1/playlist.m3u8 -#EXTINF:-1 tvg-id="Band.br",Band (1080p) [Geo-blocked] -https://evpp.mm.uol.com.br/geob_band/app/playlist.m3u8 -#EXTINF:-1 tvg-id="Band.br",Band (1080p) [Geo-blocked] -https://evpp.mm.uol.com.br/geob_band/band/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bandnews (720p) [Geo-blocked] -https://evpp.mm.uol.com.br/geob_band/bandnewstv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal25Jundiai.br",Canal 25 Jundiaí (404p) [Not 24/7] -https://stream01.msolutionbrasil.com.br/hls/canal25/live.m3u8 -#EXTINF:-1 tvg-id="CanaldoBoi.br",Canal do Boi [Offline] -https://aovivo.equipea.com.br:5443/WebRTCAppEE/streams/713829795440060188004130.m3u8 -#EXTINF:-1 tvg-id="MetropoleNewsTV.br",Canal Metropolitano de Noticias (720p) [Not 24/7] -http://in.uaimacks.net.br:1935/macks/macks.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSaude.br",Canal Saúde (360p) [Not 24/7] -https://arkyvbre1g.zoeweb.tv/fiocruz/fiocruz/playlist.m3u8 -#EXTINF:-1 tvg-id="Catve2.br",Catve2 (720p) [Timeout] -https://5b33b873179a2.streamlock.net:1443/catve2/catve2/playlist.m3u8 -#EXTINF:-1 tvg-id="CatveFM.br",Catve FM (720p) [Not 24/7] -https://5b33b873179a2.streamlock.net:1443/radiocamera/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CatveMasterTV.br",Catve Master TV (720p) [Timeout] -https://5b33b873179a2.streamlock.net:1443/mastertv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CBNRio.br",CBN Rio (720p) -https://medias.sgr.globo.com/hls/vCBNRJ/vCBNRJ.m3u8 -#EXTINF:-1 tvg-id="CBNSaoPaulo.br",CBN São Paulo (720p) -https://medias.sgr.globo.com/hls/vCBNSP/vCBNSP.m3u8 -#EXTINF:-1 tvg-id="CentralTV.br",Central TV (1080p) [Offline] -http://serv2.videovox.pw/joaorodrigo7309/joaorodrigo7309/playlist.m3u8 -#EXTINF:-1 tvg-id="COMBrasil.br",COM Brasil (720p) [Not 24/7] -https://596639ebdd89b.streamlock.net/8032/8032/playlist.m3u8 -#EXTINF:-1 tvg-id="CulturaPara.br",Cultura Pará (480p) [Not 24/7] -http://str.portalcultura.com.br/funtelpa/tv_funtelpa/live.m3u8 -#EXTINF:-1 tvg-id="TVCulturaNacional.br",Cultura PR Catve (720p) [Timeout] -http://wowza4.catve.com.br:1935/live/livestream/media.m3u8 -#EXTINF:-1 tvg-id="FonteTV.br",Fonte TV (1080p) [Not 24/7] -http://flash.softhost.com.br:1935/fonte/fontetv/live.m3u8 -#EXTINF:-1 tvg-id="Futura.br",Futura (540p) [Not 24/7] -https://tv.unisc.br/hls/test.m3u8 -#EXTINF:-1 tvg-id="GhostTV.br",Ghost TV (800p) [Not 24/7] -https://stmv.video.expressolider.com.br/ghostv/ghostv/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelCartoon.br",Gospel Cartoon (480p) [Offline] -https://stmv1.srvstm.com/gospelcartoon2/gospelcartoon2/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelMovieTV.br",Gospel Movie TV (360p) -https://stmv1.srvif.com/gospelf/gospelf/playlist.m3u8 -#EXTINF:-1 tvg-id="HotFM.br",Hot FM SP (720p) [Not 24/7] -http://flash8.crossdigital.com.br/id2266/id2266/playlist.m3u8 -#EXTINF:-1 tvg-id="IMPDTV.br",IMPD TV (720p) -https://58a4464faef53.streamlock.net/impd/ngrp:impd_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.br",ISTV (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-9883/LVW9883_lFcfKysrHF/chunklist.m3u8 -#EXTINF:-1 tvg-id="ITV.br",ITV (480p) [Not 24/7] -http://tv02.logicahost.com.br:1935/itutv/itutv/live.m3u8 -#EXTINF:-1 tvg-id="JovemPanNews.br",Jovem Pan News (1080p) [Not 24/7] -https://d6yfbj4xxtrod.cloudfront.net/out/v1/7836eb391ec24452b149f3dc6df15bbd/index.m3u8 -#EXTINF:-1 tvg-id="KpopTVPlay.br",KpopTV Play (720p) [Not 24/7] -https://srv1.zcast.com.br/kpoptv/kpoptv/playlist.m3u8 -#EXTINF:-1 tvg-id="MKKWebTV.br",MKK Web TV (720p) [Not 24/7] -https://video01.logicahost.com.br/mkkwebtv/mkkwebtv/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaEraTV.br",Nova Era TV (1080p) [Not 24/7] -http://wz3.dnip.com.br:1935/novaeratv/novaeratv.sdp/live.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) -http://stream.novotempo.com/tv/tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) -http://stream.novotempo.com:1935/tv/smil:tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (480p) -http://stream.novotempo.com:1935/tv/tvnovotempo.smil/live.m3u8 -#EXTINF:-1 tvg-id="NovoTempo.br",Novo Tempo (720p) -https://stream.live.novotempo.com/tv/smil:tvnovotempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NuevoTiempo.br",Nuevo Tiempo (720p) [Not 24/7] -https://stream.live.novotempo.com/tv/smil:tvnuevotiempo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PeruChannel.br",Perú Channel (720p) [Not 24/7] -https://stmv1.duvoxtv.com.br/novelaplz/novelaplz/playlist.m3u8 -#EXTINF:-1 tvg-id="PUCTVGoias.br",PUC TV Goiás (326p) [Not 24/7] -http://flash.softhost.com.br:1935/pucgoias/aovivo/live.m3u8 -#EXTINF:-1 tvg-id="RecordNews.br",Record News (720p) [Geo-blocked] -https://playplusnews-lh.akamaihd.net/i/pp_nws@377849/master.m3u8 -#EXTINF:-1 tvg-id="RecordBelem.br",Record TV Belem (720p) [Geo-blocked] -https://playpluspa-lh.akamaihd.net/i/pp_pa@377468/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="Record.br",Record TV Brasilia (720p) [Geo-blocked] -https://playplusbsa-lh.akamaihd.net/i/pp_bsa@377860/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="",Record TV Goias (720p) [Geo-blocked] -https://playplusgoya-lh.akamaihd.net/i/pp_gna@377833/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordItapoan.br",Record TV Itapoan (720p) [Geo-blocked] -https://playplussdr-lh.akamaihd.net/i/pp_sdr@377858/index_720_av-b.m3u8 -#EXTINF:-1 tvg-id="Record.br",Record TV Manaus (720p) [Geo-blocked] -https://playplusmao-lh.akamaihd.net/i/pp_mao@409195/master.m3u8 -#EXTINF:-1 tvg-id="RecordMinas.br",Record TV Minas (720p) [Geo-blocked] -https://playplusbh-lh.akamaihd.net/i/pp_bh@377862/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordRio.br",Record TV Rio (720p) [Geo-blocked] -https://playplusrjo-lh.akamaihd.net/i/pp_rj@377859/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordPortoAlegre.br",Record TV RS (720p) [Geo-blocked] -https://playpluspoa-lh.akamaihd.net/i/pp_poa@377864/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RecordSaoPaulo.br",Record TV SP (720p) [Geo-blocked] -https://playplusspo-lh.akamaihd.net/i/pp_sp@350176/index_720_av-p.m3u8 -#EXTINF:-1 tvg-id="RedeBrasil.br",Rede Brasil (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/rbtv/rbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeBrasildeComunicacao.br",Rede Brasil de Comunicação (720p) [Not 24/7] -http://rbc.directradios.com:1935/rbc/rbc/live.m3u8 -#EXTINF:-1 tvg-id="RedeCNTCuritiba.br",Rede CNT (Curitiba) (360p) [Not 24/7] -https://dd8umsy8yf96u.cloudfront.net/live/cnt-curitiba.m3u8 -#EXTINF:-1 tvg-id="RedeCNTSaoPaulo.br",Rede CNT (São Paulo) (180p) [Not 24/7] -https://dd8umsy8yf96u.cloudfront.net/live/cnt-americana.m3u8 -#EXTINF:-1 tvg-id="RedeFamilia.br",Rede Família (360p) [Not 24/7] -https://5a1c76baf08c0.streamlock.net/familia/smil:familia.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGloboRiodeJaneiro.br",Rede Globo RJ (720p) [Offline] -http://live.video.globo.com/h/1402196682759012345678915746027599876543210hM4EA1neMoQoIiUyVn1TNg/k/app/a/A/u/anyone/d/s/hls-globo-rj/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeGospel.br",Rede Gospel (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8719/LVW8719_AcLVAxWy5J/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeMaoAmiga.br",Rede Mão Amiga (480p) [Not 24/7] -http://streaming03.zas.media:1935/redemaoamiga/redemaoamiga/live.m3u8 -#EXTINF:-1 tvg-id="RedeMinas.br",Rede Minas (1080p) [Not 24/7] -https://v4-slbps-sambavideos.akamaized.net/live/3282,8114,ec4b5a296d97fa99bf990662f5b4f8e1;base64np;Mc8VDxqNjXKCAf8!/amlst:Mc_tFgfGiHOdQXPB/chunklist_.m3u8 -#EXTINF:-1 tvg-id="RedeRC.br",Rede RC (360p) [Not 24/7] -http://tv02.logicahost.com.br:1935/rederc/rederc/live.m3u8 -#EXTINF:-1 tvg-id="RedeSeculo21.br",Rede Século 21 (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-10024/ngrp:LVW10024_H3QLdAY6kx_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeSuper.br",Rede Super (432p) [Not 24/7] -https://api.new.livestream.com/accounts/10205943/events/3429501/live.m3u8 -#EXTINF:-1 tvg-id="RedeTVES.br",Rede TV! ES (720p) [Offline] -https://hls.brasilstream.com.br/live/redetves/redetves/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPampa.br",Rede TV! Pampa (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvpampa/tvpampa/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeTV.br",Rede TV! SP (720p) [Not 24/7] -https://hls.brasilstream.com.br/live/redetv/redetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeVida.br",Rede Vida (720p) [Not 24/7] -https://cvd1.cds.ebtcvd.net/live-redevida/smil:redevida.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeTVTocantins.br",RedeTV! Tocantins (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/redetvro/redetvro/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCartoon.br",Retrô Cartoon (480p) [Not 24/7] -https://stmv1.srvif.com/retrotv/retrotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SantaCeciliaTV.br",Santa Cecilia TV (288p) [Not 24/7] -http://flash1.crossdigital.com.br/2063/2063/playlist.m3u8 -#EXTINF:-1 tvg-id="RedeMassa.br",SBT Rede Massa (720p) [Not 24/7] -https://cdn-cdn-iguacu.ciclano.io:1443/cdn-iguacu/cdn-iguacu/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadeVerde.br",SBT TV Cidade Verde (1080p) [Not 24/7] -https://stmv1.transmissaodigital.com/cidadeverde/cidadeverde/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornal.br",SBT TV Jornal Caruaru (720p) [Not 24/7] -https://evpp.mm.uol.com.br/ne10/ne10-tvjornal-caruaru-video-web.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornal.br",SBT TV Jornal Recife (720p) [Not 24/7] -https://evpp.mm.uol.com.br/ne10/ne10.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSerraDourada.br",SBT TV Serra Dourada (720p) [Not 24/7] -https://5a1c76baf08c0.streamlock.net/tvsd2/smil:tvsd2_20042020.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Sesc TV (1080p) [Not 24/7] -https://slbps-ml-sambatech.akamaized.net/samba-live/2472/7424/8a00fe7cc36ac263b2c3e9324497d5ff/video/0c884f97-4264-446f-abcd-03aa46089a96_index.m3u8 -#EXTINF:-1 tvg-id="",TELE CINE ACTION (720p) -http://painelvj.com.br/tvaguaboa2/tvaguaboa2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TerraViva.br",Terra Viva (720p) [Not 24/7] -http://evpp.mm.uol.com.br:1935/band_live/terraviva/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAberta.br",TV Aberta (1080p) [Not 24/7] -https://cdn-canalpaulo.ciclano.io:1443/canalpaulo/canalpaulo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVALMG.br",TV ALMG (720p) [Timeout] -https://streaming.almg.gov.br/live/tvalmg.m3u8 -#EXTINF:-1 tvg-id="TVAlternativa.br",TV Alternativa (614p) [Not 24/7] -http://stmv8.conectastm.com/wagner1168/wagner1168/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAparecida.br",TV Aparecida (1080p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-9716/LVW9716_HbtQtezcaw/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBirigui.br",TV Birigui (640p) -http://tv02.logicahost.com.br:1935/tvdigitalbirigui/tvdigitalbirigui/live.m3u8 -#EXTINF:-1 tvg-id="TVBirigui.br",TV Birigui (640p) -https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/tvdigitalbirigui/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBNO.br",TV BNO (270p) [Not 24/7] -http://tv02.logicahost.com.br:1935/bonner/bonner/live.m3u8 -#EXTINF:-1 tvg-id="TVBrasil.br",TV Brasil [Timeout] -https://edge-rj-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(kyMRVuhfTf2jk2bhk4oZVw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGXTwBm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuhde-5ZIl_f4tK0pFaa_lpv5gVXuaKHBhpJxYHQpAySe8UfuTry1gihrKpUq-DVrvTLAVcN_NYL-OR5gME)'t(ccA)b(Q_39q61nTExyyL-LZijmcTvd7twmucXBiaA)))/live_720_index.m3u8 -#EXTINF:-1 tvg-id="TVCamara2.br",TV Câmara 2 (1080p) [Not 24/7] -https://stream3.camara.gov.br/tv2/manifest.m3u8 -#EXTINF:-1 tvg-id="TVCamara.br",TV Câmara (1080p) -https://stream3.camara.gov.br/tv1/manifest.m3u8 -#EXTINF:-1 tvg-id="",TV Camara de Sao Paulo (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8711/ngrp:LVW8711_tG0F3TEBDL_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCapitalLucelia.br",TV Capital Lucelia (320p) [Not 24/7] -http://tv02.logicahost.com.br:1935/tvcapital/tvcapital/live.m3u8 -#EXTINF:-1 tvg-id="TVCarioca.br",TV Carioca (720p) -https://srv5.zcast.com.br/tvcarioca/tvcarioca/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadeCanal9.br",TV Cidade Canal 9 (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvcidade/tvcidade/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadedePetropolis.br",TV Cidade de Petrópolis (1080p) [Not 24/7] -https://video01.kshost.com.br:4443/inside2133/inside2133/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCidadedeSaoPaulo.br",TV Cidade de Sao Paulo [Not 24/7] -https://cast.cdnseguro.com:19360/8012/8012.m3u8 -#EXTINF:-1 tvg-id="TVCinec.br",TV Cinec (720p) [Not 24/7] -http://tv01.logicahost.com.br:1935/tvcinec/tvcinec/live.m3u8 -#EXTINF:-1 tvg-id="TVDestak.br",TV Destak (320p) -http://tv02.logicahost.com.br:1935/pascoal/pascoal/live.m3u8 -#EXTINF:-1 tvg-id="TVDestak.br",TV Destak (360p) -https://59f2354c05961.streamlock.net:1443/pascoal/pascoal/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDiariodoSertao.br",TV Diário do Sertão (720p) -http://painelvj.com.br:1935/pdsertaotv/pdsertaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEscola.br",TV Escola [Timeout] -https://edge-pe-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(iKyPRJ66GZqYJf0OVp_mxw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGVQABm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuAfecBVa16Et9eMjlLC13Rq6Cwwi8mycU0Iwr-66QiAe98vgBCT-AiPs61W_9bjrtb8ATEJw-JsxpVNlotY)'t(wDM)b(pbCqvGJQQWqY9cAtI-9-O9bngy67xc2Xu8ug)))/live_540_index.m3u8 -#EXTINF:-1 tvg-id="TVEvangelizar.br",TV Evangelizar (480p) -https://5f593df7851db.streamlock.net/evangelizar/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVFuturo.br",TV Futuro (720p) [Not 24/7] -https://streaming03.zas.media/tvfuturo/tvfuturo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGalegaBlumenau.br",TV Galega Blumenau (720p) [Not 24/7] -https://cdn.jmvstream.com/w/LVW-8538/LVW8538_KBtZ9UMIZn/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGazeta.br",TV Gazeta (720p) [Not 24/7] -https://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 -#EXTINF:-1 tvg-id="TVGideoes.br",TV Gideoes (1080p) [Not 24/7] -https://streaming01.zas.media/gideoes/programacao/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGuara.br",TV Guará (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvguara/tvguara/playlist.m3u8 -#EXTINF:-1 tvg-id="TVInterlagos.br",TV Interlagos (480p) [Not 24/7] -http://tv.tvalphanet.com.br:1935/tvinterlagos/tvinterlagos/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJornaldoNordeste.br",TV Jornal do Nordeste (720p) [Not 24/7] -https://5cf4a2c2512a2.streamlock.net/jornaldonorteste/jornaldonorteste/playlist.m3u8 -#EXTINF:-1 tvg-id="TVLiberdade.br",TV Liberdade (720p) [Geo-blocked] -https://5c483b9d1019c.streamlock.net/8238/8238/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMackenzie.br",TV Mackenzie (480p) [Not 24/7] -https://player.internetaovivo.com:8443/live_tvmackenzieabr/tvmackenzieabr/playlist.m3u8 -#EXTINF:-1 tvg-id="TVManchete.br",TV Manchete (360p) [Offline] -https://srv5.zcast.com.br/tvmanchete/tvmanchete/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMAX.br",TV MAX (720p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/tvmax/tvmax/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMetropole.br",TV Metropole (720p) [Not 24/7] -https://cdn-fundacao-2110.ciclano.io:1443/fundacao-2110/fundacao-2110/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMetropolitanaRio.br",TV Metropolitana Rio (480p) [Offline] -https://59f1cbe63db89.streamlock.net:1443/caxiastv/caxiastv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMon.br",TV Mon (720p) -https://srv1.zcast.com.br/tvmon/tvmon/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNovaOnda.br",TV Nova Onda (720p) -https://5c483b9d1019c.streamlock.net/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPaiEterno.br",TV Pai Eterno (360p) [Not 24/7] -http://flash8.crossdigital.com.br/2306/2306/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPaiEterno.br",TV Pai Eterno (480p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/teste01/teste01/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPantanalMS.br",TV Pantanal MS (720p) [Not 24/7] -https://5e837408ea907.streamlock.net:1936/tvpantanalms/tvpantanalms/playlist.m3u8 -#EXTINF:-1 tvg-id="TVParanaTurismo.br",TV Paraná Turismo (720p) [Not 24/7] -http://200.189.113.201/hls/tve.m3u8 -#EXTINF:-1 tvg-id="TVPocos.br",TV Poços (192p) [Not 24/7] -http://rtmp.cdn.upx.net.br/00084/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSantaCruz.br",TV Santa Cruz (720p) [Not 24/7] -https://rtmp.info/tvsantacruz/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV SERIES (480p) [Offline] -https://stmv1.srvstm.com/tvserie/tvserie/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSolComunidade.br",TV Sol Comunidade (480p) [Not 24/7] -http://streaming03.zas.media:1935/tvsol/tvsol/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTerceiroAnjo.br",TV Terceiro Anjo (360p) [Not 24/7] -https://streamer1.streamhost.org/salive/GMI3anjoh/livestream.m3u8 -#EXTINF:-1 tvg-id="TVThathi.br",TV Thathi (720p) [Not 24/7] -https://cdn-grupo-10049.ciclano.io:1443/grupo-10049/grupo-10049/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTokyo.br",TV Tokyo (360p) [Not 24/7] -https://stmv1.voxtvhd.com.br/tvtokio/tvtokio/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTropical.br",TV Tropical (480p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvtropical/tvtropical/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUFG.br",TV UFG (720p) [Not 24/7] -http://flash.softhost.com.br:1935/ufg/tvufgweb/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUFOP.br",TV UFOP [Timeout] -https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(6pbmcjLXNoerDLdAhoXBxw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuXyAosvuqvlMJtsMkooySBOlQbVM33PgsYPQdea2CdwV3jCwh3bEWxgkPO8qmBPQtt_5bUEV1Mi_2t1AjM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcUr5z4MZQ)))/index.m3u8 -#EXTINF:-1 tvg-id="TVUniaoFortaleza.br",TV Uniao (1080p) [Not 24/7] -http://stmv1.ifantasy.com.br/admin/admin/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUniSantos.br",TV UniSantos (240p) [Not 24/7] -http://live.cdn.upx.com/7550/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUniversal.br",TV Universal [Offline] -https://14398c.ha.azioncdn.net/primary/smil:tv_universal.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVVerdesCampos.br",TV Verdes Campos (360p) [Not 24/7] -https://596639ebdd89b.streamlock.net/8124/8124/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCI.br",TVCI (360p) [Not 24/7] -http://flash8.crossdigital.com.br:1935/2306/2306/live.m3u8 -#EXTINF:-1 tvg-id="TVEBahia.br",TVE Bahia (720p) [Not 24/7] -http://stream2.ba.gov.br/hls-live/livepkgr/_definst_/irdeb/pgm-1.m3u8 -#EXTINF:-1 tvg-id="TVE.br",TVE RS (1080p) [Not 24/7] -http://selpro1348.procergs.com.br:1935/tve/stve/playlist.m3u8 -#EXTINF:-1 tvg-id="TVideoNews.br",TVídeoNews (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvideonews/_definst_/tvideonews/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVMaticComedy.br",TVMatic Comedy (720p) [Timeout] -http://cdn.tvmatic.net/comedy.m3u8 -#EXTINF:-1 tvg-id="TVMaticCrafts.br",TVMatic Crafts (720p) [Timeout] -http://cdn.tvmatic.net/crafts.m3u8 -#EXTINF:-1 tvg-id="TVMaticFacebook.br",TVMatic Facebook (720p) [Timeout] -http://cdn.tvmatic.net/facebook.m3u8 -#EXTINF:-1 tvg-id="TVMaticFight.br",TVMatic Fight (720p) [Timeout] -http://cdn.tvmatic.net/fight.m3u8 -#EXTINF:-1 tvg-id="TVMaticFunny.br",TVMatic Funny (720p) [Timeout] -http://cdn.tvmatic.net/funny.m3u8 -#EXTINF:-1 tvg-id="TVMaticSport.br",TVMatic Sport (720p) [Timeout] -http://cdn.tvmatic.net/sport.m3u8 -#EXTINF:-1 tvg-id="TVMaticTikTok.br",TVMatic TikTok (720p) [Timeout] -http://cdn.tvmatic.net/tiktok.m3u8 -#EXTINF:-1 tvg-id="TVNBrasil.br",TVN Brasil (720p) [Not 24/7] -http://painelvj.com.br:1935/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNBrasil.br",TVN Brasil (720p) [Not 24/7] -http://wz3.dnip.com.br/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVunisat.br",TVunisat (360p) [Not 24/7] -https://stmv1.srvstm.com/jurandir3193/jurandir3193/playlist.m3u8 -#EXTINF:-1 tvg-id="UNBTV.br",UNBTV [Timeout] -https://edge-go-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(XavC51HboPDZJtji_e3szw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdjsnrQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuX9AbUB8KvlMJtsMkooySBOlQbVM33PgsYPQdea2BJ0ehzbwQ39JhRwi_LnomRVQOY02rJ-d2IH3hF-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcVqJj_MZQ)))/live_1080_index.m3u8 -#EXTINF:-1 tvg-id="UniTVPortoAlegre.br",UniTV Porto Alegre (480p) -http://unitvaovivo.ufrgs.br:8080/live.ogg -#EXTINF:-1 tvg-id="UPFTV.br",UPFTV [Timeout] -https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(Zpw89V7JSRj33uzTBmvflA)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyvnyAaUn8qvlMJtsMkooySBOlQbVM33PgsYPQdea2BUvej3szg6oEmxOu__mykl-Ud831Jp-clI-5BB-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kAUqZ79MZQ)))/live_768_index.m3u8 -#EXTINF:-1 tvg-id="WhamTV.br",Wham TV (720p) [Offline] -https://srv5.zcast.com.br/andre4369/andre4369/playlist.m3u8 -#EXTINF:-1 tvg-id="Yeeaah.br",Yeeaah! (720p) [Not 24/7] -https://srv3.zcast.com.br/yeeaah/yeeaah/playlist.m3u8 diff --git a/streams/br_samsung.m3u b/streams/br_samsung.m3u deleted file mode 100644 index e183108ab..000000000 --- a/streams/br_samsung.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArcadeCloudBrazil.us",Arcade Cloud (Brazil) (720p) [Offline] -https://arcade-cloud-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-3-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTVBrazil.us",Dark Matter TV Brazil (720p) -https://darkmatter-por-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Português (720p) [Offline] -https://euronews-euronews-portugues-1-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) -https://fueltv-fueltv-9-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insight-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) -https://introuble-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) -https://inwild-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkBrazil.us",MyTime movie network Brazil (720p) -https://appletree-mytime-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RecordNews.br",Record News (720p) -https://rede-muhler-recordnews-1-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeBrazil.us",Runtime (Brazil) (1080p) [Geo-blocked] -https://runtimebrazil-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeBrasil.us",Tastemade Brasil (1080p) -https://tastemade-pt16intl-samsungbrazil.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveBrazil.us",The Pet Collective Brazil (720p) [Offline] -https://the-pet-collective-international-br.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyBrazil.us",WeatherSpy Brazil (720p) [Offline] -https://jukin-weatherspy-2-br.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/bs.m3u b/streams/bs.m3u deleted file mode 100644 index e2a5af748..000000000 --- a/streams/bs.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="IslandLuckTV.bs",Island Luck TV (1080p) [Not 24/7] -https://wowzaprod225-i.akamaihd.net/hls/live/1006296/23aa8a88/playlist.m3u8 -#EXTINF:-1 tvg-id="TheParliamentaryChannel.bs",The Parliamentary Channel (480p) [Not 24/7] -https://cloud.streamcomedia.com/parliamentarychannel/smil:parliamentarychannel_streams.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZNSTV.bs",ZNS TV (1080p) [Not 24/7] -https://cloud.streamcomedia.com/znstv/smil:znstv_streams.smil/playlist.m3u8 diff --git a/streams/by.m3u b/streams/by.m3u deleted file mode 100644 index 9ecb7a1d1..000000000 --- a/streams/by.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="8kanal.by",8 канал (Витебск) (576p) [Not 24/7] -http://95.46.208.8:24433/art -#EXTINF:-1 tvg-id="Belarus3.by",Беларусь 3 (1080p) [Not 24/7] -https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Belarus4.by",Беларусь 4 (576p) [Timeout] -http://95.46.208.8:26258/belarus4 -#EXTINF:-1 tvg-id="Belarus24.by",Беларусь 24 (1080p) -https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Vitebsk.by",Витебск (720p) [Not 24/7] -https://flu.vtv.by/tvt-non-by/playlist.m3u8 -#EXTINF:-1 tvg-id="NasheTV.by",Наше ТВ (Витебск) (576p) [Timeout] -http://95.46.208.8:26259/nashe -#EXTINF:-1 tvg-id="ONT.by",ОНТ (576p) -https://stream.dc.beltelecom.by/ont/ont/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (576p) -http://hz1.teleport.cc/HLS/SD.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (576p) -http://rtmp.one.by:1200 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (720p) -http://hz1.teleport.cc/HLS/HD.m3u8 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (1080p) -http://rtmp.one.by:1300 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by",Первый Музыкальный Канал (2160p) [Timeout] -http://rtmp.one.by:1499 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by",Первый Музыкальный Канал Россия (576p) -http://rtmp.one.by:2200 -#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by",Первый Музыкальный Канал Россия (1080p) -http://rtmp.one.by:2300 -#EXTINF:-1 tvg-id="RadioHit.by",Радио Хит (Орск) (720p) -http://lova.me/hls/hithd.m3u8 -#EXTINF:-1 tvg-id="STV.by",СТВ (576p) [Not 24/7] -http://212.98.171.116/HLS/ctvby/playlist.m3u8 diff --git a/streams/by_sluhay.m3u b/streams/by_sluhay.m3u deleted file mode 100644 index 9c5235c51..000000000 --- a/streams/by_sluhay.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Sluhayby.by",Sluhay.by (720p) [Not 24/7] -https://sluhay.by/live/Ch045pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyAillion.by",Sluhay.by Aillion (720p) [Not 24/7] -https://sluhay.by/live/Ch149pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyAmoungYourGod.by",Sluhay.by Among Your God (720p) [Not 24/7] -https://sluhay.by/live/Ch086pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyChrist.by",Sluhay.by Christ (720p) [Not 24/7] -https://sluhay.by/live/Ch064pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyEDM.by",Sluhay.by EDM (720p) [Not 24/7] -https://sluhay.by/live/Ch091pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyLenadi.by",Sluhay.by Lenadi (720p) [Not 24/7] -https://sluhay.by/live/Ch052pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyLive.by",Sluhay.by Live (720p) [Not 24/7] -https://sluhay.by/live/Ch173pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyMova.by",Sluhay.by Mova (720p) [Not 24/7] -https://sluhay.by/live/Ch034pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyPop.by",Sluhay.by Pop (720p) [Not 24/7] -https://sluhay.by/live/Ch066pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyRap.by",Sluhay.by Rap (720p) [Not 24/7] -https://sluhay.by/live/Ch107pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyRock.by",Sluhay.by Rock (720p) [Not 24/7] -https://sluhay.by/live/Ch114pub/index.m3u8 -#EXTINF:-1 tvg-id="SluhaybyXtip.by",Sluhay.by Xtip (720p) [Not 24/7] -https://sluhay.by/live/Ch056pub/index.m3u8 diff --git a/streams/ca.m3u b/streams/ca.m3u deleted file mode 100644 index 330ba7f5e..000000000 --- a/streams/ca.m3u +++ /dev/null @@ -1,273 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="5AABTV.ca",5AAB TV (720p) [Not 24/7] -http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cartoon.stream/playlist.m3u8?token=null -#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (432p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_3_1928000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (432p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_3_1928000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (720p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="AdultSwim.ca",Adult Swim (720p) [Not 24/7] -https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="AmazingDiscoveriesTV.ca",Amazing Discoveries TV (720p) -https://uni01rtmp.tulix.tv/amazingdtv/amazingdtv/playlist.m3u8 -#EXTINF:-1 tvg-id="",AMI Tele (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMI-F_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="AMITV.ca",AMI TV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMItv_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="APTN.ca",APTN [Offline] -http://encodercdn1.frontline.ca/geonosis/output/APTN_720p/playlist.m3u -#EXTINF:-1 tvg-id="AzStarTV.ca",Az Star TV (240p) [Offline] -https://live.livestreamtv.ca/azstar/ngrp:azstar/playlist.m3u8 -#EXTINF:-1 tvg-id="AzStarTV.ca",Az Star TV (1080p) -http://live.azstartv.com/azstar/smil:azstar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Azstar TV (1080p) [Not 24/7] -http://live.livestreamtv.ca/azstar/smil:azstar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCTorontoGaundaPunjab.ca",BBC Toronto Gaunda Punjab (720p) [Not 24/7] -http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanadaOne.ca",Canada One (720p) [Not 24/7] -http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanadaStarTV.ca",Canada Star TV (1080p) [Offline] -http://live.canadastartv.com:1935/canadastartv/canadastartv/playlist.m3u -#EXTINF:-1 tvg-id="CanadianArabTV.ca",Canadian Arab TV (720p) [Not 24/7] -http://142.112.39.133:8080/catv.mp4 -#EXTINF:-1 tvg-id="CanadianArabTV.ca",Canadian Arab TV (720p) [Not 24/7] -http://142.112.39.133:8080/hls/catv/index.m3u8 -#EXTINF:-1 tvg-id="AssembleenationaleduQuebec.ca",Canal de l'Assemblée nationale (544p) [Not 24/7] -https://wowzaprod231-i.akamaihd.net/hls/live/1013830/177d227e/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSavoir.ca",Canal Savoir (360p) -https://hls.savoir.media/live/stream.m3u8 -#EXTINF:-1 tvg-id="CanBanglaTV.ca",CanBangla TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/canbanglatv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCCalgary.ca",CBC Calgary [Geo-blocked] -https://cbclivedai4-i.akamaihd.net/hls/live/567230/event2/CBRT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCCharlottetown.ca",CBC Charlottetown [Geo-blocked] -https://cbclivedai6-i.akamaihd.net/hls/live/567239/event2/CBCT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCEdmonton.ca",CBC Edmonton [Geo-blocked] -https://cbclivedai4-i.akamaihd.net/hls/live/567231/event2/CBXT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCFredericton.ca",CBC Fredericton [Geo-blocked] -https://cbclivedai7-i.akamaihd.net/hls/live/567244/event2/CBAT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCHalifax.ca",CBC Halifax [Geo-blocked] -https://cbclivedai3-i.akamaihd.net/hls/live/566977/event2/CBHT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCMontreal.ca",CBC Montreal [Geo-blocked] -https://cbclivedai3-i.akamaihd.net/hls/live/566976/event2/CBMT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCNewsNetwork.ca",CBC News Network [Geo-blocked] -https://livecbcdai-i.akamaihd.net/hls/live/567245/event2/CBCNN/master5.m3u8 -#EXTINF:-1 tvg-id="CBCOttawa.ca",CBC Ottawa [Geo-blocked] -https://cbclivedai5-i.akamaihd.net/hls/live/567235/event2/CBOT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCRegina.ca",CBC Regina [Geo-blocked] -https://cbclivedai2-i.akamaihd.net/hls/live/566969/event2/CBKT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCStJohns.ca",CBC St Johns [Geo-blocked] -https://cbclivedai5-i.akamaihd.net/hls/live/567236/event2/CBNT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCCBLT.ca",CBC Toronto (720p) -http://encodercdn1.frontline.ca/encoder181/output/CBC_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCToronto.ca",CBC Toronto [Geo-blocked] -https://cbclivedai1-i.akamaihd.net/hls/live/566940/event2/CBLT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCVancouver.ca",CBC Vancouver [Geo-blocked] -https://cbclivedai2-i.akamaihd.net/hls/live/566968/event2/CBUT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCWindsor.ca",CBC Windsor [Geo-blocked] -https://cbclivedai1-i.akamaihd.net/hls/live/566941/event2/CBET/master5.m3u8 -#EXTINF:-1 tvg-id="CBCWinnipeg.ca",CBC Winnipeg [Geo-blocked] -https://cbclivedai6-i.akamaihd.net/hls/live/567237/event2/CBWT/master5.m3u8 -#EXTINF:-1 tvg-id="CBCYellowknife.ca",CBC Yellowknife [Geo-blocked] -https://cbclivedai7-i.akamaihd.net/hls/live/567240/event2/CFYK/master5.m3u8 -#EXTINF:-1 tvg-id="CHCH.ca",CHCH (720p) -http://encodercdn1.frontline.ca/geonosis/output/CHCH_Hamilton_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Cheknews (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/canada/chek-news -#EXTINF:-1 tvg-id="",CityTV Toronto CFTO-DT (720p) -http://encodercdn1.frontline.ca/bespin/output/City_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassiqueTV.ca",Classique TV (480p) [Offline] -http://stmv2.srvstm.com/classique/classique/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassiqueTV.ca",Classique TV (480p) [Offline] -http://stmv3.srvstm.com/classique/classique/playlist.m3u8 -#EXTINF:-1 tvg-id="CMT.ca",CMT (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CMTHD_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CP24.ca",CP24 (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CP24H_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CPACOttawaEn.ca",Cpac (720p) -http://encodercdn1.frontline.ca/yavin/output/CPAC_English_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CPACOttawa.ca",CPAC (1080p) -https://d7z3qjdsxbwoq.cloudfront.net/groupa/live/f9809cea-1e07-47cd-a94d-2ddd3e1351db/live.isml/.m3u8 -#EXTINF:-1 tvg-id="CPACOttawa.ca",CPAC FR (720p) -http://encodercdn1.frontline.ca/yavin/output/CPAC_French_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CPMTV24.ca",CPMTV 24 [Offline] -http://159.69.58.154/cpmtv/cpmtv.m3u8 -#EXTINF:-1 tvg-id="CKVR.ca",CTV2 Barrie CKVR-DT (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TCTV2_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="CTV.ca",CTV (720p) -https://pe-fa-lp02a.9c9media.com/live/News1Digi/p/hls/00000201/38ef78f479b07aa0/index/0c6a10a2/live/stream/h264/v1/3500000/manifest.m3u8 -#EXTINF:-1 tvg-id="CTVNewsChannel.ca",CTV News (480p) -http://encodercdn1.frontline.ca/bespin/output/CTV_News/playlist.m3u8 -#EXTINF:-1 tvg-id="CTVNewsChannel.ca",CTV News (720p) -http://encodercdn1.frontline.ca/bespin/output/CTV_News_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CFTO.ca",CTV Toronto CFTO-DT (720p) -http://encodercdn1.frontline.ca/encoder183/output/CTV_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CTVDrama.ca",CTVDrama (720p) -http://encodercdn1.frontline.ca/encoder183/output/CTV_Drama_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="DesheBidesheTV.ca",DesheBideshe TV (720p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deshebideshe.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DoyelTV.ca",Doyel TV (720p) [Not 24/7] -http://ipm.oncast.me:1934/iplived/ip-doyeltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DoyelTV.ca",Doyel TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/doyeltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DukhNivaran.ca",Dukh Nivaran (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/dncal/index.m3u8 -#EXTINF:-1 tvg-id="EEntertainment.ca",E! Canada (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_E!HD_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="EawazTV.ca",Eawaz TV (720p) [Not 24/7] -https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8 -#EXTINF:-1 tvg-id="EETTV.ca",EET TV (1080p) [Not 24/7] -https://eu.streamjo.com/eetlive/eettv.m3u8 -#EXTINF:-1 tvg-id="EMCITV.ca",EMCI TV (1080p) [Not 24/7] -https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 -#EXTINF:-1 tvg-id="FightNetwork.ca",Fight Network (1080p) -https://d12a2vxqkkh1bo.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="GlobalNewsToronto.ca",Global Toronto (720p) -http://encodercdn1.frontline.ca/encoder184/output/Global_Toronto_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="GurSikhSabhaTV.ca",GurSikh Sabha TV (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/gsctv/index.m3u8 -#EXTINF:-1 tvg-id="HistoryChannel.ca",History (720p) -http://encodercdn1.frontline.ca/encoder181/output/History_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ICIMontreal.ca",ICI Montreal (720p) [Not 24/7] -https://ici-i.akamaihd.net/hls/live/873426/ICI-Live-Stream/master.m3u8 -#EXTINF:-1 tvg-id="CBFT.ca",Ici Radio-Canada Télé (720p) -https://rcavlive.akamaized.net/hls/live/696615/xcancbft/master.m3u8 -#EXTINF:-1 tvg-id="CBFT.ca",Ici Radio-Canada Télé (1080p) [Geo-blocked] -https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8 -#EXTINF:-1 tvg-id="ICIRadioCanadaRDI.ca",ICI RDI (720p) -http://encodercdn1.frontline.ca/encoder184/output/ICI_RDI_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ICIRadioCanadaOntario.ca",ICI TELE Toronto (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ICIHT_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="IIPCTV.ca",IIPC TV (480p) [Geo-blocked] -https://uni10rtmp.tulix.tv/iipctv/iipctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITCTV.ca",ITC TV (480p) [Geo-blocked] -https://dacastmmd.mmdlive.lldns.net/dacastmmd/f05d55e42dc746c8bd36edafbace7cc1/playlist.m3u8 -#EXTINF:-1 tvg-id="Knowledge.ca",Knowledge (720p) [Geo-blocked] -http://knstream1.azureedge.net/knlive/knlive_high.m3u8 -#EXTINF:-1 tvg-id="LCN.ca",LCN [Geo-blocked] -https://tvalive.akamaized.net/hls/live/2014213/tvan01/tvan01.m3u8 -#EXTINF:-1 tvg-id="MeteoMedia.ca",Meteomedia (720p) -http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MontrealGreekTV.ca",Montreal Greek TV (480p) [Not 24/7] -http://94.130.180.175:8081/live/greektv/playlist.m3u8 -#EXTINF:-1 tvg-id="NACTV.ca",NACTV (720p) [Not 24/7] -http://stream.pivotalelements.com/nactv/stream.m3u8 -#EXTINF:-1 tvg-id="NETVToronto.ca",NETV Toronto (720p) [Not 24/7] -https://live.streams.ovh/NetvToronto/NetvToronto/playlist.m3u8 -#EXTINF:-1 tvg-id="Nickelodeon.ca",Nickelodeon Canada (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NICKH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="NRBTV.ca",NRB TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nrb-eu.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTV.ca",NTV (Newfoundland) (576p) [Not 24/7] -https://2-fss-1.streamhoster.com/pl_122/201748-1282644-1/playlist.m3u8 -#EXTINF:-1 tvg-id="OMNI1.ca",OMNI 1 (720p) -http://encodercdn1.frontline.ca/geonosis/output/OMNI1_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ONNtv.ca",ONNtv (Ontario) (1080p) [Offline] -https://onntv.vantrix.tv/onntv_hls/h264_aac_ABR.m3u8 -#EXTINF:-1 tvg-id="OntarioParliamentaryNetwork.ca",Ontario Parliamentary Network (720p) -http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ontario Parliamentary Network (FR) (720p) -http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-fr/playlist.m3u8 -#EXTINF:-1 tvg-id="PardesiTV.ca",Pardesi TV (720p) [Not 24/7] -http://stream.pardesitv.online/pardesi/index.m3u8 -#EXTINF:-1 tvg-id="ParnianTV.ca" status="online",Parnian TV (720p) -https://live2.parnian.tv/hls/.m3u8 -#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p) -https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtv/playlist.m3u8 -#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p) -https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimeAsiaTV.ca",Prime Asia TV (720p) -http://primeasia.dyndns.tv:8080/Live_web_250/index.m3u8 -#EXTINF:-1 tvg-id="PrimeCanadaTV.ca",Prime Canada TV (720p) [Not 24/7] -http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="QVTV.ca",QVTV (720p) -https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RamgarhiABC.ca",Ramgarhi ABC (720p) [Not 24/7] -https://443-1.autopo.st/100/live/bcgurduwarabrookside/chunks.m3u8 -#EXTINF:-1 tvg-id="SaltPlusLightTelevision.ca",Salt + Light Television (1080p) -https://zm6gdaxeyn93-hls-live.5centscdn.com/slworld/d65ce2bdd03471fde0a1dc5e01d793bb.sdp/index.m3u8 -#EXTINF:-1 tvg-id="SanjhaPunjab.ca",Sanjha Punjab (720p) -http://toronto3.live247stream.com:8081/sanjhapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SardariTV.ca",Sardari TV (1080p) [Not 24/7] -http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 -#EXTINF:-1 tvg-id="Showcase.ca",Showcase (720p) -http://encodercdn1.frontline.ca/encoder181/output/Showcase_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SikhSpiritualCentreRexdale.ca",Sikh Spiritual Centre Rexdale (720p) -https://cdn12.henico.net:8443/live/ssct/index.m3u8 -#EXTINF:-1 tvg-id="TAGTV.ca",TAG TV (1080p) [Not 24/7] -http://cdn11.live247stream.com/tag/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TamilVisionTV.ca",Tamil Vision TV (720p) -http://live.tamilvision.tv:8081/TVI/SD/playlist.m3u8 -#EXTINF:-1 tvg-id="TamilVisionTV.ca",Tamil Vision TV (1080p) -http://live.tamilvision.tv:8081/TVI/HD/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCulturelleMedias.ca",Télé Culturelle Médias (720p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8150/8150/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleMagQuebec.ca",Télé-Mag Québec (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNKXYT-Nng5LBMUQrZJ9zWA/live -#EXTINF:-1 tvg-id="TeleMag.ca",Télé-Mag Québec (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/ctmq/live -#EXTINF:-1 tvg-id="CIVM.ca",Télé-Québec (720p) -https://bcovlive-a.akamaihd.net/575d86160eb143458d51f7ab187a4e68/us-east-1/6101674910001/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletoon.ca",Teletoon (720p) [Not 24/7] -http://s1.mysportz.tv:2082/teletoon/playlist.m3u8 -#EXTINF:-1 tvg-id="TFO.ca",TFO (720p) -http://encodercdn1.frontline.ca/encoder183/output/TFO_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TheChannelTV.ca",The Channel TV (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/thechanneltv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN5.ca",The Sports Network (TSN5) (720p) -http://encodercdn1.frontline.ca/kamino/output/TSN5_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="TheWeatherNetwork.ca",The Weather Network (480p) -http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network/playlist.m3u8 -#EXTINF:-1 tvg-id="TheWeatherNetwork.ca",The Weather Network (720p) -http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNetwork.ca",The Weather Network Event (720p) [Not 24/7] -https://bcliveunivsecure-lh.akamaihd.net/i/twn_1@631672/master.m3u8 -#EXTINF:-1 tvg-id="TMC.ca",TMC (720p) -http://encodercdn1.frontline.ca/encoder181/output/TCM_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Toronto360TV.ca",Toronto 360 TV (720p) [Not 24/7] -http://toronto3.live247stream.com/toronto360/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Treehouse.ca",Treehouse (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TREEH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="TSC.ca",TSC (720p) -https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 -#EXTINF:-1 tvg-id="TSN1.ca",TSN 1 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN1_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN2.ca",TSN 2 (720p) -http://encodercdn1.frontline.ca/encoder182/output/TSN2_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN3.ca",TSN 3 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN3_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TSN4.ca",TSN 4 (720p) -http://encodercdn1.frontline.ca/encoder183/output/TSN4_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ca",TV5 (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/ColbaNet_TV5_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="TV16Toronto.ca",TV 16 Toronto (720p) [Not 24/7] -http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8 -#EXTINF:-1 tvg-id="CFTM.ca",TVA [Geo-blocked] -https://tvalive-nondai.akamaized.net/Content/HLS/Live/channel(a7315e07-037c-12a8-bdc8-da7bd513da9d)/index.m3u8 -#EXTINF:-1 tvg-id="TVA.ca",TVA Montreal (720p) -http://encodercdn1.frontline.ca/encoder184/output/TVA_Montreal_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TVC9.ca",TVC9 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC0JP0ek-HhcqisiEpsZiQZA/live -#EXTINF:-1 tvg-id="TVO.ca",TVO (720p) -http://encodercdn1.frontline.ca/encoder181/output/TVO_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOKids.ca",TVOKids (360p) [Not 24/7] -https://bcsecurelivehls-i.akamaihd.net/hls/live/623607/15364602001/tvokids/master.m3u8 -#EXTINF:-1 tvg-id="UniTV.ca",UnisTV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_UNISH_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="isumatv.ca",Uvagut TV (1080p) -http://dee7mwgg9dzvl.cloudfront.net/hls/uvagut/playlist.m3u8 -#EXTINF:-1 tvg-id="VBS.ca",VBS (360p) [Not 24/7] -https://uni6rtmp.tulix.tv/vbstv/vbsabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Vision.ca",Vision TV (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_VISON_AtopItci_2015_01_12_SD/hls_sd.m3u8 -#EXTINF:-1 tvg-id="WTN.ca",W Network (720p) -http://encodercdn1.frontline.ca/kamino/output/W_Network_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WCGtv.ca",WCGtv Brandon (720p) [Not 24/7] -https://wowzastream.westmancom.com/wcgtvlive/highstream.sdp/master.m3u8 -#EXTINF:-1 tvg-id="WCGtv.ca",WCGtv Brandon Radio Pub Sessions (720p) [Not 24/7] -https://wowzastream.westmancom.com/wcgtvlive/wcgtvPSA.stream/master.m3u8 -#EXTINF:-1 tvg-id="YesTV.ca",yes TV (720p) -http://encodercdn1.frontline.ca/kamino/output/YESTV_Hamilton_720p/playlist.m3u8 diff --git a/streams/ca_samsung.m3u b/streams/ca_samsung.m3u deleted file mode 100644 index 798409637..000000000 --- a/streams/ca_samsung.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="DealornoDeal.ca",Deal or no Deal (720p) [Offline] -https://endemol-dealornodeal-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DegrassiTheNextGenerationCanada.us",Degrassi The Next Generation (Canada) (720p) -http://dhx-degrassi-2-ca.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.ca",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] -https://dust-samsung-uk-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us",FTF (720p) [Offline] -https://elevensports-samsunguk-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) -https://fueltv-fueltv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.ca",HollyWire (720p) [Offline] -https://hollywire-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsung-canada.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsung-canada.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us",MavTV (720p) [Offline] -https://mavtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MHZ.ca",MHZ (720p) [Offline] -https://mhz-samsung-linear-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.ca",Outside TV (720p) -https://outside-tv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://playerstv-samsungca.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.ca",PowerNation (720p) [Offline] -https://rtmtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Offline] -https://stingray-naturescape-1-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.ca",Tastemade (720p) [Offline] -https://ti-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.ca",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-6-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveCanada.us",The Pet Collective Canada (720p) [Offline] -https://the-pet-collective-international-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.ca",Waypoint TV (720p) [Offline] -https://waypointtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Weatherspy.ca",Weatherspy (720p) -https://jukin-weatherspy-2-ca.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) [Offline] -https://world-poker-tour-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/ca_stingray.m3u b/streams/ca_stingray.m3u deleted file mode 100644 index 7d347bd71..000000000 --- a/streams/ca_stingray.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayEverything80s.ca",Stingray Everything 80s (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/128/master.m3u8 -#EXTINF:-1 tvg-id="StingrayFlashback70s.ca",Stingray Flashback 70s (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/115/master.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/107/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayPopAdult.ca",Stingray Pop Adult (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/104/master.m3u8 -#EXTINF:-1 tvg-id="StingrayRockAlternative.ca",Stingray Rock Alternative (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/102/master.m3u8 -#EXTINF:-1 tvg-id="StingrayTodaysLatinPop.ca",Stingray Today's Latin Pop (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/190/master.m3u8 -#EXTINF:-1 tvg-id="StingrayUrbanBeat.ca",Stingray Urban Beat (1080p) -https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/133/master.m3u8 diff --git a/streams/cd.m3u b/streams/cd.m3u deleted file mode 100644 index 37fa35bed..000000000 --- a/streams/cd.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Afrobeats.cd",Afrobeats (1080p) -https://stream.ecable.tv/afrobeats/index.m3u8 -#EXTINF:-1 tvg-id="BOne.cd",B-One [Offline] -http://178.33.237.146/rtnc1.m3u8 -#EXTINF:-1 tvg-id="BossBrothersTV.cd",Boss Brothers TV (1080p) -http://51.254.199.122:8080/bossbrothersTV/index.m3u8 -#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd",Congo Planet Television (1080p) -https://radio.congoplanet.com/Congo_Planet_TV.sdp/Congo_Planet_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd",Congo Planet Television (1080p) -https://radio.congoplanet.com/Congo_Planet_TV_Pop.sdp/Congo_Planet_TV_Pop/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNC1.cd",RTNC 1 (360p) -https://cdn.strimie.eu:3431/live/rtnc1live.m3u8 diff --git a/streams/cg.m3u b/streams/cg.m3u deleted file mode 100644 index 926e39cfa..000000000 --- a/streams/cg.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ObossoTV.cg",Obosso TV (1080p) [Offline] -https://edge4.vedge.infomaniak.com/livecast/ik:obossotv_6/manifest.m3u8 diff --git a/streams/ch.m3u b/streams/ch.m3u deleted file mode 100644 index 003073fd5..000000000 --- a/streams/ch.m3u +++ /dev/null @@ -1,85 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalAlphaJura.ch",Canal Alpha Jura (360p) -https://canalalphaju.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlphaJura.ch",Canal Alpha Jura (360p) -https://edge.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlphaNeuchatel.ch",Canal Alpha Neuchatel (1080p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:canalalpha/playlist.m3u8 -#EXTINF:-1 tvg-id="Couleur3.ch",Couleur 3 (720p) -https://rtsc3video-lh.akamaihd.net/i/rtsc3video_ww@513975/master.m3u8 -#EXTINF:-1 tvg-id="DieNeueZeit.ch",Die Neue Zeit (576p) -https://www.onairport.live/die-neue-zeit-tv-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="DieuTV.ch",Dieu TV (1080p) -https://katapy.hs.llnwd.net/dieutvwza1/DIEUTVLIVE/smil:dieutv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ELITTVIsvicre.ch",ELIT TV Isvicre (720p) [Offline] -http://source2.primetime.ch/play/elittv/index.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 auf Deutsch (1080p) -https://livesd2.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 auf Deutsch (1080p) [Offline] -https://edge.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 en Français (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:livehd/master.m3u8 -#EXTINF:-1 tvg-id="Kanal9.ch",Kanal 9 en Français (1080p) -https://livehd.vedge.infomaniak.com/livecast/livehd/master.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) -https://latele.vedge.infomaniak.com/livecast/latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p) -https://livevideo.infomaniak.com/streaming/livecast/latele/playlist.m3u8 -#EXTINF:-1 tvg-id="LFMCH.ch",LFM TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:lfmhd/manifest.m3u8 -#EXTINF:-1 tvg-id="LFMCH.ch",LFM TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:lfmmd/manifest.m3u8 -#EXTINF:-1 tvg-id="LFMTV.ch",LFM TV (1080p) -https://lfmhd.vedge.infomaniak.com/livecast/lfmhd/playlist.m3u8 -#EXTINF:-1 tvg-id="LFMTV.ch",LFM TV (1080p) -https://lfmmd.vedge.infomaniak.com/livecast/smil:lfmmd.smil/manifest.m3u8 -#EXTINF:-1 tvg-id="Meteonews.ch",Meteonews (1080p) -https://streaming.meteonews.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="OneTV.ch",One TV (720p) -https://edge.vedge.infomaniak.com/livecast/ik:onefmmd/manifest.m3u8 -#EXTINF:-1 tvg-id="Radio3i.ch",Radio 3i (720p) -https://livestream.gruppocdt.ch/hls/radio3i.m3u8 -#EXTINF:-1 tvg-id="RadioPilatus.ch" status="online",Radio Pilatus (1080p) -https://rp_tv_1.vedge.infomaniak.com/livecast/rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPilatusTV.ch",Radio Pilatus TV (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPilatusTV.ch",Radio Pilatus TV (1080p) -https://livevideo.infomaniak.com/streaming/livecast/rp_tv_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) -https://edge.vedge.infomaniak.com/livecast/ik:event/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) -https://event.vedge.infomaniak.com/livecast/event.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RougeTV.ch",Rouge TV (720p) -https://rougetv.vedge.infomaniak.com/livecast/rougetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RoyalTV.ch",Royal TV (720p) [Offline] -http://source2.primetime.ch:2981/play/royaltv/index.m3u8 -#EXTINF:-1 tvg-id="Schweiz5.ch",Schweiz 5 (1080p) [Timeout] -https://stream.schweiz5.ch/schweiz52020/stream.m3u8 -#EXTINF:-1 tvg-id="SwissSportTV.ch",Swiss Sport TV (720p) [Timeout] -https://av02.upstream-cloud.ch/sstvlinear/ngrp:sstvlinear_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele1.ch",Tele 1 (1080p) -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_xias5bqq/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="TeleM1.ch",Tele M1 (720p) [Not 24/7] -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_ljzy3evp/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="Telebasel.ch",Telebasel (288p) -http://xapp510394368c1000199.f.l.z.lb.core-cdn.net/10096xtelebase/ios_500/master.m3u8 -#EXTINF:-1 tvg-id="Telebasel.ch",Telebasel (432p) -https://cldf-wzw-live.r53.cdn.tv1.eu/10096xtelebase/_definst_/1000199copo/live/app510394368/w162136077/live_de_1500/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleBielingue.ch",TeleBielingue (720p) -https://edge.vedge.infomaniak.com/livecast/ik:telebielinguech/manifest.m3u8 -#EXTINF:-1 tvg-id="TeleBielingue.ch",TeleBielingue (720p) -https://livevideo.infomaniak.com/streaming/livecast/telebielinguech/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTicino.ch",TeleTicino (720p) -https://livestream.gruppocdt.ch/hls/teleticino.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch",TVM 3 (1080p) -http://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch",TVM3 (1080p) -https://edge.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM3.ch",TVM3 (1080p) [Not 24/7] -https://tvm3.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 -#EXTINF:-1 tvg-id="",TVO (CH) (720p) -https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_t5h46v64/format/applehttp/protocol/https/a.m3u8 -#EXTINF:-1 tvg-id="TVO.ch",TVO (CH) (1080p) [Not 24/7] -https://s3.welocal.world/tvo/media/447348/videos/hls.m3u8 diff --git a/streams/ch_samsung.m3u b/streams/ch_samsung.m3u deleted file mode 100644 index 8c5008ad5..000000000 --- a/streams/ch_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RakutenTVActionMoviesSwitzerland.es",Rakuten TV Action Movies Switzerland (720p) [Offline] -https://rakuten-actionmovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesSwitzerland.es",Rakuten TV Comedy Movies Switzerland (720p) [Offline] -https://rakuten-comedymovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaSwitzerland.es",Rakuten TV Drama Switzerland (720p) [Offline] -https://rakuten-tvshows-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilySwitzerland.es",Rakuten TV Family Switzerland (720p) [Offline] -https://rakuten-family-4-ch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightSwitzerland.es",Rakuten TV Spotlight Switzerland (720p) [Offline] -https://rakuten-spotlight-4-ch.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/ci.m3u b/streams/ci.m3u deleted file mode 100644 index 1e9633e9e..000000000 --- a/streams/ci.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="NTVAfrique.ci",NTV Afrique (1080p) [Not 24/7] -https://strhlslb01.streamakaci.tv/str_ntv_ntv/str_ntv_ntv_multi/playlist.m3u8 diff --git a/streams/cl.m3u b/streams/cl.m3u deleted file mode 100644 index 207a44034..000000000 --- a/streams/cl.m3u +++ /dev/null @@ -1,355 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",24 Horas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/24HORAS/live -#EXTINF:-1 tvg-id="ADNRadio.cl",ADN Radio (1080p) -https://unlimited1-us.dps.live/adntv/adntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ADNRadio.cl",ADN Radio (1080p) -https://unlimited6-cl.dps.live/adntv/adntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AERadioTV.cl",AE Radio TV (720p) [Not 24/7] -http://edge1.cl.grupoz.cl/aeradio/live/index.m3u8 -#EXTINF:-1 tvg-id="AlegriaTV.cl",Alegria TV (1020p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 -#EXTINF:-1 tvg-id="AlternativaTVHuasco.cl",Alternativa TV (Huasco) (720p) [Not 24/7] -https://srv2.zcast.com.br/carlos2469/carlos2469/playlist.m3u8 -#EXTINF:-1 tvg-id="AntofagastaTVATV.cl",Antofagasta TV (ATV) (1080p) -https://unlimited6-cl.dps.live/atv/atv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ARABTV.cl",ARABTV (720p) -https://livefocamundo.com:8081/arabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="AricaTV.cl",Arica TV (480p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8002/8002/playlist.m3u8 -#EXTINF:-1 tvg-id="AtacamaTVCopiapo.cl",Atacama TV (Copiapó) (720p) [Not 24/7] -https://v2.tustreaming.cl/atacamatv/index.m3u8 -#EXTINF:-1 tvg-id="AutonomaTV.cl",Autonoma TV (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8144/8144/playlist.m3u8 -#EXTINF:-1 tvg-id="AysenTV.cl",Aysén TV (720p) [Not 24/7] -https://v2.tustreaming.cl/aysentv/playlist.m3u8 -#EXTINF:-1 tvg-id="BajoCeroTVCorporacionEva.cl",Bajo Cero TV (Corporación Eva) (656p) [Offline] -https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 -#EXTINF:-1 tvg-id="BuinSomosTodos.cl",Buin Somos Todos (720p) [Not 24/7] -https://bst.buin.cl/0.m3u8 -#EXTINF:-1 tvg-id="CamaradeDiputadosDVR.cl",Camara de Diputados (DVR) (720p) [Not 24/7] -http://camara.02.cl.cdnz.cl/cdndvr/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="CampoAbiertoTV.cl",Campo Abierto TV (Huechuraba) (480p) [Not 24/7] -http://v3.tustreaming.cl/campoabierto/playlist.m3u8 -#EXTINF:-1 tvg-id="CampusTVTalca.cl",Campus TV (Talca) (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/campustv/campustv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2SanAntonio.cl",Canal 2 (San Antonio) (720p) [Not 24/7] -https://unlimited1-us.dps.live/canal2/canal2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] -https://unlimited1-us.dps.live/c9/c9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] -https://unlimited6-cl.dps.live/c9/c9.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13.cl",Canal 13 (720p) [Geo-blocked] -http://canal13-m3u.chorroaeboy.repl.co -#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7] -http://edge1.cl.grupoz.cl/canal21tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7] -https://tls.cdnz.cl/canal21tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal29.cl",Canal 29 (614p) [Not 24/7] -https://59f1cbe63db89.streamlock.net:1443/canal/canal/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.cl",Canal 33 (720p) [Geo-blocked] -https://5eae379fb77bb.streamlock.net/eduardo555/eduardo555/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal57Melipilla.cl",Canal 57 Melipilla (720p) -https://593b04c4c5670.streamlock.net/8148/8148/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal74SanAntonio.cl",Canal 74 (San Antonio) (720p) -https://stmv1.zcastbr.com/canal74hd/canal74hd/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalDiputados.cl",Canal Diputados (720p) -http://camara.03.cl.cdnz.cl/camara19/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalISBIglesiaSanBernardo.cl",Canal ISB (Iglesia San Bernardo) (720p) -https://unlimited1-us.dps.live/isb/isb.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalLatino.cl",Canal Latino (CL54) (360p) -https://hd.chileservidores.cl:1936/latina/latina/playlist.m3u8 -#EXTINF:-1 tvg-id="",Canal SCÑ (San Carlos Ñuble) (720p) [Not 24/7] -https://live.tvcontrolcp.com:1936/sancarlostv/sancarlostv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurvisionAlerce.cl",Canal Survision Alerce [Offline] -http://170.79.102.254:1935/pruebacamara/Survision_tv_alerce/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalTUTVQuillota.cl",Canal TUTV (Quillota) (720p) -https://paneltv.net:3978/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="CaracolaTVPenalolen.cl",Caracola TV (Peñalolén) (720p) [Not 24/7] -https://wifispeed.trapemn.tv:1936/comunales/caracola-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CarolinaTV.cl",Carolina TV (1080p) -https://unlimited6-cl.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CarolinaTV.cl",Carolina TV (1080p) [Not 24/7] -https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CEACTVSantiago.cl",CEAC TV (Santiago) (480p) -https://hd.chileservidores.cl:1936/ceactv/ceactv/playlist.m3u8 -#EXTINF:-1 tvg-id="CHICMagazine.cl",CHIC Magazine (480p) [Not 24/7] -https://paneltv.online:1936/8056/8056/playlist.m3u8 -#EXTINF:-1 tvg-id="ChileVision.cl",ChileVisión (360p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/chv_003cl -#EXTINF:-1 tvg-id="ChileVision.cl",ChileVisión (720p) [Geo-blocked] -http://chv-m3u.chorroaeboy.repl.co -#EXTINF:-1 tvg-id="",CHV Noticias (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRsUoZYC1ULUspipMRnMhwg/live -#EXTINF:-1 tvg-id="ClickTVCoronel.cl",Click TV (Coronel) (720p) -http://v2.tustreaming.cl/clicktv/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudserverKids90.cl",Cloudserver Kids90 (480p) -https://videostreaming.cloudserverlatam.com/Kids90/Kids90/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudserverLatamCSTV.cl",Cloudserver Latam (CSTV) (720p) -https://videostreaming.cloudserverlatam.com/CSTV/CSTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubTVSantaJuana.cl",Club TV (Santa Juana) (720p) [Not 24/7] -https://paneltv.online:1936/8030/8030/playlist.m3u8 -#EXTINF:-1 tvg-id="Contivision.cl",Contivisión (720p) -https://unlimited6-cl.dps.live/contivision/contivision.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CulturaOnline.cl",Cultura Online (720p) [Not 24/7] -https://v2.tustreaming.cl/culturaonline/index.m3u8 -#EXTINF:-1 tvg-id="DecimaTVAncud.cl",Décima TV (Ancud) (720p) -http://unlimited10-cl.dps.live/decimatv/decimatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EGMChannel.cl",EGM Channel (480p) [Not 24/7] -https://paneltv.online:1936/8186/8186/playlist.m3u8 -#EXTINF:-1 tvg-id="",EKIZ TV (Rancagua) (1080p) -https://stmv.panel.mivideo.pro/ekiztv/ekiztv/playlist.m3u8 -#EXTINF:-1 tvg-id="ElPinguinoTV.cl",El Pingüino TV (720p) [Offline] -https://iptv-all.lanesh4d0w.codes/m3u8/elpinguino_cl.m3u8 -#EXTINF:-1 tvg-id="ElionCanalDigital.cl",Elion Canal Digital (Chillan) (288p) [Not 24/7] -https://paneltv.online:1936/8154/8154/playlist.m3u8 -#EXTINF:-1 tvg-id="EnerGeek.cl",EnerGeek (720p) [Not 24/7] -https://stmv1.voxhdnet.com/energeek/energeek/playlist.m3u8 -#EXTINF:-1 tvg-id="EstacionTV.cl",Estación TV (720p) -http://unlimited1-us.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EstacionTV.cl",Estación TV (720p) [Timeout] -http://unlimited1-cl.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Estación TV (Chillán) (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EvaStreamCorporacionEva.cl",Eva Stream (Corporación Eva) (480p) [Not 24/7] -https://stmv.panel.mivideo.pro/evastream/evastream/playlist.m3u8 -#EXTINF:-1 tvg-id="EvavisionPachangaCorporacionEva.cl",Evavisión Pachanga (Corporación Eva) (720p) -http://159.69.56.148:25461/live/evavision/2r4rfasf/38.m3u8 -#EXTINF:-1 tvg-id="",Exprezión TV (EXTV | Los Álamos) (720p) [Not 24/7] -https://srv3.zcast.com.br/expreszion/expreszion/playlist.m3u8 -#EXTINF:-1 tvg-id="GenialTV.cl",Genial TV (720p) [Not 24/7] -http://v3.tustreaming.cl/genialtv/playlist.m3u8 -#EXTINF:-1 tvg-id="GeovisionIquique.cl",Geovisión (Iquique) (536p) -https://5fa5de1a545ae.streamlock.net/Geovision/Geovision/playlist.m3u8 -#EXTINF:-1 tvg-id="GraciaTV.cl",Gracia TV (1080p) [Not 24/7] -http://v3.tustreaming.cl/graciatv/index.m3u8 -#EXTINF:-1 tvg-id="HiperconectadosTV.cl",Hiperconectados Televisión (720p) -https://mediacpstreamchile.com:1936/hiperconectados/hiperconectados/playlist.m3u8 -#EXTINF:-1 tvg-id="HiperTV.cl",HiperTV (1074p) [Not 24/7] -https://inliveserver.com:1936/11010/11010/playlist.m3u8 -#EXTINF:-1 tvg-id="HolvoetTVCopiapo.cl",Holvoet TV (Copiapó) (720p) [Not 24/7] -https://unlimited1-us.dps.live/holvoettv/holvoettv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Interradio.cl",Interradio (1080p) [Not 24/7] -https://video01.logicahost.com.br/interradiofrutillar/smil:transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p) [Not 24/7] -https://unlimited1-us.dps.live/itv/itv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p) [Timeout] -https://unlimited1-cl.dps.live/itv/itv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LaGranjaTV.cl",La Granja TV (720p) [Not 24/7] -https://5eae379fb77bb.streamlock.net/8126/8126/playlist.m3u8 -#EXTINF:-1 tvg-id="LaPopularTVSalamanca.cl",La Popular TV (Salamanca) (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8076/ngrp:8076/playlist.m3u8 -#EXTINF:-1 tvg-id="LaRed.cl",La Red (720p) [Not 24/7] -https://unlimited1-cl-movistar.dps.live/lared/lared.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LRPTelevision.cl",LRP Televisión (720p) [Not 24/7] -https://v2.tustreaming.cl/lrp/index.m3u8 -#EXTINF:-1 tvg-id="LTVRenaico.cl",LTV (Renaico) (720p) [Not 24/7] -https://medios.sirtel.cl/live/stream/index.m3u8 -#EXTINF:-1 tvg-id="MASPlusTVChile.cl",MÁS+.TV Chile (720p) [Not 24/7] -https://593b04c4c5670.streamlock.net/8008/8008/playlist.m3u8 -#EXTINF:-1 tvg-id="MAXIMA.cl",MAXIMA (720p) [Not 24/7] -https://server1.oklanet.cl:1936/maximavideo1/maximavideo1/playlist.m3u8 -#EXTINF:-1 tvg-id="Mega.cl",Mega [Geo-blocked] -http://186.67.117.178:8081/play/a00x -#EXTINF:-1 tvg-id="Meganoticias.cl",Meganoticias (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkccyEbqhhM3uKOI6Shm-4Q/live -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Conciertos (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/7.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Global Hits (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/5.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Puro Rock (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/25.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Retro (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/4.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Top100 (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/2.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Tropical (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/3.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 Vdj Retro (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/1.m3u8 -#EXTINF:-1 tvg-id="MIX247.cl",MIX 24/7 VdjPop (720p) [Offline] -http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/6.m3u8 -#EXTINF:-1 tvg-id="MundodelaMusica.cl",Mundo de la Música (288p) -https://videostreaming.cloudserverlatam.com/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ñuble RTV (Chillán) (720p) [Not 24/7] -https://live.tvcontrolcp.com:1936/guzman/guzman/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ñublevisión (Chillán) (720p) -https://cdn.oneplaychile.cl:1936/regionales/nublevision.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OndaRadio.cl",Onda Radio (720p) [Offline] -https://5eff35271151c.streamlock.net:1936/8074/8074/playlist.m3u8 -#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p) -https://unlimited1-us.dps.live/pautatv/pautatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p) -https://unlimited6-cl.dps.live/pautatv/pautatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PintanaTV.cl",Pintana TV (720p) -http://cdn.vms.grupoz.cl/lapintanatv/content/5a7c8e25e19d3e641aca9fb2/hls/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvKids.cl",Planetatv Kids (1080p) -https://mediacpstreamchile.com:1936/8152/8152/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvMovie.cl",Planetatv Movie (1080p) -https://mediacpstreamchile.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetatvMusic.cl",Planetatv Music (720p) [Geo-blocked] -https://5eae379fb77bb.streamlock.net/planetatvmusic/planetatvmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (288p) [Not 24/7] -http://tv.portalfoxmix.club:1935/portalfoxmix/portalfoxmix/playlist.m3u8 -#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (288p) [Not 24/7] -https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/playlist.m3u8 -#EXTINF:-1 tvg-id="PunconTV.cl",Puncón TV (1080p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/pucontv/pucontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioAmericaTV.cl",Radio América TV (720p) [Not 24/7] -https://stmv1.zcastbr.com/americatvchile/americatvchile/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioElSembrador.cl",Radio El Sembrador (1080p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8064/8064/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioLaSabrosura.cl",Radio La Sabrosura (288p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8096/8096/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioMaxima949FMSB.cl",Radio Maxima 94.9 FM SB (720p) [Not 24/7] -http://server1.oklanet.cl:1935/maximavideo1/maximavideo1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRancaguaFM.cl",Radio Rancagua FM (768p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8056/8056/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRitmoFM.cl",Radio Ritmo FM (720p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8032/8032/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioUniem.cl",Radio Uniem (480p) [Not 24/7] -https://5eff35271151c.streamlock.net:1936/8110/8110/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZetaTV.cl",Radio Zeta TV (240p) [Not 24/7] -https://unlimited1-us.dps.live/radioztv/radioztv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZetaTV.cl",Radio Zeta TV (480p) [Timeout] -https://unlimited1-cl.dps.live/radioztv/radioztv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RCKTV.cl",RCK TV (720p) -https://mediacpstreamchile.com:1936/ricardoaravena/ricardoaravena/playlist.m3u8 -#EXTINF:-1 tvg-id="RealProOnline.cl",RealPro Online (540p) [Offline] -https://paneltv.online:1936/8202/8202/playlist.m3u8 -#EXTINF:-1 tvg-id="RedBullBatalladeGallos.cl",RedBull Batalla de Gallos (720p) -https://videostreaming.cloudserverlatam.com/Batalladegallos/Batalladegallos/playlist.m3u8 -#EXTINF:-1 tvg-id="RestaurandoVidasInternacional.cl",Restaurando Vidas Internacional (720p) [Not 24/7] -http://v4.tustreaming.cl/restaurandovidastv/index.m3u8 -#EXTINF:-1 tvg-id="RetroPlus2.cl",Retro Plus 2 (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/retroplussenal2/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroPlus3.cl",Retro Plus 3 (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplussenal3/retroplussenal3/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroPlus.cl",Retro Plus (720p) -https://59f1cbe63db89.streamlock.net:1443/retroplustv/retroplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="RewindTV.cl",Rewind TV (720p) [Not 24/7] -https://tls.cdnz.cl/rewindtv/rewindtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RoccoTV.cl",Rocco TV (Coyhaique) (240p) [Not 24/7] -http://evo.eltelon.com:1935/live/rocco-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RuidosFM.cl",Ruidos FM (360p) -https://593b04c4c5670.streamlock.net/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="SantaMariaTelevision.cl",Santa María Televisión (720p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/smtv/smtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SellodeRaza.cl",Sello de Raza (720p) [Not 24/7] -https://v2.tustreaming.cl/mastermedia/playlist.m3u8 -#EXTINF:-1 tvg-id="SoloStandUp.cl",SoloStandUp (480p) [Not 24/7] -https://paneltv.online:1936/8116/8116/playlist.m3u8 -#EXTINF:-1 tvg-id="SpectrumChannelLGBTQPlus.cl",Spectrum Channel LGBTQ+ (360p) [Not 24/7] -https://vdohd.cl:1936/8078/8078/playlist.m3u8 -#EXTINF:-1 tvg-id="StgoTV.cl",Stgo.TV (720p) -https://stv.janus.cl/playlist/stream.m3u8 -#EXTINF:-1 tvg-id="T13.cl",T13 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsRnhjcUCR78Q3Ud6OXCTNg/live -#EXTINF:-1 tvg-id="Tele2WebRetiro.cl",Tele 2 Web (Retiro) (720p) [Not 24/7] -https://inliveserver.com:1936/11516/11516/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) -https://unlimited6-cl.dps.live/sportinghd/sportinghd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) -https://unlimited6-cl.dps.live/teletrak/teletrak.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletrak.cl",Teletrak (720p) [Not 24/7] -https://unlimited1-us.dps.live/teletrak/teletrak.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tendencias 31 Prime (T31 | Ñuñoa) (1080p) [Not 24/7] -https://v2.tustreaming.cl/tendenciastv/index.m3u8 -#EXTINF:-1 tvg-id="Tevex.cl",Tevex (720p) [Not 24/7] -https://v4.tustreaming.cl/tevexinter/index.m3u8 -#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7] -https://unlimited1-us.dps.live/thema/thema.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7] -https://unlimited6-cl.dps.live/thema/thema.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TNE.cl",TNE (720p) [Not 24/7] -https://v2.tustreaming.cl/tnetv/index.m3u8 -#EXTINF:-1 tvg-id="TurfMovil.cl",Turf Móvil (720p) -https://janus.tvturf.cl/playlist/stream.m3u8 -#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p) -https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p) [Not 24/7] -https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8Concepcion.cl",TV8 (Concepción) (514p) [Geo-blocked] -https://593b04c4c5670.streamlock.net/8014/8014/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCosta.cl",TV Costa (720p) [Not 24/7] -http://cdn.streamingmedia.cl:1935/live/canalcosta/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCostaSanAntonio.cl",TV Costa (San Antonio) (720p) [Not 24/7] -https://hd.chileservidores.cl:1936/tvcosta1/tvcosta1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVElquiLaSerena.cl",TV Elqui (La Serena) (720p) [Offline] -https://5eff35271151c.streamlock.net:1936/8070/8070/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOsorno.cl",TV Osorno (720p) [Not 24/7] -https://hd.chileservidores.cl:1936/osorno2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPop.cl",TV Pop (720p) -https://v4.tustreaming.cl/poptv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuellon.cl",TV Quellón (1080p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/tvquellon/tvquellon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuintaRegion.cl",TV Quinta Región (1080p) [Not 24/7] -https://stmv1.zcastbr.com/danielg/smil:transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSalud.cl",TV Salud (720p) [Not 24/7] -https://srv3.zcast.com.br/mastermedia/mastermedia/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSenado.cl",TV Senado (360p) -https://janus-tv-ply.senado.cl/playlist/playlist.m3u8 -#EXTINF:-1 tvg-id="TVVision.cl",TV Vision (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3750/live/tvvisionlive.m3u8 -#EXTINF:-1 tvg-id="TVN.cl",TVN (720p) [Not 24/7] -https://unlimited1-us.dps.live/tvn/tvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVN.cl",TVN (720p) [Not 24/7] -https://unlimited10-cl.dps.live/tvn/tvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOSanVicente.cl",TVO (San Vicente) (270p) [Not 24/7] -https://pantera1-100gb-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOSanVicente.cl",TVO San Vicente (720p) [Not 24/7] -https://unlimited2-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOTocopilla.cl",TVO Tocopilla (360p) [Not 24/7] -http://srv3.zcast.com.br/cristian5592/cristian5592/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR.cl",TVR (180p) [Not 24/7] -https://unlimited1-us.dps.live/tvr/tvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR.cl",TVR (720p) [Timeout] -https://unlimited1-cl.dps.live/tvr/tvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ULosLagosTV.cl",U Los Lagos TV (1080p) [Not 24/7] -http://tv.ulagos.cl/web/live.m3u8 -#EXTINF:-1 tvg-id="UCV3TV.cl",UCV3 TV (720p) -http://unlimited6-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UCV3TV.cl",UCV3 TV (720p) [Timeout] -http://unlimited1-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] -http://cl.origin.grupoz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] -http://edge1.cl.grupoz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p) [Offline] -https://tls.cdnz.cl/uestv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UMAGTVTelevision.cl",UMAGTV Televisión (Punta Arenas) (720p) [Offline] -http://edge1.cl.grupoz.cl/tser5/live/playlist.m3u8 -#EXTINF:-1 tvg-id="UnidadEvangelicaTV.cl",Unidad Evangelica TV (720p) [Not 24/7] -https://v2.tustreaming.cl/unidadevangelica/index.m3u8 -#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] -https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] -https://unlimited6-cl.dps.live/uatv/uatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UTVSanClemente.cl",UTV San Clemente (720p) [Geo-blocked] -http://v3.tustreaming.cl/utvsc/playlist.m3u8 -#EXTINF:-1 tvg-id="VCOnline.cl",VC Online (720p) -https://593b04c4c5670.streamlock.net/8068/8068/playlist.m3u8 -#EXTINF:-1 tvg-id="VidaTV.cl",Vida TV (1080p) [Offline] -http://45.161.188.242:88/vidatv/index.m3u8 -#EXTINF:-1 tvg-id="VisionPlusTVMelipilla.cl",Visión Plus TV (Melipilla) (720p) [Not 24/7] -http://v2.tustreaming.cl/visionplustv/index.m3u8 -#EXTINF:-1 tvg-id="VisionTVFrutillar.cl",Visión TV Frutillar (720p) [Not 24/7] -https://vivo.solumedia.com:19360/visiontv/visiontv.m3u8 -#EXTINF:-1 tvg-id="VozdePoder.cl",Voz de Poder (720p) [Not 24/7] -https://v2.tustreaming.cl/vozdepoder/index.m3u8 -#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7] -https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7] -https://unlimited6-cl.dps.live/vtv/vtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTVVinadelMaryValparaiso.cl",VTV Viña del Mar y Valparaíso (720p) [Offline] -http://cdn.streamingmedia.cl:1935/live/vtvvina/playlist.m3u8 -#EXTINF:-1 tvg-id="Wapp.cl",Wapp (1080p) -https://mdstrm.com/live-stream-playlist/6046495ddf98b007fa2fe807.m3u8 -#EXTINF:-1 tvg-id="ZappingMusic.cl",Zapping (720p) [Offline] -https://zmlive.zappingtv.com/zm_free/zm.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZizaTVChiguayante.cl",Ziza TV (Chiguayante) (720p) [Not 24/7] -https://v2.tustreaming.cl/zizatv/index.m3u8 -#EXTINF:-1 tvg-id="ZonaLatina.cl",Zona Latina (480p) [Not 24/7] -http://38.131.11.9:1080/play/a00x -#EXTINF:-1 tvg-id="ZonaPlayTVZPTV.cl",Zona Play TV (ZPTV) (720p) [Not 24/7] -https://srv3.zcast.com.br/juancarlos9451/juancarlos9451/playlist.m3u8 diff --git a/streams/cm.m3u b/streams/cm.m3u deleted file mode 100644 index e742e2e54..000000000 --- a/streams/cm.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EmergenceTV.cm",Emergence TV (480p) [Not 24/7] -http://connectiktv.ddns.net:5000/emergencetv/emergencetv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTVChannel.cm",My TV Channel (720p) [Not 24/7] -http://connectiktv.ddns.net:5000/mytvchannel/@mytvchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayTV.cm",Play TV (720p) [Not 24/7] -http://connectiktv.ddns.net:5000/playtv/@playtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Vision4.cm",Vision 4 (360p) -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/vision4/hls_video/index.m3u8 diff --git a/streams/cn.m3u b/streams/cn.m3u deleted file mode 100644 index 2cc97d705..000000000 --- a/streams/cn.m3u +++ /dev/null @@ -1,2959 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",BesTV超级 (576p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226942/index.m3u8 -#EXTINF:-1 tvg-id="",Blue 美剧 (360p) [Not 24/7] -http://210.210.155.35/dr9445/h/h16/02.m3u8 -#EXTINF:-1 tvg-id="CCTVPlus1.cn",CCTV+ 1 (600p) [Not 24/7] -https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTVPlus2.cn",CCTV+ 2 (600p) [Not 24/7] -https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-1/G_CCTV-1 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] -http://223.110.245.139/PLTV/4/224/3221225852/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225852/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225618/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://117.169.120.140:8080/live/cctv-1/.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://183.207.248.71/cntv/live1/cctv-1/cctv-1 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv1/HD-2500k-1080P-cctv1 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://183.207.249.9/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://183.207.249.15/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://223.110.245.170/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://223.110.245.170/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) -http://223.110.245.173/PLTV/4/224/3221227375/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/cctv1hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.243.138/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Not 24/7] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8 -#EXTINF:-1 tvg-id="CCTV1.cn",CCTV-1综合 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (360p) [Offline] -http://125.210.152.10:8060/live/CCTV2HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTV2HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (540p) -http://112.25.48.68/live/program/live/cctv2/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-2/G_CCTV-2 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (576p) [Offline] -http://183.207.249.13/PLTV/4/224/3221225881/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://117.169.120.140:8080/live/cctv-2/.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://183.207.248.71/cntv/live1/cctv-2/cctv-2 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) -http://223.110.245.170/PLTV/3/224/3221227207/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226220/index.m3u8 -#EXTINF:-1 tvg-id="CCTV2.cn",CCTV-2财经 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (480p) [Not 24/7] -http://newvideo.dangtutv.cn:8278/CCTVzongyi/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (576p) [Offline] -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226360/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://39.135.38.165:6610/000000001000/1000000001000011218/1.m3u8?IASHttpSessionId=OTT16157620200202041417014267&fmt=ts2hls&u=45768392 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225647/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://112.25.48.68/live/program/live/cctv3hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://117.169.120.140:8080/live/cctv-3/.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv3/HD-2500k-1080P-cctv3 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://183.207.249.5/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://183.207.249.6/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://183.207.249.14/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) -http://183.207.249.35/PLTV/4/224/3221227295/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/cctv-3/cctv-3 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8 -#EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3综艺 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=80&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctvamerica_2/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctveurope_2/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] -https://cctvcnch5ca.v.wscdns.com/live/cctvamerica_2/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (360p) [Offline] -https://cctvcnch5ca.v.wscdns.com/live/cctveurope_2/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (540p) -http://112.25.48.68/live/program/live/cctv4/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) -http://111.63.117.13:6060/030000001000/CCTV-4/CCTV-4.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/CCTV-4/CCTV-4 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Offline] -http://183.207.249.15/PLTV/4/224/3221225781/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225781/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://117.169.120.140:8080/live/cctv-4/.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://183.207.248.71/cntv/live1/cctv-4/cctv-4 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://183.207.249.6/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://183.207.249.11/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) -http://223.110.245.170/PLTV/3/224/3221225534/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",CCTV-4中文国际 (1080p) [Offline] -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225706/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225649/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://117.169.120.132:8080/live/hdcctv05plus/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://183.207.248.71/cntv/live1/CCTV5+/hdcctv05plus -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://183.207.248.71/cntv/live1/hdcctv05plus/hdcctv05plus -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://183.207.249.14/PLTV/3/224/3221225604/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) -http://223.110.245.139/PLTV/4/224/3221227480/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5Plus.cn",CCTV-5+体育赛事 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (360p) [Not 24/7] -http://hbry.chinashadt.com:1938/live/1004.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv5_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (576p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226362/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225633/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225648/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://112.25.48.68/live/program/live/cctv5hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://183.207.248.71/cntv/live1/cctv-5/cctv-5 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://183.207.249.35/PLTV/4/224/3221227381/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.243.137/PLTV/3/224/3221227478/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.243.172/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.245.136/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.245.139/PLTV/4/224/3221227298/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.245.170/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) -http://223.110.245.172/PLTV/4/224/3221227298/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv5/HD-2500k-1080P-cctv5 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227401/1.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226224/index.m3u8 -#EXTINF:-1 tvg-id="CCTV5.cn",CCTV-5体育 (1080p) [Timeout] -http://ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225650/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://117.169.120.140:8080/live/cctv-6/.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://183.207.248.37/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://183.207.249.9/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://183.207.249.15/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) -http://223.110.245.173/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/cctv6hd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv6/HD-2500k-1080P-cctv6 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] -http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226226/index.m3u8 -#EXTINF:-1 tvg-id="CCTV6.cn",CCTV-6电影 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=87&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTV7HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (540p) -http://112.25.48.68/live/program/live/cctv7/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225644/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225624/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://117.169.120.140:8080/live/cctv-7/.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://183.207.248.10/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://183.207.248.71/cntv/live1/cctv-7/cctv-7 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://183.207.249.9/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://183.207.249.15/PLTV/3/224/3221225546/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) -http://183.207.249.36/PLTV/4/224/3221227314/index.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=028&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=28&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="CCTV7.cn",CCTV-7国防军事 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_CCTV-8/G_CCTV-8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225631/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://117.169.120.132:8080/live/cctv-8/playlist.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://117.169.120.140:8080/live/cctv-8/.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://183.207.248.12/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://183.207.248.35/PLTV/3/224/3221227205/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://183.207.248.71/cntv/live1/cctv-8/cctv-8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.243.171/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.245.139/PLTV/4/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.245.170/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.245.170/PLTV/3/224/3221227205/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://223.110.245.172/PLTV/4/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=21&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv8/HD-2500k-1080P-cctv8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Offline] -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8 -#EXTINF:-1 tvg-id="CCTV8.cn",CCTV-8电视剧 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226257/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctvjilu_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (360p) [Timeout] -http://125.210.152.18:9090/live/CCTVJLHD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225868/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225646/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) -http://183.207.248.71/cntv/live1/cctv-news/cctv-news -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) -http://183.207.249.6/PLTV/3/224/3221225532/index.m3u8 -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV9.cn",CCTV-9纪录 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (720p) [Timeout] -http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://117.169.120.140:8080/live/cctv-10/.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://183.207.248.71/cntv/live1/cctv-10/cctv-10 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://183.207.249.7/PLTV/3/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://183.207.249.34/PLTV/4/224/3221227317/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) -http://223.110.245.170/PLTV/3/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn" status="online",CCTV-10科教 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225636/index.m3u8 -#EXTINF:-1 tvg-id="CCTV10.cn",CCTV-10科教 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=4&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (360p) [Not 24/7] -http://cctvalih5ca.v.myalicdn.com/live/cctv11_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (540p) -http://112.25.48.68/live/program/live/cctv11/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (720p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225628/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) -http://117.169.120.140:8080/live/cctv-11/.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8 -#EXTINF:-1 tvg-id="CCTV11.cn",CCTV-11戏曲 (1080p) -http://223.110.245.169/PLTV/4/224/3221227384/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (360p) [Offline] -http://cctvalih5ca.v.myalicdn.com/live/cctv12_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (540p) [Timeout] -http://112.25.48.68/live/program/live/cctv12/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (576p) [Offline] -http://183.207.249.5/PLTV/4/224/3221225803/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (720p) [Timeout] -http://125.210.152.18:9090/live/CCTV12HD_H265.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225637/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225629/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://183.207.248.71/cntv/live1/cctv-12/cctv-12 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://183.207.249.7/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://183.207.249.8/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://223.110.245.170/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) -http://223.110.245.172/PLTV/3/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV12.cn",CCTV-12社会与法制 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (360p) -http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (540p) -http://112.25.48.68/live/program/live/cctvxw/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) -http://stream4.jlntv.cn/cctv13/sd/live.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (576p) [Timeout] -http://125.210.152.18:9090/live/CCTV13_750.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (720p) -http://117.169.120.140:8080/live/cctv-13/.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) -http://183.207.248.71/cntv/live1/cctv-13/cctv-13 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) -http://183.207.249.14/PLTV/3/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) -http://183.207.249.36/PLTV/4/224/3221227387/index.m3u8 -#EXTINF:-1 tvg-id="CCTV13.cn",CCTV-13新闻 (1080p) [Not 24/7] -http://223.110.245.170/PLTV/3/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="CCTV15.cn",CCTV-15音乐 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=54&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225908/index.m3u8 -#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225907/index.m3u8 -#EXTINF:-1 tvg-id="CCTV17.cn",CCTV-17农业农村 (1080p) [Offline] -http://117.169.120.160:8080/live/HD-4000k-1080P-cctv17/1.m3u8 -#EXTINF:-1 tvg-id="",CCTV-女性时尚 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8 -#EXTINF:-1 tvg-id="",CCTV-老故事 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8 -#EXTINF:-1 tvg-id="CETV1.cn",CETV1 (576p) -http://183.207.248.71/gitv/live1/G_CETV-1/G_CETV-1 -#EXTINF:-1 tvg-id="CETV2.cn",CETV2 (576p) -http://183.207.248.71/gitv/live1/G_CETV-2/G_CETV-2 -#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) -http://live.cgtn.com/500/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) -http://live.cgtn.com/1000/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=14&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="CGTNArabic.cn",CGTN Arabic (576p) [Not 24/7] -http://livear.cgtn.com/1000a/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNDocumentary.cn",CGTN Documentary (576p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225645/index.m3u8 -#EXTINF:-1 tvg-id="CGTNDocumentary.cn",CGTN Documentary (576p) [Not 24/7] -https://livedoc.cgtn.com/1000d/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNEspanol.cn",CGTN Español (576p) -https://livees.cgtn.com/1000e/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNEspanol.cn",CGTN Español (576p) [Not 24/7] -http://livees.cgtn.com/500e/prog_index.m3u8 -#EXTINF:-1 tvg-id="CGTNFrancais.cn",CGTN Français (576p) [Not 24/7] -https://news.cgtn.com/resource/live/french/cgtn-f.m3u8 -#EXTINF:-1 tvg-id="",CGTN纪录 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225509/index.m3u8 -#EXTINF:-1 tvg-id="",CHC动作电影 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=119&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",CHC高清电影 [Offline] -http://ivi.bupt.edu.cn/hls/chchd.m3u8 -#EXTINF:-1 tvg-id="",CNC中文 (720p) [Not 24/7] -http://source07.v.news.cn/live/CNC_CN/playlist.m3u8 -#EXTINF:-1 tvg-id="",CNC英语 (720p) [Not 24/7] -http://source07.v.news.cn/live/CNC_EN/playlist.m3u8 -#EXTINF:-1 tvg-id="",NewTV中国功夫 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV军事评论 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225535/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV军旅剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225560/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV农业致富 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV动画王国 (1080p) -http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV动画王国 (1080p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV古装剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225524/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV完美遊戲 (1080p) -http://183.207.249.16/PLTV/3/224/3221225539/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV家庭剧场 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225538/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV怡伴健康 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225571/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV搏击 (720p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221226803/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV明星大片 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV武搏世界 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV潮妈辣婆 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225542/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV炫舞未来 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV爱情喜剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225533/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV精品体育 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV精品大剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV精品纪录 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV精品電影 (1080p) -http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV精品電影 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV超级体育 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV超级电影 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV超级电影 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV超级电视剧 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV超级综艺 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8 -#EXTINF:-1 tvg-id="",NewTV金牌综艺 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8 -#EXTINF:-1 tvg-id="SDETV.cn",SDETV (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8 -#EXTINF:-1 tvg-id="",SiTV七彩戏剧 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/qcxj/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV东方财经 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/dfcj/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV全纪实台 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/qjshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV动漫秀场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dmxchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV劲爆体育 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/jbtyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV劲爆体育 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=74&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",SiTV幸福彩 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=73&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",SiTV新视觉 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=75&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",SiTV新视觉台 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/xsjhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV极速汽车 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/jsqchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV欢笑剧场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hxjchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV法治天地 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/fztd/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV游戏风云 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/yxfyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV生活时尚 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/shsshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV都市剧场 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dsjchd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV魅力足球 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/mlyyhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",SiTV魅力足球 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=76&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",TVB 明珠台 (240p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=2&FvSeid=1&Pcontent_id=8114.m3u8&Provider_id=0 -#EXTINF:-1 tvg-id="",TVB明珠台 (480p) [Timeout] -http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",TVB明珠台 (480p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="",TVB明珠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&_res_tag_=video -#EXTINF:-1 tvg-id="",TVB翡翠台 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="TVS2.cn",TVS2 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8 -#EXTINF:-1 tvg-id="",万州三峡移民 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="",万州影视 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="",万州科教 (576p) -http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="",万州综合 (576p) [Not 24/7] -http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="",万盛新闻综合 (576p) [Not 24/7] -http://stream0.tv41.ru/live.m3u8 -#EXTINF:-1 tvg-id="",三明公共 (720p) [Not 24/7] -http://stream.smntv.cn/smtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="",三明新闻综合 (720p) [Not 24/7] -http://stream.smntv.cn/smtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="",三立新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/sllive_fhd.m3u8 -#EXTINF:-1 tvg-id="",上海 ICS外语 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/wypdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海东方卫视 [Offline] -http://ivi.bupt.edu.cn/hls/dfhd.m3u8 -#EXTINF:-1 tvg-id="",上海东方影视 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dsjpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海五星体育 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/ssty/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海卫视 (576p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225856/index.m3u8 -#EXTINF:-1 tvg-id="",上海卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv -#EXTINF:-1 tvg-id="",上海卫视 (1080p) [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8 -#EXTINF:-1 tvg-id="",上海卫视 [Offline] -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="",上海哈哈炫动 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hhxdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海外滩魔眼 [Offline] -rtmp://bililive.kksmg.com/hls/sdi80 -#EXTINF:-1 tvg-id="",上海教育 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/setv/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海教育台 (720p) [Offline] -http://live.setv.sh.cn/slive/shedu02_1200k.m3u8 -#EXTINF:-1 tvg-id="",上海新闻综合 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/xwzhhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海第一财经 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/dycjhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海纪实 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225654/index.m3u8 -#EXTINF:-1 tvg-id="",上海纪实 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225655/index.m3u8 -#EXTINF:-1 tvg-id="",上海这一刻魔都眼 (720p) [Not 24/7] -http://bililive.kksmg.com/hls/sdi80/playlist.m3u8 -#EXTINF:-1 tvg-id="",上海都市 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/ylpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",上海金山电视台 (270p) -http://live.mudu.tv/watch/4zbn2f.m3u8 -#EXTINF:-1 tvg-id="",上虞1新闻综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8 -#EXTINF:-1 tvg-id="",上虞3新商都 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8 -#EXTINF:-1 tvg-id="",上虞經濟文化 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/DNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225500/index.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (576p) -http://183.207.249.15/PLTV/4/224/3221225816/index.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (1080p) -http://112.25.48.68/live/program/live/dnwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (1080p) -http://117.169.120.140:8080/live/dongnanstv/.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (1080p) -http://223.110.254.205:6610/cntv/live1/n-dongnanstv/n-dongnanstv/1.m3u8 -#EXTINF:-1 tvg-id="",东南卫视 (1080p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",东南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",东乡电视台 [Timeout] -http://117.156.28.119/270000001111/1110000131/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225672/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225658/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225659/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://112.25.48.68/live/program/live/hddfws/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://183.207.249.7/PLTV/4/224/3221227396/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://223.110.254.212:6610/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv/1.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Not 24/7] -http://223.110.243.138/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Not 24/7] -http://223.110.243.138/PLTV/3/224/3221227208/index.m3u8 -#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",东方卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",东方影视 (1080p) -http://140.207.241.3:8080/live/program/live/dsjpdhd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",东至影视 (576p) [Not 24/7] -http://223.247.33.124:1935/live/yingshi/playlist.m3u8 -#EXTINF:-1 tvg-id="",东至文化资讯 (576p) [Not 24/7] -http://223.247.33.124:1935/live/wenhua/playlist.m3u8 -#EXTINF:-1 tvg-id="",东至新闻综合 (720p) [Not 24/7] -http://223.247.33.124:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",东莞综合 (480p) -http://dslive.grtn.cn/dgzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",东阳影视生活 [Offline] -http://stream.dybtv.com/yssh/GQ/live.m3u8 -#EXTINF:-1 tvg-id="",东阳新闻综合 [Offline] -http://stream.dybtv.com/xwzh/GQ/live.m3u8 -#EXTINF:-1 tvg-id="",中国交通 (576p) [Offline] -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 -#EXTINF:-1 tvg-id="",中国交通 (576p) [Offline] -http://ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 -#EXTINF:-1 tvg-id="",中国交通 (四川) (360p) [Offline] -https://tv.lanjingfm.com/cctbn/sichuan.m3u8 -#EXTINF:-1 tvg-id="",中国交通 (安徽) [Offline] -https://tv.lanjingfm.com/cctbn/anhui.m3u8 -#EXTINF:-1 tvg-id="",中国交通 (海南) (1080p) [Not 24/7] -https://tv.lanjingfm.com/cctbn/hainan.m3u8 -#EXTINF:-1 tvg-id="",中国天气 (576p) [Not 24/7] -http://112.25.48.68/live/program/live/zgqx/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",中国教育1 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8 -#EXTINF:-1 tvg-id="",中国教育1 (1080p) [Not 24/7] -http://39.134.39.39/PLTV/88888888/224/3221226282/index.m3u8 -#EXTINF:-1 tvg-id="",中国气象 (576p) [Not 24/7] -http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8 -#EXTINF:-1 tvg-id="",中天新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/ztxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",中山公共 (480p) -http://dslive.grtn.cn/zszh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",中山教育 [Offline] -http://149.129.100.78/tv.php?id=zsjy -#EXTINF:-1 tvg-id="",中山综合 [Offline] -http://149.129.100.78/tv.php?id=zszh -#EXTINF:-1 tvg-id="",中牟综合 (360p) [Not 24/7] -http://218.206.193.210:9850/playServer/acquirePlayService?deviceGroup=TV(STB)&drmType=none&kdsplayer=media&nsukey=&op=sovp&playType=catchup&protocol=hls0&redirect=m3u8&resourceId=1000000000000001&type=live -#EXTINF:-1 tvg-id="",中牟综合 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10122-1.m3u8 -#EXTINF:-1 tvg-id="",中視新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/zsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",临沂公共 [Offline] -http://live.ilinyi.net/channels/tvie/linyigonggong/flv:500k/live -#EXTINF:-1 tvg-id="",临沂农科 [Offline] -http://live.ilinyi.net/channels/tvie/linyicaijing/flv:500k/live -#EXTINF:-1 tvg-id="",乐清新闻 [Geo-blocked] -http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_170.m3u8 -#EXTINF:-1 tvg-id="",乐清生活 [Geo-blocked] -http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8 -#EXTINF:-1 tvg-id="",云南 Ⅰ 文山公共台 (1080p) -http://tvdrs.wsrtv.com.cn:8100/channellive/ch2.flv -#EXTINF:-1 tvg-id="",云南 Ⅰ 文山综合台 (1080p) [Not 24/7] -http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv -#EXTINF:-1 tvg-id="",云南 Ⅰ 红河综合台 (1080p) -http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南公共 [Offline] -http://yntvpullhls.ynradio.com/live/yunnangonggong/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (540p) -http://112.25.48.68/live/program/live/ynws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225664/index.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://183.207.248.71/gitv/live1/G_YUNNAN/G_YUNNAN -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://223.110.245.173/PLTV/4/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 -#EXTINF:-1 tvg-id="",云南卫视 (576p) [Not 24/7] -http://183.207.248.71/cntv/live1/yunnanstv/yunnanstv -#EXTINF:-1 tvg-id="",云南卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",云南卫视 (1080p) -https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8 -#EXTINF:-1 tvg-id="",云南国际 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanguoji/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南娱乐 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanyule/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南少儿 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanshaoer/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南生活资讯 [Offline] -http://yntvpullhls.ynradio.com/live/yunnanshenghuo/playlist.m3u8 -#EXTINF:-1 tvg-id="",云南都市 (1080p) [Timeout] -http://39.130.202.81:6610/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8 -#EXTINF:-1 tvg-id="",云南都市 [Offline] -http://yntvpullhls.ynradio.com/live/yunnandushi/playlist.m3u8 -#EXTINF:-1 tvg-id="",云浮综合 (480p) -http://dslive.grtn.cn/yfzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",五星体育 (720p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221226799/index.m3u8 -#EXTINF:-1 tvg-id="",亚太台 (480p) -http://174.127.67.246/live330/playlist.m3u8 -#EXTINF:-1 tvg-id="",交城電視台 (576p) -http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",京视剧场 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227040/index.m3u8 -#EXTINF:-1 tvg-id="",亳州农村 (360p) [Timeout] -http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8 -#EXTINF:-1 tvg-id="",亳州新聞頻道 (360p) -http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8 -#EXTINF:-1 tvg-id="",今日俄罗斯 (720p) [Offline] -https://rt-news-gd.secure2.footprint.net/1103_2500Kb.m3u8 -#EXTINF:-1 tvg-id="",仙桃新聞綜合 (576p) [Offline] -http://221.233.242.239:280/live/71/playlist.m3u8 -#EXTINF:-1 tvg-id="",仙桃生活文體 (576p) [Offline] -http://221.233.242.239:280/live/72/playlist.m3u8 -#EXTINF:-1 tvg-id="",优漫卡通 (576p) -http://183.207.249.15/PLTV/4/224/3221225933/index.m3u8 -#EXTINF:-1 tvg-id="",优漫卡通 (576p) -http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8 -#EXTINF:-1 tvg-id="",优视 (720p) -http://1-fss24-s0.streamhoster.com/lv_uchannel/_definst_/broadcast1/chunklist.m3u8 -#EXTINF:-1 tvg-id="",优视 (720p) [Not 24/7] -http://1-fss24-s0.streamhoster.com/lv_uchannel/broadcast1/playlist.m3u8 -#EXTINF:-1 tvg-id="",余姚姚江文化 (576p) -http://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8 -#EXTINF:-1 tvg-id="",余姚新闻综合 (576p) -http://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8 -#EXTINF:-1 tvg-id="",佛山公共 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",佛山公共 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",侨乡 (1080p) -http://stream.jinjiang.tv/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",內蒙古卫视 (1080p) [Offline] -http://live.m2oplus.nmtv.cn/1/playlist.m3u8 -#EXTINF:-1 tvg-id="",六安公共 (720p) [Offline] -http://live.china-latv.com/channel2/playlist.m3u8 -#EXTINF:-1 tvg-id="",六安新闻综合 (720p) [Not 24/7] -http://live.china-latv.com/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="",兵团卫视 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/btws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",兵团卫视 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=050&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="",内江公共 (720p) -http://njzb.scnj.tv:90/live/gggy_gggy800.m3u8 -#EXTINF:-1 tvg-id="",内江科教 (720p) -http://njzb.scnj.tv:90/live/kjpd_kjpd800.m3u8 -#EXTINF:-1 tvg-id="",内江综合 (720p) -http://njzb.scnj.tv:90/live/xwzh_xwzh800.m3u8 -#EXTINF:-1 tvg-id="",内蒙卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225577/index.m3u8 -#EXTINF:-1 tvg-id="",内蒙古 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8 -#EXTINF:-1 tvg-id="",内蒙古卫视 (480p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=17&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225577/index.m3u8 -#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225667/index.m3u8 -#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) -http://117.169.120.140:8080/live/neimenggustv/.m3u8 -#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) -http://183.207.248.71/gitv/live1/G_NEIMENGGU/G_NEIMENGGU -#EXTINF:-1 tvg-id="",内蒙古卫视 (576p) -http://223.110.245.173/PLTV/4/224/3221225836/index.m3u8 -#EXTINF:-1 tvg-id="",内蒙蒙语 (240p) -http://stream.nmtv.cn/3/sd/live.m3u8 -#EXTINF:-1 tvg-id="",农安新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/naxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (240p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=190&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",凤凰中文 (576p) [Timeout] -http://125.210.152.18:9090/live/FHZW_1200.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (720p) -http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (720p) -http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (720p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/fhchinese/1.m3u8 -#EXTINF:-1 tvg-id="",凤凰中文 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhchinese/1.m3u8 -#EXTINF:-1 tvg-id="",凤凰电影 [Offline] -https://www.fanmingming.cn/hls/fhdy.m3u8 -#EXTINF:-1 tvg-id="",凤凰资讯 (576p) [Timeout] -http://125.210.152.18:9090/live/FHZX_1200.m3u8 -#EXTINF:-1 tvg-id="",凤凰资讯 (720p) -http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰资讯 (720p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰资讯 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhzixun/1.m3u8 -#EXTINF:-1 tvg-id="",凤凰香港 (720p) -http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8 -#EXTINF:-1 tvg-id="",凤凰香港 (720p) [Timeout] -http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8 -#EXTINF:-1 tvg-id="",凤台文化生活 (576p) [Not 24/7] -http://60.175.115.119:1935/live/wenhua/playlist.m3u8 -#EXTINF:-1 tvg-id="",凤台综合 (576p) [Not 24/7] -http://60.175.115.119:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",利川公共 (180p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w1847269952_b204800.m3u8 -#EXTINF:-1 tvg-id="",利川公共 (576p) [Geo-blocked] -http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8 -#EXTINF:-1 tvg-id="",利川新闻综合 (480p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w439903609_b1228800.m3u8 -#EXTINF:-1 tvg-id="",前郭综合 [Geo-blocked] -http://stream2.jlntv.cn/qg/sd/live.m3u8 -#EXTINF:-1 tvg-id="",动作电影 (1080p) [Timeout] -http://39.134.19.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8 -#EXTINF:-1 tvg-id="",动画王国 (1080p) -http://183.207.248.71/cntv/live1/donghuawg/donghuawg -#EXTINF:-1 tvg-id="",北京10少儿 [Offline] -http://ivi.bupt.edu.cn/hls/btv10.m3u8 -#EXTINF:-1 tvg-id="",北京体育 (1080p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=158&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",北京冬奥纪实 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=158&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",北京卡酷少儿 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225562/index.m3u8 -#EXTINF:-1 tvg-id="",北京卡酷少儿 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=108&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",北京卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_BEIJING/G_BEIJING -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225673/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225674/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://183.207.248.71/cntv/live1/beijingstv/beijingstv -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://183.207.249.7/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://183.207.249.8/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227246/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227390/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://223.110.245.173/PLTV/4/224/3221227390/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/bjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",北京卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",北京卫视 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv1.m3u8 -#EXTINF:-1 tvg-id="",北京家有购物 (720p) -http://39.134.66.66/PLTV/88888888/224/3221225554/index.m3u8 -#EXTINF:-1 tvg-id="",北京影視 [Offline] -http://ivi.bupt.edu.cn/hls/btv4.m3u8 -#EXTINF:-1 tvg-id="",北京文藝 [Offline] -http://ivi.bupt.edu.cn/hls/btv2.m3u8 -#EXTINF:-1 tvg-id="",北京新聞 [Offline] -http://ivi.bupt.edu.cn/hls/btv9.m3u8 -#EXTINF:-1 tvg-id="",北京生活 [Offline] -http://ivi.bupt.edu.cn/hls/btv7.m3u8 -#EXTINF:-1 tvg-id="",北京科教 [Offline] -http://ivi.bupt.edu.cn/hls/btv3.m3u8 -#EXTINF:-1 tvg-id="",北京紀實 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225675/index.m3u8 -#EXTINF:-1 tvg-id="",北京紀實 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225676/index.m3u8 -#EXTINF:-1 tvg-id="",北京衛視 (1080p) [Geo-blocked] -http://14.152.88.77/liveplay-kk.rtxapp.com/live/program/live/bjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",北京财经 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv5.m3u8 -#EXTINF:-1 tvg-id="",北京青年 [Not 24/7] -http://ivi.bupt.edu.cn/hls/btv8.m3u8 -#EXTINF:-1 tvg-id="",北碚综合 (576p) -http://222.178.181.121:12034/beibei01.m3u8 -#EXTINF:-1 tvg-id="",半岛新闻 (1080p) -https://live-hls-web-aje.getaj.net/AJE/01.m3u8 -#EXTINF:-1 tvg-id="",华亭电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000148/index.m3u8 -#EXTINF:-1 tvg-id="",华数 (720p) [Not 24/7] -http://hls-ott-zhibo.wasu.tv/live/442/index.m3u8 -#EXTINF:-1 tvg-id="",南京信息 (720p) -http://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京十八 (576p) -http://183.207.248.71/gitv/live1/G_NJSB/G_NJSB -#EXTINF:-1 tvg-id="",南京十八 (720p) -http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京娱乐 (720p) -http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京少儿 (720p) [Not 24/7] -http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京影视 [Offline] -http://live.nbs.cn/channels/njtv/yspd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京教科 (576p) -http://183.207.248.71/gitv/live1/G_NJJK/G_NJJK -#EXTINF:-1 tvg-id="",南京教科 (576p) -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8 -#EXTINF:-1 tvg-id="",南京教科 (720p) [Not 24/7] -http://live.nbs.cn/channels/njtv/jkpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京新闻综合 (720p) -http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南京生活 (720p) -http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8 -#EXTINF:-1 tvg-id="",南召一套 (576p) [Not 24/7] -http://hnnz.chinashadt.com:1935/live/1002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",南宁公共 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_PUB_A.m3u8 -#EXTINF:-1 tvg-id="",南宁影视娱乐 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_VOD_A.m3u8 -#EXTINF:-1 tvg-id="",南宁新闻综合 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_NEWS_A.m3u8 -#EXTINF:-1 tvg-id="",南宁都市生活 (720p) [Not 24/7] -http://hls.nntv.cn/nnlive/NNTV_METRO_A.m3u8 -#EXTINF:-1 tvg-id="",南川新闻综合 (360p) -http://221.5.213.4:30000/1111.m3u8 -#EXTINF:-1 tvg-id="",南川新闻综合 (360p) [Not 24/7] -http://nanchuanlive.cbg.cn:30000/1111.m3u8 -#EXTINF:-1 tvg-id="",南川旅游经济 (360p) [Offline] -http://221.5.213.4:30000/2222.m3u8 -#EXTINF:-1 tvg-id="",南川旅游经济 (360p) [Offline] -http://nanchuanlive.cbg.cn:30000/2222.m3u8 -#EXTINF:-1 tvg-id="",南方卫视 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=51 -#EXTINF:-1 tvg-id="",南方卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",南方购物 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=42 -#EXTINF:-1 tvg-id="",南通公共 [Offline] -http://149.129.100.78/nantong.php?id=gg -#EXTINF:-1 tvg-id="",南通教育 [Offline] -http://149.129.100.78/nantong.php?id=sj -#EXTINF:-1 tvg-id="",南通文化旅游 [Offline] -http://149.129.100.78/nantong.php?id=ly -#EXTINF:-1 tvg-id="",南通新闻综合 [Offline] -http://149.129.100.78/nantong.php?id=zh -#EXTINF:-1 tvg-id="",南阳新闻 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8 -#EXTINF:-1 tvg-id="",南陽公共頻道 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8 -#EXTINF:-1 tvg-id="",南陽科教頻道 (1080p) [Not 24/7] -http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8 -#EXTINF:-1 tvg-id="",博州汉语综合 [Offline] -http://klmyyun.chinavas.com/hls/bozhou1.m3u8 -#EXTINF:-1 tvg-id="",博州维语综合 [Offline] -http://klmyyun.chinavas.com/hls/bozhou3.m3u8 -#EXTINF:-1 tvg-id="",厦门卫视 (540p) [Not 24/7] -http://112.25.48.68/live/program/live/xmws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",厦门卫视 (576p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8 -#EXTINF:-1 tvg-id="",双峰电视一套 (360p) -http://hnsf.chinashadt.com:2036/zhuanma/tv1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",发现之旅 (576p) [Timeout] -http://125.210.152.18:9090/live/FXZL_750.m3u8 -#EXTINF:-1 tvg-id="",台視新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/tsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",吉州新聞綜合 (1080p) -http://218.204.153.158/10.m3u8 -#EXTINF:-1 tvg-id="",吉林7 (900p) [Not 24/7] -http://stream1.jlntv.cn/fzpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (240p) [Not 24/7] -http://stream4.jlntv.cn/test2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/JLWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (540p) -http://112.25.48.68/live/program/live/jlws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (576p) -http://117.169.120.140:8080/live/jilinstv/.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (576p) -http://183.207.249.7/PLTV/4/224/3221225883/index.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 -#EXTINF:-1 tvg-id="",吉林卫视 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",吉林卫视 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",吉林市新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/jilin1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",吉林乡村 (900p) [Not 24/7] -http://stream1.jlntv.cn/xcpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",吴江新闻综合 (720p) [Not 24/7] -http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8 -#EXTINF:-1 tvg-id="",周口图文信息 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live4/mp4:ch4-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="",周口影视 [Offline] -http://hls.haokan.bdstatic.com/haokan/stream_bduid_1646578943_0.m3u8 -#EXTINF:-1 tvg-id="",周口新闻综合 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live1/mp4:ch1-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="",周口科教文化2 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live3/mp4:ch3-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="",周口经济生活2 (576p) [Not 24/7] -http://tv.zkxww.com:1935/live2/mp4:ch2-500k/playlist.m3u8 -#EXTINF:-1 tvg-id="",呼伦贝尔新闻 (720p) [Not 24/7] -http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",呼伦贝尔生活资讯 (720p) [Not 24/7] -http://live1.hrtonline.cn:1935/live/live102/500K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",和政电视台 [Timeout] -http://117.156.28.119/270000001111/1110000149/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225613/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225619/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225620/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Not 24/7] -http://39.134.66.66/PLTV/88888888/224/3221225617/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225615/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225618/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225621/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225622/index.m3u8 -#EXTINF:-1 tvg-id="",咪咕视频 (1080p) [Timeout] -http://39.134.66.66/PLTV/88888888/224/3221225638/index.m3u8 -#EXTINF:-1 tvg-id="",哈哈炫动卫视 (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s50/index2.m3u8 -#EXTINF:-1 tvg-id="",哈哈炫动卫视 (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s50/index.m3u8 -#EXTINF:-1 tvg-id="",唯心電視 (480p) -http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="",嘉佳卡通 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=66 -#EXTINF:-1 tvg-id="",嘉佳卡通 (576p) -http://223.110.245.139/PLTV/4/224/3221227009/index.m3u8 -#EXTINF:-1 tvg-id="",嘉佳卡通 (广东) (540p) [Not 24/7] -http://112.25.48.68/live/program/live/jjkt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 四川影视台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv5/index.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 四川新闻台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv4/index.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 四川经济台 (720p) [Timeout] -http://scgctvshow.sctv.com/hdlive/sctv3/index.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 巴中综合台 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.flv -#EXTINF:-1 tvg-id="",四川 Ⅰ 星空购物台 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv6/index.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州公共 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv2.flv -#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州科技 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv3.flv -#EXTINF:-1 tvg-id="",四川 Ⅰ 泸州综合 [Offline] -http://tvdrs.weblz.com.cn:8100/channellive/lztv1.flv -#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳公共 [Offline] -http://live.826pc.com/mytv/live.php?id=3 -#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳科技 [Offline] -http://live.826pc.com/mytv/live.php?id=2 -#EXTINF:-1 tvg-id="",四川 Ⅰ 绵阳综合 [Offline] -http://live.826pc.com/mytv/live.php?id=4 -#EXTINF:-1 tvg-id="",四川 Ⅰ 达州公共台 (720p) [Not 24/7] -http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel36/playlist.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 达州综合台 (720p) [Not 24/7] -http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel35/playlist.m3u8 -#EXTINF:-1 tvg-id="",四川 Ⅰ 雅安公共 (720p) -http://flv.drs.tv.yatv.tv:8080/channellive/gonggong.flv -#EXTINF:-1 tvg-id="",四川 Ⅰ 雅安综合 (720p) -http://flv.drs.tv.yatv.tv:8080/channellive/xinwen.flv -#EXTINF:-1 tvg-id="",四川公共 (720p) -http://scgctvshow.sctv.com/hdlive/sctv9/index.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/SCWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (540p) -http://112.25.48.68/live/program/live/scws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225733/index.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (576p) -http://183.207.248.71/gitv/live1/SCWS/SCWS -#EXTINF:-1 tvg-id="",四川卫视 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (576p) [Timeout] -http://183.207.249.36/PLTV/4/224/3221225814/index.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (720p) -http://scgctvshow.sctv.com/scgc/sctv1deu5453w/1.m3u8 -#EXTINF:-1 tvg-id="",四川卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=3&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",四川妇女儿童 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/sctv7/index.m3u8 -#EXTINF:-1 tvg-id="",四川康巴卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225527/index.m3u8 -#EXTINF:-1 tvg-id="",四川文化旅游 (720p) -http://scgctvshow.sctv.com/hdlive/sctv2/index.m3u8 -#EXTINF:-1 tvg-id="",四平新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/sptv/sd/live.m3u8 -#EXTINF:-1 tvg-id="",国外MTV (720p) [Offline] -https://vcndstv.teleosmedia.com/stream/dstv/sunburn/seglist_720p.m3u8 -#EXTINF:-1 tvg-id="",增城綜合 (1080p) -http://202.168.164.38:8083/videos/live/19/27/QEQXMtU5AUpwo/QEQXMtU5AUpwo.m3u8 -#EXTINF:-1 tvg-id="",大冶一套 [Geo-blocked] -http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8 -#EXTINF:-1 tvg-id="",大冶二套 [Geo-blocked] -http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8 -#EXTINF:-1 tvg-id="",大悟综合 [Geo-blocked] -http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8 -#EXTINF:-1 tvg-id="",大愛1 (720p) -https://pulltv1.wanfudaluye.com/live/tv1.m3u8 -#EXTINF:-1 tvg-id="",大爱海外 (720p) [Offline] -https://pulltv3.wanfudaluye.com/live/tv3.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (576p) -http://183.207.249.12/PLTV/4/224/3221225808/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225665/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225698/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://112.25.48.68/live/program/live/tjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://117.169.120.140:8080/live/hdtianjinstv/.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://223.110.243.170/PLTV/3/224/3221227212/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227212/index.m3u8 -#EXTINF:-1 tvg-id="" status="online",天津卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225739/index.m3u8 -#EXTINF:-1 tvg-id="",天津卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",天津卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",奇妙電視 (720p) -http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8 -#EXTINF:-1 tvg-id="",奥视卫星 (720p) [Not 24/7] -http://61.244.22.5/ch3/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",女性时尚 (576p) -http://223.110.245.169/PLTV/4/224/3221227026/index.m3u8 -#EXTINF:-1 tvg-id="",如东新闻综合 (480p) [Not 24/7] -http://live.rdxmt.com/channels/rudong/news/flv:sd/live -#EXTINF:-1 tvg-id="",孝義新聞綜合 (576p) -http://app.xygdcm.com:2036/live/stream:xy1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",孟州电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10883-1.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (540p) -http://112.25.48.68/live/program/live/nxws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://39.134.65.162/PLTV/88888888/224/3221225579/index.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://117.169.120.140:8080/live/ningxiastv/.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://183.207.248.11/PLTV/4/224/3221225842/index.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8 -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_NINGXIA/G_NINGXIA -#EXTINF:-1 tvg-id="",宁夏卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",宁波少儿 (360p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=5 -#EXTINF:-1 tvg-id="",宁波影视剧 (360p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=4 -#EXTINF:-1 tvg-id="",宁波教育科技 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=6 -#EXTINF:-1 tvg-id="",宁波新闻综合 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=1 -#EXTINF:-1 tvg-id="",宁波经济生活 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=2 -#EXTINF:-1 tvg-id="",宁波都市文体 (540p) [Not 24/7] -http://149.129.100.78/ningbo.php?id=3 -#EXTINF:-1 tvg-id="",安徽 Ⅰ 淮北公共 (720p) -http://live.0561rtv.cn/ggpd/hd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽 Ⅰ 淮北综合 (720p) -http://live.0561rtv.cn/xwzh/hd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽 Ⅰ 郎溪综合台 (1080p) -http://117.70.93.210:1935/live/xinwen/playlist.m3u8 -#EXTINF:-1 tvg-id="",安徽 Ⅰ 铜陵公共 (720p) -http://dstpush1.retalltech.com/app/stream2.m3u8 -#EXTINF:-1 tvg-id="",安徽 Ⅰ 铜陵综合 (720p) -http://dstpush1.retalltech.com/app/stream1.m3u8 -#EXTINF:-1 tvg-id="",安徽人物 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=69 -#EXTINF:-1 tvg-id="",安徽公共 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=50 -#EXTINF:-1 tvg-id="",安徽农业科教 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=51 -#EXTINF:-1 tvg-id="",安徽卫视 (576p) -http://183.207.249.5/PLTV/4/224/3221225800/index.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8 -#EXTINF:-1 tvg-id="" status="online",安徽卫视 (576p) -http://183.207.248.71/gitv/live1/AHWS/AHWS -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225691/index.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225737/index.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=2&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://183.207.249.15/PLTV/3/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) -http://223.110.254.203:6610/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv/1.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/anhuistv/anhuistv -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Not 24/7] -http://zbbf2.ahtv.cn/live/749.m3u8 -#EXTINF:-1 tvg-id="",安徽卫视 (1080p) [Timeout] -http://112.25.48.68/live/program/live/ahwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",安徽小说评书广播 [Geo-blocked] -http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽影视 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=72 -#EXTINF:-1 tvg-id="",安徽戏曲广播 [Geo-blocked] -http://stream2.ahrtv.cn/xnxq/sd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽新闻综合广播 [Geo-blocked] -http://stream2.ahrtv.cn/xnxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽旅游广播 [Geo-blocked] -http://stream2.ahrtv.cn/lygb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",安徽综艺体育 (480p) [Not 24/7] -http://149.129.100.78/anhui.php?id=73 -#EXTINF:-1 tvg-id="",完美游戏 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/wmyx/wmyx -#EXTINF:-1 tvg-id="",宜兴新闻 (720p) -http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8 -#EXTINF:-1 tvg-id="",宜兴电视紫砂 (720p) -http://live-dft-hls-yf.jstv.com/live/yixing_zs/online.m3u8 -#EXTINF:-1 tvg-id="",宜昌公共 [Offline] -http://149.129.100.78/yichang.php?id=ggpd -#EXTINF:-1 tvg-id="",宜昌旅游生活 [Offline] -http://149.129.100.78/yichang.php?id=lysw -#EXTINF:-1 tvg-id="",宜昌综合 [Offline] -http://149.129.100.78/yichang.php?id=zhpd -#EXTINF:-1 tvg-id="",宜章新闻综合 (576p) -http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",宜章社会法制 (576p) -http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",家庭影院 (1080p) [Timeout] -http://39.134.19.153/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8 -#EXTINF:-1 tvg-id="",家庭理财 (576p) -http://223.110.245.139/PLTV/4/224/3221227011/index.m3u8 -#EXTINF:-1 tvg-id="",家有购物 (720p) [Not 24/7] -http://183.207.248.71/cntv/live1/SD-1500k-576P-jiayougw/SD-1500k-576P-jiayougw -#EXTINF:-1 tvg-id="",宿州公共 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-ggpd/index.m3u8 -#EXTINF:-1 tvg-id="",宿州新闻综合 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-szzh/index.m3u8 -#EXTINF:-1 tvg-id="",宿州科教 (1080p) [Not 24/7] -http://live.ahsz.tv/video/s10001-kxjy/index.m3u8 -#EXTINF:-1 tvg-id="",宿迁公共 (480p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221226939/index.m3u8 -#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台影视台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=5 -#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=2 -#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=3 -#EXTINF:-1 tvg-id="",山东 Ⅰ 烟台综合台 (720p) [Offline] -http://player.200877926.top/hogejump/yantai.php?id=4 -#EXTINF:-1 tvg-id="",山东体育 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/typd.m3u8 -#EXTINF:-1 tvg-id="",山东农科 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/nkpd.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/SDWS/SDWS -#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] -http://183.207.249.7/PLTV/4/224/3221225804/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (576p) [Offline] -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225804/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/SDWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225697/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225738/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://117.169.120.140:8080/live/hdshandongstv/.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227258/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227448/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://223.110.254.207:6610/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv/1.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8 -#EXTINF:-1 tvg-id="",山东卫视 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",山东卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",山东少儿 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/sepd.m3u8 -#EXTINF:-1 tvg-id="",山东居家购物 (360p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/gwpd.m3u8 -#EXTINF:-1 tvg-id="",山东影视 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/yspd.m3u8 -#EXTINF:-1 tvg-id="",山东教育 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225558/index.m3u8 -#EXTINF:-1 tvg-id="",山东新闻 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/ggpd.m3u8 -#EXTINF:-1 tvg-id="",山东生活 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/shpd.m3u8 -#EXTINF:-1 tvg-id="",山东综艺 (406p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/zypd.m3u8 -#EXTINF:-1 tvg-id="",山东齐鲁 (1080p) [Geo-blocked] -http://livealone302.iqilu.com/iqilu/qlpd.m3u8 -#EXTINF:-1 tvg-id="",山西 Ⅰ 朔州新闻台 (10p) [Not 24/7] -http://stream.sxsztv.com/live4/sd/live.m3u8 -#EXTINF:-1 tvg-id="",山西优购物 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=55&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",山西公共 [Offline] -http://149.129.100.78/tv.php?id=sxgg -#EXTINF:-1 tvg-id="",山西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8 -#EXTINF:-1 tvg-id="",山西卫视 (576p) -http://117.169.120.140:8080/live/shanxistv/.m3u8 -#EXTINF:-1 tvg-id="",山西卫视 (576p) [Offline] -http://125.210.152.10:8060/live/SXWS.m3u8 -#EXTINF:-1 tvg-id="",山西卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=144&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",山西影视 [Offline] -http://149.129.100.78/tv.php?id=sxys -#EXTINF:-1 tvg-id="",山西社会与法治 [Offline] -http://149.129.100.78/tv.php?id=sxkj -#EXTINF:-1 tvg-id="",山西经济与科技 [Offline] -http://149.129.100.78/tv.php?id=sxjjzx -#EXTINF:-1 tvg-id="",岭南戏曲 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=15 -#EXTINF:-1 tvg-id="",岳西圖文頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/tuwen/playlist.m3u8 -#EXTINF:-1 tvg-id="",岳西影視頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/yingshi/playlist.m3u8 -#EXTINF:-1 tvg-id="",岳西綜合頻道 (576p) [Not 24/7] -http://58.243.4.22:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",岳阳公共 (576p) -http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-2F5F-FA96-1887C72E55CE&auth=654837809071524@615@2E9A5FD0B225B012E3178551CF3754A8 -#EXTINF:-1 tvg-id="",岷县电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000130/index.m3u8 -#EXTINF:-1 tvg-id="",嵊州综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8 -#EXTINF:-1 tvg-id="",已下线 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",巴中公共 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/hddongfangstv/1.m3u8 -#EXTINF:-1 tvg-id="",巴中公共 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8 -#EXTINF:-1 tvg-id="",巴中综合 (1080p) [Not 24/7] -http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8 -#EXTINF:-1 tvg-id="",平乡电视台 (576p) -http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 佛山三水区 (404p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sspd.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 佛山南海区 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_nhpd.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 佛山高明区 (404p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_gmpd.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 岭南戏曲台 (540p) -http://szlive.grtn.cn/lnxq/sd/live.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 清新综合台 (1080p) -http://hls.wiseqx.com/live/qxzh.m3u8 -#EXTINF:-1 tvg-id="",广东 ‖ 高尔夫 (480p) -http://szlive.grtn.cn/grfpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山公共台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_ggpd.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山影视台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_yspd.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山综合台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_zhpd.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 佛山顺德台 (720p) [Offline] -http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sdpd.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 潮安综合 (360p) -http://chaoan.chaoantv.com:8278/chaoanzonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 韶关公共台 (720p) [Not 24/7] -https://www.sgmsw.cn/videos/tv/201805/1308/9P424TC5M000AFO13CXK6GN6BOA889D2/hls/live.m3u8 -#EXTINF:-1 tvg-id="",广东 Ⅰ 韶关综合台 (720p) [Not 24/7] -https://www.sgmsw.cn/videos/tv/201805/1308/SB05RIYZOU8JR418AUQOF62CAJQ08D0E/hls/live.m3u8 -#EXTINF:-1 tvg-id="",广东体育 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=47 -#EXTINF:-1 tvg-id="",广东体育 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东体育 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东公共 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=85&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东南方卫视地面 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225701/index.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225742/index.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://112.25.48.68/live/program/live/gdwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://223.110.243.136/PLTV/3/224/3221227249/index.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227249/index.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://223.110.245.172/PLTV/4/224/3221227399/index.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) -http://223.110.254.195:6610/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv/1.m3u8 -#EXTINF:-1 tvg-id="",广东卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=43&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东嘉佳卡通 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=130&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东国际 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=46 -#EXTINF:-1 tvg-id="",广东少儿 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=54 -#EXTINF:-1 tvg-id="",广东少儿 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=83&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东影视 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=53 -#EXTINF:-1 tvg-id="",广东影视 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=86&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东房产 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=67 -#EXTINF:-1 tvg-id="",广东文化 (720p) [Not 24/7] -http://149.129.100.78/guangdong.php?id=75 -#EXTINF:-1 tvg-id="",广东新闻 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=45 -#EXTINF:-1 tvg-id="",广东新闻 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=84&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东珠江 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=44 -#EXTINF:-1 tvg-id="",广东珠江 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东移动 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=74 -#EXTINF:-1 tvg-id="",广东经济科教 (540p) [Offline] -http://149.129.100.78/guangdong.php?id=49 -#EXTINF:-1 tvg-id="",广东经济科教 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广东综艺 (720p) [Offline] -http://149.129.100.78/guangdong.php?id=16 -#EXTINF:-1 tvg-id="",广东综艺 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州南国都市 (1080p) [Offline] -http://149.129.100.78/gztv.php?id=shenghuo -#EXTINF:-1 tvg-id="",广州影视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州影视 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=yingshi -#EXTINF:-1 tvg-id="",广州影视 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/yingshi -#EXTINF:-1 tvg-id="",广州新闻 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=xinwen -#EXTINF:-1 tvg-id="",广州新闻 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/xinwen -#EXTINF:-1 tvg-id="",广州新闻 (720p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=00&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州新闻 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州法治 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州法治 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=fazhi -#EXTINF:-1 tvg-id="",广州法治 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/fazhi -#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=jingsai -#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/jingsai -#EXTINF:-1 tvg-id="",广州竞赛 (720p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=0&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州竞赛 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=52&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州综合 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广州综合 (720p) [Not 24/7] -http://149.129.100.78/gztv.php?id=zhonghe -#EXTINF:-1 tvg-id="",广州综合 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Chinese/zhonghe -#EXTINF:-1 tvg-id="",广州综合 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=81&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广水新闻综合 [Geo-blocked] -http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8 -#EXTINF:-1 tvg-id="",广视网 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",广西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8 -#EXTINF:-1 tvg-id="",广西卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=138&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",康巴卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227008/index.m3u8 -#EXTINF:-1 tvg-id="",康巴卫视 (720p) [Not 24/7] -http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8 -#EXTINF:-1 tvg-id="",延安1台 [Offline] -http://stream2.liveyun.hoge.cn/YATV1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",延安2台 [Offline] -http://stream2.liveyun.hoge.cn/YATV2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",延边卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="",延边卫视 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="",延边卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 -#EXTINF:-1 tvg-id="",延边卫视 (720p) -http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8 -#EXTINF:-1 tvg-id="",延边新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/jlyb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",建安电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/11003-1.m3u8 -#EXTINF:-1 tvg-id="",开州综合 (720p) -http://kaixianlive.cbg.cn:10345/1.m3u8 -#EXTINF:-1 tvg-id="",弈坛春秋 (576p) -http://223.110.245.139/PLTV/4/224/3221227031/index.m3u8 -#EXTINF:-1 tvg-id="",张家口一套 (720p) [Not 24/7] -http://nlive.zjkgdcs.com:8091/live/xwzhpd.m3u8 -#EXTINF:-1 tvg-id="",张家港新闻综合 (720p) -http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8 -#EXTINF:-1 tvg-id="",张家港社会生活 (720p) -http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8 -#EXTINF:-1 tvg-id="",张家界1 (240p) [Not 24/7] -http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8 -#EXTINF:-1 tvg-id="",张家界2台 (240p) [Not 24/7] -http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8 -#EXTINF:-1 tvg-id="",彭水文化旅游 (288p) -http://pengshuilive.cbg.cn/pengshui02.m3u8 -#EXTINF:-1 tvg-id="",彭水新闻综合 (288p) [Timeout] -http://pengshuilive.cbg.cn/pengshui01.m3u8 -#EXTINF:-1 tvg-id="",徐州-1 (1080p) -http://183.207.249.15/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="",徐州-3 (1080p) -http://183.207.249.7/PLTV/3/224/3221225949/index.m3u8 -#EXTINF:-1 tvg-id="",徐州-3 (1080p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225949/index.m3u8 -#EXTINF:-1 tvg-id="",徐州-4 (1080p) -http://183.207.249.15/PLTV/3/224/3221225951/index.m3u8 -#EXTINF:-1 tvg-id="",徐州公共頻道 (720p) -http://stream1.huaihai.tv/ggpd/playlist.m3u8 -#EXTINF:-1 tvg-id="",徐州公共頻道 (1080p) -http://183.207.248.11/PLTV/3/224/3221225951/index.m3u8 -#EXTINF:-1 tvg-id="",徐州影视 (720p) -http://stream1.huaihai.tv/wyys/playlist.m3u8 -#EXTINF:-1 tvg-id="",徐州新聞綜合 (720p) -http://stream1.huaihai.tv/xwzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",徐州新聞綜合 (1080p) -http://183.207.248.11/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="",徐州新聞綜合 (1080p) -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225945/index.m3u8 -#EXTINF:-1 tvg-id="",徐州生活 (240p) -http://stream1.huaihai.tv/jjsh/playlist.m3u8 -#EXTINF:-1 tvg-id="",徐州經濟生活 (1080p) -http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221225947/index.m3u8 -#EXTINF:-1 tvg-id="",徐州贾汪旅游 (576p) -http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221227389/index.m3u8 -#EXTINF:-1 tvg-id="",德州公共 (480p) [Offline] -http://video.dztv.tv:1935/live/dzgg_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州公共 (576p) [Offline] -http://video.dztv.tv:1935/live/dzgg_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州公共 (1080p) [Offline] -http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州图文 (360p) [Offline] -http://video.dztv.tv:1935/live/dztw_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州图文 (576p) [Offline] -http://video.dztv.tv:1935/live/dztw_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州图文 (720p) [Offline] -http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州新闻 (480p) [Offline] -http://video.dztv.tv:1935/live/xwzh_sj/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州新闻 (576p) [Offline] -http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州新闻 (1080p) [Offline] -http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="",德州都市 [Offline] -http://video.dztv.tv:1935/live/dspd_gq/playlist.m3u8 -#EXTINF:-1 tvg-id="",心约之声公益广播 [Not 24/7] -http://4521.hlsplay.aodianyun.com/xyzs/stream.m3u8 -#EXTINF:-1 tvg-id="",忍者神龟 (480p) -http://www.alibabapictures.com/movies/shenggui/poyingerchu.mp4 -#EXTINF:-1 tvg-id="",忠县文旅 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_36.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",忠县综合 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",怀旧经典台 [Offline] -http://hls.haokan.bdstatic.com/haokan/stream_bduid_1868968677_0.m3u8 -#EXTINF:-1 tvg-id="",惠州公共 (1080p) -http://livehuiz.chinamcache.com/live/zb02.m3u8 -#EXTINF:-1 tvg-id="",惠州新闻综合 (480p) -http://dslive.grtn.cn/hzzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",惠州新闻综合 (1080p) -http://livehuiz.chinamcache.com/live/zb01.m3u8 -#EXTINF:-1 tvg-id="CDTV5.cn",成都公共 (360p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=5 -#EXTINF:-1 tvg-id="",成都大熊猫 (1080p) [Not 24/7] -https://gcbsc.v.live.baishancdnx.cn/gc/xiongmao03_1/index.m3u8?contentid=2820180516001 -#EXTINF:-1 tvg-id="CDTV6.cn",成都少儿 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=6 -#EXTINF:-1 tvg-id="CDTV4.cn",成都影视 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=45 -#EXTINF:-1 tvg-id="CDTV1.cn",成都新闻综合 (450p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=1 -#EXTINF:-1 tvg-id="CDTV2.cn",成都经济 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=2 -#EXTINF:-1 tvg-id="CDTV3.cn",成都都市 (480p) [Not 24/7] -http://149.129.100.78/cdtv.php?id=3 -#EXTINF:-1 tvg-id="",房山电视台 (576p) -https://live.funhillrm.com/2/playlist.m3u8 -#EXTINF:-1 tvg-id="",扬州公共 [Offline] -http://149.129.100.78/yangzhou.php?id=236 -#EXTINF:-1 tvg-id="",扬州教育 [Offline] -http://149.129.100.78/yangzhou.php?id=291 -#EXTINF:-1 tvg-id="",抚州公共 (270p) -http://111.75.179.195:30767/video/live_vide2.m3u8 -#EXTINF:-1 tvg-id="",揭阳综合 (540p) -http://dslive.grtn.cn/jyzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",撫州綜合頻道 (270p) [Not 24/7] -http://111.75.179.195:30767/video/live_vide.m3u8 -#EXTINF:-1 tvg-id="",敦煌电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000028/index.m3u8 -#EXTINF:-1 tvg-id="",文山综合 (1080p) [Not 24/7] -http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8 -#EXTINF:-1 tvg-id="",文水新聞綜合 (360p) [Offline] -http://sxws.chinashadt.com:1938/live/tv10.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",文水時尚秀 (360p) [Offline] -http://sxws.chinashadt.com:1938/live/tv11.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",斗鱼电影2 (1080p) -http://tx2play1.douyucdn.cn/live/20415rnWbjg6Ex1K.xs -#EXTINF:-1 tvg-id="",斗鱼电影3 (720p) -http://tx2play1.douyucdn.cn/live/3928r9p0BHMDG_8000p.flv -#EXTINF:-1 tvg-id="",斗鱼电影4 (1080p) -http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq_8000p.flv -#EXTINF:-1 tvg-id="",斗鱼车评 (720p) [Not 24/7] -http://tx2play1.douyucdn.cn/live/321987r8e6tCsPR_4000.xs?uuid= -#EXTINF:-1 tvg-id="",新唐人-美西 (486p) -http://live.ntdimg.com/uwlive520/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人亚太臺 (480p) -https://live.ntdimg.com/aplive200/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人加东臺 (720p) -https://live.ntdimg.com/mllive860/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人加西臺 (216p) -https://live.ntdimg.com/cwlive220/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人旧金山臺 (486p) -https://live.ntdimg.com/sflive990/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人美东臺 (480p) -https://live.ntdimg.com/live400/playlist.m3u8 -#EXTINF:-1 tvg-id="",新唐人美西臺 (486p) -https://live.ntdimg.com/uwlive990/playlist.m3u8 -#EXTINF:-1 tvg-id="",新昌休闲影视 (1080p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxinchang2/720p.m3u8 -#EXTINF:-1 tvg-id="",新昌新聞綜合 (1080p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxinchang1/720p.m3u8 -#EXTINF:-1 tvg-id="",新泰乡村党建 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰影視頻道 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtys/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰影視頻道 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰生活 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtsh/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰生活 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰综合 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰综合 (480p) [Not 24/7] -http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",新泰鄉村黨建 (480p) [Not 24/7] -http://111.17.214.4:1935/live/xtxc/playlist.m3u8 -#EXTINF:-1 tvg-id="",新疆兵团卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=50&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",新疆卫视 (540p) -http://112.25.48.68/live/program/live/xjws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",新疆卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225582/index.m3u8 -#EXTINF:-1 tvg-id="",新疆卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225725/index.m3u8 -#EXTINF:-1 tvg-id="",新疆卫视 (576p) -http://183.207.248.71/cntv/live1/xinjiangstv/xinjiangstv -#EXTINF:-1 tvg-id="",新疆卫视 (576p) -http://183.207.248.71/gitv/live1/G_XINJIANG/G_XINJIANG -#EXTINF:-1 tvg-id="",新疆卫视 (576p) -http://183.207.249.15/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/xinjiangstv/1.m3u8 -#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=122&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",新疆卫视 (576p) [Timeout] -http://223.110.243.136/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="",新疆哈语综合 (480p) [Offline] -http://livehyw.sobeycache.com/xjtvs/zb3.m3u8?auth_key=1807150116-0-0-ee46da0e36aa0d170240c1102e8c8e47 -#EXTINF:-1 tvg-id="",新疆少儿 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb12.m3u8 -#EXTINF:-1 tvg-id="",新疆汉语信息服务 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb11.m3u8 -#EXTINF:-1 tvg-id="",新疆汉语综艺 [Geo-blocked] -http://livehyw5.chinamcache.com/hyw/zb04.m3u8 -#EXTINF:-1 tvg-id="",新郑综合 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/10184-1.m3u8 -#EXTINF:-1 tvg-id="",无锡娱乐 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv2&type=tv -#EXTINF:-1 tvg-id="",无锡新闻综合 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv1&type=tv -#EXTINF:-1 tvg-id="",无锡生活 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv4&type=tv -#EXTINF:-1 tvg-id="",无锡经济 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv5&type=tv -#EXTINF:-1 tvg-id="",无锡都市资讯 [Offline] -http://149.129.100.78/wuxi.php?id=wxtv3&type=tv -#EXTINF:-1 tvg-id="",日本全天新聞 (480p) -https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 -#EXTINF:-1 tvg-id="",旺苍新闻 (528p) [Not 24/7] -http://3g.dzsm.com/streamer/gycttv.m3u8 -#EXTINF:-1 tvg-id="",明珠台 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",星空卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",星空衛視 (576p) -http://218.202.220.2:5000/nn_live.ts?id=STARTV -#EXTINF:-1 tvg-id="",星空衛視 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=234&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="",晋中公共 (1080p) [Not 24/7] -http://jzlive.jztvnews.com:90/live/jzgg.m3u8 -#EXTINF:-1 tvg-id="",晋中综合 (1080p) -http://jzlive.jztvnews.com:90/live/jzzh.m3u8 -#EXTINF:-1 tvg-id="",晋州综合 [Offline] -http://zhjz.chinashadt.com:2036/live/1.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="",景县电视一套 (360p) [Not 24/7] -http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",景县电视一套 (576p) [Not 24/7] -http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",景县电视二套 (360p) [Offline] -http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",景县电视二套 (576p) [Offline] -http://hbjx.chinashadt.com:1935/live/jx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",智慧教育 (576p) -http://111.63.117.13:6060/030000001000/G_CETV-4/G_CETV-4.m3u8 -#EXTINF:-1 tvg-id="",朔州1 (480p) [Not 24/7] -http://stream.sxsztv.com/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="",朔州2 (480p) [Not 24/7] -http://stream.sxsztv.com/live2/playlist.m3u8 -#EXTINF:-1 tvg-id="",東光一套 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",東光二套 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",東光綜藝 (576p) -http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",松原新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/sytv/sd/live.m3u8 -#EXTINF:-1 tvg-id="",枣庄公共 (540p) -http://stream.zzgd.tv/3/sd/live.m3u8 -#EXTINF:-1 tvg-id="",枣庄教育 (540p) -http://stream.zzgd.tv/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",枣庄新闻综合 (540p) -http://stream.zzgd.tv/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",柯桥时尚 (1080p) [Offline] -http://live.scbtv.cn/hls/qfc/index.m3u8 -#EXTINF:-1 tvg-id="",柯桥综合 (1080p) [Offline] -http://live.scbtv.cn/hls/news/index.m3u8 -#EXTINF:-1 tvg-id="",栖霞新闻 (480p) [Not 24/7] -http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8 -#EXTINF:-1 tvg-id="",梁平综合 (360p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",梅州综合 (480p) -http://dslive.grtn.cn/mzzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",榆树综合 (360p) [Offline] -http://stream.zhystv.com/yset/sd/live.m3u8 -#EXTINF:-1 tvg-id="",榆樹綜藝頻道 (360p) [Offline] -http://stream.zhystv.com/ysyt/sd/live.m3u8 -#EXTINF:-1 tvg-id="",横山综合 [Offline] -http://stream.hsqtv.cn/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",武汉外语 (576p) -http://stream.appwuhan.com/6tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",武汉文体 (480p) -http://stream.appwuhan.com/5tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",武汉经济 (360p) -http://stream.appwuhan.com/4tzb/sd/live.m3u8 -#EXTINF:-1 tvg-id="",武进新闻 (576p) [Not 24/7] -http://live.wjyanghu.com/live/CH1.m3u8 -#EXTINF:-1 tvg-id="",武进生活 (576p) [Not 24/7] -http://live.wjyanghu.com/live/CH2.m3u8 -#EXTINF:-1 tvg-id="",民視新聞 (720p) [Offline] -https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="",永新电视一套 (576p) -http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",永新电视三套 (576p) -http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",永新电视二套 (576p) -http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",汕头综合 (540p) -http://dslive.grtn.cn/stzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",汕尾公共 (540p) -http://dslive.grtn.cn/swzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",汕尾综合 (540p) -http://dslive.grtn.cn/swzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",江津文化旅游 (576p) -http://222.179.155.21:1935/ch2.m3u8 -#EXTINF:-1 tvg-id="",江津文化旅游 (576p) -http://jiangjinlive.cbg.cn:1935/ch2.m3u8 -#EXTINF:-1 tvg-id="",江津新闻综合 (576p) -http://222.179.155.21:1935/ch1.m3u8 -#EXTINF:-1 tvg-id="",江津新闻综合 (576p) -http://jiangjinlive.cbg.cn:1935/ch1.m3u8 -#EXTINF:-1 tvg-id="",江津经济生活 (576p) -http://222.179.155.21:1935/ch0.m3u8 -#EXTINF:-1 tvg-id="",江津经济生活 (576p) -http://jiangjinlive.cbg.cn:1935/ch0.m3u8 -#EXTINF:-1 tvg-id="",江苏 Ⅰ 东海综合台 [Offline] -rtmp://livetv.dhtv.cn/live/news -#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州文化 [Not 24/7] -rtmp://csztv.2500sz.com/live/c03 -#EXTINF:-1 tvg-id="" status="error",江苏 Ⅰ 苏州生活 [Not 24/7] -rtmp://csztv.2500sz.com/live/c04 -#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州经济 [Not 24/7] -rtmp://csztv.2500sz.com/live/c02 -#EXTINF:-1 tvg-id="",江苏 Ⅰ 苏州综合 [Not 24/7] -rtmp://csztv.2500sz.com/live/c01 -#EXTINF:-1 tvg-id="",江苏 Ⅰ 连云港公共 (480p) [Not 24/7] -http://live.lyg1.com/ggpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="" status="online",江苏 Ⅰ 连云港综合 (540p) [Not 24/7] -http://live.lyg1.com/zhpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",江苏优漫卡通 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8 -#EXTINF:-1 tvg-id="",江苏优漫卡通 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=146&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",江苏体育 (576p) -http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY -#EXTINF:-1 tvg-id="",江苏体育 (576p) -http://183.207.249.12/PLTV/4/224/3221225935/index.m3u8 -#EXTINF:-1 tvg-id="",江苏体育 (576p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225935/index.m3u8 -#EXTINF:-1 tvg-id="",江苏体育休闲 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsty -#EXTINF:-1 tvg-id="",江苏公共 (576p) -http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG -#EXTINF:-1 tvg-id="",江苏公共新闻 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsgg -#EXTINF:-1 tvg-id="",江苏卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/JSWS-HD/JSWS-HD -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225503/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225702/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225743/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://112.25.48.68/live/program/live/jswshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://117.169.120.140:8080/live/hdjiangsustv/.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://183.207.248.71/cntv/live1/jiangsustv/jiangsustv -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://183.207.249.34/PLTV/4/224/3221227402/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227255/index.m3u8 -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv -#EXTINF:-1 tvg-id="",江苏卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=5&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",江苏国际 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsgj -#EXTINF:-1 tvg-id="",江苏城市 (576p) -http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS -#EXTINF:-1 tvg-id="",江苏城市 (576p) -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225929/index.m3u8 -#EXTINF:-1 tvg-id="",江苏城市 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jscs -#EXTINF:-1 tvg-id="",江苏学习 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsxx -#EXTINF:-1 tvg-id="",江苏影视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS -#EXTINF:-1 tvg-id="",江苏影视 (576p) [Offline] -http://223.110.243.134/PLTV/4/224/3221225937/index.m3u8 -#EXTINF:-1 tvg-id="",江苏影视 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsys -#EXTINF:-1 tvg-id="",江苏教育 (576p) -http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225923/index.m3u8 -#EXTINF:-1 tvg-id="",江苏教育 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY -#EXTINF:-1 tvg-id="",江苏教育 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jsjy -#EXTINF:-1 tvg-id="",江苏综艺 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY -#EXTINF:-1 tvg-id="",江苏综艺 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jszy -#EXTINF:-1 tvg-id="",江苏靓妆 (720p) [Not 24/7] -http://149.129.100.78/jiangsu.php?id=jslz -#EXTINF:-1 tvg-id="",江西 Ⅰ 上饶综合台 (540p) -http://live.0793.tv/srtv1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",江西公共农业 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv5 -#EXTINF:-1 tvg-id="",江西卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/JXWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (576p) -http://183.207.248.71/gitv/live1/JXWS/JXWS -#EXTINF:-1 tvg-id="",江西卫视 (576p) -http://183.207.249.15/PLTV/4/224/3221225798/index.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (720p) -http://117.169.120.140:8080/live/jiangxistv/.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225705/index.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225746/index.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://112.25.48.68/live/program/live/jxwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://183.207.248.71/cntv/live1/jiangxistv/jiangxistv -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://183.207.249.11/PLTV/3/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) -http://223.110.254.199:6610/cntv/live1/jiangxistv/jiangxistv/1.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) [Offline] -http://223.110.245.170/PLTV/3/224/3221225536/index.m3u8 -#EXTINF:-1 tvg-id="",江西卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=40&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",江西少儿 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv6 -#EXTINF:-1 tvg-id="",江西影视旅游 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv4 -#EXTINF:-1 tvg-id="",江西新闻 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv7 -#EXTINF:-1 tvg-id="",江西移动电视 (720p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv8 -#EXTINF:-1 tvg-id="",江西经济生活 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv3 -#EXTINF:-1 tvg-id="",江西都市 (576p) [Not 24/7] -http://149.129.100.78/jxtv.php?id=jxtv2 -#EXTINF:-1 tvg-id="",江西风尚购物 (1080p) [Not 24/7] -http://39.134.66.66/PLTV/88888888/224/3221225521/index.m3u8 -#EXTINF:-1 tvg-id="",江门综合 (540p) -http://dslive.grtn.cn/jmzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",江门综合 (1080p) -http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 -#EXTINF:-1 tvg-id="",沧县电视二套 (576p) -http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",沧县电视综合 (576p) -http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北公共 (540p) -http://live7.plus.hebtv.com/hbggx/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北农民 (240p) -http://live3.plus.hebtv.com/nmpdx/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北农民 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北农民 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/HBWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (540p) -http://112.25.48.68/live/program/live/hbws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225495/index.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225732/index.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (576p) -http://183.207.248.71/gitv/live1/G_HEBEI/G_HEBEI -#EXTINF:-1 tvg-id="",河北卫视 (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (576p) -http://hbpx.chinashadt.com:2036/live/px4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=45&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",河北少儿科教 (540p) -http://live6.plus.hebtv.com/sekjx/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北影视剧 (540p) -http://live6.plus.hebtv.com/hbysx/hd/live.m3u8 -#EXTINF:-1 tvg-id="",河北晋州综合 (576p) [Offline] -http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北经济 (576p) -http://hbfc.chinashadt.com:2036/live/6.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北经济生活 (540p) [Not 24/7] -http://live2.plus.hebtv.com/jjshx/playlist.m3u8 -#EXTINF:-1 tvg-id="",河北都市 (240p) [Not 24/7] -http://live3.plus.hebtv.com/hbdsx/playlist.m3u8 -#EXTINF:-1 tvg-id="",河南卫视 (540p) -http://112.25.48.68/live/program/live/hnws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",河南卫视 (576p) -http://183.207.248.71/cntv/live1/henanstv/henanstv -#EXTINF:-1 tvg-id="",河南卫视 (576p) -http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8 -#EXTINF:-1 tvg-id="",河源公共 (540p) -http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8 -#EXTINF:-1 tvg-id="",河源综合 (480p) -http://dslive.grtn.cn/hyzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",河源综合 (540p) -http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",洛陽綜合頻道 (1080p) [Not 24/7] -http://live1.lytv.com.cn:1935/live/LYTV1-1/playlist.m3u8 -#EXTINF:-1 tvg-id="",洪雅新闻综合 (1080p) -http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8 -#EXTINF:-1 tvg-id="",济宁公共 (450p) -http://lives.jnnews.tv/video/s10001-JTV3/index.m3u8 -#EXTINF:-1 tvg-id="",济宁图文 (576p) -http://lives.jnnews.tv/video/s10001-JTV4/index.m3u8 -#EXTINF:-1 tvg-id="",济宁教育 (1080p) -http://lives.jnnews.tv/video/s10001-JTV2/index.m3u8 -#EXTINF:-1 tvg-id="",浙江6套 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江休闲 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江国际 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江少儿 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江教育 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江新闻 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江易购 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江留学 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 浙江经济 (720p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 绍兴影视 (720p) [Timeout] -http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8 -#EXTINF:-1 tvg-id="",浙江 Ⅰ 绍兴综合 (576p) [Timeout] -http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8 -#EXTINF:-1 tvg-id="",浙江公共 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel07/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_ZHEJIANG/G_ZHEJIANG -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225514/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225703/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://112.25.48.68/live/program/live/zjwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-zhejiangstv/HD-2500k-1080P-zhejiangstv -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://183.207.248.71/cntv/live1/zhejiangstv/zhejiangstv -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://183.207.249.34/PLTV/4/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://223.110.254.210:6610/cntv/live1/zhejiangstv/zhejiangstv/1.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Offline] -http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8 -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",浙江卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",浙江国际 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江国际 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江少儿 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江少儿 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江影视 (720p) -http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8 -#EXTINF:-1 tvg-id="",浙江影视 (1080p) -http://yd-m-l.cztv.com/channels/lantian/channel05/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江教科影视 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江数码时代 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江民生休闲 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江留学 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江经济生活 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江钱江 (1080p) -http://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8 -#EXTINF:-1 tvg-id="",浙江钱江 (1080p) [Not 24/7] -http://hw-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8 -#EXTINF:-1 tvg-id="",海南公共 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=6 -#EXTINF:-1 tvg-id="",海南卫视 (540p) [Timeout] -http://112.25.48.68/live/program/live/lyws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",海南卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8 -#EXTINF:-1 tvg-id="",海南卫视 (576p) -http://183.207.248.11/PLTV/4/224/3221225810/index.m3u8 -#EXTINF:-1 tvg-id="",海南卫视 (720p) [Not 24/7] -http://livelyws.chinamcache.com/lyws/zb01.m3u8?auth_key=1593241343-0-0-90b80e74457c94b2015f9428a1cb9b0e -#EXTINF:-1 tvg-id="",海南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=114&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",海南少儿 (720p) [Not 24/7] -http://149.129.100.78/hainan.php?id=9 -#EXTINF:-1 tvg-id="",海南州藏語頻道 (480p) -http://live.hnzzzzzdst.com/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",海南文旅 (720p) [Not 24/7] -http://149.129.100.78/hainan.php?id=8 -#EXTINF:-1 tvg-id="",海南新闻 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=5 -#EXTINF:-1 tvg-id="",海南经济 (480p) [Not 24/7] -http://149.129.100.78/hainan.php?id=4 -#EXTINF:-1 tvg-id="",海盐新闻 (720p) -http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",海西州综合 (576p) -http://stream.haixitv.cn/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",涡阳新闻综合 (360p) -http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8 -#EXTINF:-1 tvg-id="",深圳公共 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=4 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225668/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225700/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225741/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225741/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://112.25.48.68/live/program/live/szwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://117.169.120.140:8080/live/hdshenzhenstv/.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://183.207.249.37/PLTV/4/224/3221227307/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227307/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Not 24/7] -http://183.207.248.71/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8 -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",深圳卫视 (1080p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",深圳娱乐 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=6 -#EXTINF:-1 tvg-id="",深圳少儿 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=7 -#EXTINF:-1 tvg-id="",深圳电视剧 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=3 -#EXTINF:-1 tvg-id="",深圳移动电视 (360p) [Not 24/7] -http://149.129.100.78/sztv.php?id=8 -#EXTINF:-1 tvg-id="",深圳蛇口 (1080p) -http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 -#EXTINF:-1 tvg-id="",深圳财经生活 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=5 -#EXTINF:-1 tvg-id="",深圳都市 (720p) [Not 24/7] -http://149.129.100.78/sztv.php?id=2 -#EXTINF:-1 tvg-id="",深州綜合頻道 (360p) [Not 24/7] -http://hbsz.chinashadt.com:2036/live/stream:sztv.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",深州綜合頻道 (576p) [Not 24/7] -http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",湖北 Ⅰ 荆门公共台 (1080p) [Geo-blocked] -http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (576p) -http://183.207.248.71/gitv/live1/G_HUBEI/G_HUBEI -#EXTINF:-1 tvg-id="",湖北卫视 (576p) -http://183.207.249.16/PLTV/4/224/3221225877/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225569/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225699/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225740/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://117.169.120.140:8080/live/hdhubeistv/.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227211/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://223.110.254.136:6610/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv/1.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8 -#EXTINF:-1 tvg-id="",湖北卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=18&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南先锋乒羽 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=72&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南公共 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=261 -#EXTINF:-1 tvg-id="",湖南卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/HNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (576p) -http://hbpx.chinashadt.com:2036/live/px5.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_HUNAN/G_HUNAN -#EXTINF:-1 tvg-id="",湖南卫视 (576p) [Offline] -http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (720p) [Offline] -http://m-tvlmedia.public.bcs.ysten.com/live/hdhunanstv/1.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-hunanstv/HD-2500k-1080P-hunanstv -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227404/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://223.110.245.168/PLTV/4/224/3221227320/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) -http://223.110.254.134:6610/cntv/live1/hunanstv/hunanstv/1.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] -http://183.207.248.71/cntv/live1/hunanstv/hunanstv -#EXTINF:-1 tvg-id="",湖南卫视 (1080p) [Timeout] -http://223.110.245.170/PLTV/3/224/3221227191/index.m3u8 -#EXTINF:-1 tvg-id="",湖南卫视 [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=006&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="",湖南国际 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=229 -#EXTINF:-1 tvg-id="",湖南娱乐 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=344 -#EXTINF:-1 tvg-id="",湖南快乐垂钓 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=69&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南快乐购 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=56&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南教育 [Offline] -http://pull.hnedutv.com/live/hnedutv.m3u8 -#EXTINF:-1 tvg-id="",湖南电视剧 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=484 -#EXTINF:-1 tvg-id="",湖南经视 [Not 24/7] -http://149.129.100.78/hunan.php?id=280 -#EXTINF:-1 tvg-id="",湖南茶 (1080p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=70&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",湖南都市 (360p) [Not 24/7] -http://149.129.100.78/hunan.php?id=346 -#EXTINF:-1 tvg-id="",湖南都市 (576p) -http://hnsd.chinashadt.com:2036/live/stream:hunandushi.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",湖南金鹰卡通 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8 -#EXTINF:-1 tvg-id="",湘潭公共 (576p) -http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",湘潭新闻综合 (720p) -http://live.hnxttv.com:9601/live/xwzh/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",湛江综合 (540p) -http://dslive.grtn.cn/zjzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",滁州公共 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvgg/playlist.m3u8 -#EXTINF:-1 tvg-id="",滁州新闻综合 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",滁州科教 (450p) [Timeout] -http://183.167.193.45:1935/live/cztvkj/playlist.m3u8 -#EXTINF:-1 tvg-id="",滦县综合 (576p) -http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",滦县综艺 (576p) -http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",滨州公共电视剧 (576p) -http://stream.bzcm.net/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",滨州新闻综合 (576p) -http://stream.bzcm.net/2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",滨州测试 (576p) -http://stream.bzcm.net/4/sd/live.m3u8 -#EXTINF:-1 tvg-id="",滨海新闻 (1080p) [Timeout] -http://60.30.52.41/live/bhtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="",滨海新闻综合 (576p) [Not 24/7] -http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",滨海都市 (1080p) [Timeout] -http://60.30.52.41/live/bhtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="",漳州新闻综合 (720p) [Not 24/7] -http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8 -#EXTINF:-1 tvg-id="",潮安影视 [Offline] -http://chaoan.chaoantv.com:8278/h_yingshi_1028/playlist.m3u8 -#EXTINF:-1 tvg-id="",潮安综合 (540p) -http://chaoan.chaoantv.com:8278/live/chaoanzongyi.m3u8 -#EXTINF:-1 tvg-id="",潮州公共 [Offline] -http://live.zscz0768.com/live/ggpd.m3u8 -#EXTINF:-1 tvg-id="",潮州综合 (480p) -http://dslive.grtn.cn/czzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] -http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=192&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 -#EXTINF:-1 tvg-id="",澳亚卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",澳亚卫视 [Not 24/7] -http://live.mastvnet.com/4rlff1m/live.m3u8 -#EXTINF:-1 tvg-id="",澳大利亚赛马 (270p) [Offline] -https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8 -#EXTINF:-1 tvg-id="",澳视卫星 (720p) [Not 24/7] -http://61.244.22.5/ch3/_definst_/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳视澳门 (720p) [Not 24/7] -http://61.244.22.4/ch1/ch1.live/playelist.m3u8 -#EXTINF:-1 tvg-id="",澳视葡文 (720p) [Not 24/7] -http://61.244.22.4/ch2/ch2.live/chunklist_w1632175875.m3u8 -#EXTINF:-1 tvg-id="",澳门1 (720p) [Not 24/7] -http://61.244.22.4/ch3/ch3.live/playelist.m3u8 -#EXTINF:-1 tvg-id="",澳门2 (720p) [Not 24/7] -http://61.244.22.4/ch2/ch2.live/playelist.m3u8 -#EXTINF:-1 tvg-id="",澳门体育 (720p) -http://61.244.22.4/ch4/sport_ch4.live/playelist.m3u8 -#EXTINF:-1 tvg-id="",灵台新闻综合 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000145/index.m3u8 -#EXTINF:-1 tvg-id="",炫动卡通 (540p) -http://183.207.255.188/live/program/live/xdkt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",炫动卡通 (576p) [Timeout] -http://223.110.245.139/PLTV/4/224/3221226388/index.m3u8 -#EXTINF:-1 tvg-id="",点掌财经 (712p) -http://cclive.aniu.tv/live/anzb.m3u8 -#EXTINF:-1 tvg-id="",犍为新闻综合 (720p) [Not 24/7] -http://tv.scwlqw.cn:3100/hls/kqcyufpi/index.m3u8 -#EXTINF:-1 tvg-id="",现代教育 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=13 -#EXTINF:-1 tvg-id="",珠江 (720p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",珠海生活 (480p) -http://dslive.grtn.cn/zhzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",甘肃公共 (540p) [Not 24/7] -https://hls.gstv.com.cn/49048r/3t5xyc.m3u8 -#EXTINF:-1 tvg-id="",甘肃卫视 (540p) -http://112.25.48.68/live/program/live/gsws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225584/index.m3u8 -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225724/index.m3u8 -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) -http://117.169.120.140:8080/live/gansustv/.m3u8 -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) -http://183.207.248.71/gitv/live1/G_GANSU/G_GANSU -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) [Not 24/7] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",甘肃卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",甘肃卫视 (1080p) [Timeout] -http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8?from=26&hms_devid=685&icpid=88888888 -#EXTINF:-1 tvg-id="",甘肃卫视 (1080p) [Timeout] -http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8 -#EXTINF:-1 tvg-id="",甘肃少儿 [Offline] -http://stream.gstv.com.cn/sepd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",甘肃文化影视 [Offline] -http://stream.gstv.com.cn/whys/sd/live.m3u8 -#EXTINF:-1 tvg-id="",甘肃移动 (540p) [Not 24/7] -https://hls.gstv.com.cn/49048r/y72q36.m3u8 -#EXTINF:-1 tvg-id="",甘肃经济 [Offline] -http://stream.gstv.com.cn/jjpd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",甘肃都市 [Offline] -http://stream.gstv.com.cn/dspd/sd/live.m3u8 -#EXTINF:-1 tvg-id="",生活 (576p) -http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227311/index.m3u8 -#EXTINF:-1 tvg-id="",电白视窗 (360p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",电白视窗 (576p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",电白综合 (360p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",电白综合 (576p) [Not 24/7] -http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",番禺 (1080p) [Offline] -http://live.pybtv.cn/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",白城新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/baicheng1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",白山新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/baishan1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",百事通体育1 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba1/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",百事通体育2 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba2/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",百事通体育3 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba3/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",百事通体育5 (1080p) -http://112.25.48.68/live/program/live/hdnba5/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",百事通体育7 (1080p) [Not 24/7] -http://112.25.48.68/live/program/live/hdnba7/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",睛彩安徽 (576p) [Not 24/7] -http://149.129.100.78/anhui.php?id=85 -#EXTINF:-1 tvg-id="",石景山电视台 (1080p) [Not 24/7] -http://live.sjsrm.com/bjsjs/sd/live.m3u8 -#EXTINF:-1 tvg-id="",福F建J公共 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226113/10000100000000060000000002358064_0.smil -#EXTINF:-1 tvg-id="",福F建J少儿 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226120/10000100000000060000000002358082_0.smil -#EXTINF:-1 tvg-id="",福F建J新闻 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226116/10000100000000060000000002358068_0.smil -#EXTINF:-1 tvg-id="",福F建J旅游 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226125/10000100000000060000000002358191_0.smil -#EXTINF:-1 tvg-id="",福F建J电视 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226115/10000100000000060000000002358067_0.smil -#EXTINF:-1 tvg-id="",福F建J经济 [Offline] -rtsp://183.252.176.54:554/PLTV/88888888/224/3221226117/10000100000000060000000002358072_0.smil -#EXTINF:-1 tvg-id="",福山生活 (576p) [Not 24/7] -http://live.jiaodong.net:82/tvfushan/hls/tv_shenghuo.m3u8 -#EXTINF:-1 tvg-id="",福州少儿 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-sepd-4/index.m3u8 -#EXTINF:-1 tvg-id="",福州影视 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-yspd-2/index.m3u8 -#EXTINF:-1 tvg-id="",福州生活 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-shpd-3/index.m3u8 -#EXTINF:-1 tvg-id="",福州综合 (1080p) [Not 24/7] -http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8 -#EXTINF:-1 tvg-id="",福海维语综合 [Offline] -http://klmyyun.chinavas.com/hls/fuhai1.m3u8 -#EXTINF:-1 tvg-id="",萬州三峽移民 (576p) -http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8 -#EXTINF:-1 tvg-id="",萬州三峽移民 (576p) -http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8 -#EXTINF:-1 tvg-id="" status="online",萬州影視文藝 (576p) -http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8 -#EXTINF:-1 tvg-id="",萬州影視文藝 (576p) [Not 24/7] -http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8 -#EXTINF:-1 tvg-id="",萬州科教頻道 (576p) -http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8 -#EXTINF:-1 tvg-id="",萬州科教頻道 (576p) -http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8 -#EXTINF:-1 tvg-id="",萬州綜合頻道 (576p) -http://123.146.162.24:8017/iTXwrGs/800/live.m3u8 -#EXTINF:-1 tvg-id="",萬州綜合頻道 (576p) -http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8 -#EXTINF:-1 tvg-id="",秦皇島影視 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv3/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",秦皇島政法 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv2/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",秦皇島新聞 (576p) [Not 24/7] -http://vod.qhdcm.com:1935/live/qhdtv1/800K/tzwj_video.m3u8 -#EXTINF:-1 tvg-id="",积石山电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000152/index.m3u8 -#EXTINF:-1 tvg-id="",篮球资讯 (576p) -http://223.110.245.139/PLTV/4/224/3221227023/index.m3u8 -#EXTINF:-1 tvg-id="",娄底 (720p) -http://mms.ldntv.cn:1935/live/_definst_/zonghe/chunklist_w67585331.m3u8 -#EXTINF:-1 tvg-id="",娄底综合 (720p) -http://119.39.242.52:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",娄底综合 (720p) [Not 24/7] -http://mms.ldntv.cn:1935/live/zonghe/playlist.m3u8 -#EXTINF:-1 tvg-id="",精品电影 (1080p) -http://183.207.248.71/cntv/live1/jdianying/jdianying -#EXTINF:-1 tvg-id="",綦江综合 (576p) [Offline] -http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",红牛REDBULL TV (720p) -https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_3360.m3u8 -#EXTINF:-1 tvg-id="",纪实人文 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225655/index.m3u8 -#EXTINF:-1 tvg-id="",纯享4K (2160p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8 -#EXTINF:-1 tvg-id="",绥江综合 [Offline] -http://60.160.23.32:6055/sjtv/sjtv.m3u8 -#EXTINF:-1 tvg-id="",继续教育 (576p) -http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8 -#EXTINF:-1 tvg-id="",罗山电视台 (1080p) [Not 24/7] -http://live.dxhmt.cn:9081/tv/11521-1.m3u8 -#EXTINF:-1 tvg-id="",罗马尼亚STV [Not 24/7] -http://s2.streamnet.ro:8035/stream.flv -#EXTINF:-1 tvg-id="",置业 (576p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8 -#EXTINF:-1 tvg-id="",美国中文电视 (406p) [Not 24/7] -https://jpts.sinovision.net/livestream.m3u8 -#EXTINF:-1 tvg-id="",美国亚美卫视 (480p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8 -#EXTINF:-1 tvg-id="",美国狗狗宠物 (1080p) -https://video.blivenyc.com/broadcast/prod/2061/22/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="",翡翠台 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",耀才财经 -http://202.69.67.66/webcast/bshdlive-pc/playlist.m3u8 -#EXTINF:-1 tvg-id="",耀才财经 (288p) -http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="",耀才财经 [Offline] -rtmp://202.69.69.180/webcast/bshdlive-pc -#EXTINF:-1 tvg-id="",肃州电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000123/index.m3u8 -#EXTINF:-1 tvg-id="",肇庆综合 (480p) -http://dslive.grtn.cn/zqzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",舟山公共生活 (720p) -http://live.wifizs.cn/ggsh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",舟山新闻综合 (240p) -http://live.wifizs.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",舟山新闻综合 (240p) -http://stream.wifizs.cn/xwzh/sd/live.m3u8 -#EXTINF:-1 tvg-id="",舟山群岛旅游 (720p) -http://live.wifizs.cn/qdly/sd/live.m3u8 -#EXTINF:-1 tvg-id="",芜湖公共 (576p) -http://live1.wuhubtv.com/channel3/sd/live.m3u8 -#EXTINF:-1 tvg-id="",芜湖新闻综合 (576p) -http://live1.wuhubtv.com/channel1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",芜湖生活 (576p) -http://live1.wuhubtv.com/channel2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",苏州文化生活 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szwhsh -#EXTINF:-1 tvg-id="",苏州新闻综合 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szxw -#EXTINF:-1 tvg-id="",苏州生活资讯 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szshzx -#EXTINF:-1 tvg-id="",苏州社会经济 (540p) [Not 24/7] -http://149.129.100.78/suzhou.php?id=szshjj -#EXTINF:-1 tvg-id="",茂名综合 (540p) -http://dslive.grtn.cn/mmzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",荣昌综合 (404p) [Not 24/7] -http://183.64.181.25:40023/rongchang01.m3u8 -#EXTINF:-1 tvg-id="",莒縣圖文頻道 (720p) [Timeout] -http://61.162.225.122:8181/live/test3.m3u8 -#EXTINF:-1 tvg-id="",莒縣電視一套 (576p) [Timeout] -http://61.162.225.122:8181/live/test1.m3u8 -#EXTINF:-1 tvg-id="",莒縣電視二套 (576p) [Not 24/7] -http://61.162.225.122:8181/live/test2.m3u8 -#EXTINF:-1 tvg-id="",莲花卫视 (1080p) [Not 24/7] -http://149.129.100.78/lotus.php?id=1 -#EXTINF:-1 tvg-id="",華視新聞 [Geo-blocked] -http://seb.sason.top/sc/hsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",華藏衛視 (1080p) [Not 24/7] -http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",萍鄉公共頻道 (1080p) [Not 24/7] -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv3stream.m3u8 -#EXTINF:-1 tvg-id="",萍鄉教育頻道 (480p) -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8 -#EXTINF:-1 tvg-id="",萍鄉新聞綜合 (576p) [Not 24/7] -http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8 -#EXTINF:-1 tvg-id="",萧山新闻综合 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8 -#EXTINF:-1 tvg-id="",蓝屏 432 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=109&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",蓬安新闻综合 (720p) [Not 24/7] -http://palive.patv123.com:8091/live/xwpd_800K.m3u8 -#EXTINF:-1 tvg-id="",蕪湖教育頻道 (576p) -http://live1.wuhubtv.com/channel4/sd/live.m3u8 -#EXTINF:-1 tvg-id="",蕭山生活頻道 (720p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8 -#EXTINF:-1 tvg-id="",衡水影视娱乐 (480p) [Not 24/7] -http://hls.hsrtv.cn/hls/hstv2.m3u8 -#EXTINF:-1 tvg-id="",衡水新闻综合 (720p) [Not 24/7] -http://hls.hsrtv.cn/hls/hstv1.m3u8 -#EXTINF:-1 tvg-id="",袁州綜合頻道 (576p) [Not 24/7] -http://jxyz.chinashadt.com:8036/live/yz1.stream/playist.m3u8 -#EXTINF:-1 tvg-id="",西安丝路 (404p) [Not 24/7] -http://stream2.xiancity.cn/xatv5/playlist.m3u8 -#EXTINF:-1 tvg-id="",西安乐购购物 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv6/playlist.m3u8 -#EXTINF:-1 tvg-id="",西安商务资讯 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv3/playlist.m3u8 -#EXTINF:-1 tvg-id="",西安影视 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv4/playlist.m3u8 -#EXTINF:-1 tvg-id="",西安新闻 (1080p) [Not 24/7] -http://stream2.xiancity.cn/xatv1/playlist.m3u8 -#EXTINF:-1 tvg-id="",西安白鸽 (180p) [Not 24/7] -http://stream2.xiancity.cn/xatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="",西藏卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8 -#EXTINF:-1 tvg-id="",西藏卫视 (576p) -http://117.169.120.140:8080/live/xizangstv/.m3u8 -#EXTINF:-1 tvg-id="",西藏卫视 (576p) -http://183.207.249.16/PLTV/3/224/3221225523/index.m3u8 -#EXTINF:-1 tvg-id="",西藏卫视 (576p) -http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8 -#EXTINF:-1 tvg-id="",西藏卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=208&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",西藏藏語 (576p) -http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8 -#EXTINF:-1 tvg-id="",西虹市首富 [Offline] -https://zuikzy.win7i.com/2018/07/30/hCt7GSGU1sAgOC8j/playlist.m3u8 -#EXTINF:-1 tvg-id="",西青新闻综合 (1080p) [Not 24/7] -http://221.238.209.44:81/hls/live1.m3u8 -#EXTINF:-1 tvg-id="",贵州体育旅游 (406p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=dwpd -#EXTINF:-1 tvg-id="",贵州公共 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzgg -#EXTINF:-1 tvg-id="",贵州卫视 (360p) [Timeout] -http://125.210.152.18:9090/live/GZWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",贵州卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225576/index.m3u8 -#EXTINF:-1 tvg-id="",贵州卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8 -#EXTINF:-1 tvg-id="",贵州卫视 (576p) -http://183.207.248.71/gitv/live1/G_GUIZHOU/G_GUIZHOU -#EXTINF:-1 tvg-id="",贵州卫视 (576p) -http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8 -#EXTINF:-1 tvg-id="",贵州大众生活 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=dzsh -#EXTINF:-1 tvg-id="",贵州家有购物 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=8 -#EXTINF:-1 tvg-id="",贵州影视文艺 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzwy -#EXTINF:-1 tvg-id="",贵州科教健康 (406p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=kjjk -#EXTINF:-1 tvg-id="",贵州经济 (720p) [Not 24/7] -http://149.129.100.78/guizhou.php?id=gzjj -#EXTINF:-1 tvg-id="",赵县电视一套 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",赵县电视一套 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",赵县电视二套 (360p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",赵县电视二套 (576p) -http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",辛集新聞頻道 (480p) [Not 24/7] -http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",辛集生活頻道 (480p) [Not 24/7] -http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225499/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (576p) -http://183.207.248.71/cntv/live1/liaoningstv/liaoningstv -#EXTINF:-1 tvg-id="",辽宁卫视 (576p) -http://183.207.249.12/PLTV/4/224/3221225802/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (576p) -http://183.207.249.71/PLTV/3/224/3221225566/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/LNWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225735/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) -http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) -http://112.25.48.68/live/program/live/lnwshd/4000000/mnf.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) [Timeout] -http://39.134.39.37/PLTV/88888888/224/3221226209/index.m3u8 -#EXTINF:-1 tvg-id="",辽宁卫视 (1080p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=38&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",辽源新闻综合 [Geo-blocked] -http://stream2.jlntv.cn/liaoyuan1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",迈视网 [Offline] -http://xinl.live.maxtv.cn/live/zb/playlist.m3u8 -#EXTINF:-1 tvg-id="",迪庆综合 (1080p) -http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",迪庆藏语 (576p) -http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",通化新闻 [Geo-blocked] -http://stream2.jlntv.cn/tonghua1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",通州电视台 (720p) -http://pull.dayuntongzhou.com/live/tztv.m3u8 -#EXTINF:-1 tvg-id="",遂宁公共公益 [Offline] -http://snlive.scsntv.com:8091/live/gggy.m3u8 -#EXTINF:-1 tvg-id="",遂宁综合 [Offline] -http://snlive.scsntv.com:8091/live/xwzh.m3u8 -#EXTINF:-1 tvg-id="",邗江资讯 (576p) [Offline] -http://223.110.245.139/PLTV/4/224/3221227154/index.m3u8 -#EXTINF:-1 tvg-id="",邵东综合 (576p) -http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="" status="timeout",酒泉新闻综合 (576p) [Timeout] -http://117.156.28.119/270000001111/1110000001/index.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (432p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=10&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",重庆卫视 (540p) -http://112.25.48.68/live/program/live/cqws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (576p) -http://183.207.249.5/PLTV/4/224/3221225812/index.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (576p) [Not 24/7] -http://183.207.248.71/gitv/live1/G_CHONGQING/G_CHONGQING -#EXTINF:-1 tvg-id="",重庆卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225692/index.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225734/index.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (1080p) -http://117.169.120.132:8080/live/chongqingstv/playlist.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (1080p) -http://223.110.254.137:6610/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv/1.m3u8 -#EXTINF:-1 tvg-id="",重庆卫视 (1080p) [Offline] -http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="",重庆忠县 (576p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_35.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="",重庆移动 (480p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_57.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",重庆移动机场 (480p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_56.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",金昌公共頻道 (240p) [Geo-blocked] -http://stream4.liveyun.hoge.cn/ch01/sd/live.m3u8 -#EXTINF:-1 tvg-id="",金昌綜合頻道 (720p) [Geo-blocked] -http://stream4.liveyun.hoge.cn/ch02/sd/live.m3u8 -#EXTINF:-1 tvg-id="",金鹰卡通 (576p) -http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8 -#EXTINF:-1 tvg-id="",金鹰卡通 (576p) [Geo-blocked] -http://223.110.241.149:6610/gitv/live1/G_JINYING/G_JINYING/1.m3u8 -#EXTINF:-1 tvg-id="",金鹰卡通 (湖南) (540p) [Not 24/7] -http://112.25.48.68/live/program/live/jykt/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",银川公共 (360p) [Not 24/7] -http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8 -#EXTINF:-1 tvg-id="",银川生活 (360p) [Not 24/7] -http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8 -#EXTINF:-1 tvg-id="",長豐新聞綜合 (576p) -http://218.23.114.19:1935/live/xinwen/playlist.m3u8 -#EXTINF:-1 tvg-id="",长乐综合 [Geo-blocked] -http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8 -#EXTINF:-1 tvg-id="",长寿文化旅游 (576p) [Offline] -http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",长寿综合 (720p) [Not 24/7] -http://qxlmlive.cbg.cn:1935/app_2/ls_63.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",长春综合 [Geo-blocked] -http://stream2.jlntv.cn/jlcc/sd/live.m3u8 -#EXTINF:-1 tvg-id="",长沙地铁移动 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8 -#EXTINF:-1 tvg-id="",长沙女性 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_349.m3u8 -#EXTINF:-1 tvg-id="",长沙政法 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_348.m3u8 -#EXTINF:-1 tvg-id="",长沙新闻 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_346.m3u8 -#EXTINF:-1 tvg-id="",长沙经贸 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8 -#EXTINF:-1 tvg-id="",长沙购物 [Geo-blocked] -http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_354.m3u8 -#EXTINF:-1 tvg-id="",阜城综合 (576p) [Not 24/7] -http://hbfc.chinashadt.com:2036/live/2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",阳江综合 (480p) -http://dslive.grtn.cn/yjzh/playlist.m3u8 -#EXTINF:-1 tvg-id="",陕西卫视 (540p) -http://112.25.48.68/live/program/live/sxws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",陕西卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8 -#EXTINF:-1 tvg-id="",陕西卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225729/index.m3u8 -#EXTINF:-1 tvg-id="",陕西卫视 (576p) -http://223.110.245.139/PLTV/4/224/3221227022/index.m3u8 -#EXTINF:-1 tvg-id="",隆化影视 (576p) -http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",隆化综合 (576p) -http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",隨州綜合 (720p) [Not 24/7] -http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_304.m3u8 -#EXTINF:-1 tvg-id="",隨州農村 (720p) [Not 24/7] -http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_305.m3u8 -#EXTINF:-1 tvg-id="",集安综合 [Geo-blocked] -http://stream2.jlntv.cn/ja/sd/live.m3u8 -#EXTINF:-1 tvg-id="",霍山综合 (576p) [Timeout] -http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",霸州公共頻道 (576p) [Not 24/7] -http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",霸州少兒頻道 (576p) [Not 24/7] -http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",霸州文化頻道 (576p) -http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",霸州新聞頻道 (576p) -http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",霸州新闻 (576p) [Offline] -http://rtvcdn.com.au:8082/TV_GG.m3u8 -#EXTINF:-1 tvg-id="",青州文化旅游 (576p) -http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",青州生活 (576p) -http://sdqz.chinashadt.com:2036/live/stream:2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",青州综合 (576p) -http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",青海卫视 (540p) -http://112.25.48.68/live/program/live/qhws/1300000/mnf.m3u8 -#EXTINF:-1 tvg-id="",青海卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225573/index.m3u8 -#EXTINF:-1 tvg-id="",青海卫视 (576p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225727/index.m3u8 -#EXTINF:-1 tvg-id="",青海卫视 (576p) [Timeout] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",青海卫视 (576p) [Timeout] -http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",青海卫视 (1080p) -http://live.geermurmt.com/qhws/sd/live.m3u8 -#EXTINF:-1 tvg-id="",青海安多卫视 (576p) -http://39.134.66.66/PLTV/88888888/224/3221225531/index.m3u8 -#EXTINF:-1 tvg-id="",靖江新闻綜合 (480p) [Not 24/7] -http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8 -#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7] -http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8 -#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7] -http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8 -#EXTINF:-1 tvg-id="",静宁综合 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000147/index.m3u8 -#EXTINF:-1 tvg-id="",鞍山图文 (480p) [Timeout] -http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= -#EXTINF:-1 tvg-id="",韶关公共 (480p) -http://dslive.grtn.cn/sgxwzhHD/playlist.m3u8 -#EXTINF:-1 tvg-id="",风尚购物 (1080p) -http://183.207.248.71/cntv/live1/fengshanggw/fengshanggw -#EXTINF:-1 tvg-id="",餘姚姚江文化 (576p) [Not 24/7] -http://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8 -#EXTINF:-1 tvg-id="",马云对话 (480p) -http://www.alibabapictures.com/movies/10/mayunduihua.mp4 -#EXTINF:-1 tvg-id="",高台电视台 (1080p) [Timeout] -http://117.156.28.119/270000001111/1110000146/index.m3u8 -#EXTINF:-1 tvg-id="",高尔夫 (480p) [Offline] -http://149.129.100.78/guangdong.php?id=68 -#EXTINF:-1 tvg-id="",高清电影 (1080p) [Timeout] -http://39.134.19.76/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8 -#EXTINF:-1 tvg-id="",鹤壁新闻综合 (480p) [Not 24/7] -http://pili-live-hls.hebitv.com/hebi/hebi.m3u8 -#EXTINF:-1 tvg-id="",鹤峰综合 [Geo-blocked] -http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8 -#EXTINF:-1 tvg-id="",鹿泉一套 (576p) [Not 24/7] -http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",鹿泉二套 (576p) [Not 24/7] -http://hblq.chinashadt.com:2036/live/stream:luquan2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",黃驊影視 (576p) -http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",黃驊渤海新區 (576p) -http://hbhh.chinashadt.com:2111/live/bhtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",黄河电视台 [Offline] -http://149.129.100.78/tv.php?id=sxhh -#EXTINF:-1 tvg-id="",黄骅一套 (576p) -http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",黄骅二套 (576p) -http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",黑莓电竞 (1080p) -http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙卫视 (720p) [Timeout] -http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8 -#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) -http://223.110.243.169/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) -http://223.110.245.139/PLTV/4/224/3221227492/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙卫视 (1080p) -http://223.110.245.170/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江 (576p) [Offline] -http://183.207.248.71/gitv/live1/G_HEILONGJIANG/G_HEILONGJIANG -#EXTINF:-1 tvg-id="",黑龙江 (1080p) -http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江 (1080p) -http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江卫 (1080p) -http://183.207.248.71/cntv/live1/HD-2500k-1080P-heilongjiangstv/HD-2500k-1080P-heilongjiangstv -#EXTINF:-1 tvg-id="",黑龙江卫视 (576p) [Not 24/7] -http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=27&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= -#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225690/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) -http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) -http://183.207.249.36/PLTV/4/224/3221227323/index.m3u8 -#EXTINF:-1 tvg-id="",黑龙江卫视 (1080p) -http://223.110.254.143:6610/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv/1.m3u8 -#EXTINF:-1 tvg-id="",黑龙江台 [Timeout] -http://stream3.hljtv.com/hljws2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黑龙江少儿 [Offline] -http://stream3.hljtv.com/hljse2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黑龙江影视 [Timeout] -http://stream3.hljtv.com/hljys2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黑龙江文体 [Offline] -http://stream3.hljtv.com/hljwy2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黑龙江新闻法治 [Offline] -http://stream3.hljtv.com/hljxw2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黑龙江都市 [Timeout] -http://stream3.hljtv.com/hljdd2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黔西南公共 (288p) [Geo-blocked] -http://live.qxndt.com/channel3/sd/live.m3u8 -#EXTINF:-1 tvg-id="",黔西南综合 (288p) [Geo-blocked] -http://live.qxndt.com/channel2/sd/live.m3u8 -#EXTINF:-1 tvg-id="",點掌財經 (712p) -http://cclive2.aniu.tv/live/anzb.m3u8 -#EXTINF:-1 tvg-id="",龙口图文 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",龙口新闻综合 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",龙口生活 (576p) [Offline] -http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",龙岩公共 (540p) [Not 24/7] -http://stream.lytv.net.cn/1/sd/live.m3u8 -#EXTINF:-1 tvg-id="",龙岩综合 (540p) -http://stream.lytv.net.cn/2/sd/live.m3u8 diff --git a/streams/co.m3u b/streams/co.m3u deleted file mode 100644 index 56f5f69ff..000000000 --- a/streams/co.m3u +++ /dev/null @@ -1,95 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Amordiscos.co",Amordiscos (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:amordiscos_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.co",ATV (Soacha | Cundinamarca) (360p) [Not 24/7] -https://movil.ejeserver.com/live/verteve.m3u8 -#EXTINF:-1 tvg-id="AvivamientoTV.co",Avivamiento TV (1080p) [Not 24/7] -https://s1.abntelevision.com/avivamientoabr/stream/avivamientohd/avivamientohd/playlist.m3u8 -#EXTINF:-1 tvg-id="BuenisimaRadioTV.co",Buenísima Radio TV (Gamarra | Cesar) (1080p) [Not 24/7] -https://streamyes.alsolnet.com/buturama/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliTV.co",Cali TV (Santiago de Cali | Valle del Cauca) (540p) [Not 24/7] -https://5ab772334c39c.streamlock.net/live-calitv/calitv1/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.co",Canal 2 (720p) [Not 24/7] -https://video13.virtualtronics.com/streamer/canal2.m3u8 -#EXTINF:-1 tvg-id="Canal12.co",Canal 12 (Valledupar | Cesar) (486p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/canal-12-valledupar.m3u8 -#EXTINF:-1 tvg-id="CanalC.co",Canal C (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8104/8104/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCapital.co",Canal Capital (720p) [Not 24/7] -https://mdstrm.com/live-stream-playlist/57d01d6c28b263eb73b59a5a.m3u8 -#EXTINF:-1 tvg-id="CanalCaracol.co",Canal Caracol (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/574463697b9817cf0886fc17.m3u8 -#EXTINF:-1 tvg-id="CanalDos.co",Canal Dos (Yopal | Casanare) (720p) [Not 24/7] -http://131.221.42.25:1935/streaming/canal2/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalInstitucionalTV.co",Canal Institucional TV (1080p) -https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalRCNNovelas.co",Canal RCN Novelas (480p) -http://45.179.140.242:8000/play/a0jf -#EXTINF:-1 tvg-id="CanalRCNNovelas.co",Canal RCN Novelas (480p) [Not 24/7] -http://38.131.11.9:1080/play/a037 -#EXTINF:-1 tvg-id="CanalSonTV.co",Canal Son TV (720p) [Not 24/7] -https://server12.videostreaming.net:3628/stream/play.m3u8 -#EXTINF:-1 tvg-id="CanalVisionDorada.co",Canal Visión Dorada (720p) [Not 24/7] -https://movil.ejeserver.com/live/visiondorada.m3u8 -#EXTINF:-1 tvg-id="ChavoTV.co",Chavo TV (480p) [Not 24/7] -https://videostreaming.cloudserverlatam.com/chavotv/chavotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Cinema+ (720p) -https://hvtrafico.ddns.net/cinema720/cinema720.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Eduvision.co",Eduvision (720p) [Timeout] -http://66.240.236.25:1936/eduvision/eduvision/playlist.m3u8 -#EXTINF:-1 tvg-id="EnlaceTelevision.co",Enlace Televisión (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/colombia/enlace.m3u8 -#EXTINF:-1 tvg-id="FamiliChannel.co",Famili Channel (720p) [Not 24/7] -https://rtmp02.portalexpress.es/thefchanel/thefchanel/playlist.m3u8 -#EXTINF:-1 tvg-id="",LATAM TV (Bogotà) (540p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/latam -#EXTINF:-1 tvg-id="MarinaStereo.co",Marina Stereo (720p) [Offline] -https://rtmp02.portalexpress.es/marinastereo/marinastereo/playlist.m3u8 -#EXTINF:-1 tvg-id="MelodyChannelColombia.co",Melody Channel Colombia (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:MelodyChannel_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MiGenteTV.co",Mi Gente TV (720p) [Not 24/7] -https://hvtrafico.ddns.net/migente720/migente720.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieFe.co",MovieFe (360p) [Not 24/7] -https://vcp.myplaytv.com/moviefe/ngrp:moviefe_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MundoMas.co",Mundo Mas (560p) [Not 24/7] -http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 -#EXTINF:-1 tvg-id="NoticiasCaracol.co",Noticias Caracol (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/58dc3d471cbe05ff3c8e463e.m3u8 -#EXTINF:-1 tvg-id="NTN24.co",NTN24 (Nuestra Tele Noticias) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEJs1fTF3KszRJGxJY14VrA/live -#EXTINF:-1 tvg-id="SenalColombia.co",Señal Colombia (1080p) -https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SuramTV.co",Suram TV (1080p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/suramtv/suramtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TDIColombia.co",TDI Colombia (720p) [Not 24/7] -https://play.amelbasoluciones.co:3971/live/tdicolombiatvlive.m3u8 -#EXTINF:-1 tvg-id="",Teleamiga (Bogotà | Cundinamarca) (480p) [Not 24/7] -https://liveingesta118.cdnmedia.tv/teleamigatvlive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleantioquia2.co",Teleantioquia 2 (720p) [Not 24/7] -https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleantioquia.co",Teleantioquia (720p) [Not 24/7] -https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecafe.co",Telecafé [Offline] -http://38.131.11.9:1080/play/a0ct -#EXTINF:-1 tvg-id="Telecaribe.co",Telecaribe (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/telecaribe_adaptive -#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (486p) [Not 24/7] -http://vbox2.cehis.net/live-teleislas/smil:teleislas.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (486p) [Not 24/7] -https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemedellin.co",Telemedellin (720p) [Not 24/7] -https://liveingesta118.cdnmedia.tv/telemedellintvlive/smil:dvrlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelemusicaTV.co",Telemúsica TV (480p) -https://5b464b69d264e.streamlock.net/Channels_live/ngrp:telemusica_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Telepacifico.co",Telepacífico (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] -https://stream.logicideas.media/telepacifico-live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telepetroleo.co",Telepetróleo (Barrancabermeja | Santander) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/colombia/telepetroleo.m3u8 -#EXTINF:-1 tvg-id="TelevisionCelestial.co",Television Celestial (480p) [Not 24/7] -https://stmvideo2.livecastv.com/celestialtv/celestialtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGracia.co",TVGracia (720p) -https://streamyes.alsolnet.com/tvgracia/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNGlobal.co",TVN Global (614p) [Not 24/7] -https://stmv2.voxtvhd.com.br/tvnglobal/tvnglobal/playlist.m3u8 -#EXTINF:-1 tvg-id="UNOPLAY.co",UNO PLAY (720p) [Not 24/7] -https://live-edge-bhs-1.cdn.enetres.net/184784E1D210401F8041E3E1266822CC021/playlist.m3u8 diff --git a/streams/cr.m3u b/streams/cr.m3u deleted file mode 100644 index a683cb542..000000000 --- a/streams/cr.m3u +++ /dev/null @@ -1,81 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="88Stereo.cr",88 Stereo (720p) [Not 24/7] -http://k3.usastreams.com/CableLatino/88stereo/playlist.m3u8 -#EXTINF:-1 tvg-id="AgrotendenciaTV.cr",AgrotendenciaTV (480p) [Not 24/7] -https://inliveserver.com:1936/15506/15506/playlist.m3u8 -#EXTINF:-1 tvg-id="AnexionTV.cr",Anexión TV (1080p) [Not 24/7] -http://rtmp.info:8081/anexiontv/envivo/index.m3u8 -#EXTINF:-1 tvg-id="AnexionTV.cr",Anexión TV (1080p) [Not 24/7] -https://rtmp.info/anexiontv/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaSeisTV.cr",Antena Seis TV (720p) [Geo-blocked] -http://inliveserver.com:1935/14510/14510/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4.cr",Canal 4 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal4/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal6.cr",Canal 6 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal6/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal8.cr",Canal 8 (720p) -http://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 -#EXTINF:-1 tvg-id="Canal11.cr",Canal 11 (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal11/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal13Sinart.cr",Canal 13 Sinart (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vh8g3 -#EXTINF:-1 tvg-id="Canal14SanCarlos.cr",Canal 14 San Carlos (720p) -http://tvn.obix.tv:1935/TVN/CH14.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal38.cr",Canal 38 (720p) [Not 24/7] -https://rtmp.info/canal38/envivo/chunks.m3u8 -#EXTINF:-1 tvg-id="Canal38.cr",Canal 38 (720p) [Not 24/7] -https://rtmp.info/canal38/envivo/playlist.m3u8 -#EXTINF:-1 tvg-id="ColosalTV.cr",Colosal TV (720p) [Not 24/7] -http://tv.ticosmedia.com:1935/COLOSAL/COLOSAL/playlist.m3u8 -#EXTINF:-1 tvg-id="CRTVyRadio.cr",CR-TV y Radio (360p) [Timeout] -https://cp.sradiotv.com:1936/8034/8034/playlist.m3u8 -#EXTINF:-1 tvg-id="EJTV.cr",Enlace Juvenil (EJTV) (288p) [Not 24/7] -https://api.new.livestream.com/accounts/ejtvla/events/2294538/live.m3u8 -#EXTINF:-1 tvg-id="EnlaceTV.cr",EnlaceTV (720p) [Not 24/7] -https://v4.tustreaming.cl/enlacebpbtv/index.m3u8 -#EXTINF:-1 tvg-id="ExtremaTV.cr",Extrema TV (720p) -http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ExtremaTV.cr",Extrema TV (720p) -https://www.livestreamcdn.net:444/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HBTVTicaVision.cr",HBTV TicaVisión (720p) [Not 24/7] -http://k3.usastreams.com:1935/HBTV/HBTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Humor247.cr",Humor 24-7 (360p) -https://srv.panelcast.net/humor247/humor247/playlist.m3u8 -#EXTINF:-1 tvg-id="LuzNacienteTV.cr",Luz Naciente TV (720p) [Not 24/7] -https://cloudflare.streamgato.us:3399/live/luznacientetvlive.m3u8 -#EXTINF:-1 tvg-id="NicoyaTV.cr",NicoyaTV (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8 -#EXTINF:-1 tvg-id="QuinceUCR.cr",Quince UCR (Universidad de Costa Rica) (720p) [Not 24/7] -http://163.178.170.127:1935/quinceucr/live.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.cr",Repretel CDR-2 Central de Radios (360p) [Not 24/7] -https://d30zjikdv9ntds.cloudfront.net/repretel/canal2/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroTVPalmares.cr",Retro TV Palmares (360p) [Not 24/7] -http://tvretropalmares.com:8090/hls/envivo.m3u8 -#EXTINF:-1 tvg-id="SanRafaelenLinea.cr",San Rafael en Linea (720p) [Geo-blocked] -https://cp.sradiotv.com:1936/8064/8064/playlist.m3u8 -#EXTINF:-1 tvg-id="SMOTV.cr",SMO TV [Timeout] -http://186.15.50.30:8080/hls/smotv.m3u8 -#EXTINF:-1 tvg-id="STVElCamalFamiliar.cr",STV El Camal Familiar (720p) [Not 24/7] -http://tiquiciatv.com:1935/stv/web/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleUno.cr",Tele Uno (720p) [Not 24/7] -http://tv.teleunotv.cr:1935/TVUNO/TVUNO/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleredTelevision.cr",Telered Television (720p) [Not 24/7] -http://k4.usastreams.com/ARBtv/teleplus/playlist.m3u8 -#EXTINF:-1 tvg-id="Telesistema.cr",Telesistema (486p) -https://59ef525c24caa.streamlock.net/ARBtv/ARBtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSURCostaRica.cr",TeleSUR Costa Rica (720p) [Not 24/7] -http://k3.usastreams.com/telesur/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSURCostaRica.cr",TeleSUR Costa Rica (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/telesur/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletica7.cr",Teletica 7 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x29e3wg -#EXTINF:-1 tvg-id="TVSurCanal9.cr",TV Sur Canal 9 (480p) [Not 24/7] -http://tv.ticosmedia.com:1935/TVSUR/TVSUR/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSurCanal14.cr",TV Sur Canal 14 (720p) [Timeout] -https://5bf8041cb3fed.streamlock.net/TVSURCANAL14/TVSURCANAL14/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoTourChannel.cr",Video Tour Channel (720p) [Not 24/7] -http://k4.usastreams.com/videotour/videotour/playlist.m3u8 -#EXTINF:-1 tvg-id="VMLatino.cr",VM Latino (720p) [Not 24/7] -https://59ef525c24caa.streamlock.net/vmtv/vmlatino/playlist.m3u8 -#EXTINF:-1 tvg-id="ZonaFilmsTV.cr",Zona Films TV (900p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/zonafilmstv diff --git a/streams/cu.m3u b/streams/cu.m3u deleted file mode 100644 index 39ee0a10a..000000000 --- a/streams/cu.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalEducativo2.cu",Canal Educativo 2 [Timeout] -http://177.52.221.214:8000/play/a0dx/index.m3u8 -#EXTINF:-1 tvg-id="CanalEducativo.cu",Canal Educativo [Timeout] -http://177.52.221.214:8000/play/a0dw/index.m3u8 -#EXTINF:-1 tvg-id="CubaVision.cu",CubaVision [Timeout] -http://177.52.221.214:8000/play/a0dc/index.m3u8 -#EXTINF:-1 tvg-id="",CubaVision Internacional (480p) [Not 24/7] -http://190.122.96.187:8888/http/010 -#EXTINF:-1 tvg-id="",CubaVision Internacional [Offline] -http://177.52.221.214:8000/play/a0dy/index.m3u8 -#EXTINF:-1 tvg-id="TeleRebelde.cu",Tele Rebelde [Timeout] -http://177.52.221.214:8000/play/a0dd/index.m3u8 diff --git a/streams/cw.m3u b/streams/cw.m3u deleted file mode 100644 index 235fac822..000000000 --- a/streams/cw.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BonceTV.cw",Bonce TV (480p) [Not 24/7] -https://seswa.bonce.tv/hls/bonceswa.m3u8 -#EXTINF:-1 tvg-id="NosPais.cw",Nos Pais (720p) [Not 24/7] -http://558bd16067b67.streamlock.net/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NosPais.cw",Nos Païs (720p) [Not 24/7] -http://highvolume04.streampartner.nl:1935/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCuracao.cw",TeleCuraçao (720p) -http://ott.streann.com:8080/loadbalancer/services/public/channels/5ed71e232cdc24a3d08cd6de/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDirect13.cw",TV Direct 13 (360p) [Not 24/7] -https://edge1.tvdirect13.com/live/smil:mystream.smil/playlist.m3u8 diff --git a/streams/cy.m3u b/streams/cy.m3u deleted file mode 100644 index e321671cc..000000000 --- a/streams/cy.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdaTV.cy",Ada TV (720p) [Offline] -http://kuzeykibris.tv/m3u8/tv_ada.m3u8 -#EXTINF:-1 tvg-id="AdaTV.cy",Ada TV (1080p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/kibrisadatv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7] -https://dev.aftermind.xyz/edge-hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7] -https://dev.aftermind.xyz/hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="ASTTV1.cy",AST TV 1 (PC) (1080p) [Not 24/7] -https://www.ast.tv/stream/1/master.m3u8 -#EXTINF:-1 tvg-id="ASTTV2.cy",AST TV 2 (PC) (1080p) [Not 24/7] -https://www.ast.tv/stream/2/master.m3u8 -#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (576p) [Not 24/7] -http://wms.brtk.net:1935/live/BRTHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (576p) [Not 24/7] -rtmp://wms.brtk.net:1935/live/BRTHD -#EXTINF:-1 tvg-id="BRT1HD.cy",BRT 1 HD (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_brt1.m3u8 -#EXTINF:-1 tvg-id="BRT2HD.cy",BRT 2 HD (406p) [Not 24/7] -http://wms.brtk.net:1935/live/brt1/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT3.cy",BRT 3 (406p) [Not 24/7] -http://wms.brtk.net:1935/live/brt2/playlist.m3u8 -#EXTINF:-1 tvg-id="CityChannel.cy",City Channel (720p) -https://dev.aftermind.xyz/edge-hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="CityChannel.cy",City Channel (720p) -https://dev.aftermind.xyz/hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="DigitalTV.cy",Digital TV (720p) -https://l8.cloudskep.com/digital/dtv/playlist.m3u8 -#EXTINF:-1 tvg-id="KuzeyKibrisTV.cy",Kuzey Kibris TV (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_kktv.m3u8 -#EXTINF:-1 tvg-id="Reload.cy",Reload (542p) -http://web.onair-radio.eu:1935/video/video/playlist.m3u8 -#EXTINF:-1 tvg-id="",RIK 1 (CYBC 1) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rik1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RIK 2 (CYBC 2) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rik2/playlist.m3u8 -#EXTINF:-1 tvg-id="",RIK HD (CYBC HD) [Geo-blocked] -http://l6.cloudskep.com/rikcy/rikhd/playlist.m3u8 -#EXTINF:-1 tvg-id="RIKSat.cy",RΙΚ Sat (CYBC S) (720p) [Not 24/7] -https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="",SAT-7 ARABIC (720p) -https://svs.itworkscdn.net/sat7arabiclive/sat7arabic.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="",SAT-7 KIDS (1080p) -https://svs.itworkscdn.net/sat7kidslive/sat7kids.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="",SAT-7 PARS (720p) -https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="",SAT-7 TÜRK (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Sigma.cy",Sigma (576p) [Not 24/7] -https://sl2.sigmatv.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="TV2020.cy",TV 2020 (720p) [Offline] -http://kuzeykibris.tv/m3u8/tv_dialog.m3u8 -#EXTINF:-1 tvg-id="VOULITV.cy",Vouli TV (1080p) -https://dev.aftermind.xyz/edge-hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu -#EXTINF:-1 tvg-id="VOULITV.cy",Vouli TV (1080p) -https://dev.aftermind.xyz/hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu diff --git a/streams/cz.m3u b/streams/cz.m3u deleted file mode 100644 index fdda8a016..000000000 --- a/streams/cz.m3u +++ /dev/null @@ -1,53 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ElektrikaTV.cz",Elektrika TV (360p) -http://rtmp.elektrika.cz/live/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Extasy HD / Leo TV HD (576p) -http://213.151.233.20:8000/dna-6233-tv-pc.m3u8 -#EXTINF:-1 tvg-id="Nova2.cz",Nova 2 (640p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_2_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="Nova.cz",Nova (640p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaAction.cz",Nova Action (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_action_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaCinema.cz",Nova Cinema (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_cinema_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaGold.cz",Nova Gold (576p) [Geo-blocked] -https://nova-live.ssl.cdn.cra.cz/channels/nova_gold_avod/playlist.m3u8 -#EXTINF:-1 tvg-id="Ocko.cz",Óčko (540p) -https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko.stream.1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Ocko.cz",Óčko (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoExpres.cz",Óčko Expres (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko_expres/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoGold.cz",Óčko Gold (540p) -https://ocko-live.ssl.cdn.cra.cz/channels/ocko_gold/playlist.m3u8 -#EXTINF:-1 tvg-id="OckoGold.cz",Óčko Gold (540p) [Geo-blocked] -https://ocko-live.ssl.cdn.cra.cz/cra_live2/ocko_gold.stream.1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PolarTV.cz",Polar TV (1080p) -https://stream.polar.cz/polar/polarlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="PrahaTV.cz",Praha TV (1080p) -https://stream.polar.cz/prahatv/prahatvlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTelevision.cz",Retro Music Television (360p) -http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTV.cz",Retro Music TV (360p) -http://89.185.253.55/retrotv/retrotvHQ1/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroMusicTV.cz",RetroMusicTV (360p) -http://stream.mediawork.cz/retrotv/smil:retrotv2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTMplus.cz",RTM plus (720p) -http://www.rtmplus.cz/live/1-playlist.m3u8 -#EXTINF:-1 tvg-id="Slagr2.cz",Šlágr 2 (576p) -http://92.62.234.233/slagr2.m3u -#EXTINF:-1 tvg-id="SlagrTV.cz",Slagr TV (540p) [Not 24/7] -http://slagrtv-live-hls.ssl.cdn.cra.cz/channels/slagrtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SlagrTV.cz",Šlágr TV (576p) -https://stream-6.mazana.tv/slagr.m3u -#EXTINF:-1 tvg-id="TVNatura.cz",TV Natura (360p) [Not 24/7] -https://media1.tvnatura.cz/live_out/1/live.m3u8 -#EXTINF:-1 tvg-id="",TV NOE (720p) [Offline] -https://w101.quickmedia.tv/prozeta-live04/prozeta-live04.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="VychodoceskaTV.cz",Východočeská TV (576p) -https://stream.polar.cz/vctv/vctvlive-1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Настоящее Время (480p) -http://ott-cdn.ucom.am/s61/index.m3u8 -#EXTINF:-1 tvg-id="",Настоящее Время (720p) [Not 24/7] -http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8 diff --git a/streams/de.m3u b/streams/de.m3u deleted file mode 100644 index 8946ce82f..000000000 --- a/streams/de.m3u +++ /dev/null @@ -1,473 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="123TV.de",1-2-3 TV (288p) -http://123tv-mx1.flex-cdn.net/index.m3u8 -#EXTINF:-1 tvg-id="3sat.de",3sat [Geo-blocked] -https://zdf-hls-18.akamaized.net/hls/live/2016501/dach/high/master.m3u8 -#EXTINF:-1 tvg-id="atv.de",a.tv (1080p) [Not 24/7] -https://augsburgtv.iptv-playoutcenter.de/augsburgtv/augsburgtv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="ADRIAMusic.de",ADRIA Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-1/master.m3u8 -#EXTINF:-1 tvg-id="AlexBerlin.de",Alex Berlin (1080p) [Not 24/7] -https://alex-stream.rosebud-media.de/live/alexlivetv40.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AnixeHDSerie.de",Anixe HD Serie (360p) -https://ma.anixa.tv/clips/stream/anixehd/index.m3u8 -#EXTINF:-1 tvg-id="",Antenne Vorarlberg (720p) [Not 24/7] -http://5857db5306b83.streamlock.net/antennevorarlberg-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="ARDEvent1.de",ARD Event 1 (540p) [Offline] -http://wdrardevent1-lh.akamaihd.net/i/ardevent1_weltweit@566648/master.m3u8 -#EXTINF:-1 tvg-id="",ARD-alpha (720p) -http://livestreams.br.de/i/bralpha_germany@119899/master.m3u8 -#EXTINF:-1 tvg-id="",ARD-alpha (720p) [Not 24/7] -https://brlive-lh.akamaihd.net/i/bralpha_germany@119899/master.m3u8 -#EXTINF:-1 tvg-id="",ARTI TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/139 -#EXTINF:-1 tvg-id="",ARTI TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/139.m3u8 -#EXTINF:-1 tvg-id="",ARTI TV (1080p) [Not 24/7] -http://176.10.117.18:8000/play/a002/index.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] -http://badentv-stream2.siebnich.info/rtplive/btv.stream/live.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] -http://badentv-stream2.siebnich.info/rtplive/btv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BadenTV.de",Baden TV (1080p) [Not 24/7] -https://cdn.icu.de/rtplive/btv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTV.de",Bibel TV (720p) -https://bibint01.iptv-playoutcenter.de/bibint01/bibint01.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTVImpuls.de",Bibel TV Impuls (720p) -https://bibeltv02.iptv-playoutcenter.de/bibeltv02/bibeltv02.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BibelTVMusik.de",Bibel TV Musik (720p) -http://bibeltv03.iptv-playoutcenter.de/bibeltv03/bibeltv03.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKRegionalTV.de",BLK Regional TV (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKTV.de",BLK TV (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de",BLK TV Hohenmölsen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8?ref=medienportal-sachsen- -#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de",BLK TV Hohenmölsen (1080p) [Not 24/7] -http://62.113.210.250/medienasa-live/BLKonline_high/playlist.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de",BR Fernsehen Nord (720p) [Geo-blocked] -http://livestreams.br.de/i/bfsnord_germany@119898/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de",BR Fernsehen Nord (720p) [Geo-blocked] -https://brlive-lh.akamaihd.net/i/bfsnord_germany@119898/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) -https://brcdn.vo.llnwd.net/br/fs/bfs_sued/hls/de/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] -http://livestreams.br.de/i/bfssued_germany@119890/master.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] -https://br_hdslive-f.akamaihd.net/i/bfssued_germany@119890/index_3776_av-p.m3u8 -#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de",BR Fernsehen Süd (720p) [Geo-blocked] -https://brlive-lh.akamaihd.net/i/bfssued_germany@119890/master.m3u8 -#EXTINF:-1 tvg-id="CampusTVMagdeburg.de",Campus TV Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8 -#EXTINF:-1 tvg-id="CampusTVMagdeburg.de",Campus TV Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8?bitrate=800 -#EXTINF:-1 tvg-id="CampusTVMagdeburgPlus.de",Campus-TV-Magdeburg+ (1080p) -http://62.113.210.250/medienasa-live/ok-wernigerode_high/chunklist_w937425968.m3u8 -#EXTINF:-1 tvg-id="ChemnitzFernsehen.de",Chemnitz Fernsehen (1080p) -https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="",CIRA TV (720p) [Not 24/7] -http://176.10.117.18:8000/play/a00f/index.m3u8 -#EXTINF:-1 tvg-id="",ÇİRA TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/25 -#EXTINF:-1 tvg-id="",ÇİRA TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/25.m3u8 -#EXTINF:-1 tvg-id="CroTVHD.de",CroTV HD (1080p) -http://92.204.40.139:8081/crotv/televizijahrvatskedijaspore/playlist.m3u8 -#EXTINF:-1 tvg-id="DaVinci.de",Da Vinci [Timeout] -http://sc.id-tv.kz/DaVinci_38_39.m3u8 -#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) -https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) -https://mcdn.daserste.de/daserste/de/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) [Geo-blocked] -https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 -#EXTINF:-1 tvg-id="DasErste.de",Das Erste (720p) [Geo-blocked] -https://mcdn.daserste.de/daserste/de/master.m3u8 -#EXTINF:-1 tvg-id="DASDING908.de",DASDING 90.8 (720p) [Offline] -https://swrdasdingvrhls-i.akamaihd.net/hls/live/780817/vrdasding/master.m3u8 -#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de",Deutsches Musik Fernsehen (540p) [Not 24/7] -http://tv.artcom-venture.de:1322/dmf/tv.m3u8 -#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de",Deutsches Musik Fernsehen (720p) [Not 24/7] -https://tv.artcom-venture.de/dmf/tv.m3u8 -#EXTINF:-1 tvg-id="DresdenFernsehen.de",Dresden Fernsehen (1080p) [Not 24/7] -https://dresden.iptv-playoutcenter.de/dresden/dresdenfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="DW.de",DW (480p) -http://ott-cdn.ucom.am/s26/index.m3u8 -#EXTINF:-1 tvg-id="DWArabic.de",DW Arabic (1080p) -https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/index.m3u8 -#EXTINF:-1 tvg-id="DWDeutsch.de",DW Deutsch (1080p) [Geo-blocked] -https://dwamdstream106.akamaized.net/hls/live/2017965/dwstream106/index.m3u8 -#EXTINF:-1 tvg-id="DWDeutschPlus.de",DW Deutsch+ (1080p) [Geo-blocked] -https://dwamdstream105.akamaized.net/hls/live/2015531/dwstream105/index.m3u8 -#EXTINF:-1 tvg-id="DWEnglish.de",DW English (720p) [Offline] -https://m-c010-j2apps.s.llnwi.net/hls_hd/8024.DWEnglishHD.in.m3u8 -#EXTINF:-1 tvg-id="DWEnglish.de",DW English (1080p) -https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/index.m3u8 -#EXTINF:-1 tvg-id="DWEspanol.de",DW Español (1080p) -https://dwamdstream104.akamaized.net/hls/live/2015530/dwstream104/index.m3u8 -#EXTINF:-1 tvg-id="EarthTV.de",Earth TV (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/germany/earth-tv -#EXTINF:-1 tvg-id="Elbekanal.de",Elbekanal (576p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="Elbekanal.de",Elbekanal (576p) -http://62.113.210.250/medienasa-live/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="ElbekanalSchonebeck.de",Elbekanal Schönebeck (576p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="emsTVLingen.de",ems TV Lingen (280p) -https://5889e7d0d6e28.streamlock.net/ev1tv-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="eoTV.de",eo TV (1080p) [Geo-blocked] -https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd5/playlist.m3u8 -#EXTINF:-1 tvg-id="ERF1.de",ERF 1 [Offline] -http://14000-l.z.core.cdn.streamfarm.net/007erfiphonelive/smil:stream_live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ErzTVStollberg.de",Erz-TV Stollberg (576p) -https://5acade5fc0c29.streamlock.net/kabeljournal/live2020.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroAlTV.de",EuroAl TV (720p) [Timeout] -http://5.135.92.131:1935/live/euroAl/playlist.m3u8 -#EXTINF:-1 tvg-id="Filstalwelle.de",Filstalwelle (576p) -http://62.113.210.2/filstalwelle-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="FinestTV.de",Finest TV (288p) [Not 24/7] -http://media.finest.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="FOLXMusic.de",FOLX Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-4/master.m3u8 -#EXTINF:-1 tvg-id="",FOLX Slovenija (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-5/master.m3u8 -#EXTINF:-1 tvg-id="FrankenTV.de",Franken Fernsehen (1080p) -https://s3.welocal.world/frankenfernsehen/media/191627/videos/hls.m3u8 -#EXTINF:-1 tvg-id="FrankenFernsehen.de",Franken Fernsehen (Nürnberg) (1080p) [Not 24/7] -https://frankentv.iptv-playoutcenter.de/frankentv/frankentv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="FriesischerRundfunkFriedeburg.de",Friesischer Rundfunk Friedeburg (350p) [Not 24/7] -https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/mp4:friesischerrundfunk/playlist.m3u8 -#EXTINF:-1 tvg-id="Hamburg1.de",Hamburg 1 (270p) [Not 24/7] -https://live2.telvi.de/hls/hamburg1.m3u8 -#EXTINF:-1 tvg-id="Handystar.de",Handystar (404p) [Offline] -http://mediaspar-live.hls.adaptive.level3.net/ses/mediaspar/stream1/streamPlaylist.m3u8 -#EXTINF:-1 tvg-id="HauptstadtTV.de",Hauptstadt.TV (Potsdam) (720p) [Not 24/7] -https://live2.telvi.de/hls/hauptstadttv_hd720.m3u8 -#EXTINF:-1 tvg-id="HealthTV.de",Health TV (720p) -http://62.67.13.53:1935/HealthTV/ghtv_live_master.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HR.de",hr-fernsehen (1080p) [Timeout] -https://hrhls.akamaized.net/hls/live/2024525/hrhls/index.m3u8 -#EXTINF:-1 tvg-id="HSE24Extra.de",HSE24 Extra (1080p) -https://hse24extra.akamaized.net/hls/live/2006596/hse24extra/playlist.m3u8 -#EXTINF:-1 tvg-id="HSE24Trend.de",HSE24 Trend (576p) -https://hse24trend.akamaized.net/hls/live/2006597/hse24trend/playlist.m3u8 -#EXTINF:-1 tvg-id="HSE.de",HSE (1080p) -https://hse24.akamaized.net/hls/live/2006663/hse24/playlist.m3u8 -#EXTINF:-1 tvg-id="IsarTV.de",Isar TV (1080p) [Not 24/7] -https://isar-tv.iptv-playoutcenter.de/isar-tv/isar-tv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="JenaTV.de",JenaTV (1080p) [Timeout] -https://stream7.sehradar.de/jenatv/ngrp:livestream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KTVFernsehen.de",K-TV (Fernsehen) (720p) -https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 -#EXTINF:-1 tvg-id="",KiKA [Geo-blocked] -https://kikageohls.akamaized.net/hls/live/2022693/livetvkika_de/master.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) -http://62.113.210.250/medienasa-live/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KulturMD.de",KulturMD (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KWTVWildau.de",KW TV Wildau (720p) [Not 24/7] -https://58af0c57eaf3e.streamlock.net/easycast11-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Lausitzwelle.de",Lausitzwelle (Fernsehen) (1080p) -https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd10/playlist.m3u8 -#EXTINF:-1 tvg-id="LeipzigFernsehen.de",Leipzig Fernsehen (1080p) -https://leipzig.iptv-playoutcenter.de/leipzig/leipzigfernsehen.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="LightChannel.de",Light Channel (576p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/lctvde/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) -http://62.113.210.250/medienasa-live/mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="MunchenTV.de",München TV (1080p) [Not 24/7] -https://muenchentv.iptv-playoutcenter.de/muenchentv/muenchentv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Muxxtv.de",Muxx.tv (1080p) [Not 24/7] -https://5856e1a25f71a.streamlock.net/easycast7-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",MyTVplus (Dresden) (576p) -https://mytvplus.iptv-playoutcenter.de/mytvplus/mytvplus.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="ntvEvent.de",n-tv Event (540p) -https://ntvlivehls-lh.akamaihd.net/i/ntvlivehls_event1_1@409295/master.m3u8 -#EXTINF:-1 tvg-id="naheTV.de",naheTV (720p) -https://s.ok54.de/nahetv/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="NDREvent1.de",NDR Event 1 (720p) -https://ndrevent-lh.akamaihd.net/i/ndrevent_1@409066/master.m3u8 -#EXTINF:-1 tvg-id="NDREvent2.de",NDR Event 2 (720p) -https://ndrevent-lh.akamaihd.net/i/ndrevent_2@429805/master.m3u8 -#EXTINF:-1 tvg-id="NDREvent3.de",NDR Event 3 (720p) [Geo-blocked] -https://ndrevent-lh.akamaihd.net/i/ndrevent_3@409068/master.m3u8 -#EXTINF:-1 tvg-id="NDRFernsehen.de",NDR Fernsehen (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_fs@430230/master.m3u8 -#EXTINF:-1 tvg-id="NDRHamburg.de",NDR Hamburg (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_hh@430231/master.m3u8 -#EXTINF:-1 tvg-id="NDRHamburg.de",NDR Hamburg (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_hh/master.m3u8 -#EXTINF:-1 tvg-id="NDRInternational.de",NDR International (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_int@430236/master.m3u8 -#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de",NDR Mecklenburg-Vorpommern (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_mv@430232/master.m3u8 -#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de",NDR Mecklenburg-Vorpommern (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_mv/master.m3u8 -#EXTINF:-1 tvg-id="NDRNiedersachsen.de",NDR Niedersachsen (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_nds@430233/master.m3u8 -#EXTINF:-1 tvg-id="NDRNiedersachsen.de",NDR Niedersachsen (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_nds/master.m3u8 -#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de",NDR Schleswig-Holstein (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_sh@430234/master.m3u8 -#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de",NDR Schleswig-Holstein (720p) [Timeout] -https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_sh/master.m3u8 -#EXTINF:-1 tvg-id="NDRWeltweiter.de",NDR Weltweiter (720p) [Geo-blocked] -https://ndrfs-lh.akamaihd.net/i/ndrfs_ww@430235/master.m3u8 -#EXTINF:-1 tvg-id="NiederbayernTV.de",Niederbayern TV (1080p) [Not 24/7] -https://stream03.stream.welocal.world/stream/nla/ngrp:nla.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NiederbayernTVPassau.de",Niederbayern TV Passau (1080p) [Offline] -https://stream03.stream.welocal.world/stream/npa/ngrp:npa.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Noa4Hamburg.de",Noa 4 Hamburg (1080p) -https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8 -#EXTINF:-1 tvg-id="Noa4Norderstedt.de",Noa 4 Norderstedt (1080p) -https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8 -#EXTINF:-1 tvg-id="NRT2.de",NRT 2 (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/54.m3u8 -#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="NRWision.de",NRWision (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",NRWISION (1080p) -https://fms.nrwision.de/live/livestreamHD.stream_source/playlist.m3u8 -#EXTINF:-1 tvg-id="OberlausitzTV.de",Oberlausitz TV (1080p) [Not 24/7] -http://5856e1a25f71a.streamlock.net:1935/easycast8-live/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="OberpfalzTV.de",Oberpfalz TV (1080p) -https://oberpfalztv.iptv-playoutcenter.de/oberpfalztv/oberpfalztv.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="",oeins (Oldenburg) (1080p) [Not 24/7] -https://www.oeins.de/live/studio.m3u8 -#EXTINF:-1 tvg-id="OFTVOffenbach.de",OF-TV Offenbach (720p) -https://5864df9ceac85.streamlock.net/germanpictures-live/mp4:streamschedule/playlist.m3u8 -#EXTINF:-1 tvg-id="OKDessau.de",OK Dessau (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKDessau.de" status="online",OK Dessau (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKFlensburg.de",OK Flensburg (576p) [Offline] -https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/flensburgtv/index.m3u8 -#EXTINF:-1 tvg-id="OKGiessen.de",OK Gießen (360p) [Not 24/7] -https://s.ok54.de/mok-gi/mok-gi/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKaiserslautern.de",OK Kaiserslautern (720p) [Not 24/7] -https://s.ok54.de/abr_okkl/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKassel.de",OK Kassel (720p) [Not 24/7] -https://s.ok54.de/mok-ks/kassel/playlist.m3u8 -#EXTINF:-1 tvg-id="OKKiel.de",OK Kiel (576p) [Offline] -https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/kieltv/index.m3u8 -#EXTINF:-1 tvg-id="OKLudwigshafen.de",OK Ludwigshafen (720p) [Not 24/7] -https://s.ok54.de/oklu/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) -http://62.113.210.250/medienasa-live/ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMagdeburg.de",OK Magdeburg (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de",OK Merseburg-Querfurt (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de",OK Merseburg-Querfurt (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKRheinMain.de",OK Rhein-Main (576p) [Not 24/7] -https://s.ok54.de/mok-rm/mok-rm/playlist.m3u8 -#EXTINF:-1 tvg-id="OKRheinLokalWorms.de",OK RheinLokal (Worms) (720p) [Not 24/7] -https://s.ok54.de/rheinlokal/rheinlOKal_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] -http://62.113.210.250/medienasa-live/ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSalzwedel.de",OK Salzwedel (1080p) [Not 24/7] -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) -http://62.113.210.250/medienasa-live/ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKStendal.de",OK Stendal (1080p) [Not 24/7] -http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-stendal_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKSuedwestpfalz.de",OK Suedwestpfalz (720p) [Not 24/7] -https://s.ok54.de/okswp/test/playlist.m3u8 -#EXTINF:-1 tvg-id="OKTrier.de",OK Trier (720p) -https://s.ok54.de/ott/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWeinstrasseNeustadt.de",OK Weinstraße (Neustadt) (432p) -https://s.ok54.de/okweinstrasse/okweinstrasse/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWernigerode.de",OK Wernigerode (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="OKWernigerode.de",OK Wernigerode (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="oldenburgeins.de",oldenburg eins (1080p) [Not 24/7] -https://oeins.de/live/studio.m3u8 -#EXTINF:-1 tvg-id="ONE1Music.de",ONE1 Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-3/master.m3u8 -#EXTINF:-1 tvg-id="ONE1Slovenija.de",ONE1 Slovenija (1080p) -https://serve-first.folxplay.tv/folx/ch-6/master.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de",Parlamentsfernsehen 1 (270p) [Not 24/7] -https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk1.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de",Parlamentsfernsehen 1 (1080p) -https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de",Parlamentsfernsehen 2 (270p) -https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk2.m3u8 -#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de",Parlamentsfernsehen 2 (270p) [Not 24/7] -https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk2.m3u8 -#EXTINF:-1 tvg-id="PearlTV.de",Pearl TV [Offline] -http://enstyle-live.hls.adaptive.level3.net/ses/enstyle/stream1/streamPlaylist.m3u8 -#EXTINF:-1 tvg-id="Phoenix.de",Phoenix [Geo-blocked] -https://zdf-hls-19.akamaized.net/hls/live/2016502/de/high/master.m3u8 -#EXTINF:-1 tvg-id="PunkteinsOberlausitz.de",Punkteins (Oberlausitz) (1080p) [Not 24/7] -https://5852afe96c9bb.streamlock.net/easycast8-live/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="",PunktUM (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="PUNKTum.de",PUNKTum (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="PUNKTumFernsehen.de",PUNKTum Fernsehen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u -#EXTINF:-1 tvg-id="PunktumSdharz.de",Punktum S�dharz (1080p) -http://62.113.210.250/medienasa-live/punktum_high/master.m3u8 -#EXTINF:-1 tvg-id="Radio21TV.de",Radio 21 TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/22300508/events/6675945/live.m3u8 -#EXTINF:-1 tvg-id="RadioWeserTVBremen.de",Radio Weser TV Bremen (576p) -https://5857499ee635b.streamlock.net/radiowesertv-live/mp4:livestreamTV/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ran 1 (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1.de",RAN1 (1080p) -http://62.113.210.250/medienasa-live/mp4:ran1_high/master.m3u8 -#EXTINF:-1 tvg-id="RAN1.de",RAN1 (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de",RAN1 Regionalfernsehen (1080p) -http://62.113.210.250:1935/medienasa-live/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de",RAN1 Regionalfernsehen (1080p) -http://62.113.210.250:1935/medienasa-live/ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) -http://62.113.210.250/medienasa-live/rbw_high/master.m3u8 -#EXTINF:-1 tvg-id="RBW.de",RBW (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVBodensee.de",Regio TV Bodensee (1080p) -https://regiotv-b.iptv-playoutcenter.de/regiotv-b/regiotv-b.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVSchwaben.de",Regio TV Schwaben (1080p) [Offline] -https://stream05.stream.welocal.world/stream/rsc/ngrp:rsc.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVStuttgart.de",Regio TV Stuttgart (1080p) -https://regiotv-s.iptv-playoutcenter.de/regiotv-s/regiotv-s.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RFH.de",RFH (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RFHHarz.de",RFH Harz (1080p) -http://62.113.210.250/medienasa-live/RFH_high/master.m3u8 -#EXTINF:-1 tvg-id="RFHHarz.de",RFH Harz (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8?ref=medienportal-sachsen-anhalt.de&seid=528347 -#EXTINF:-1 tvg-id="RFHTV.de",RFH TV (1080p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RFORosenheim.de",RFO Rosenheim (1080p) -https://stream01.stream.welocal.world/stream/fhd-rfo_66876/ngrp:stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/chunklist.m3u8 -#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",rheinmaintv (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8?=&ref=www.rheinmaintv.de&seid=598541 -#EXTINF:-1 tvg-id="RNF.de",RNF (1080p) -https://rnf.iptv-playoutcenter.de/rnf/rnf.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="RockAntenne.de",Rock Antenne [Not 24/7] -https://stream.rockantenne.de/rockantenne/stream/mp3 -#EXTINF:-1 tvg-id="RocklandTV.de",Rockland TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 -#EXTINF:-1 tvg-id="RocklandTV.de",Rockland TV (720p) [Not 24/7] -http://player-api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 -#EXTINF:-1 tvg-id="RONTV.de",RON TV (1080p) [Offline] -https://ron-i.akamaihd.net/hls/live/523496/ron/master.m3u8 -#EXTINF:-1 tvg-id="RTL.de",RTL [Offline] -https://cdn1.mobiletv.bg/T5/rtl/rtl_794613_850k.m3u8 -#EXTINF:-1 tvg-id="RTLWest.de",RTL West (540p) [Offline] -https://rtl_west-i.akamaihd.net/hls/live/656246/rtlwest/master.m3u8 -#EXTINF:-1 tvg-id="RWEErfurt.de",RWE Erfurt (1080p) -https://stream.keyweb.org:8085/hls/rwetv.m3u8 -#EXTINF:-1 tvg-id="",Südtirol TV (720p) -https://5ce9406b73c33.streamlock.net/SudTirolTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SaarlandFernsehen1.de",Saarland Fernsehen 1 (1080p) -https://saarland1.iptv-playoutcenter.de/saarland1/saarland1.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="SaarlandFernsehen2.de",Saarland Fernsehen 2 (720p) [Not 24/7] -https://saarland2.iptv-playoutcenter.de/saarland2/saarland2.stream_2/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraShortFilm.de",Santhora Short Film (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.de",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="Seenluft24.de",Seenluft24 (1080p) -https://5856e1a25f71a.streamlock.net/easycast7-live/mp4:livestreamhd20/playlist.m3u8 -#EXTINF:-1 tvg-id="SonnenklarTV.de",Sonnenklar.TV (1080p) [Offline] -http://euvia-live.hls.adaptive.level3.net/ses/euvia/index.m3u8 -#EXTINF:-1 tvg-id="SonusFMAlemania.de",Sonus FM Alemania (1080p) [Not 24/7] -http://www.sonus.fm:1935/public/stream_source/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.de",Sophia TV (720p) -https://www.onairport.live/sophiatv-it-live/livestream_low/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.de",Sophia TV (720p) -https://www.onairport.live/sophiatv/smil:sophia-tv-en.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SRFernsehen.de",SR Fernsehen (720p) -http://fs.live.sr.de/i/sr_universal02@107595/master.m3u8 -#EXTINF:-1 tvg-id="SRFernsehen.de",SR Fernsehen (720p) -https://srlive24-lh.akamaihd.net/i/sr_universal02@107595/master.m3u8 -#EXTINF:-1 tvg-id="Studio47.de",Studio 47 (480p) [Not 24/7] -https://5852afe96c9bb.streamlock.net/studio47-live/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SWR3VisualRadio.de",SWR 3 Visual Radio (720p) [Offline] -https://swrswr3vrhls-i.akamaihd.net/hls/live/780818/vrswr3/master.m3u8 -#EXTINF:-1 tvg-id="Sylt1.de",Sylt1 (404p) -https://5aec29c5dd23b.streamlock.net:8443/sylt1/sylt1_high1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Tagesschau24.de",Tagesschau24 (720p) -https://tagesschau-lh.akamaihd.net/i/tagesschau_1@119231/master.m3u8 -#EXTINF:-1 tvg-id="TeinsTV.de",Teins TV (1080p) [Not 24/7] -http://live1.markenfunk.com/t1/live/chunklist.m3u8 -#EXTINF:-1 tvg-id="teltOwkanal.de",teltOwkanal (1080p) -https://5856e1a25f71a.streamlock.net/easycast8-live/mp4:livestreamhd8/playlist.m3u8 -#EXTINF:-1 tvg-id="TesasTV.de",Tesas TV (720p) [Not 24/7] -https://jola.live:16200/tesastv.m3u8 -#EXTINF:-1 tvg-id="TideTV.de",Tide TV (1080p) [Not 24/7] -https://5889e7d0d6e28.streamlock.net/tide-live/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="tiviTURK.de",tiviTÜRK (720p) [Not 24/7] -https://stream.tiviturk.de/live/tiviturk.m3u8 -#EXTINF:-1 tvg-id="TV38SudostNiedersachen.de",TV38 Südost-Niedersachen (480p) [Not 24/7] -http://62.113.221.3/tv38-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBayernLive.de",TV Bayern Live (1080p) [Not 24/7] -https://s3.welocal.world/tvbayernlive/media/134371/videos/hls.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) -http://58bd5b7a98e04.streamlock.net/medienasa-live/tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) -http://62.113.210.250/medienasa-live/tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHalle.de",TV Halle (720p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="TVIngolstadt.de",TV Ingolstadt (1080p) [Offline] -https://stream01.stream.welocal.world/stream/tvi/ngrp:tvi.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMainfranken.de",TV Mainfranken (1080p) [Not 24/7] -https://tvtouringw.iptv-playoutcenter.de/tvtouringw/tvtouringw.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMainfranken.de",TV Mainfranken (1080p) [Offline] -https://stream01.stream.welocal.world/stream/tvm/ngrp:tvm.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMittelrhein.de",TV Mittelrhein (404p) [Offline] -https://sdn-global-live-http-cache.3qsdn.com/2979/amlst:5714-sbr/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOberfranken.de",TV Oberfranken (1080p) [Offline] -https://stream02.stream.welocal.world/stream/tvo/ngrp:tvo.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVA.de",TVA (1080p) [Not 24/7] -https://tvaktuellr.iptv-playoutcenter.de/tvaktuellr/tvaktuellr.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAOstbayern.de",TVA Ostbayern (1080p) [Offline] -https://stream02.stream.welocal.world/stream/tva/ngrp:tva.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="",TVO (1080p) [Not 24/7] -https://tvoberfranken.iptv-playoutcenter.de/tvoberfranken/tvoberfranken.stream_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Unserding.de",Unserding (544p) -https://srunserding-lh.akamaihd.net/i/visualradio_ud@197013/master.m3u8 -#EXTINF:-1 tvg-id="WDRFernsehen.de",WDR Fernsehen (720p) [Offline] -https://wdr_fs-lh.akamaihd.net/i/wdrfs_weltweit@112033/master.m3u8 -#EXTINF:-1 tvg-id="WDRKoeln.de",WDR Koeln (720p) [Timeout] -https://wdrfsww247.akamaized.net/hls/live/2009628/wdr_msl4_fs247ww/master.m3u8 -#EXTINF:-1 tvg-id="Welt.de",WELT [Geo-blocked] -https://live2weltcms-lh.akamaihd.net/i/Live2WeltCMS_1@444563/master.m3u8 -#EXTINF:-1 tvg-id="WesterwaldTV.de",Westerwald TV (404p) [Offline] -https://sdn-global-live-http-cache.3qsdn.com/2980/amlst:5715-sbr/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldofFreesports.de",World of Freesports (720p) -https://a.jsrdn.com/broadcast/ab14783a09/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ZDF.de",ZDF [Geo-blocked] -https://zdf-hls-15.akamaized.net/hls/live/2016498/de/high/master.m3u8 -#EXTINF:-1 tvg-id="",ZDFinfo [Geo-blocked] -https://zdf-hls-17.akamaized.net/hls/live/2016500/de/high/master.m3u8 -#EXTINF:-1 tvg-id="",ZDFneo [Geo-blocked] -https://zdf-hls-16.akamaized.net/hls/live/2016499/de/high/master.m3u8 -#EXTINF:-1 tvg-id="ZWEI2Music.de",ZWEI2 Music (1080p) [Timeout] -https://serve-first.folxplay.tv/folx/ch-2/master.m3u8 diff --git a/streams/de_samsung.m3u b/streams/de_samsung.m3u deleted file mode 100644 index a9c966218..000000000 --- a/streams/de_samsung.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CNNInternationalGermany.us",CNN International Germany (720p) -https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DeluxeLoungeHD.de",Deluxe Lounge HD (720p) [Not 24/7] -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/manifest/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/91fcad1e-54b1-4702-9ec1-22a379525281/0.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] -https://dust-samsung-uk-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Deutsch (720p) -https://rakuten-euronews-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEurope.fr",Fashion TV (1080p) -https://fashiontv-fashiontv-4-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsung-de.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsung-de.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesGermany.es",Rakuten TV Action Movies Germany (720p) [Offline] -https://rakuten-actionmovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesGermany.es",Rakuten TV Comedy Movies Germany (720p) [Offline] -https://rakuten-comedymovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaGermany.es",Rakuten TV Drama Germany (720p) [Offline] -https://rakuten-tvshows-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyGermany.es",Rakuten TV Family Germany (720p) [Offline] -https://rakuten-family-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightGermany.es",Rakuten TV Spotlight Germany (720p) [Offline] -https://rakuten-spotlight-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) -https://sofy-ger-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.ca",Stingray Karaoke (1080p) -https://stingray-karaoke-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) -https://stingray-qelloconcerts-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperToonsTV.de",Super Toons TV (720p) [Offline] -https://kedoo-supertoonstv-5-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeDeutschland.us",Tastemade Deutschland (720p) -https://tastemade-de-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.ca",Teletubbies (720p) [Offline] -https://dhx-teletubbies-3-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveGermany.us",The Pet Collective Germany (720p) [Offline] -https://the-pet-collective-international-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] -https://travelxp-travelxp-2-de.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xite.nl",Xite (720p) -https://xite-samsung-de.amagi.tv/playlist.m3u8 diff --git a/streams/dk.m3u b/streams/dk.m3u deleted file mode 100644 index 7ca91ffba..000000000 --- a/streams/dk.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KanalHovedstaden.dk",Kanal Hovedstaden (720p) -https://59b954022ec35.streamlock.net/liveTV2/smil:liveTVstream2.transcoder.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KKRtv.dk",KKRtv (720p) -http://stream.kkr.dk/live/kkr/playlist.m3u8 -#EXTINF:-1 tvg-id="KKRtv.dk",KKRtv (720p) -http://stream.kkr.dk/live/ngrp:kkr_adaptive/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2Bornholm.dk",TV2/Bornholm (1080p) [Not 24/7] -https://live.tv2bornholm.dk/stream/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2Lorry.dk",TV2/Lorry (720p) -https://cdnapisec.kaltura.com/p/2045321/sp/204532100/playManifest/entryId/1_2kojfk4m/format/applehttp/protocol/https/uiConfId/32599481/a.m3u8 -#EXTINF:-1 tvg-id="TV2Ostjylland.dk",TV2/Østjylland (720p) -https://cdnapisec.kaltura.com/p/2102081/sp/2102081/playManifest/entryId/0_x4p3licd/flavorIds/0_pcvatr5k,0_aezqkdsi,0_dkeq429y,0_99pivdxs/deliveryProfileId/10552/protocol/https/format/applehttp/a.m3u8 -#EXTINF:-1 tvg-id="TV2Fyn.dk",TV2 Fyn (270p) [Not 24/7] -https://cdnapisec.kaltura.com/p/1966291/sp/1966291/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/flavorId/0_8g29e3jz/name/a.mp4/index.m3u8 diff --git a/streams/dk_samsung.m3u b/streams/dk_samsung.m3u deleted file mode 100644 index 8ae87810d..000000000 --- a/streams/dk_samsung.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) -https://rakuten-africanews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) [Offline] -https://bloomberg-quicktake-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) [Offline] -https://bloomberg-bloomberg-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) [Offline] -https://mmm-ducktv-4-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionDenmark.es",Rakuten Action (Denmark) (720p) [Offline] -https://rakuten-action-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyDenmark.es",Rakuten Comedy (Denmark) (720p) [Offline] -https://rakuten-comedy-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesDenmark.es",Rakuten Documentaries (Denmark) (720p) [Offline] -https://rakuten-documentaries-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaDenmark.es",Rakuten Drama (Denmark) (720p) [Offline] -https://rakuten-drama-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyDenmark.es",Rakuten Family (Denmark) (720p) [Offline] -https://rakuten-family-10-dk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightDenmark.es",Rakuten Spotlight (Denmark) (720p) [Offline] -https://rakuten-spotlight-10-dk.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/do.m3u b/streams/do.m3u deleted file mode 100644 index 25ba65235..000000000 --- a/streams/do.m3u +++ /dev/null @@ -1,141 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",AkíTV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Akitv/Akitv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Ame47.do",Amé 47 (720p) [Offline] -https://ss6.domint.net:3028/ame_str/amecanal47/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimeZoneTV.do",Anime Zone TV (480p) [Not 24/7] -http://azxtv.com/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Boreal.do",Boreal (720p) [Offline] -https://5b38ce71f1f00.streamlock.net/8180/8180/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.do",Canal 12 (720p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/telecanal12/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal56.do",Canal 56 (720p) [Geo-blocked] -https://cloudflare.streamgato.us:3549/live/canal56live.m3u8 -#EXTINF:-1 tvg-id="CanalAme47.do",Canal Amé 47 (720p) [Offline] -http://ss6.domint.net:2028/ame_str/amecanal47/master.m3u8 -#EXTINF:-1 tvg-id="Carivision.do",Carivision (720p) [Not 24/7] -http://ss6.domint.net:2012/tes_str/teleelsalvador/playlist.m3u8 -#EXTINF:-1 tvg-id="ChinolaTV.do",Chinola TV (480p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/Chinolatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevisionCanal19.do",Cinevision Canal 19 (720p) -https://live.teledom.info:3713/live/cinevisionlive.m3u8 -#EXTINF:-1 tvg-id="ColorVisionCanal9.do",Color Vision Canal 9 [Timeout] -http://177.52.221.214:8000/play/a0c0/index.m3u8 -#EXTINF:-1 tvg-id="ComunionTV.do",Comunion TV (720p) [Not 24/7] -http://50.30.37.36:1935/live/smil:MyStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ComunionTV.do",Comunion TV (720p) [Not 24/7] -http://50.30.37.36:1935/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="DANTV.do",DAN TV (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Punaltv/punaltvHD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Digital15.do",Digital 15 (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://livestream.com/accounts/27456795/events/8268514/player -#EXTINF:-1 tvg-id="DigitalVision.do",Digital Vision (720p) [Not 24/7] -https://ss3.domint.net:3120/dv6_str/digitalvision/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ecovisión (480p) [Not 24/7] -https://vdo1.streamgato.us:3014/live/ecovisionlive.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.do",Fuego TV (720p) [Not 24/7] -https://video.misistemareseller.com/Fuegotv/Fuegotv/playlist.m3u8 -#EXTINF:-1 tvg-id="GDMTV.do",GDMTV (720p) [Not 24/7] -https://ss2.domint.net:3200/gdm_str/gdmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="GHTelevisionCanal10.do",GH Television Canal 10 (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3352/live/ghtelevisionhdlive.m3u8 -#EXTINF:-1 tvg-id="HermanasMirabalTV.do",Hermanas Mirabal TV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Hmtv/hmtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="HilandoFino.do",Hilando Fino (1080p) [Not 24/7] -https://primary-out.iptv-global.net/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 -#EXTINF:-1 tvg-id="Hits360TV.do",Hits 360 TV (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/hits360tv/hits360HD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="HM.do",HM (720p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Hmtv/hmtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="LAMIATV.do",LA MIA TV (720p) [Not 24/7] -https://ss8.domint.net:3108/mia_str/lamiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="LocomotionTV.do",Locomotion TV (480p) [Not 24/7] -http://51.222.85.85:81/hls/loco/index.m3u8 -#EXTINF:-1 tvg-id="LocomotionTV.do",Locomotion TV (480p) [Not 24/7] -http://locomotiontv.com/envivo/loco_ch/stream.m3u8 -#EXTINF:-1 tvg-id="LVM.do",LVM (720p) -https://uni01rtmp.tulix.tv/playout2multi9/lavozdemaria.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MegavisionCanal43.do",Megavision Canal 43 (480p) [Not 24/7] -http://stream3.prostudionetwork.com:1943/megavision/MV/playlist.m3u8 -#EXTINF:-1 tvg-id="Microvision10.do",Microvision 10 (720p) [Not 24/7] -http://190.103.183.24:1935/live/MicroHD/playlist.m3u8 -#EXTINF:-1 tvg-id="MisionELTV.do",Mision ELTV (360p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8286/8286/playlist.m3u8 -#EXTINF:-1 tvg-id="ORBITTV.do",ORBIT TV (480p) [Geo-blocked] -https://ss3.domint.net:3134/otv_str/orbittv/playlist.m3u8 -#EXTINF:-1 tvg-id="PH.do",PH (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="PHTVCanal34.do",PHTV Canal 34 (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/chunks.m3u8 -#EXTINF:-1 tvg-id="PuntaCanaTV.do",Punta Cana TV (720p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/puntacanatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio105full.do",Radio105 full (1080p) [Not 24/7] -https://cloudflare.streamgato.us:3901/live/radio105live.m3u8 -#EXTINF:-1 tvg-id="ReadyTVCanal6.do",Ready TV Canal 6 (720p) [Not 24/7] -http://190.103.183.24:1935/ReadyTV/ReadyHD/playlist.m3u8 -#EXTINF:-1 tvg-id="RNN.do",RNN (720p) [Not 24/7] -https://ss2.domint.net:3202/rnn_str/canal27/playlist.m3u8 -#EXTINF:-1 tvg-id="RomanaTVCanal42.do",Romana TV Canal 42 (410p) [Geo-blocked] -http://tv.romanatv42.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="SanIsidroTV.do",San Isidro TV (360p) [Not 24/7] -https://cdn4.hostlagarto.com:8081/static/sanisidrotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SiTV.do",SiTV (720p) -http://190.122.104.221/Player/sitv.m3u8 -#EXTINF:-1 tvg-id="SuperCanal33.do",Super Canal 33 (480p) -http://190.122.96.186:8888/http/005 -#EXTINF:-1 tvg-id="",Super TV 55 (Santiago) (720p) [Not 24/7] -http://ss8.domint.net:2128/stv_str/tv55/playlist.m3u8 -#EXTINF:-1 tvg-id="",Super TV 55 (Santiago) (720p) [Not 24/7] -https://ss8.domint.net:3128/stv_str/tv55/master.m3u8 -#EXTINF:-1 tvg-id="TDNMedios.do",TDN Medios (480p) [Not 24/7] -http://108.175.14.125:1935/tdn/tdn/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleBendicion.do",TeleBendicion (720p) [Not 24/7] -http://ss8.domint.net:2124/tbt_str/telebendicion/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecanal28.do",Telecanal 28 (360p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Telecanal-28/telecanal.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCibao.do",TeleCibao (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Telecibao/Telecibao/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleCibao.do",TeleCibao (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/Telecibao/Telecibao/playlist.m3u8 -#EXTINF:-1 tvg-id="TelefuturoCanal23.do",Telefuturo Canal 23 (720p) [Not 24/7] -http://ss8.domint.net:2118/tf_str/futu/master.m3u8 -#EXTINF:-1 tvg-id="Teleimpacto.do",Teleimpacto (720p) [Not 24/7] -http://190.122.96.188:8888/http/013 -#EXTINF:-1 tvg-id="Telemicro.do",Telemicro (720p) [Not 24/7] -https://api.new.livestream.com/accounts/28126860/events/8825282/live.m3u8 -#EXTINF:-1 tvg-id="Telemilenio.do",Telemilenio (720p) [Not 24/7] -http://cm.hostlagarto.com:8081/Telemilenio/Telemilenio.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Telenord8.do",Telenord 8 (1080p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord8/telenord8/playlist.m3u8 -#EXTINF:-1 tvg-id="Telenord12.do",Telenord 12 (720p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord12/telenord12/playlist.m3u8 -#EXTINF:-1 tvg-id="TelenordCanal10.do",Telenord Canal 10 (1080p) [Not 24/7] -http://newyorkstream.ddns.net:1935/telenord10/telenord10/playlist.m3u8 -#EXTINF:-1 tvg-id="Telesistema11.do",Telesistema 11 [Timeout] -http://177.52.221.214:8000/play/a0fk/index.m3u8 -#EXTINF:-1 tvg-id="TelesurCanal10.do",Telesur Canal (360p) [Not 24/7] -https://ss3.domint.net:3124/tls_str/telesur/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleunion.do",Teleunion (480p) [Not 24/7] -http://server3.prostudionetwork.com:1945/teleunion/TU/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleverCanal12.do",Telever Canal 12 [Offline] -http://tengomusica.ddns.net:1935/telever/telever.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Éxitos (720p) [Not 24/7] -https://vdo1.streamgato.us:3359/live/tvexitoslive.m3u8 -#EXTINF:-1 tvg-id="TVMontanaCanal10.do",TV Montaña Canal 10 (720p) [Not 24/7] -http://ss6.domint.net:2060/tvm_str/montanatv/master.m3u8 -#EXTINF:-1 tvg-id="TVPlata.do",TV Plata (1080p) [Not 24/7] -https://ss6.domint.net:3104/tvp_str/tvplata/playlist.m3u8 -#EXTINF:-1 tvg-id="TVS.do",TVS (540p) [Geo-blocked] -http://cm.hostlagarto.com:8081/Tvstv/TvstvHD.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Vallevision.do",Vallevision (720p) [Not 24/7] -http://190.103.183.24:1935/Vallevision/ValleHD/playlist.m3u8 -#EXTINF:-1 tvg-id="VallevisionCanal10.do",Vallevision Canal 10 (720p) [Not 24/7] -https://streaming.telecablecentral.com.do/Vallevision/ValleHD/playlist.m3u8 -#EXTINF:-1 tvg-id="VegaTeve.do",Vega Teve (720p) [Not 24/7] -https://ss6.domint.net:3012/tes_str/teleelsalvador/playlist.m3u8 -#EXTINF:-1 tvg-id="VivaCanal5.do",Viva Canal 5 (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/dominicanrepublic/viva-canal-5 -#EXTINF:-1 tvg-id="Zol106.do",Zol106 (720p) [Not 24/7] -https://ss3.domint.net:3108/zol_str/vzol/playlist.m3u8 -#EXTINF:-1 tvg-id="ZTV.do",ZTV (720p) [Not 24/7] -https://lb00zdigital.streamprolive.com/mnt/hls/live.m3u8 diff --git a/streams/dz.m3u b/streams/dz.m3u deleted file mode 100644 index 125e36117..000000000 --- a/streams/dz.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlAnisTV.dz",Al Anis TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/El_Fhama_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV3.dz",Algérie TV3 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/A3_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV4.dz",Algérie TV4 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_4/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV5.dz",Algérie TV5 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_5/playlist.m3u8 -#EXTINF:-1 tvg-id="AlgerieTV6.dz",Algérie TV6 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV_6_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="BahiaTV.dz",Bahia TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Bahia_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAlgerie.dz",Canal Algérie [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/CANAL_ALGERIE/playlist.m3u8 -#EXTINF:-1 tvg-id="CNA.dz",CNA (Chaîne Nord Africaine) (360p) [Not 24/7] -https://live.creacast.com/cna/smil:cna.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukNews.dz",Echorouk News (240p) [Not 24/7] -http://echorouk-live-tv.dzsecurity.net:8081/echo/EchoroukNews/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukNews.dz",Echorouk News (480p) [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/ECHOROUK_NEWS/playlist.m3u8 -#EXTINF:-1 tvg-id="EchoroukTV.dz",Echorouk TV (720p) [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Echorouk_TV_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="ElBilad.dz",El Bilad [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_BILAD/playlist.m3u8 -#EXTINF:-1 tvg-id="ElDjazairN1.dz",El Djazair N1 [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/El_Djazair_N1/playlist.m3u8 -#EXTINF:-1 tvg-id="ElDjazairiaOne.dz",El Djazairia One [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_DJAZAIRIA_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="ElFadjrTV.dz",El Fadjr TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_FADJR_TV_DZ/playlist.m3u8 -#EXTINF:-1 tvg-id="ElHayatTV.dz",El Hayat TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_HAYAT_TV_ALGERIE/playlist.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV (240p) [Not 24/7] -http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV/playlist.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV (360p) [Not 24/7] -http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV_SD/chunks.m3u8 -#EXTINF:-1 tvg-id="EnnaharTV.dz",Ennahar TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/ENNAHAR_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="ENTV.dz",ENTV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/PROGRAMME_NATIONAL/playlist.m3u8 -#EXTINF:-1 tvg-id="LinaTV.dz",Lina TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Lina_TV/playlist.m3u8 -#EXTINF:-1 tvg-id="SamiraTV.dz",Samira TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/SamiraTV/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Elmaarifa.dz",TV7 Elmaarifa [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV7_ELMAARIFA/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8Edhakira.dz",TV8 Edhakira [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/TV8_EDHAKIRA/playlist.m3u8 diff --git a/streams/ec.m3u b/streams/ec.m3u deleted file mode 100644 index f7eb71280..000000000 --- a/streams/ec.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanelaTV.ec",CanelaTV (720p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/canelatv/canelatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Ecotel.ec",Ecotel (720p) [Not 24/7] -https://ecotel.streamseguro.com/hls/ecoteltv.m3u8 -#EXTINF:-1 tvg-id="EcuadorTV.ec",Ecuador TV (480p) -http://45.179.140.242:8000/play/a0jp -#EXTINF:-1 tvg-id="EducaTV.ec",EducaTV (1080p) [Not 24/7] -https://cloud7.streamingcnt.net/cnt/educa/playlist.m3u8 -#EXTINF:-1 tvg-id="ElSolRadioTelevision.ec",El Sol Radio y Television (404p) [Not 24/7] -http://streaming5.globalhostla.com/rtplive/elsolrad/playlist.m3u8 -#EXTINF:-1 tvg-id="",Elite Radio Televisión (480p) [Not 24/7] -https://tv.portalexpress.es:3785/live/trincheratvlive.m3u8 -#EXTINF:-1 tvg-id="HechosEcuador.ec",Hechos Ecuador (480p) [Not 24/7] -http://37.187.7.106/hechostv/live.m3u8 -#EXTINF:-1 tvg-id="LoretoTV.ec",Loreto TV (720p) [Not 24/7] -https://srv1.zcast.com.br/diego3282/diego3282/playlist.m3u8 -#EXTINF:-1 tvg-id="MulticanalCatamayo.ec",Multicanal Catamayo (720p) [Not 24/7] -https://multicanal.streamseguro.com/hls/streaming.m3u8 -#EXTINF:-1 tvg-id="",Paraíso Digital (360p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8106/index.m3u8 -#EXTINF:-1 tvg-id="",Pasión TV (360p) [Not 24/7] -https://tv.portalexpress.es:3753/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="",Princesa Estéreo TV (884p) [Not 24/7] -https://tv.portalexpress.es:3084/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="PuruwaTV.ec",Puruwa TV (360p) -https://srv.panelcast.net/puruwalive/puruwalive/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioImpacto2.ec",Radio Impacto 2 (1080p) [Not 24/7] -https://sv72.ecuaradiotv.net/impacto2tv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTS.ec",RTS (RadioTeleSistema) (480p) -http://45.179.140.242:8000/play/a0kw -#EXTINF:-1 tvg-id="RTU.ec",RTU (630p) [Not 24/7] -https://streamingwowza.com:1936/rtutv/rtutv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Teleamazonas (720p) [Not 24/7] -https://api.new.livestream.com/accounts/1359588/events/4428723/live.m3u8 -#EXTINF:-1 tvg-id="Telerama.ec",Telerama (240p) [Not 24/7] -https://envivo.telerama.ec/stream.m3u8 -#EXTINF:-1 tvg-id="TVUniversal.ec",TV Universal (Ecuador) (720p) [Not 24/7] -https://59c3c7bda15f4.streamlock.net:444/universal/smil:universal.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UCSG.ec",UCSG (1080p) [Not 24/7] -http://ecuastreamhd.com:1935/UCSGHQ/UCSGHQ/chunklist.m3u -#EXTINF:-1 tvg-id="",Unisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://player.vimeo.com/video/645807901 -#EXTINF:-1 tvg-id="VisionRadioTelevision.ec",Visión Radio Televisión (808p) -https://stmv.panel.mivideo.pro/vision/vision/playlist.m3u8 -#EXTINF:-1 tvg-id="WuanPlus.ec",Wuan+ (720p) -https://streamingwowza.com:1936/wuanplus/wuanplus/playlist.m3u8 -#EXTINF:-1 tvg-id="ZaracayTV.ec",Zaracay TV (720p) [Not 24/7] -https://streamingwowza.com:1936/zaracaytv/smil:zaracaytv.smil/playlist.m3u8 diff --git a/streams/ee.m3u b/streams/ee.m3u deleted file mode 100644 index 01703d834..000000000 --- a/streams/ee.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ETV2.ee",ETV2 (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etv2.m3u8 -#EXTINF:-1 tvg-id="ETV.ee",ETV (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etv.m3u8 -#EXTINF:-1 tvg-id="ETV.ee",ETV (720p) -https://sb.err.ee/live/etv.m3u8 -#EXTINF:-1 tvg-id="ETVPlus.ee",ETV+ (720p) -https://errstreams4.cdn.eurovisioncdn.net/live/etvpluss.m3u8 -#EXTINF:-1 tvg-id="LifeTV.ee",Life TV (432p) [Not 24/7] -https://lifetv.bitflip.ee/live/stream1.m3u8 -#EXTINF:-1 tvg-id="Riigikogu.ee",Riigikogu (720p) -https://h6le2.babahhcdn.com/bb1027/smil:riigikogu_ch1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TBNBaltia.ee",TBN Baltia (1080p) -http://dc.tbnbaltia.eu:8088/dvr/rewind-21600.m3u8 diff --git a/streams/eg.m3u b/streams/eg.m3u deleted file mode 100644 index 34aa1bcae..000000000 --- a/streams/eg.m3u +++ /dev/null @@ -1,79 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AghapyTV.eg",Aghapy TV (1080p) -https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlGhad.eg",Al Ghad (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alghadtv/live -#EXTINF:-1 tvg-id="AlHayatTV.eg",Al Hayat TV (720p) -http://media.islamexplained.com:1935/live/_definst_mp4:ahme.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Alrafidain.eg",Alrafidain (1024p) [Not 24/7] -http://cdg3.edge.tmed.pw/arrafidaintv/live_1024p/chunks.m3u8 -#EXTINF:-1 tvg-id="AppleAflam.eg",Apple Aflam (576p) [Timeout] -http://213.162.202.5:4000/play/a09p/index.m3u8 -#EXTINF:-1 tvg-id="AppleAlwan.eg",Apple Alwan (576p) [Timeout] -http://213.162.202.5:4000/play/a09d/index.m3u8 -#EXTINF:-1 tvg-id="AppleCinema.eg",Apple Cinema (576p) [Timeout] -http://213.162.202.5:4000/play/a09b/index.m3u8 -#EXTINF:-1 tvg-id="AppleComedy.eg",Apple Comedy (576p) [Timeout] -http://213.162.202.5:4000/play/a09a/index.m3u8 -#EXTINF:-1 tvg-id="AppleHekayat.eg",Apple Hekayat (576p) [Timeout] -http://213.162.202.5:4000/play/a0a1/index.m3u8 -#EXTINF:-1 tvg-id="AppleMoslsalat.eg",Apple Moslsalat (576p) [Timeout] -http://213.162.202.5:4000/play/a09l/index.m3u8 -#EXTINF:-1 tvg-id="AppleToday.eg",Apple Today (576p) [Timeout] -http://213.162.202.5:4000/play/a09k/index.m3u8 -#EXTINF:-1 tvg-id="ATVSat.eg",ATVSat (1080p) [Not 24/7] -https://stream.atvsat.com/atvsatlive/smil:atvsatlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CBC.eg",CBC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/cbcstream/live -#EXTINF:-1 tvg-id="CBCDrama.eg",CBC Drama (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCDramaStream/live -#EXTINF:-1 tvg-id="CBCSofra.eg",CBC Sofra [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCSofraStream/live -#EXTINF:-1 tvg-id="CopticTV.eg",Coptic TV (720p) -https://58cc65c534c67.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CopticTV.eg",Coptic TV (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElsharqTV.eg",Elsharq TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/elsharq_live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="",eXtra News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC65F33K2cXk9hGDbOQYhTOw/live -#EXTINF:-1 tvg-id="",Huda (720p) [Timeout] -https://cdn.videoevent.live:19360/elfaro2/elfaro2.m3u8 -#EXTINF:-1 tvg-id="KoogiTV.eg",Koogi TV (720p) -https://5d658d7e9f562.streamlock.net/koogi.tv/koogi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MekameleenTV.eg",Mekameleen TV (1080p) -https://mn-nl.mncdn.com/mekameleen/smil:mekameleentv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MESat.eg",MESat (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCg5uHOxrP5GkMWldOavPKGQ/live -#EXTINF:-1 tvg-id="NileTVCinema.eg",Nile TV Cinema (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCinema/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVComedy.eg",Nile TV Comedy (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileComedy/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVCulture.eg",Nile TV Culture (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCulture/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVFamily.eg",Nile TV Family (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileFamily/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVLearning.eg",Nile TV Learning (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/Learning1/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVLife.eg",Nile TV Life (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileLife/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NileTVSport.eg",Nile TV Sport (576p) [Not 24/7] -http://livestreaming5.onlinehorizons.net/hls-live/NTNNileSport/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="NobleTV.eg",Noble TV (360p) -https://5d39f1ab8ba65.streamlock.net:1935/arabic-test/arabic-test/playlist.m3u8 -#EXTINF:-1 tvg-id="NogoumFMTV.eg",Nogoum FM TV (506p) [Not 24/7] -https://stream-speed.extremesolution.mobi/nogoumfm/nogoumfmlive/playlist.m3u8 -#EXTINF:-1 tvg-id="OmgChannelTV.eg",Omg Channel TV (720p) [Not 24/7] -http://media6.smc-host.com:1935/omgchannel.net/omgtv/playlist.m3u8 -#EXTINF:-1 tvg-id="OmgSeriesTV.eg",Omg Series TV (720p) [Not 24/7] -http://media6.smc-host.com:1935/omgchannel.net/omgseries/playlist.m3u8 -#EXTINF:-1 tvg-id="QuranTV.eg",Quran TV (576p) [Timeout] -http://213.162.202.5:4000/play/a09u/index.m3u8 -#EXTINF:-1 tvg-id="SadaElbalad.eg",Sada Elbalad (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/elbaladtv -#EXTINF:-1 tvg-id="TenTV.eg",Ten TV (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_ten_tv/index.m3u8 -#EXTINF:-1 tvg-id="TheKingdomSat.eg",The Kingdom Sat (576p) -https://bcovlive-a.akamaihd.net/87f7c114719b4646b7c4263c26515cf3/eu-central-1/6008340466001/profile_0/chunklist.m3u8 -#EXTINF:-1 tvg-id="WatanTV.eg",Watan TV (1080p) -https://cdg8.edge.technocdn.com/watantv/live/playlist.m3u8 diff --git a/streams/es.m3u b/streams/es.m3u deleted file mode 100644 index 60a814d8a..000000000 --- a/streams/es.m3u +++ /dev/null @@ -1,521 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="324.es",3/24 (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:324_web/master.m3u8 -#EXTINF:-1 tvg-id="7LaRioja.es",7 La Rioja (1080p) [Not 24/7] -https://pc-la7delarioja-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="7Noticias.es",7 Noticias (1080p) -https://amg01573-7nn-7nnono-ono-pcdj3.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="7TelevisionRegiondeMurcia.es",7 Televisión Región de Murcia (360p) [Not 24/7] -https://rtvmurcia_01-lh.akamaihd.net/i/rtvmurcia_1_0@507973/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndalucia.es",7 TV Andalucía (720p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835804/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaBahia.es",7 TV Andalucía (Bahía) (576p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835790/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaCordoba.es",7 TV Andalucía (Córdoba) (720p) [Not 24/7] -https://dcunilive265-lh.akamaihd.net/i/dclive_1@409360/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaCostaNoroeste.es",7 TV Andalucía (Costa Noroeste) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835802/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaJaen.es",7 TV Andalucía (Jaén) (404p) [Offline] -https://dcunilive266-lh.akamaihd.net/i/dclive_1@426886/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaJerez.es",7 TV Andalucía (Jerez) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835794/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaMalaga.es",7 TV Andalucía (Málaga) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835798/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaSevilla.es",7 TV Andalucía (Sevilla) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835800/master.m3u8 -#EXTINF:-1 tvg-id="7TVAndaluciaSierra.es",7 TV Andalucía (Sierra) (404p) [Offline] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835792/master.m3u8 -#EXTINF:-1 tvg-id="8TVCadiz.es",8 TV Cádiz (360p) [Not 24/7] -https://5940924978228.streamlock.net/8289/smil:8289.smil/master.m3u8 -#EXTINF:-1 tvg-id="9laLomaTV.es",9 la Loma TV [Geo-blocked] -https://9laloma.tv/live.m3u8 -#EXTINF:-1 tvg-id="11TV.es",11 TV (576p) [Not 24/7] -http://51.210.199.43/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586402/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586403/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586404/master.m3u8 -#EXTINF:-1 tvg-id="Plus24.es",+24 (576p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586405/master.m3u8 -#EXTINF:-1 tvg-id="25TV.es",25 TV (480p) [Not 24/7] -https://cdnlive.shooowit.net/25televisiolive/smil:channel1.smil/master.m3u8 -#EXTINF:-1 tvg-id="28kanala.es",28 kanala (720p) [Geo-blocked] -https://5940924978228.streamlock.net/8157/8157/master.m3u8 -#EXTINF:-1 tvg-id="101TeleAntequera.es",101 Tele Antequera (1080p) -https://limited38.todostreaming.es/live/101tv-AntequeraHD.m3u8 -#EXTINF:-1 tvg-id="101TVMalaga.es",101TV Malaga (1080p) [Not 24/7] -https://limited38.todostreaming.es/live/101tv-web101tv.m3u8 -#EXTINF:-1 tvg-id="324.es",324 (576p) -https://directes-tv-int.ccma.cat/int/ngrp:324_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlsdvrlive_1@39732/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125698/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125699/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125702/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125703/master.m3u8 -#EXTINF:-1 tvg-id="Plustdp.es",+tdp [Geo-blocked] -https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@143656/master.m3u8 -#EXTINF:-1 tvg-id="APunt.es",À Punt (720p) -https://bcovlive-a.akamaihd.net/469e448f034b4d46afa4bcac53297d60/eu-central-1/6057955885001/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="APunt.es",À Punt (720p) [Geo-blocked] -https://bcovlive-a.akamaihd.net/1e7e91116b104391a4f22e13a694d94f/eu-central-1/6057955885001/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="ActivaTV.es",Activa TV (720p) [Not 24/7] -https://streamtv.mediasector.es/hls/activatv/.m3u8 -#EXTINF:-1 tvg-id="AlacantiTV.es",Alacantí TV (576p) [Not 24/7] -https://streaming01.gestec-video.com/hls/artequatreAlacanti.m3u8 -#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) -http://217.182.77.27/live/alcarriatv-livestream.m3u8 -#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) [Not 24/7] -http://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AragonRadioZaragoza.es",Aragón Radio (Zaragoza) [Not 24/7] -https://cartv.streaming.aranova.es/hls/live/aragonradio_aragonradio1.m3u8 -#EXTINF:-1 tvg-id="AragonTV.es",Aragón TV (480p) -https://cartv.streaming.aranova.es/hls/live/aragontv_canal1.m3u8 -#EXTINF:-1 tvg-id="BailenTV.es",Bailén TV (720p) [Not 24/7] -http://cpd.bailen.tv:8080/Playlist_CANAL_24H/playlist.m3u8 -#EXTINF:-1 tvg-id="BarcaTV.es",Barça TV [Timeout] -http://5.255.90.184:2002/play/a01z -#EXTINF:-1 tvg-id="BARVATV.es",BARVA.TV (360p) [Timeout] -https://cp.sradiotv.com:1936/8076/8076/playlist.m3u8 -#EXTINF:-1 tvg-id="beteve.es",betevé (1080p) -https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 -#EXTINF:-1 tvg-id="BonDiaTV.es",Bon Dia TV (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:bnd_web/playlist.m3u8 -#EXTINF:-1 tvg-id="CadenaElite.es",Cadena Elite (720p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8004/index.m3u8 -#EXTINF:-1 tvg-id="CampinaSurTV.es",Campiña Sur TV [Not 24/7] -https://cdn01.yowi.tv/4131RI73I9/master.m3u8 -#EXTINF:-1 tvg-id="Canal4ManchaCentro.es",Canal 4 Mancha Centro (720p) [Not 24/7] -https://5924d3ad0efcf.streamlock.net/canal4/canal4live/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal4Tenerife.es",Canal 4 Tenerife (576p) [Not 24/7] -https://5940924978228.streamlock.net/Directo3/Directo3/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10Emporda.es",Canal 10 Empordà (360p) [Not 24/7] -http://ventdelnord.tv:8080/escala/directe.m3u8 -#EXTINF:-1 tvg-id="",Canal 24 horas (720p) -https://rtvelivestreamv3.akamaized.net/24h_main_dvr.m3u8 -#EXTINF:-1 tvg-id="",Canal 24 horas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7QZIf0dta-XPXsp9Hv4dTw/live -#EXTINF:-1 tvg-id="",Canal 24 horas (1080p) [Timeout] -https://rtvelivestreamv3.akamaized.net/24h_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Canal25TV.es",Canal 25 TV (Barbastro) (720p) [Not 24/7] -https://common01.todostreaming.es/live/tvbarbastro-livestream.m3u8 -#EXTINF:-1 tvg-id="Canal33Madrid.es",Canal 33 Madrid (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/canal33tvmadridgmailcom/livestream/master.m3u8 -#EXTINF:-1 tvg-id="CANAL45TV.es",CANAL 45 TV (360p) [Not 24/7] -https://cdn01.yowi.tv/503L6OKTE2/master.m3u8 -#EXTINF:-1 tvg-id="Canal56.es",Canal 56 (576p) [Not 24/7] -https://videos.canal56.com/directe/stream/index.m3u8 -#EXTINF:-1 tvg-id="Canal2000LaSolana.es",Canal 2000 La Solana (720p) -http://canal2000.berkano-systems.net/streaming/streams/canal2000.m3u8 -#EXTINF:-1 tvg-id="CanalDiocesano.es",Canal Diocesano (576p) [Not 24/7] -https://cdn01.yowi.tv/DDDDDDDDDD/master.m3u8 -#EXTINF:-1 tvg-id="CanalDonana.es",Canal Doñana (720p) [Not 24/7] -https://secure5.todostreaming.es/live/division-alm.m3u8 -#EXTINF:-1 tvg-id="CanalExtremadura.es",Canal Extremadura (576p) [Not 24/7] -https://cdnlive.shooowit.net/canalextremaduralive/smil:channel1DVR.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalMalagaRTV.es",Canal Málaga RTV (720p) [Not 24/7] -https://canalmalaga-tv-live.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.es",Canal Parlamento (360p) -http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 -#EXTINF:-1 tvg-id="CanalSanRoque.es" status="online",Canal San Roque (720p) [Not 24/7] -https://elastic10.todostreaming.es/live/sanroque-livestream.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (576p) -http://217.125.136.93:8080/canalsierradecadiz576.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (720p) -http://217.125.136.93:8080/canalsierradecadiz720.m3u8 -#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (1080p) -http://217.125.136.93:8080/canalsierradecadiz1080.m3u8 -#EXTINF:-1 tvg-id="CanalSuper3.es",Canal Super 3 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (720p) -https://cdnlive.codev8.net/rtvalive/smil:channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (720p) -https://cdnlive.shooowit.net/rtvalive/smil:channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqwjtgaJflHga2aPWphG5PQ/live -#EXTINF:-1 tvg-id="CanalTaronjaOsonaiMoianes.es",Canal Taronja Osona i Moianés (240p) [Not 24/7] -https://taronjavic.streaming-pro.com/hls/vic.m3u8 -#EXTINF:-1 tvg-id="CCMAExclusiu1.es",CCMA Exclusiu 1 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:oca1_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="CCMAExclusiu2.es",CCMA Exclusiu 2 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:oca2_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="Clan.es",Clan TVE (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/clan_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Clan.es",Clan TVE (1080p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/5466990.m3u8 -#EXTINF:-1 tvg-id="CMMTV.es",CMM TV (360p) [Not 24/7] -http://cdnapi.kaltura.com/p/2288691/sp/39582391/playManifest/entryId/0_xs45iy5i/format/applehttp/.m3u8 -#EXTINF:-1 tvg-id="Condavision.es",Condavisión (720p) [Not 24/7] -http://145.239.141.154:1935/live/uSCQc5ky/playlist.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados1.es",Congreso de los Diputados 1 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso1_1@71529/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados2.es",Congreso de los Diputados 2 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso2_1@72033/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados3.es",Congreso de los Diputados 3 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso3_1@72034/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados4.es",Congreso de los Diputados 4 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso4_1@53937/master.m3u8 -#EXTINF:-1 tvg-id="CongresodelosDiputados5.es",Congreso de los Diputados 5 (360p) -https://congresodirecto-f.akamaihd.net/i/congreso5_1@51923/master.m3u8 -#EXTINF:-1 tvg-id="CosmoTV.es",Cosmo TV (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/str15live/str15live/playlist.m3u8 -#EXTINF:-1 tvg-id="CosmoTV.es",Cosmo TV (720p) [Timeout] -http://91.126.141.201:1935/live/cosmoHD/playlist.m3u8 -#EXTINF:-1 tvg-id="CostaNoroesteTV.es",Costa Noroeste TV (720p) [Not 24/7] -https://limited31.todostreaming.es/live/noroestetv-livestream.m3u8 -#EXTINF:-1 tvg-id="Cuatro4TVVallUxa.es",Cuatro 4 TV Vall Uxa (1080p) [Not 24/7] -https://limited09.todostreaming.es/live/tarson-livestream.m3u8 -#EXTINF:-1 tvg-id="DejatedeHistoriasTV.es",Déjate de Historias TV (1080p) [Offline] -https://cdn01.yowi.tv/GGGGGGGGGG/master.m3u8 -#EXTINF:-1 tvg-id="DiezTV.es",Diez TV (1080p) -https://streaming.cloud.innovasur.es/mmj/index.m3u8 -#EXTINF:-1 tvg-id="DistritoTV.es",Distrito TV (1080p) [Not 24/7] -https://cdn01.yowi.tv/KQRSDA7GDB/master.m3u8 -#EXTINF:-1 tvg-id="DurangaldekoTV.es",Durangaldeko TV (404p) [Not 24/7] -https://cdn01.yowi.tv/AAAAAAAAAA/master.m3u8 -#EXTINF:-1 tvg-id="EiTB2.es",EiTB 2 (720p) -https://etbvnogeo-lh.akamaihd.net/i/ETBSTR2_1@595582/master.m3u8 -#EXTINF:-1 tvg-id="EITB.es",EITB (480p) -https://etbvnogeo-lh.akamaihd.net/i/ETBEITBEUS_1@300391/master.m3u8 -#EXTINF:-1 tvg-id="El33.es",El 33 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="ElFuturoentumano.es",El Futuro en tu mano (720p) -https://limited24.todostreaming.es/live/renjillo-livestream.m3u8 -#EXTINF:-1 tvg-id="ElFuturoentumano.es",El Futuro en tu mano (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZSw3jfFZo_8I9BHSMlT2Fg/live -#EXTINF:-1 tvg-id="ElToroTV.es",El Toro TV (720p) [Not 24/7] -https://live1-eltorotv.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Elche7TV.es",Elche 7 TV (1080p) [Not 24/7] -https://streaming.elche7tv.es/hls/canal2.m3u8 -#EXTINF:-1 tvg-id="ESNETV.es",ESNE TV (1080p) -https://zypelive-lh.akamaihd.net/i/default_1@710948/master.m3u8 -#EXTINF:-1 tvg-id="Esport3.es",Esport3 (576p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="Esport3.es",Esport3 (1080p) [Not 24/7] -https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist.m3u8 -#EXTINF:-1 tvg-id="EsteponaTelevision.es",Estepona Televisión (720p) [Offline] -https://5b38ce71f1f00.streamlock.net/8122/8122/playlist.m3u8 -#EXTINF:-1 tvg-id="ETB1.es",ETB 1 (720p) -https://etbvnogeo-lh.akamaihd.net/i/ETBSTR1_1@595581/master.m3u8 -#EXTINF:-1 tvg-id="ETBEventos1.es",ETB Eventos 1 (720p) -https://etbvnogeo-lh.akamaihd.net/i/OCA1HD_1@748519/master.m3u8 -#EXTINF:-1 tvg-id="EuropaPressTV.es",EuropaPress TV [Offline] -https://cdnlive.shooowit.net/europapresslive/ep.smil/master.m3u8 -#EXTINF:-1 tvg-id="FactoriadeFiccion.es",Factoría de Ficción (720p) [Timeout] -http://91.126.141.201:1935/live/smil:fdf.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FibracatTV.es",Fibracat TV (1080p) [Not 24/7] -https://cdn02.fibracat.cat/fibracattv/index.m3u8 -#EXTINF:-1 tvg-id="Fibwi.es",Fibwi (1080p) [Geo-blocked] -http://109.232.71.249/fibwiLIVE_movil/index.m3u8 -#EXTINF:-1 tvg-id="FionTV.es",Fion TV (720p) [Timeout] -http://stream.fion.es:1936/live/smil:fion.smil/master.m3u8 -#EXTINF:-1 tvg-id="GCMTV.es",GCM TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/tbmadrid/tbmadrid.m3u8 -#EXTINF:-1 tvg-id="GoienaEus.es",Goiena Eus (720p) [Not 24/7] -https://zuzenean.goienamedia.eus:8443/goiena-telebista.m3u8 -#EXTINF:-1 tvg-id="",GOL (720p) [Offline] -https://api.goltelevision.com/api/v1/stream/live/stream.m3u8 -#EXTINF:-1 tvg-id="GuadaTV.es",Guada TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/guadatv/guadatv.m3u8 -#EXTINF:-1 tvg-id="HamaikaTelebista.es",Hamaika Telebista (1080p) [Not 24/7] -https://wowzaprod130-i.akamaihd.net/hls/live/570468/275f3ea5/playlist.m3u8 -#EXTINF:-1 tvg-id="HermesTV.es",Hermes TV (720p) [Offline] -https://cdn01.yowi.tv/1H23S04G4M/master.m3u8 -#EXTINF:-1 tvg-id="HQMArabic.es",HQM Arabic (1080p) [Timeout] -https://livelist01.yowi.tv/lista/39596c72840d27b213caf4e58c39599a6f2ed203/master.m3u8 -#EXTINF:-1 tvg-id="HQMBaladas.es",HQM Baladas (1080p) [Timeout] -https://livelist01.yowi.tv/lista/5d7d2c21e0ec7a8a99fd1fdbc52cbdc0782f77fc/master.m3u8 -#EXTINF:-1 tvg-id="HQMBlues.es",HQM Blues (1080p) [Timeout] -https://livelist01.yowi.tv/lista/81c601f370e44dc566113fd752204be5f5f53b61/master.m3u8 -#EXTINF:-1 tvg-id="HQMChillOut.es",HQM Chill Out (1080p) [Timeout] -https://livelist01.yowi.tv/lista/183a351ddb0e57af6d735256226e6033c32219ab/master.m3u8 -#EXTINF:-1 tvg-id="HQMClassic.es",HQM Classic (1080p) [Timeout] -https://livelist01.yowi.tv/lista/f04129475945936b248aa723de56519ea2ff10fc/master.m3u8 -#EXTINF:-1 tvg-id="HQMDance.es",HQM Dance (1080p) [Timeout] -https://livelist01.yowi.tv/lista/57cf2f51b07ff21988a7a6f0270a66d41086d4a4/master.m3u8 -#EXTINF:-1 tvg-id="HQMFolk.es",HQM Folk (1080p) [Timeout] -https://livelist01.yowi.tv/lista/9f5310c179e8e840188d183be235f755b18cf703/master.m3u8 -#EXTINF:-1 tvg-id="HQMGym.es",HQM Gym (1080p) [Timeout] -https://livelist01.yowi.tv/lista/abb87f329d0ed03072b1930e9636a53e8076c8d5/master.m3u8 -#EXTINF:-1 tvg-id="HQMHipHop.es",HQM Hip Hop (1080p) [Timeout] -https://livelist01.yowi.tv/lista/8327abc87895df4c76db1155435fdca6a3607bbd/master.m3u8 -#EXTINF:-1 tvg-id="HQMHits.es",HQM Hits (1080p) [Timeout] -https://livelist01.yowi.tv/lista/5e2db2017a8fd03f73b40ede363d1a586db4e9a6/master.m3u8 -#EXTINF:-1 tvg-id="HQMJazz.es",HQM Jazz (1080p) [Timeout] -https://livelist01.yowi.tv/lista/f204aa5b3f0691e69851b54b7746ef09ede26f6a/master.m3u8 -#EXTINF:-1 tvg-id="HQMKids.es",HQM Kids (1080p) [Timeout] -https://livelist01.yowi.tv/lista/e4bc12dafe33c3ceb3e382e3acc0ec2c012cf7fd/master.m3u8 -#EXTINF:-1 tvg-id="HQMLatin.es",HQM Latin (1080p) [Timeout] -https://livelist01.yowi.tv/lista/9a4da7871ec57b4b63ed49597a13d09869172be0/master.m3u8 -#EXTINF:-1 tvg-id="HQMPop.es",HQM Pop (1080p) [Timeout] -https://livelist01.yowi.tv/lista/eb2fa68a058a701fa5bd2c80f6c8a6075896f71d/master.m3u8 -#EXTINF:-1 tvg-id="HQMRelax.es",HQM Relax (1080p) [Timeout] -https://livelist01.yowi.tv/lista/dc1b71c6fda2e687050facaa7242062cbf5a7f2a/master.m3u8 -#EXTINF:-1 tvg-id="HQMRemember.es",HQM Remember (1080p) [Timeout] -https://livelist01.yowi.tv/lista/57c98e2e295a0b69b52dc5f84edc4b1b68783ba2/master.m3u8 -#EXTINF:-1 tvg-id="HQMRock.es",HQM Rock (1080p) [Timeout] -https://livelist01.yowi.tv/lista/0d6c7ccfac89946bfd41ae34c527e8d94734065c/master.m3u8 -#EXTINF:-1 tvg-id="HQMSpanish.es",HQM Spanish (1080p) [Timeout] -https://livelist01.yowi.tv/lista/8635ae40f8d1a32eccd63d1f58b55662c9c98f9f/master.m3u8 -#EXTINF:-1 tvg-id="HuescaTV.es",Huesca TV (240p) [Not 24/7] -https://streaming2.radiohuesca.com/hls-live/livepkgr/_definst_/huescatv/huescatv.m3u8 -#EXTINF:-1 tvg-id="IB3Global.es",IB3 Global (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCff_CBVJDTHP4wOHPjP5BMg/live -#EXTINF:-1 tvg-id="IbizaGlobalTV.es",Ibiza Global TV (720p) [Not 24/7] -https://ibgrtv.streaming-pro.com/hls/ibgrlive.m3u8 -#EXTINF:-1 tvg-id="ImasTV.es",Imás TV (1080p) [Not 24/7] -https://secure3.todostreaming.es/live/imastv-livestream.m3u8 -#EXTINF:-1 tvg-id="InteralmeriaTV.es",Interalmeria TV (1080p) -https://interalmeria.tv/directo/live.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (288p) [Not 24/7] -http://78.41.83.88:8880/hls/tvixa.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (288p) [Not 24/7] -https://str.intercomarcal.com/hls/tvixa.m3u8 -#EXTINF:-1 tvg-id="IntercomarcalTV.es",Intercomarcal TV (576p) [Not 24/7] -https://str.intercomarcal.com/hls/tvisd.m3u8 -#EXTINF:-1 tvg-id="Islatel.es",Islatel (404p) [Not 24/7] -https://zone.controlstreams.com:5443/LiveApp/streams/islatel.m3u8 -#EXTINF:-1 tvg-id="JuntaCastillayLeon.es",Junta Castilla y León (1080p) [Not 24/7] -https://16escalones-live2.flumotion.com/chunks.m3u8 -#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] -https://hlsliveamdgl7-lh.akamaihd.net/i/hlsdvrlive_1@583042/master.m3u8 -#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/la1_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/1688877.m3u8 -#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (576p) [Geo-blocked] -https://hlsliveamdgl7-lh.akamaihd.net/i/hlslive_1@134665/master.m3u8 -#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (576p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/5190066.m3u8 -#EXTINF:-1 tvg-id="La1Catalunya.es",La 1 Catalunya (576p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/cat/la1_cat_main_dvr.m3u8 -#EXTINF:-1 tvg-id="La1Catalunya.es",La 1 Catalunya (576p) [Geo-blocked] -https://ztnr.rtve.es/ztnr/3293681.m3u8 -#EXTINF:-1 tvg-id="La2.es",La 2 (720p) -https://hlsliveamdgl0-lh.akamaihd.net/i/hlsdvrlive_1@60531/master.m3u8 -#EXTINF:-1 tvg-id="La2.es",La 2 (1080p) -https://ztnr.rtve.es/ztnr/1688885.m3u8 -#EXTINF:-1 tvg-id="La2.es",La 2 (1080p) [Timeout] -https://rtvelivestreamv3.akamaized.net/rtvesec/la2_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="LA7.es",LA7 (720p) -https://cdnlive.shooowit.net/la7live/smil:channel1.smil/master.m3u8 -#EXTINF:-1 tvg-id="La8Avila.es",La 8 Avila (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8avilalive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Bierzo.es",La 8 Bierzo (720p) -https://cdnlive.shooowit.net/la8bierzolive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Burgos.es",La 8 Burgos (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8burgoslive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Leon.es",La 8 Leon (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8leonlive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Mediterraneo.es",La 8 Mediterráneo (1080p) [Not 24/7] -https://play.cdn.enetres.net/489DDF7FE98241D19D8970314BC9D3EF021/0226/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Palencia.es",La 8 Palencia (404p) [Not 24/7] -https://cdnlive.shooowit.net/la8palencialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Salamanca.es",La 8 Salamanca (720p) -https://cdnlive.shooowit.net/la8salamancalive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Segovia.es",La 8 Segovia (720p) -https://cdnlive.shooowit.net/la8segovialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Soria.es",La 8 Soria (720p) [Not 24/7] -https://cdnlive.shooowit.net/la8sorialive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Valladolid.es",La 8 Valladolid (720p) -https://cdnlive.shooowit.net/la8valladolidlive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="La8Zamora.es",La 8 Zamora (720p) -https://cdnlive.shooowit.net/la8zamoralive/smil:streamswitchingchannel.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LaUrbanTV.es",La Urban TV (1080p) [Not 24/7] -https://urbanrevolution.es:8443/live/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="LaVoz24h.es",La Voz 24h (720p) -https://pull12.atresmedia.com/lavoz/master.m3u8 -#EXTINF:-1 tvg-id="LancelotTV.es",Lancelot TV (576p) [Not 24/7] -https://cdn01.yowi.tv/I7V5TFE97R/master.m3u8 -#EXTINF:-1 tvg-id="LaOtra.es",LaOtra (720p) -https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/laotra_1/index.m3u8 -#EXTINF:-1 tvg-id="LebrijaTV.es",Lebrija TV (360p) [Not 24/7] -http://212.104.160.156:1935/live/lebrijatv2/playlist3.m3u8 -#EXTINF:-1 tvg-id="LevanteTV.es",Levante TV (320p) [Not 24/7] -https://play.cdn.enetres.net/C2F6CBB67E5B4D08A16CE5FE67ABCEC9023/029/playlist.m3u8 -#EXTINF:-1 tvg-id="LleidaTelevisio.es",Lleida Televisio (720p) [Not 24/7] -https://cdn01.yowi.tv/lleida/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.es",Logos TV (1080p) [Not 24/7] -http://streamer1.streamhost.org/salive/logosH/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.es",Logos TV (1080p) [Not 24/7] -https://streamer1.streamhost.org/salive/logosH/master.m3u8 -#EXTINF:-1 tvg-id="M95TelevisionMarbella.es",M95 Televisión Marbella (576p) [Not 24/7] -https://limited2.todostreaming.es/live/m95-livestream.m3u8 -#EXTINF:-1 tvg-id="MaestratTV.es",Maestrat TV (1080p) [Not 24/7] -https://stream.maestrat.tv/hls/stream.m3u8 -#EXTINF:-1 tvg-id="MarTV.es",Mar TV (1080p) [Not 24/7] -http://iptv.btpba1.es.network.do:8080/martv-web/video.m3u8 -#EXTINF:-1 tvg-id="MirameTV.es",Mírame TV (360p) [Not 24/7] -https://bit.controlstreams.com:5443/LiveApp/streams/mirametv.m3u8 -#EXTINF:-1 tvg-id="NavarraTV.es",Navarra TV (576p) [Not 24/7] -https://pc-sumandocomunicacion-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NegociosTV.es",Negocios TV (720p) [Offline] -https://play.gooru.live/playnegocios/5646-1603313320000/master.m3u8 -#EXTINF:-1 tvg-id="NIUS.es",NIUS (576p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/03.m3u8 -#EXTINF:-1 tvg-id="NIUS.es",NIUS (576p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/03.m3u8 -#EXTINF:-1 tvg-id="NIUS.es",NIUS (720p) -https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/01.m3u8 -#EXTINF:-1 tvg-id="NIUS.es",NIUS (720p) [Geo-blocked] -https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/01.m3u8 -#EXTINF:-1 tvg-id="NoroesteTV.es",Noroeste TV (720p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8032/index.m3u8 -#EXTINF:-1 tvg-id="OizmendiTelebista.es",Oizmendi Telebista (404p) [Not 24/7] -https://5940924978228.streamlock.net/8161/8161/master.m3u8 -#EXTINF:-1 tvg-id="OlympicsChannel.es",Olympics Channel (1080p) [Geo-blocked] -https://iptv-all.lanesh4d0w.repl.co/special/olympics -#EXTINF:-1 tvg-id="OndaCadiz.es",Onda Cádiz (1080p) -https://adc-hls.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="OndaMadrid.es",Onda Madrid (360p) [Offline] -http://ondamadridhls-live.hls.adaptive.level3.net/telemadrid/ondamadrid1/index.m3u8 -#EXTINF:-1 tvg-id="OndaMadrid.es",Onda Madrid (360p) [Offline] -http://telemadridhls-live.hls.adaptive.level3.net/telemadrid/tvradio/index.m3u8 -#EXTINF:-1 tvg-id="OndaMezquita7TV.es",OndaMezquita 7 TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/mezquita/mezquita.m3u8 -#EXTINF:-1 tvg-id="Pequeradio.es",Pequeradio (720p) [Not 24/7] -https://canadaremar2.todostreaming.es/live/peque-pequetv.m3u8 -#EXTINF:-1 tvg-id="PlatziTV.es",Platzi TV (1080p) -https://mdstrm.com/live-stream-playlist/5b9076d18ef7b22560354649.m3u8 -#EXTINF:-1 tvg-id="PopularTVCantabria.es",Popular TV Cantabria (576p) [Not 24/7] -https://limited12.todostreaming.es/live/ptvcantabria-livestream.m3u8 -#EXTINF:-1 tvg-id="PopularTVMelilla.es",Popular TV Melilla (720p) [Not 24/7] -http://5940924978228.streamlock.net:1935/8009/8009/playlist.m3u8 -#EXTINF:-1 tvg-id="PopularTVMelilla.es",Popular TV Melilla (720p) [Not 24/7] -https://5940924978228.streamlock.net/8009/8009/master.m3u8 -#EXTINF:-1 tvg-id="PopularTVMurcia.es",Popular TV Murcia (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/populartvrm/populartvrm.m3u8 -#EXTINF:-1 tvg-id="Punt3VallUixo.es",Punt 3 Vall Uixó (1080p) -https://bit.controlstreams.com:5443/LiveApp/streams/punt3.m3u8 -#EXTINF:-1 tvg-id="",Radio Rutas del Perú (360p) [Not 24/7] -https://tv.portalexpress.es:3731/stream/play.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMarbella.es",Radio Televisión Marbella [Not 24/7] -https://cloudtv.provideo.es/live/marbellatv-livestream.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMelilla.es",Radio Televisión Melilla (720p) [Not 24/7] -https://tvmelilla-hls-rm-lw.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTelevisionMogan.es",Radio Televisión Mogán (1080p) [Offline] -https://5b38ce71f1f00.streamlock.net/8162/8162/playlist.m3u8 -#EXTINF:-1 tvg-id="RealMadridTV.es",Real Madrid TV (404p) [Geo-blocked] -https://rmtvlive-lh.akamaihd.net/i/rmtv_1@154306/master.m3u8 -#EXTINF:-1 tvg-id="RT.es",RT (720p) [Offline] -https://rt-esp-gd.secure2.footprint.net/1102.m3u8 -#EXTINF:-1 tvg-id="RTVVida.es",RTV Vida (1080p) -https://vidartv2.todostreaming.es/live/radiovida-emisiontvhd.m3u8 -#EXTINF:-1 tvg-id="RTVC.es",RTVC (Radio Televisión Canaria) (1080p) -https://rtvc-live1-rm.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVE.es",RTVE (576p) [Geo-blocked] -http://hlsliveamdgl8-lh.akamaihd.net/i/hlsdvrlive_1@583030/index_1500_av-b.m3u8 -#EXTINF:-1 tvg-id="SalTelevision.es",Sal Televisión (720p) [Not 24/7] -https://www.tdtchannels.com/stream/saltv.m3u8 -#EXTINF:-1 tvg-id="SevillaFCTV.es",Sevilla FC TV (360p) [Not 24/7] -https://open.http.mp.streamamg.com/p/3001314/sp/300131400/playManifest/entryId/0_ye0b8tc0/format/applehttp/protocol/https/uiConfId/30026292/a.m3u8 -#EXTINF:-1 tvg-id="SolidariaTV.es",Solidaria TV (720p) -https://canadaremar2.todostreaming.es/live/solidariatv-webhd.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.es",Sophia TV (720p) -https://www.onairport.live/sophiatv-es-live/livestream/master.m3u8 -#EXTINF:-1 tvg-id="TAC12.es",TAC 12 (720p) [Not 24/7] -https://nodo01-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 -#EXTINF:-1 tvg-id="TAC12.es",TAC 12 (720p) [Not 24/7] -https://nodo02-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 -#EXTINF:-1 tvg-id="Taroteame.es",Tarotéame (576p) [Not 24/7] -http://93.93.67.117:1935/taroteame/tarot_web/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tarotvision (576p) [Not 24/7] -http://149.12.64.81:8080/hls/tarotvision.m3u8 -#EXTINF:-1 tvg-id="TEF.es",TEF (432p) [Not 24/7] -https://cdn01.yowi.tv/36MLCJRAR2/master.m3u8 -#EXTINF:-1 tvg-id="TeleSafor.es",Tele Safor (720p) [Not 24/7] -https://video.telesafor.com/hls/video.m3u8 -#EXTINF:-1 tvg-id="TeleSagunto.es",Tele Sagunto [Offline] -https://5940924978228.streamlock.net/Directo1_1/smil:Directo1_1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Tdp.es",Teledeporte (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/rtvesec/tdp_bkp_dvr.m3u8 -#EXTINF:-1 tvg-id="Tdp.es",Teledeporte (1080p) [Geo-blocked] -https://rtvelivestreamv3.akamaized.net/tdp/tdp_main_dvr.m3u8 -#EXTINF:-1 tvg-id="TeleGilena.es",TeleGilena (360p) [Not 24/7] -https://5940924978228.streamlock.net/Directo1/Directo1/master.m3u8 -#EXTINF:-1 tvg-id="Telemadrid.es",Telemadrid (720p) -https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/telemadrid_1/index.m3u8 -#EXTINF:-1 tvg-id="TeleRibera.es",TeleRibera (720p) [Not 24/7] -http://37.187.7.106/teleribera/live.m3u8 -#EXTINF:-1 tvg-id="TeleToledo.es",TeleToledo (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/teletoledo/teletoledo.m3u8 -#EXTINF:-1 tvg-id="TeleVigo.es",TeleVigo (1080p) [Not 24/7] -https://cloud.streamingconnect.tv:455/televigo/televigo.m3u8 -#EXTINF:-1 tvg-id="TelevisionAranda.es",Televisión Aranda (720p) [Offline] -https://cdn01.yowi.tv/BBBBBBBBBB/master.m3u8 -#EXTINF:-1 tvg-id="TENTV.es",TEN TV (720p) [Timeout] -http://91.126.141.201:1935/live/smil:ten.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="tevecat.es",teve.cat (1080p) -https://limited35.todostreaming.es/live/mitjans-livestream.m3u8 -#EXTINF:-1 tvg-id="TevequatreTV.es",Tevequatre TV (576p) [Not 24/7] -https://cdn01.yowi.tv/5RO3JQE6LN/master.m3u8 -#EXTINF:-1 tvg-id="TrebujenaTV.es",Trebujena TV (360p) [Not 24/7] -http://212.104.160.156:1935/live/trebujenatv2/master.m3u8 -#EXTINF:-1 tvg-id="TreceTV.es",Trece TV (576p) -https://live-edge-bhs-1.cdn.enetres.net/091DB7AFBD77442B9BA2F141DCC182F5021/playlist.m3u8 -#EXTINF:-1 tvg-id="TuyaLaJandaTelevision.es",Tuya La Janda Televisión (1080p) -http://185.210.20.13:8080/0.m3u8 -#EXTINF:-1 tvg-id="TV3CAT.es",TV3CAT (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="TV3CAT.es",TV3CAT (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tvi_web/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="TV3Catalunya.es",TV3 Catalunya (1080p) -https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5Limares.es",TV5 Limares (720p) [Not 24/7] -https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5Limares.es",TV5 Limares (720p) [Not 24/7] -https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVArtequatre.es",TV Artequatre (576p) [Not 24/7] -https://streaming01.gestec-video.com/hls/artequatreTVA.m3u8 -#EXTINF:-1 tvg-id="TVCanaria.es",TV Canaria (576p) [Offline] -https://rtvc-live1.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVExtremena.es",TV Extremeña (720p) [Not 24/7] -https://cdn01.yowi.tv/43J82FST7L/master.m3u8 -#EXTINF:-1 tvg-id="TVGirona.es",TV Girona (720p) -http://ventdelnord.tv:8080/girona/directe.m3u8 -#EXTINF:-1 tvg-id="TVVegaBaja.es",TV Vega Baja (576p) -http://185.29.68.24/tvb.m3u8 -#EXTINF:-1 tvg-id="tvG2.es",tvG2 (720p) [Not 24/7] -https://events2-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="tvG2.es",tvG2 (720p) [Not 24/7] -https://events3-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGAmerica.es",TVG América (720p) -https://america-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGCultural.es",TVG Cultural (720p) -https://cultural-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEuropa.es",TVG Europa (720p) -https://europa-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEvento1.es",TVG Evento 1 (720p) [Not 24/7] -https://events1-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGEvento5.es",TVG Evento 5 (720p) [Not 24/7] -https://amodino-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGInfantil.es",TVG Infantil (720p) [Not 24/7] -https://infantil-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGMomento.es",TVG Momento (720p) [Not 24/7] -https://momentog-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVGMusigal.es",TVG Musigal (360p) [Not 24/7] -https://musigal-crtvg.flumotion.com/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMCordoba.es",TVM Córdoba (414p) [Not 24/7] -http://teledifusion.tv/cordoba/cordobalive/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMCordoba.es",TVM Córdoba (414p) [Not 24/7] -https://5924d3ad0efcf.streamlock.net/cordoba/cordobalive/playlist.m3u8 -#EXTINF:-1 tvg-id="UDLasPalmasTV.es",UD Las Palmas TV [Offline] -https://cdn041.fractalmedia.es/stream/live/udtv/index.m3u8 -#EXTINF:-1 tvg-id="UneVinalopo.es",Une Vinalopó (576p) [Not 24/7] -http://78.41.83.88:8880/hls/unesd.m3u8 -#EXTINF:-1 tvg-id="VentdelnordTV.es",Ventdelnord TV (720p) -http://ventdelnord.tv:8080/hls/directe.m3u8 -#EXTINF:-1 tvg-id="Vision6TV.es",Visión 6 TV (720p) [Not 24/7] -https://secure3.todostreaming.es/live/visionseis-livestream.m3u8 -#EXTINF:-1 tvg-id="XtraTV.es",Xtra TV (720p) [Offline] -https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/index.m3u8 -#EXTINF:-1 tvg-id="XtraTV.es",Xtra TV (720p) [Offline] -https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/playlist.m3u8 -#EXTINF:-1 tvg-id="ZafraTV.es",Zafra TV (720p) [Not 24/7] -https://cloud.streamingconnect.tv:455/radiotvzafra/radiotvzafra.m3u8 diff --git a/streams/es_rakuten.m3u b/streams/es_rakuten.m3u deleted file mode 100644 index 610fa0b8c..000000000 --- a/streams/es_rakuten.m3u +++ /dev/null @@ -1,135 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) -https://brat-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubbingTV.fr",Clubbing TV (720p) -https://clubbingtv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNInternationalEurope.us",CNN International Europe (720p) -https://cnn-cnninternational-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) -https://comedydynamics-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DestinationTV.us",Destination TV (720p) [Offline] -https://makingitmedia-destinationtv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) -https://mmm-ducktv-4-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Not 24/7] -https://edgesports-row-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",ESTV (1080p) -https://estv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTV.fr",Fashion TV (1080p) -https://fashiontv-fashiontv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] -https://spi-filmstream-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FrootTV.us",Froot TV (720p) [Offline] -https://outtv-froottv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-10-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (1080p) [Offline] -https://futuretoday-happykids-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-eng-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-ger-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-spa-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) -https://introuble-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-eng-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-ger-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LoneStar.us",Lone Star (1080p) -https://lonestar-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LSN.us",LSN (720p) [Offline] -https://asermedia-lacrossesportsnetwork-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (720p) -https://mavtv-mavtvglobal-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphereuk-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkSpain.us",MyTime movie network Spain (1080p) -https://appletree-mytimespain-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.fr",Qwest TV Classical (720p) [Offline] -https://qwestclassic-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr",Qwest TV Jazz & Beyond (720p) [Offline] -https://qwestjazz-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.fr",Qwest TV Mix (720p) [Offline] -https://qwestmix-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies1.es",Rakuten Action Movies 1 (720p) [Offline] -https://rakuten-actionmovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies2.es",Rakuten Action Movies 2 (720p) [Offline] -https://rakuten-actionmovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionMovies3.es",Rakuten Action Movies 3 (720p) [Offline] -https://rakuten-actionmovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies1.es",Rakuten Comedy Movies 1 (720p) [Offline] -https://rakuten-comedymovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies2.es",Rakuten Comedy Movies 2 (720p) [Offline] -https://rakuten-comedymovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies3.es",Rakuten Comedy Movies 3 (720p) [Offline] -https://rakuten-comedymovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies6.es",Rakuten Comedy Movies 6 (720p) [Offline] -https://rakuten-comedymovies-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyMovies7.es",Rakuten Comedy Movies 7 (720p) [Offline] -https://rakuten-comedymovies-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight1.es",Rakuten Spotlight 1 (720p) [Offline] -https://rakuten-spotlight-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight2.es",Rakuten Spotlight 2 (720p) [Offline] -https://rakuten-spotlight-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight3.es",Rakuten Spotlight 3 (720p) [Offline] -https://rakuten-spotlight-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight6.es",Rakuten Spotlight 6 (720p) [Offline] -https://rakuten-spotlight-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlight7.es",Rakuten Spotlight 7 (720p) [Offline] -https://rakuten-spotlight-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree1.es",Rakuten Top Free 1 (720p) -https://rakuten-topfree-1-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree2.es",Rakuten Top Free 2 (720p) -https://rakuten-topfree-2-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree3.es",Rakuten Top Free 3 (720p) -https://rakuten-topfree-3-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree6.es",Rakuten Top Free 6 (720p) -https://rakuten-topfree-6-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTopFree7.es",Rakuten Top Free 7 (720p) -https://rakuten-topfree-7-eu.rakuten.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows1.es",Rakuten TV Shows 1 (720p) [Offline] -https://rakuten-tvshows-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows2.es",Rakuten TV Shows 2 (720p) [Offline] -https://rakuten-tvshows-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows3.es",Rakuten TV Shows 3 (720p) [Offline] -https://rakuten-tvshows-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows6.es",Rakuten TV Shows 6 (720p) [Offline] -https://rakuten-tvshows-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVShows7.es",Rakuten TV Shows 7 (720p) [Offline] -https://rakuten-tvshows-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ReutersTV.uk",Reuters TV (720p) [Timeout] -https://reuters-reuters-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us",Revry (720p) [Offline] -https://revry-revry-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RevryNews.us",Revry News (720p) [Offline] -https://revry-revrynews-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us" status="error",Runtime (Spain) (720p) [Offline] -https://runtime-espana-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RushStreet.us",Rush Street (720p) [Offline] -https://rushstreet-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (1080p) [Offline] -https://sofytv-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveEurope.us",The Pet Collective Europe (720p) [Offline] -https://the-pet-collective-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyEurope.us",WeatherSpy Europe (720p) [Offline] -https://jukin-weatherspy-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk",Wonder (1080p) -https://lds-wonder-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) -https://younghollywood-rakuten.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.nz",Zoo Moo (720p) [Offline] -https://rockentertainment-zoomoo-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 diff --git a/streams/es_samsung.m3u b/streams/es_samsung.m3u deleted file mode 100644 index f1f876b45..000000000 --- a/streams/es_samsung.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ActionMovies.es",Action Movies (720p) [Offline] -https://rakuten-actionmovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BigName.fr",Big Name (720p) [Offline] -https://alchimie-big-names-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ButacaTV.us",Butaca TV (720p) [Offline] -https://veranda-butacatv-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Caillou.fr",Caillou (720p) [Offline] -https://dhx-caillou-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCinesverdi.es",Canal Cinesverdi (720p) [Offline] -https://contracorriente-canalcinesverdi-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalFeelgood.es",Canal Feel good (720p) [Offline] -https://contracorriente-canalfeelgood-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyMovies.es",Comedy Movies (720p) [Offline] -https://rakuten-comedymovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) -https://mmm-ducktv-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ElPatioSpain.fr",El Patio (Spain) (720p) [Offline] -https://alchimie-elpatio-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) -https://rakuten-euronews-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FamilyMovies.es",Family Movies (720p) [Offline] -https://rakuten-family-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVSpain.fr",Fashion TV (Spain) (1080p) -https://fashiontv-fashiontv-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-7-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNatureEspanol.us",Love Nature Español (1080p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00090-blueantmedia-lnrcastilian-samsungspain/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] -https://alchimie-mmatv-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] -https://alchimie-moods-4-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] -https://alchimie-mysurf-3-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetaKids.es",Planeta Kids (720p) [Offline] -https://deaplaneta-planetakidz-1-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (720p) -https://runtimeespana-samsungspain.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) -https://sofytv-samsunges.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Spotlight.es",Spotlight (720p) [Offline] -https://rakuten-spotlight-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.es",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveSpain.us",The Pet Collective Spain (720p) [Offline] -https://the-pet-collective-international-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TraceSportStars.fr",Trace Sport Stars (1080p) [Geo-blocked] -http://tracesportstars-samsunges.amagi.tv/hls/amagi_hls_data_samsunguk-tracesport-samsungspain/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TVShows.es",TV Shows (720p) [Offline] -https://rakuten-tvshows-2-es.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="UnearthSpain.fr",Unearth (Spain) (720p) [Offline] -https://alchimie-unearth-3-es.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/et.m3u b/streams/et.m3u deleted file mode 100644 index 174d13709..000000000 --- a/streams/et.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AddisTV.et",Addis TV (720p) -https://rrsatrtmp.tulix.tv/addis1/addis1multi.smil/playlist.m3u8 diff --git a/streams/fi.m3u b/streams/fi.m3u deleted file mode 100644 index 9fa1e24a5..000000000 --- a/streams/fi.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlfaTV.fi",AlfaTV (432p) [Not 24/7] -https://alfatv.digitacdn.net/live/_definst_/alfatv/amlst:alfatv.amlst/playlist.m3u8 -#EXTINF:-1 tvg-id="HimlenTV7.fi",Himlen TV7 (720p) -https://vod.tv7.fi/tv7-se/smil:tv7-se.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TaevasTV7.fi",Taevas TV7 (720p) -https://vod.tv7.fi/tv7-ee/smil:tv7-ee.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TaivasTV7.fi",Taivas TV7 (720p) -https://vod.tv7.fi/tv7-fi/smil:tv7-fi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="YLETV1.fi",YLE TV 1 (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yletv1hls_1@103188/master.m3u8 -#EXTINF:-1 tvg-id="YLETV1.fi",YLE TV 1 (720p) [Not 24/7] -https://yletvhdliveworld-lh.akamaihd.net/i/yletv1hdworld_1@187592/master.m3u8 -#EXTINF:-1 tvg-id="YLETV2.fi",YLE TV 2 (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yletv2hls_1@103189/master.m3u8 -#EXTINF:-1 tvg-id="YLETV2.fi",YLE TV 2 (720p) [Not 24/7] -https://yletvhdliveworld-lh.akamaihd.net/i/yletv2hdworld_1@187593/master.m3u8 -#EXTINF:-1 tvg-id="YLETVTeemaAndFem.fi",YLE TV Teema & Fem (720p) [Geo-blocked] -https://yletv-lh.akamaihd.net/i/yleteemafemfi_1@490775/master.m3u8 -#EXTINF:-1 tvg-id="NebesaTV7.fi",Небеса ТВ7 (720p) -https://vod.tv7.fi/tv7-ru/tv7-ru.smil/playlist.m3u8 diff --git a/streams/fi_samsung.m3u b/streams/fi_samsung.m3u deleted file mode 100644 index ebb0ec32b..000000000 --- a/streams/fi_samsung.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) -https://rakuten-africanews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) -https://mmm-ducktv-4-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyFinland.es",Rakuten Comedy (Finland) (720p) [Offline] -https://rakuten-comedy-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesFinland.es",Rakuten Documentaries (Finland) (720p) [Offline] -https://rakuten-documentaries-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaFinland.es",Rakuten Drama (Finland) (720p) [Offline] -https://rakuten-drama-12-fi.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyFinland.es",Rakuten Family (Finland) (720p) -https://rakuten-family-12-fi.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightFinland.es",Rakuten Spotlight (Finland) (720p) [Offline] -https://rakuten-spotlight-12-fi.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/fj.m3u b/streams/fj.m3u deleted file mode 100644 index fa0c8bf9d..000000000 --- a/streams/fj.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="FijiTV.fj",Fiji TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19514369/events/6947821/live.m3u8 -#EXTINF:-1 tvg-id="FijiTV.fj",Fiji TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19514369/events/fijitvstream/live.m3u8 diff --git a/streams/fo.m3u b/streams/fo.m3u deleted file mode 100644 index d3e5cda28..000000000 --- a/streams/fo.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KVFSjonvarp.fo",KVF (720p) [Not 24/7] -https://w1.kringvarp.fo/uttanlands/smil:uttanlands.smil/playlist.m3u8 diff --git a/streams/fr.m3u b/streams/fr.m3u deleted file mode 100644 index 36c55f816..000000000 --- a/streams/fr.m3u +++ /dev/null @@ -1,253 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7ALimoges.fr",7ALimoges (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCdFv_ZWQ3Xk_NfRiaK-ryGg/live -#EXTINF:-1 tvg-id="AlpedHuezTV.fr",Alpe d’Huez TV (720p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:adhtv/chunklist.m3u8 -#EXTINF:-1 tvg-id="Alsace20.fr",Alsace 20 (720p) -http://live.alsace20.fr/live/alsace20/ngrp:alsace20_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenneReunion.fr",Antenne Réunion (720p) [Not 24/7] -https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01 -#EXTINF:-1 tvg-id="ARTEDeutsch.fr",Arte Deutsch [Geo-blocked] -https://artesimulcast.akamaized.net/hls/live/2030993/artelive_de/index.m3u8 -#EXTINF:-1 tvg-id="ARTEFrancais.fr",ARTE Français (720p) [Geo-blocked] -https://artesimulcast.akamaized.net/hls/live/2031003/artelive_fr/index.m3u8 -#EXTINF:-1 tvg-id="BeurTV.fr",Beur TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/Beur_TV/htatv/Beur_TV_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="BFMBusiness.fr",BFM Business (480p) [Offline] -https://bfmbusinesshds-lh.akamaihd.net/i/BFMBUSINESS_ESYTLS@664128/master.m3u8 -#EXTINF:-1 tvg-id="BFMGrandLille.fr",BFM Grand Lille (720p) -https://live.creacast.com/grandlilletv/smil:grandlilletv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BFMGrandLittoral.fr",BFM Grand Littoral (720p) -https://live.creacast.com/grandlittoral/smil:grandlittoral.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BFMLyon.fr",BFM Lyon (480p) -https://bfmlyon-lh.akamaihd.net/i/BFMLYON_ESYTLS@797041/master.m3u8 -#EXTINF:-1 tvg-id="BFMParis.fr",BFM Paris (480p) -https://bfmparishdslive-lh.akamaihd.net/i/BFMPARIS_ESYTLS@429747/master.m3u8 -#EXTINF:-1 tvg-id="BFMTV.fr",BFMTV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xgz4t1 -#EXTINF:-1 tvg-id="BIPTV.fr",BIP TV (480p) [Not 24/7] -http://biptv.tv/live/biptvstream_orig/index.m3u8 -#EXTINF:-1 tvg-id="CentralTV.fr",Central TV (614p) [Not 24/7] -http://cdn2.ujjina.com:1935/iptvcentraltv/livecentraltvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cherie25.fr",Chérie 25 (360p) [Timeout] -https://s6.tntendirect.com/cherie25/live/playlist.m3u8 -#EXTINF:-1 tvg-id="",Cnews (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3b68jn -#EXTINF:-1 tvg-id="",CSTAR (720p) -http://flusonic-4.platinum-tv.com/D17/tracks-v1a1/mono.m3u8?token=test -#EXTINF:-1 tvg-id="DBM.fr",DBM (1080p) -https://edge.vedge.infomaniak.com/livecast/ik:dbmtv/manifest.m3u8 -#EXTINF:-1 tvg-id="DBMTV.fr",DBM TV (1080p) -http://dbmtv.vedge.infomaniak.com/livecast/dbmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ElHeddafTV.fr",El Heddaf TV [Geo-blocked] -https://cdn02.hta.dz/abr_htatv/EL_HEDDAF_TV/htatv/EL_HEDDAF_TV_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="EMCITV.fr",EMCI TV (1080p) -https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 -#EXTINF:-1 tvg-id="EMCITV.fr",EMCI TV Montreal (1080p) -https://emci-td-hls.akamaized.net/hls/live/2007264/emcitdhls/index.m3u8 -#EXTINF:-1 tvg-id="",Euronews Albania (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChR-A__NS_C5kHDWj3PeAhw/live -#EXTINF:-1 tvg-id="EuronewsenEspanol.es",Euronews en Español (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/euronewses/live -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://d1mpprlbe8tn2j.cloudfront.net/v1/master/7b67fbda7ab859400a821e9aa0deda20ab7ca3d2/euronewsLive/87O7AhxRUdeeIVqf/ewnsabren_eng.m3u8 -#EXTINF:-1 tvg-id="EuronewsHungary.fr",Euronews Hungary (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/euronewsHungarian/live -#EXTINF:-1 tvg-id="Euronewsporusski.fr",Euronews по-русски (480p) -http://ott-cdn.ucom.am/s89/index.m3u8 -#EXTINF:-1 tvg-id="Euronewsporusski.fr",Euronews по-русски (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFzJjgVicCtFxJ5B0P_ei8A/live -#EXTINF:-1 tvg-id="FashionTV.fr",Fashion TV (576p) [Not 24/7] -http://entertainment.ashttp9.visionip.tv/live/visiontvuk-entertainment-edgytv-hsslive-25f-16x9-SD/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr",Fashion TV Midnite Secrets (1080p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_midnite_k1y_27049_midnite_secr_108_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr",Fashion TV Midnite Secrets (1080p) -https://fash1043.cloudycdn.services/slive/ftv_midnite_secrets_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVNewYork.fr",Fashion TV New York (PG13) (720p) [Not 24/7] -https://fash2043.cloudycdn.services/slive/ftv_ftv_gmt_-5_qko_43090_default_1225_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVParis.fr",Fashion TV Paris (144p) -https://fash1043.cloudycdn.services/slive/ftv_paris_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVParisMumbai.fr",Fashion TV Paris-Mumbai (1080p) [Not 24/7] -https://fash1043.cloudycdn.services/slive/ftv_ftv_asia_gmt_vmf_43163_default_1298_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVPG13.fr",Fashion TV PG13 (240p) -https://fash1043.cloudycdn.services/slive/ftv_pg13_adaptive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVPG16.fr",Fashion TV PG16 (144p) -http://fash1043.cloudycdn.services/slive/ftv_pg16_adaptive.smil/media.m3u8 -#EXTINF:-1 tvg-id="FashionTVRussia.fr",Fashion TV Russia (480p) -http://ott-cdn.ucom.am/s30/index.m3u8 -#EXTINF:-1 tvg-id="FashionTVSingapore.fr",Fashion TV Singapore (240p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_asia_ada_xiv_42149_default_137_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVTokyo.fr",Fashion TV Tokyo (PG13) (240p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_196_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVTokyo.fr",Fashion TV Tokyo (PG13) (1080p) -https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_sam_197_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVUHD.fr",Fashion TV UHD (2160p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_4k_hevc_73d_42080_default_466_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVCzechSlovak.fr",FashionTV Czech&Slovak (450p) -http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVMumbai.fr",FashionTV Mumbai (1080p) -https://fash2043.cloudycdn.services/slive/ftv_ftv_pg13_gmt_ess_43126_default_1262_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="France2.fr",France 2 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france2/playlist.m3u8 -#EXTINF:-1 tvg-id="France3.fr",France 3 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france3/playlist.m3u8 -#EXTINF:-1 tvg-id="France4.fr",France 4 (720p) [Geo-blocked] -http://edge9.iptvnetwork.net/live/france4/playlist.m3u8 -#EXTINF:-1 tvg-id="France5.fr",France 5 (720p) [Not 24/7] -http://edge9.iptvnetwork.net/live/france5/playlist.m3u8 -#EXTINF:-1 tvg-id="France24Arabic.fr",France 24 Arabic (576p) -https://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24Arabic.fr",France 24 Arabic (1080p) -https://static.france24.com/live/F24_AR_HI_HLS/live_tv.m3u8 -#EXTINF:-1 tvg-id="France24English.fr",France 24 English (576p) -https://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24English.fr",France 24 English (1080p) -http://f24hls-i.akamaihd.net/hls/live/221147/F24_EN_HI_HLS/master.m3u8 -#EXTINF:-1 tvg-id="France24Espanol.fr",France 24 Español (576p) -https://static.france24.com/live/F24_ES_LO_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="France24Espanol.fr",France 24 Español (1080p) -http://f24hls-i.akamaihd.net/hls/live/520845/F24_ES_HI_HLS/master.m3u8 -#EXTINF:-1 tvg-id="France24Francais.fr",France 24 Français (1080p) -https://static.france24.com/live/F24_FR_HI_HLS/live_tv.m3u8 -#EXTINF:-1 tvg-id="France24Francais.fr",France 24 Français (1080p) -https://static.france24.com/live/F24_FR_HI_HLS/live_web.m3u8 -#EXTINF:-1 tvg-id="FranceInter.fr",France Inter (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCJldRgT_D7Am-ErRHQZ90uw/live -#EXTINF:-1 tvg-id="Franceinfo.fr",Franceinfo (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/franceinfo/live -#EXTINF:-1 tvg-id="Francophonie24.fr",Francophonie24 (1080p) -https://5421175365ea3.streamlock.net/live/smil:switch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Francophonie.fr",Francophonie (360p) -http://mv2.tvfrancophonie.org/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="GenerationsTV.fr",Generations TV (576p) -https://edge.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8 -#EXTINF:-1 tvg-id="Gulli.fr",Gulli (540p) -https://d13anarbtxy8c5.cloudfront.net/6play/short/clr/gulli/sdindex.m3u8 -#EXTINF:-1 tvg-id="Gulli.fr",Gulli (720p) [Not 24/7] -http://flusonic-4.platinum-tv.com/Gulli/mono.m3u8?token=test -#EXTINF:-1 tvg-id="GulliBilArabi.fr",Gulli Bil Arabi (1080p) -https://shls-gulli-bil-arabi-prod-dub.shahid.net/out/v1/5454d215afba410c90b233f400730958/index.m3u8 -#EXTINF:-1 tvg-id="GulliGirl.fr",Gulli Girl (576p) [Not 24/7] -http://188.40.68.167/russia/gulli_girl/playlist.m3u8 -#EXTINF:-1 tvg-id="HodHodTV.fr",HodHod TV (720p) -http://51.210.199.12/hls/stream.m3u8 -#EXTINF:-1 tvg-id="HolyGodTV.fr",HolyGod TV (720p) [Offline] -https://dcunilive47-lh.akamaihd.net/i/dclive_1@739146/master.m3u8 -#EXTINF:-1 tvg-id="ILTV.fr",ILTV (720p) [Not 24/7] -https://str81.creacast.com/iltv/high/playlist.m3u8 -#EXTINF:-1 tvg-id="KTO.fr",KTO (404p) [Not 24/7] -https://livehdkto-lh.akamaihd.net/i/LiveStream_1@178944/master.m3u8 -#EXTINF:-1 tvg-id="",L'EQUIPE (360p) [Timeout] -https://s6.tntendirect.com/lequipe21/live/playlist.m3u8 -#EXTINF:-1 tvg-id="LaChaineNormande.fr",La Chaîne normande (LCN) (576p) [Not 24/7] -http://live.lachainenormande.fr/live/lcn/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="LCI.fr",LCI (720p) [Not 24/7] -https://lci-hls-live-ssl.tf1.fr/lci/1/hls/live_2328.m3u8 -#EXTINF:-1 tvg-id="LCP.fr",LCP (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xji3qy -#EXTINF:-1 tvg-id="M6.fr",M6 (720p) [Not 24/7] -http://flusonic-4.platinum-tv.com/M6/mono.m3u8?token=test -#EXTINF:-1 tvg-id="M6.fr",M6 (1080p) -https://shls-m6-france-prod-dub.shahid.net/out/v1/c8a9f6e000cd4ebaa4d2fc7d18c15988/index.m3u8 -#EXTINF:-1 tvg-id="MCMTop.fr",MCM Top (480p) [Timeout] -http://ott-cdn.ucom.am/s49/index.m3u8 -#EXTINF:-1 tvg-id="MDL.fr",MDL (720p) -http://tv.mondeduloisir.fr:1935/tixtv/smil:web.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Mezzo.fr",Mezzo (480p) -http://ott-cdn.ucom.am/s35/index.m3u8 -#EXTINF:-1 tvg-id="NancyWebTV.fr",Nancy Web TV (394p) [Not 24/7] -https://edge.vedge.infomaniak.com/livecast/ik:nancy-webtv/manifest.m3u8 -#EXTINF:-1 tvg-id="NRJ12.fr",NRJ12 (720p) [Timeout] -https://s6.tntendirect.com/nrj12/live/playlist.m3u8 -#EXTINF:-1 tvg-id="P2MTV.fr",P2M TV (360p) -https://panel.streamparis.fr:3743/stream/play.m3u8 -#EXTINF:-1 tvg-id="PersianaBillboard.fr",Persiana Billboard (720p) [Not 24/7] -http://51.210.199.10/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema (720p) -http://51.210.199.15/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaClassic.fr",Persiana Classic (720p) [Not 24/7] -http://51.210.199.26/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaComedy.fr",Persiana Comedy (720p) -http://51.210.199.27/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaDocumentary.fr",Persiana Documentary (720p) [Not 24/7] -http://51.210.199.23/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaFamily.fr",Persiana Family (720p) -http://51.210.199.19/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaFamilyPlus.fr",Persiana Family Plus (720p) [Not 24/7] -http://51.210.199.13/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaGameTech.fr",Persiana Game & Tech (720p) [Not 24/7] -http://51.210.199.25/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaIranian.fr",Persiana Iranian (720p) [Not 24/7] -http://51.210.199.22/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaJunior.fr",Persiana Junior (720p) -http://51.210.199.18/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaKorea.fr",Persiana Korea (720p) -http://51.210.199.14/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaMusic.fr",Persiana Music (720p) -http://51.210.199.24/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaNostalgia.fr",Persiana Nostalgia (720p) -http://51.210.199.20/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaPlus.fr",Persiana Plus (1080p) -http://51.210.199.21/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaSonati.fr",Persiana Sonati (576p) [Not 24/7] -http://51.210.199.59/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaVarzesh.fr",Persiana Varzesh (720p) [Not 24/7] -http://51.210.199.16/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PokerTV.fr",Poker TV (720p) [Not 24/7] -http://51.210.199.17/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PublicSenat.fr",Public Sénat (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xkxbzc -#EXTINF:-1 tvg-id="RMCDecouverte.fr",RMC Découverte (720p) [Timeout] -https://s6.tntendirect.com/rmcdecouverte/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TebeSud.fr",TébéSud (1080p) [Not 24/7] -https://edge-live-ger1.ovstream.com/hls/10/source.m3u8 -#EXTINF:-1 tvg-id="TF1.fr",TF1 (720p) -http://flusonic-4.platinum-tv.com/TF1/index.m3u8?token=test -#EXTINF:-1 tvg-id="TF1.fr",TF1 (720p) [Geo-blocked] -http://edge9.iptvnetwork.net/live/TF1/playlist.m3u8 -#EXTINF:-1 tvg-id="TF1SeriesFilms.fr",TF1 Séries Films (360p) [Timeout] -https://s6.tntendirect.com/hd1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TFX.fr",TFX (720p) [Timeout] -https://s6.tntendirect.com/nt1/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Tiji.fr",Tiji (1080p) [Offline] -https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 -#EXTINF:-1 tvg-id="TijiRussia.fr",Tiji Russia (576p) [Not 24/7] -http://188.40.68.167/russia/tiji/playlist.m3u8 -#EXTINF:-1 tvg-id="TMACaraibes.fr",TMA Caraïbes (1080p) [Not 24/7] -http://hls.tmacaraibes.com/live/index.m3u8 -#EXTINF:-1 tvg-id="TMC.fr",TMC (720p) [Timeout] -https://s6.tntendirect.com/tmc/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5MondeEurope.fr",TV5 Monde Europe (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV5MondeEurope.fr",TV5 Monde Europe (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV5MondeFranciaFR.fr",TV5Monde Francia FR (1080p) -https://tv5infohls-i.akamaihd.net/hls/live/631613/tv5infohls/index.m3u8 -#EXTINF:-1 tvg-id="TV5MondeInfo.fr",TV5Monde Info (1080p) -http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 -#EXTINF:-1 tvg-id="TV7Bordeaux.fr",TV7 Bordeaux (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=vGrlJbbfsE4 -#EXTINF:-1 tvg-id="TV7Colmar.fr",TV7 Colmar (576p) -https://tv7.hdr-tv.com/live/tv7/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TV8MontBlanc.fr",TV8 Mont-Blanc (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x71o73v -#EXTINF:-1 tvg-id="TV78.fr",TV78 (720p) -https://streamtv.cdn.dvmr.fr/TV78/ngrp:tv78.stream_all/master.m3u8 -#EXTINF:-1 tvg-id="TVR.fr",TVR (Bretagne) (720p) -https://streamtv.cdn.dvmr.fr/TVR/ngrp:tvr.stream_all/master.m3u8 -#EXTINF:-1 tvg-id="TZiK.fr",TZiK [Not 24/7] -https://54627d4fc5996.streamlock.net/tzik/tzik/chunklist.m3u8 -#EXTINF:-1 tvg-id="viaMATELE.fr",viàMATÉLÉ (540p) [Not 24/7] -https://streamer01.myvideoplace.tv/streamer02/hls/MATL_VLOC_PAD_100919_medium/index.m3u8 -#EXTINF:-1 tvg-id="viaMoselleTV.fr",viàMoselleTV (720p) [Not 24/7] -https://live.creacast.com/mirabelletv/smil:mirabelletv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="viaOccitanie.fr",viàOccitanie (540p) [Not 24/7] -https://streamer01.myvideoplace.tv/streamer02/hls/MDS_VIA_PAD_301117.m3u8 -#EXTINF:-1 tvg-id="",viàVosges (576p) [Not 24/7] -https://vosgestv.hdr-tv.com/live/vosgestv/livestream/master.m3u8 -#EXTINF:-1 tvg-id="W9.fr",W9 (720p) [Not 24/7] -http://flusonic-2.platinum-tv.com/W9/mono.m3u8?token=test -#EXTINF:-1 tvg-id="",Wéo (Hauts-de-France) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x62islg -#EXTINF:-1 tvg-id="",Wéo (Picardie) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x63085w diff --git a/streams/fr_samsung.m3u b/streams/fr_samsung.m3u deleted file mode 100644 index 2afa8c5ba..000000000 --- a/streams/fr_samsung.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AmuseAnimation.fr",Amuse Animation (720p) [Offline] -https://amuse-amuseanimation-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Atelierdeschefs.fr",Atelier des chefs (720p) [Offline] -https://alchimie-atelier-des-chefs-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Caillou.fr",Caillou (720p) [Offline] -https://dhx-caillou-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicalHarmony.fr",Classical Harmony (720p) [Offline] -https://alchimie-classical-harmony-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Français (720p) -https://rakuten-euronews-2-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] -https://alchimie-euronews-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEurope.fr",Fashion TV L'Original (1080p) -https://fashiontv-fashiontv-loriginal-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-8-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] -https://alchimie-humanity-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LuxeTV.fr",Luxe TV (720p) [Offline] -https://alchimie-luxe-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] -https://alchimie-moods-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",MotorSport.TV (720p) [Offline] -https://alchimie-motor-sport-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoviesCentral.fr",Movies Central (720p) [Offline] -https://alchimie-movies-central-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] -https://alchimie-mysurf-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesFrance.es",Rakuten Documentaries (France) (720p) [Offline] -https://rakuten-documentaries-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesFrance.es",Rakuten TV Action Movies France (720p) [Offline] -https://rakuten-actionmovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesFrance.es",Rakuten TV Comedy Movies France (720p) [Offline] -https://rakuten-comedymovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaFrance.es",Rakuten TV Drama France (720p) [Offline] -https://rakuten-tvshows-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesFrance.es",Rakuten TV Family Movies France (720p) [Offline] -https://rakuten-family-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightFrance.es",Rakuten TV Spotlight France (720p) [Offline] -https://rakuten-spotlight-7-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) -https://sofytv-samsungfr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportenFrance.fr",Sport en France (720p) [Offline] -https://alchimie-sport-en-france-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StormcastNovelasTV.fr",Stormcast Novelas TV (720p) [Offline] -https://stormcast-telenovelatv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.fr",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-3-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Unearth.fr",Unearth (720p) [Offline] -https://alchimie-unearth-1-fr.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WildsideTV.fr",Wildside TV (720p) -https://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8 diff --git a/streams/ge.m3u b/streams/ge.m3u deleted file mode 100644 index ed5322b8b..000000000 --- a/streams/ge.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1TV.ge",1TV (240p) [Geo-blocked] -https://tv.cdn.xsg.ge/gpb-1tv/index.m3u8 -#EXTINF:-1 tvg-id="2TV.ge",2TV (720p) [Not 24/7] -https://tv.cdn.xsg.ge/gpb-2tv/index.m3u8 -#EXTINF:-1 tvg-id="EnkiBenki.ge",Enki Benki (360p) -http://94.43.239.178:8080/CHANNEL678/BITRATE0/playlist.m3u8 -#EXTINF:-1 tvg-id="Formula.ge",Formula (1080p) -https://c4635.cdn.xsg.ge/c4635/TVFormula/index.m3u8 -#EXTINF:-1 tvg-id="MtavariArkhi.ge",Mtavari Arkhi (480p) -https://bozztv.com/36bay2/mtavariarxi/playlist.m3u8 -#EXTINF:-1 tvg-id="MusicBoxGeorgia.ge",MusicBox Georgia (180p) -http://94.43.239.178:8080/CHANNEL470/BITRATE0/playlist.m3u8 -#EXTINF:-1 tvg-id="PalitraNews.ge",Palitra News (480p) [Not 24/7] -https://live.palitranews.ge/hls/palitratv/index.m3u8 -#EXTINF:-1 tvg-id="PalitraNews.ge",Palitra News (480p) [Not 24/7] -https://livestream.palitra.ge/hls/palitratv/index.m3u8 -#EXTINF:-1 tvg-id="RioniTV.ge",Rioni TV (720p) [Not 24/7] -http://video.rionitv.com:9090/hls/live/rioni.m3u8 diff --git a/streams/gh.m3u b/streams/gh.m3u deleted file mode 100644 index 8823a6adf..000000000 --- a/streams/gh.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ResurrectionTV.gh",Resurrection TV (384p) -http://rtmp.ottdemo.rrsat.com/rrsatrtv1/rrsatrtvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVAfrica.gh",TV Africa (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 diff --git a/streams/gl.m3u b/streams/gl.m3u deleted file mode 100644 index 16deb41c9..000000000 --- a/streams/gl.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KNR1.gl",KNR1 (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCIjOAtv53RHerlfl98fZmcQ/live -#EXTINF:-1 tvg-id="KNR2.gl" status="error",KNR2 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6D225YIMCwVBiBktEeV-vQ/live diff --git a/streams/gm.m3u b/streams/gm.m3u deleted file mode 100644 index 7d92a342e..000000000 --- a/streams/gm.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="QTV.gm",QTV Gambia (720p) [Not 24/7] -https://player.qtv.gm/hls/live.stream.m3u8 diff --git a/streams/gn.m3u b/streams/gn.m3u deleted file mode 100644 index b8face0c2..000000000 --- a/streams/gn.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="RTG.gn",RTG (240p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@690091/master.m3u8 diff --git a/streams/gp.m3u b/streams/gp.m3u deleted file mode 100644 index 9a4d2d71c..000000000 --- a/streams/gp.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TMA.gp",TMA (1080p) [Timeout] -http://hls.tmacaraibes.com/live/index.m3u8 diff --git a/streams/gq.m3u b/streams/gq.m3u deleted file mode 100644 index 38491f947..000000000 --- a/streams/gq.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TVGE.gq",TVGE (480p) -http://rtmp.ott.mx1.com/tvge1/tvge1multi.smil/playlist.m3u8 diff --git a/streams/gr.m3u b/streams/gr.m3u deleted file mode 100644 index e59d66ee1..000000000 --- a/streams/gr.m3u +++ /dev/null @@ -1,229 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="4E.gr",4E (720p) -http://eu2.tv4e.gr:554/live/smil:myStream.sdp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="34100TV.gr",34100 TV (720p) [Geo-blocked] -https://s1.cystream.net/live/34100/playlist.m3u8 -#EXTINF:-1 tvg-id="AcheloosTV.gr",Acheloos TV (576p) [Not 24/7] -http://srv.viiideo.gr:1935/axeloos/live/playlist.m3u8 -#EXTINF:-1 tvg-id="AkritasTV.gr",Akritas TV (1080p) [Not 24/7] -http://akritastv1.flashmediacast.com:1935/akritastv1/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Alert.gr",Alert (576p) [Not 24/7] -https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaDramas.gr",Alfa Dramas (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.alf/playlist.m3u8 -#EXTINF:-1 tvg-id="AliteiaTV.gr",Aliteia TV [Offline] -https://vdo.alphaserver.gr:3989/stream/play.m3u8 -#EXTINF:-1 tvg-id="Alpha.gr",Alpha (720p) [Offline] -https://alphalive-i.akamaihd.net/hls/live/682300/live/master.m3u8 -#EXTINF:-1 tvg-id="AlphaBUP.gr",Alpha BUP [Timeout] -http://78.83.87.222:9999/play/a011/index.m3u8 -#EXTINF:-1 tvg-id="",ANT1 (1080p) [Geo-blocked] -https://antennaamdnoenc.akamaized.net/ant1_akamai/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="APT.gr",APT (480p) [Not 24/7] -http://tv3.streampulse.eu:1935/tilesport/movie2/playlist.m3u8 -#EXTINF:-1 tvg-id="ARTTV.gr",ART TV (720p) [Not 24/7] -http://176.9.123.140:1935/arttv/arttv/playlist.m3u8 -#EXTINF:-1 tvg-id="AtticaTV.gr",Attica TV (1080p) [Not 24/7] -https://e-e.cyou:8222/atticatv/atticatv/playlist.m3u8 -#EXTINF:-1 tvg-id="BananaTV.gr",Banana TV (360p) [Offline] -https://web.onair-radio.eu/bananachannel/bananachannel/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) -https://eco.streams.ovh/BarazaTV/BarazarazaTV/BarazaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) -https://eco.streams.ovh/BarazaTV/BarazaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BarazaTV.gr",Baraza TV (1080p) [Geo-blocked] -https://panik.cast-control.eu:1936/Admin_1/Admin_1/playlist.m3u8 -#EXTINF:-1 tvg-id="BCI24News.gr",BCI 24 News (1080p) -https://live.streams.ovh/netmedia/netmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="BestTV.gr",Best TV (720p) [Not 24/7] -https://stream.net7.gr/hls/best/index.m3u8 -#EXTINF:-1 tvg-id="CameraSmile.gr",Camera Smile (480p) [Timeout] -https://nrpus.bozztv.com/36bay2/gusa-camerasmile/index.m3u8 -#EXTINF:-1 tvg-id="CanaliTV.gr",Canali TV (720p) [Geo-blocked] -http://live.streams.ovh:1935/cannali/cannali/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.gr",Channel 9 (720p) -http://176.9.123.140:1935/channel9/channel9/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel9.gr",Channel 9 (720p) -https://e-e.cyou:8222/channel9/channel9/playlist.m3u8 -#EXTINF:-1 tvg-id="Choice.gr",Choice (1080p) [Not 24/7] -https://vod.streams.ovh:3528/stream/play.m3u8 -#EXTINF:-1 tvg-id="CorfuTV.gr",Corfu TV (576p) [Not 24/7] -https://itv.streams.ovh/corfuchannel/corfuchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="Creta.gr",Creta (540p) [Not 24/7] -http://live.streams.ovh:1935/tvcreta/tvcreta/playlist.m3u8 -#EXTINF:-1 tvg-id="DiavataTV.gr",Diavata TV (720p) -https://video.streams.ovh:1936/DiavataTV/DiavataTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Diktyo1.gr",Diktyo1 (360p) [Offline] -https://www.hellasnet.tv/rest.live.hn/diktyo1r/playlist.m3u8 -#EXTINF:-1 tvg-id="DipsoTV.gr",Dipso TV (720p) [Not 24/7] -https://live.cast-control.eu/ekpdipso/ekpdipso/playlist.m3u8 -#EXTINF:-1 tvg-id="EllasTV.gr",Ellas TV (1080p) -http://ellastv.gotdns.com:88/freetv/promo/index.m3u8 -#EXTINF:-1 tvg-id="EnaChannel.gr",Ena Channel (576p) [Not 24/7] -http://176.9.123.140:1935/1c/stream/master.m3u8 -#EXTINF:-1 tvg-id="EpirusTV1.gr",Epirus TV1 (1080p) [Not 24/7] -http://176.9.123.140:1935/radioepirus/radioepirus/playlist.m3u8 -#EXTINF:-1 tvg-id="ERT1.gr",ERT 1 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 -#EXTINF:-1 tvg-id="ERT2.gr",ERT 2 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_2/ert_2.m3u8 -#EXTINF:-1 tvg-id="ERT3.gr",ERT 3 (720p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_3/ert_3.m3u8 -#EXTINF:-1 tvg-id="ERTNews.gr",ERT News (720p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_news/ert_news.m3u8 -#EXTINF:-1 tvg-id="ERTSports2.gr",ERT Sports 2 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_2/ert_sports_2.m3u8 -#EXTINF:-1 tvg-id="ERTSports3.gr",ERT Sports 3 (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_3/ert_sports_3.m3u8 -#EXTINF:-1 tvg-id="ERTSports.gr",ERT Sports (1080p) [Geo-blocked] -http://ert-live-bcbs15228.siliconweb.com/media/ert_sports/ert_sports.m3u8 -#EXTINF:-1 tvg-id="ERTWorld.gr",ERT World (480p) -http://wpso.com:1936/hls/wzra.m3u8 -#EXTINF:-1 tvg-id="ERTWorld.gr",ERT World (720p) -http://ert-live-bcbs15228.siliconweb.com/media/ert_world/ert_world.m3u8 -#EXTINF:-1 tvg-id="ErtaLexTV.gr",Erta Lex TV [Offline] -https://vdo.alphaserver.gr:3203/stream/play.m3u8 -#EXTINF:-1 tvg-id="FarosTV2.gr",Faros TV2 (480p) [Geo-blocked] -https://s1.cystream.net/live/faros2/playlist.m3u8 -#EXTINF:-1 tvg-id="FarosTV.gr",Faros TV (540p) [Geo-blocked] -https://s1.cystream.net/live/faros1/playlist.m3u8 -#EXTINF:-1 tvg-id="Galaxy.gr",Galaxy (432p) [Geo-blocked] -https://channel.streams.ovh:1936/galaxygr-1/galaxygr-1/playlist.m3u8 -#EXTINF:-1 tvg-id="GreekCinema.gr",Greek Cinema (720p) [Offline] -https://vdo.alphaserver.gr:3613/stream/play.m3u8 -#EXTINF:-1 tvg-id="GreekTVLondon.gr",Greek TV London (720p) [Not 24/7] -https://vdo3.alphaserver.gr:3466/live/greektvlondonlive.m3u8 -#EXTINF:-1 tvg-id="GreekTVLondon.gr",Greek TV London (720p) [Not 24/7] -https://vdo3.alphaserver.gr:3466/stream/play.m3u8 -#EXTINF:-1 tvg-id="GroovyTV.gr",Groovy TV (544p) -http://web.onair-radio.eu:1935/groovytv/groovytv/playlist.m3u8 -#EXTINF:-1 tvg-id="HellenicTV.gr",Hellenic TV (360p) [Offline] -https://l5.cloudskep.com/hellenictv/htv/playlist.m3u8 -#EXTINF:-1 tvg-id="HighTV.gr",High TV (200p) [Not 24/7] -http://live.streams.ovh:1935/hightv/hightv/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseRaces.gr",Horse Races (432p) [Not 24/7] -https://odiehls-i.akamaihd.net/hls/live/233406/odie3/odie.m3u8 -#EXTINF:-1 tvg-id="IonianChannel.gr",Ionian Channel (720p) [Not 24/7] -https://stream.ioniantv.gr/ionian/live_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="IonianChannel.gr",Ionian Channel (1080p) [Not 24/7] -http://stream.ioniantv.gr:8081/ionian/live/playlist.m3u8 -#EXTINF:-1 tvg-id="IridaTV.gr",Irida TV (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.iri/playlist.m3u8 -#EXTINF:-1 tvg-id="KidsTV.gr",Kids TV (480p) -http://wpso.com:1936/hls/kidshd.m3u8 -#EXTINF:-1 tvg-id="KontraChannel.gr",Kontra Channel (1080p) -http://flashcloud.mediacdn.com/live/kontratv/.m3u8 -#EXTINF:-1 tvg-id="KontraChannel.gr",Kontra Channel (1080p) -http://kontralive.siliconweb.com/live/kontratv/playlist.m3u8 -#EXTINF:-1 tvg-id="KPHTHTV.gr",KPHTH TV (720p) [Not 24/7] -http://live.cretetv.gr:1935/cretetv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="LiveTV.gr",Live TV (272p) [Offline] -https://vod.streams.ovh:3829/stream/play.m3u8 -#EXTINF:-1 tvg-id="MTV.gr",M.TV [Timeout] -http://78.83.87.222:9999/play/a015/index.m3u8 -#EXTINF:-1 tvg-id="MadGreekz.gr",Mad Greekζ (480p) [Not 24/7] -http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 -#EXTINF:-1 tvg-id="MagicTV.gr",Magic TV (480p) -https://itv.streams.ovh/magictv/magictv/playlist.m3u8 -#EXTINF:-1 tvg-id="MaroussiotikaTV.gr",Maroussiotika TV (480p) [Not 24/7] -http://maroussiotika.dynu.com:8000/greektv/FZlHCCdBHL1/359142 -#EXTINF:-1 tvg-id="MesogeiosTV.gr",Mesogeios TV (450p) -http://176.9.123.140:1935/mesogeiostv/stream/master.m3u8 -#EXTINF:-1 tvg-id="MGRTV.gr",MGR TV (540p) [Not 24/7] -https://vod.streams.ovh:3876/stream/play.m3u8 -#EXTINF:-1 tvg-id="MyRadioTV.gr",My Radio TV (360p) [Offline] -https://vdo.alphaserver.gr:3305/stream/play.m3u8 -#EXTINF:-1 tvg-id="NeaTV.gr",Nea TV (720p) -https://live.neatv.gr:8888/hls/neatv.m3u8 -#EXTINF:-1 tvg-id="NetmaxTV.gr",Netmax TV (720p) [Not 24/7] -http://live.netmaxtv.com:8080/live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NG.gr",NG (616p) -https://live.streams.ovh/NGradio/NGradio/playlist.m3u8 -#EXTINF:-1 tvg-id="NG.gr",NG (720p) -http://live.streams.ovh:1935/NGradio/NGradio/playlist.m3u8 -#EXTINF:-1 tvg-id="NotioiTV.gr",Notioi TV (720p) -https://live.streams.ovh/YourStreaming/YourStreaming/playlist.m3u8 -#EXTINF:-1 tvg-id="NRG91.gr",NRG 91 (720p) [Not 24/7] -http://tv.nrg91.gr:1935/onweb/live/master.m3u8 -#EXTINF:-1 tvg-id="NRGTV.gr",NRG TV (720p) -https://5c389faa13be3.streamlock.net:9553/onweb/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NSTV.gr",NS TV (480p) [Not 24/7] -http://176.9.123.140:1935/nstv1/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OpenTV.gr",Open TV (576p) [Not 24/7] -https://liveopencloud.siliconweb.com/1/ZlRza2R6L2tFRnFJ/eWVLSlQx/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="OpenTVBUP.gr",Open TV BUP [Timeout] -http://78.83.87.222:9999/play/a013/index.m3u8 -#EXTINF:-1 tvg-id="PellaTV.gr",Pella TV (576p) [Not 24/7] -https://video.streams.ovh:1936/pellatv/pellatv/master.m3u8 -#EXTINF:-1 tvg-id="PlayTV.gr",Play TV (480p) [Not 24/7] -http://web.onair-radio.eu:1935/Alpha-Host/Alpha-Host/playlist.m3u8 -#EXTINF:-1 tvg-id="PLP.gr",PLP (226p) [Not 24/7] -https://www.hellasnet.tv/rest.live.hn/ws.plp/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioEpistrofi.gr",Radio Epistrofi (540p) [Geo-blocked] -https://s1.cystream.net/live/epistrofi/playlist.m3u8 -#EXTINF:-1 tvg-id="ReloadPlay.gr",Reload Play (720p) -http://web.onair-radio.eu:1935/video/video/playlist.m3u8 -#EXTINF:-1 tvg-id="SamiakiTV.gr",Samiaki TV (540p) [Not 24/7] -http://live.cast-control.eu:1935/samiaki/samiaki/playlist.m3u8 -#EXTINF:-1 tvg-id="Sigma.gr",Sigma (576p) [Not 24/7] -https://sl2.sigmatv.com/hls/live.m3u8 -#EXTINF:-1 tvg-id="",Skai (720p) -https://skai-live-back.siliconweb.com/media/cambria4/index.m3u8 -#EXTINF:-1 tvg-id="",Skai (720p) -https://skai-live.siliconweb.com/media/cambria4/index.m3u8 -#EXTINF:-1 tvg-id="SkaiBUP.gr",Skai BUP [Timeout] -http://78.83.87.222:9999/play/a016/index.m3u8 -#EXTINF:-1 tvg-id="SmileTV.gr",Smile TV (360p) [Geo-blocked] -https://s1.cystream.net/live/smile/playlist.m3u8 -#EXTINF:-1 tvg-id="Star.gr",Star (720p) -https://livestar.siliconweb.com/media/star1/star1mediumhd.m3u8 -#EXTINF:-1 tvg-id="StarBUP.gr",Star BUP [Timeout] -http://78.83.87.222:9999/play/a017/index.m3u8 -#EXTINF:-1 tvg-id="SuperB.gr",Super B (576p) [Not 24/7] -https://til.pp.ua:3424/live/superblive.m3u8 -#EXTINF:-1 tvg-id="SuperChannel.gr",Super Channel (300p) [Offline] -https://vdo.alphaserver.gr:3587/stream/play.m3u8 -#EXTINF:-1 tvg-id="Tilemousiki.gr",Tilemousiki (480p) [Not 24/7] -http://wpso.com:1936/hls/music1.m3u8 -#EXTINF:-1 tvg-id="TV100.gr",TV 100 (576p) [Not 24/7] -https://live.fm100.gr/hls/tv100/index.m3u8 -#EXTINF:-1 tvg-id="TVCreta.gr",TV Creta (540p) [Not 24/7] -https://live.streams.ovh/tvcreta/tvcreta/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVFilopoli.gr",TV Filopoli (240p) [Not 24/7] -http://live.streams.ovh:1935/tvfilopoli/tvfilopoli/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNotos.gr",TV Notos (720p) [Not 24/7] -https://eco.streams.ovh/notos/notos/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRodopi.gr",TV Rodopi (720p) [Offline] -https://video.connect4.gr/live/tvrodopi/playlist.m3u8 -#EXTINF:-1 tvg-id="Wixlar.gr",Wixlar (720p) -http://web.onair-radio.eu:1935/wixlar/wixlar/playlist.m3u8 -#EXTINF:-1 tvg-id="XalastraTV.gr",Xalastra TV (360p) -https://live.cast-control.eu/xalastratv/xalastratv/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.gr",Xplore (720p) [Geo-blocked] -http://web.onair-radio.eu:1935/explorecy/explorecy/playlist.m3u8 -#EXTINF:-1 tvg-id="ZerounoTV.gr",Zerouno TV (720p) -http://5db313b643fd8.streamlock.net:1935/ZerounoTV/ZerounoTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ZouglaTV.gr",Zougla TV (480p) -https://zouglalive-lh.akamaihd.net/i/zouglalive_1@340792/master.m3u8 -#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση 2 (540p) [Not 24/7] -https://streamer-cache.grnet.gr/parliament/hls/webtv2.m3u8 -#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση 3 (360p) -https://streamer-cache.grnet.gr/parliament/hls/webtv3.m3u8 -#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση (360p) -https://streamer-cache.grnet.gr/parliament/parltv.sdp/master.m3u8 -#EXTINF:-1 tvg-id="",Βουλή Τηλεόραση (540p) -https://streamer-cache.grnet.gr/parliament/hls/webtv.m3u8 -#EXTINF:-1 tvg-id="EgnatiaTileorasi.gr",Εγνατία Τηλεόραση (576p) -https://video.streams.ovh:1936/egnatiatv/egnatiatv/index.m3u8 -#EXTINF:-1 tvg-id="Ekklisia.gr",Εκκλησία (1080p) -https://liveopen.siliconweb.com/openTvLive/openEcclessia/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ηλέκτρα TV (1080p) [Not 24/7] -http://167.86.89.20:5080/LiveApp/streams/064918158666216168224216.m3u8 -#EXTINF:-1 tvg-id="KritiTV.gr",Κρήτη TV (720p) [Not 24/7] -http://live.cretetv.gr:1935/cretetv/myStream/f1tv.m3u8 -#EXTINF:-1 tvg-id="MessatidaTV.gr",Μεσσάτιδα TV (480p) [Not 24/7] -https://vod.streams.ovh:3037/stream/play.m3u8 -#EXTINF:-1 tvg-id="",ΡΙΚ Sat (720p) [Not 24/7] -http://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrosTV1.gr",Σύρος TV1 (720p) [Not 24/7] -http://176.9.123.140:1935/msg116s/msg116s/playlist.m3u8 diff --git a/streams/gt.m3u b/streams/gt.m3u deleted file mode 100644 index 2671a19e0..000000000 --- a/streams/gt.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal3.gt",Canal 3 (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalAntigua.gt",Canal Antigua (1080p) -https://streaming.canal32hn.com/CanalAntigua/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Guatevisión (720p) [Not 24/7] -https://ott.streann.com/loadbalancer/services/public/channels/5d6821172cdced7698d5a329/playlist.m3u8 -#EXTINF:-1 tvg-id="IglesiaDelCamino.gt",Iglesia Del Camino (480p) [Not 24/7] -http://streamingcontrol.com:1935/ectv/ectv/playlist.m3u8 -#EXTINF:-1 tvg-id="Televisiete.gt",Televisiete (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TN23.gt",TN 23 (480p) -https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal23.smil/playlist.m3u8 diff --git a/streams/hk.m3u b/streams/hk.m3u deleted file mode 100644 index 715c6ef78..000000000 --- a/streams/hk.m3u +++ /dev/null @@ -1,63 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",A1台 (720p) [Offline] -https://jc-qlive-play.jingchangkan.cn/live/3473_200508855_xR9m.m3u8 -#EXTINF:-1 tvg-id="CelestialClassicMovies.hk",Celestial Classic 天映经典 (540p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8 -#EXTINF:-1 tvg-id="CelestialMovies.hk",Celestial Movies (480p) [Geo-blocked] -http://210.210.155.35/qwr9ew/s/s33/index.m3u8 -#EXTINF:-1 tvg-id="CreationTV.hk",Creation TV (720p) [Not 24/7] -http://al-pull2.hkatv.vip/live/CTV.m3u8 -#EXTINF:-1 tvg-id="HKSTV.hk",HKSTV (香港衛視) (720p) [Not 24/7] -https://al-pull2.hkatv.vip/live/hktv20210929.m3u8 -#EXTINF:-1 tvg-id="iModeTV.hk",iMode TV (1080p) [Not 24/7] -https://juyunlive.juyun.tv/live/24950198.m3u8 -#EXTINF:-1 tvg-id="Kix.hk",Kix (720p) [Geo-blocked] -https://livecdn.fptplay.net/hda/kixhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Kix.hk",Kix [Geo-blocked] -http://210.210.155.35/uq2663/h/h07/01.m3u8 -#EXTINF:-1 tvg-id="PhoenixChineseChannel.hk",Phoenix Chinese Channel (鳳凰衛視中文) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PCC.m3u8 -#EXTINF:-1 tvg-id="",Phoenix Hong Kong Channel (鳳凰衛視香港) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PHK.m3u8 -#EXTINF:-1 tvg-id="PhoenixInfoNewsChannel.hk",Phoenix InfoNews Channel (鳳凰衛視資訊) (1080p) [Not 24/7] -https://phoenixtv.hkatv.vip/liveott/PIN.m3u8 -#EXTINF:-1 tvg-id="",RTHK (港台電視31) (1080p) [Geo-blocked] -https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 -#EXTINF:-1 tvg-id="",RTHK (港台電視32) (1080p) [Not 24/7] -https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 -#EXTINF:-1 tvg-id="StarSports.hk",Star Sports [Offline] -rtmp://ivi.bupt.edu.cn:1935/livetv/starsports -#EXTINF:-1 tvg-id="Thrill.hk",Thrill (360p) [Geo-blocked] -http://45.126.83.51/qwr9ew/s/s34/02.m3u8 -#EXTINF:-1 tvg-id="Thrill.hk",Thrill (480p) [Geo-blocked] -http://45.126.83.51/qwr9ew/s/s34/index.m3u8 -#EXTINF:-1 tvg-id="TVBJade.hk",TVB Jade [Offline] -http://ubaio.chaoniu1995.top:6796/ub/cr/crtv.php?id=30 -#EXTINF:-1 tvg-id="TVBXingHe.hk",TVB Xing He 星河 (720p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Xinhe/playlist.m3u8 -#EXTINF:-1 tvg-id="ViuTV.hk",ViuTV (720p) [Not 24/7] -https://cdn.hkdtmb.com/hls/99/index.m3u8 -#EXTINF:-1 tvg-id="ViuTVsix.hk",ViuTVsix [Timeout] -http://61.238.6.49:8000/bysid/96 -#EXTINF:-1 tvg-id="",亞旅衛視 (720p) [Not 24/7] -http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8 -#EXTINF:-1 tvg-id="",星空衛視 [Offline] -rtmp://58.200.131.2:1935/livetv/startv -#EXTINF:-1 tvg-id="",港台電視31 (1080p) [Not 24/7] -https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 -#EXTINF:-1 tvg-id="",港台電視32 (480p) [Not 24/7] -https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 -#EXTINF:-1 tvg-id="",翡翠台(81) (1080p) [Timeout] -http://61.238.6.49:8000/bysid/1 -#EXTINF:-1 tvg-id="",耀才財經台 (576p) -http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8 -#EXTINF:-1 tvg-id="",香港开电视 / HKSTV-HKS (720p) -http://media.fantv.hk/m3u8/archive/channel2.m3u8 -#EXTINF:-1 tvg-id="",香港衛視 (576p) [Not 24/7] -http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8 -#EXTINF:-1 tvg-id="",鳳凰衛視中文台 [Timeout] -http://221.179.217.70/PLTV/88888888/224/3221225942/1.m3u8 -#EXTINF:-1 tvg-id="",鳳凰衛視資訊台HD (720p) [Not 24/7] -http://117.169.120.138:8080/live/fhzixun/.m3u8 -#EXTINF:-1 tvg-id="",鳳凰衛視電影台 [Offline] -rtmp://ivi.bupt.edu.cn:1935/livetv/fhdy diff --git a/streams/hn.m3u b/streams/hn.m3u deleted file mode 100644 index 7d2858207..000000000 --- a/streams/hn.m3u +++ /dev/null @@ -1,99 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlfaOmegaVision.hn",Alfa & Omega Visión (360p) -https://srv.panelcast.net/aovision/aovision/playlist.m3u8 -#EXTINF:-1 tvg-id="Alsacias.hn",Alsacias TV (ATV | Canal 28) (1080p) -https://emisoras.hn:8081/atv/index.m3u8 -#EXTINF:-1 tvg-id="AvivaTV.hn",Aviva TV (1080p) -https://video.misistemareseller.com/atvhonduras/atvhonduras/playlist.m3u8 -#EXTINF:-1 tvg-id="AZATV.hn",AZA TV (720p) -https://stmv1.zcastbr.com/azatvhd/azatvhd/playlist.m3u8 -#EXTINF:-1 tvg-id="CampusTV.hn",Campus TV (360p) [Not 24/7] -http://st2.worldkast.com/8004/8004/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal5ElLider.hn",Canal 5 El Líder (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k5MLnPhRpeAV0Xwgt0d -#EXTINF:-1 tvg-id="",Canal 6 (720p) -https://ott.streann.com/loadbalancer/services/public/channels/5ba026492cdc1a7124d02fb7/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal9.hn",Canal 9 TeleDanlí (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8224/8224/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.hn",Canal 11 (720p) -https://mdstrm.com/live-stream-playlist/603d4e1fb042ce07c5c8f911.m3u8 -#EXTINF:-1 tvg-id="CanalSiTV.hn",Canal SiTV (410p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalUnodeChuloteca.hn",Canal Uno de Chuloteca (720p) [Not 24/7] -https://tvdatta.com:3392/live/portaldelsurhnlive.m3u8 -#EXTINF:-1 tvg-id="Catavision.hn",Catavisión (316p) [Not 24/7] -https://stmv1.zcastbr.com/catavision/catavision/playlist.m3u8 -#EXTINF:-1 tvg-id="CCIChannel.hn",CCI Channel (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x836wjl -#EXTINF:-1 tvg-id="CeibavisionCanal36.hn",Ceibavisión Canal 36 (1080p) [Not 24/7] -http://190.11.224.235:1935/CANAL36/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CholusatSur36.hn",Cholusat Sur 36 (214p) [Not 24/7] -http://audiotvserver.net:1935/livemedia/cholusat/playlist.m3u8 -#EXTINF:-1 tvg-id="CholutecaTV.hn",Choluteca TV (1080p) -https://emisoras.hn:8081/cholutecatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CHTV.hn",CHTV (Canal Hondureño de Televisión) (720p) [Offline] -https://media.streambrothers.com:1936/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="DiosTeVe.hn",Dios Te Ve (720p) -https://emisoras.hn:8081/diostevetv/playlist.m3u8 -#EXTINF:-1 tvg-id="DiosTeVeInfantil.hn",Dios Te Ve Infantil (720p) -https://emisoras.hn:8081/diostevekids/playlist.m3u8 -#EXTINF:-1 tvg-id="EbenezerTV.hn",Ebenezer TV (360p) [Not 24/7] -https://5b50404ec5e4c.streamlock.net/ebenezertv2/smil:ebenezertv2.smil/chunklist_w156791259_b850000_slen.m3u8 -#EXTINF:-1 tvg-id="EbenezerTV.hn",Ebenezer TV (1080p) [Not 24/7] -http://p1.worldkast.com/ebenezertv2/ngrp:ebenezertv2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EDNTV.hn",EDN TV (1080p) [Not 24/7] -https://60417ddeaf0d9.streamlock.net/edntv/videoedntv/playlist.m3u8 -#EXTINF:-1 tvg-id="GloboTV.hn",Globo TV (720p) [Not 24/7] -https://panel.dattalive.com/8122/8122/playlist.m3u8 -#EXTINF:-1 tvg-id="HCH.hn",HCH (Hable Como Habla) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81za5c -#EXTINF:-1 tvg-id="Hondured13.hn",Hondured 13 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x83axzj -#EXTINF:-1 tvg-id="JBN.hn",JBN (480p) -https://emisoras.hn:8081/jbn/index.m3u8 -#EXTINF:-1 tvg-id="KerussoTV.hn",Kerusso TV (720p) -https://emisoras.hn:8081/kerussotv/index.m3u8 -#EXTINF:-1 tvg-id="MetroTV.hn",La Metro TV (720p) -https://emisoras.hn:8081/metrotv/index.m3u8 -#EXTINF:-1 tvg-id="LencaTelevision.hn",Lenca Television (Canal 40) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv1.m3u8 -#EXTINF:-1 tvg-id="LTV.hn",LTV (288p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6022/6022/playlist.m3u8 -#EXTINF:-1 tvg-id="MayaTV.hn",Maya TV (360p) [Not 24/7] -https://media.streambrothers.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="MVC.hn",Mi Viña Canal (720p) [Not 24/7] -https://media.streambrothers.com:1936/8338/8338/master.m3u8 -#EXTINF:-1 tvg-id="OmegaTv.hn",Omega Tv (720p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/8142/8142/playlist.m3u8 -#EXTINF:-1 tvg-id="QhuboTV.hn",Q'hubo TV (410p) [Not 24/7] -https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIdeal.hn",Radio Ideal 104.7 FM (La Esperanza) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv3.m3u8 -#EXTINF:-1 tvg-id="RadioImagen.hn",Radio Imagen 105.1 FM (La Esperanza) (720p) [Not 24/7] -http://lencatelevision.com:8080/hls/ltv2.m3u8 -#EXTINF:-1 tvg-id="RHC.hn",Roatán Hable Claro (RHC) (720p) -https://stmv1.zcastbr.com/roatanhableclaro/roatanhableclaro/playlist.m3u8 -#EXTINF:-1 tvg-id="SercanoTV.hn",Sercano TV (720p) -http://stream.grupoabchn.com:1935/SERCANOHD/SERCANOLive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SuyapaTV.hn",Suyapa TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x833e2b -#EXTINF:-1 tvg-id="Teleceiba.hn",Teleceiba [Timeout] -http://190.11.224.14:8134/liveevent.m3u8 -#EXTINF:-1 tvg-id="TeleProgreso.hn",TeleProgreso (1080p) -https://stmv1.zcastbr.com/teleprogresohn/teleprogresohn/playlist.m3u8 -#EXTINF:-1 tvg-id="TelevisionComayaguaCanal40.hn",Television Comayagua Canal 40 (320p) [Not 24/7] -http://st2.worldkast.com/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="TENCanal10.hn",TEN Canal 10 (540p) [Not 24/7] -http://stream.grupoabchn.com:1935/TENHD/TENLIVEHD_2/playlist.m3u8 -#EXTINF:-1 tvg-id="TENCanal10.hn",TEN Canal 10 (720p) -http://stream.grupoabchn.com:1935/TENHD/TENLive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TSi.hn",TSI (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k3q8hF4Y9tzpTgwu26R -#EXTINF:-1 tvg-id="TVCopan.hn",TV Copán (480p) [Not 24/7] -https://emisoras.hn:8081/tvcopan/index.m3u8 -#EXTINF:-1 tvg-id="UNAHUTV.hn",UNAH UTV (360p) [Not 24/7] -https://live-utv.unah.edu.hn/web/salida.m3u8 -#EXTINF:-1 tvg-id="VidaTV.hn",Vida TV (720p) [Not 24/7] -http://184.173.181.2:1935/8070/8070/playlist.m3u8 -#EXTINF:-1 tvg-id="WaldivisionInternacional.hn",Waldivisión Internacional (720p) [Not 24/7] -https://tvdatta.com:3934/live/waldivisionlive.m3u8 diff --git a/streams/hr.m3u b/streams/hr.m3u deleted file mode 100644 index ffaca42f7..000000000 --- a/streams/hr.m3u +++ /dev/null @@ -1,31 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HRT1.hr",HRT 1 (720p) -http://195.29.70.67/PLTV/88888888/224/3221226139/index.m3u8 -#EXTINF:-1 tvg-id="HRT1.hr",HRT 1 (720p) -http://195.29.70.84/PLTV/88888888/224/3221226139/index.m3u8 -#EXTINF:-1 tvg-id="HRT2.hr",HRT 2 (720p) -http://195.29.70.67/PLTV/88888888/224/3221226140/index.m3u8 -#EXTINF:-1 tvg-id="HRT2.hr",HRT 2 (720p) -http://195.29.70.82/PLTV/88888888/224/3221226140/index.m3u8 -#EXTINF:-1 tvg-id="HRT3.hr",HRT 3 (720p) -http://195.29.70.67/PLTV/88888888/224/3221226280/index.m3u8 -#EXTINF:-1 tvg-id="HRT4.hr",HRT 4 (720p) -http://195.29.70.67/PLTV/88888888/224/3221226281/index.m3u8 -#EXTINF:-1 tvg-id="HRT4.hr",HRT 4 (720p) -http://195.29.70.89/PLTV/88888888/224/3221226281/index.m3u8 -#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr",MAXtv Promo Kanal (528p) -http://195.29.70.67/PLTV/88888888/224/3221226027/index.m3u8 -#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr",MAXtv Promo Kanal (528p) -http://195.29.70.84/PLTV/88888888/224/3221226027/index.m3u8 -#EXTINF:-1 tvg-id="NewsBar.hr",NewsBar (528p) [Offline] -http://195.29.70.89/PLTV/88888888/224/3221226407/index.m3u8 -#EXTINF:-1 tvg-id="OTV.hr",OTV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x654gen -#EXTINF:-1 tvg-id="RadioTelevizijaBanovina.hr",Radio Televizija Banovina (360p) [Not 24/7] -rtmp://video.radio-banovina.hr/live/myStream -#EXTINF:-1 tvg-id="RTLHrvatska.de",RTL (720p) -http://195.29.70.67/PLTV/88888888/224/3221226195/index.m3u8 -#EXTINF:-1 tvg-id="TVJadran.hr",TV Jadran (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x670ug8 -#EXTINF:-1 tvg-id="TVNova.hr",TV Nova (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x694rtu diff --git a/streams/ht.m3u b/streams/ht.m3u deleted file mode 100644 index 14dc1a17b..000000000 --- a/streams/ht.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HaitiViralNews.ht",Haiti Viral News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcEY2-g-EEefxyYa1gtrk4g/live -#EXTINF:-1 tvg-id="KajouTV.ht",Kajou TV (480p) [Not 24/7] -https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8 -#EXTINF:-1 tvg-id="NETALKOLETV.ht",NETALKOLE TV (720p) [Not 24/7] -https://watch.haitilive.net/stream/netalkole/public/tv/index.m3u8 -#EXTINF:-1 tvg-id="",Radio Télé 4VEH (720p) -https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Radio Télé 4VEH (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClL_aynC_SESNLQEJHqO9MQ/live -#EXTINF:-1 tvg-id="RadioTeleAmen.ht",Radio Tele Amen FM (360p) [Not 24/7] -http://184.173.179.163:1935/daniel/daniel/playlist.m3u8 -#EXTINF:-1 tvg-id="",Radio Télé Eclair (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOvGbDh5biuOqjx6G3CdrQg/live -#EXTINF:-1 tvg-id="RadioTelePititManmanMari.ht",Radio Télé Pitit Manman Mari (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCLeNHM8XDkZmd2rhV3ZG7Vg/live -#EXTINF:-1 tvg-id="RadioTelePlanetCompas.ht",Radio Tele Planet Compas (720p) [Not 24/7] -https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTeleShalom.ht",Radio Tele Shalom (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBJ9zxns1hxblYZw4urBd_w/live -#EXTINF:-1 tvg-id="RTVC.ht",Radio Télévision Caraïbes (RTVC) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81lgjh -#EXTINF:-1 tvg-id="",Radio Télévision Hirondelle (480p) [Not 24/7] -https://watch.haitilive.net/gethb/rtvh16/index.m3u8 -#EXTINF:-1 tvg-id="TCH.ht",Télé Conscience Haïtienne (TCH) (720p) [Not 24/7] -http://tvlakay.haitilive.net/website/tchhaiti/player/mono.m3u8 -#EXTINF:-1 tvg-id="TeleHaiti.ht",Tele Haiti (1088p) [Timeout] -http://66.175.238.147:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleLouange.ht",Tele Louange (720p) -https://5790d294af2dc.streamlock.net/8124/8124/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVPanou.ht",TV Panou (720p) [Not 24/7] -http://tvpanoucom.srfms.com:1935/tvpanoucom/livestream/playlist.m3u8 diff --git a/streams/hu.m3u b/streams/hu.m3u deleted file mode 100644 index 8f7b4944d..000000000 --- a/streams/hu.m3u +++ /dev/null @@ -1,83 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",1Mus (720p) [Not 24/7] -http://hz1.teleport.cc/HLS/HD.m3u8 -#EXTINF:-1 tvg-id="",1Music Channel Hungary (576p) -http://1music.hu/1music.m3u8 -#EXTINF:-1 tvg-id="",1Music Channel Hungary (576p) -http://www.1music.hu/1music.m3u8 -#EXTINF:-1 tvg-id="ApostolTV.hu",Apostol TV (576p) [Not 24/7] -https://live.apostoltv.hu/online/smil:gazdagret.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.hu",ATV (160p) -http://streamservers.atv.hu/atvlive/atvstream_1_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.hu",ATV (360p) [Not 24/7] -https://stream.atv.hu/atvlive/atvstream_2_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="BalatonTV.hu",Balaton TV (432p) -https://stream.iptvservice.eu/hls/balatontv.m3u8 -#EXTINF:-1 tvg-id="",Bonum TV (360p) -https://stream.y5.hu/stream/stream_bonum/stream.m3u8 -#EXTINF:-1 tvg-id="Budakalasz.hu",Budakalasz (1080p) [Not 24/7] -https://stream.streaming4u.hu/TVBudakalasz/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="CoolTV.hu",Cool TV (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_cool/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="CoolTV.hu",Cool TV (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_cool/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="DTV.hu",DTV (720p) [Not 24/7] -http://cloudfront44.lexanetwork.com:1732/hlsrelay003/hls/livestream.sdp.m3u8 -#EXTINF:-1 tvg-id="ErdelyTV.hu",Erdely TV [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$ErdelyTV/6.m3u8/Level(1677721)?end=END&start=LIVE -#EXTINF:-1 tvg-id="",FEM3 [Geo-blocked] -https://streaming.mytvback.com/stream/Nc8b6c6tUH4gh3GdRR-zFw/1617462698/channel016/stream.m3u8 -#EXTINF:-1 tvg-id="FilmPlus.hu",Film+ (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_filmp/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="FilmPlus.hu",Film+ (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_filmp/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="HTMusicChannel.hu",H!T Music Channel (480p) -http://hitmusic.hu/hitmusic.m3u8 -#EXTINF:-1 tvg-id="HalomTV.hu",Halom TV (540p) -http://stream.battanet.hu:8080/hls/livestream1/1_2/index.m3u8 -#EXTINF:-1 tvg-id="Hatoscsatorna.hu",Hatoscsatorna (360p) -https://hatoscsatorna.hu:8082/Hatoscsatorna/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Hatoscsatorna.hu",Hatoscsatorna (360p) [Offline] -rtmp://lpmedia.hu:1935/Hatoscsatorna/livestream -#EXTINF:-1 tvg-id="HegyvidekTvBudapest.hu",Hegyvidek Tv Budapest (576p) [Not 24/7] -http://tv.hegyvidek.hu/stream_mpeg.flv -#EXTINF:-1 tvg-id="IzauraTV.hu",Izaura TV [Geo-blocked] -https://streaming.mytvback.com/stream/1aMW5tqyOFpH3swBdowx9Q/1617462678/channel040/stream-br1872000.m3u8 -#EXTINF:-1 tvg-id="KecskemetiTV.hu",Kecskemeti TV (416p) [Not 24/7] -http://rtmp1.40e.hu:8000/live/ktv.m3u8 -#EXTINF:-1 tvg-id="KomlosTV.hu",Komlós TV (1080p) [Not 24/7] -https://stream.streaming4u.hu/KomlosTV/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="LifeTV.hu",Life TV [Geo-blocked] -https://streaming.mytvback.com/stream/2WVTzaaqRtQ3cZ02Qd7rPA/1617462690/channel043/stream-br572000.m3u8 -#EXTINF:-1 tvg-id="Loversenykozvetites.hu",Lóverseny közvetítés (420p) -http://87.229.103.60:1935/liverelay/loverseny2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="M1.hu",M1 (480p) [Offline] -https://c402-node61-cdn.connectmedia.hu/1100/52a0c3d17a5a9b5968ac73b7288a08c9/6184f343/03.m3u8 -#EXTINF:-1 tvg-id="M3.hu",M3 [Geo-blocked] -https://stream9.nava.hu/m3_live_bdrm/_definst_/smil:m3_1080p_loop_nodrm.smil/chunklist_w72397576_b881072_slhun.m3u8?lb=b4bp7xeKAKovH1uDWU5XusWC/SZexs+JNLmxYvSb34kGup6SGRTTm5UkNNjfC62mmvYbuEqrt04E++Exer5ZNS/WN6JyMpY6GiuOU2osRulnM+gNsTWVD8z+LJt4imqAka++&platform=web_embed&sessid=Z4gLTQezzXGgWvNkiypb5PkmR64U1aoH3lFII14l3Mp2dZ5OtLoKQQY7XOn943ns&type=m3u8 -#EXTINF:-1 tvg-id="MUSICPlus.hu",MUSIC + (720p) [Not 24/7] -http://s02.diazol.hu:10192/stream.m3u8 -#EXTINF:-1 tvg-id="OzdiVarosiTV.hu",Ózdi Városi TV (720p) [Not 24/7] -https://stream.unrealhosting.hu:7982/live.m3u8 -#EXTINF:-1 tvg-id="PannonRTV.hu",Pannon RTV (648p) -https://stream.unrealhosting.hu:4102/live.m3u8 -#EXTINF:-1 tvg-id="RTLGold.hu",RTL Gold (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlgold/stream.m3u8 -#EXTINF:-1 tvg-id="RTLII.hu",RTL II (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtl2/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="RTLII.hu",RTL II (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtl2/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="RTLKlub.hu",RTL Klub (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlklub/hls0/stream.m3u8 -#EXTINF:-1 tvg-id="RTLKlub.hu",RTL Klub (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlklub/hls1/stream.m3u8 -#EXTINF:-1 tvg-id="RTLPlus.hu",RTL+ (720p) [Not 24/7] -https://stream.y5.hu/stream/stream_rtlp/stream.m3u8 -#EXTINF:-1 tvg-id="SorozatPlus.hu",Sorozat+ (360p) [Not 24/7] -https://stream.y5.hu/stream/stream_sorozatp/stream.m3u8 -#EXTINF:-1 tvg-id="TiszaTV.hu",Tisza TV (576p) [Not 24/7] -https://www.tiszatv.hu/onlinetv/tiszatv_1.m3u8 -#EXTINF:-1 tvg-id="TV7Bekescsaba.hu",TV7 Bekescsaba (360p) -https://stream.y5.hu/stream/stream_bekescsaba/stream.m3u8 -#EXTINF:-1 tvg-id="VTVFuzesabony.hu",VTV Füzesabony (720p) [Not 24/7] -https://stream.unrealhosting.hu:7962/live.m3u8 diff --git a/streams/id.m3u b/streams/id.m3u deleted file mode 100644 index 4ff6f63eb..000000000 --- a/streams/id.m3u +++ /dev/null @@ -1,289 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BeritaSatu.id",BeritaSatu (540p) -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:beritasatunewsbs/playlist.m3u8 -#EXTINF:-1 tvg-id="BeritaSatu.id",BeritaSatu (720p) -https://b1news.beritasatumedia.com/Beritasatu/B1News_manifest.m3u8 -#EXTINF:-1 tvg-id="BeritaSatuEnglish.id",BeritaSatu English (540p) [Not 24/7] -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsenglish/playlist.m3u8 -#EXTINF:-1 tvg-id="BeritaSatuWorld.id",BeritaSatu World (540p) [Not 24/7] -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsnew/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCIndonesia.id",CNBC Indonesia (720p) -https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/master.m3u8 -#EXTINF:-1 tvg-id="CNNIndonesia.id",CNN Indonesia (720p) -https://live.cnnindonesia.com/livecnn/smil:cnntv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.id",GTV (720p) -https://vcdn2.rctiplus.id/live/eds/gtv_fta/live_fta/gtv_fta.m3u8 -#EXTINF:-1 tvg-id="",HIDUP TV (568p) [Timeout] -http://202.93.133.3:1935/SVR1/ch_hiduptv.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Hits.id",Hits (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/HITS/sa_dash_vmx/HITS.mpd -#EXTINF:-1 tvg-id="HitsMovies.id",Hits Movies (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/HitsMovies/sa_dash_vmx/HitsMovies.mpd -#EXTINF:-1 tvg-id="",I AM CHANNEL (576p) [Not 24/7] -http://iamchannel.org:1935/tes/1/playlist.m3u8 -#EXTINF:-1 tvg-id="IndonesiaChannel.id",Indonesia Channel (720p) [Not 24/7] -http://wowzaprod236-i.akamaihd.net/hls/live/1019903/7dd4cf51/playlist.m3u8 -#EXTINF:-1 tvg-id="Indosiar.id",Indosiar [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/205-indosiar -#EXTINF:-1 tvg-id="",iNews (720p) -https://vcdn2.rctiplus.id/live/eds/inews_fta/live_fta/inews_fta.m3u8 -#EXTINF:-1 tvg-id="KompasTV.id",Kompas TV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/874-kompas-tv -#EXTINF:-1 tvg-id="MetroTV.id",Metro TV (720p) [Not 24/7] -http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MNCTV.id",MNCTV (720p) -https://vcdn2.rctiplus.id/live/eds/mnctv_fta/live_fta/mnctv_fta.m3u8 -#EXTINF:-1 tvg-id="MyTV.id",MyTV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/6711-mytv -#EXTINF:-1 tvg-id="NetTV.id",Net. TV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/875-net-tv -#EXTINF:-1 tvg-id="OChannel.id",O Channel [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/206-ochannel -#EXTINF:-1 tvg-id="OneTV.id",One TV (720p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/SetOne/sa_dash_vmx/SetOne.mpd -#EXTINF:-1 tvg-id="Radio51TV.id",Radio 51 TV (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="RCTI.id",RCTI (720p) -https://vcdn2.rctiplus.id/live/eds/rcti_fta/live_fta/rcti_fta.m3u8 -#EXTINF:-1 tvg-id="Reformed21.id",Reformed 21 (540p) -http://edge.linknetott.swiftserve.com/live/BsNew/amlst:reformedch/playlist.m3u8 -#EXTINF:-1 tvg-id="RRINet.id",RRI Net (720p) [Not 24/7] -http://36.89.47.217:11935/rrinet/live/index.m3u8 -#EXTINF:-1 tvg-id="RTV.id",RTV [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/1561-rtv -#EXTINF:-1 tvg-id="SCTV.id",SCTV (480p) [Not 24/7] -https://liveanevia.mncnow.id/live/eds/SCTV/sa_dash_vmx/SCTV.mpd -#EXTINF:-1 tvg-id="Trans7.id",Trans7 (720p) [Not 24/7] -https://video.detik.com/trans7/smil:trans7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TransTV.id",Trans TV (720p) -https://video.detik.com/transtv/smil:transtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKU.id",TVKU (720p) [Not 24/7] -http://103.30.1.14:8080/hls/live.m3u8 -#EXTINF:-1 tvg-id="TVRParlemen.id",TVR Parlemen (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanAnggaran.id",TVR Parlemen Badan Anggaran [Not 24/7] -http://103.18.181.69:1935/golive/livestreambanggar/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanLegislatif.id",TVR Parlemen Badan Legislatif (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestreambaleg/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBadanMusyawarah.id",TVR Parlemen Badan Musyawarah [Not 24/7] -http://103.18.181.69:1935/golive/livestreambamus/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBAKN.id",TVR Parlemen BAKN [Not 24/7] -http://103.18.181.69:1935/golive/livestreambakn/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenBKSAP.id",TVR Parlemen BKSAP [Not 24/7] -http://103.18.181.69:1935/golive/livestreambksap/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiI.id",TVR Parlemen Komisi I (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiII.id",TVR Parlemen Komisi II (1080p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIII.id",TVR Parlemen Komisi III (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIV.id",TVR Parlemen Komisi IV (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream4/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiIX.id",TVR Parlemen Komisi IX (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream9/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiV.id",TVR Parlemen Komisi V (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream5/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVI.id",TVR Parlemen Komisi VI (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream6/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVII.id",TVR Parlemen Komisi VII (480p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream7/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiVIII.id",TVR Parlemen Komisi VIII (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream8/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiX.id",TVR Parlemen Komisi X (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream10/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRParlemenKomisiXI.id",TVR Parlemen Komisi XI (720p) [Not 24/7] -http://103.18.181.69:1935/golive/livestream11/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIAceh)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBali)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBabel)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBengkulu)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIdki)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIGorontalo)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJambi)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaBarat.id",TVRI Jawa Barat (480p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJabarandung)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatengsemarang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTengah.id",TVRI Jawa Tengah (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIJawaTimur.id",TVRI Jawa Timur (720p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatimsurbaya)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalbar)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id",TVRI Kalimantan Barat (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalselbanjarmsn)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id",TVRI Kalimantan Selatan (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalteng)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id",TVRI Kalimantan Tengah (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKaltimsamarinda)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id",TVRI Kalimantan Timur (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRILampung)/index.m3u8 -#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIMalukuambon)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (136p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (480p) -http://202.80.222.130/000001/2/ch14041511560872104862/index.m3u8?virtualDomain=000001.live_hls.zte.com -#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINasional)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINtbmataram)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id",TVRI Nusa Tenggara Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINttkupang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id",TVRI Nusa Tenggara Timur (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIPapua)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] -http://118.97.50.107/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7] -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISportHD.id",TVRI Sport HD (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI4)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiBarat.id",TVRI Sulawesi Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulselmakasar)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id",TVRI Sulawesi Selatan (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultengpalu)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTengah.id",TVRI Sulawesi Tengah (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultra)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id",TVRI Sulawesi Tenggara (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulutmanado)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISulawesiUtara.id",TVRI Sulawesi Utara (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id",TVRI Sumatera Barat (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id",TVRI Sumatera Barat (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraBarat.id" status="error",TVRI Sumatera Barat (720p) [Offline] -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumparpadang)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumsel)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraSelatan.id",TVRI Sumatera Selatan (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumutmedan)/index.m3u8 -#EXTINF:-1 tvg-id="TVRISumateraUtara.id",TVRI Sumatera Utara (480p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI3)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) -http://118.97.50.107/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) -http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIYogyakarta)/index.m3u8 -#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p) -http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 diff --git a/streams/ie.m3u b/streams/ie.m3u deleted file mode 100644 index b1aaf074d..000000000 --- a/streams/ie.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="OireachtasTV.ie",Oireachtas TV (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/oirtv/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom1.ie",Oireachtas TV Committee Room 1 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr1/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom2.ie",Oireachtas TV Committee Room 2 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr2/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom3.ie",Oireachtas TV Committee Room 3 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr3/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom4.ie",Oireachtas TV Committee Room 4 (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/cr4/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVDailEireann.ie",Oireachtas TV Dáil Éireann (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/dail/hls.m3u8 -#EXTINF:-1 tvg-id="OireachtasTVSeanadEireann.ie",Oireachtas TV Seanad Éireann (720p) -https://d33zah5htxvoxb.cloudfront.net/el/live/seanad/hls.m3u8 -#EXTINF:-1 tvg-id="RTENews.ie",RTÉ News (1080p) [Geo-blocked] -https://live.rte.ie/live/a/channel3/news.isml/.m3u8 diff --git a/streams/ie_samsung.m3u b/streams/ie_samsung.m3u deleted file mode 100644 index f006fd085..000000000 --- a/streams/ie_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) -https://rakuten-africanews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-ie.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/il.m3u b/streams/il.m3u deleted file mode 100644 index 7d0cf599b..000000000 --- a/streams/il.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AsaChild.il",As a Child (576p) -https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/playlist.m3u8 -#EXTINF:-1 tvg-id="",ch 21 ערוץ הקניות (360p) [Timeout] -http://82.80.192.30/shoppingil_ShoppingIL21TVRepeat/smil:ShoppingIL21TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel2News.il",Channel 2 News (360p) -https://keshethlslive-lh.akamaihd.net/i/c2n_1@195269/master.m3u8 -#EXTINF:-1 tvg-id="Channel9.il",Channel 9 (540p) [Not 24/7] -http://50.7.231.221:8081/185/index.m3u8?wmsAuthSign=okad -#EXTINF:-1 tvg-id="Channel12.il",Channel 12 (576p) [Offline] -http://93.152.174.144:4000/play/ch12/index.m3u8 -#EXTINF:-1 tvg-id="Channel13.il",Channel 13 (576p) [Offline] -http://93.152.174.144:4000/play/ch13/index.m3u8 -#EXTINF:-1 tvg-id="Channel24.il",Channel 24 (720p) -https://keshethlslive-lh.akamaihd.net/i/24live_1@195271/index_2200_av-b.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (240p) [Not 24/7] -https://live2.panet.co.il/edge_abr/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (576p) [Not 24/7] -https://gstream4.panet.co.il/edge/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HalaTV.il",Hala TV (1080p) [Not 24/7] -https://live1.panet.co.il/edge_abr/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) -https://stream5.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) -https://stream72.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HidabrootChannel.il",Hidabroot (576p) [Not 24/7] -https://stream71.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IsraelParsTV.il",Israel Pars TV (540p) -https://live.pars-israel.com/iptv/stream.m3u8 -#EXTINF:-1 tvg-id="KabbalahforthePeopleIsrael.il",Kabbalah for the People (Israel) (504p) [Not 24/7] -https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8 -#EXTINF:-1 tvg-id="KAN11Israel.il",KAN 11 Israel (432p) [Geo-blocked] -https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8 -#EXTINF:-1 tvg-id="KAN11Israel.il",KAN 11 Israel (720p) [Offline] -http://93.152.174.144:4000/play/kan11/index.m3u8 -#EXTINF:-1 tvg-id="Keshet12.il",Keshet 12 (720p) [Not 24/7] -https://iptv--iptv.repl.co/Hebrew/keshet_12 -#EXTINF:-1 tvg-id="KnessetChannel.il",Knesset Channel (480p) [Not 24/7] -https://contact.gostreaming.tv/Knesset/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Makan33.il",Makan 33 (576p) [Geo-blocked] -https://kanlivep2event-i.akamaihd.net/hls/live/747613/747613/master.m3u8 -#EXTINF:-1 tvg-id="MusayofIsrael.il",Musayof (Israel) (240p) [Not 24/7] -http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Reshet13.il",Reshet 13 (720p) -https://d18b0e6mopany4.cloudfront.net/out/v1/08bc71cf0a0f4712b6b03c732b0e6d25/index.m3u8 -#EXTINF:-1 tvg-id="Sport2.il",Sport 2 (720p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport2/index.m3u8 -#EXTINF:-1 tvg-id="Sport3.il",Sport 3 (1080p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport3/index.m3u8 -#EXTINF:-1 tvg-id="Sport4.il",Sport 4 (1080p) [Not 24/7] -http://93.152.174.144:4000/play/hotsport4/index.m3u8 -#EXTINF:-1 tvg-id="SportsChannel.il",Sports Channel (720p) [Not 24/7] -http://93.152.174.144:4000/play/s5plus/index.m3u8 -#EXTINF:-1 tvg-id="YnetLive.il",Ynet Live (1080p) -https://ynet-lh.akamaihd.net/i/ynet_1@123290/master.m3u8 diff --git a/streams/in.m3u b/streams/in.m3u deleted file mode 100644 index 5435ccf1b..000000000 --- a/streams/in.m3u +++ /dev/null @@ -1,829 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3TamilTV.in",3 Tamil TV (720p) [Not 24/7] -https://6n3yogbnd9ok-hls-live.5centscdn.com/threetamil/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 -#EXTINF:-1 tvg-id="7SMusic.in",7S Music (576p) [Not 24/7] -http://103.199.161.254/Content/7smusic/Live/Channel(7smusic)/index.m3u8 -#EXTINF:-1 tvg-id="9XJalwa.in",9X Jalwa (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nc/index.m3u8 -#EXTINF:-1 tvg-id="9XJhakaas.in",9X Jhakaas (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0mx/index.m3u8 -#EXTINF:-1 tvg-id="9XM.in",9XM (480p) -https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/9XM/9XM.isml/index.m3u8 -#EXTINF:-1 tvg-id="AndFlix.in",&Flix (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_2105335046 -#EXTINF:-1 tvg-id="AndPictures.in",&Pictures (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-tvpictureshd -#EXTINF:-1 tvg-id="AndPriveHD.in",&privé HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-privéhd -#EXTINF:-1 tvg-id="AndTVHD.in",&TV HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-tvhd_0 -#EXTINF:-1 tvg-id="ANEWSdonsTVBhangraFlava.in",A NEWSDONs TV- SWAG SADDA VAKRAA (720p) [Not 24/7] -http://newsjatt.camdvr.org:1935/newsjatt/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="AajTak.in",Aaj Tak (360p) [Geo-blocked] -https://lmil.live-s.cdn.bitgravity.com/cdn-live/_definst_/lmil/live/aajtak_app.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AathavanTV.in",Aathavan TV (720p) [Not 24/7] -http://45.77.66.224:1935/athavantv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ABPAnanda.in" status="online",ABP Ananda (720p) -https://abp-i.akamaihd.net/hls/live/765530/abpananda/master.m3u8 -#EXTINF:-1 tvg-id="ABPAsmita.in",ABP Asmita (324p) -http://abpasmita-lh.akamaihd.net/i/abpasmita_1@77821/master.m3u8 -#EXTINF:-1 tvg-id="ABPAsmita.in",ABP Asmita (720p) -https://abp-i.akamaihd.net/hls/live/765532/abpasmita/master.m3u8 -#EXTINF:-1 tvg-id="ABPHindi.in",ABP Hindi (324p) -http://hindiabp-lh.akamaihd.net/i/hindiabp1new_1@192103/master.m3u8 -#EXTINF:-1 tvg-id="ABPHindi.in",ABP Hindi (720p) -https://abp-i.akamaihd.net/hls/live/765529/abphindi/master.m3u8 -#EXTINF:-1 tvg-id="ABPMajha.in",ABP Majha (720p) -https://abp-i.akamaihd.net/hls/live/765531/abpmajha/master.m3u8 -#EXTINF:-1 tvg-id="ACV.in",ACV [Offline] -https://acv.asianetmobiletvplus.com/webstreams/8f8e72769cb3e3a6e27c220e1e3887b8.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVJukebox.in",ACV JukeBox (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/acvjukebox_awannbgiynqynhufohawnvbmlgglfpuc/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVNews.in",ACV News (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/acvnews_3e85eb4c12bd2110d3f495676205d50a/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVPlus.in" status="error",ACV Plus (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/acvplus_ef22daf97d61acb4bf52376c4105ad02/playlist.m3u8 -#EXTINF:-1 tvg-id="ACVUtsav.in",ACV Utsav (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/acvutsav_021c9292219a98f899a7b74f0f34baa7/playlist.m3u8 -#EXTINF:-1 tvg-id="ADNGold.in",ADN Gold (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/adngold_dibbcspwxywdcuwawgrvurjwitwbiksl/playlist.m3u8 -#EXTINF:-1 tvg-id="AkaramKidz.in",Akaram Kidz (720p) [Not 24/7] -http://akaram.zecast.net/akaram-live/akaramkidz/index.m3u8 -#EXTINF:-1 tvg-id="AKDCalcuttaNews.in",AKD Calcutta News (540p) [Geo-blocked] -https://d39iawgzv3h0yo.cloudfront.net/out/v1/1ef4344a3b4a41908915d58ac7bd5e23/index.m3u8 -#EXTINF:-1 tvg-id="AmarUjala.in",Amar Ujala (360p) [Not 24/7] -https://streamcdn.amarujala.com/live/smil:stream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AmritaTV.in",Amrita TV (576p) -http://103.199.161.254/Content/amrita/Live/Channel(Amrita)/index.m3u8 -#EXTINF:-1 tvg-id="Anjan.in",Anjan (720p) [Not 24/7] -https://f3.vstream.online:7443/bstb/ngrp:anjan_hdall/playlist.m3u8 -#EXTINF:-1 tvg-id="ApnaPunjab.in",Apna Punjab (720p) -http://cdn5.live247stream.com/apnapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ArtistAloud.in",Artist Aloud (480p) [Not 24/7] -https://live.hungama.com/linear/artist-aloud/playlist.m3u8 -#EXTINF:-1 tvg-id="AshrafiChannel.in",Ashrafi Channel (484p) [Not 24/7] -http://ashrafichannel.livebox.co.in/ashrafivhannelhls/live.m3u8 -#EXTINF:-1 tvg-id="AsianetMiddleEast.in",Asianet Middle East (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0k6/index.m3u8 -#EXTINF:-1 tvg-id="AsianetNews.in",Asianet News (576p) -http://103.199.161.254/Content/asianetnews/Live/Channel(Asianetnews)/index.m3u8 -#EXTINF:-1 tvg-id="AsianetNews.in",Asianet News (720p) [Not 24/7] -https://vidcdn.vidgyor.com/asianet-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsBangla.in",Asianet News Bangla (360p) [Not 24/7] -https://vidcdn.vidgyor.com/rplus-origin/rplusasianetlive/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsKannada.in",Asianet News Kannada (360p) [Not 24/7] -https://vidcdn.vidgyor.com/suvarna-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="AsianetNewsTamil.in",Asianet News Tamil (360p) [Not 24/7] -https://vidcdn.vidgyor.com/ptm-origin/aslive/playlist.m3u8 -#EXTINF:-1 tvg-id="AssamTalks.in",Assam Talks (240p) [Not 24/7] -http://vidnetcdn.vidgyor.com/assamtalks-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="ATNBangla.in",ATN Bangla (1080p) [Offline] -http://103.81.104.118/hls/stream17.m3u8 -#EXTINF:-1 tvg-id="AyushTV.in",Ayush TV (360p) [Not 24/7] -https://95eryw39dwn4-hls-live.wmncdn.net/Ayushu/271ddf829afeece44d8732757fba1a66.sdp/index.m3u8 -#EXTINF:-1 tvg-id="B4UBhojpuri.in",B4U Bhojpuri (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nq/index.m3u8 -#EXTINF:-1 tvg-id="B4UHitz.in",B4U Hitz (720p) [Not 24/7] -http://14.199.164.20:4001/play/a0wh/index.m3u8 -#EXTINF:-1 tvg-id="B4UKadak.in",B4U Kadak (576p) [Not 24/7] -http://103.199.160.85/Content/moviehouse/Live/Channel(MovieHouse)/index.m3u8 -#EXTINF:-1 tvg-id="B4UMovies.in",B4U movies (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0wj/index.m3u8 -#EXTINF:-1 tvg-id="B4UMusic.in",B4U Music (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0wk/index.m3u8 -#EXTINF:-1 tvg-id="B4UPlus.in",B4U Plus (720p) [Not 24/7] -http://14.199.164.20:4001/play/a0wi/index.m3u8 -#EXTINF:-1 tvg-id="BflixMovies.in",Bflix Movies (480p) -https://m-c036-j2apps.s.llnwi.net/hls/5045.BFlixMovies.in.m3u8 -#EXTINF:-1 tvg-id="BhojpuriCinema.in",Bhojpuri Cinema (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0rj/index.m3u8 -#EXTINF:-1 tvg-id="Bollywood.in",Bollywood (480p) [Offline] -https://m-c09-j2apps.s.llnwi.net/hls/8001.Bollywood.in.m3u8 -#EXTINF:-1 tvg-id="BollywoodClassic.in",Bollywood Classic [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodClassic/6.m3u8/Level(1677721)?end=END&start=LIVE -#EXTINF:-1 tvg-id="BollyWoodHD.in",BollyWood HD [Offline] -http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodHD/247.m3u8/Level(3670016)?end=END&start=LIVE -#EXTINF:-1 tvg-id="BoogleBollywood.in",Boogle Bollywood (1080p) [Not 24/7] -http://live.agmediachandigarh.com/booglebollywood/774e3ea9f3fa9bcdac47f445b83b6653.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BoogleBollywood.in",Boogle Bollywood [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-165 -#EXTINF:-1 tvg-id="BoxCinema.in",Box Cinema (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0su/index.m3u8 -#EXTINF:-1 tvg-id="CaptainNews.in",Captain News (480p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=Xy1avvmtmRk -#EXTINF:-1 tvg-id="CaptainTV.in",Captain TV (576p) [Not 24/7] -http://103.199.160.85/Content/captain/Live/Channel(Captain)/index.m3u8 -#EXTINF:-1 tvg-id="Channel.in",Channel (720p) [Geo-blocked] -https://livecdn.fptplay.net/foxlive/channelvhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelDivya.in",Channel Divya (360p) [Not 24/7] -http://edge-ind.inapcdn.in:1935/berry1/latest.stream_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="",Channel Win (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/channelwinlive/channelwinlive/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelY.in",Channel Y (720p) [Not 24/7] -http://cdn19.live247stream.com/channely/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCAwaaz.in",CNBC Awaaz (504p) [Not 24/7] -https://cnbcawaaz-lh.akamaihd.net/i/cnbcawaaz_1@174872/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNBCBajar.in",CNBC Bajar (504p) [Geo-blocked] -https://cnbcbazar-lh.akamaihd.net/i/cnbcbajar_1@178933/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNBCTV18.in",CNBC TV18 (504p) -https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="Colors.in",Colors (720p) [Not 24/7] -http://master.beeiptv.com:8081/colors/colorsbdtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ColorsBangla.in",Colors Bangla (1080p) [Offline] -http://tvflix03.ddns.net/ColorsBangla_ENC/video.m3u8 -#EXTINF:-1 tvg-id="Dabangg.in",Dabangg (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nb/index.m3u8 -#EXTINF:-1 tvg-id="DarshanaTV.in",Darshana TV (576p) [Offline] -https://streaming37.worldbbtv.com/hls/darshana.m3u8 -#EXTINF:-1 tvg-id="DDBangla.in",DD Bangla (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-ddbangla -#EXTINF:-1 tvg-id="DDMalayalam.in",DD Malayalam (576p) -http://103.199.161.254/Content/ddmalayalam/Live/Channel(DDMalayalam)/index.m3u8 -#EXTINF:-1 tvg-id="DDNational.in",DD National (480p) [Not 24/7] -https://m-c036-j2apps.s.llnwi.net/hls/0098.DDNational.in.m3u8 -#EXTINF:-1 tvg-id="DDNational.in",DD National (576p) -http://103.199.161.254/Content/ddnational/Live/Channel(DDNational)/index.m3u8 -#EXTINF:-1 tvg-id="DDNews.in",DD News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCKwucPzHZ7zCUIf7If-Wo1g/live -#EXTINF:-1 tvg-id="DDPunjabi.in",DD Punjabi (576p) [Offline] -https://hls.media.nic.in/live/ddpunjabi1/index.m3u8 -#EXTINF:-1 tvg-id="DDSports.in",DD Sports (576p) -http://103.199.161.254/Content/ddsports/Live/Channel(DDSPORTS)/index.m3u8 -#EXTINF:-1 tvg-id="DesiBeatsHD.in",Desi Beats HD (720p) -http://cdn7.live247stream.com/desibeats/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DesiChannel.in",Desi Channel (720p) -https://live.wmncdn.net/desichannel/7e2dd0aed46b70a5c77f4affdb702e4b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DesiPlus.in",Desi Plus (720p) -http://cdn2.live247stream.com/desiplus/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Dhamaal.in",Dhamaal (1080p) [Not 24/7] -https://live.hungama.com/linear/dhamaal/playlist.m3u8 -#EXTINF:-1 tvg-id="Dhinchaak2.in",Dhinchaak 2 (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0tm/index.m3u8 -#EXTINF:-1 tvg-id="Dhinchaak.in",Dhinchaak (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0o5/index.m3u8 -#EXTINF:-1 tvg-id="DighvijayNews24x7.in",Dighvijay (240p) [Not 24/7] -https://vidcdn.vidgyor.com/dighvijay-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="DilSe.in",Dil Se (480p) [Not 24/7] -https://live.hungama.com/linear/dil-se/playlist.m3u8 -#EXTINF:-1 tvg-id="DishaTV.in",Disha TV (360p) [Not 24/7] -http://xlbor3aadvaj-hls-live.wmncdn.net/disha/stream.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Dishum.in",Dishum (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pe/index.m3u8 -#EXTINF:-1 tvg-id="Dishum.in",Dishum [Geo-blocked] -https://m-c29-j2apps.s.llnwi.net/hls/5332.Dishum.in.m3u8 -#EXTINF:-1 tvg-id="DivyaTV.in",Divya TV [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-divyatv -#EXTINF:-1 tvg-id="DocuBayTV.in",DocuBay TV (1080p) [Not 24/7] -https://docubayvh.s.llnwi.net/526a07ab-6ae7-4b6c-84a1-159791416484_1000004372_HLS/manifest.m3u8 -#EXTINF:-1 tvg-id="DreamTV.in",Dream TV (720p) [Not 24/7] -https://cloudflare-cdn301.ottpro.in/dream_media/reedeem/playlist.m3u8 -#EXTINF:-1 tvg-id="DreamzTV.in",Dreamz TV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/DREAMHD/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="DumTVKannada.in",Dum TV Kannada (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0sq/index.m3u8 -#EXTINF:-1 tvg-id="E24.in",E24 (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pc/index.m3u8 -#EXTINF:-1 tvg-id="EETTV.in",EET TV (1080p) [Not 24/7] -https://live.streamjo.com/eetlive/eettv.m3u8 -#EXTINF:-1 tvg-id="Enter10Bangla.in",Enter10 Bangla (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0j5/index.m3u8 -#EXTINF:-1 tvg-id="Enter10Rangeela.in",Enter10 Rangeela (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0tp/index.m3u8 -#EXTINF:-1 tvg-id="EpicTV.in",Epic TV [Geo-blocked] -https://m-c03-j2apps.s.llnwi.net/hls/2639.Epic.in.m3u8 -#EXTINF:-1 tvg-id="ETNow.in",ET Now (720p) -https://etnowweblive-lh.akamaihd.net/i/ETN_1@348070/master.m3u8 -#EXTINF:-1 tvg-id="ETVAndhraPradesh.in",ETV Andhra Pradesh (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSbwShxZsBiqqWwtUidmS6g/live -#EXTINF:-1 tvg-id="ETVChattisgarh.in",ETV Chattisgarh [Offline] -https://etv-mp.akamaized.net/i/etv_mp_hls_1@175737/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="ETVTelangana.in",ETV Telangana (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6ickpgDIsltU_-8CbZaksQ/live -#EXTINF:-1 tvg-id="ETVUttarakhand.in",ETV Uttarakhand [Offline] -https://etv-up.akamaized.net/i/etv_up_hls_1@175735/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="FaktMarathi.in",Fakt Marathi (480p) [Offline] -https://m-c036-j2apps.s.llnwi.net/hls/3200.FaktMarathi.in.m3u8 -#EXTINF:-1 tvg-id="FaktMarathi.in",Fakt Marathi (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0q8/index.m3u8 -#EXTINF:-1 tvg-id="FASTWAYNEWS.in",FASTWAY NEWS (720p) [Not 24/7] -http://163.47.214.155:1935/fwnews/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Filmeraa.in",Filmeraa (720p) -https://a.jsrdn.com/broadcast/7ef91d3d7a/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FlowersTV.in",Flowers TV (576p) -http://103.199.161.254/Content/flowers/Live/Channel(Flowers)/index.m3u8 -#EXTINF:-1 tvg-id="FoodFood.in",Food Food (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0qx/index.m3u8 -#EXTINF:-1 tvg-id="GabruuTV.in",Gabruu TV [Offline] -http://104.237.60.234/live/gabruutv.m3u8 -#EXTINF:-1 tvg-id="GaundaPunjabTV.in",Gaunda Punjab TV (720p) [Not 24/7] -http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GDNSLudhiana.in",GDNS Ludhiana (1080p) [Not 24/7] -http://akalmultimedia.net:1935/gdnslive/gdns-live/chunklist.m3u8 -#EXTINF:-1 tvg-id="GlobalPunjab.in",Global Punjab (720p) [Not 24/7] -https://media.streambrothers.com:1936/8522/8522/playlist.m3u8 -#EXTINF:-1 tvg-id="GSTV.in",GSTV (720p) [Not 24/7] -https://1-213-10546-44.b.cdn13.com/388656798579293628302251.m3u8 -#EXTINF:-1 tvg-id="HiDosti.in",Hi Dosti (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0rg/index.m3u8 -#EXTINF:-1 tvg-id="HiruTV.in",Hiru TV (360p) [Not 24/7] -http://cdncities.com/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="HulchulTV.in",Hulchul TV (720p) [Not 24/7] -http://cdn12.henico.net:8080/live/jbani/index.m3u8 -#EXTINF:-1 tvg-id="HungamaTV.in",Hungama TV (576p) [Timeout] -http://103.153.39.34:8000/play/a04l/index.m3u8 -#EXTINF:-1 tvg-id="ILove.in",I Love (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0p3/index.m3u8 -#EXTINF:-1 tvg-id="Imayam.in",Imayam (480p) [Not 24/7] -https://idvd.multitvsolution.com/idvo/imayamtv.m3u8 -#EXTINF:-1 tvg-id="IndiaNews.in",India News (480p) -https://m-c036-j2apps.s.llnwi.net/hls/0442.IndiaNews.in.m3u8 -#EXTINF:-1 tvg-id="IndiaToday.in",India Today (720p) [Not 24/7] -https://indiatodaylive.akamaized.net/hls/live/2014320/indiatoday/indiatodaylive/playlist.m3u8 -#EXTINF:-1 tvg-id="IndiaTV.in",India TV (480p) [Not 24/7] -https://live-indiatvnews.akamaized.net/indiatv-origin/ITV_1_1@199237/playlist.m3u8 -#EXTINF:-1 tvg-id="IndiaTV.in",India TV (480p) [Not 24/7] -https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="IsaiAruvi.in",Isai Aruvi (576p) -http://103.199.161.254/Content/isaiaruvi/Live/Channel(IsaiAruvi)/index.m3u8 -#EXTINF:-1 tvg-id="JaihindTV.in",Jaihind TV (576p) -http://103.199.161.254/Content/jaihind/Live/Channel(Jaihind)/index.m3u8 -#EXTINF:-1 tvg-id="JanTV.in",Jan TV (360p) [Not 24/7] -http://jantvstream.in:1935/edge1/sc1jantv.stream_aac/playlist.m3u8 -#EXTINF:-1 tvg-id="JanTV.in",Jan TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.youtube.com/channel/UCjmnq35TvJ1J8JZS49OPg-Q/live -#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ja/index.m3u8 -#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (720p) -https://vidcdn.vidgyor.com/janamtv-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="JanamTV.in",Janam TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNVkxRPqsBNejO6B9thG9Xw/live -#EXTINF:-1 tvg-id="JanapriyamTV.in",Janapriyam TV [Offline] -https://jio.instream.ml/jio.php?c=Janapriyam_News&e=.m3u8&q=400 -#EXTINF:-1 tvg-id="JanataaTV.in",Janataa TV [Not 24/7] -http://mydreams.livebox.co.in/Janataatvhls/Janataatv.m3u8 -#EXTINF:-1 tvg-id="JantaTV.in",Janta TV (360p) [Not 24/7] -https://live.wmncdn.net/jantatv/live.stream/index.m3u8 -#EXTINF:-1 tvg-id="JayaPlus.in",Jaya Plus (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=eWNFGCYl7Y8 -#EXTINF:-1 tvg-id="JeevanTV.in",Jeevan TV (576p) -http://103.199.161.254/Content/jeevan/Live/Channel(Jeevan)/index.m3u8 -#EXTINF:-1 tvg-id="JhanjarMusic.in",Jhanjar Music (1080p) [Not 24/7] -http://159.203.9.134/hls/jhanjar_music/jhanjar_music.m3u8 -#EXTINF:-1 tvg-id="JonackTV.in",Jonack TV (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/jonakk/jonakk/playlist.m3u8 -#EXTINF:-1 tvg-id="KadakHits.in",Kadak Hits (360p) [Not 24/7] -https://live.hungama.com/linear/kadak-hits/playlist.m3u8 -#EXTINF:-1 tvg-id="KairaliArabia.in",Kairali Arabia (480p) [Not 24/7] -https://idvd.multitvsolution.com/idvo/kairaliarabia_540p/index.m3u8 -#EXTINF:-1 tvg-id="KairaliNews.in",Kairali News (576p) -http://103.199.161.254/Content/people/Live/Channel(People)/index.m3u8 -#EXTINF:-1 tvg-id="KairaliNews.in",Kairali News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkCWitaToNG1_lR-Si1oMrg/live -#EXTINF:-1 tvg-id="KairaliTV.in",Kairali TV (480p) -http://103.199.161.254/Content/kairali/Live/Channel(Kairali)/index.m3u8 -#EXTINF:-1 tvg-id="KairaliWe.in",Kairali We (576p) -http://103.199.161.254/Content/we/Live/Channel(We)/index.m3u8 -#EXTINF:-1 tvg-id="KalaiIsai.in",Kalai Isai (1080p) [Not 24/7] -http://singamcloud.in:1935/kalai/kalaiisai/playlist.m3u8 -#EXTINF:-1 tvg-id="Kalaignar.in",Kalaignar (576p) -http://103.199.161.254/Content/kalaignartv/Live/Channel(KalaignarTV)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarMurasu.in",Kalaignar Murasu (576p) [Not 24/7] -http://103.199.160.85/Content/kalaignarmurasu/Live/Channel(KalaignarMurasu)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarSeithikal.in",Kalaignar Seithikal (576p) [Not 24/7] -http://103.199.160.85/Content/kalaignarseithikal/Live/Channel(KalaignarSeithikal)/index.m3u8 -#EXTINF:-1 tvg-id="KalaignarSeithikal.in",Kalaignar Seithikal (1080p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=taLsR3aC2vw -#EXTINF:-1 tvg-id="KalaignarSirippoli.in",Kalaignar Sirippoli (576p) -http://103.199.161.254/Content/kalaignarsirippoli/Live/Channel(Kalaignarsirippoli)/index.m3u8 -#EXTINF:-1 tvg-id="KalingaTV.in",Kalinga TV (864p) [Not 24/7] -https://live.mycast.in/kalingatv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KanakNews.in",Kanak News (720p) [Not 24/7] -https://live.kanaknews.com:4443/live/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KannurOne.in",Kannur One (720p) [Not 24/7] -https://bnwdplewrp3a-hls-live.wmncdn.net/kannur1/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KannurVision.in",Kannur Vision (360p) [Not 24/7] -https://stream.ufworldind.in/live/kvision/playlist.m3u8 -#EXTINF:-1 tvg-id="KappaTV.in",Kappa TV (360p) -http://103.199.161.254/Content/kappa/Live/Channel(Kappa)/index.m3u8 -#EXTINF:-1 tvg-id="KasthuriTV.in",Kasthuri (576p) -http://103.199.161.254/Content/kasthuritv/Live/Channel(KasthuriTV)/index.m3u8 -#EXTINF:-1 tvg-id="KaumudyTV.in",Kaumudy TV (720p) [Offline] -https://live.wmncdn.net/kaumuditv1/live.stream/index.m3u8 -#EXTINF:-1 tvg-id="KCLTV.in",KCL TV (720p) [Not 24/7] -http://kcltv.livebox.co.in/kclhls/live.m3u8 -#EXTINF:-1 tvg-id="KCV.in",KCV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/KCVTV/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="KCVMovies.in",KCV Movies (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/KCVMOVIE/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="Kentv.in",Ken TV (360p) -https://stream.ufworldind.in/kentvlive/smil:kentv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KeralaVision.in",Kerala Vision (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ni/index.m3u8 -#EXTINF:-1 tvg-id="KeralaVisionNews.in",Kerala Vision News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtSeMwydGw6mDSZaIUaJ5bw/live -#EXTINF:-1 tvg-id="KhabrainAbhiTak.in",Khabrain Abhi Tak (480p) -https://vidcdn.vidgyor.com/kat-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="",KITE Victers (Kerala) (720p) [Not 24/7] -https://932y4x26ljv8-hls-live.5centscdn.com/victers/tv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KrishnaVani.in",Krishna Vani (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-166 -#EXTINF:-1 tvg-id="LifePunjabi.in",Life Punjabi (720p) [Not 24/7] -http://live.agmediachandigarh.com/lifepunjabi/e27b5c8d89b83882ca3b018eeed14888.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="LifeTV.in",Life TV (480p) [Not 24/7] -http://59c3ec70cfde0.streamlock.net/channel_6/channel6/playlist.m3u8 -#EXTINF:-1 tvg-id="LokSabhaTV.in",Lok Sabha TV (576p) [Not 24/7] -https://nicls1-lh.akamaihd.net/i/lst_1@26969/master.m3u8 -#EXTINF:-1 tvg-id="MahaMovie.in",Maha Movie (240p) [Not 24/7] -https://m-c036-j2apps.s.llnwi.net/hls/2820.MahaMovie.in.m3u8 -#EXTINF:-1 tvg-id="MahaMovie.in",Maha Movie (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0q7/index.m3u8 -#EXTINF:-1 tvg-id="MakkalTV.in",Makkal TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0l1/index.m3u8 -#EXTINF:-1 tvg-id="MakkalTV.in",Makkal TV [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-makkaltv -#EXTINF:-1 tvg-id="MalabarNews.in",Malabar News (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/live/malabarnews/playlist.m3u8 -#EXTINF:-1 tvg-id="MalabarVision.in",Malabar Vision (720p) [Timeout] -http://cdn1.logicwebs.in:1935/malabar/malabar/playlist.m3u8 -#EXTINF:-1 tvg-id="Malaimurasu.in",Malaimurasu (480p) [Not 24/7] -https://malaimurasucdn.purplestream.com/malaimurasu/49992ade0624eda468a31e137996d044.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="MalppuramChannel.in",Malappuram Channel (720p) [Not 24/7] -http://103.78.18.137:1935/live/mlpchannel/chunklist.m3u8 -#EXTINF:-1 tvg-id="Mangalam.in",Mangalam (576p) [Not 24/7] -http://103.199.160.85/Content/mangalam/Live/Channel(Mangalam)/index.m3u8 -#EXTINF:-1 tvg-id="ManoramaNews.in",Manorama News (576p) -http://103.199.161.254/Content/manoramanews/Live/Channel(ManoramaNews)/index.m3u8 -#EXTINF:-1 tvg-id="ManoranjanGrand.in",Manoranjan Grand (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0m2/index.m3u8 -#EXTINF:-1 tvg-id="ManoranjanMovies.in",Manoranjan Movies (480p) -https://m-c036-j2apps.s.llnwi.net/hls/2172.ManoranjanMovies.in.m3u8 -#EXTINF:-1 tvg-id="MarutamTV.in",Marutam TV (720p) [Not 24/7] -http://mntv.livebox.co.in/mntvhls/mntv.m3u8 -#EXTINF:-1 tvg-id="Mastiii.in",Mastiii (576p) [Not 24/7] -http://103.199.160.85/Content/masthi/Live/Channel(Masthi)/index.m3u8 -#EXTINF:-1 tvg-id="MathrubhumiNews.in",Mathrubhumi News (576p) [Not 24/7] -http://103.199.161.254/Content/mathrubhuminews/Live/Channel(Mathrubhuminews)/index.m3u8 -#EXTINF:-1 tvg-id="MathrubhumiNews.in",Mathrubhumi News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCwXrBBZnIh2ER4lal6WbAHw/live -#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/mazhavil_wxjylngynrbeykzthdrhawtunzcuowsr/playlist.m3u8 -#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0kd/index.m3u8 -#EXTINF:-1 tvg-id="MazhavilManorama.in",Mazhavil Manorama (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0pa/index.m3u8 -#EXTINF:-1 tvg-id="MazhavilManoramaHD.in",Mazhavil Manorama HD (1080p) [Not 24/7] -http://14.199.164.20:4001/play/a0p9/index.m3u8 -#EXTINF:-1 tvg-id="MediaOne.in",Media One (576p) -http://103.199.161.254/Content/mediaone/Live/Channel(MediaOne)/index.m3u8 -#EXTINF:-1 tvg-id="",MH1 Music (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhonemusic/mhonemusic/playlist.m3u8 -#EXTINF:-1 tvg-id="",MH1 Prime (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhonenews/mhonenews/playlist.m3u8 -#EXTINF:-1 tvg-id="MirrorNow.in",Mirror Now (576p) -https://mbnowweb-lh.akamaihd.net/i/MRN_1@346545/master.m3u8 -#EXTINF:-1 tvg-id="MKSix.in",MK Six (576p) [Not 24/7] -http://103.199.160.85/Content/mktv6/Live/Channel(MKTV6)/index.m3u8 -#EXTINF:-1 tvg-id="MKTunes.in",MK Tunes (576p) [Not 24/7] -http://103.199.160.85/Content/mktunes/Live/Channel(MKTunes)/index.m3u8 -#EXTINF:-1 tvg-id="MKTV.in",MK TV (576p) [Not 24/7] -http://103.199.160.85/Content/mktv/Live/Channel(MKTV)/index.m3u8 -#EXTINF:-1 tvg-id="MSignMedia.in",Msign Media (576p) [Not 24/7] -http://cloud.logicwebs.in:1935/msign/msignmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="MtunesPlus.in",Mtunes Plus (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0p2/index.m3u8 -#EXTINF:-1 tvg-id="MusicIndia.in",Music India (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0mt/index.m3u8 -#EXTINF:-1 tvg-id="MusicIndia.in",Music India (576p) [Not 24/7] -http://103.199.160.85/Content/musicindia/Live/Channel(MusicIndia)/index.m3u8 -#EXTINF:-1 tvg-id="Naaptol.in",Naaptol (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0n1/index.m3u8 -#EXTINF:-1 tvg-id="Namdhari.in",Namdhari (404p) [Not 24/7] -https://namdhari.tv/live/sbs1.m3u8 -#EXTINF:-1 tvg-id="",Nandighosha Tv (720p) [Not 24/7] -https://live.mycast.in/ngtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NaxtraNews.in",Naxtra News (720p) [Not 24/7] -http://wearelive.livebox.co.in/naxatratvhls/Naxatratv.m3u8 -#EXTINF:-1 tvg-id="Nazrana.in",Nazrana (1080p) -https://live.hungama.com/linear/nazrana/playlist.m3u8 -#EXTINF:-1 tvg-id="NCV.in",NCV (720p) [Not 24/7] -http://103.146.174.60:1935/NCV/ncvstream/master.m3u8 -#EXTINF:-1 tvg-id="",NDTV 24X7 (480p) [Not 24/7] -https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/master.m3u8 -#EXTINF:-1 tvg-id="NDTVIndia.in",NDTV India (480p) [Not 24/7] -https://ndtvindiaelemarchana.akamaized.net/hls/live/2003679/ndtvindia/master.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit (480p) -https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680-b/ndtvprofit/master.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit (480p) [Not 24/7] -https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680/ndtvprofit/master.m3u8 -#EXTINF:-1 tvg-id="NDTVProfit.in",NDTV Profit [Geo-blocked] -https://ndtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/ndtv/live/ndtv_profit.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NeeCinema.in",Nee Cinema (576p) [Not 24/7] -https://live.neestream.com/neestream_01/nee_cinema/playlist.m3u8 -#EXTINF:-1 tvg-id="NethraTV.in",Nethra TV (480p) [Not 24/7] -https://dammikartmp.tulix.tv/slrc3/slrc3/playlist.m3u8 -#EXTINF:-1 tvg-id="News7Tamil.in",News 7 Tamil (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0kp/index.m3u8 -#EXTINF:-1 tvg-id="News7Tamil.in",News 7 Tamil (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2f4w_ppqHplvjiNaoTAK9w/live -#EXTINF:-1 tvg-id="News18Assam.in",News 18 Assam (360p) [Not 24/7] -https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Assam.in",News18 Assam (504p) [Not 24/7] -https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="News18Bangla.in",News18 Bangla (360p) [Not 24/7] -https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8 -#EXTINF:-1 tvg-id="News18Bengali.in",News 18 Bengali (360p) [Not 24/7] -https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Chhattisgarh.in",News 18 Chhattisgarh (360p) -https://news18mp-lh.akamaihd.net/i/n18mpcg_1@175737/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Gujarati.in",News 18 Gujarati (360p) -https://news18gujarati-lh.akamaihd.net/i/n18gujarat_1@370955/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Hindi.in",News 18 Hindi (360p) -https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18India.in",News18 India (504p) -https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="News18Jharkhand.in",News 18 Jharkhand (360p) -https://news18bihar-lh.akamaihd.net/i/n18biharjh_1@175736/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Kannada.in",News 18 Kannada (360p) -https://news18kannada-lh.akamaihd.net/i/n18kannada_1@372918/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Lokmat.in",News 18 Lokmat (504p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/india/news18-lokmat.m3u8 -#EXTINF:-1 tvg-id="News18Malayalam.in",News 18 Malayalam (360p) -https://news18kerala-lh.akamaihd.net/i/n18kerala_1@526583/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Odia.in",News 18 Odia (360p) -https://etv-oriya.akamaized.net/i/n18odia_1@179753/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Punjab.in",News 18 Punjab (360p) -https://news18haryana-lh.akamaihd.net/i/n18punjabhimhar_1@349009/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Rajasthan.in",News 18 Rajasthan (360p) -https://news18rajasthan-lh.akamaihd.net/i/n18raj_1@175738/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Tamil.in",News 18 Tamil (360p) -https://news18tamil-lh.akamaihd.net/i/n18tamil_1@526595/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Tamil.in",News 18 Tamil (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=EZy0RAxG8OI -#EXTINF:-1 tvg-id="News18Urdu.in",News 18 Urdu (360p) -https://news18urdu-lh.akamaihd.net/i/n18urdu_1@373059/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News18Uttarakhand.in",News 18 Uttarakhand (360p) -https://news18up-lh.akamaihd.net/i/n18upuk_1@175735/index_4_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="News24.in",News 24 (360p) [Not 24/7] -https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live2/playlist.m3u8 -#EXTINF:-1 tvg-id="News24.in",News 24 (480p) [Not 24/7] -https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsJ.in",News J (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=QH4zszwdIKE -#EXTINF:-1 tvg-id="NextTVMalabar.in",Next TV Malabar (720p) [Not 24/7] -https://6zklxbgpdw9b-hls-live.5centscdn.com/next/c9a1fdac6e082dd89e7173244f34d7b3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OdishaTV.in",Odisha TV (480p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/otvnewmbr/otvnewmbr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OneTv.in",One TV (720p) -http://137.59.86.218:1935/live/onetv/playlist.m3u8 -#EXTINF:-1 tvg-id="Peppers.in",Peppers (576p) [Not 24/7] -http://103.199.160.85/Content/peppers/Live/Channel(Peppers)/index.m3u8 -#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0lg/index.m3u8 -#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (720p) [Geo-blocked] -https://versewsa.pc.cdn.bitgravity.com/versewsa/live/polimernews.smil/chunklist_b1800000.m3u8 -#EXTINF:-1 tvg-id="PolimerNews.in",Polimer News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Z-VjXBtDJTvq6aqkIskPg/live -#EXTINF:-1 tvg-id="PolimerTV.in",Polimer TV (404p) [Not 24/7] -http://cdn.asianetmobiletvplus.com/channels/polimertv_rpvpvdefkpxbafsouzockpitjldtogrr/chunks.m3u8 -#EXTINF:-1 tvg-id="PopPataka.in",Pop Pataka (360p) [Not 24/7] -https://live.hungama.com/linear/pop-pataka/playlist.m3u8 -#EXTINF:-1 tvg-id="PopularScience.in",Popular Science (720p) [Offline] -https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 -#EXTINF:-1 tvg-id="PramayaNews7.in",Pramaya News7 (576p) [Not 24/7] -https://live.mycast.in/encode/ee0c5a36ff5a7083ee044991974ad3ba.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PratidinTime.in",Pratidin Time (360p) [Not 24/7] -https://rtmp.smartstream.video/pratidintime/pratidintime/playlist.m3u8 -#EXTINF:-1 tvg-id="Pravasi.in",Pravasi (1080p) [Not 24/7] -https://5ee50688d7b5d.streamlock.net:444/live/pravasi/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimeCanadaTV.in",Prime Canada TV (720p) [Not 24/7] -http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="PublicMovies.in",Public Movies (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ll/index.m3u8 -#EXTINF:-1 tvg-id="PublicMusic.in",Public Music (576p) [Not 24/7] -http://103.199.161.254/Content/publicmusic/Live/Channel(PublicMusic)/index.m3u8 -#EXTINF:-1 tvg-id="PublicTV.in",Public TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ld/index.m3u8 -#EXTINF:-1 tvg-id="PulariTV.in",Pulari TV (720p) [Not 24/7] -https://royalstarindia.co.in/pularitv_hls/pularitv.m3u8 -#EXTINF:-1 tvg-id="PUNJABTV.in",PUNJAB TV (720p) [Not 24/7] -http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 -#EXTINF:-1 tvg-id="PunjabiZindabad.in",Punjabi Zindabad (720p) [Not 24/7] -http://stream.pztv.online/pztv/playlist.m3u8 -#EXTINF:-1 tvg-id="PuthiyaThalaimurai.in",Puthiya Thalaimurai (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCmyKnNRH0wH-r8I-ceP-dsg/live -#EXTINF:-1 tvg-id="PuthuyugamTV.in",Puthuyugam TV (576p) [Not 24/7] -http://103.199.160.85/Content/puthuyugam/Live/Channel(Puthuyugam)/index.m3u8 -#EXTINF:-1 tvg-id="RPlusNews.in",R Plus News (360p) [Not 24/7] -https://cdn.smartstream.video/smartstream-us/rplus/rplus/playlist.m3u8 -#EXTINF:-1 tvg-id="RajDigitalPlus.in",Raj Digital Plus (404p) [Offline] -http://acv.asianetmobiletvplus.com/channels/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_hls/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_master.m3u8 -#EXTINF:-1 tvg-id="RajNews.in",Raj News (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_MT_gzdPiTg -#EXTINF:-1 tvg-id="RealNewsKerala.in",Real News Kerala (1080p) [Not 24/7] -https://bk7l298nyx53-hls-live.5centscdn.com/realnews/e7dee419f91aa9e65939d3677fb9c4f5.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="RealTV.in",Real TV (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/realtv/realtv1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Relax TV (576p) [Not 24/7] -http://198.144.149.82:8080/NOTV/RELAXTV/index.m3u8?token=GTR -#EXTINF:-1 tvg-id="ReporterTV.in",Reporter TV (576p) -http://103.199.161.254/Content/reporter/Live/Channel(Reporter)/index.m3u8 -#EXTINF:-1 tvg-id="RepublicBharatin.in",Republic Bharat (360p) [Geo-blocked] -https://republic.pc.cdn.bitgravity.com/live/bharat_hls/master.m3u8 -#EXTINF:-1 tvg-id="RepublicTV.in",Republic TV [Geo-blocked] -https://weblive.republicworld.com/liveorigin/republictv/playlist.m3u8 -#EXTINF:-1 tvg-id="RepublicTV.in",Republic TV [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_1422341819 -#EXTINF:-1 tvg-id="Rosebowl.in",Rosebowl (404p) [Offline] -http://cdn.asianetmobiletvplus.com/channels/rosebowl_7eb4dc1f3240c8eb776d41b95bd1d197/playlist.m3u8 -#EXTINF:-1 tvg-id="RSTVRajyaSabha.in" status="error",RSTV RajyaSabha (1080p) [Not 24/7] -https://nicls2-lh.akamaihd.net/i/rstv_1@26970/master.m3u8 -#EXTINF:-1 tvg-id="SachinMusic.in",Sachin Music (576p) [Not 24/7] -http://singamcloud.in:1935/sachinmusichd/sachinmusichd/playlist.m3u8 -#EXTINF:-1 tvg-id="SadaTV.in",Sada TV (1080p) [Not 24/7] -http://cdn12.henico.net:8080/live/sadatv/index.m3u8 -#EXTINF:-1 tvg-id="Sadhna.in",Sadhna (360p) [Offline] -http://cdn.clive.in:1935/sadhnabhakti/sadhnabhakti.stream_HDp/playlist.m3u8 -#EXTINF:-1 tvg-id="SadhnaPlus.in",Sadhna Plus (360p) [Offline] -http://cdn.clive.in:1935/sadhnaplus/sadhnaplus.stream_HDp/media.m3u8 -#EXTINF:-1 tvg-id="SafariTV.in",Safari TV (480p) [Not 24/7] -https://j78dp346yq5r-hls-live.5centscdn.com/safari/live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SanaPlus.in",Sana Plus (720p) [Not 24/7] -http://media.7starcloud.com:1935/live/sanatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="SanaTV.in",Sana TV (576p) [Not 24/7] -http://hdserver.7starcloud.com:1935/sanatv/sanatv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Sanskaar (1080p) [Not 24/7] -https://sanskarlive.sanskargroup.in/sanskartvlive.m3u8 -#EXTINF:-1 tvg-id="SanthoraShortFlim.in",Santhora Short Flim (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.in",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.in",Santhora TV (720p) -http://santhoratv.zecast.net/santhoratv/santhoratv/index.m3u8 -#EXTINF:-1 tvg-id="",Sardari TV (1080p) [Not 24/7] -http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 -#EXTINF:-1 tvg-id="SathiyamTV.in",Sathiyam TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip==https://www.youtube.com/channel/UC2ziCMHFPWkFHjocUMXT__Q/live -#EXTINF:-1 tvg-id="Satsang.in",Satsang (1080p) [Not 24/7] -https://satsangtv.sanskargroup.in/satsangtvlive.m3u8 -#EXTINF:-1 tvg-id="ServeurTV.in",Serveur TV (720p) [Offline] -https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ShekinahTV.in",Shekinah TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0ok/index.m3u8 -#EXTINF:-1 tvg-id="ShekinahTV.in",Shekinah TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCHtYUfPnQci6GoUpPlWfrOg/live -#EXTINF:-1 tvg-id="ShemarooTV.in",Shemaroo TV (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nh/index.m3u8 -#EXTINF:-1 tvg-id="ShirdiLive.in",Shirdi Live (720p) [Offline] -https://cam.live-s.cdn.bitgravity.com/cdn-live/_definst_/cam/live/secure/saibaba/playlist.m3u8?e=0&h=2598445340a35f63eb211f81940d2525 -#EXTINF:-1 tvg-id="ShowBox.in",Show Box (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0o8/index.m3u8 -#EXTINF:-1 tvg-id="Shraddha.in",Shraddha (360p) [Not 24/7] -http://rtmp.smartstream.video:1935/mhoneshradha/mhoneshradha/playlist.m3u8 -#EXTINF:-1 tvg-id="Shubhsandesh.in",Shubhsandesh (720p) [Not 24/7] -https://6284rn2xr7xv-hls-live.wmncdn.net/shubhsandeshtv1/live123.stream/index.m3u8 -#EXTINF:-1 tvg-id="SikhChannel.in",Sikh Channel (576p) [Offline] -http://fastway.ddns.net:6421/fastway/live8/index.m3u8?token=fastwaytvstreams -#EXTINF:-1 tvg-id="SonyBBCEarthHD.in",Sony BBC Earth HD (1080p) [Offline] -http://103.81.104.118/hls/stream5.m3u8 -#EXTINF:-1 tvg-id="",Sony MAX 2 [Offline] -http://208.115.215.42/Sony_Max_HD_02/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyMAXHD.in",Sony MAX HD [Offline] -http://208.115.215.42/Sony_Max_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySabHD.in",Sony Sab HD (1080p) [Not 24/7] -http://indo51.gcdn.co/hindi-SONYSABHD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySabHD.in",Sony Sab HD [Offline] -http://208.115.215.42/Sony_Sab_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="SonySix.in",Sony Six (1080p) [Not 24/7] -http://137.59.155.77:8088/hls/05sonysix.m3u8 -#EXTINF:-1 tvg-id="SonySixHD.in",Sony Six HD (1080p) [Offline] -http://103.81.104.118/hls/stream10.m3u8 -#EXTINF:-1 tvg-id="",Sony WAH (404p) [Offline] -https://d2gowxuvx77j6q.cloudfront.net/WAH.m3u8 -#EXTINF:-1 tvg-id="",Sony YAY (404p) [Offline] -https://d20fdzcwhk7szz.cloudfront.net/SONY_YAY.m3u8 -#EXTINF:-1 tvg-id="SriSankara.in",Sri Sankara (360p) [Not 24/7] -https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="StarCinema.in",Star Cinema (576p) -http://c0.cdn.trinity-tv.net/stream/nh9u54a7sfnc2hwzxr2zwykwkqm43bgyyzsm68ybbbnjei8kytwcgs3zm5gnw5c6efa5gr3fadzqe686w8gj2eaehrj89wvujvqza3kez78dtknwbbmnqf79yygmqqg7e9pnc3i3bpywjkiqrwke94yf.m3u8 -#EXTINF:-1 tvg-id="StarFamily.in",Star Family (576p) -http://c0.cdn.trinity-tv.net/stream/zfmjgma9zn46fa797ez9fgkw7msh9mj4tppspg23gey6mmx5fqiy7ky3jqx4uhgsfsrd8r76si8ykb2anw9442g4qkq5fzpdvwdqf5te24ixu9zrx3aesm9fzt59q5y2s8qwgbqhvf6d3z5bjy3qb2t4.m3u8 -#EXTINF:-1 tvg-id="StarGoldHD.in",Star Gold HD (1080p) [Offline] -http://103.81.104.118/hls/stream19.m3u8 -#EXTINF:-1 tvg-id="StarMaa.in",Star Maa [Geo-blocked] -http://maatv-i.akamaihd.net/hls/live/569930/maatv/master_2000.m3u8 -#EXTINF:-1 tvg-id="StarPlusHD.in",Star Plus HD (720p) [Geo-blocked] -http://208.115.215.42/Utsav_Plus_HD/playlist.m3u8 -#EXTINF:-1 tvg-id="StarUtsav.in",Star Utsav [Offline] -https://dolv5imquuojb.cloudfront.net/ST_UTSAV.m3u8 -#EXTINF:-1 tvg-id="SteelbirdMusic.in",Steelbird Music (720p) [Not 24/7] -http://cdn25.live247stream.com/steelbirdmusic/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StudioOnePlus.in",Studio One Plus (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0oh/index.m3u8 -#EXTINF:-1 tvg-id="StudioOnePlus.in",Studio One Plus (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEoaVUxpFlmCxwRBy9yhb1Q/live -#EXTINF:-1 tvg-id="StudioOneYuva.in",Studio One Yuva (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0sr/index.m3u8 -#EXTINF:-1 tvg-id="StudioOneYuva.in",Studio One Yuva (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqR2tCs8ufgAjRd6rn4a2wg/live -#EXTINF:-1 tvg-id="SunNews.in",Sun News (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_fR9xWEOa7Q -#EXTINF:-1 tvg-id="SunTV.in",Sun TV (720p) [Offline] -http://uk4.zecast.com:1935/star-live/suntv.stream/index.m3u8 -#EXTINF:-1 tvg-id="SuryaMusic.in",Surya Music (480p) [Not 24/7] -https://indo51.gcdn.co/MALYLAM-SuryaMusic/index.m3u8 -#EXTINF:-1 tvg-id="SuryaTV.in",Surya TV (720p) [Not 24/7] -https://indo51.gcdn.co/MALYLAM-SuryaHD/index.m3u8 -#EXTINF:-1 tvg-id="Swantham.in",Swantham (720p) [Not 24/7] -http://cdn1.logicwebs.in:1935/SWANTHAM/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SwarajExpress.in",Swaraj Express (720p) [Not 24/7] -https://live.wmncdn.net/highnews/swaraj.stream/index.m3u8 -#EXTINF:-1 tvg-id="TehelkaTV.in",Tehelka TV (480p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/tehelkatv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ThanthiTV.in",Thanthi TV (720p) [Not 24/7] -https://vidcdn.vidgyor.com/thanthi-origin/liveabr/playlist.m3u8 -#EXTINF:-1 tvg-id="ThanthiTV.in",Thanthi TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=wc3Y6vI-poI -#EXTINF:-1 tvg-id="TimeTV.in",Time TV (360p) [Not 24/7] -https://cloudflare-cdn301.ottpro.in/live/timetv/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeVisionNews.in",Time Vision News (720p) [Not 24/7] -http://cloud.logicwebs.in:1935/timevision/timevision/playlist.m3u8 -#EXTINF:-1 tvg-id="TimesNow.in",Times Now (480p) [Geo-blocked] -https://timesnow-lh.akamaihd.net/i/TNHD_1@129288/master.m3u8 -#EXTINF:-1 tvg-id="Tunes6.in",Tunes 6 [Geo-blocked] -https://m-c18-j2apps.s.llnwi.net/hls/3731.Tunes6.in.m3u8 -#EXTINF:-1 tvg-id="TV9Kannada.in",TV9 Kannada (720p) [Not 24/7] -https://vidcdn.vidgyor.com/tv9kannada-origin/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TV9News.in",TV9 News (720p) -https://vidcdn.vidgyor.com/tv9telugu-origin/live/tv9telugu-origin/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="TwentyFourNews.in",Twenty Four News (576p) [Not 24/7] -http://103.199.160.85/Content/24news/Live/Channel(24news)/index.m3u8 -#EXTINF:-1 tvg-id="UBLHD.in",UBL HD (1080p) [Not 24/7] -https://cdn.logicwebs.in/hls/ublhdkey.m3u8 -#EXTINF:-1 tvg-id="UthradamMovies.in",Uthradam Movies (576p) [Not 24/7] -http://185.105.4.245:1935/livesp/uthradam/playlist.m3u8 -#EXTINF:-1 tvg-id="UtsavGold.in",Utsav Gold (720p) [Geo-blocked] -http://208.115.215.42/Utsav_Gold_HD/index.m3u8 -#EXTINF:-1 tvg-id="Vaanavil.in",Vaanvavil (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0nx/index.m3u8 -#EXTINF:-1 tvg-id="VasanthTV.in",Vasanth TV [Offline] -http://vasanth.live.cdn.bitgravity.com/vasanth/secure/live/feed03?bgsecuredir=1&e=0&h=a9be0836bc39f96d0a9a958a659dfc1d -#EXTINF:-1 tvg-id="VathanamTV.in",Vathanam TV [Timeout] -http://95.216.167.183:5080/LiveApp/streams/443106610169904881506470.m3u8 -#EXTINF:-1 tvg-id="Velicham.in",Velicham (360p) [Not 24/7] -https://rtmp.smartstream.video/velichamtv/velichamtv/playlist.m3u8 -#EXTINF:-1 tvg-id="VismayaNews.in",Vismaya News (720p) -http://live.singamcloud.in:1935/vismayanews/vismayanews/playlist.m3u8 -#EXTINF:-1 tvg-id="",Wion (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-wion -#EXTINF:-1 tvg-id="WowCinemaOne.in",Wow Cinema One (576p) [Not 24/7] -http://14.199.164.20:4001/play/a0n3/index.m3u8 -#EXTINF:-1 tvg-id="XploreChannel.in",Xplore Channel (720p) -http://cdn18.live247stream.com/ndachannel/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Yolo.in",Yolo (410p) [Not 24/7] -http://cdn.logicwebs.in/hls/yolo.m3u8 -#EXTINF:-1 tvg-id="YuppThirai.in",Yupp Thirai (270p) -http://119.81.82.28/encoded/yuppthirai_800/playlist.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r/index.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r/index.m3u8 -#EXTINF:-1 tvg-id="ZLivingUSA.in",Z Living USA (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Originals.in",Zee5 Originals (1080p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zee5_originals/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Originals.in",Zee5 Originals (1080p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zee5_originals/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Romance.in",Zee5 Romance (1080p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zee5_romance/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee5Romance.in",Zee5 Romance (1080p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zee5_romance/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee24.in",Zee 24 (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/kalak/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee24.in",Zee 24 (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/kalak/playlist.m3u8 -#EXTINF:-1 tvg-id="Zee24Ghanta.in",Zee 24 Ghanta (576p) [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-24ghantatv -#EXTINF:-1 tvg-id="Zee24MadyaPradeshChhattisgarh.in",Zee 24 Madhya Pradesh Chhattisgarh [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeemadhyapradeshchat -#EXTINF:-1 tvg-id="Zee24Taas.in",Zee 24 Taas (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zee24taas -#EXTINF:-1 tvg-id="ZeeAction.in",Zee Action (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/action/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAction.in",Zee Action (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/action/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAnmolCinema.in",Zee Anmol Cinema (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeAnmolCinema.in",Zee Anmol Cinema (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeBangla.in",Zee Bangla (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebangla -#EXTINF:-1 tvg-id="ZeeBanglaCinema.in",Zee Bangla Cinema (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebanglacinema -#EXTINF:-1 tvg-id="ZeeBiharJharkhand.in",Zee Bihar Jharkhand (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebiharjharkhand -#EXTINF:-1 tvg-id="ZeeBioskop.in",Zee Bioskop (360p) [Geo-blocked] -http://210.210.155.35/qwr9ew/s/s32/index.m3u8 -#EXTINF:-1 tvg-id="ZeeBollywood.in",Zee Bollywood (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeeclassic -#EXTINF:-1 tvg-id="ZeeBusiness.in",Zee Business [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeebusiness -#EXTINF:-1 tvg-id="ZeeCafe.in",Zee Cafe (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecafehd -#EXTINF:-1 tvg-id="ZeeCinema.in",Zee Cinema (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecinema -#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in",Zee Cinema Middle East (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zeecinemame/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in",Zee Cinema Middle East (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zeecinemame/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUK.in",Zee Cinema UK (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/cinemauk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUK.in",Zee Cinema UK (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/cinemauk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaUSA.in",Zee Cinema USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/cinemausa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeCinemaluHD.in",Zee Cinemalu HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeecinemalu -#EXTINF:-1 tvg-id="ZeeClassic.in",Zee Classic (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/classic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeClassic.in",Zee Classic (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/classic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeHindustan.in",Zee Hindustan (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeehindustan -#EXTINF:-1 tvg-id="ZeeKeralamHD.in",Zee Keralam HD (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zkeralamhd/index.m3u8 -#EXTINF:-1 tvg-id="ZeeMarathiHD.in",Zee Marathi HD (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeemarathi -#EXTINF:-1 tvg-id="ZeeMarathiUSA.in",Zee Marathi USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/marathiusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMarathiUSA.in",Zee Marathi USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/marathiusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMundo.in",Zee Mundo (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/mundohd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMundo.in",Zee Mundo (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/mundohd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMusic.in",Zee Music (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/magic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeMusic.in",Zee Music (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/magic/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNews.in",Zee News [Offline] -https://sneh-z5api.herokuapp.com/?c=0-9-zeenews -#EXTINF:-1 tvg-id="ZeeNewsMPCG.in",Zee News MPCG (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/newsmpcg/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNewsMPCG.in",Zee News MPCG (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/newsmpcg/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeNewsUttarPradeshUttrakhand.in",Zee News Uttar Pradesh Uttrakhand [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-channel_265145625 -#EXTINF:-1 tvg-id="ZeePunjabi.in",Zee Punjabi (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/punjabi/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeePunjabi.in",Zee Punjabi (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/punjabi/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeRajasthan.in" status="error",Zee Rajasthan (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zinguk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeRajasthan.in",Zee Rajasthan (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zinguk/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeSalaam.in",Zee Salaam (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeesalaam -#EXTINF:-1 tvg-id="ZeeSmileUSA.in",Zee Smile USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/smileusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeSmileUSA.in",Zee Smile USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/smileusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTalkies.in",Zee Talkies (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeetalkies -#EXTINF:-1 tvg-id="ZeeTamil.in",Zee Tamil (720p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-zeetamil -#EXTINF:-1 tvg-id="ZeeTV.in",Zee TV (480p) [Timeout] -https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/ZEETV/ZEETV.isml/index.m3u8 -#EXTINF:-1 tvg-id="ZeeTVAPAC.in",Zee TV APAC (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/apacsea/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVAPAC.in",Zee TV APAC (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/apacsea/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVCanada.in",Zee TV Canada (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/canadahd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVCanada.in",Zee TV Canada (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/canadahd/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in",Zee TV Middle East (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/ztvme/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in",Zee TV Middle East (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/ztvme/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVRussia.in",Zee TV Russia (720p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/russia/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVRussia.in",Zee TV Russia (720p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/russia/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVUSA.in",Zee TV USA (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeTVUSA.in",Zee TV USA (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeVajwa.in",Zee Vajwa (576p) [Geo-blocked] -https://sneh-z5api.herokuapp.com/?c=0-9-353 -#EXTINF:-1 tvg-id="ZeeWorld.in",Zee World (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/world/playlist.m3u8 -#EXTINF:-1 tvg-id="ZeeWorld.in",Zee World (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/world/playlist.m3u8 -#EXTINF:-1 tvg-id="Zing.in",Zing (576p) [Geo-blocked] -https://f8e7y4c6.ssl.hwcdn.net/zing/playlist.m3u8 -#EXTINF:-1 tvg-id="Zing.in",Zing (576p) [Geo-blocked] -https://y5w8j4a9.ssl.hwcdn.net/zing/playlist.m3u8 -#EXTINF:-1 tvg-id="Zoom.in",Zoom (1080p) [Offline] -http://103.81.104.118/hls/stream8.m3u8 diff --git a/streams/in_samsung.m3u b/streams/in_samsung.m3u deleted file mode 100644 index a72209c4c..000000000 --- a/streams/in_samsung.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -http://failarmy-international-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] -https://spi-filmstream-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-12-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GoUSAIndia.uk",Go USA (India) (720p) [Offline] -https://brandusa-gousa-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] -https://gustotv-samsung-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InshortIndia.nl",Inshort (India) (720p) -https://inshort-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) -https://introuble-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) -https://inwild-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsungindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVIndia.us",MavTV India (720p) [Offline] -http://mavtv-mavtvglobal-1-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeIndia.us",People are Awesome India (720p) [Offline] -https://jukin-peopleareawesome-2-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveIndia.us",The Pet Collective India (720p) [Offline] -https://the-pet-collective-international-in.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyIndia.us",WeatherSpy India (720p) [Offline] -https://jukin-weatherspy-2-in.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/iq.m3u b/streams/iq.m3u deleted file mode 100644 index c58b1993d..000000000 --- a/streams/iq.m3u +++ /dev/null @@ -1,121 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABNsat.iq",ABNsat (720p) -http://rtmp1.abnsat.com/hls/arabic.m3u8 -#EXTINF:-1 tvg-id="AfarinTV.iq",Afarin TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/afarinTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHurra.iq",Al Hurra (486p) [Not 24/7] -https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 -#EXTINF:-1 tvg-id="AlHurra.iq",Al Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 -#EXTINF:-1 tvg-id="AlIraqiyaAl3ama.iq",Al Iraqiya Al 3ama (720p) [Not 24/7] -https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8 -#EXTINF:-1 tvg-id="AlIraqiyaNews.iq",Al Iraqiya News (720p) [Not 24/7] -https://cdn.catiacast.video/abr/78054972db7708422595bc96c6e024ac/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRafidain.iq",Al Rafidain (1024p) [Not 24/7] -http://149.202.79.190:8081/arrafidaintv/publish/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRafidain.iq",Al Rafidain (1024p) [Not 24/7] -https://cdg8.edge.technocdn.com/arrafidaintv/abr_live/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRasheed.iq",Al Rasheed (408p) [Not 24/7] -https://media1.livaat.com/AL-RASHEED-HD/index.m3u8 -#EXTINF:-1 tvg-id="AlSharqiya.iq",Al Sharqiya (1080p) [Not 24/7] -http://ns8.indexforce.com:1935/home/mystream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSharqiyaNews.iq",Al Sharqiya News (1080p) -http://ns8.indexforce.com:1935/alsharqiyalive/mystream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Al Sumaria (1080p) [Not 24/7] -http://iptv.repl.co/Arabic/Al_summaria -#EXTINF:-1 tvg-id="AlEtejah.iq",Al-Etejah (576p) [Not 24/7] -https://streaming.aletejahtv.iq:1937/etejah-live/smil:etejah.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlJawadain.iq",Al-Jawadain TV (1080p) [Not 24/7] -https://live.aljawadain.org/live/aljawadaintv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlGhadeer.iq",AlGhadeer (720p) [Not 24/7] -https://asdiuhiu12.myvodu.app:3356/live/Alghadeer/index.m3u8 -#EXTINF:-1 tvg-id="AlkafeelBetweenthetwoholyshrines.iq",Alkafeel: Between the two holy shrines (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot4/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelTheentranceoftheholysanctuary.iq",Alkafeel: The entrance of the holy sanctuary (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot3/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelTheHolyTomb.iq",Alkafeel: The Holy Tomb (360p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot2/manifest.m3u8 -#EXTINF:-1 tvg-id="AlkafeelThewindowofAlKafeel.iq",Alkafeel: The window of Al-Kafeel (720p) [Not 24/7] -https://stream.alkafeel.net/live/alkafeel/rAa5PGot1/manifest.m3u8 -#EXTINF:-1 tvg-id="AmozhgaryTV.iq",Amozhgary TV (1080p) -https://media.streambrothers.com:1936/8248/8248/playlist.m3u8 -#EXTINF:-1 tvg-id="AssyrianANB.iq",Assyrian ANB (720p) [Offline] -https://597f64b67707a.streamlock.net/anbsat.com/anb2/playlist.m3u8 -#EXTINF:-1 tvg-id="AvaEntertainment.iq",Ava Entertainment (720p) [Not 24/7] -https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/playlist.m3u8 -#EXTINF:-1 tvg-id="BabylonTV.iq",Babylon TV (720p) [Offline] -https://iqlivestream.com/live/babylontv.flv -#EXTINF:-1 tvg-id="CihanTV.iq",Cihan TV (576p) [Not 24/7] -http://cdn.liveshell.net:1935/live/cihann/playlist.m3u8 -#EXTINF:-1 tvg-id="Dijlah.iq",Dijlah (1080p) -http://91.134.145.75:10001/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="Dijlah.iq",Dijlah (1080p) -https://ghaasiflu.online/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="DijlahTarab.iq",Dijlah Tarab (576p) [Not 24/7] -https://ghaasiflu.online/tarab/index.m3u8 -#EXTINF:-1 tvg-id="DuaTV.iq",Dua TV (720p) [Not 24/7] -https://live.ishiacloud.com/W67H7ddMzVHyXPrG.m3u8 -#EXTINF:-1 tvg-id="GaliKurdistan.iq",Gali Kurdistan (760p) [Not 24/7] -http://51.75.66.91:8080/gksat.mp4 -#EXTINF:-1 tvg-id="ImamHusseinTV1Farsi.iq",Imam Hussein TV 1 Farsi (360p) -https://live.imamhossaintv.com/live/ih1.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq",Imam Hussein TV 2 Arabic (360p) -https://ar.imamhusseintv.com/live/ih201/index.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq",Imam Hussein TV 2 Arabic (360p) -https://live.imamhossaintv.com/live/ih2.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV3English.iq",Imam Hussein TV 3 English (360p) -https://live.imamhossaintv.com/live/ih3.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq",Imam Hussein TV 4 Urdu (360p) -https://live.imamhossaintv.com/live/ih4.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq",Imam Hussein TV 4 Urdu (720p) -https://ur.imamhusseintv.com/live/ih4.m3u8 -#EXTINF:-1 tvg-id="",iNEWS (1080p) [Not 24/7] -https://svs.itworkscdn.net/inewsiqlive/inewsiq.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Iraq24.iq",Iraq 24 (1080p) [Not 24/7] -https://113483.global.ssl.fastly.net/edge-en/ngrp:live_31b220e0e20611eab1b9cfce247e5d5f_all/index.m3u8 -#EXTINF:-1 tvg-id="IraqFuture.iq",Iraq Future (576p) -https://streaming.viewmedia.tv/viewsatstream40/viewsatstream40.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IraqiaSport.iq",Iraqia Sport (1080p) [Geo-blocked] -https://au7live.tooliserver.com/live/149075_0.m3u8?session= -#EXTINF:-1 tvg-id="IshtarTV.iq",Ishtar TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://vimeo.com/event/1243782 -#EXTINF:-1 tvg-id="KarbalaTV.iq",Karbala TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/karbalaatv/live -#EXTINF:-1 tvg-id="KirkukTV.iq",Kirkuk TV (576p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/IHTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Kurdistan24.iq",Kurdistan 24 (720p) -https://d1x82nydcxndze.cloudfront.net/live/index.m3u8 -#EXTINF:-1 tvg-id="KurdistanTV.iq",Kurdistan TV (720p) [Not 24/7] -https://5a3ed7a72ed4b.streamlock.net/live/SMIL:myStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxSorani.iq",KurdMax (1080p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxMusic.iq",KurdMax Music (720p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/music/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxShow.iq",KurdMax Show (720p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:SHOW1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdMaxKurmanci.iq",KurdMax Sorani (240p) [Not 24/7] -https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="",KurdSat (720p) -http://ikomg2.s.llnwi.net/kurdsathd/playlist.m3u8 -#EXTINF:-1 tvg-id="",KurdSat News (720p) -http://ikomg2.s.llnwi.net/kurdsatnewshd/playlist.m3u8 -#EXTINF:-1 tvg-id="",KurdSat News (1080p) [Not 24/7] -https://ikomg2.mmdlive.lldns.net/ikomg2/107b7df8f5444d778f349100739a09cd/manifest.m3u8 -#EXTINF:-1 tvg-id="NetTV.iq",Net TV (1080p) [Not 24/7] -http://nettvstreampaid.flashmediacast.com:1935/nettvstreampaid/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NetTV.iq",Net TV (1080p) [Not 24/7] -https://live.karwan.tv/karwan.tv/net-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NRTTV.iq",NRT TV (720p) [Not 24/7] -https://media.streambrothers.com:1936/8226/8226/playlist.m3u8 -#EXTINF:-1 tvg-id="PayamTV.iq",Payam TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/PayamTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RudawTV.iq",Rudaw TV (1080p) -https://svs.itworkscdn.net/rudawlive/rudawlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SpedaTV.iq",Speda TV (720p) [Not 24/7] -http://liveshell.net:1935/live/speda084k/playlist.m3u8 -#EXTINF:-1 tvg-id="SterkTV.iq",SterkTV (720p) [Not 24/7] -https://602ccc850c9bb.streamlock.net/sterktv/smil:sterk.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",WAAR TV (720p) [Not 24/7] -https://live.karwan.tv/karwan.tv/waar-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Zagros.iq",Zagros (720p) [Not 24/7] -https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8 diff --git a/streams/ir.m3u b/streams/ir.m3u deleted file mode 100644 index 0ed6630fa..000000000 --- a/streams/ir.m3u +++ /dev/null @@ -1,235 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",1TvPersian (720p) [Not 24/7] -https://1-215-11778-1.b.cdn13.com/onetvpersia001.m3u8 -#EXTINF:-1 tvg-id="",4U TV (480p) [Not 24/7] -http://116.202.255.113:1935/4utv/livesd/playlist.m3u8 -#EXTINF:-1 tvg-id="",4U TV (720p) [Not 24/7] -http://116.202.255.113:1935/4utv/livehd/playlist.m3u8 -#EXTINF:-1 tvg-id="AFNTV.ir",AFN TV (720p) [Not 24/7] -https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8 -#EXTINF:-1 tvg-id="AlAlam.ir",Al Alam (360p) [Not 24/7] -https://live2.alalam.ir/alalam.m3u8 -#EXTINF:-1 tvg-id="",Al Kawthar TV (240p) [Not 24/7] -http://178.252.143.156:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="AlWilayah.ir",Al Wilayah (720p) [Not 24/7] -https://nl.livekadeh.com/hls2/alwilayah.tv.m3u8 -#EXTINF:-1 tvg-id="AlZahraTV.ir",Al Zahra TV (720p) [Not 24/7] -https://live.al-zahratv.com/live/playlist2/index.m3u8 -#EXTINF:-1 tvg-id="AVAFamily.ir",AVA Family (720p) [Not 24/7] -http://51.210.199.5/hls/stream.m3u8 -#EXTINF:-1 tvg-id="AVASeries.ir",AVA Series (720p) -http://51.210.199.4/hls/stream.m3u8 -#EXTINF:-1 tvg-id="AyenehTV.ir",Ayeneh TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BeitolAbbasTV.ir",BeitolAbbas TV (720p) [Not 24/7] -http://live.beitolabbas.tv/live/beitolabbastv.m3u8 -#EXTINF:-1 tvg-id="CaltexTV.ir",Caltex TV (720p) [Not 24/7] -https://vid1.caltexmusic.com/hls/caltextv.m3u8 -#EXTINF:-1 tvg-id="CanadaStarTV.ir",Canada Star TV (360p) [Offline] -https://live.livestreamtv.ca/canadastartv/smil:canadastartv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel1.ir",Channel 1 (480p) [Not 24/7] -https://2nbyjjx7y53k-hls-live.5centscdn.com/cls040317/0070c5b7ef083bdc8de09065c61a34d8.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DiyarTV.ir",Diyar TV (720p) [Not 24/7] -http://51.210.199.28/hls/stream.m3u8 -#EXTINF:-1 tvg-id="EBC1TV.ir",EBC1 TV (720p) [Geo-blocked] -https://vsn1-cdn-phx.icastcenter.com/EBC1/EBC1/playlist.m3u8 -#EXTINF:-1 tvg-id="EcranTV.ir",Ecran TV (720p) [Not 24/7] -http://51.210.199.40/hls/stream.m3u8 -#EXTINF:-1 tvg-id="EkranMovie.ir",Ekran Movie (720p) [Offline] -http://159.69.58.154/ekran/ekrantv.m3u8 -#EXTINF:-1 tvg-id="FarazTV.ir",Faraz TV (720p) [Not 24/7] -https://faraztv.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="FARS.ir",FARS (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:fars/playlist.m3u8 -#EXTINF:-1 tvg-id="Film1.ir",Film 1 (720p) [Offline] -http://159.69.58.154/film1/film1tv.m3u8 -#EXTINF:-1 tvg-id="GEM24b.ir",GEM 24b (1080p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/24b/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMAcademy.ir",GEM Academy (540p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/gem_usa/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMArabia.ir",GEM Arabia (576p) [Not 24/7] -http://216.66.42.47:7777/GemArabia_HD.m3u8 -#EXTINF:-1 tvg-id="GEMAZ.ir",GEM AZ (576p) [Not 24/7] -http://216.66.42.47:7777/GemAZ_HD.m3u8 -#EXTINF:-1 tvg-id="GEMBollywood.ir",GEM Bollywood (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gembollywood/index.m3u8 -#EXTINF:-1 tvg-id="GEMClassic.ir",GEM Classic (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemclassic/index.m3u8 -#EXTINF:-1 tvg-id="GEMComedy.ir",GEM Comedy (576p) [Not 24/7] -http://216.66.42.47:7777/GemComedy_HD.m3u8 -#EXTINF:-1 tvg-id="GEMCrypto.ir",GEM Crypto (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemcrypto/index.m3u8 -#EXTINF:-1 tvg-id="GEMDrama.ir",GEM Drama (360p) [Timeout] -http://65.21.196.79/gem_drama/master.m3u8 -#EXTINF:-1 tvg-id="GEMFilm.ir",GEM Film (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemfilm/index.m3u8 -#EXTINF:-1 tvg-id="GEMFit.ir",GEM Fit (360p) [Timeout] -http://65.21.196.79/30tv/master.m3u8 -#EXTINF:-1 tvg-id="GEMFood.ir",GEM Food (360p) [Timeout] -http://65.21.196.79/gem_food/master.m3u8 -#EXTINF:-1 tvg-id="GEMJunior.ir",GEM Junior (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemjunior/index.m3u8 -#EXTINF:-1 tvg-id="GEMKids.ir",GEM Kids (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemkids/index.m3u8 -#EXTINF:-1 tvg-id="GEMLatino.ir",GEM Latino (540p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/gem_latino/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMLifeTV.ir",GEM Life (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemlife/index.m3u8 -#EXTINF:-1 tvg-id="GEMMaxx.ir",GEM Maxx (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemmaxx/index.m3u8 -#EXTINF:-1 tvg-id="GEMMifa.ir",GEM Mifa (360p) [Timeout] -http://65.21.196.79/mifa/master.m3u8 -#EXTINF:-1 tvg-id="GEMModernEconomy.ir",GEM Modern Economy (540p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/modern_economy/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMNature.ir",GEM Nature (360p) [Timeout] -http://65.21.196.79/gem_nature/master.m3u8 -#EXTINF:-1 tvg-id="GEMOnyx.ir",GEM Onyx (1080p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/onyx/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMProperty.ir",GEM Property (540p) [Geo-blocked] -https://d2e40kvaojifd6.cloudfront.net/stream/gem_property/playlist.m3u8 -#EXTINF:-1 tvg-id="GEMRiver.ir",GEM River (360p) [Timeout] -http://65.21.196.79/gem_river/master.m3u8 -#EXTINF:-1 tvg-id="GEMRubix.ir",GEM Rubix (576p) [Offline] -https://stream-cdn.gemonline.tv/live/rubix/index.m3u8 -#EXTINF:-1 tvg-id="GEMSeries.ir",GEM Series (360p) [Not 24/7] -http://65.21.196.79/gem_series/master.m3u8 -#EXTINF:-1 tvg-id="GEMTravel.ir",GEM Travel (576p) [Offline] -https://stream-cdn.gemonline.tv/live/gemtravel/index.m3u8 -#EXTINF:-1 tvg-id="GEMTv.ir",GEM Tv (360p) [Not 24/7] -http://65.21.196.79/gem_tv/master.m3u8 -#EXTINF:-1 tvg-id="GOLESTAN.ir",GOLESTAN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:golestan/playlist.m3u8 -#EXTINF:-1 tvg-id="HastiTV.ir",Hasti TV (1080p) -https://live.hastitv.com/hls/livetv.m3u8 -#EXTINF:-1 tvg-id="",HispanTV (480p) -https://live1.presstv.ir/live/hispan.m3u8 -#EXTINF:-1 tvg-id="",HispanTV (480p) -https://live.presstv.ir/live/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HodHodTV.ir",HodHod TV (720p) -http://51.210.199.12/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IcnetTV.ir",Icnet TV (720p) [Not 24/7] -http://51.210.199.7/hls/stream.m3u8 -#EXTINF:-1 tvg-id="iFILM.ir",iFILM (720p) [Not 24/7] -https://live.presstv.ir/ifilmlive/smil:ifilmtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",iFILM Arabic (720p) -https://live.presstv.ir/ifilmlive/smil:ifilmar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",iFILM English (480p) [Geo-blocked] -https://live1.presstv.ir/live/ifilmen.m3u8 -#EXTINF:-1 tvg-id="iFILMPersian2.ir",iFILM Persian 2 (480p) [Not 24/7] -https://live1.presstv.ir/live/ifilm2.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV.ir",Imam Hussein TV 1 (360p) -https://live.imamhossaintv.com/live/ih103/index.m3u8 -#EXTINF:-1 tvg-id="ImamHusseinTV.ir",Imam Hussein TV (720p) -https://fa.imamhusseintv.com/live/ih1.m3u8 -#EXTINF:-1 tvg-id="INTVSimayeAzadi.ir",INTV Simaye Azadi (1080p) -https://sima-i.akamaihd.net/hls/live/624111/sima/index.m3u8 -#EXTINF:-1 tvg-id="IranBeauty.ir",Iran Beauty (720p) [Not 24/7] -http://51.210.199.57/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IraneAryaee.ir",Irane Aryaee (480p) [Offline] -http://159.69.58.154/irane_arya/irane_arya.m3u8 -#EXTINF:-1 tvg-id="ITN.ir",ITN (720p) [Not 24/7] -http://51.210.199.31/hls/stream.m3u8 -#EXTINF:-1 tvg-id="iToon.ir",iToon (360p) [Offline] -http://159.69.58.154/itoon/master.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.ir" status="online",Kalemeh TV (1080p) [Not 24/7] -https://live.kalemehtv.tv/live/ngrp:kalemeh_all/playlist.m3u8 -#EXTINF:-1 tvg-id="KhaterehTV.ir",Khatereh TV (368p) [Geo-blocked] -https://5caf24a595d94.streamlock.net:1937/8130/8130/playlist.m3u8 -#EXTINF:-1 tvg-id="Manoto.ir",Manoto TV (1080p) -https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 -#EXTINF:-1 tvg-id="Marjaeyat.ir",Marjaeyat (1080p) [Not 24/7] -https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8 -#EXTINF:-1 tvg-id="MihanTV.ir",Mihan TV (360p) [Not 24/7] -https://iptv.mihantv.com/live/playlist1/index.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) -http://204.11.235.251:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) -https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MonoTV.ir",Mono TV (720p) [Offline] -http://51.210.227.137/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Music1.ir",Music 1 [Offline] -http://159.69.58.154/music1/music1_tv.m3u8 -#EXTINF:-1 tvg-id="NAVAHANG.ir",NAVAHANG (720p) -http://51.210.227.130/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Nour.ir",Nour (720p) [Not 24/7] -https://cdn.videoevent.live:19360/elfaro4/elfaro4.m3u8 -#EXTINF:-1 tvg-id="OmideIran.ir",Omide Iran (720p) [Not 24/7] -http://51.210.199.38/hls/stream.m3u8 -#EXTINF:-1 tvg-id="OXIRTV.ir",OXIR TV (720p) [Offline] -http://51.210.199.36/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ParnianTV.ir",Parnian TV (1080p) [Not 24/7] -https://live2.parnian.tv/hls/live/play.m3u8 -#EXTINF:-1 tvg-id="ParsTV.ir",Pars TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls032817/18e2bf34e2035dbabf48ee2db66405ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="Parsiland.ir",Parsiland (540p) [Not 24/7] -http://vps.parsiland.net/hls/ParsiLand.m3u8 -#EXTINF:-1 tvg-id="PayamJavanTV.ir",Payam Javan TV (720p) [Not 24/7] -https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="PayvandTV.ir",Payvand TV (720p) [Not 24/7] -https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8 -#EXTINF:-1 tvg-id="PBCTapeshTV.ir",PBC Tapesh TV (720p) [Not 24/7] -http://iptv.tapesh.tv/tapesh/playlist.m3u8 -#EXTINF:-1 tvg-id="PersianBazar.ir",Persian Bazar (720p) [Not 24/7] -https://stream.persiantv1.com/ptv1/playlist1/index.m3u8 -#EXTINF:-1 tvg-id="PersianFilm.ir",Persian Film (720p) [Not 24/7] -http://51.210.227.135/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PMC.ir",PMC (1080p) -https://hls.pmchd.live/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PMCRoyale.ir",PMC Royale (720p) [Not 24/7] -http://51.210.199.29/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PressTV.ir",Press TV English (720p) -https://live.presstv.ir/liveprs/smil:liveprs/playlist.m3u8 -#EXTINF:-1 tvg-id="PressTV.ir",Press TV French (1080p) [Not 24/7] -https://live1.presstv.ir/live/presstvfr/index.m3u8 -#EXTINF:-1 tvg-id="",QAZVIN (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFarda.ir",Radio Farda (576p) [Not 24/7] -https://rfe-lh.akamaihd.net/i/rfe_tvmc1@383622/master.m3u8 -#EXTINF:-1 tvg-id="RadioJavanTV.ir",Radio Javan TV (1080p) [Not 24/7] -https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RangarangTV.ir",Rangarang TV (720p) [Not 24/7] -https://iptv.rangarang.us/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (240p) -http://cdn1.live.irib.ir:1935/epg-live/smil:sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="Sahar.ir",Sahar (480p) -http://cdnlive.irib.ir/live-channels/smil:sahar3/playlist.m3u8 -#EXTINF:-1 tvg-id="",SAHAR KURDI (576p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/56 -#EXTINF:-1 tvg-id="SalamTV.ir",Salam TV (720p) -https://iptv.salaamtv.org/salaam/playlist.m3u8 -#EXTINF:-1 tvg-id="SepanjTV.ir",Sepanj TV (720p) [Not 24/7] -http://51.210.199.30/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SL1.ir",SL 1 (720p) -http://51.210.199.3/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SL2.ir",SL 2 (720p) -http://51.210.199.2/hls/stream.m3u8 -#EXTINF:-1 tvg-id="SNN.ir",SNN TV (720p) [Not 24/7] -https://live.snn.ir/hls/snn/index.m3u8 -#EXTINF:-1 tvg-id="T2TV.ir",T2 TV (720p) [Not 24/7] -http://208.113.204.104:8123/live/tapesh-live-stream/index.m3u8 -#EXTINF:-1 tvg-id="Tapesh2Movies.ir",Tapesh 2 Movies (720p) [Not 24/7] -http://159.69.58.154/t2_movies/master.m3u8 -#EXTINF:-1 tvg-id="TBNNejatTV.ir",TBN Nejat TV (540p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266913/live.m3u8 -#EXTINF:-1 tvg-id="TehranTV24.ir",TehranTV 24 (720p) -http://51.210.227.132/hls/stream.m3u8 -#EXTINF:-1 tvg-id="TinTV.ir",Tin TV (720p) [Not 24/7] -https://bozztv.com/1gbw5/tintv/tintv/playlist.m3u8 -#EXTINF:-1 tvg-id="Toonix.ir",Toonix (720p) [Not 24/7] -http://51.210.227.134/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Valiasr.ir",Valiasr (480p) [Offline] -https://ir13.livekadeh.com/hls2/valiasr.m3u8 -#EXTINF:-1 tvg-id="",Varzesh (1080p) -http://cdn1.live.irib.ir:1935/channel-live/smil:varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="",VARZESH (1080p) -http://cdn1.live.irib.ir:1935/live-channels/smil:varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="VarzeshTVFarsi.ir",Varzesh TV Farsi (720p) [Not 24/7] -http://51.210.199.16/hls/stream.m3u8 -#EXTINF:-1 tvg-id="VOX1.ir",VOX1 (720p) [Not 24/7] -http://51.210.199.8/hls/stream.m3u8 -#EXTINF:-1 tvg-id="VOX2.ir",VOX2 (720p) [Not 24/7] -http://51.210.199.9/hls/stream.m3u8 -#EXTINF:-1 tvg-id="YourTimeTV.ir",YourTime TV (720p) [Not 24/7] -https://hls.yourtime.live/hls/stream.m3u8 diff --git a/streams/ir_telewebion.m3u b/streams/ir_telewebion.m3u deleted file mode 100644 index a63d9c859..000000000 --- a/streams/ir_telewebion.m3u +++ /dev/null @@ -1,207 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABADAN.ir",ABADAN (576p) -https://sdm.telewebion.com/live/abadan/playlist.m3u8 -#EXTINF:-1 tvg-id="ABADAN.ir",ABADAN (576p) [Timeout] -https://sdw.telewebion.com/live/abadan/playlist.m3u8 -#EXTINF:-1 tvg-id="AFLAK.ir",AFLAK (240p) [Timeout] -https://sdw.telewebion.com/live/aflak/playlist.m3u8 -#EXTINF:-1 tvg-id="AFLAK.ir",AFLAK (576p) -https://sdm.telewebion.com/live/aflak/playlist.m3u8 -#EXTINF:-1 tvg-id="AFTAB.ir",AFTAB (576p) -https://sdm.telewebion.com/live/aftab/playlist.m3u8 -#EXTINF:-1 tvg-id="AFTAB.ir",AFTAB (576p) [Timeout] -https://sdw.telewebion.com/live/aftab/playlist.m3u8 -#EXTINF:-1 tvg-id="ALBORZ.ir",ALBORZ (576p) -https://sdm.telewebion.com/live/alborz/playlist.m3u8 -#EXTINF:-1 tvg-id="ALBORZ.ir",ALBORZ (576p) [Timeout] -https://sdw.telewebion.com/live/alborz/playlist.m3u8 -#EXTINF:-1 tvg-id="AMOOZESH.ir",AMOOZESH (576p) -https://sdm.telewebion.com/live/amouzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="AMOOZESH.ir",AMOOZESH (576p) -https://sdw.telewebion.com/live/amouzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir",Azarbayjan Gharbi (576p) -https://sdw.telewebion.com/live/azarbayjangharbi/playlist.m3u8 -#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir",Azarbayjan Gharbi (576p) [Timeout] -https://sdm.telewebion.com/live/azarbayjangharbi/playlist.m3u8 -#EXTINF:-1 tvg-id="Baran.ir",Baran (576p) -https://sdm.telewebion.com/live/baran/playlist.m3u8 -#EXTINF:-1 tvg-id="Baran.ir",Baran (576p) -https://sdw.telewebion.com/live/baran/playlist.m3u8 -#EXTINF:-1 tvg-id="Bushehr.ir",Bushehr (576p) [Not 24/7] -https://sdm.telewebion.com/live/bushehr/playlist.m3u8 -#EXTINF:-1 tvg-id="Bushehr.ir",Bushehr (576p) [Not 24/7] -https://sdw.telewebion.com/live/bushehr/playlist.m3u8 -#EXTINF:-1 tvg-id="Dena.ir",Dena (576p) -https://sdw.telewebion.com/live/dena/playlist.m3u8 -#EXTINF:-1 tvg-id="Dena.ir",Dena (576p) [Timeout] -https://sdm.telewebion.com/live/dena/playlist.m3u8 -#EXTINF:-1 tvg-id="ESFAHAN.ir",ESFAHAN (576p) -https://sdw.telewebion.com/live/esfahan/playlist.m3u8 -#EXTINF:-1 tvg-id="ESFAHAN.ir",ESFAHAN (576p) [Timeout] -https://sdm.telewebion.com/live/esfahan/playlist.m3u8 -#EXTINF:-1 tvg-id="ESHRAGH.ir",ESHRAGH (576p) -https://sdm.telewebion.com/live/eshragh/playlist.m3u8 -#EXTINF:-1 tvg-id="ESHRAGH.ir",ESHRAGH (576p) [Timeout] -https://sdw.telewebion.com/live/eshragh/playlist.m3u8 -#EXTINF:-1 tvg-id="FARS.ir",FARS (576p) -https://sdw.telewebion.com/live/fars/playlist.m3u8 -#EXTINF:-1 tvg-id="FARS.ir",FARS (576p) [Timeout] -https://sdm.telewebion.com/live/fars/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMEDAN.ir",HAMEDAN (576p) -https://sdm.telewebion.com/live/sina/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMEDAN.ir",HAMEDAN (576p) -https://sdw.telewebion.com/live/sina/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMOON.ir",HAMOON (576p) -https://sdm.telewebion.com/live/hamoon/playlist.m3u8 -#EXTINF:-1 tvg-id="HAMOON.ir",HAMOON (576p) -https://sdw.telewebion.com/live/hamoon/playlist.m3u8 -#EXTINF:-1 tvg-id="ILAM.ir",ILAM (576p) -https://sdm.telewebion.com/live/ilam/playlist.m3u8 -#EXTINF:-1 tvg-id="ILAM.ir",ILAM (576p) -https://sdw.telewebion.com/live/ilam/playlist.m3u8 -#EXTINF:-1 tvg-id="IRANKALA.ir",IRANKALA (576p) [Not 24/7] -https://sdw.telewebion.com/live/irankala/playlist.m3u8 -#EXTINF:-1 tvg-id="IRANKALA.ir",IRANKALA (576p) [Timeout] -https://sdm.telewebion.com/live/irankala/playlist.m3u8 -#EXTINF:-1 tvg-id="IRINN.ir",IRINN (1080p) [Not 24/7] -https://sdm.telewebion.com/live/irinn/playlist.m3u8 -#EXTINF:-1 tvg-id="IRINN.ir",IRINN (1080p) [Timeout] -https://sdw.telewebion.com/live/irinn/playlist.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (576p) -https://sdm.telewebion.com/live/jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="JAHANBIN.ir",JAHANBIN (576p) [Timeout] -https://sdw.telewebion.com/live/jahanbin/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMAN.ir",KERMAN (576p) -https://sdm.telewebion.com/live/kerman/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMAN.ir",KERMAN (576p) -https://sdw.telewebion.com/live/kerman/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMANSHAH.ir",KERMANSHAH (576p) -https://sdm.telewebion.com/live/zagros/playlist.m3u8 -#EXTINF:-1 tvg-id="KERMANSHAH.ir",KERMANSHAH (576p) [Timeout] -https://sdw.telewebion.com/live/zagros/playlist.m3u8 -#EXTINF:-1 tvg-id="KHJONOOBI.ir",KH.JONOOBI (576p) -https://sdm.telewebion.com/live/khavaran/playlist.m3u8 -#EXTINF:-1 tvg-id="KHJONOOBI.ir",KH.JONOOBI (576p) [Timeout] -https://sdw.telewebion.com/live/khavaran/playlist.m3u8 -#EXTINF:-1 tvg-id="KHRAZAVI.ir",KH.RAZAVI (576p) -https://sdm.telewebion.com/live/khorasanrazavi/playlist.m3u8 -#EXTINF:-1 tvg-id="KHRAZAVI.ir",KH.RAZAVI (576p) [Not 24/7] -https://sdw.telewebion.com/live/khorasanrazavi/playlist.m3u8 -#EXTINF:-1 tvg-id="KHSHOMALI.ir",KH.SHOMALI (576p) -https://sdw.telewebion.com/live/atrak/playlist.m3u8 -#EXTINF:-1 tvg-id="KHSHOMALI.ir",KH.SHOMALI (576p) [Not 24/7] -https://sdm.telewebion.com/live/atrak/playlist.m3u8 -#EXTINF:-1 tvg-id="KHALIJEFARS.ir",KHALIJEFARS (576p) [Not 24/7] -https://sdm.telewebion.com/live/khalijefars/playlist.m3u8 -#EXTINF:-1 tvg-id="KHALIJEFARS.ir",KHALIJEFARS (576p) [Not 24/7] -https://sdw.telewebion.com/live/khalijefars/playlist.m3u8 -#EXTINF:-1 tvg-id="KHOOZESTAN.ir",KHOOZESTAN (576p) -https://sdm.telewebion.com/live/khoozestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KHOOZESTAN.ir",KHOOZESTAN (576p) [Not 24/7] -https://sdw.telewebion.com/live/khoozestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KISH.ir",KISH (576p) -https://sdm.telewebion.com/live/kish/playlist.m3u8 -#EXTINF:-1 tvg-id="KISH.ir",KISH (576p) [Timeout] -https://sdw.telewebion.com/live/kish/playlist.m3u8 -#EXTINF:-1 tvg-id="KORDESTAN.ir",KORDESTAN (576p) -https://sdm.telewebion.com/live/kordestan/playlist.m3u8 -#EXTINF:-1 tvg-id="KORDESTAN.ir",KORDESTAN (576p) -https://sdw.telewebion.com/live/kordestan/playlist.m3u8 -#EXTINF:-1 tvg-id="MAHABAD.ir",MAHABAD (576p) -https://sdm.telewebion.com/live/mahabad/playlist.m3u8 -#EXTINF:-1 tvg-id="MAHABAD.ir",MAHABAD (576p) -https://sdw.telewebion.com/live/mahabad/playlist.m3u8 -#EXTINF:-1 tvg-id="",MAZANDARAN (576p) -https://sdm.telewebion.com/live/tabarestan/playlist.m3u8 -#EXTINF:-1 tvg-id="",MAZANDARAN (576p) -https://sdw.telewebion.com/live/tabarestan/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSTANAD.ir",MOSTANAD (480p) [Timeout] -https://sdm.telewebion.com/live/mostanad/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSTANAD.ir",MOSTANAD (1080p) -https://sdw.telewebion.com/live/mostanad/playlist.m3u8 -#EXTINF:-1 tvg-id="NAMAYESH.ir",NAMAYESH (1080p) -https://sdm.telewebion.com/live/namayesh/playlist.m3u8 -#EXTINF:-1 tvg-id="NAMAYESH.ir",NAMAYESH (1080p) [Timeout] -https://sdw.telewebion.com/live/namayesh/playlist.m3u8 -#EXTINF:-1 tvg-id="",NASIM (1080p) -https://sdm.telewebion.com/live/nasim/playlist.m3u8 -#EXTINF:-1 tvg-id="",NASIM (1080p) [Timeout] -https://sdw.telewebion.com/live/nasim/playlist.m3u8 -#EXTINF:-1 tvg-id="Noor.ir",Noor (576p) -https://sdw.telewebion.com/live/noor/playlist.m3u8 -#EXTINF:-1 tvg-id="Noor.ir",Noor (576p) [Timeout] -https://sdm.telewebion.com/live/noor/playlist.m3u8 -#EXTINF:-1 tvg-id="",OFOGH (1080p) [Not 24/7] -https://sdm.telewebion.com/live/ofogh/playlist.m3u8 -#EXTINF:-1 tvg-id="",OFOGH (1080p) [Not 24/7] -https://sdw.telewebion.com/live/ofogh/playlist.m3u8 -#EXTINF:-1 tvg-id="OMID.ir",OMID (576p) -https://sdm.telewebion.com/live/omid/playlist.m3u8 -#EXTINF:-1 tvg-id="OMID.ir",OMID (576p) -https://sdw.telewebion.com/live/omid/playlist.m3u8 -#EXTINF:-1 tvg-id="POUYA.ir",POUYA (720p) -https://sdw.telewebion.com/live/pooya/playlist.m3u8 -#EXTINF:-1 tvg-id="POUYA.ir",POUYA (1080p) -https://sdm.telewebion.com/live/pooya/playlist.m3u8 -#EXTINF:-1 tvg-id="",QAZVIN (576p) -https://sdw.telewebion.com/live/qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="",QAZVIN (576p) [Timeout] -https://sdm.telewebion.com/live/qazvin/playlist.m3u8 -#EXTINF:-1 tvg-id="QURAN.ir",QURAN (576p) -https://sdw.telewebion.com/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="QURAN.ir",QURAN (576p) [Timeout] -https://sdm.telewebion.com/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="",SABALAN (576p) -https://sdm.telewebion.com/live/sabalan/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (576p) -https://sdm.telewebion.com/live/sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="SAHAND.ir",SAHAND (576p) -https://sdw.telewebion.com/live/sahand/playlist.m3u8 -#EXTINF:-1 tvg-id="SALAMAT.ir",SALAMAT (576p) -https://sdw.telewebion.com/live/salamat/playlist.m3u8 -#EXTINF:-1 tvg-id="SALAMAT.ir",SALAMAT (576p) [Timeout] -https://sdm.telewebion.com/live/salamat/playlist.m3u8 -#EXTINF:-1 tvg-id="SEMNAN.ir",SEMNAN (576p) -https://sdm.telewebion.com/live/semnan/playlist.m3u8 -#EXTINF:-1 tvg-id="SEMNAN.ir",SEMNAN (576p) -https://sdw.telewebion.com/live/semnan/playlist.m3u8 -#EXTINF:-1 tvg-id="",SEPEHR (576p) -https://sdm.telewebion.com/live/sepehr/playlist.m3u8 -#EXTINF:-1 tvg-id="",SEPEHR (576p) -https://sdw.telewebion.com/live/sepehr/playlist.m3u8 -#EXTINF:-1 tvg-id="",SHOMA (576p) -https://sdm.telewebion.com/live/shoma/playlist.m3u8 -#EXTINF:-1 tvg-id="",SHOMA (576p) -https://sdw.telewebion.com/live/shoma/playlist.m3u8 -#EXTINF:-1 tvg-id="",TAMASHA (1080p) -https://sdw.telewebion.com/live/hdtest/playlist.m3u8 -#EXTINF:-1 tvg-id="",TAMASHA (1080p) [Timeout] -https://sdm.telewebion.com/live/hdtest/playlist.m3u8 -#EXTINF:-1 tvg-id="TV1.ir",TV1 (1080p) [Not 24/7] -https://sdm.telewebion.com/live/tv1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV1.ir",TV1 (1080p) [Timeout] -https://sdw.telewebion.com/live/tv1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2.ir",TV2 (576p) -https://sdm.telewebion.com/live/tv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TV2.ir",TV2 (576p) -https://sdw.telewebion.com/live/tv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TV3.ir",TV3 (360p) [Not 24/7] -https://sdm.telewebion.com/live/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TV3.ir",TV3 (1080p) [Not 24/7] -https://sdw.telewebion.com/live/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TV4.ir",TV4 (576p) -https://sdm.telewebion.com/live/tv4/playlist.m3u8 -#EXTINF:-1 tvg-id="TV4.ir",TV4 (576p) -https://sdw.telewebion.com/live/tv4/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ir",TV5 (576p) -https://sdm.telewebion.com/live/tehran/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ir",TV5 (576p) -https://sdw.telewebion.com/live/tehran/playlist.m3u8 -#EXTINF:-1 tvg-id="",VARZESH (1080p) [Not 24/7] -https://sdw.telewebion.com/live/varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="",VARZESH (1080p) [Timeout] -https://sdm.telewebion.com/live/varzesh/playlist.m3u8 -#EXTINF:-1 tvg-id="YAZD.ir",YAZD (576p) -https://sdm.telewebion.com/live/taban/playlist.m3u8 -#EXTINF:-1 tvg-id="YAZD.ir",YAZD (576p) [Not 24/7] -https://sdw.telewebion.com/live/taban/playlist.m3u8 diff --git a/streams/is.m3u b/streams/is.m3u deleted file mode 100644 index 205d62922..000000000 --- a/streams/is.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="N4.is",N4 (720p) -https://live.tv.c.is/n4/index.m3u8 -#EXTINF:-1 tvg-id="RUV2.is",RÚV 2 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/iceland/ruv2 -#EXTINF:-1 tvg-id="RUV.is",RÚV (360p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/iceland/ruv diff --git a/streams/it.m3u b/streams/it.m3u deleted file mode 100644 index ca74a996c..000000000 --- a/streams/it.m3u +++ /dev/null @@ -1,491 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="12TVParma.it",12 TV Parma (540p) [Not 24/7] -https://5929b138b139d.streamlock.net/12TVParma/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="20Mediaset.it",20 Mediaset [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(lb)/index.m3u8 -#EXTINF:-1 tvg-id="51RadioTV.it",51 Radio TV (480p) [Geo-blocked] -http://wms.shared.streamshow.it/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="A2itv.it",A2itv (1080p) [Not 24/7] -https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (720p) [Not 24/7] -https://tsw.streamingwebtv24.it:1936/abchanneltv/abchanneltv/playlist.m3u8 -#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (768p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/abchannel/abchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmaTV.it",Alma TV (576p) [Timeout] -http://151.0.207.99:1935/AlmaTv/AlmaTv/playlist.m3u8 -#EXTINF:-1 tvg-id="AltoAdigeTV.it",Alto Adige TV (720p) -https://5f204aff97bee.streamlock.net/AltoAdigeTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="AntennaTreVeneto.it",Antenna Tre Veneto (480p) [Geo-blocked] -https://59d8c0cee6f3d.streamlock.net/antennatreveneto/antennatreveneto.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AuroraArte.it",Aurora Arte (480p) -https://59d7d6f47d7fc.streamlock.net/auroraarte/auroraarte/playlist.m3u8 -#EXTINF:-1 tvg-id="AzzurraTV.it",Azzurra TV (576p) [Not 24/7] -https://sb.top-ix.org/avtvlive/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="Bike.it",Bike (720p) [Timeout] -http://backup.superstreaming.inaria.me/BikeSmartMobilityDTT/playlist.m3u8 -#EXTINF:-1 tvg-id="BoingFrance.it",Boing France (720p) [Not 24/7] -http://flusonic-1.platinum-tv.com/boing/index.m3u8?token=test -#EXTINF:-1 tvg-id="BoingSpain.it",Boing Spain [Offline] -http://149.62.177.157:8000/play/a010 -#EXTINF:-1 tvg-id="CafeTV24.it",CafeTV24 (720p) -https://srvx1.selftv.video/cafe/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CafeTV24.it",CafèTV24 (720p) -http://srv3.meway.tv:1957/cafe/live/playlist.m3u8 -#EXTINF:-1 tvg-id="CameradeiDeputativiaRR.it",Camera dei Deputati (via RR) (240p) -https://video-ar.radioradicale.it/diretta/camera2/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale2Altamura.it",Canale 2 Altamura (576p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/canale2/canale2/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale5.it",Canale 5 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(C5)/index.m3u8 -#EXTINF:-1 tvg-id="Canale7.it",Canale 7 (480p) -http://wms.shared.streamshow.it/canale7/canale7/playlist.m3u8 -#EXTINF:-1 tvg-id="",CANALE 7 (480p) -http://wms.shared.streamshow.it/canale7/mp4:canale7/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale8.it",Canale 8 (480p) -http://wms.shared.streamshow.it/canale8/canale8/playlist.m3u8 -#EXTINF:-1 tvg-id="",CANALE 8 (480p) -http://wms.shared.streamshow.it/canale8/mp4:canale8/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale10.it",Canale 10 (540p) [Not 24/7] -http://37.187.142.147:1935/ch10live/high.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Canale10Ostia.it",Canale 10 Ostia (540p) [Not 24/7] -http://canale10.cloud:1935/ch10live/high.stream/master.m3u8 -#EXTINF:-1 tvg-id="Canale21Lazio.it",Canale 21 Lazio (480p) [Not 24/7] -https://stream.mariatvcdn.com/canaleventuno/f5d2060b3682e0dfffd5b2f18e935ad3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CanaleItalia83.it",Canale Italia 83 (576p) [Not 24/7] -http://ovp-live.akamaized.net/ac024_live/video1/playlist.m3u8 -#EXTINF:-1 tvg-id="CarinaTV.it",Carina TV (720p) -http://wms.shared.streamshow.it/carinatv/carinatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CarinaTV.it",Carina TV (720p) -http://wms.shared.streamshow.it/carinatv/mp4:carinatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cine34.it",Cine 34 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(b6)/index.m3u8 -#EXTINF:-1 tvg-id="ClassCNBC.it",Class CNBC (576p) -https://streamcdnb10-859c1818ed614cc5b0047439470927b0.msvdn.net/live/S76890577/tDoFkZD3T1Lw/playlist.m3u8 -#EXTINF:-1 tvg-id="CompanyTV.it",Company TV (720p) -http://wma10.fluidstream.net/CompanyTV/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CompanyTV.it",Company TV (720p) -https://5929b138b139d.streamlock.net/CompanyTV/smil:CompanyTV.smil/master.m3u8 -#EXTINF:-1 tvg-id="CusanoItaliaTV.it",Cusano Italia TV (720p) [Not 24/7] -https://stream9.xdevel.com/video0s975363-691/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",DeeJay TV (360p) -https://deejay_tv-lh.akamaihd.net/i/DeejayTv_1@129866/master.m3u8 -#EXTINF:-1 tvg-id="DonnaShopping.it",Donna Shopping (1080p) [Not 24/7] -https://media.streambrothers.com:1936/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="EliveTVBrescia.it",Elive TV Brescia (720p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/elivebresciatv/elivebresciatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EntellaTV.it",Entella TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/EntellaTV/EntellaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperiaTV.it",Esperia TV (480p) -http://wms.shared.streamshow.it/esperiatv/esperiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperiaTV.it",Esperia TV (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/esperiatv/esperiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroIndieMusicChartTV.it",Euro Indie Music Chart TV (360p) -http://178.33.224.197:1935/euroindiemusic/euroindiemusic/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroTV.it",Euro TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/eurotv/eurotv/playlist.m3u8 -#EXTINF:-1 tvg-id="FMITALIA.it",FM ITALIA (404p) [Not 24/7] -https://stream7.xdevel.com/video0s975817-411/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Gold78.it",Gold 78 (1080p) -https://stream2.xdevel.com/video1s86-22/stream/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="GoldTVItalia.it",Gold TV Italia (576p) [Timeout] -http://151.0.207.99:1935/GoldTV/GOLD_17/playlist.m3u8 -#EXTINF:-1 tvg-id="HalowKidsHD.it",Halow Kids HD (480p) [Offline] -http://halowtv.online:8080/HalowTV/FSyzHfEhvb/139 -#EXTINF:-1 tvg-id="HilandoFino.it",Hilando Fino (1080p) [Not 24/7] -http://4k-server-mia.2cdn.eu/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 -#EXTINF:-1 tvg-id="HistoryLab.it",History Lab (270p) [Not 24/7] -https://5929b138b139d.streamlock.net/HistoryLab/livestream/playlis.m3u8 -#EXTINF:-1 tvg-id="IcaroTV.it",Icaro TV (720p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/icarotv/icarotv/playlist.m3u8 -#EXTINF:-1 tvg-id="Iris.it",Iris [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ki)/index.m3u8 -#EXTINF:-1 tvg-id="Italia1.it",Italia 1 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i1)/index.m3u8 -#EXTINF:-1 tvg-id="Italia2.it",Italia 2 (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/italia2/italia2/playlist.m3u8 -#EXTINF:-1 tvg-id="Italia2.it",Italia 2 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i2)/index.m3u8 -#EXTINF:-1 tvg-id="Italia2TV.it",Italia 2 TV (480p) [Geo-blocked] -http://wms.shared.streamshow.it/italia2/mp4:italia2/playlist.m3u8 -#EXTINF:-1 tvg-id="Italia7.it",Italia 7 (576p) [Timeout] -http://151.0.207.99:1935/italia7/italia7/playlist.m3u8 -#EXTINF:-1 tvg-id="IuniorTV.it",Iunior TV (720p) [Not 24/7] -https://5f22d76e220e1.streamlock.net/iuniortv/iuniortv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Juwelo Italia (480p) -https://sdn-global-live-streaming-packager-cache.3qsdn.com/7841/7841_264_live.m3u8 -#EXTINF:-1 tvg-id="KissKissNapoliTV.it",Kiss Kiss Napoli TV (720p) -https://58f12ffd2447a.streamlock.net/KKTVNapoli/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioKissKissItalia.it",Kiss Kiss TV (720p) -https://58f12ffd2447a.streamlock.net/KKTV01/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KissKissTV.it",Kiss Kiss TV (720p) -https://59253971be783.streamlock.net/KissKissTV/KissKissTV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KissKissTV.it",Kiss Kiss TV (1080p) -https://58f12ffd2447a.streamlock.net/KKMulti/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="La5.it",La 5 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ka)/index.m3u8 -#EXTINF:-1 tvg-id="LaCTV.it",La C TV (720p) [Not 24/7] -http://streamcdng3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 -#EXTINF:-1 tvg-id="LaCTV.it",La CTV (720p) [Not 24/7] -http://streamcdnc3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTr3.it",La Tr3 (720p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/eslife/eslife/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTR3Marsala.it",La TR3 Marsala (720p) -https://tsw.streamingwebtv24.it:1936/eslife1/eslife1/playlist.m3u8 -#EXTINF:-1 tvg-id="LazioTV.it",Lazio TV (576p) [Timeout] -http://151.0.207.99:1935/live/LAZIOTV12/playlist.m3u8 -#EXTINF:-1 tvg-id="LiraTV.it",Lira TV (720p) [Not 24/7] -https://5d79ae45bc63b.streamlock.net/Liratv/Liratv/playlist.m3u8 -#EXTINF:-1 tvg-id="LucaniaChannel.it",Lucania Channel (480p) [Not 24/7] -http://wms.shared.streamshow.it/lucaniatv/mp4:lucaniatv/playlist.m3u8 -#EXTINF:-1 tvg-id="m2oTV.it",m2o TV (224p) [Not 24/7] -https://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/master.m3u8 -#EXTINF:-1 tvg-id="MediasetExtra.it",Mediaset Extra [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kq)/index.m3u8 -#EXTINF:-1 tvg-id="NSL.it",NSL (1080p) -https://streannunsec-lh.akamaihd.net/i/tv_1@868496/master.m3u8 -#EXTINF:-1 tvg-id="OndaNovaraTV.it",Onda Novara TV (720p) [Not 24/7] -https://585b674743bbb.streamlock.net/9006/9006/master.m3u8 -#EXTINF:-1 tvg-id="OrlerTV.it",Orler TV (420p) [Not 24/7] -https://w1.mediastreaming.it/orlertv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="OttoFMTV.ch",Otto FM TV (576p) -http://streaming.bitonlive.net:8080/hls/ottofm2/index.m3u8 -#EXTINF:-1 tvg-id="PadrePioTV.it",Padre Pio TV (330p) [Offline] -https://56972e8bd3345.streamlock.net/TRPP_live/smil:bcffcc98-ac2f-4b73-b0a5-ad1bfb96d845_all.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ParadiseTV.it",Paradise TV (720p) [Offline] -https://59ef7ad665d1d.streamlock.net:1443/paradisetv/paradisetv/playlist.m3u8 -#EXTINF:-1 tvg-id="ParolediVita.it",Parole di Vita (720p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Paroledivita/Paroledivita/playlist.m3u8 -#EXTINF:-1 tvg-id="PrimaTivvu.it",Prima Tivvu (272p) [Offline] -https://celinel.akamaized.net/hls/live/2032089/2032089/primativvu/primativvu/playlist.m3u8 -#EXTINF:-1 tvg-id="Primocanale.it",Primocanale (1080p) [Not 24/7] -https://msh0203.stream.seeweb.it/live/flv:stream2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="R101.it",R101 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(er)/index.m3u8 -#EXTINF:-1 tvg-id="R101ItaliaIT.it",R 101 Italia IT (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(er)/index.m3u8 -#EXTINF:-1 tvg-id="Radio24.it",Radio 24 (1080p) [Not 24/7] -http://radio24-lh.akamaihd.net/i/radio24video_1@379914/master.m3u8 -#EXTINF:-1 tvg-id="",Radio 51 (480p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio51TV.it",Radio 51 TV (480p) [Geo-blocked] -http://178.32.140.155/canale51/canale51/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio101.it",Radio 101 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ER)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105.it",Radio 105 (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(EC)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105TV.it",Radio 105 TV (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 -#EXTINF:-1 tvg-id="Radio105TV.it",Radio 105 TV (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 -#EXTINF:-1 tvg-id="RadioBirikinaTV.it",Radio Birikina TV (720p) [Not 24/7] -https://56b50ada2d659.streamlock.net/RadioBirikinaTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioCapitalTV.it",Radio Capital TV (360p) -http://capital-live-tv-01-hls.akamai.media.kataweb.it/i/CapitalTv_1@183098/master.m3u8 -#EXTINF:-1 tvg-id="RadioCapitalTV.it",Radio Capital TV (360p) -https://capital_tv-lh.akamaihd.net/i/CapitalTv_1@183098/master.m3u8 -#EXTINF:-1 tvg-id="RADIOFRECCIA.it",RADIO FRECCIA (360p) [Offline] -https://rtl-video2-stream.thron.com/live-video/video2/ngrp:video2/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIbizaTV.it",Radio Ibiza TV (720p) [Not 24/7] -https://5929b138b139d.streamlock.net/RadioIbizaTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIglesias.it",Radio Iglesias (576p) [Geo-blocked] -http://wms.shared.streamshow.it/visualradio/mp4:visualradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioIglesiasSardegna.it",Radio Iglesias Sardegna (576p) [Geo-blocked] -https://59d7d6f47d7fc.streamlock.net/visualradio/visualradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioItaliaTV.it",Radio Italia TV (480p) -https://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/master.m3u8 -#EXTINF:-1 tvg-id="RadioLombardiaTV.it",Radio Lombardia TV (720p) -https://flash7.xdevel.com/radiolombardiatv/radiolombardiatv/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioMontecarlo.it",Radio Montecarlo (576p) [Offline] -https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(bb)/index.m3u8 -#EXTINF:-1 tvg-id="RadioNumberOne.it",Radio Number One (720p) -https://56b50ada2d659.streamlock.net/RN1TV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioPiterPanTV.it",Radio Piter Pan TV (720p) [Not 24/7] -https://58d921499d3d3.streamlock.net/RadioPiterpanTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRadicaleTV.it",Radio Radicale TV (240p) [Not 24/7] -https://video-ar.radioradicale.it/diretta/padtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRadioTV.it",Radio Radio TV (720p) -http://api.new.livestream.com/accounts/11463451/events/3679884/live.m3u8 -#EXTINF:-1 tvg-id="RadioStudioDeltaTV.it",Radio Studio Delta TV (1080p) [Not 24/7] -https://5ce9406b73c33.streamlock.net/RSD/ngrp:livestream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTaorminaSicilia.it",Radio Taormina Sicilia (720p) [Not 24/7] -https://stream2.xdevel.com/video1s3-7/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZeta.it",Radio Zeta (432p) [Offline] -https://rtl-video3-stream.thron.com/live-video/video3/ngrp:video3/playlist.m3u8 -#EXTINF:-1 tvg-id="",radionorba TV (404p) [Offline] -http://46.165.210.112/radionorbatv/norbatv_source.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RadionorbaTV.it",Radionorba TV (404p) [Offline] -http://flash2.xdevel.com/norbatv/smil:norbatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadionorbaTV.it",Radionorba TV (404p) [Offline] -http://flash5.streaming.xdevel.com/radionorbatv/smil:radionorbatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioZeta.it",RadioZeta (480p) [Timeout] -https://unlimited1-cl.dps.live/radioztv/radioztv.smil/radioztv/livestream2/chunks.m3u8 -#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (480p) -http://ott-cdn.ucom.am/s29/04.m3u8 -#EXTINF:-1 tvg-id="Rai1.it",Rai 1 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803 -#EXTINF:-1 tvg-id="",Rai 1 (Geo) (576p) -http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=2606803 -#EXTINF:-1 tvg-id="Rai2.it",Rai 2 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai2.it",Rai 2 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308718 -#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (432p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308709 -#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (720p) [Not 24/7] -http://wzstreaming.rai.it/TVlive/liveStream/chunklist_w823540263.m3u8 -#EXTINF:-1 tvg-id="Rai3.it",Rai 3 (720p) [Not 24/7] -http://wzstreaming.rai.it/TVlive/liveStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (576p) -http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=746966 -#EXTINF:-1 tvg-id="Rai4.it",Rai 4 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746966 -#EXTINF:-1 tvg-id="Rai5.it",Rai 5 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/it-rai5.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Rai5.it",Rai 5 (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=395276 -#EXTINF:-1 tvg-id="RaiGulp.it",Rai Gulp (576p) -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746953 -#EXTINF:-1 tvg-id="RaiMovie.it",Rai Movie (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747002 -#EXTINF:-1 tvg-id="RaiNews24.it",Rai News 24 (720p) -https://rainews1-live.akamaized.net/hls/live/598326/rainews1/rainews1/playlist.m3u8 -#EXTINF:-1 tvg-id="RaiPremium.it",Rai Premium (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746992 -#EXTINF:-1 tvg-id="RaiScuola.it",Rai Scuola (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747011 -#EXTINF:-1 tvg-id="RaiSport.it",Rai Sport (404p) [Offline] -https://everyrai-lh.akamaihd.net/i/raisportjolly1_1@177967/master.m3u8 -#EXTINF:-1 tvg-id="RaiSport.it",Rai Sport [Geo-blocked] -http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=179975 -#EXTINF:-1 tvg-id="RaiSportPlus.it",Rai Sport+ [Geo-blocked] -http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=4145 -#EXTINF:-1 tvg-id="RaiSportPlus.it",Rai Sport+ [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=358025 -#EXTINF:-1 tvg-id="RaiStoria.it",Rai Storia (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746990 -#EXTINF:-1 tvg-id="",Rai YoYo (576p) [Geo-blocked] -https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746899 -#EXTINF:-1 tvg-id="RDSSocialTV.it",RDS Social TV (720p) -https://stream.rdstv.radio/out/v1/ec85f72b87f04555aa41d616d5be41dc/index.m3u8 -#EXTINF:-1 tvg-id="ReggioTV.it",ReggioTV (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/reggiotv/reggiotv/playlist.m3u8 -#EXTINF:-1 tvg-id="Rete4.it",Rete 4 [Geo-blocked] -https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(r4)/index.m3u8 -#EXTINF:-1 tvg-id="Rete55.it",Rete 55 (720p) [Not 24/7] -https://stream.internet.one/Rete55_Live/index.m3u8 -#EXTINF:-1 tvg-id="ReteBiellaTV.it",Rete Biella TV (720p) [Not 24/7] -https://sb.top-ix.org/retebiella/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="ReteOro.it",Rete Oro (720p) [Not 24/7] -https://5926fc9c7c5b2.streamlock.net/9094/9094/playlist.m3u8 -#EXTINF:-1 tvg-id="Retemia.it",Retemia (720p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Retemia/Retemia/playlist.m3u8 -#EXTINF:-1 tvg-id="RetesoleLazio.it",Retesole Lazio (240p) [Geo-blocked] -http://5c389faa13be3.streamlock.net:1935/8058/8058/playlist.m3u8 -#EXTINF:-1 tvg-id="Reteveneta.it",Reteveneta (480p) -https://59d7d6f47d7fc.streamlock.net/reteveneta/reteveneta/playlist.m3u8 -#EXTINF:-1 tvg-id="RMKTVSciacca.it",RMK TV Sciacca (720p) [Not 24/7] -http://vod1.kronopress.com:1935/tmk_live/5123-CA5C-9EBE-428A/playlist.m3u8 -#EXTINF:-1 tvg-id="RTCTelecalabria.it",RTC Telecalabria (720p) [Not 24/7] -http://fl1.mediastreaming.it:1935/calabriachannel/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTCTelecalabria.it",RTC Telecalabria (720p) [Not 24/7] -https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL1025.it",RTL 102.5 (432p) [Offline] -https://rtl-video1-stream.thron.com/live-video/video1/ngrp:video1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL1025BEST.it",RTL 102.5 BEST (432p) [Offline] -https://rtl-video4-stream.thron.com/live-video/video4/ngrp:video4/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP.it",RTP (404p) -https://flash2.xdevel.com/rtptv/rtptv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTTRTrento.it",RTTR Trento (720p) -https://5f204aff97bee.streamlock.net/RTTRlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="SardegnaUno.it",Sardegna Uno (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/sardegnauno/sardegnauno/playlist.m3u8 -#EXTINF:-1 tvg-id="SenatoTV.it",Senato TV (1080p) -https://senato-live.morescreens.com/SENATO_1_001/playlist.m3u8 -#EXTINF:-1 tvg-id="SophiaTV.it",Sophia TV (720p) -https://www.onairport.live/sophiatv-it-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Sportitalia24.it",Sportitalia 24 (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:silive24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Sportitalia.it",Sportitalia (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sportitaliahd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SportitaliaMotori.it",Sportitalia Motori (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:simotori.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SportitaliaSolocalcio.it",Sportitalia Solocalcio (720p) [Geo-blocked] -https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sisolocalcio.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Stereo5TV.it",Stereo 5 TV (720p) -https://stream1.aswifi.it/stereo5/live/index.m3u8 -#EXTINF:-1 tvg-id="Studio100Puglia.it",Studio 100 Puglia (480p) -http://wms.shared.streamshow.it:1935/studio100ta/studio100ta/playlist.m3u8 -#EXTINF:-1 tvg-id="Super.it",Super (480p) [Not 24/7] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@357018/master.m3u8 -#EXTINF:-1 tvg-id="SuperJTV.it",Super J TV (720p) [Timeout] -https://54627d4fc5996.streamlock.net/SuperJtv/SuperJtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperJTVTeramo.it",Super J TV Teramo (720p) [Not 24/7] -http://uk4.streamingpulse.com:1935/SuperJtv/SuperJtv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.it",Super TV (720p) -http://wms.shared.streamshow.it/supertv/mp4:supertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.it",Super TV Brescia (720p) -http://wms.shared.streamshow.it:1935/supertv/supertv/live.m3u8 -#EXTINF:-1 tvg-id="SuperTVOristano.it",Super TV Oristano (720p) [Not 24/7] -http://193.70.81.40:1935/supertvoristano/supertvoristano/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperSixLombardia.it",SuperSix Lombardia (720p) -https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleAbruzzo.it",Tele Abruzzo (336p) -http://uk4.streamingpulse.com:1935/TeleabruzzoTV/TeleabruzzoTV/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleLiguriaSud.it",Tele Liguria Sud (224p) [Not 24/7] -https://live.teleliguriasud.it/hls/tls/index.m3u8 -#EXTINF:-1 tvg-id="",Tele Pavia (720p) -http://wms.shared.streamshow.it/telepavia/telepavia/playlist.m3u8 -#EXTINF:-1 tvg-id="TelePegasoCatania.it",Tele Pegaso Catania (404p) [Not 24/7] -https://flash2.xdevel.com/telepegasocanale812/telepegasocanale812/playlist.m3u8 -#EXTINF:-1 tvg-id="TelePordenone.it",Tele Pordenone (576p) [Not 24/7] -http://213.187.12.18/telepn/telepn.m3u8 -#EXTINF:-1 tvg-id="TeleQuattro.it",Tele Quattro (480p) [Not 24/7] -http://wms.shared.streamshow.it/telequattro/telequattro/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleRadioSciacca.it",Tele Radio Sciacca (240p) [Not 24/7] -http://5cbd3bc28341f.streamlock.net:1935/trs_live/teleradiosciacca-tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleSondrioNews.it",Tele Sondrio News (480p) [Not 24/7] -https://59d8c0cee6f3d.streamlock.net/tsn/tsn_mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleArena.it",TeleArena (480p) -http://5ce9406b73c33.streamlock.net/TeleArena/TeleArena.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Telebelluno.it",Telebelluno (720p) -https://live.mariatvcdn.com/telebelluno/a3b80388da9801906adf885282e73bc3.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="TeleBoario.it",TeleBoario (720p) [Not 24/7] -http://flash7.streaming.xdevel.com/teleboario/teleboario/playlist.m3u8 -#EXTINF:-1 tvg-id="Telechiara.it",Telechiara (720p) -http://fms.tvavicenza.it:1935/telechiara/diretta/playlist.m3u8 -#EXTINF:-1 tvg-id="TelecolorLombardia.it",Telecolor Lombardia (1080p) [Not 24/7] -https://1aadf145546f475282c5b4e658c0ac4b.msvdn.net/live/324149/hlbAWtl/playlist.m3u8 -#EXTINF:-1 tvg-id="Telecupole.it",Telecupole (540p) [Offline] -https://live.livevideosolution.it/telecupole/dd6d85e5b7452f7b85a099509292b421.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefoggia.it",Telefoggia (480p) [Not 24/7] -http://wms.shared.streamshow.it/telefoggia/mp4:telefoggia/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefoggia.it",Telefoggia (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/telefoggia/telefoggia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleFormula.it",TeleFormula (720p) [Not 24/7] -https://wms60.tecnoxia.com/radiof/abr_radioftele/playlist.m3u8 -#EXTINF:-1 tvg-id="Telefriuli.it",Telefriuli (720p) [Not 24/7] -https://streamtechglobal.akamaized.net/hls/live/2024685/telefriuli/Group01/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleGenova.it",TeleGenova (404p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Telegenova/Telegenova/playlist.m3u8 -#EXTINF:-1 tvg-id="Telegranda.it",Telegranda (720p) [Not 24/7] -http://live.sloode.com:1935/telegranda_live/C2AD-0664-DC75-4744/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleliberta.it",Teleliberta (720p) [Not 24/7] -http://api.new.livestream.com/accounts/17114188/events/4902226/live.m3u8 -#EXTINF:-1 tvg-id="TeleMia.it",TeleMia (576p) -https://playerssl.telemia.tv/fileadmin/hls/TelemiaHD/telemia85_mediachunks.m3u8 -#EXTINF:-1 tvg-id="TeleMiaExtra.it",TeleMia Extra (720p) [Not 24/7] -https://playerssl.telemia.tv/fileadmin/hls/TelemiaExtra/stream.m3u8 -#EXTINF:-1 tvg-id="Telemolise.it",Telemolise (406p) [Offline] -http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream_tlm/playlist.m3u8 -#EXTINF:-1 tvg-id="Telemolise.it",Telemolise (1080p) -http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="teleMonteneve.it",teleMonteneve (480p) [Not 24/7] -http://wms.shared.streamshow.it:1935/telemonteneve/telemonteneve/live.m3u8 -#EXTINF:-1 tvg-id="Telenord.it",Telenord (576p) [Not 24/7] -https://5db313b643fd8.streamlock.net/Telenord/Telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] -https://59d8c0cee6f3d.streamlock.net/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleNordest.it",TeleNordest (480p) [Not 24/7] -https://wms.shared.streamshow.it/telenord/telenord/playlist.m3u8 -#EXTINF:-1 tvg-id="",telePAVIA (720p) -http://wms.shared.streamshow.it/telepavia/mp4:telepavia/playlist.m3u8 -#EXTINF:-1 tvg-id="",telePAVIA (720p) -http://wms.shared.streamshow.it:1935/telepavia/telepavia/live.m3u8 -#EXTINF:-1 tvg-id="TeleRent7Gold.it",TeleRent 7Gold (720p) [Offline] -https://stream2.xdevel.com/video0s86-21/stream/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="TelesudTrapani.it",Telesud Trapani (720p) [Not 24/7] -http://5cbd3bc28341f.streamlock.net:1935/telesud/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TelesudTrapani.it",Telesud Trapani (720p) [Not 24/7] -https://5cbd3bc28341f.streamlock.net:444/telesud/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTerni.it",TeleTerni (720p) [Not 24/7] -https://diretta.teleterni.it/live/stream_src.m3u8 -#EXTINF:-1 tvg-id="Teletricolore.it",Teletricolore (480p) [Not 24/7] -https://59d7d6f47d7fc.streamlock.net/rs2/rs2/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleTusciaSabina2000.it",TeleTusciaSabina 2000 (576p) [Not 24/7] -http://ts2000tv.streaming.nextware.it:8081/ts2000tv/ts2000tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleVenezia.it",TeleVenezia (576p) -https://59d8c0cee6f3d.streamlock.net/televenezia/televenezia/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleVideoAgrigento.it",TeleVideo Agrigento (480p) -https://59d7d6f47d7fc.streamlock.net/tva/tva/playlist.m3u8 -#EXTINF:-1 tvg-id="TevereTV.it",Tevere TV (576p) [Not 24/7] -https://5926fc9c7c5b2.streamlock.net/9098/9098/playlist.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) -http://flash5.streaming.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) -https://flash2.xdevel.com/tgnorba_24/tgnorba_24_source.stream/index.m3u8 -#EXTINF:-1 tvg-id="TGNorba24.it",TG Norba 24 (360p) -https://flash5.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGCom24.it",TGCom 24 [Geo-blocked] -https://live2-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kf)/index.m3u8 -#EXTINF:-1 tvg-id="TLNTeleLazioNord.it",TLN Tele Lazio Nord (720p) [Not 24/7] -http://tln.srfms.com:1935/TLN/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TopCrime.it",Top Crime [Geo-blocked] -https://live3-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(lt)/index.m3u8 -#EXTINF:-1 tvg-id="TrentinoTV.it",Trentino TV (720p) [Not 24/7] -https://5e73cf528f404.streamlock.net/TrentinoTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TRMh24Basilicata.it",TRM h24 Basilicata (480p) [Not 24/7] -http://w1.streamingmedia.it:1935/trmh24/live/playlist.m3u8 -#EXTINF:-1 tvg-id="TSNTeleSondrioNews.it",TSN Tele Sondrio News (480p) [Not 24/7] -http://wms.shared.streamshow.it/tsn/tsn_mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Azzurra.it",TV7 Azzurra (270p) [Not 24/7] -http://217.61.26.46:8080/hls/azzurra.m3u8 -#EXTINF:-1 tvg-id="TV7Benevento.it",TV7 Benevento (288p) [Not 24/7] -http://streaming.senecadot.com/live/flv:tv7.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7News.it",TV7 News (270p) [Not 24/7] -http://217.61.26.46:8080/hls/news.m3u8 -#EXTINF:-1 tvg-id="TV7Triveneta.it",TV7 Triveneta (270p) [Not 24/7] -http://217.61.26.46:8080/hls/triveneta.m3u8 -#EXTINF:-1 tvg-id="TV2000.it",TV 2000 (360p) [Not 24/7] -http://cld04wz.tv2000.it/tv2000_main.m3u8 -#EXTINF:-1 tvg-id="TV2000.it",TV 2000 (540p) [Offline] -http://mi1.wz.tv2000.it/mirror/High/playlist.m3u8 -#EXTINF:-1 tvg-id="TVQuiModena.it",TV Qui (Modena) (480p) -https://59d7d6f47d7fc.streamlock.net/tvqui/tvqui/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSei.it",TV Sei (406p) [Not 24/7] -http://185.202.128.1:1935/Tv6Stream/tv6TV.stream_tlm/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSei.it",TV Sei (576p) [Not 24/7] -http://185.202.128.1:1935/Tv6Stream/tv6TV.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVUNO.it",TV UNO (240p) -http://ftp.tiscali.it/francescovernata/TVUNO/monoscopioTvUNOint-1.wmv -#EXTINF:-1 tvg-id="TVAVicenza.it",TVA (Vicenza) (720p) -http://fms.tvavicenza.it:1935/live/diretta_1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVL.it",TVL (720p) [Not 24/7] -https://live.mariatvcdn.com/mariatvcdn/70564e1c6884c007c76f0c128d679eed.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRS.it",TVRS (576p) [Not 24/7] -http://wms.shared.streamshow.it:1935/tvrs/tvrs/live.m3u8 -#EXTINF:-1 tvg-id="UmbriaTV.it",Umbria TV (576p) [Not 24/7] -https://umbriatv.stream.rubidia.it:8083/live/umbriatv/playlist.m3u8 -#EXTINF:-1 tvg-id="VeraTV.it",Vera TV (1080p) [Not 24/7] -http://wms.shared.streamshow.it/veratv/mp4:veratv/playlist.m3u8 -#EXTINF:-1 tvg-id="VeraTVMarche.it",Vera TV (Marche) (1080p) [Not 24/7] -http://wms.shared.streamshow.it/veratv/veratv/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoBresciaTV.it",Video Brescia TV (720p) [Not 24/7] -http://wms.shared.streamshow.it/videobrescia/videobrescia/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoCalabria.it",Video Calabria (480p) [Not 24/7] -http://wms.shared.streamshow.it/videocalabria/videocalabria/playlist.m3u8 -#EXTINF:-1 tvg-id="VideoRola.it",Video Rola (1080p) -https://d3b2epqdk0p7vd.cloudfront.net/out/v1/8a448b5e16384af4a3c8146a7b049c32/index.m3u8 -#EXTINF:-1 tvg-id="VideolinaSardegna.it",Videolina (Sardegna) (404p) [Not 24/7] -http://livestreaming.videolina.it/live/Videolina/playlist.m3u8 -#EXTINF:-1 tvg-id="Videonovara.it",Videonovara (576p) [Not 24/7] -https://sb.top-ix.org/avtv04/streaming/playlist.m3u8 -#EXTINF:-1 tvg-id="VideostarCanale193.it",Videostar Canale 193 (480p) [Not 24/7] -https://5cbd3bc28341f.streamlock.net:444/videostar_live/videostar/playlist.m3u8 -#EXTINF:-1 tvg-id="VirginRadioTV.it",Virgin Radio TV (576p) [Not 24/7] -https://live2-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ew)/index.m3u8 -#EXTINF:-1 tvg-id="VisualRadio.it",Visual Radio (576p) [Not 24/7] -http://wms.shared.streamshow.it:1935/visualradio/visualradio/live.m3u8 -#EXTINF:-1 tvg-id="Vuemme.it",Vuemme (480p) -https://5db313b643fd8.streamlock.net/Vuemme/Vuemme/playlist.m3u8 -#EXTINF:-1 tvg-id="WineChannel.it",Wine Channel (720p) [Offline] -http://212.43.97.35:1935/winechannel/winechannel/playlist.m3u8 -#EXTINF:-1 tvg-id="YviiTVSicilia.it",Yvii TV Sicilia (1080p) [Not 24/7] -https://yviistreamer.kernel.online/hls/yviitv.m3u8 diff --git a/streams/it_samsung.m3u b/streams/it_samsung.m3u deleted file mode 100644 index ea6028ee4..000000000 --- a/streams/it_samsung.m3u +++ /dev/null @@ -1,69 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AmuseAnimation.it",Amuse Animation (720p) [Offline] -https://amuse-amuseanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AtresSeries.it",Atres Series (720p) [Offline] -https://atresmedia-atreseries-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BigName.fr",Big Name (720p) [Offline] -https://alchimie-big-names-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BizzarroMovies.it",Bizzarro Movies (720p) [Offline] -https://minerva-bizzarromovies-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe UHD (2160p) -https://bloomberg-bloombergtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BrindiamoChannel.it",Brindiamo Channel (720p) [Offline] -https://okproductions-brindiamochannel-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CanaleEuropa.it",Canale Europa (720p) -https://canaleeuropa-canaleeuropa-1-it.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CGEntertainment.it",CG Entertainment (720p) [Offline] -https://cgentertainment-cgtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CinemaSegreto.it",Cinema Segreto (720p) [Offline] -https://minerva-cinemasegreto-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicalHarmony.fr",Classical Harmony (720p) [Offline] -https://alchimie-classical-harmony-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) -https://mmm-ducktv-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Italiano (720p) -https://rakuten-euronews-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsItalianoviaAlchimie.fr",Euronews Italiano via Alchimie (720p) [Offline] -https://alchimie-euronews-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVItaly.fr",Fashion TV (Italy) (1080p) -https://fashiontv-fashiontv-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] -https://alchimie-humanity-3-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] -https://alchimie-mmatv-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MondoKids.it",Mondo Kids (720p) [Offline] -https://mondotv-mondotvkids-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Moods.fr",Moods (720p) [Offline] -https://alchimie-moods-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MotorTV.it",Motor TV (720p) [Offline] -https://motorsportnetwork-motor1tv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MySurfTV.fr",My Surf TV (720p) [Offline] -https://alchimie-mysurf-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesItaly.es",Rakuten Documentaries (Italy) (720p) [Offline] -https://rakuten-documentaries-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesItaly.es",Rakuten TV Action Movies Italy (720p) [Offline] -https://rakuten-actionmovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesItaly.es",Rakuten TV Comedy Movies Italy (720p) [Offline] -https://rakuten-comedymovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaItaly.es",Rakuten TV Drama Italy (720p) [Offline] -https://rakuten-tvshows-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesItaly.es",Rakuten TV Family Movies Italy (720p) [Offline] -https://rakuten-family-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightItaly.es",Rakuten TV Spotlight Italy (720p) [Offline] -https://rakuten-spotlight-6-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) -https://sofytv-samsungit.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportOutdoortv.it",SportOutdoor.tv (720p) [Offline] -https://gto2000-sportoutdoortv-1-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SupertoonsTV.it",Supertoons TV (720p) [Offline] -https://kedoo-supertoonstv-4-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.it",Teletubbies (720p) [Offline] -https://dhx-teletubbies-2-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveItaly.us",The Pet Collective Italy (720p) [Offline] -https://the-pet-collective-international-it.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="YamatoAnimation.it",Yamato Animation (720p) [Offline] -https://yamatovideo-yamatoanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/jm.m3u b/streams/jm.m3u deleted file mode 100644 index 7b619f7a7..000000000 --- a/streams/jm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="JamaicaTV.jm",Jamaica Online TV (1080p) [Not 24/7] -https://vse2-sa-all4.secdn.net/tvstartup11-channel/live/mp4:jotvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsMax.jm",SportsMax (720p) [Timeout] -http://cdn.tvmatic.net/sport.m3u8 diff --git a/streams/jo.m3u b/streams/jo.m3u deleted file mode 100644 index 16313407f..000000000 --- a/streams/jo.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlMamlakaTV.jo",Al Mamlaka TV (1080p) -https://almamlka-live.ercdn.net/almamlka/almamlka.m3u8 -#EXTINF:-1 tvg-id="AmmanTV.jo",Amman TV (720p) -https://ammantv.c.s73cdn.net/23153d43-375a-472a-bc5f-9827582b5d22/elemental/live/master.m3u8 -#EXTINF:-1 tvg-id="FajerTV.jo",Fajer TV (720p) -http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="JawharaFM.jo",Jawhara FM (720p) [Not 24/7] -http://streaming.toutech.net:1935/live/mp4:jawharafm.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="JordanSport.jo",Jordan Sport [Offline] -https://jrtv-live.ercdn.net/jordansporthd/jordansporthd.m3u8 -#EXTINF:-1 tvg-id="",Jordan TV (1080p) -https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8 -#EXTINF:-1 tvg-id="MelodyFM.jo",Melody FM Jordan (720p) [Not 24/7] -https://cdn3.wowza.com/1/ZFBldUlPNjRBRDZM/ZW90V2ZW/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="NojoumTV.jo",Nojoum TV (720p) -https://nojoumhls.wns.live/hls/stream.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanCityView.jo",Radio Fann Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/RadioFann/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanControlStudio.jo",Radio Fann Jordan: Control Studio (220p) -http://188.247.86.66/RadioFann/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioFannJordanStudio.jo",Radio Fann Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/RadioFann/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanCityView.jo",Radio Yaqeen Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/MixFM/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanControlStudio.jo",Radio Yaqeen Jordan: Control Studio (180p) [Not 24/7] -http://188.247.86.66/MixFM/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioYaqeenJordanStudio.jo",Radio Yaqeen Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/MixFM/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanCityView.jo",Rotana Radio Jordan: City View (180p) -http://188.247.86.66/RotanaRadio/CityView1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanControlStudio.jo",Rotana Radio Jordan: Control Studio (180p) -http://188.247.86.66/RotanaRadio/ControlStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaRadioJordanStudio.jo",Rotana Radio Jordan: Studio (180p) [Not 24/7] -http://188.247.86.66/RotanaRadio/OnAirStudio1/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaTarabJordanCityView.jo",Rotana Tarab Jordan: City View (180p) [Not 24/7] -http://188.247.86.66/RadioFann/Audio32/playlist.m3u8 -#EXTINF:-1 tvg-id="RotanaTarabJordanControlStudio.jo",Rotana Tarab Jordan: Control Studio (180p) [Not 24/7] -http://188.247.86.66/RotanaRadio/Audio32/playlist.m3u8 -#EXTINF:-1 tvg-id="RoyaTV.jo",Roya TV (720p) [Not 24/7] -https://weyyak-live.akamaized.net/weyyak_roya/index.m3u8 -#EXTINF:-1 tvg-id="ToyorAlJannah.jo",Toyor Al-Jannah (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/toyorlive/live diff --git a/streams/jp.m3u b/streams/jp.m3u deleted file mode 100644 index d965dfd36..000000000 --- a/streams/jp.m3u +++ /dev/null @@ -1,199 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (720p) -http://50.7.74.29:8880/hls/j00026/index.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00026/index.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h02/01.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h144/01.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Thai Subs) [Offline] -http://27.254.130.62/feed/LC38/playlist.m3u8 -#EXTINF:-1 tvg-id="AnimaxJapan.jp",Animax Japan (Vietnamese Subs) (720p) -https://livecdn.fptplay.net/hda3/animaxport_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATX.jp",AT-X (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00052/index.m3u8 -#EXTINF:-1 tvg-id="ATX.jp",AT-X (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00052/index.m3u8 -#EXTINF:-1 tvg-id="ATX.jp",AT-X (720p) [Not 24/7] -https://sub2.neetball.net/live/neet.m3u8 -#EXTINF:-1 tvg-id="BSAsahi.jp",BS Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00048/index.m3u8 -#EXTINF:-1 tvg-id="BSAsahi.jp",BS Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00048/index.m3u8 -#EXTINF:-1 tvg-id="BSFujiTV.jp",BS Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00049/index.m3u8 -#EXTINF:-1 tvg-id="BSFujiTV.jp",BS Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00049/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00005/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (540p) [Offline] -http://50.7.74.29:8880/hls/j00005/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00047/index.m3u8 -#EXTINF:-1 tvg-id="BSNipponTV.jp",BS Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00047/index.m3u8 -#EXTINF:-1 tvg-id="BSTVTokyo.jp",BS TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00050/index.m3u8 -#EXTINF:-1 tvg-id="BSTVTokyo.jp",BS TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00050/index.m3u8 -#EXTINF:-1 tvg-id="BSTBS.jp",BS-TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00051/index.m3u8 -#EXTINF:-1 tvg-id="BSTBS.jp",BS-TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00051/index.m3u8 -#EXTINF:-1 tvg-id="CGNTVJapan.jp",CGNTV Japan (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_jp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00011/index.m3u8 -#EXTINF:-1 tvg-id="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00011/index.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (540p) [Not 24/7] -https://fujitv1.mov3.co/hls/fujitv.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00010/index.m3u8 -#EXTINF:-1 tvg-id="FujiTV.jp",Fuji TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00010/index.m3u8 -#EXTINF:-1 tvg-id="GAORA.jp",GAORA (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00045/index.m3u8 -#EXTINF:-1 tvg-id="GAORA.jp",GAORA (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00045/index.m3u8 -#EXTINF:-1 tvg-id="GSTV.jp",GSTV (720p) -https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GTNTyphome.jp",GTN Typhome (English Subs) (720p) [Not 24/7] -https://hamada.gaki-no-tsukai.eu:2087/hls/test.m3u8 -#EXTINF:-1 tvg-id="GunmaTV.jp",Gunma TV (720p) -https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8 -#EXTINF:-1 tvg-id="HiroshimaWeatherInformation.jp",Hiroshima Weather Information [Offline] -https://hiroshima-tv-live.hls.wselive.stream.ne.jp/hiroshima-tv-live/live/playlist.m3u8 -#EXTINF:-1 tvg-id="JSports1.jp",J Sports 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00042/index.m3u8 -#EXTINF:-1 tvg-id="JSports1.jp",J Sports 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00042/index.m3u8 -#EXTINF:-1 tvg-id="JSports2.jp",J Sports 2 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00041/index.m3u8 -#EXTINF:-1 tvg-id="JSports2.jp",J Sports 2 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00041/index.m3u8 -#EXTINF:-1 tvg-id="JSports3.jp",J Sports 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00040/index.m3u8 -#EXTINF:-1 tvg-id="JSports3.jp",J Sports 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00040/index.m3u8 -#EXTINF:-1 tvg-id="JSports4.jp",J Sports 4 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00039/index.m3u8 -#EXTINF:-1 tvg-id="JSports4.jp",J Sports 4 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00039/index.m3u8 -#EXTINF:-1 tvg-id="KansaiTV.jp",Kansai TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00006/index.m3u8 -#EXTINF:-1 tvg-id="KansaiTV.jp",Kansai TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00006/index.m3u8 -#EXTINF:-1 tvg-id="MBS.jp",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00038/index.m3u8 -#EXTINF:-1 tvg-id="MBS.jp",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00038/index.m3u8 -#EXTINF:-1 tvg-id="NewJapanProWrestlingWorld.jp",New Japan Pro Wrestling World (540p) -https://aka-amd-njpwworld-hls-enlive.akamaized.net/hls/video/njpw_en/njpw_en_channel01_3/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK + NHE (Sub Audio) (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhkg2.m3u8 -#EXTINF:-1 tvg-id="NHKEducational.jp",NHK + NHKE (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhke.m3u8 -#EXTINF:-1 tvg-id="NHKEducational.jp",NHK + NHKE (Sub Audio) (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhke2.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK + NHKG (2160p) [Not 24/7] -http://iptv.tvfix.org/hls/nhkg.m3u8 -#EXTINF:-1 tvg-id="NHKBS1.jp",NHK BS1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00037/index.m3u8 -#EXTINF:-1 tvg-id="NHKBS1.jp",NHK BS1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00037/index.m3u8 -#EXTINF:-1 tvg-id="NHKBSPremium.jp",NHK BSP (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00036/index.m3u8 -#EXTINF:-1 tvg-id="NHKBSPremium.jp",NHK BSP (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00036/index.m3u8 -#EXTINF:-1 tvg-id="NHKChineseVision.jp",NHK Chinese Vision (720p) -https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKChineseVision.jp",NHK Chinese Vision (720p) -https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00034/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00035/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00034/index.m3u8 -#EXTINF:-1 tvg-id="NHKEducationalTV.jp",NHK E (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00035/index.m3u8 -#EXTINF:-1 tvg-id="NHKGOsaka.jp",NHK G Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00032/index.m3u8 -#EXTINF:-1 tvg-id="NHKGOsaka.jp",NHK G Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00032/index.m3u8 -#EXTINF:-1 tvg-id="NHKGTokyo.jp",NHK G Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00033/index.m3u8 -#EXTINF:-1 tvg-id="NHKGTokyo.jp",NHK G Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00033/index.m3u8 -#EXTINF:-1 tvg-id="NHKGeneralTV.jp",NHK General TV (540p) [Not 24/7] -https://nhk1.mov3.co/hls/nhk.m3u8 -#EXTINF:-1 tvg-id="NHKWorld.jp",NHK World (720p) -https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/sycc-live/zh/playlist.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (720p) [Not 24/7] -https://b-nhkwlive-xjp.webcdn.stream.ne.jp/hls/live/2003458-b/nhkwlive-xjp-en/index.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (1080p) -https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index.m3u8 -#EXTINF:-1 tvg-id="",NHK华语视界 (360p) -https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (540p) [Not 24/7] -https://ntv1.mov3.co/hls/ntv.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00004/index.m3u8 -#EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00004/index.m3u8 -#EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (480p) -https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 -#EXTINF:-1 tvg-id="ShopChannel.jp",Shop Channel (1080p) [Not 24/7] -https://stream3.shopch.jp/HLS/master.m3u8 -#EXTINF:-1 tvg-id="Star1.jp",Star 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00019/index.m3u8 -#EXTINF:-1 tvg-id="Star1.jp",Star 1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00019/index.m3u8 -#EXTINF:-1 tvg-id="Star2.jp",Star 2 (540p) [Not 24/7] -http://50.7.74.29:8880/hls/j00018/index.m3u8 -#EXTINF:-1 tvg-id="Star2.jp",Star 2 (540p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00018/index.m3u8 -#EXTINF:-1 tvg-id="Star3.jp",Star 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00017/index.m3u8 -#EXTINF:-1 tvg-id="Star3.jp",Star 3 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00017/index.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (540p) [Not 24/7] -https://tbs.mov3.co/hls/tbs.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00031/index.m3u8 -#EXTINF:-1 tvg-id="JORXDTV.jp",TBS (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00031/index.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (360p) -https://movie.mcas.jp/mcas/smil:mx1_prod.smil/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p) -https://movie.mcas.jp/mcas/mx1_2/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p) -https://movie.mcas.jp/mcas/mx_live_2/master.m3u8 -#EXTINF:-1 tvg-id="JOMXDTV.jp",Tokyo MX1 (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00030/index.m3u8 -#EXTINF:-1 tvg-id="JOMXDTV.jp",Tokyo MX1 (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00030/index.m3u8 -#EXTINF:-1 tvg-id="TokyoMX2.jp",Tokyo MX2 (360p) -https://movie.mcas.jp/mcas/smil:mx2_prod.smil/master.m3u8 -#EXTINF:-1 tvg-id="TokyoMX2.jp",Tokyo MX2 (720p) -https://movie.mcas.jp/mcas/mx2_2/master.m3u8 -#EXTINF:-1 tvg-id="TVAsahi.jp",TV Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00014/index.m3u8 -#EXTINF:-1 tvg-id="TVAsahi.jp",TV Asahi (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00014/index.m3u8 -#EXTINF:-1 tvg-id="TVOsaka.jp",TV Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00013/index.m3u8 -#EXTINF:-1 tvg-id="TVOsaka.jp",TV Osaka (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00013/index.m3u8 -#EXTINF:-1 tvg-id="JOTXDTV.jp",TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hls/j00012/index.m3u8 -#EXTINF:-1 tvg-id="JOAXDTV.jp",TV Tokyo (720p) [Not 24/7] -http://50.7.74.29:8880/hlsok/j00012/index.m3u8 -#EXTINF:-1 tvg-id="WakuWakuJapan.jp",WakuWaku Japan [Offline] -https://liveanevia.mncnow.id/live/eds/WakuWakuJapan/sa_dash_vmx/WakuWakuJapan.mpd -#EXTINF:-1 tvg-id="",Weather Channel (ウェザーニュース) (BS | WNI) (720p) -http://movie.mcas.jp/mcas/wn1_2/master.m3u8 -#EXTINF:-1 tvg-id="WeatherNews.jp",Weather News (720p) -https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8 diff --git a/streams/ke.m3u b/streams/ke.m3u deleted file mode 100644 index c39995b1d..000000000 --- a/streams/ke.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CitizenTV.ke",Citizen TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/kenyacitizentv/live -#EXTINF:-1 tvg-id="EbruTV.ke",Ebru TV (360p) [Not 24/7] -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 -#EXTINF:-1 tvg-id="GBSTV.ke",GBS TV (720p) [Not 24/7] -https://goliveafrica.media:9998/live/6045ccbac3484/index.m3u8 -#EXTINF:-1 tvg-id="K24.ke",K24 (480p) [Not 24/7] -https://5f4db0f94b000.streamlock.net/k24/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="KamemeTV.ke",Kameme TV (184p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6ol8sj -#EXTINF:-1 tvg-id="KassTV.ke",Kass TV (540p) [Not 24/7] -https://goliveafrica.media:9998/live/60755313b36db/index.m3u8 -#EXTINF:-1 tvg-id="KBC.ke",KBC (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x74211t -#EXTINF:-1 tvg-id="KTNNews.ke",KTN News (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/standardgroupkenya/live -#EXTINF:-1 tvg-id="NTV.ke",NTV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6shkab -#EXTINF:-1 tvg-id="SwitchTV.ke",Switch TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x7sxle3 -#EXTINF:-1 tvg-id="TV47.ke",TV47 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tv47kenya/ -#EXTINF:-1 tvg-id="UTV.ke",UTV (240p) [Not 24/7] -https://goliveafrica.media:9998/live/6049f726546e1/index.m3u8 diff --git a/streams/kg.m3u b/streams/kg.m3u deleted file mode 100644 index eb2fd37ff..000000000 --- a/streams/kg.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV1KG.kg",TV1 KG (1080p) -http://212.2.225.30:1935/live/site.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Balastan.kg",Баластан (576p) [Not 24/7] -http://onlinetv.ktrk.kg:1935/live/myStream6/playlist.m3u8 -#EXTINF:-1 tvg-id="LyubimyyHDTNT4.kg",Любимый HD/ТНТ4 (576p) -http://92.245.103.126:1935/live/live.stream/playlist.m3u8 diff --git a/streams/kh.m3u b/streams/kh.m3u deleted file mode 100644 index 138f49ca8..000000000 --- a/streams/kh.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BayonTV.kh",Bayon TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/bayontv1_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BayonTV.kh",Bayon TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/bayontv_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FreshNews.kh",Fresh News (720p) -http://167.99.65.12:1935/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="FreshNewsTV.kh",Fresh News TV (720p) -http://167.99.65.12:1935/live/ngrp:myStream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="PNN.kh",PNN (360p) [Not 24/7] -http://203.176.130.123:8989/live/pnn_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SEATV.kh",SEA TV (360p) [Not 24/7] -http://203.176.130.123:8989/live/seatv_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TV9.kh",TV9 (360p) [Not 24/7] -http://203.176.130.123:8989/live/ctv9_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVK.kh",TVK (360p) [Not 24/7] -http://203.176.130.123:8989/live/tvk_480k.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKCamboya.kh",TVK Camboya (720p) -https://livefta.malimarcdn.com/tvkedge/tvk2.stream/master.m3u8 -#EXTINF:-1 tvg-id="TVKCamboya.kh",TVK Camboya (720p) -https://livefta.malimarcdn.com/tvkedge/tvkhd.stream/master.m3u8 diff --git a/streams/kp.m3u b/streams/kp.m3u deleted file mode 100644 index 013ad5cbe..000000000 --- a/streams/kp.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Korean Central Television (KCTV) (576p) -https://tv.nknews.org/tvdash/stream.mpd -#EXTINF:-1 tvg-id="",Korean Central Television (KCTV) (810p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/kctv_elufa diff --git a/streams/kr.m3u b/streams/kr.m3u deleted file mode 100644 index f88c857d9..000000000 --- a/streams/kr.m3u +++ /dev/null @@ -1,117 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",AniPlus (Malay subtitles) (576p) [Geo-blocked] -http://210.210.155.35/dr9445/h/h02/01.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr",Arirang (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/arirang_edge/index.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) -http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) -http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) -http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Arirang.kr",Arirang (720p) -http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) -http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) -http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) -http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArirangRadio.kr",Arirang Radio (720p) [Not 24/7] -http://amdlive.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/.m3u8 -#EXTINF:-1 tvg-id="BBSBuddhistBroadcasting.kr",BBS Buddhist Broadcasting (1080p) [Not 24/7] -http://bbstv.clouducs.com:1935/bbstv-live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="CBS.kr",CBS (1080p) -http://cbs-live.gscdn.com/cbs-live/cbs-live.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CGNTV.kr",CGNTV (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_kr01/playlist.m3u8 -#EXTINF:-1 tvg-id="CGNTV.kr",CGNTV (720p) [Timeout] -http://cgntv-glive.ofsdelivery.net/live/cgntv_kr02/playlist.m3u8 -#EXTINF:-1 tvg-id="",CJB청주방송 (SBS 淸州) (540p) [Not 24/7] -http://1.222.207.80:1935/live/cjbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="",CTS기독교TV (720p) -https://d34t5yjz1ooymj.cloudfront.net/out/v1/875039d5eba0478fa8375a06b3aa5a37/index.m3u8 -#EXTINF:-1 tvg-id="EBS1.kr",EBS 1 (400p) -http://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBS1.kr",EBS 1 (400p) -http://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBS2.kr",EBS 2 (400p) -http://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSe.kr",EBS e (400p) -http://ebsonair.ebs.co.kr/plus3familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSKIDS.kr",EBS KIDS (400p) -http://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSPlus1.kr",EBS+ 1 (400p) -http://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EBSPlus2.kr",EBS+ 2 (400p) -http://ebsonair.ebs.co.kr/plus2familypc/familypc1m/playlist.m3u8 -#EXTINF:-1 tvg-id="EdailyTV.kr",Edaily TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Sv6O3Ux8ePVqorx8aOBMg/live -#EXTINF:-1 tvg-id="GCN24English.kr",GCN24 English (720p) [Not 24/7] -http://liveen24-manminglobal3.ktcdn.co.kr/liveen24/gcnus_high/playlist.m3u8 -#EXTINF:-1 tvg-id="GCN24Korean.kr",GCN24 Korean (480p) [Not 24/7] -http://liveko24-manminglobal3.ktcdn.co.kr/liveko24/gcnko_high/playlist.m3u8 -#EXTINF:-1 tvg-id="GCN24Korean.kr",GCN24 Korean (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqGxkgVnPc7arUR7MdCi99g/live -#EXTINF:-1 tvg-id="GCN.kr",GCN (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFb1QuujJWU3nuUMCNPhNiA/live -#EXTINF:-1 tvg-id="GugbangTV.kr",Gugbang TV (404p) [Not 24/7] -http://mediaworks.dema.mil.kr:1935/live_edge/cudo.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="JIBSSBS.kr",JIBS SBS (720p) [Not 24/7] -http://123.140.197.22/stream/1/play.m3u8 -#EXTINF:-1 tvg-id="KPlus.kr",K+ (576p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h08/index.m3u8 -#EXTINF:-1 tvg-id="",KBC 광주방송 (SBS 光州) (1080p) -http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KBS1.kr",KBS 1 (1080p) [Not 24/7] -http://121.130.210.101:9981/stream/channelid/637185705 -#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr",KBS LiveCam DokDo (540p) -http://kbs-dokdo.gscdn.com/dokdo_300/dokdo_300.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr",KBS LiveCam DokDo (540p) [Offline] -http://kbs-dokdo.gscdn.com/sec_kbshomepage_300/sec_kbshomepage_300.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSWorld.kr",KBS World (720p) -https://livecdn.fptplay.net/sdb/kbs_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",KCTV 광주 CH05 (720p) [Not 24/7] -http://119.77.96.184:1935/chn05/chn05/playlist.m3u8 -#EXTINF:-1 tvg-id="MBC.kr",MBC (1080p) -http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCYeosu.kr",MBC Yeosu (720p) [Not 24/7] -https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="MTN.kr",MTN (720p) [Not 24/7] -http://183.110.27.87/mtnlive/720/playlist.m3u8 -#EXTINF:-1 tvg-id="MTN.kr",MTN (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClErHbdZKUnD1NyIUeQWvuQ/live -#EXTINF:-1 tvg-id="NBSKoreaAgriculturalBroadcasting.kr",NBS Korea Agricultural Broadcasting (720p) -https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="One.kr",One (Indonesian Sub) (360p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h143/02.m3u8 -#EXTINF:-1 tvg-id="SBSKNN.kr",SBS KNN (450p) [Not 24/7] -http://211.220.195.200:1935/live/mp4:KnnTV.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",TBC 대구 (SBS 大邱) (540p) [Geo-blocked] -http://221.157.125.239:1935/live/psike/playlist.m3u8 -#EXTINF:-1 tvg-id="TBSSeoul.kr",TBS Seoul (720p) -https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",TJB 대전방송 (SBS 大田) (720p) [Not 24/7] -http://1.245.74.5:1935/live/tv/.m3u8 -#EXTINF:-1 tvg-id="TVWorkNet.kr",TVWorkNet (480p) -http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="YTN.kr",YTN (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChlgI3UHCOnwUGzWzbJ3H5w/live -#EXTINF:-1 tvg-id="YTNDMB.kr",YTN DMB [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC38IlqMxZ_YtFg3eSGmmJnQ/live -#EXTINF:-1 tvg-id="",YTN SCIENCE (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZdBJIbJz0P9xyFipgOj1fA/live -#EXTINF:-1 tvg-id="",가요TV (1080p) [Not 24/7] -http://gayotv.net:1935/live/gayotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",국악방송 (1080p) -http://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCDaegu.kr",대구 MBC (MBC Daegu) (480p) [Not 24/7] -https://5e04aba713813.streamlock.net/live/livetv/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCDaejeon.kr",대전MBC (MBC Daejeon) (720p) [Not 24/7] -https://5c482867a8b63.streamlock.net/live/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCJeju.kr",제주 MBC (MBC Jeju) (352p) [Not 24/7] -https://5cf58a556f9b2.streamlock.net/live/tv_jejumbc/playlist.m3u8 -#EXTINF:-1 tvg-id="MBCChuncheon.kr",춘천MBC (MBC Chuncheon) (1080p) [Not 24/7] -https://5c74939c891dc.streamlock.net/live/TV/playlist.m3u8 -#EXTINF:-1 tvg-id="",한국선거방송 (720p) -http://necgokr2-724.acs.wecandeo.com/ms/2528/724/index_1.m3u8 diff --git a/streams/kw.m3u b/streams/kw.m3u deleted file mode 100644 index afa90d7d4..000000000 --- a/streams/kw.m3u +++ /dev/null @@ -1,41 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlMaaliTV.kw",Al Maali TV (1080p) -https://video1.getstreamhosting.com:1936/8484_1/8484_1/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMaaref.kw",Al Maaref (350p) [Timeout] -https://5e74a9d684b2e.streamlock.net/liveTrans/ngrp:channel23_all/playlist.m3u8 -#EXTINF:-1 tvg-id="ALRAI.kw",Al Rai (1080p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8779mb -#EXTINF:-1 tvg-id="AlSabah.kw",Al Sabah (360p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/live/Al-Sabah_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="AlBawadi.kw",Al-Bawadi (360p) -https://gulfsat.cdn.easybroadcast.fr/live/Al-Bawadi_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="AlShahed.kw",Al-Shahed (720p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/abr_live/Al-Shahed/playlist.m3u8 -#EXTINF:-1 tvg-id="AlraiTV.kw",Alrai TV (720p) -https://media.streambrothers.com:1936/8724/8724/playlist.m3u8 -#EXTINF:-1 tvg-id="ATV.kw",ATV (360p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/live/Aladalah_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Ch4Teen.kw",Ch4Teen (480p) [Not 24/7] -https://dcunilive93-lh.akamaihd.net/i/dclive_1@835787/master.m3u8 -#EXTINF:-1 tvg-id="Funoon.kw",Funoon (360p) -https://gulfsat.cdn.easybroadcast.fr/live/FunoonHd_abr/playlist.m3u8 -#EXTINF:-1 tvg-id="KTV1.kw",KTV 1 (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtv1.m3u8 -#EXTINF:-1 tvg-id="KTV2.kw",KTV 2 (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtv2.m3u8 -#EXTINF:-1 tvg-id="KTVAlMajlis.kw",KTV Al Majlis (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvmajlis.m3u8 -#EXTINF:-1 tvg-id="KTVAlQurain.kw",KTV Al Qurain (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvqurain.m3u8 -#EXTINF:-1 tvg-id="KTVArabe.kw",KTV Arabe (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvarabi.m3u8 -#EXTINF:-1 tvg-id="KTVEthraa.kw",KTV Ethraa (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvethraa.m3u8 -#EXTINF:-1 tvg-id="KTVKhallikBilbait.kw",KTV Khallik Bilbait (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvkids.m3u8 -#EXTINF:-1 tvg-id="KTVSport.kw",KTV Sport (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsports.m3u8 -#EXTINF:-1 tvg-id="KTVSportPlus.kw",KTV Sport Plus (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsportsplus.m3u8 -#EXTINF:-1 tvg-id="MarinaTV.kw",Marina TV (720p) [Not 24/7] -https://gulfsat.cdn.easybroadcast.fr/abr_live/MarinaTv/playlist.m3u8 diff --git a/streams/kz.m3u b/streams/kz.m3u deleted file mode 100644 index 4b5bc7dc2..000000000 --- a/streams/kz.m3u +++ /dev/null @@ -1,47 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",7 канал (576p) [Not 24/7] -https://sc.id-tv.kz/7_kanal.m3u8 -#EXTINF:-1 tvg-id="",31 канал (576p) [Not 24/7] -https://sc.id-tv.kz/31Kanal.m3u8 -#EXTINF:-1 tvg-id="",Asyl Arna (Асыл арна) (432p) [Not 24/7] -https://sc.id-tv.kz/AsylArna.m3u8 -#EXTINF:-1 tvg-id="AtamekenBusiness.kz",Atameken Business (576p) [Not 24/7] -https://sc.id-tv.kz/Atameken.m3u8 -#EXTINF:-1 tvg-id="AtamekenBusiness.kz",Atameken Business (1080p) [Not 24/7] -http://live-atameken.cdnvideo.ru/atameken/atameken.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CaspianNews.kz",Caspian News (576p) [Not 24/7] -https://sc.id-tv.kz/CaspianNews.m3u8 -#EXTINF:-1 tvg-id="DombyraTV.kz",Dombyra TV (576p) [Not 24/7] -https://sc.id-tv.kz/Dombyra.m3u8 -#EXTINF:-1 tvg-id="Gakku.kz",Gakku (576p) [Not 24/7] -https://sc.id-tv.kz/Gakku.m3u8 -#EXTINF:-1 tvg-id="HitTV.kz",Hit TV (576p) [Not 24/7] -https://sc.id-tv.kz/HitTV.m3u8 -#EXTINF:-1 tvg-id="",Алматы (576p) [Not 24/7] -https://sc.id-tv.kz/Almaty.m3u8 -#EXTINF:-1 tvg-id="",Алматы (720p) [Not 24/7] -http://live-almatytv.cdnvideo.ru/almatytv/almatytv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Астана (576p) [Not 24/7] -https://sc.id-tv.kz/Astana.m3u8 -#EXTINF:-1 tvg-id="ElArna.kz",Ел Арна (576p) [Not 24/7] -https://sc.id-tv.kz/ElArna.m3u8 -#EXTINF:-1 tvg-id="KMA.kz",КМА (1080p) [Not 24/7] -https://sc.id-tv.kz/KMA.m3u8 -#EXTINF:-1 tvg-id="KTK.kz",КТК (360p) [Not 24/7] -http://89.218.30.37/ktklive/live.hq/playlist.m3u8 -#EXTINF:-1 tvg-id="KTK.kz",КТК (576p) [Not 24/7] -https://sc.id-tv.kz/KTK.m3u8 -#EXTINF:-1 tvg-id="MTRK.kz",МТРК (576p) [Not 24/7] -https://tvcdn01.oktv.kz/tv/mtrk/playlist.m3u8 -#EXTINF:-1 tvg-id="Novoetelevidenie.kz",Новое телевидение (576p) [Not 24/7] -http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="STV.kz",СТВ (576p) [Not 24/7] -https://sc.id-tv.kz/STV.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar_24.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnAFKvDuqBGkIfV8Vn0J_CQ/live -#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] -http://serv30.vintera.tv:8081/habar/habar24/playlist.m3u8 -#EXTINF:-1 tvg-id="Habar24.kz",Хабар 24 (720p) [Not 24/7] -https://live-24kz.cdnvideo.ru/24kz/24kz.sdp/playlist.m3u8 diff --git a/streams/la.m3u b/streams/la.m3u deleted file mode 100644 index 1cebc3ee2..000000000 --- a/streams/la.m3u +++ /dev/null @@ -1,63 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AirTV.la",Air TV (720p) -https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="BrianTV.la",Brian TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="DaoLaneXang.la",Dao Lane Xang (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Dhammasapha TV (1080p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="GoodIdeaTV.la",Good Idea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongStarTV.la",Hmong Star TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongUSATV.la",HmongUSA TV (360p) -https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HoungFa.la",Houng Fa (720p) -https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.la",ISTV (480p) -https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KhomsanhTV.la",Khomsanh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV2.la",Lao Champa TV 2 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV3.la",Lao Champa TV 3 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV.la",Lao Champa TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.la",Lao Heritage Foundation TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoMuslimTV.la",Lao Muslim TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoNetTV.la",Lao Net TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoSVTV.la",Lao SV TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaosPlanetTV.la",Laos Planet TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LookThoongTV.la",Look Thoong TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LSTV.la",LS TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NATTV.vn",NAT TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ning TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OhMuangLaoTV.la",Oh Muang Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OyLaoTV.la",Oy Lao TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PNTV.la",PNTV (720p) -https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV2.la",Tea TV 2 (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV.la",Tea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="UniquelyThai.la",Uniquely Thai (720p) -https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VajtswvTxojlus.la",Vajtswv Txojlus (720p) -https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Vanphenh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Vati Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 diff --git a/streams/lb.m3u b/streams/lb.m3u deleted file mode 100644 index efdea87bc..000000000 --- a/streams/lb.m3u +++ /dev/null @@ -1,57 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AghaniAghani.lb",Aghani Aghani (1080p) [Not 24/7] -https://svs.itworkscdn.net/aghanilive/aghanilive/playlist.m3u8 -#EXTINF:-1 tvg-id="AlIttihad.lb",Al Ittihad (552p) [Not 24/7] -https://live.alittihad.tv/ittihad/index.m3u8 -#EXTINF:-1 tvg-id="AljadeedTv.lb",Al Jadeed (480p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7ztkw7 -#EXTINF:-1 tvg-id="AlManar.lb",Al Manar (576p) [Not 24/7] -https://manar.live/iptv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlManar.lb",Al Manar (576p) [Not 24/7] -https://manar.live/x.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Al Mayadeen (576p) -https://lmdstrm.cdn.octivid.com/mayadeen-live/smil:mayadeen.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlhayatTV.lb",Alhayat TV (720p) [Not 24/7] -https://wowzaprod140-i.akamaihd.net/hls/live/750788/7552102e/playlist.m3u8 -#EXTINF:-1 tvg-id="",Aliman TV (240p) [Not 24/7] -https://svs.itworkscdn.net/alimanlive/imantv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ArabicaMusic.lb",Arabica TV (720p) -http://istream.binarywaves.com:8081/hls/arabica/playlist.m3u8 -#EXTINF:-1 tvg-id="CharityTV.lb",CharityTV (1080p) [Not 24/7] -http://185.105.4.236:1935/live/ngrp:livestream_all/live.m3u8 -#EXTINF:-1 tvg-id="FutureTV.lb",Future TV (576p) [Not 24/7] -http://teledunet.com:8080/live/azrotv/azrotv2021/10007.m3u8 -#EXTINF:-1 tvg-id="LBCInternational.lb",LBC International (1080p) [Geo-blocked] -https://shls-lbci-prod-dub.shahid.net/out/v1/d8cce30036e743318a7f338539689968/index.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] -http://31.14.40.237:1935/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] -http://31.14.40.238:1935/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NabaaTV.lb",Nabaa TV (720p) [Not 24/7] -https://5dc7d824154d0.streamlock.net/live/Nabaa/playlist.m3u8 -#EXTINF:-1 tvg-id="NBN.lb",NBN (720p) [Not 24/7] -https://nbntv.me:8443/nbntv/index.m3u8 -#EXTINF:-1 tvg-id="Newvision.lb",Newvision (480p) [Not 24/7] -https://master.starmena-cloud.com/hls/newv.m3u8 -#EXTINF:-1 tvg-id="NourAlKoddas.lb",Nour Al Koddas (406p) [Not 24/7] -https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NourAlSharq.lb",Nour Al Sharq (576p) -https://svs.itworkscdn.net/nour8satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NourMariam.lb",Nour Mariam (576p) -https://svs.itworkscdn.net/nour9satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",NourSAT (576p) -https://svs.itworkscdn.net/nour4satlive/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",OTV (720p) [Not 24/7] -http://62.182.82.104/OTV/index.m3u8?token=test -#EXTINF:-1 tvg-id="",OTV (720p) [Not 24/7] -http://teledunet.com:8080/live/azrotv/azrotv2021/10015.m3u8 -#EXTINF:-1 tvg-id="",OTV (1080p) [Geo-blocked] -https://iptv-all.lanesh4d0w.repl.co/lebanon/otv -#EXTINF:-1 tvg-id="SawtElMada.lb",Sawt El Mada (460p) [Not 24/7] -https://svs.itworkscdn.net/madalive/mada/playlist.m3u8 -#EXTINF:-1 tvg-id="TahaTV.lb",Taha TV (360p) [Not 24/7] -https://media2.livaat.com/TAHA-TV/index.m3u8 -#EXTINF:-1 tvg-id="TeleLiban.lb",Tele Liban (720p) [Not 24/7] -https://cdn.catiacast.video/abr/ed8f807e2548db4507d2a6f4ba0c4a06/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSeventeen.lb",TV Seventeen (720p) -https://cdn.tvseventeen.com/test_tv_seventeen/index.m3u8 diff --git a/streams/li.m3u b/streams/li.m3u deleted file mode 100644 index 59d774cc9..000000000 --- a/streams/li.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KommuTV.li",Kommu TV (720p) [Not 24/7] -http://31.10.19.12:8066/live/999/0.m3u8 -#EXTINF:-1 tvg-id="MediashopTV.li",Mediashop TV (576p) -https://mediashop.akamaized.net/hls/live/2032402/Meine_Einkaufswelt/1.m3u8 diff --git a/streams/lk.m3u b/streams/lk.m3u deleted file mode 100644 index 79a8c118d..000000000 --- a/streams/lk.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Athavan TV (720p) [Not 24/7] -http://45.77.66.224:1935/athavantv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="",Channel Eye (480p) [Geo-blocked] -http://dammikartmp.tulix.tv/slrc2/slrc2/playlist.m3u8 -#EXTINF:-1 tvg-id="HiruTV.lk",Hiru TV (360p) [Not 24/7] -http://cdncities.com/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="",Hiru TV (360p) [Not 24/7] -https://eu10b.serverse.com:1936/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="",Rupavahini (480p) [Not 24/7] -http://dammikartmp.tulix.tv/slrc1/slrc1/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.lk",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 -#EXTINF:-1 tvg-id="SanthoraTV.lk",Santhora TV (720p) -http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 -#EXTINF:-1 tvg-id="SooriyanTV.lk",Sooriyan TV (810p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/Sooriyantv/Sooriyantv/playlist.m3u8 -#EXTINF:-1 tvg-id="SriSankaraTV.lk",Sri Sankara TV (360p) [Not 24/7] -https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",VerbumTV (414p) [Not 24/7] -https://verbumtv.livebox.co.in/verbumtvhls/live.m3u8 diff --git a/streams/lt.m3u b/streams/lt.m3u deleted file mode 100644 index bca3fcaa4..000000000 --- a/streams/lt.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KOKFights.lt",KOK Fights (720p) [Not 24/7] -https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LRTLituanica.lt",LRT Lituanica (720p) -https://lituanica-dvr.lrt.lt/lrt-ndvr/hls/lituanica_720p/index.m3u8 -#EXTINF:-1 tvg-id="M1.lt",M-1 (480p) -http://m-1.data.lt/m-1/smil:m-1.smil/chunklist_b1000000.m3u8 -#EXTINF:-1 tvg-id="tv3.lt",Power Hit Radio (720p) [Not 24/7] -https://baltlive.tv3.lt/studija/smil:studija.smil/playlist.m3u8 diff --git a/streams/lu.m3u b/streams/lu.m3u deleted file mode 100644 index 4795e7a55..000000000 --- a/streams/lu.m3u +++ /dev/null @@ -1,15 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChamberTV.lu",Chamber TV (1080p) -https://media02.webtvlive.eu/chd-edge/smil:chamber_tv_hd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="eldoTV.lu",eldo.TV (1080p) -https://eldo-streaming.eldo.lu/eldotv/smil:eldotv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JasminTV.lu",Jasmin TV (720p) -http://109.71.162.112/live/hd.jasminchannel.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JasminTV.lu",Jasmin TV (720p) -http://109.71.162.112/live/sd.jasminchannel.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL2.lu",RTL2 (1080p) -https://live-edge.rtl.lu/channel2/smil:channel2/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL.lu",RTL (1080p) -https://live-edge.rtl.lu/channel1/smil:channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTL.lu",RTL (1080p) -https://rtlradio-streaming.rtl.lu/rtlradiowebtv/smil:rtlradiowebtv/playlist.m3u8 diff --git a/streams/lu_samsung.m3u b/streams/lu_samsung.m3u deleted file mode 100644 index a15c36ccb..000000000 --- a/streams/lu_samsung.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews Français (720p) -https://rakuten-africanews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-lu.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Français (720p) [Offline] -https://rakuten-euronews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/lv.m3u b/streams/lv.m3u deleted file mode 100644 index 8946de1dd..000000000 --- a/streams/lv.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChauTV.lv",Chau TV [Offline] -https://video.chaula.tv/hls/live/high/playlist_high.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio1.lv",Latvijas Radio 1 (360p) [Not 24/7] -https://5a44e5b800a41.streamlock.net/liveVLR1/mp4:LR1/playlist.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio2.lv",Latvijas Radio 2 (240p) -https://5a44e5b800a41.streamlock.net/liveVLR2/mp4:LR2/playlist.m3u8 -#EXTINF:-1 tvg-id="LatvijasRadio3Klasika.lv",Latvijas Radio 3 Klasika (240p) -https://5a44e5b800a41.streamlock.net/liveVLR3/mp4:Klasika/playlist.m3u8 -#EXTINF:-1 tvg-id="TVNET.lv",TVNET (360p) -https://player.tvnet.lv/stream/amlst:61659/playlist.m3u8 diff --git a/streams/ly.m3u b/streams/ly.m3u deleted file mode 100644 index 4c213e4bc..000000000 --- a/streams/ly.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlwasatTV.ly",Alwasat TV (1080p) [Not 24/7] -https://hiplayer.hibridcdn.net/t/alwasattv-live.m3u8 -#EXTINF:-1 tvg-id="FebruaryTV.ly",February TV [Offline] -https://linkastream.co/headless?url=https://www.youtube.com/c/FebruaryTv/live -#EXTINF:-1 tvg-id="JamahiriaTV.ly",Jamahiria TV (480p) [Not 24/7] -https://master.starmena-cloud.com/hls/jam.m3u8 -#EXTINF:-1 tvg-id="Libya218.ly",Libya 218 (1080p) [Not 24/7] -https://stream.218tv.net/libya218TV/playlist.m3u8 -#EXTINF:-1 tvg-id="Libya218News.ly",Libya 218 News (1080p) [Not 24/7] -http://95.85.47.43/libya218news/playlist.m3u8 -#EXTINF:-1 tvg-id="Libya218News.ly",Libya 218 News (1080p) [Not 24/7] -https://stream.218tv.net/libya218news/playlist.m3u8 -#EXTINF:-1 tvg-id="LibyaAlAhrarTV.ly",Libya Al Ahrar TV (720p) [Not 24/7] -https://video.zidivo.com/live983/GrtjM_FNGC/playlist.m3u8 -#EXTINF:-1 tvg-id="",Libya Al Hadath (576p) [Not 24/7] -https://master.starmena-cloud.com/hls/hd.m3u8 -#EXTINF:-1 tvg-id="LibyaChannel.ly",Libya Channel (576p) [Not 24/7] -https://master.starmena-cloud.com/hls/libyas.m3u8 -#EXTINF:-1 tvg-id="Tanasuh.ly",Tanasuh (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRaoHR6b3zViY9QxfgFNntQ/live diff --git a/streams/ma.m3u b/streams/ma.m3u deleted file mode 100644 index 6b7f79e2e..000000000 --- a/streams/ma.m3u +++ /dev/null @@ -1,47 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="2MMonde.ma",2M Monde (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/2m_monde/hls_video_ts_hy217612tge1f21j83/2m_monde.m3u8 -#EXTINF:-1 tvg-id="AlAoula.ma",Al Aoula (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoula.ma",Al Aoula (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma",Al Aoula Laayoune (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma",Al Aoula Laayoune (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlMaghribia.ma",Al Maghribia (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="AlMaghribia.ma",Al Maghribia (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arrabiaa.ma",Arrabiaa (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arrabiaa.ma",Arrabiaa (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arryadia.ma",Arryadia (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/arriadia/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Arryadia.ma",Arryadia (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arriadia/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Assadissa.ma",Assadissa (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/assadissa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Assadissa.ma",Assadissa (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/assadissa/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="CanalAtlasFight.ma",Canal Atlas Fight (616p) [Offline] -https://edge.vedge.infomaniak.com/livecast/ik:atlasfight/manifest.m3u8 -#EXTINF:-1 tvg-id="M24TV.ma",M24 TV (720p) [Not 24/7] -http://79.137.106.241/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="M24TV.ma",M24 TV (720p) [Not 24/7] -https://www.m24tv.ma/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MaghrebArabePress.ma",Maghreb Arabe Press (720p) [Not 24/7] -https://www.maptvnews.ma/live/smil:OutStream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVAfrique.ma",Medi 1 TV Afrique (720p) [Not 24/7] -http://streaming2.medi1tv.com/live/smil:medi1fr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVArabic.ma",Medi 1 TV Arabic (1080p) [Not 24/7] -http://5f72f3a9b06b7.streamlock.net/live/smil:medi1ar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Medi1TVMaghreb.ma",Medi 1 TV Maghreb (1080p) [Not 24/7] -http://streaming1.medi1tv.com/live/smil:medi1tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Tamazight.ma",Tamazight (360p) [Geo-blocked] -http://cdn-hls.globecast.tv/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="Tamazight.ma",Tamazight (360p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 -#EXTINF:-1 tvg-id="TeleMaroc.ma",Télé Maroc (1080p) -https://api.new.livestream.com/accounts/27130247/events/8196478/live.m3u8 diff --git a/streams/mc.m3u b/streams/mc.m3u deleted file mode 100644 index 42138f25f..000000000 --- a/streams/mc.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MonacoInfo.mc",Monaco Info (720p) [Not 24/7] -https://webtvmonacoinfo.mc/live/prod_720/index.m3u8 diff --git a/streams/md.m3u b/streams/md.m3u deleted file mode 100644 index 34fd7ce4a..000000000 --- a/streams/md.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AcasaTV.md",Acasa TV (576p) -http://hls.protv.md/acasatv/acasatv.m3u8 -#EXTINF:-1 tvg-id="BaltiTV.md",Bălţi TV (1080p) [Geo-blocked] -http://77.89.199.174:8000/play/1024/index.m3u8 -#EXTINF:-1 tvg-id="CanalRegional.md",Canal Regional (576p) [Not 24/7] -https://canalregional.md/tv/live/canalregional.m3u8 -#EXTINF:-1 tvg-id="Drochia.md",Drochia (1080p) [Not 24/7] -https://hls.drochia.tv/tv/web.m3u8 -#EXTINF:-1 tvg-id="ElitaTV.md",Elita TV (576p) [Timeout] -http://46.55.111.242:8080/Rezina.m3u8 -#EXTINF:-1 tvg-id="Moldova1.md",Moldova1 (1080p) [Offline] -http://212.0.209.209:1935/live/M1Mlive/playlist.m3u8 -#EXTINF:-1 tvg-id="Moldova2.md",Moldova2 (1080p) [Offline] -http://212.0.209.209:1935/live/M2Mlive/playlist.m3u8 -#EXTINF:-1 tvg-id="NorocTV.md",Noroc TV (576p) -http://live.noroc.tv/hls/noroctv_chisinau.m3u8 -#EXTINF:-1 tvg-id="PublikaTV.md",Publika TV (540p) -https://livebeta.publika.md/LIVE/P/1500.m3u8 -#EXTINF:-1 tvg-id="PublikaTV.md",Publika TV (720p) -http://livebeta.publika.md/LIVE/P/6810.m3u8 -#EXTINF:-1 tvg-id="TeleM.md",Tele M [Offline] -http://webmobile.xdev.ro:81/tv16/playlist.m3u8 -#EXTINF:-1 tvg-id="VoceaBasarabieiTV.md",Vocea Basarabiei TV (406p) [Not 24/7] -http://hls.voceabasarabiei.md/hls/vocea_basarabiei.m3u8 -#EXTINF:-1 tvg-id="",ТНТ Exclusiv TV (576p) -http://89.28.25.122/hls/tnt_md.m3u8 diff --git a/streams/me.m3u b/streams/me.m3u deleted file mode 100644 index effc0bd6e..000000000 --- a/streams/me.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TelevizijaTV7.me",Televizija TV7 (480p) [Timeout] -http://109.123.70.27:1935/tehnikatv777/tehnikatv777/index.m3u8 -#EXTINF:-1 tvg-id="TelevizijaTV7.me",Televizija TV7 (480p) [Timeout] -http://109.123.70.27:1935/tehnikatv777/tehnikatv777/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCG1.me",TVCG 1 (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cg1/smil:cg1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCG2.me",TVCG 2 (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cg2/smil:cg2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) -http://rtcg3.videostreaming.rs:1935/rtcg/smil:rtcg.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] -http://cdn3.bcdn.rs:1935/cgsat/smil:cgsat.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] -http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.1.stream/index.m3u8 -#EXTINF:-1 tvg-id="TVCGSat.me",TVCG Sat (720p) [Not 24/7] -http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.2.stream/playlist.m3u8 diff --git a/streams/mk.m3u b/streams/mk.m3u deleted file mode 100644 index 852ba2d36..000000000 --- a/streams/mk.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KohaTV.mk",Koha TV (720p) [Offline] -rtmp://live.tvkoha.tv:1935/live/koha/livestream -#EXTINF:-1 tvg-id="LiveTVHD.mk",LiveTV HD [Offline] -rtmp://live.livetvhd.cf/live/livetvhd -#EXTINF:-1 tvg-id="SkyFolkTV.mk",Sky Folk TV (720p) [Not 24/7] -https://eu.live.skyfolk.mk/live.m3u8 -#EXTINF:-1 tvg-id="SkyFolkTV.mk",Sky Folk TV (720p) [Not 24/7] -https://skyfolk.mk/live.m3u8 -#EXTINF:-1 tvg-id="TVPlus.mk",TVPlus [Timeout] -http://141.136.14.18/kanal1/kanal1.m3u8 diff --git a/streams/ml.m3u b/streams/ml.m3u deleted file mode 100644 index 3d3e1758b..000000000 --- a/streams/ml.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ORTM1.ml",ORTM1 (576p) [Not 24/7] -http://51.210.1.13:18000/ortm/hls/playlist.m3u8 diff --git a/streams/mm.m3u b/streams/mm.m3u deleted file mode 100644 index b3ac41cb2..000000000 --- a/streams/mm.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChannelK.mm",Channel K [Offline] -https://d3cs5y5559s57s.cloudfront.net/live/channelk.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports1.mm",Sky Net Sports 1 (480p Scaled) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport1_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports2.mm",Sky Net Sports 2 (480p Scaled) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport2_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports3.mm",Sky Net Sports 3 (480p Scaled) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport3_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports4.mm",Sky Net Sports 4 (480p Scaled) (720p) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport4_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports5.mm",Sky Net Sports 5 (480p Scaled) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport5_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports6.mm",Sky Net Sports 6 (480p Scaled) (720p) [Not 24/7] -https://www.livedoomovie.com/03_skynetsport6_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SkyNetSports.mm",Sky Net Sports (720p) [Not 24/7] -https://www.livedoomovie.com/03_skynetsporthd_720p/chunklist.m3u8 diff --git a/streams/mn.m3u b/streams/mn.m3u deleted file mode 100644 index f8ee90e34..000000000 --- a/streams/mn.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MongolynMedee.mn",Монголын Мэдээ (576p) [Offline] -http://103.14.38.107:1935/live/mn2.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="MUONT1.mn",МҮОНТ-1 (576p) [Offline] -http://103.14.38.107:1935/live/mnb.stream/chunklist.m3u8 diff --git a/streams/mo.m3u b/streams/mo.m3u deleted file mode 100644 index c15c087b8..000000000 --- a/streams/mo.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalMacau.mo",Canal Macau (720p) [Not 24/7] -http://live4.tdm.com.mo/ch2/_definst_/ch2.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMInfoMacau.mo",TDM Info. Macau (720p) [Not 24/7] -http://live4.tdm.com.mo/ch5/_definst_/info_ch5.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMMacau.mo",TDM Macau (720p) -http://live4.tdm.com.mo/ch1/_definst_/ch1.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMMacauSatelite.mo",TDM Macau Satelite (720p) -http://live4.tdm.com.mo/ch3/_definst_/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="TDMSportsMacau.mo",TDM Sports Macau (720p) -http://live4.tdm.com.mo/ch4/_definst_/sport_ch4.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳视澳门 (720p) -http://live3.tdm.com.mo:1935/ch1/ch1.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳門綜藝 (720p) -http://live4.tdm.com.mo/ch6/_definst_/hd_ch6.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳门体育 (720p) -http://live3.tdm.com.mo:1935/ch4/sport_ch4.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳门卫星 (720p) -http://live3.tdm.com.mo:1935/ch3/ch3.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳门综艺 (720p) [Not 24/7] -http://live2.tdm.com.mo:1935/ch6/hd_ch6.live/playlist.m3u8 -#EXTINF:-1 tvg-id="",澳门资讯 (720p) -http://live3.tdm.com.mo:1935/ch5/info_ch5.live/playlist.m3u8 diff --git a/streams/mq.m3u b/streams/mq.m3u deleted file mode 100644 index c101fb75e..000000000 --- a/streams/mq.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="EsperanceTV.mq",Espérance TV (720p) [Not 24/7] -https://hcinteram.mmdlive.lldns.net/hcinteram/5fb30e8b271544039e79f93d4d496b25/manifest.m3u8 -#EXTINF:-1 tvg-id="",Martinique la 1ère (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgA9V57lQlZFXkDfhVGTWSg/live diff --git a/streams/mt.m3u b/streams/mt.m3u deleted file mode 100644 index 71ec13798..000000000 --- a/streams/mt.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ONE.mt",One (720p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_124/201830-1293592-1/playlist.m3u8 -#EXTINF:-1 tvg-id="SmashTV.mt",Smash TV (720p) [Not 24/7] -http://s3.smashmalta.com/hls/smash/smash.m3u8 -#EXTINF:-1 tvg-id="TVM.mt",TVM (360p) [Not 24/7] -https://iptv--iptv.repl.co/Maltese/TVM diff --git a/streams/mv.m3u b/streams/mv.m3u deleted file mode 100644 index 2fea28365..000000000 --- a/streams/mv.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="VTV.mv",VTV (1080p) -http://vtvstreaming.myvnc.com:1935/vtvlive/vmedia/chunklist.m3u8 diff --git a/streams/mw.m3u b/streams/mw.m3u deleted file mode 100644 index 979df579c..000000000 --- a/streams/mw.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="MBC.mw",MBC (614p) [Not 24/7] -http://41.216.229.205:8080/live/livestream/index.m3u8 diff --git a/streams/mx.m3u b/streams/mx.m3u deleted file mode 100644 index 7a6673490..000000000 --- a/streams/mx.m3u +++ /dev/null @@ -1,203 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ADN40.mx",ADN 40 (480p) -https://mdstrm.com/live-stream-playlist/60b578b060947317de7b57ac.m3u8 -#EXTINF:-1 tvg-id="ADN40.mx",ADN 40 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7k--FhnJzhPTrbtldMSoQQ/live -#EXTINF:-1 tvg-id="AlcarriaTV.mx",Alcarria TV (576p) [Not 24/7] -http://217.182.77.27/live/alcarriatv-livestream.m3u8 -#EXTINF:-1 tvg-id="AMXNoticias.mx",AMX Noticias (720p) [Not 24/7] -https://5e50264bd6766.streamlock.net/mexiquense2/videomexiquense2/playlist.m3u8 -#EXTINF:-1 tvg-id="",Azcorazon (480p) [Offline] -http://181.115.72.65:8099/play/a016/index.m3u8 -#EXTINF:-1 tvg-id="",Azmundo (480p) [Offline] -http://181.115.72.65:8099/play/a025/index.m3u8 -#EXTINF:-1 tvg-id="XHJKTDT.mx",Azteca Uno (XHJK-TDT) (480p) [Not 24/7] -http://190.122.96.187:8888/http/002 -#EXTINF:-1 tvg-id="Canal5.mx",Canal 5 (480p) [Offline] -http://45.174.77.243:8000/play/a0fl/index.m3u8 -#EXTINF:-1 tvg-id="Canal8CostaRica.mx",Canal 8 Costa Rica (720p) -https://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 -#EXTINF:-1 tvg-id="Canal10Cancun.mx",Canal 10 Cancún (720p) [Not 24/7] -http://stream2.dynalias.com:1935/live/tvlive1/playlist.m3u8 -#EXTINF:-1 tvg-id="XEWTTDT.mx",Canal 12 (XETW-TDT) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjwXjnO3BGePtB7gSKEpoqA/live -#EXTINF:-1 tvg-id="Canal28.mx",Canal 28 (720p) [Not 24/7] -https://api.new.livestream.com/accounts/3789491/events/8003011/live.m3u8 -#EXTINF:-1 tvg-id="Canal44.mx",Canal 44 Chihuahua (720p) [Not 24/7] -https://5e50264bd6766.streamlock.net/canal442/videocanal442/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal44.mx",Canal 44 Ciudad Juárez (720p) [Geo-blocked] -https://5e50264bd6766.streamlock.net/canal44/videocanal44/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalCatorce.mx",Canal Catorce (720p) -https://d3nljkrx6mjqra.cloudfront.net/out/v1/1b9d9efd27814b3b8dc570113ae54409/index.m3u8 -#EXTINF:-1 tvg-id="CanaldelasEstrellas.mx",Canal de Las Estrellas (480p) [Offline] -http://170.83.242.153:8000/play/a012 -#EXTINF:-1 tvg-id="CanalMundoPlus.mx",Canal Mundo+ (560p) [Not 24/7] -http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 -#EXTINF:-1 tvg-id="Capital21.mx",Capital 21 (720p) [Not 24/7] -https://video.cdmx.gob.mx/livestream/stream.m3u8 -#EXTINF:-1 tvg-id="ClaroCinema.mx",Claro Cinema (480p) [Offline] -http://170.83.242.153:8000/play/a00d -#EXTINF:-1 tvg-id="ClaroSinLimites.mx",Claro Sin Limites (480p) [Offline] -http://170.83.242.153:8000/play/a01k -#EXTINF:-1 tvg-id="ClaroSports.mx",Claro Sports (480p) -http://45.179.140.242:8000/play/a0ht -#EXTINF:-1 tvg-id="ConectaTV.mx",Conecta TV (720p) -http://204.12.211.210:1935/conectatv/conectatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CortTV.mx",CorTV (800p) -https://stream.oursnetworktv.com/latin/encoder29/playlist.m3u8 -#EXTINF:-1 tvg-id="",Energía Musical TV (360p) [Not 24/7] -https://ss2.domint.net:3224/emtv_str/energiamusical/playlist.m3u8 -#EXTINF:-1 tvg-id="",ForoTV (720p) [Geo-blocked] -https://live-streams-notusa.televisa.com/channel02-b/index.m3u8 -#EXTINF:-1 tvg-id="GenesisTV.mx",Genesis TV (720p) [Not 24/7] -http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GoldenLatinoamerica.mx",Golden Latinoamérica (720p) [Not 24/7] -https://cloud2.streaminglivehd.com:1936/8026/8026/playlist.m3u8 -#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx",Hipodromo de las Americas (360p) [Not 24/7] -http://wms10.tecnoxia.com/soelvi/slv423/playlist.m3u8 -#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx",Hipódromo de las Américas (480p) [Geo-blocked] -http://wms.tecnoxia.com:1935/8158/8158/playlist.m3u8 -#EXTINF:-1 tvg-id="IcrtvColima.mx",Icrtv Colima (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal11/videocanal11/playlist.m3u8 -#EXTINF:-1 tvg-id="ImagenMulticast.mx",Imagen Multicast (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClqo4ZAAZ01HQdCTlovCgkA/live -#EXTINF:-1 tvg-id="ImagenRadio.mx",Imagen Radio (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCB0BUmdBOrH9mYU2ebs1eWA/live -#EXTINF:-1 tvg-id="",Imagen TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82z4if -#EXTINF:-1 tvg-id="JaliscoTV.mx",Jalisco TV (720p) [Geo-blocked] -https://5fa5de1a545ae.streamlock.net/sisjalisciense/sisjalisciense/playlist.m3u8 -#EXTINF:-1 tvg-id="LaOctava.mx",La Octava TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x80mow9 -#EXTINF:-1 tvg-id="MariaVisionMexico.mx",María Visión Mexico (360p) [Not 24/7] -https://1601580044.rsc.cdn77.org/live/_jcn_/amlst:Mariavision/master.m3u8 -#EXTINF:-1 tvg-id="MexicoTravelChannel.mx",México Travel Channel (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7v76vf -#EXTINF:-1 tvg-id="MexiquenseTV.mx",Mexiquense TV (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/mexiquense/videomexiquense/playlist.m3u8 -#EXTINF:-1 tvg-id="Milenio.mx",Milenio Televisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFxHplbcoJK9m70c4VyTIxg/live -#EXTINF:-1 tvg-id="MonteMaria.mx",Monte Maria (720p) [Timeout] -https://rbaca.livestreamingcdn.com/envivo3/smil:live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MultimediosGuadalajara.mx",Multimedios Guadalajara (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5c54d38ca392a5119bb0aa0d.m3u8 -#EXTINF:-1 tvg-id="MultimediosLaguna.mx",Multimedios Laguna (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/57bf686a61ff39e1085d43e1.m3u8 -#EXTINF:-1 tvg-id="MultimediosMonterrey.mx",Multimedios Monterrey (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/57b4dbf5dbbfc8f16bb63ce1.m3u8 -#EXTINF:-1 tvg-id="",Multipremier (480p) [Timeout] -http://201.168.205.12:8000/play/a0cp/index.m3u8 -#EXTINF:-1 tvg-id="MVMNoticias.mx",MVM Noticias (Oaxaca) (400p) [Not 24/7] -https://dcunilive21-lh.akamaihd.net/i/dclive_1@59479/master.m3u8 -#EXTINF:-1 tvg-id="NoticiasCanal10.mx",Noticias Canal 10 (360p) [Not 24/7] -https://canal10.mediaflix.istream.mx/wza_live/live/movil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceInternacional.mx",Once Internacional [Offline] -http://live.canaloncelive.tv:1935/livepkgr2/smil:internacional.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceMexico.mx",Once Mexico (720p) [Not 24/7] -http://live.canaloncelive.tv/livepkgr/smil:nacional.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OnceMexico.mx",Once Mexico (720p) [Not 24/7] -https://live2.canaloncelive.tv/livepkgr3/cepro/playlist.m3u8 -#EXTINF:-1 tvg-id="XHTJBTDT.mx",Once Niñas y Niños (XHTJB-TDT) (432p) [Offline] -https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt2.m3u8 -#EXTINF:-1 tvg-id="XHTJBTDT.mx",Once TV (XHTJB-TDT) (1080p) [Offline] -https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt.m3u8 -#EXTINF:-1 tvg-id="POPTV.mx",POP TV (542p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico3/smil:obregon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="QuieroTV.mx",Quiero TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8452uw -#EXTINF:-1 tvg-id="RCGTV2.mx",RCG TV 2 (360p) [Not 24/7] -http://wowzacontrol.com:1936/stream23/stream23/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV2.mx",RCG TV 2 (360p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/stream23/stream23/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV3.mx",RCG TV 3 (360p) [Not 24/7] -http://wowzacontrol.com:1936/stream56/stream56/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV3.mx",RCG TV 3 (360p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/stream56/stream56/playlist.m3u8 -#EXTINF:-1 tvg-id="RCGTV.mx",RCG TV (1080p) -https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8 -#EXTINF:-1 tvg-id="RTQQueretaro.mx",RTQ Queretaro (360p) [Not 24/7] -http://wms.tecnoxia.com:1935/rytqrolive/rytqrolive/master.m3u8 -#EXTINF:-1 tvg-id="SetPuebla.mx",SET Televisión Canal 26.1 (720p) [Not 24/7] -http://189.240.210.28:1935/envivo/puecom/playlist.m3u8 -#EXTINF:-1 tvg-id="SetPuebla.mx",SET Televisión Canal 26.2 (720p) [Not 24/7] -http://189.240.210.28:1935/live/setpuebla/playlist.m3u8 -#EXTINF:-1 tvg-id="sintesistv.mx",SintesisTV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/sintesistv -#EXTINF:-1 tvg-id="TELESISTEMACANAL9.mx",TELE SISTEMA CANAL 9 (486p) [Geo-blocked] -http://k4.usastreams.com/ARBtv/ARBtv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Telefórmula (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7u0spq -#EXTINF:-1 tvg-id="TelemarCampeche.mx",Telemar Campeche (480p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/8410/8410/playlist.m3u8 -#EXTINF:-1 tvg-id="XEWHTDT.mx",Telemax (XEWH-TDT) (720p) -http://s5.mexside.net:1935/telemax/telemax/playlist.m3u8 -#EXTINF:-1 tvg-id="Teleritmo.mx",Teleritmo (720p) [Geo-blocked] -http://mdstrm.com/live-stream-playlist/57b4dc126338448314449d0c.m3u8 -#EXTINF:-1 tvg-id="TelevisaAguascalientes.mx",Televisa Aguascalientes (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5ZtV3bu3bjSuOLoA6oCFIg/live -#EXTINF:-1 tvg-id="TelevisaChihuahua.mx",Televisa Chihuahua (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjfxDe7In59Jbfw2HmIh_Vg/live -#EXTINF:-1 tvg-id="TelevisaCiudadJuarez.mx",Televisa Ciudad Juarez (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCot4t8PVKz8TT5xVM8Eb00w/live -#EXTINF:-1 tvg-id="",Televisa Del Bajio [Offline] -http://viptv-query/?streaming-ip=https://www.youtube.com/channel/UC-uYy4_jIvDoJ4wigEv1S5A/live -#EXTINF:-1 tvg-id="TelevisaDelGolfo.mx",Televisa Del Golfo [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQ08tNTPiBn44c975S81ftg/live -#EXTINF:-1 tvg-id="TelevisaEstado.mx",Televisa Estado (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9DH82HVSf4katwMeUpY80w -#EXTINF:-1 tvg-id="TelevisaGuadalajara.mx",Televisa Guadalajara (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRujF_YxVVFmTRWURQH-Cww/live -#EXTINF:-1 tvg-id="TelevisaGuerrero.mx",Televisa Guerrero (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnxTRk2K1iNsQkgpWXxyj4w/live -#EXTINF:-1 tvg-id="TelevisaLaguna.mx",Televisa Laguna (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC_mwCcsKDJLSWjply5s0h8w/live -#EXTINF:-1 tvg-id="TelevisaMexicali.mx",Televisa Mexicali (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcmuFsMIIIHO3LBqeBVfm8Q/live -#EXTINF:-1 tvg-id="TelevisaMonterrey.mx",Televisa Monterrey (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCGDJLLphnP0zQQaE3kgo5Wg/live -#EXTINF:-1 tvg-id="TelevisaMorelos.mx",Televisa Morelos [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcC9ykApQrgl4UxbKg2U4zw/live -#EXTINF:-1 tvg-id="TelevisaNewsMexico.mx",Televisa News Mexico (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCUsm-fannqOY02PNN67C0KA/live -#EXTINF:-1 tvg-id="TelevisaNoreste.mx",Televisa Noreste (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC752DYv5vPlTSMrvEjfZXcw/live -#EXTINF:-1 tvg-id="TelevisaPiedrasNegras.mx",Televisa Piedras Negras (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCxK8C1E8UZ5RipNXIBYEvTA/live -#EXTINF:-1 tvg-id="TelevisaPuebla.mx",Televisa Puebla [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC-HNztluSQSffhIWJTL-LUw/live -#EXTINF:-1 tvg-id="TelevisaQueretaro.mx",Televisa Queretaro [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9QNz6VS3gGz55dzxAQtgtA/live -#EXTINF:-1 tvg-id="",Televisa San Luis Potosí (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCaRuyaHshLdq462E9_pLzdA/live -#EXTINF:-1 tvg-id="TelevisaSinaloa.mx",Televisa Sinaloa [Timeout] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtm1LvYEIQ_NrfOUVJ08YhQ/live -#EXTINF:-1 tvg-id="TelevisaSonora.mx",Televisa Sonora (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCyzWMHGS7bs0sot6KZk5EZg/live -#EXTINF:-1 tvg-id="TelevisaVeracruz.mx",Televisa Veracruz (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5EnLdE7ASjYzWt7wvT-QSg/live -#EXTINF:-1 tvg-id="TelevisaZacatecas.mx",Televisa Zacatecas (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQb3i7gu9J8A4zzQU7j6C1Q/live -#EXTINF:-1 tvg-id="",Tlaxcala Televisión (360p) [Not 24/7] -https://vid.mega00.com:5443/LiveApp/streams/928111829917388844551988/928111829917388844551988.m3u8?token=null -#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx",Transmedia Televisión Morelia (614p) [Not 24/7] -http://streamingcws20.com:1935/tmtv/videotmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx",Transmedia Televisión Morelia (614p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/tmtv/videotmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVLobo.mx",TV Lobo (720p) [Not 24/7] -http://streamingcws20.com:1935/lobodurango/videolobodurango/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Unam (720p) -https://5ca3e84a76d30.streamlock.net/tvunam/videotvunam/playlist.m3u8?DVR= -#EXTINF:-1 tvg-id="XHGVTDT.mx",TVMÁS (XHGV-TDT) (360p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/rtv/videortv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVP.mx",TVP (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico4/smil:mazatlan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",TVP Culiacán (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico1/smil:gpculiacan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPLosMochis.mx",TVP Los Mochis (720p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico2/mochis.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPObregon.mx",TVP Obregón (542p) [Not 24/7] -https://5ca3e84a76d30.streamlock.net/gpacifico3/obregon.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UDG44.mx",UDG44 TV (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3m1xfy -#EXTINF:-1 tvg-id="UnoTV.mx",Uno TV (720p) [Not 24/7] -https://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8 diff --git a/streams/mx_samsung.m3u b/streams/mx_samsung.m3u deleted file mode 100644 index 0f35be8f2..000000000 --- a/streams/mx_samsung.m3u +++ /dev/null @@ -1,31 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArcadeCloudMexico.us",Arcade Cloud (Mexico) (720p) [Offline] -https://arcade-cloud-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-5-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DemandAfricaMexico.us",Demand Africa (Mexico) (1080p) -https://demandafrica-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) -https://euronews-euronews-spanish-2-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-11-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetworkMexico.us",MyTime movie network Mexico (720p) -https://appletree-mytime-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeMexico.us",People are Awesome Mexico (720p) [Offline] -https://jukin-peopleareawesome-2-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeMexico.us",Runtime (Mexico) (1080p) -https://runtimemx-samsungmx.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Not 24/7] -https://samsung-mx.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) -https://tastemadees16intl-samsungmexico.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveMexico.us",The Pet Collective Mexico (720p) [Offline] -https://the-pet-collective-international-mx.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpyMexico.us",WeatherSpy Mexico (720p) [Offline] -https://jukin-weatherspy-2-mx.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/my.m3u b/streams/my.m3u deleted file mode 100644 index 7ce3c3c1d..000000000 --- a/streams/my.m3u +++ /dev/null @@ -1,39 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AstroAwani.my",Astro Awani (720p) [Not 24/7] -https://awanitv.akamaized.net/hls/live/2017836/LiveTV1/index.m3u8 -#EXTINF:-1 tvg-id="AstroVaanavil.my",Astro Vaanavil [Geo-blocked] -https://agsplayback01.astro.com.my/CH3/master_VAANGOSHOP5.m3u8 -#EXTINF:-1 tvg-id="BeritaRTM.my",Berita RTM (1080p) -https://rtmlive03tv.secureswiftcontent.com/rtmchannel/03-manifest.mpd -#EXTINF:-1 tvg-id="BernamaTV.my",Bernama TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcZg5r9hBqK_VPUT2I7eYVw/live -#EXTINF:-1 tvg-id="CinemaWorld.my",CinemaWorld (576p) [Geo-blocked] -http://210.210.155.35/uq2663/h/h04/index.m3u8 -#EXTINF:-1 tvg-id="DramaSangat.my",Drama Sangat (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/Drama_Sangat.m3u8 -#EXTINF:-1 tvg-id="Hello.my",Hello [Geo-blocked] -https://agsplayback01.astro.com.my/CH1/master_HELLOGOSHOP6.m3u8 -#EXTINF:-1 tvg-id="MaahTV.my",Maah TV (720p) [Not 24/7] -http://51.210.199.33/hls/stream.m3u8 -#EXTINF:-1 tvg-id="NTV7.my",NTV 7 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/DidikTVKPM.m3u8 -#EXTINF:-1 tvg-id="OKEY.my",OKEY (1080p) -https://rtmlive02tv.secureswiftcontent.com/rtmchannel/02-manifest.mpd -#EXTINF:-1 tvg-id="SukanRTM.my",Sukan RTM (1080p) -https://rtmlive06tv.secureswiftcontent.com/rtmchannel/06-manifest.mpd -#EXTINF:-1 tvg-id="TV1.my",TV1 (1080p) -https://rtmlive01tv.secureswiftcontent.com/rtmchannel/01-manifest.mpd -#EXTINF:-1 tvg-id="TV2.my",TV2 (1080p) -https://rtmlive05tv.secureswiftcontent.com/rtmchannel/05-manifest.mpd -#EXTINF:-1 tvg-id="TV3.my",TV3 (720p) [Timeout] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV3.m3u8 -#EXTINF:-1 tvg-id="TV6.my",TV6 (1080p) -https://rtmlive07tv.secureswiftcontent.com/rtmchannel/07-manifest.mpd -#EXTINF:-1 tvg-id="TV8.my",TV8 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/8TV.m3u8 -#EXTINF:-1 tvg-id="TV9.my",TV9 (480p) [Not 24/7] -https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV9.m3u8 -#EXTINF:-1 tvg-id="TVIKIM.my",TVIKIM (720p) [Not 24/7] -http://edge.vediostream.com/abr/tvikim/playlist.m3u8 -#EXTINF:-1 tvg-id="TVS.my",TVS (576p) [Geo-blocked] -https://agsplayback01.astro.com.my/CH1/master_AGS_TVS.m3u8 diff --git a/streams/mz.m3u b/streams/mz.m3u deleted file mode 100644 index 3d885a942..000000000 --- a/streams/mz.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",TV Maná Moçambique (576p) [Not 24/7] -http://c3.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM.mz",TVM (480p) -http://196.28.226.121:1935/live/smil:Channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVM.mz",TVM (480p) [Not 24/7] -http://online.tvm.co.mz:1935/live/smil:Channel1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMInternacional.mz",TVM Internacional (480p) [Not 24/7] -http://online.tvm.co.mz:1935/live/smil:Channel2.smil/playlist.m3u8 diff --git a/streams/ne.m3u b/streams/ne.m3u deleted file mode 100644 index c8d5ea5bd..000000000 --- a/streams/ne.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TeleSahel.ne",Télé Sahel (480p) [Geo-blocked] -https://iptv--iptv.repl.co/French/tele_sahel diff --git a/streams/ng.m3u b/streams/ng.m3u deleted file mode 100644 index 8dfd55bf7..000000000 --- a/streams/ng.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AfricaTV1.ng",Africa TV1 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 -#EXTINF:-1 tvg-id="AfricaTV2.ng",Africa TV2 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="AfricaTV3.ng",Africa TV3 (720p) [Not 24/7] -http://africatv.live.net.sa:1935/live/africatv3/playlist.m3u8 -#EXTINF:-1 tvg-id="Channels24.ng",Channels 24 [Offline] -http://93.152.174.144:4000/play/ch24ng/index.m3u8 -#EXTINF:-1 tvg-id="ComedyChannel.ng",Comedy Channel [Offline] -http://93.152.174.144:4000/play/comedych/index.m3u8 -#EXTINF:-1 tvg-id="EMTV.ng",EM.tv [Offline] -http://93.152.174.144:4000/play/kingsword/index.m3u8 -#EXTINF:-1 tvg-id="EmmanuelTV.ng",Emmanuel TV (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/23202872/events/7200883/live.m3u8 -#EXTINF:-1 tvg-id="LagosTelevision.ng",Lagos Television (360p) [Not 24/7] -http://185.105.4.193:1935/ltv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="NTAInternational.ng",NTA International (576p) [Not 24/7] -https://api.visionip.tv/live/ASHTTP/visiontvuk-entertainment-ntai-hsslive-25f-4x3-MB/playlist.m3u8 diff --git a/streams/ni.m3u b/streams/ni.m3u deleted file mode 100644 index f0dd96361..000000000 --- a/streams/ni.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal6.ni",Canal 6 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/canal6nicaraguaoficial -#EXTINF:-1 tvg-id="Canal9.ni",Canal 9 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH09-HD-CVS/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal10.ni",Canal 10 (576p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH10-SD-ZUK/playlist.m3u8 -#EXTINF:-1 tvg-id="jbn.ni",JBN (720p) [Not 24/7] -https://inliveserver.com:1936/17510/17510/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.ni",Nicavisión Canal 12 (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal12/videocanal12/playlist.m3u8 -#EXTINF:-1 tvg-id="",Telenica Canal 8 (tn8) (720p) [Not 24/7] -https://60417ddeaf0d9.streamlock.net/tn8/videotn8/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal2.ni",Televicentro Canal 2 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH02-HD-YON/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.ni",TV RED Canal 11 (480p) [Timeout] -https://cootv.cootel.com.ni/streams/d/SSLCH11-SD-GZN/playlist.m3u8 -#EXTINF:-1 tvg-id="VivaNicaraguaCanal13.ni",Viva Nicaragua Canal 13 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vivanicaragua13 -#EXTINF:-1 tvg-id="vostv.ni",Vos Tv (720p) [Not 24/7] -http://ott.streann.com:8080/loadbalancer/services/public/channels/59e60c4997381ef50d15c041/playlist.m3u8 -#EXTINF:-1 tvg-id="wtv.ni",WTV Canal 20 (720p) -https://cloudvideo.servers10.com:8081/8130/index.m3u8 diff --git a/streams/nl.m3u b/streams/nl.m3u deleted file mode 100644 index 6da96438b..000000000 --- a/streams/nl.m3u +++ /dev/null @@ -1,217 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BazmeAsheghan.nl",Bazme Asheghan (720p) [Offline] -https://5dc143936e9ae.streamlock.net/saeed_nl/saeed_nl/chunklist.m3u8 -#EXTINF:-1 tvg-id="BNRNieuwsradio.nl",BNR Nieuwsradio (720p) [Geo-blocked] -https://bnr-cache-cdp.triple-it.nl/studio/index.m3u8 -#EXTINF:-1 tvg-id="BR6TV.nl",BR6 TV (720p) -https://58c04fb1d143f.streamlock.net/slob/slob/playlist.m3u8 -#EXTINF:-1 tvg-id="DenHaagTV.nl",Den Haag TV (1080p) [Not 24/7] -http://wowza5.video-streams.nl:1935/denhaag/denhaag/playlist.m3u8 -#EXTINF:-1 tvg-id="EDETV.nl",EDE TV (480p) [Not 24/7] -https://ms7.mx-cd.net/tv/113-474263/EdeTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FeelGoodTV.nl",Feel Good TV (720p) [Not 24/7] -https://58c04fb1d143f.streamlock.net/feel_good_radio_1/feel_good_radio_1/playlist.m3u8 -#EXTINF:-1 tvg-id="GigantFM.nl",Gigant FM (720p) [Timeout] -https://streams.uitzending.tv/gigantfm/gigantfm/playlist.m3u8 -#EXTINF:-1 tvg-id="GORTV.nl",GO-RTV (720p) -http://593aed234297b.streamlock.net:1935/gotvsjoerd/gotvsjoerd/playlist.m3u8 -#EXTINF:-1 tvg-id="Groningen1.nl",Groningen1 (1080p) [Not 24/7] -http://59132e529e3d1.streamlock.net/Groningen1/Groningen1/playlist.m3u8 -#EXTINF:-1 tvg-id="HK13TV.nl",HK13 TV (1080p) [Not 24/7] -http://mtxstr001.matrixdata.nl/live/hk13/playlist.m3u8 -#EXTINF:-1 tvg-id="IdeaalTV.nl",Ideaal TV (480p) -https://ms2.mx-cd.net/dtv-09/236-2051366/Ideaal_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JenZ.nl",JenZ (1080p) -https://ms2.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",JENZ (1080p) -https://ms7.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="" status="online",JIN TV (720p) -https://live.jintv.org:12443/medialive/jintv.m3u8 -#EXTINF:-1 tvg-id="",JIN TV (720p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/27 -#EXTINF:-1 tvg-id="",JIN TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/27.m3u8 -#EXTINF:-1 tvg-id="",L1mburg (720p) [Not 24/7] -https://d34pj260kw1xmk.cloudfront.net/live/l1/tv/index.m3u8 -#EXTINF:-1 tvg-id="LansingerlandTV.nl",Lansingerland TV (1080p) -https://streaming-outbound-video-02.rtvlansingerland.nl/hls/livetv/index.m3u8 -#EXTINF:-1 tvg-id="LOETV.nl",LOE TV (720p) -https://58c04fb1d143f.streamlock.net/loemedia/loemedia/playlist.m3u8 -#EXTINF:-1 tvg-id="LONTV.nl",LON TV (720p) [Timeout] -https://streamingserver01.omroepnuenen.nl/lon/lonweb_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MeerTV.nl",Meer TV (720p) [Not 24/7] -https://593aed234297b.streamlock.net/meervandaag/meervandaag/playlist.m3u8 -#EXTINF:-1 tvg-id="ML5TV.nl",ML5 TV (480p) -https://ms2.mx-cd.net/dtv-02/204-1147034/3ML_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO1.nl",NPO 1 (342p) [Geo-blocked] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo1/npo1.isml/.m3u8 -#EXTINF:-1 tvg-id="NPO1.nl",NPO 1 (1080p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO2.nl",NPO 2 (302p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPO2.nl",NPO 2 (342p) -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo2/npo2.isml/.m3u8 -#EXTINF:-1 tvg-id="NPO3.nl",NPO 3 (342p) [Not 24/7] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo3/npo3.isml/.m3u8 -#EXTINF:-1 tvg-id="NPO3.nl",NPO 3 (1080p) [Geo-blocked] -http://stream.tvtap.net:8081/live/nl-npo3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NPONieuws.nl",NPO Nieuws (576p) [Offline] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/journaal24/journaal24.isml/.m3u8 -#EXTINF:-1 tvg-id="NPOPolitiek.nl",NPO Politiek (576p) [Offline] -http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/politiek24/politiek24.isml/.m3u8 -#EXTINF:-1 tvg-id="OmroepBrabant.nl",Omroep Brabant (1080p) -https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/tv/index.m3u8 -#EXTINF:-1 tvg-id="OmroepBrabantRadio.nl",Omroep Brabant Radio (1080p) -https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/visualradio/index.m3u8 -#EXTINF:-1 tvg-id="OmroepCentraalTV.nl",Omroep Centraal TV (480p) -https://ms7.mx-cd.net/tv/208-1258878/Omroep_Centraal_GB.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepFlevoland.nl",Omroep Flevoland (540p) [Not 24/7] -https://d5ms27yy6exnf.cloudfront.net/live/omroepflevoland/tv/index.m3u8 -#EXTINF:-1 tvg-id="",Omroep Gelderland (720p) [Not 24/7] -https://web.omroepgelderland.nl/live/livetv.m3u8 -#EXTINF:-1 tvg-id="",Omroep Gelderland (1080p) [Timeout] -https://rrr.sz.xlcdn.com/?account=omroepgelderland&file=livetv&output=playlist.m3u8&protocol=http&service=wowza&type=live -#EXTINF:-1 tvg-id="OmroepHulstTV.nl",Omroep Hulst TV (720p) [Not 24/7] -https://stream.iconbroadcastgroup.com:1443/OH-Playout/smil:OH-Playout.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepOnsWestBrabant.nl",Omroep Ons West Brabant (480p) -https://ms2.mx-cd.net/tv/177-710139/Ons_West_Brabant_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepPM.nl",Omroep P&M (480p) [Offline] -https://ms7.mx-cd.net/tv/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepPMTV.nl",Omroep P&M TV (1080p) -https://ms7.mx-cd.net/dtv-10/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepTilburg.nl",Omroep Tilburg (480p) -https://ms2.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmroepTilburgTV.nl",Omroep Tilburg TV (480p) -https://ms7.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Omroep West (1080p) [Not 24/7] -https://d2dslh4sd7yvc1.cloudfront.net/live/omroepwest/ngrp:tv-feed_all/playlist.m3u8 -#EXTINF:-1 tvg-id="",Omroep Zeeland (1080p) -https://d3isaxd2t6q8zm.cloudfront.net/live/omroepzeeland/tv/index.m3u8 -#EXTINF:-1 tvg-id="OmropFryslan.nl",Omrop Fryslân (1080p) [Not 24/7] -https://d3pvma9xb2775h.cloudfront.net/live/omropfryslan/stream04/index.m3u8 -#EXTINF:-1 tvg-id="OpenRotterdam.nl",Open Rotterdam (480p) [Not 24/7] -http://ms2.mx-cd.net/tv/141-573555/OPEN_Rotterdam.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ORTS.nl",ORTS (480p) -http://ms7.mx-cd.net/tv/200-1006554/ORTS_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PodiumTV2.nl",Podium.TV 2 (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC2&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="PodiumTV3.nl",Podium.TV 3 (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC3&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="PodiumTV.nl",Podium.TV (1080p) [Not 24/7] -http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC1&output=playlist.m3u8&service=wowza&type=live -#EXTINF:-1 tvg-id="Qmusic.nl",Qmusic (720p) -https://dpp-qmusicnl-live.akamaized.net/streamx/QmusicNL.m3u8 -#EXTINF:-1 tvg-id="Radio10.nl",Radio 10 (720p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/698637/VR-Radio10-1/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio350.nl",Radio 350 (360p) [Not 24/7] -https://stream.radio350.nl/hls/radio350.m3u8 -#EXTINF:-1 tvg-id="Radio538.nl",Radio 538 (270p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/624107/VR-Radio538-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioA1.nl",Radio A1 (1080p) [Not 24/7] -http://stream.a1mediagroep.eu/hls/a1studio.m3u8 -#EXTINF:-1 tvg-id="RadioAalsmeerTV.nl",Radio Aalsmeer TV (720p) [Not 24/7] -https://radioaalsmeer.nl:4443/live/tv.m3u8 -#EXTINF:-1 tvg-id="RadioNL.nl",Radio NL (1080p) [Not 24/7] -http://558bd16067b67.streamlock.net:1935/radionl/radionl/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRN7.nl",Radio RN7 (576p) [Geo-blocked] -http://streaming.rn7.nl/rn7tv/live_576/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioVeronica.nl",Radio Veronica (270p) [Offline] -https://talparadiohls-i.akamaihd.net/hls/live/585615/VR-Veronica-1/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioVOSFM.nl",Radio VOS FM (720p) [Not 24/7] -http://593aed234297b.streamlock.net:1935/henrymeeuws/henrymeeuws/playlist.m3u8 -#EXTINF:-1 tvg-id="Regio8TV.nl",Regio8 TV (1080p) -https://ms7.mx-cd.net/tv/71-475821/Regio8TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Regio90TV.nl",Regio90 TV (480p) -https://ms7.mx-cd.net/MC-Monitoring/260-2403096/90TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RegioTVNieuws.nl",Regio TV Nieuws (1080p) [Not 24/7] -http://highvolume04.streampartner.nl/regiomedia/regiomedia/playlist.m3u8 -#EXTINF:-1 tvg-id="RN7TV.nl",RN 7 TV (1080p) [Geo-blocked] -https://streaming.rn7.nl/rn7live_abr/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVAmstelveen.nl",RTV Amstelveen (720p) [Not 24/7] -https://live.rtva.nl/live/zender.m3u8 -#EXTINF:-1 tvg-id="RTVArnhem.nl",RTV Arnhem (480p) -https://ms2.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVConnectTV.nl",RTV Connect TV (480p) -https://ms7.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDordrecht.nl",RTV Dordrecht (480p) -https://ms2.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDordrecht.nl",RTV Dordrecht (480p) -https://ms7.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVDrenthe.nl",RTV Drenthe (1080p) -https://cdn.rtvdrenthe.nl/live/rtvdrenthe/tv/index.m3u8 -#EXTINF:-1 tvg-id="RTVGO.nl",RTV GO! (1080p) [Not 24/7] -http://59132e529e3d1.streamlock.net:1935/Groningen1/Groningen1/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVMaastricht.nl",RTV Maastricht (720p) [Not 24/7] -http://stream.rtvmaastricht.nl:8081/rtvm_live/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNOF1.nl",RTV NOF 1 (720p) -http://593aed234297b.streamlock.net:1935/rtvnof/rtvnof/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNOF2.nl",RTV NOF 2 (720p) [Not 24/7] -http://593aed234297b.streamlock.net:1935/rtvnof2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNoord.nl",RTV Noord (1080p) [Not 24/7] -https://media.rtvnoord.nl/live/rtvnoord/tv/index.m3u8 -#EXTINF:-1 tvg-id="RTVNoordExtra.nl",RTV Noord Extra (1080p) [Not 24/7] -https://media.rtvnoord.nl/live/rtvnoord/extra/index.m3u8 -#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl",RTV Noordoost Friesland (720p) -https://593aed234297b.streamlock.net/rtvnof/rtvnof/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl",RTV Noordoost Friesland (720p) [Not 24/7] -http://cdn15.streampartner.nl:1935/rtvnof2/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVOost.nl",RTV Oost (720p) [Offline] -https://mediacdn.rtvoost.nl/live/rtvoost/tv-oost/index.m3u8 -#EXTINF:-1 tvg-id="RTVPurmerend.nl",RTV Purmerend (720p) -https://ms2.mx-cd.net/dtv-10/268-2641474/RTV_Purmerend_TV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVRijnmond.nl",RTV Rijnmond (1080p) -https://d3r4bk4fg0k2xi.cloudfront.net/rijnmondTv/index.m3u8 -#EXTINF:-1 tvg-id="RTVRijnstreekTV.nl",RTV Rijnstreek TV (720p) [Not 24/7] -https://vdo.verrips.email:3789/live/televisielive.m3u8 -#EXTINF:-1 tvg-id="RTVSlingeland.nl",RTV Slingeland (1080p) [Not 24/7] -https://ms7.mx-cd.net/dtv-10/105-475831/RTV_Slingeland.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVUtrecht.nl",RTV Utrecht (1080p) -https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/rtvutrecht/index.m3u8 -#EXTINF:-1 tvg-id="RTVWesterwolde.nl",RTV Westerwolde (432p) [Offline] -http://59132e529e3d1.streamlock.net:1935/westerwolde/westerwolde/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVWesterwolde.nl",RTV Westerwolde (432p) [Offline] -https://59132e529e3d1.streamlock.net/westerwolde/westerwolde/playlist.m3u8 -#EXTINF:-1 tvg-id="",rtvutrecht (1080p) -http://media.rtvutrecht.nl/live/rtvutrecht/rtvutrecht/index.m3u8 -#EXTINF:-1 tvg-id="Salto4.nl",Salto 4 (1080p) [Offline] -https://salto-streams.nl/hls/sotv2_high.m3u8 -#EXTINF:-1 tvg-id="SaltoADE.nl",Salto ADE (1080p) -https://live.salto.nl/hls/at5_high.m3u8 -#EXTINF:-1 tvg-id="SaltoBrasaMusic.nl",Salto Brasa Music (1080p) -https://salto-streams.nl/hls/sotv1_high.m3u8 -#EXTINF:-1 tvg-id="Samen1TV.nl",Samen1 TV (720p) -https://server-67.stream-server.nl:1936/Samen1TV/Samen1TV/playlist.m3u8 -#EXTINF:-1 tvg-id="SilenceTV.nl",Silence TV (720p) [Not 24/7] -http://93.190.140.42:8081/SilenceTV/live/playlist.m3u8 -#EXTINF:-1 tvg-id="SirisTV.nl",Siris TV (720p) [Not 24/7] -https://videostream.siris.nl/hls/playoutweb/index.m3u8 -#EXTINF:-1 tvg-id="StreekTV.nl",Streek TV (720p) [Not 24/7] -http://cdn22.streampartner.nl/streektv/streektv/playlist.m3u8 -#EXTINF:-1 tvg-id="StreekTV.nl",Streek TV (720p) [Not 24/7] -https://58e4d59f4ba2c.streamlock.net/streektv/streektv/playlist.m3u8 -#EXTINF:-1 tvg-id="TommyTeleshopping.nl",Tommy Teleshopping (480p) -http://ms7.mx-cd.net/tv/71-1356094/Tommy_Teleshopping.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEllef.nl",TV Ellef (540p) [Not 24/7] -https://58e4d59f4ba2c.streamlock.net/tvellef/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVValkenburg.nl",TV Valkenburg (720p) [Not 24/7] -https://livestream.tvvalkenburg.tv/hls/tv-valkenburg/tv-valkenburg.m3u8 -#EXTINF:-1 tvg-id="UStad.nl",UStad (1080p) -https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/ustad/index.m3u8 -#EXTINF:-1 tvg-id="VechtdalTV.nl",Vechtdal TV (480p) -https://ms2.mx-cd.net/tv/81-334271/VechtdalTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VisitXTV.nl",Visit-X TV (720p) [Not 24/7] -https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) -https://ms2.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) -https://ms7.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WOS.nl",WOS TV (1080p) -https://ms7.mx-cd.net/tv/99-660295/WOS.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",XITE (720p) [Not 24/7] -https://ms2.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",XITE (BE) (720p) [Not 24/7] -https://ms7.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ZO34.nl",ZO!34 (720p) [Timeout] -https://streams.uitzending.tv/zo34/zo34/playlist.m3u8 -#EXTINF:-1 tvg-id="ZuidWestTV.nl",ZuidWest TV (1080p) -https://live.zuidwesttv.nl/live/zwtv.m3u8 diff --git a/streams/nl_samsung.m3u b/streams/nl_samsung.m3u deleted file mode 100644 index f7d0965bb..000000000 --- a/streams/nl_samsung.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) [Not 24/7] -http://fueltv-fueltv-14-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeNetherlands.us",People are Awesome Netherlands (720p) [Not 24/7] -https://jukin-peopleareawesome-2-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionNetherland.es",Rakuten Action (Netherland) (720p) [Offline] -https://rakuten-action-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyNetherlands.es",Rakuten Comedy (Netherlands) (720p) [Offline] -https://rakuten-comedy-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesNetherland.es",Rakuten Documentaries (Netherland) (720p) [Offline] -https://rakuten-documentaries-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaNetherlands.es",Rakuten Drama (Netherlands) (720p) [Offline] -https://rakuten-drama-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyNetherlands.es",Rakuten Family (Netherlands) (720p) [Offline] -https://rakuten-family-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightNetherlands.es",Rakuten Spotlight (Netherlands) (720p) [Offline] -https://rakuten-spotlight-8-nl.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKarokeNetherland.ca",Stingray Karoke (Netherland) (1080p) -https://stingray-karaoke-4-nl.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/no.m3u b/streams/no.m3u deleted file mode 100644 index 739eb27fd..000000000 --- a/streams/no.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CanalMotor.no",Canal Motor (720p) -http://digicom.hls.iptvdc.com/canalmotor/index.m3u8 -#EXTINF:-1 tvg-id="CanalMotor.no",Canal Motor (720p) -https://digicom.hls.iptvdc.com/motorstv/index.m3u8 -#EXTINF:-1 tvg-id="FatstoneTV.no",Fatstone TV [Offline] -http://bgo1.cdn.s3m.no/fs/live/ngrp:live_all/chunklist_b5196000.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Frikanalen.no",Frikanalen (720p) -https://frikanalen.no/stream/index.m3u8 -#EXTINF:-1 tvg-id="Kanal10Asia.no",Kanal 10 Asia (540p) -http://cdn-kanal10.crossnet.net:1935/kanal10/kanal10asia/playlist.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) -http://194.132.85.39/19333-live0/_definst_/push-stortinget_1/chunklist_w1136072204.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) [Not 24/7] -https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetHS1.no",Stortinget HS1 (576p) [Not 24/7] -https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetHS2.no",Stortinget HS2 (576p) -https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetHS2.no",Stortinget HS2 (576p) [Not 24/7] -https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetN202.no",Stortinget N-202 (576p) [Not 24/7] -https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="StortingetN202.no",Stortinget N-202 (576p) [Not 24/7] -https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetNettTV.no",Stortinget Nett-TV (576p) -http://flash0.19333-live0.dna.qbrick.com:1935/19333-live0/push-stortinget_1/playlist.m3u8 -#EXTINF:-1 tvg-id="StortingetStortingssalen.no",Stortinget Stortingssalen (576p) -https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="StortingetStortingssalen.no",Stortinget Stortingssalen (576p) [Not 24/7] -https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 -#EXTINF:-1 tvg-id="",TV2 Nyhetsstrømmen (720p) -https://ws15-hls-live.akamaized.net/out/u/1153546.m3u8 -#EXTINF:-1 tvg-id="TV2Sporten.no",TV 2 Sporten (720p) -https://ws31-hls-live.akamaized.net/out/u/1416253.m3u8 -#EXTINF:-1 tvg-id="TVHaugaland.no",TV Haugaland (720p) [Not 24/7] -https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.ip-only.net/90216-cachelive0/smil:APPLETV/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHaugaland.no",TV Haugaland (720p) [Not 24/7] -https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.qbrick.com/90216-cachelive0/smil:APPLETV/playlist.m3u8 diff --git a/streams/no_samsung.m3u b/streams/no_samsung.m3u deleted file mode 100644 index 7fbb9f86f..000000000 --- a/streams/no_samsung.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",AfricaNews English (720p) -https://rakuten-africanews-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DuckTV.sk",Duck TV (720p) -https://mmm-ducktv-4-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavtVNorway.us",MavTV Norway (720p) [Offline] -https://mavtv-mavtvglobal-1-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionNorway.es",Rakuten Action (Norway) (720p) [Offline] -https://rakuten-action-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedyNorway.es",Rakuten Comedy (Norway) (720p) [Offline] -https://rakuten-comedy-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesNorway.es",Rakuten Documentaries (Norway) (720p) [Offline] -https://rakuten-documentaries-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaNorway.es",Rakuten Drama (Norway) (720p) [Offline] -https://rakuten-drama-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilyNorway.es",Rakuten Family (Norway) (720p) [Offline] -https://rakuten-family-11-no.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightNorway.es",Rakuten Spotlight (Norway) (720p) [Offline] -https://rakuten-spotlight-11-no.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/np.m3u b/streams/np.m3u deleted file mode 100644 index 7e7505e80..000000000 --- a/streams/np.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AvenuesKhabar.np",Avenues Khabar (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCMDzPE_7fcZSRJgpwIVor_A/live -#EXTINF:-1 tvg-id="KantipurTV.np",Kantipur TV (1080p) -https://ktvhdnpicc.ekantipur.com/ktv_desktop_02347834/hd/kantipurtv/hd_1080/chunks.m3u8 diff --git a/streams/nz.m3u b/streams/nz.m3u deleted file mode 100644 index 5bd07ed15..000000000 --- a/streams/nz.m3u +++ /dev/null @@ -1,31 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BreezeTV.nz",Breeze TV (720p) -https://livestreamdirect-breezetv.mediaworks.nz/breezetv.m3u8 -#EXTINF:-1 tvg-id="Firstlight.nz",Firstlight (576p) -https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JuiceTV.nz",Juice TV (1080p) [Not 24/7] -https://juicex.nz/hls/mystream.m3u8 -#EXTINF:-1 tvg-id="KordiaTV.nz",Kordia TV (1080p) -https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8 -#EXTINF:-1 tvg-id="MaoriTV.nz",Maori TV (1080p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/720612/1614493167001_1/master.m3u8 -#EXTINF:-1 tvg-id="parliament.nz",Parliament TV (1080p) -https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8 -#EXTINF:-1 tvg-id="TeReo.nz",Te Reo (1080p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/720613/1614493167001_2/master.m3u8 -#EXTINF:-1 tvg-id="TheEdge.nz",The Edge (720p) -https://livestreamdirect-edgetv.mediaworks.nz/edgetv.m3u8 -#EXTINF:-1 tvg-id="Three.nz",Three [Geo-blocked] -https://livestreamdirect-three.mediaworks.nz/three.m3u8 -#EXTINF:-1 tvg-id="TVNZ1.nz",TVNZ 1 [Geo-blocked] -https://d2ce82tpc3p734.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_1/master.m3u8 -#EXTINF:-1 tvg-id="TVNZ2.nz",TVNZ 2 [Geo-blocked] -https://duoak7vltfob0.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_2/master.m3u8 -#EXTINF:-1 tvg-id="TVNZDuke.nz",TVNZ Duke [Geo-blocked] -https://dayqb844napyo.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_Duke/master.m3u8 -#EXTINF:-1 tvg-id="",TVSN Shopping (360p) -https://tvsn-i.akamaihd.net/hls/live/261837/tvsn_nz/tvsn_nz_750.m3u8 -#EXTINF:-1 tvg-id="WairarapaTV.nz",Wairarapa TV (360p) [Not 24/7] -http://stream.wairarapatv.co.nz/Cellular_High/playlist.m3u8 -#EXTINF:-1 tvg-id="WairarapaTV.nz",Wairarapa TV (1080p) [Not 24/7] -https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8 diff --git a/streams/om.m3u b/streams/om.m3u deleted file mode 100644 index 400c3f4b7..000000000 --- a/streams/om.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Al Istiqama TV (576p) -https://jmc-live.ercdn.net/alistiqama/alistiqama.m3u8 -#EXTINF:-1 tvg-id="OmanAlthakafia.om",Oman Althakafia (1080p) -https://partwo.cdn.mangomolo.com/omcultural/smil:omcultural.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanLive.om",Oman Live (1080p) -https://partwo.cdn.mangomolo.com/omlive/smil:omlive.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanSportsTV.om",Oman Sports TV (1080p) [Offline] -https://partne.cdn.mangomolo.com/omsport/smil:omsport.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OmanTV.om",Oman TV (272p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/oman_tv/hls1/oman_tv.m3u8 -#EXTINF:-1 tvg-id="OmanTV.om",Oman TV (1080p) -https://partne.cdn.mangomolo.com/omantv/smil:omantv.stream.smil/playlist.m3u8 diff --git a/streams/pa.m3u b/streams/pa.m3u deleted file mode 100644 index 9b3ca6b6b..000000000 --- a/streams/pa.m3u +++ /dev/null @@ -1,27 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ASondeSalsa.pa",A Son de Salsa (720p) [Not 24/7] -https://stmv1.panelzcast.com/asondesalsa/asondesalsa/playlist.m3u8 -#EXTINF:-1 tvg-id="BTVPanama.pa",BTV Panamá (480p) [Offline] -https://stream.oursnetworktv.com/latin/btvp/playlist.m3u8 -#EXTINF:-1 tvg-id="CabinaRPCRadio.pa",Cabina RPC Radio (360p) -https://mdstrm.com/live-stream-playlist/5d976689ab55a60f94ec98e8.m3u8 -#EXTINF:-1 tvg-id="CabinaTelemetroRadio.pa",Cabina Telemetro Radio (480p) -https://mdstrm.com/live-stream-playlist/5d97ca5673de440761ff194e.m3u8 -#EXTINF:-1 tvg-id="DreikoTv.pa",DreikoTv (480p) [Not 24/7] -https://stmv3.voxtvhd.com.br/reikotv/reikotv/playlist.m3u8 -#EXTINF:-1 tvg-id="HosannaVision.pa",Hosanna Vision (480p) [Not 24/7] -https://1206618505.rsc.cdn77.org/LS-ATL-59020-1/playlist.m3u8 -#EXTINF:-1 tvg-id="NexTV.pa",Nex TV (Canal 21) [Timeout] -http://209.91.213.10:8088/play/a01o -#EXTINF:-1 tvg-id="OyeTV.pa",Oye TV (480p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88df173853e7072f3f953f.m3u8 -#EXTINF:-1 tvg-id="RPC.pa",RPC (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88d659120a717cf93ce620.m3u8 -#EXTINF:-1 tvg-id="",Teleclásicos (480p) [Not 24/7] -https://tvdatta.com:3484/stream/play.m3u8 -#EXTINF:-1 tvg-id="Telemetro.pa",Telemetro (480p) [Timeout] -http://209.91.213.10:8088/play/a00h -#EXTINF:-1 tvg-id="Telemetro.pa",Telemetro (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5d88dd2229b0890723df2165.m3u8 -#EXTINF:-1 tvg-id="TVN.pa",TVN (720p) -https://bcovlive-a.akamaihd.net/2f670e324b9b46bba7582e919ed90924/us-east-1/6058004209001/playlist.m3u8 diff --git a/streams/pe.m3u b/streams/pe.m3u deleted file mode 100644 index 28b251896..000000000 --- a/streams/pe.m3u +++ /dev/null @@ -1,423 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Andes Televisión (Sicusani) (720p) [Not 24/7] -https://stmv1.voxhdnet.com/tvsicuani/tvsicuani/playlist.m3u8 -#EXTINF:-1 tvg-id="AntaresTelevision.pe",Antares Televisión (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvantares/liveantarestv/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiritv.pe",AsiriTV (Lima) (720p) [Not 24/7] -https://video2.lhdserver.es/asiritv/live.m3u8 -#EXTINF:-1 tvg-id="ATMTelevision.pe",ATM Televisión (Apurimac) (720p) [Not 24/7] -https://v4.tustreaming.cl/atmtv/index.m3u8 -#EXTINF:-1 tvg-id="ATV.pe",ATV (480p) [Not 24/7] -https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ATVPlus.pe",ATV+ Noticias (480p) [Not 24/7] -https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv-mas.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Auténtica Televisión (720p) [Not 24/7] -https://live.obslivestream.com/autenticatvmux/index.m3u8 -#EXTINF:-1 tvg-id="BellaAbanquinaTV.pe",Bella Abanquina TV (Apurimac) (720p) [Not 24/7] -https://v4.tustreaming.cl/bellatv/index.m3u8 -#EXTINF:-1 tvg-id="BellaAsuncionTV.pe",Bella Asuncion TV (352p) [Not 24/7] -https://tvdatta.com:3602/stream/play.m3u8 -#EXTINF:-1 tvg-id="BestCableMasCumbia.pe",Best Cable Más Cumbia (720p) [Not 24/7] -https://ca.inka.net.pe/mascumbiatvonline/mascumbiatvonline/index.m3u8 -#EXTINF:-1 tvg-id="BestCableMusic.pe",Best Cable Music (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablemusic/bestcablemusic/index.m3u8 -#EXTINF:-1 tvg-id="BestCablePeru.pe",Best Cable Perú (720p) [Not 24/7] -https://ca.inka.net.pe/bestcable/bestcable/index.m3u8 -#EXTINF:-1 tvg-id="BestCableSportsPeru.pe",Best Cable Sports Perú (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablesports/bestcablesports/index.m3u8 -#EXTINF:-1 tvg-id="BethelTV.pe",Bethel TV (720p) [Not 24/7] -https://ott.streann.com/loadbalancer/services/public/channels/5e0689c82cdcb4fdbcd79151/playlist.m3u8 -#EXTINF:-1 tvg-id="BeXtremeTVLima.pe",BeXtreme TV (Lima) (1080p) [Geo-blocked] -https://video1.getstreamhosting.com:1936/8106/8106/playlist.m3u8 -#EXTINF:-1 tvg-id="BHTV.pe",BHTV (720p) [Not 24/7] -http://cdn1.ujjina.com:1935/iptvbhtv/livebhtvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBellezaAndina.pe",Cable Netword Belleza Andina TV (720p) [Not 24/7] -https://ca.inka.net.pe/bellezaandina/index.m3u8 -#EXTINF:-1 tvg-id="CNCumbia.pe",Cable Netword Cumbia TV (720p) [Not 24/7] -https://ca.inka.net.pe/cumbiatv/index.m3u8 -#EXTINF:-1 tvg-id="CNTV.pe",Cable Netword TV (480p) [Not 24/7] -https://ca.inka.net.pe/cntv/index.m3u8 -#EXTINF:-1 tvg-id="CadenaTVHuancayo.pe",Cadena TV Huancayo (720p) [Not 24/7] -https://tvdatta.com:3262/live/cadenatvlive.m3u8 -#EXTINF:-1 tvg-id="CajamarcaTV.pe",Cajamarca TV (480p) [Not 24/7] -https://ca.inka.net.pe/cajamarcatv/cajamarcatv/index.m3u8 -#EXTINF:-1 tvg-id="Canal8Catacaos.pe",Canal 8 (Catacaos) (360p) [Not 24/7] -https://tvdatta.com:3838/live/canalcatacaoslive.m3u8 -#EXTINF:-1 tvg-id="Canal43Sudamericana.pe",Canal 43 Sudamericana (Ica) (360p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8014/index.m3u8 -#EXTINF:-1 tvg-id="CanalEvelyn.pe",Canal E (Evelyn) (Altomayo) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/8006/index.m3u8 -#EXTINF:-1 tvg-id="CanalEvelyn.pe",Canal E (Evelyn) (Nororiente) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/8004/index.m3u8 -#EXTINF:-1 tvg-id="CANALIPE.pe",CANAL IPE (1080p) [Not 24/7] -https://cdnh8.iblups.com/hls/OVJNKV4pSr.m3u8 -#EXTINF:-1 tvg-id="CanalB.pe",CanalB (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alfonsobaella/live -#EXTINF:-1 tvg-id="CaribeTelevisionOtuzco.pe",Caribe Televisión (Otuzco) (1080p) [Not 24/7] -http://191.97.56.183:1935/caribetv/caribetv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Central TV (Chosica) (614p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvcentraltv/livecentraltvtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ChicosIPe.pe",Chicos IPe (1080p) [Not 24/7] -http://cdnh4.iblups.com/hls/OVJNKV4pSr.m3u8 -#EXTINF:-1 tvg-id="ClipsTV.pe",ClipsTV (Ica) (360p) [Not 24/7] -https://7.innovatestream.pe:19360/clipstv/clipstv.m3u8 -#EXTINF:-1 tvg-id="CNCCajamarca.pe",CNC (Cajamarca) (720p) [Offline] -https://7.innovatestream.pe:19360/cnctv/cnctv.m3u8 -#EXTINF:-1 tvg-id="CNCDigital.pe",CNC Digital (Iquitos) (480p) [Not 24/7] -https://cloudvideo.servers10.com:8081/8150/index.m3u8 -#EXTINF:-1 tvg-id="Conecta2TV.pe",Conecta2TV (Lima) (720p) [Not 24/7] -https://servilive.com:3528/live/conect2tvlive.m3u8 -#EXTINF:-1 tvg-id="CongresoTV.pe",Congreso TV (Perú) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/congresodelarepublicadelperútvenvivo/live -#EXTINF:-1 tvg-id="ContactoDeportivo.pe",Contacto Deportivo (720p) [Not 24/7] -https://live.obslivestream.com/cdeportivomux/index.m3u8 -#EXTINF:-1 tvg-id="ControversiaTV.pe",Controversia TV (Moyobamba) (360p) [Not 24/7] -https://live.obslivestream.com/controversiamux/index.m3u8 -#EXTINF:-1 tvg-id="CRTelevisionMoyobamba.pe",CR Television (Moyobamba) (720p) [Not 24/7] -https://live.obslivestream.com/crtvmux/index.m3u8 -#EXTINF:-1 tvg-id="CreoTV.pe",CreoTV (Cajamarca) (720p) [Not 24/7] -https://srv1.mediastreamperu.com:8081/creotv/index.m3u8 -#EXTINF:-1 tvg-id="CTC.pe",CTC (720p) -http://190.108.83.142:8000/play/a007/index.m3u8 -#EXTINF:-1 tvg-id="Cultura24tv.pe",Cultura 24 (360p) [Not 24/7] -https://vs8.live.opencaster.com/cultura24/smil:cultura24/playlist.m3u8 -#EXTINF:-1 tvg-id="CVMTelevision.pe",CVM TV Digital (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/cvmtv/cvmtv/playlist.m3u8 -#EXTINF:-1 tvg-id="DeltaTV.pe",DeltaTV (Pacayzapa | San Martín) (480p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8038/index.m3u8 -#EXTINF:-1 tvg-id="DiarioHechiceraTumbes.pe",Diario Hechicera (Tumbes) (720p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/8108/8108/playlist.m3u8 -#EXTINF:-1 tvg-id="DMJ.pe",DMJ (Cuzco) (720p) [Not 24/7] -https://v4.tustreaming.cl/s1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DTV.pe",DTV (Junin) [Not 24/7] -https://ed5ov.live.opencaster.com/ArEetgEqqozh/index.m3u8 -#EXTINF:-1 tvg-id="ExitosaTV.pe",Exitosa TV (720p) -https://cu.onliv3.com/livevd1/user2.m3u8 -#EXTINF:-1 tvg-id="Expresion.pe",Expresión (Tacna) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/radioilo.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.pe",FuegoTV (Lima) (720p) [Not 24/7] -http://190.108.83.142:8000/play/a003/index.m3u8 -#EXTINF:-1 tvg-id="FuegoTV.pe",FuegoTV (Lima) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/8038/8038/playlist.m3u8 -#EXTINF:-1 tvg-id="FullTV.pe",FullTV (Lima) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/8018/8018/playlist.m3u8 -#EXTINF:-1 tvg-id="GacetaUcayalina.pe",Gaceta Ucayalina (720p) [Not 24/7] -https://tvsource.gacetaucayalina.com/hls/prueba.m3u8 -#EXTINF:-1 tvg-id="GalacticaTVPeru.pe",Galáctica TV (Peru) (720p) [Not 24/7] -https://pacific.direcnode.com:3715/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="GeniosTVMoyobamba.pe",Genios TV (Moyobamba) (720p) [Not 24/7] -https://live.obslivestream.com/geniostvmux/index.m3u8 -#EXTINF:-1 tvg-id="GoldValleyTV.pe",Gold Valley TV (Casma) (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/gold/gold/playlist.m3u8 -#EXTINF:-1 tvg-id="GORESAMTV.pe",GORESAM TV [Not 24/7] -https://video.obslivestream.com/gtv/index.m3u8 -#EXTINF:-1 tvg-id="HatunTV.pe",Hatun TV (720p) [Not 24/7] -https://ca.inka.net.pe/bestcablehatuntv/bestcablehatuntv/index.m3u8 -#EXTINF:-1 tvg-id="Hoynet.pe",Hoynet (540p) [Not 24/7] -https://tv.portalexpress.es:3641/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="HuachoPeruTV.pe",Huacho Perú TV (720p) [Not 24/7] -https://tv.portalexpress.es:3124/live/hchoperutvlive.m3u8 -#EXTINF:-1 tvg-id="HuachoPeruTV.pe",Huacho Perú TV (720p) [Offline] -https://tv.portalexpress.es:3124/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="HuantaTV.pe",Huanta TV (288p) [Not 24/7] -https://inliveserver.com:1936/19002/19002/playlist.m3u8 -#EXTINF:-1 tvg-id="HuanucoenVivo.pe",Huánuco en Vivo (480p) [Not 24/7] -https://cp.sradiotv.com:1936/8006/8006/playlist.m3u8 -#EXTINF:-1 tvg-id="IdentidadTV.pe",Identidad TV (1080p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvrci/livercitv/playlist.m3u8 -#EXTINF:-1 tvg-id="ImagenTelevisionRioja.pe",Imagen Televisión (Rioja) (720p) [Not 24/7] -http://191.97.56.183:1935/imagentv/imagentv/playlist.m3u8 -#EXTINF:-1 tvg-id="ImpactoTelevision.pe",Impacto Televisión (Cajamarca) (720p) -https://eu1.servers10.com:8081/impactotv/index.m3u8 -#EXTINF:-1 tvg-id="ImperialTelevision.pe",Imperial Televisión (Huancayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/imperu/imperu/playlist.m3u8 -#EXTINF:-1 tvg-id="Inkavision.pe",Inkavisión (Cuzco) [Offline] -https://7.innovatestream.pe:19360/inkavision/inkavision.m3u8 -#EXTINF:-1 tvg-id="Innovafm.pe",Innova FM (Bagua Grande) (480p) [Not 24/7] -https://live.tvcontrolcp.com:1936/8170/8170/playlist.m3u8 -#EXTINF:-1 tvg-id="JN19.pe",JN19 (720p) [Not 24/7] -https://servilive.com:3149/live/jn19tvlive.m3u8 -#EXTINF:-1 tvg-id="JNETV.pe",JNE TV (720p) [Not 24/7] -https://dc1.webstream.eu/hls/hls/jnetvhdstreaming_high/index.m3u8 -#EXTINF:-1 tvg-id="Kachorro.pe",Kachorro (Super TV | Amazonas) (720p) [Not 24/7] -https://tvdatta.com:3517/live/kachorrotvlive.m3u8 -#EXTINF:-1 tvg-id="Karibena.pe",Karibeña (720p) [Not 24/7] -https://cu.onliv3.com/livevd/user1.m3u8 -#EXTINF:-1 tvg-id="KBOQuillabamba.pe",KBO Quillabamba (1080p) [Not 24/7] -https://cdnhd.iblups.com/hls/YGpW43RUOD.m3u8 -#EXTINF:-1 tvg-id="KeBuenaBarranca.pe",KeBuena (Barranca) (480p) [Not 24/7] -https://inliveserver.com:1936/18016/18016/playlist.m3u8 -#EXTINF:-1 tvg-id="KoraTV.pe",Kora TV (360p) [Not 24/7] -https://megastreamm.com:3129/live/koratvlive.m3u8 -#EXTINF:-1 tvg-id="LaAbeja.pe",La Abeja (720p) [Not 24/7] -http://cdnhd.iblups.com/hls/F87ppt1YAT.m3u8 -#EXTINF:-1 tvg-id="LaLuzTV.pe",La Luz TV (720p) [Not 24/7] -http://ott.streann.com:8080/loadbalancer/services/public/channels/59ce7f292cdc7ba015a93b82/playlist.m3u8 -#EXTINF:-1 tvg-id="RTV.pe",La República TV (RTV) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVLaRepública/live -#EXTINF:-1 tvg-id="LaRiberena.pe",La Ribereña (Pucallpa) (480p) [Not 24/7] -https://inliveserver.com:1936/19020/19020/playlist.m3u8 -#EXTINF:-1 tvg-id="Latina.pe",Latina (720p) [Geo-blocked] -https://mdstrm.com/live-stream-playlist/5ce7109c7398b977dc0744cd.m3u8 -#EXTINF:-1 tvg-id="LimaLive.pe",LimaLive (536p) [Not 24/7] -https://stmv.panel.grupolimalive.com/limalive/limalive/playlist.m3u8 -#EXTINF:-1 tvg-id="LotPlusTV.pe",LotPlus TV (Chiclayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/lotplustv/lotplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="MasterTVTarapoto.pe",Master TV (Tarapoto) (480p) [Not 24/7] -https://tv.oyotunstream.com:1936/master/master/playlist.m3u8 -#EXTINF:-1 tvg-id="MaticesTV.pe",MaticesTV (Cañete) (720p) [Not 24/7] -http://v4.tustreaming.cl/matices/index.m3u8 -#EXTINF:-1 tvg-id="MegaTVAQP.pe",Mega TV (Arequipa) (360p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8008/index.m3u8 -#EXTINF:-1 tvg-id="MegaTVJaen.pe",Mega TV (Jaen) (720p) [Not 24/7] -https://tv.portalexpress.es:3399/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="MegaTVTarapoto.pe",Mega TV (Tarapoto) (480p) [Not 24/7] -https://tv.portalexpress.es:3870/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="MetropolitanadelCuzco.pe",Metropolitana del Cuzco (CCTVRadio) (576p) [Not 24/7] -https://video1.earthcam.com/myearthcam/075ff02f78c35af55564cf3af3b3f750.flv/playlist.m3u8 -#EXTINF:-1 tvg-id="Millenium49TVPucallpa.pe",Millenium 49 TV (Pucallpa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/milleniuntv/milleniuntv/playlist.m3u8 -#EXTINF:-1 tvg-id="Millenium109FM.pe",Millenium 109 FM (Lamas) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/millenium/millenium/playlist.m3u8 -#EXTINF:-1 tvg-id="",MINEDU IPTV 1 (320p) [Not 24/7] -http://iptv.perueduca.pe:1935/canal1/canal11/playlist.m3u8 -#EXTINF:-1 tvg-id="",MINEDU IPTV 2 (320p) [Not 24/7] -http://iptv.perueduca.pe:1935/canal2/canal22/playlist.m3u8 -#EXTINF:-1 tvg-id="MitosTV.pe",MitosTV (Mitos de la Selva | Pucallpa) (480p) [Not 24/7] -https://inliveserver.com:1936/19018/19018/playlist.m3u8 -#EXTINF:-1 tvg-id="ModaHuancayo.pe",Moda Huancayo TV [Offline] -https://tvdatta.com:3383/live/huancayotvlive.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (360p) [Not 24/7] -https://ed1ov.live.opencaster.com/jcpstream_mid/index.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (360p) [Not 24/7] -https://www.opencaster.com/resources/hls_stream/hipodromojcp2.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (1080p) [Not 24/7] -http://vs8.live.opencaster.com/20100152275/jcpstream/playlist.m3u8 -#EXTINF:-1 tvg-id="MonterricoTV.pe",Monterrico TV (1080p) [Not 24/7] -https://ed1ov.live.opencaster.com/jcpstream_hd720/index.m3u8 -#EXTINF:-1 tvg-id="MTVMasAncash.pe",MTV Más (Ancash) (720p) [Not 24/7] -https://mediacp.hostradios.com.ar:19360/8044/8044.m3u8 -#EXTINF:-1 tvg-id="NacionalTV.pe",NacionalTV (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/nacionaltv/nacionaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="NazarenasTV.pe",Nazarenas TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvnazarenas/livenazarenastv/playlist.m3u8 -#EXTINF:-1 tvg-id="NorSelvaRTV.pe",NorSelva RTV (Rioja) (288p) [Not 24/7] -https://live.tvcontrolcp.com:1936/8140/8140/playlist.m3u8 -#EXTINF:-1 tvg-id="NuestraTVLima.pe",Nuestra TV (Lima) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/nuestratvlima -#EXTINF:-1 tvg-id="OasisRTV.pe",Oasis RTV (Trujillo) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/oasisrtv/oasisrtv.m3u8 -#EXTINF:-1 tvg-id="OKTeVe.pe",OK TeVe (Yurimaguas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/wesdey3/wesdey3/playlist.m3u8 -#EXTINF:-1 tvg-id="OmegaTVYurimaguas.pe",Omega TV (Yurimaguas) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/omega/omega.m3u8 -#EXTINF:-1 tvg-id="OndaDigital.pe",Onda Digital (720p) [Not 24/7] -https://ed1ov.live.opencaster.com/CwCfFGFdtebB/index.m3u8 -#EXTINF:-1 tvg-id="OndaDigital.pe",Onda Digital (720p) [Not 24/7] -https://tv.ondadigital.pe:1936/ondatv2/ondatv2/playlist.m3u8 -#EXTINF:-1 tvg-id="OrientalTV.pe",Oriental TV 21 (Pucallpa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/orientaltv/orientaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="OvacionTV.pe",Ovacion TV (720p) [Not 24/7] -http://cdn2.ujjina.com:1935/iptvovacion1/liveovacion1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OvacionTV.pe",Ovación TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvovacion1/liveovacion1tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PanamericanaTV.pe",Panamericana TV (298p) [Not 24/7] -https://cdnhd.iblups.com/hls/ptv2.m3u8 -#EXTINF:-1 tvg-id="PanamericanaTV.pe" status="error",Panamericana TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/PanamericanaPTV -#EXTINF:-1 tvg-id="PaxTV.pe",Pax TV (480p) [Not 24/7] -https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PBO.pe",PBO Digital (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgR0st4ZLABi-LQcWNu3wnQ/live -#EXTINF:-1 tvg-id="PeruMagico.pe",Peru Magico (480p) [Not 24/7] -http://38.131.11.9:1080/play/a0dh -#EXTINF:-1 tvg-id="PeruvianRadioTV.pe",PeruvianRadio TV (268p) [Not 24/7] -https://stmv.panel.grupolimalive.com/peruviantv/peruviantv/playlist.m3u8 -#EXTINF:-1 tvg-id="PiuraTV.pe",PiuraTV (720p) [Not 24/7] -http://190.108.83.142:8000/play/a00d/index.m3u8 -#EXTINF:-1 tvg-id="PlanetaTVBagua.pe",Planeta TV Bagua (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/planeatv/planeatv/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetaTVMoyobamba.pe",Planeta TV Moyobamba (720p) [Not 24/7] -https://live.obslivestream.com/planetatvmux/index.m3u8 -#EXTINF:-1 tvg-id="Primavera15RadiotelevisionMoquegua.pe",Primavera 15 Radiotelevisión (Moquegua) (720p) [Not 24/7] -https://tv.portalexpress.es:3270/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="",Proyecta Televisión (Huacho) (720p) [Not 24/7] -https://servilive.com:3194/live/proyectatvlive.m3u8 -#EXTINF:-1 tvg-id="PucallpaTelevision.pe",Pucallpa Televisión (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/pucallpatv/pucallpatv/playlist.m3u8 -#EXTINF:-1 tvg-id="PymeTV.pe",PymeTV [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/PymeTV/live -#EXTINF:-1 tvg-id="QTTelevision.pe",QT Televisión (Cuzco) (720p) [Not 24/7] -https://servilive.com:3753/live/qosqotimeslive.m3u8 -#EXTINF:-1 tvg-id="QuattroTV.pe",Quattro TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/quatrotvgo -#EXTINF:-1 tvg-id="Quillavision.pe",Quillavision (Cuzco) (720p) [Not 24/7] -http://v4.tustreaming.cl/quillavision/index.m3u8 -#EXTINF:-1 tvg-id="RadioCalorHuancayo.pe",Radio Calor (Huancayo) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/calortv -#EXTINF:-1 tvg-id="RadioChalaca.pe",Radio Chalaca (720p) [Not 24/7] -https://servilive.com:3162/multi_web/play.m3u8 -#EXTINF:-1 tvg-id="RadioDigital941TV.pe",Radio Digital 94.1 TV (Juanjui) (240p) [Not 24/7] -https://media2.cdnlayer.biz:8081/8018/index.m3u8 -#EXTINF:-1 tvg-id="RadioInkaTV.pe",Radio Inka TV (272p) [Not 24/7] -https://tv.portalexpress.es:3175/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="RadioLibertadArequipa.pe",Radio Libertad (Arequipa) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/radiolibertadarequipa -#EXTINF:-1 tvg-id="RadioPachatusan.pe",Radio Pachatusan (Cuzco) (720p) [Not 24/7] -https://tvdatta.com:3413/live/pachatusanlive.m3u8 -#EXTINF:-1 tvg-id="RadioSanBorjaTV.pe",Radio San Borja TV (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvsanborja/livesanborjatv/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTropicalTarapoto.pe",Radio Tropical Tarapoto (480p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/raditropical/raditropical/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVBinacional.pe",Radio TV Binacional (Desaguadero) (720p) [Not 24/7] -https://cp.sradiotv.com:1936/binacional/binacional/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioTVCharles.pe",Radio TV Charles (Bambamarca) [Not 24/7] -https://media2.cdnlayer.biz:8081/8032/index.m3u8 -#EXTINF:-1 tvg-id="RadioTVJuanjui.pe",Radio TV Juanjui (480p) [Not 24/7] -https://tv.portalexpress.es:3611/live/radiotvjuanjuilive.m3u8 -#EXTINF:-1 tvg-id="RadioUnoTacna.pe",Radio Uno (Tacna) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCK0lpuL9PQb3I5CDcu7Y7bA/live -#EXTINF:-1 tvg-id="RadioVictoria780AM.pe",Radio Victoria 780 AM (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2pEdgRlAdGozFhlEb73PKA/live -#EXTINF:-1 tvg-id="RadioXtrema.pe",Radio Xtrema (360p) [Not 24/7] -https://tv.portalexpress.es:3090/stream/play.m3u8 -#EXTINF:-1 tvg-id="RadioyTvFiladelfia.pe",Radio y Tv Filadelfia (720p) [Not 24/7] -https://streamlive7.hearthis.at/hls/9355343.m3u8 -#EXTINF:-1 tvg-id="RadioInka.pe",RadioInka (Abancay) (272p) [Not 24/7] -https://tv.portalexpress.es:3175/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="RadioTVOrienteYurimaguas.pe",RadioTV Oriente (Yurimaguas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/orientetv/orientetv/playlist.m3u8 -#EXTINF:-1 tvg-id="RCR.pe",Red de Comunicación Regional (RCR) (720p) [Not 24/7] -https://5c3fb01839654.streamlock.net:1963/iptvrcrperu/livercrperutv/playlist.m3u8 -#EXTINF:-1 tvg-id="RegionTVCallao.pe",Región TV (Callao) (480p) [Not 24/7] -https://servilive.com:3757/live/regiontvlive.m3u8 -#EXTINF:-1 tvg-id="RiberenaTV.pe",Ribereña TV (Bellavista) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/riberenatv/riberenatv.m3u8 -#EXTINF:-1 tvg-id="RNTelevisionYurimaguas.pe",RN Televisión (Yurimaguas) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/rntelevision/rntelevision/playlist.m3u8 -#EXTINF:-1 tvg-id="RPP.pe",RPP (480p) [Not 24/7] -http://38.131.11.9:1080/play/a0d8 -#EXTINF:-1 tvg-id="RSelvaTV.pe",RSelvaTV (Tarapoto) (720p) [Not 24/7] -https://live.obslivestream.com/selvatvmux/index.m3u8 -#EXTINF:-1 tvg-id="RTVTotalYurimaguas.pe",RTV Total (Yurimaguas) (480p) [Not 24/7] -https://7.innovatestream.pe:19360/rtvtotal/rtvtotal.m3u8 -#EXTINF:-1 tvg-id="RumbaMixTV.pe",RumbaMix TV (860p) [Not 24/7] -https://tvdatta.com:3344/live/rumbamixlive.m3u8 -#EXTINF:-1 tvg-id="RWTelevisionTarapoto.pe",RW Televisión (Tarapoto) [Not 24/7] -https://tvdatta.com:3952/live/rwtelevisionlive.m3u8 -#EXTINF:-1 tvg-id="",Salgalú TV [Not 24/7] -https://6075e60da1f27.streamlock.net/live/wowza/playlist.m3u8 -#EXTINF:-1 tvg-id="SanjuaneraTV.pe",SanjuaneraTV (720p) [Not 24/7] -https://live.obslivestream.com/sanjuaneramux/playlist.m3u8 -#EXTINF:-1 tvg-id="SatelTV.pe",SatelTV (Puno) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/satel/satel.m3u8 -#EXTINF:-1 tvg-id="SelvaMiaTV.pe",SelvaMía TV (Aguaytía) (360p) [Not 24/7] -https://inliveserver.com:1936/18022/18022/playlist.m3u8 -#EXTINF:-1 tvg-id="Sistema1.pe",Sistema 1 (Huaraz) (720p) [Not 24/7] -https://tv.portalexpress.es:3839/hybrid/play.m3u8 -#EXTINF:-1 tvg-id="Sistema1.pe",Sistema 1 (Huaraz) (720p) [Not 24/7] -https://tv.portalexpress.es:3839/live/sistema1tvlive.m3u8 -#EXTINF:-1 tvg-id="SolStereoTV.pe",Sol Stereo TV (Casma) (360p) [Not 24/7] -https://stmv.panel.grupolimalive.com/solstereotv/solstereotv/playlist.m3u8 -#EXTINF:-1 tvg-id="SoriTVPicota.pe",SoriTV (Picota) (720p) [Not 24/7] -https://lamasremixes.com/hls/cadenasurrtv/index.m3u8 -#EXTINF:-1 tvg-id="StereoTVPeru.pe",Stereo TV (Peru) (720p) [Not 24/7] -https://servers.amelbasoluciones.co:19360/5medialive/5medialive.m3u8 -#EXTINF:-1 tvg-id="SumacTV.pe",Sumac TV (Lima) (480p) [Not 24/7] -https://vps1.lnx.pe/sumactv-web/envivo/index.m3u8 -#EXTINF:-1 tvg-id="SuperCanalYurimaguas.pe",Super Canal (Yurimaguas) (720p) [Not 24/7] -https://7.innovatestream.pe:19360/supercanal/supercanal.m3u8 -#EXTINF:-1 tvg-id="SurTVIlo.pe",SurTV (Ilo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/surtv/surtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele2000.pe",Tele2000 (Ayacucho) (720p) [Not 24/7] -https://servilive.com:3126/live/tele2000live.m3u8 -#EXTINF:-1 tvg-id="TelesurCamana.pe",Telesur (Camana) (480p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/camana.m3u8 -#EXTINF:-1 tvg-id="TelesurIlo.pe",Telesur (Ilo) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/ilo.m3u8 -#EXTINF:-1 tvg-id="TelesurMollendo.pe",Telesur (Mollendo) (240p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/mollendo.m3u8 -#EXTINF:-1 tvg-id="TelesurMoquegua.pe",Telesur (Moquegua) (360p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/moquegua.m3u8 -#EXTINF:-1 tvg-id="TelesurTacna.pe",Telesur (Tacna) (720p) [Not 24/7] -https://qlobbidev.s.llnwi.net/telesur3/hls/tacna.m3u8 -#EXTINF:-1 tvg-id="TelevisionTarapoto.pe",Televisión Tarapoto (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/televisiontpp/televisiontpp/playlist.m3u8 -#EXTINF:-1 tvg-id="TelSatelCineTVArequipa.pe",TelSatel Cine TV (Arequipa) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/cinperu/cinperu/playlist.m3u8 -#EXTINF:-1 tvg-id="TopFMTVAtalaya.pe",Top FM TV (Atalaya) (240p) [Not 24/7] -https://tvdatta.com:3084/live/toptvaguaytialive.m3u8 -#EXTINF:-1 tvg-id="TopLatino.pe",Top Latino TV (404p) [Not 24/7] -https://5cefcbf58ba2e.streamlock.net/tltvweb/tvweb.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TPTO.pe",TPTO TV (Tarapoto) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/tptotv/tptotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tropical TV (Puerto Maldonado) (720p) [Not 24/7] -https://tv.oyotunstream.com:1936/tropicaltv/tropicaltv/playlist.m3u8 -#EXTINF:-1 tvg-id="TumpisTV.pe",Tumpis TV (Tumbes) (720p) [Not 24/7] -https://servilive.com:3531/live/tumpistvlive.m3u8 -#EXTINF:-1 tvg-id="TurboMixRadioTV.pe",Turbo Mix Radio TV (360p) [Not 24/7] -https://7.innovatestream.pe:19360/turbomixoficial/turbomixoficial.m3u8 -#EXTINF:-1 tvg-id="TV5.pe",TV5 Soritor (720p) [Not 24/7] -https://live.obslivestream.com/tv5soritormux/index.m3u8 -#EXTINF:-1 tvg-id="TVAndahuaylas.pe",TV Andahuaylas [Not 24/7] -https://pe-lim01-live-us01.cdnlayer.biz/panoramatv/index.m3u8 -#EXTINF:-1 tvg-id="TVCosmos.pe",TV Cosmos (720p) [Not 24/7] -https://5790d294af2dc.streamlock.net/8134/8134/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHuarmey.pe",TV Huarmey (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tvhuarmey -#EXTINF:-1 tvg-id="TVMundoArequipa.pe",TV Mundo (Arequipa) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQH-6sv6ovHg4Nx-niZ_C1g/live -#EXTINF:-1 tvg-id="TVNorteChiclayo.pe",TV Norte (Chiclayo) (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/TVNORTEHD -#EXTINF:-1 tvg-id="TVNoticias73.pe",TV Noticias 7.3 (768p) -http://cdnh4.iblups.com/hls/RMuwrdk7M9.m3u8 -#EXTINF:-1 tvg-id="TVPalmeras.pe",TV Palmeras (480p) [Not 24/7] -https://srv.panelcast.net/palmerastv/palmerastv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPeru.pe",TV Perú (450p) [Not 24/7] -https://cdnh8.iblups.com/hls/R9WtilpKKB.m3u8 -#EXTINF:-1 tvg-id="TVPeruInternacional.pe",TV Perú Internacional (460p) [Not 24/7] -http://cdnh4.iblups.com/hls/irtp.m3u8 -#EXTINF:-1 tvg-id="TVPeruNoticias.pe",TV Perú Noticias (768p) [Not 24/7] -https://cdnh8.iblups.com/hls/RMuwrdk7M9.m3u8 -#EXTINF:-1 tvg-id="TVPeruanisima.pe",TV Peruanísima (720p) [Not 24/7] -http://k4.usastreams.com/TVperuanisima/TVperuanisima/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSensacion.pe",TV Sensación (Tacna) (1080p) [Not 24/7] -https://ca.inka.net.pe/tvsensacion/tvsensacion/index.m3u8 -#EXTINF:-1 tvg-id="TVSistemasCuzco.pe",TV Sistemas Cuzco (Cuzco) (360p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/kdlrqjcp/kdlrqjcp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVenLinea.pe",TVenLinea (Cuzco) (720p) [Not 24/7] -https://s1.tvdatta.com:3883/live/tvenlinealive.m3u8 -#EXTINF:-1 tvg-id="TvfacesOnline.pe",Tvfaces Online (360p) [Not 24/7] -https://tvdatta.com:3211/stream/play.m3u8 -#EXTINF:-1 tvg-id="UCI.pe",UCI (720p) [Not 24/7] -https://servilive.com:3449/live/mlecaroslive.m3u8 -#EXTINF:-1 tvg-id="Unitel.pe",Unitel (Huancayo) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/uniteltv/uniteltv/playlist.m3u8 -#EXTINF:-1 tvg-id="UniversitariaTVChanchamayo.pe",Universitaria TV (Chanchamayo) (480p) [Not 24/7] -https://tvdatta.com:3670/live/universitariatvlive.m3u8 -#EXTINF:-1 tvg-id="UranioTVYurimaguas.pe",Uranio TV (Yurimaguas) (720p) [Not 24/7] -https://live.obslivestream.com/uraniomux/index.m3u8 -#EXTINF:-1 tvg-id="USILTV.pe",USIL TV (720p) [Not 24/7] -https://video.produccionesmagicorp.com/redes/video.m3u8 -#EXTINF:-1 tvg-id="USMPTV.pe",USMPTV (720p) [Not 24/7] -https://streamusmptv.ddns.net/dash/stream.mpd -#EXTINF:-1 tvg-id="VamisaTV.pe",VamisaTV (Lima) (480p) [Not 24/7] -https://vps1.lnx.pe/vamisa/envivo/index.m3u8 -#EXTINF:-1 tvg-id="ViaAltomayo.pe",Vía Altomayo (720p) [Not 24/7] -https://live.obslivestream.com/viaaltomayomux/index.m3u8 -#EXTINF:-1 tvg-id="",Vía Televisión (Tarapoto) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/viatv2021/viatv2021/playlist.m3u8 -#EXTINF:-1 tvg-id="VirgendeNatividadParuro.pe",Virgen de Natividad de Paruro [Not 24/7] -https://srv6.zcast.com.br/virgennatividad/virgennatividad/playlist.m3u8 -#EXTINF:-1 tvg-id="VisionNoticiasPeruVNP.pe",Visión Noticias Perú (VNP) (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/visionnoticias/visionnoticias/playlist.m3u8 -#EXTINF:-1 tvg-id="VisionTVMusica.pe",Visión TV Musica (720p) [Not 24/7] -https://5ee0faac3bbae.streamlock.net/visionmusica/visionmusica/playlist.m3u8 -#EXTINF:-1 tvg-id="WillaxTV.pe",Willax (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/WillaxTV -#EXTINF:-1 tvg-id="",Wtv (Bambamarca) (480p) [Not 24/7] -https://ca.inka.net.pe/wtv/wtv/index.m3u8 -#EXTINF:-1 tvg-id="",Wtv (La Verdad y Punto) (Chincha) (720p) [Not 24/7] -https://v4.tustreaming.cl/wtv/index.m3u8 -#EXTINF:-1 tvg-id="XTVChachapoyas.pe",X TV (Chachapoyas) (720p) [Not 24/7] -https://stmv.panel.grupolimalive.com/xtv/xtv/playlist.m3u8 diff --git a/streams/pf.m3u b/streams/pf.m3u deleted file mode 100644 index 56bdd619e..000000000 --- a/streams/pf.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TNTV.pf",TNTV (720p) [Not 24/7] -https://bcovlive-a.akamaihd.net/304fe71ee59a4d9692c5fa03548aa91a/us-west-2/5816339219001/playlist.m3u8 diff --git a/streams/ph.m3u b/streams/ph.m3u deleted file mode 100644 index 8f61ccc8d..000000000 --- a/streams/ph.m3u +++ /dev/null @@ -1,37 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CCTN47.ph",CCTN 47 (1080p) [Not 24/7] -http://122.55.252.134:8443/live/bba5b536faeacb9b56a3239f1ee8e3b3/1.m3u8 -#EXTINF:-1 tvg-id="DepEdTV.ph",DepEd TV (480p) [Geo-blocked] -https://d3cbe0gidjd4k2.cloudfront.net/channel_7/channel7/playlist.m3u8 -#EXTINF:-1 tvg-id="DZRHNewsTV.ph",DZRH News TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/DZRHNewsTelevision/live -#EXTINF:-1 tvg-id="GMAPinoyTV.ph",GMA Pinoy TV (360p) [Offline] -http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Philippines/cd1b220644affbb.m3u8 -#EXTINF:-1 tvg-id="GreatCommissionTVGCTV.ph",Great Commission TV (GCTV) (360p) [Not 24/7] -http://45.32.115.103/live/livestream/index.m3u8 -#EXTINF:-1 tvg-id="INCTV.ph",INC TV (1080p) -http://churchrus2-lh.akamaihd.net/i/coctesting_1@57550/master.m3u8 -#EXTINF:-1 tvg-id="KapamilyaChannel.ph",Kapamilya Channel [Offline] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCstEtN0pgOmCf02EdXsGChw/live -#EXTINF:-1 tvg-id="LifeTVAsia.ph",Life TV Asia (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_6/channel6/playlist.m3u8 -#EXTINF:-1 tvg-id="",NET 25 (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/Net25Tv/live -#EXTINF:-1 tvg-id="PEPTV.ph",PEP TV [Not 24/7] -https://iptv--iptv.repl.co/streamlink?url=https://www.twitch.tv/communitytv3/ -#EXTINF:-1 tvg-id="PilipinasHD.ph",Pilipinas HD (360p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_5/smil:channel_5.smil/chunklist_w1281634943_b300000_sleng.m3u8 -#EXTINF:-1 tvg-id="PilipinasHD.ph",Pilipinas HD (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_5/channel5/playlist.m3u8 -#EXTINF:-1 tvg-id="PTV4.ph",PTV 4 (480p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x5cr6b9 -#EXTINF:-1 tvg-id="ShopTV.ph",Shop TV (480p) [Not 24/7] -https://d3cbe0gidjd4k2.cloudfront.net/channel_1/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="SMNI.ph",SMNI (720p) [Not 24/7] -https://api.new.livestream.com/accounts/19079954/events/7831871/live.m3u8 -#EXTINF:-1 tvg-id="SuperRadyoDZBB.ph",Super Radyo DZBB (720p) [Not 24/7] -http://stream.gmanews.tv/ioslive/livestream/chunklist.m3u8?wowzasessionid=693701106 -#EXTINF:-1 tvg-id="TVMaria.ph",TV Maria [Offline] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/TVMariaLIVE/live -#EXTINF:-1 tvg-id="UNTV.ph",UNTV (1080p) [Timeout] -https://cdn.untvweb.com/live-stream/untvweb.m3u8 diff --git a/streams/pk.m3u b/streams/pk.m3u deleted file mode 100644 index 50e23db08..000000000 --- a/streams/pk.m3u +++ /dev/null @@ -1,65 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="92News.pk",92 News (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsgC5cbz3DE2Shh34gNKiog/live -#EXTINF:-1 tvg-id="92NewsUK.pk",92 News UK (576p) -https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-92_news-hsslive-25f-16x9-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="ARYDigital.pk",ARY Digital (1080p) [Offline] -https://6zklx4wryw9b-hls-live.5centscdn.com/arydigital/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",ARY Digital Usa (720p) [Not 24/7] -https://6zklx4wryw9b-hls-live.5centscdn.com/arydigitalusa/498f1704b692c3ad4dbfdf5ba5d04536.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ARYNews.pk",ARY News (720p) [Offline] -https://6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AVTKhyber.pk",AVT Khyber (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/index_150_av-p.m3u8 -#EXTINF:-1 tvg-id="AVTKhyber.pk",AVT Khyber (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/master.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (360p) [Not 24/7] -https://imob.dunyanews.tv/live/_definst_/ngrp:dunyalive_1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnMBV5Iw4WqKILKue1nP6Hg/live -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (480p) [Not 24/7] -https://imob.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (INT Feed) (480p) [Not 24/7] -https://intl.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8?dvr= -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (UK Feed) (360p) [Not 24/7] -https://ukintl.dunyanews.tv/liveuk/ngrp:dunyalive_all/playlist.m3u8 -#EXTINF:-1 tvg-id="DunyaNews.pk",Dunya News (USA Feed) (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCpgLvM8Oor7kZHU6HHfwWVQ/live -#EXTINF:-1 tvg-id="ExpressNewsPakistan.pk",Express News Pakistan (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/expressdigital1/livestream/master.m3u8 -#EXTINF:-1 tvg-id="GeoNews.pk",Geo News (576p) [Not 24/7] -https://jk3lz82elw79-hls-live.5centscdn.com/Geo/eae835e83c0494a376229f254f7d3392.sdp/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Kay2TV.pk",Kay2 TV (404p) [Not 24/7] -https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/index_150_av-p.m3u8 -#EXTINF:-1 tvg-id="Kay2TV.pk",Kay2 TV (404p) [Not 24/7] -https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/master.m3u8 -#EXTINF:-1 tvg-id="KhyberMiddleEastTV.pk",Khyber Middle East TV (720p) [Not 24/7] -https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 -#EXTINF:-1 tvg-id="KhyberNewsTV.pk",Khyber News TV (404p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 -#EXTINF:-1 tvg-id="LahoreNews.pk",Lahore News (720p) [Not 24/7] -http://mlive.lahorenews.tv/lahorelive/lnews_1/chunklist_DVR.m3u8 -#EXTINF:-1 tvg-id="LahoreNews.pk",Lahore News (720p) [Not 24/7] -https://vcdn.dunyanews.tv/lahorelive/_definst_/ngrp:lnews_1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelBangla.pk",Madani Channel Bangla (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/madanitvbangla.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelBangla.pk",Madani Channel Bangla (1080p) [Offline] -https://madnitv.vdn.dstreamone.net/madnitvbangla/madnibanglaabr/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelEnglish.pk",Madani Channel English (1080p) [Offline] -https://madnitv.vdn.dstreamone.net/madnitvenglish/madnienglishabr/playlist.m3u8 -#EXTINF:-1 tvg-id="MadaniChannelUrdu.pk",Madani Channel Urdu (1080p) [Geo-blocked] -https://madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8 -#EXTINF:-1 tvg-id="OneGolf.pk",One Golf (720p) -http://162.250.201.58:6211/pk/ONEGOLF/index.m3u8 -#EXTINF:-1 tvg-id="PTVHome.pk",PTV Home (238p) [Not 24/7] -https://live.ptv.com.pk/live/stream/ptvhome/playlist.m3u8 -#EXTINF:-1 tvg-id="PTVNews.pk",PTV News (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA/live -#EXTINF:-1 tvg-id="PTVSports.pk",PTV Sports (1080p) [Offline] -http://103.81.104.118/hls/stream11.m3u8 -#EXTINF:-1 tvg-id="PTVWorld.pk",PTV World (360p) [Not 24/7] -https://live.ptv.com.pk/live/ptvworld/playlist.m3u8 -#EXTINF:-1 tvg-id="SuchTV.pk",Such TV (720p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x72hrde -#EXTINF:-1 tvg-id="ZindagiTV.pk",Zindagi TV (576p) [Not 24/7] -https://5ad386ff92705.streamlock.net/live_transcoder/ngrp:zindagitv.stream_all/chunklist.m3u8 diff --git a/streams/pl.m3u b/streams/pl.m3u deleted file mode 100644 index 3350c989d..000000000 --- a/streams/pl.m3u +++ /dev/null @@ -1,83 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",4FUN TV (576p) [Not 24/7] -https://stream.4fun.tv:8888/hls/4f_high/index.m3u8 -#EXTINF:-1 tvg-id="dlaCiebietv.pl",dlaCiebie.tv (1080p) [Not 24/7] -http://94.246.128.53:1935/tv/dlaCiebieTv/playlist.m3u8 -#EXTINF:-1 tvg-id="Echo24.tv",Echo24 (720p) [Not 24/7] -https://live-insysgo.cf.insyscd.net/echo24.720.smil/manifest.mpd -#EXTINF:-1 tvg-id="EzoTV.pl",Ezo TV (576p) [Not 24/7] -http://live.ezotv.pl:1935/live/EZOTV/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioCzworka.pl",Radio Czworka (1080p) -http://stream14.polskieradio.pl:1935/pr4_video/video_pr4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SferaTV.pl",Sfera TV (480p) [Not 24/7] -http://stream.sferatv.pl:1935/sferalive/smil:sferalive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TelewizjaPograniczeGlubczyce.pl",Telewizja Pogranicze (Głubczyce) (720p) [Not 24/7] -http://95.160.28.218:1935/pogranicze/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TelewizjaTorun.pl",Telewizja Toruń (1080p) [Not 24/7] -http://217.173.176.107:1935/live/ngrp:tvk.stream_mobile/chunks.m3u8 -#EXTINF:-1 tvg-id="TrwamTV.pl",Trwam TV (480p) -http://trwamtv.live.e57-po.insyscd.net/cl01/out/u/trwam_3.m3u8 -#EXTINF:-1 tvg-id="TVKujawy.pl",TV Kujawy (576p) [Not 24/7] -http://stream.tvkujawy.pl:8080/live/broadcast.m3u8 -#EXTINF:-1 tvg-id="TVRegionalnaLubin.pl",TV Regionalna (Lubin) (576p) [Not 24/7] -https://tvreg.klemit.net/regionalna/stream/index.m3u8 -#EXTINF:-1 tvg-id="TVRepublika.pl",TV Republika (540p) [Not 24/7] -http://m1-tvrepublika.4vod.tv/smil:premium_abr.ism/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRepublika.pl",TV Republika (1080p) -https://ec08.luz1.cache.orange.pl/jupiter/o2-cl7/live/tvrepublika/live.m3u8 -#EXTINF:-1 tvg-id="",TV REPUBLIKA (1080p) [Offline] -http://188.47.212.71/jupiter/o1-cl1/live/tvrepublika/live.m3u8 -#EXTINF:-1 tvg-id="TVTorun.pl",TV Toruń (1080p) -http://217.173.176.107:1935/live/tvk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Trwam (480p) -https://trwamtv.live.e59-po.insyscd.net/cl01/out/u/trwam_3.m3u8 -#EXTINF:-1 tvg-id="TVP1.pl",TVP 1 (720p) [Offline] -http://207.110.52.61:8080/s/hls/5/9584/tvp1_276/1/1/index.m3u8 -#EXTINF:-1 tvg-id="TVP3Bialystok.pl",TVP 3 Białystok (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbialystok -#EXTINF:-1 tvg-id="TVP3Bydgoszcz.pl",TVP 3 Bydgoszcz (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbydgoszcz -#EXTINF:-1 tvg-id="TVP3Gdansk.pl",TVP 3 Gdańsk (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgdansk -#EXTINF:-1 tvg-id="TVP3GorzowWielkopolski.pl",TVP 3 Gorzów Wielkopolski (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgorzow -#EXTINF:-1 tvg-id="TVP3Katowice.pl",TVP 3 Katowice (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkatowice -#EXTINF:-1 tvg-id="TVP3Kielce.pl",TVP 3 Kielce (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkielce -#EXTINF:-1 tvg-id="TVP3Krakow.pl",TVP 3 Kraków (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkrakow -#EXTINF:-1 tvg-id="TVP3Lodz.pl",TVP 3 Łódź (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplodz -#EXTINF:-1 tvg-id="TVP3Lublin.pl",TVP 3 Lublin (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplublin -#EXTINF:-1 tvg-id="TVP3Olsztyn.pl",TVP 3 Olsztyn (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpolsztyn -#EXTINF:-1 tvg-id="TVP3Opole.pl",TVP 3 Opole (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpopole -#EXTINF:-1 tvg-id="TVP3Poznan.pl",TVP 3 Poznań (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvppoznan -#EXTINF:-1 tvg-id="TVP3Rzeszow.pl",TVP 3 Rzeszów (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvprzeszow -#EXTINF:-1 tvg-id="TVP3Szczecin.pl",TVP 3 Szczecin (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpszczecin -#EXTINF:-1 tvg-id="TVP3Warszawa.pl",TVP 3 Warszawa (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwarszawa -#EXTINF:-1 tvg-id="TVP3Wroclaw.pl",TVP 3 Wrocław (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwroclaw -#EXTINF:-1 tvg-id="TVPInfo.pl",TVP Info (404p) -http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpinfo -#EXTINF:-1 tvg-id="TVPParlament1.pl",TVP Parlament (kanał 1) (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal1 -#EXTINF:-1 tvg-id="TVPParlament2.pl",TVP Parlament (kanał 2) (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal2 -#EXTINF:-1 tvg-id="TVPSejm.pl",TVP Sejm (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=sejm -#EXTINF:-1 tvg-id="TVPSenat.pl",TVP Senat (404p) [Timeout] -http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=senat -#EXTINF:-1 tvg-id="TVT.pl",TVT (720p) [Not 24/7] -http://176.107.129.219/media/tvt/index.m3u8 -#EXTINF:-1 tvg-id="TVTZgorzelec.pl",TVT Zgorzelec (576p) [Not 24/7] -http://gargoyle.tomkow.pl/hls/tvt.m3u8 -#EXTINF:-1 tvg-id="BelsatTV.pl",Белсат ТВ (1080p) -http://f1.stream.devkom.pro:1063/ramowka/video.m3u8 diff --git a/streams/pr.m3u b/streams/pr.m3u deleted file mode 100644 index 6f695bf05..000000000 --- a/streams/pr.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CDMInternational.pr",CDM International (480p) [Not 24/7] -https://59825a54e4454.streamlock.net:8443/marcos536/marcos536/playlist.m3u8 -#EXTINF:-1 tvg-id="CDMTV.pr",CDM TV (480p) [Not 24/7] -http://205.164.56.130:1935/marcos536/marcos536/playlist.m3u8 -#EXTINF:-1 tvg-id="ConectateTV.pr",Conéctate TV (ACS Network) (480p) [Not 24/7] -https://play.amelbasoluciones.co:3257/live/acsnetworklive.m3u8 -#EXTINF:-1 tvg-id="",CTNi (Christian Television Network International) (480p) [Not 24/7] -https://584097344c1f0.streamlock.net/48/smil:48.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MasTV.pr",Mas TV (1080p) -https://video1.getstreamhosting.com:1936/8212/8212/playlist.m3u8 -#EXTINF:-1 tvg-id="NotiUnoPuertoRico.pr",Noti Uno Puerto Rico (854p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/unoradio/unoradio1/playlist.m3u8 -#EXTINF:-1 tvg-id="PuraPalabra.pr",Pura Palabra (718p) [Not 24/7] -https://59825a54e4454.streamlock.net:8443/william233/william233/playlist.m3u8 -#EXTINF:-1 tvg-id="WKAQNoticias.pr",Telemundo WKAQ Noticias Puerto Rico (1080p) [Offline] -https://wkaqlive-lh.akamaihd.net/i/PR_STREAM1@311877/master.m3u8 diff --git a/streams/ps.m3u b/streams/ps.m3u deleted file mode 100644 index 99c119b37..000000000 --- a/streams/ps.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="7alaTV.ps",7ala TV [Geo-blocked] -http://vstream3.hadara.ps:8081/7alafm2020/7alafm2020/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ajyal TV (720p) [Not 24/7] -http://htvajyal.mada.ps:8888/ajyal/index.m3u8 -#EXTINF:-1 tvg-id="",Ajyal TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/ajyal/index.m3u8 -#EXTINF:-1 tvg-id="AlAqsaChannel.ps",Al Aqsa Channel (416p) [Not 24/7] -https://live-1.linuxway.info/aqsatv/live/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfajerTV1.ps",Alfajer TV 1 (304p) [Not 24/7] -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="AlfajerTV2.ps",Alfajer TV 2 (720p) -http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="Audeh.ps",Audeh (480p) -http://htvpalsat.mada.ps:8888/audeh/index.m3u8 -#EXTINF:-1 tvg-id="Falastini.ps",Falastini (720p) [Offline] -http://51.255.84.28:8081/palestiniantv_source/live/playlist.m3u8 -#EXTINF:-1 tvg-id="HebronTV.ps",Hebron TV (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/newhebron/newheb/playlist.m3u8 -#EXTINF:-1 tvg-id="HekayaTV.ps",Hekaya TV (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/Hekaya/hekayamix/playlist.m3u8 -#EXTINF:-1 tvg-id="MarahFM.ps",Marah FM (720p) [Not 24/7] -http://vstream3.hadara.ps:8081/marahFM_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="Mawal.ps",Mawal (720p) [Not 24/7] -http://vstream3.hadara.ps:8081/MawwalHD_web/web/playlist.m3u8 -#EXTINF:-1 tvg-id="MusawaChannel.ps",MusawaChannel (404p) [Not 24/7] -http://htvpalsat.mada.ps:8888/musawa/index.m3u8 -#EXTINF:-1 tvg-id="NablusTV.ps",Nablus TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/nabluslive/index.m3u8 -#EXTINF:-1 tvg-id="PalestineMubasher.ps",Palestine Mubasher (404p) -http://htvpalsat.mada.ps:8888/PBCLive/index.m3u8 -#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps",Palestine Satellite Channel (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/palestinian_satellite_channel/hls1/palestinian_satellite_channel.m3u8 -#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps",Palestine Satellite Channel (404p) -http://htvpalsat.mada.ps:8888/PBC/index.m3u8 -#EXTINF:-1 tvg-id="PalestineToday.ps",Palestine Today (480p) [Geo-blocked] -https://live.paltoday.tv/paltv/live/playlist.m3u8 -#EXTINF:-1 tvg-id="palestiniantv.ps",palestiniantv (720p) -http://palestiniantv.origin.technostreaming.net:8081/palestiniantv_source/live/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioAlbaladTV.ps",Radio Albalad TV (1080p) [Not 24/7] -http://streaming.zaytonatube.com:8080/radioalbalad/radioalbalad/playlist.m3u8 -#EXTINF:-1 tvg-id="RajeenTV.ps",Rajeen TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/palabroad/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ShababFM.ps",Shabab FM (720p) [Not 24/7] -https://streaming.zaytonatube.com:8081/ShababFM/shabab/index.m3u8 -#EXTINF:-1 tvg-id="WatarTV.ps",Watar TV (720p) [Not 24/7] -http://htvint.mada.ps:8889/orient/index.m3u8 -#EXTINF:-1 tvg-id="WattanTV.ps",Wattan TV (720p) [Not 24/7] -http://htvmada.mada.ps:8888/wattan/index.m3u8 diff --git a/streams/pt.m3u b/streams/pt.m3u deleted file mode 100644 index 31d3e5fdc..000000000 --- a/streams/pt.m3u +++ /dev/null @@ -1,101 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Canal11.pt",Canal 11 (720p) -https://d2ve4fchffi4n1.cloudfront.net/out/v1/df356edd16f3434ab417f2c48cb1d516/index.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.pt",Canal Parlamento (432p) [Not 24/7] -https://playout175.livextend.cloud/livenlin4/2liveartvpub/playlist.m3u8 -#EXTINF:-1 tvg-id="IgrejaOnline.pt",Igreja Online (574p) [Not 24/7] -http://195.22.11.11:1935/igronline/igronline2/playlist.m3u8 -#EXTINF:-1 tvg-id="KuriakosCine.pt",Kuriakos Cine (1080p) [Not 24/7] -http://c2.manasat.com:1935/kcine/kcine3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosKids.pt",Kuriakos Kids (1080p) -http://c2.manasat.com:1935/kkids/kkids3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosMusic.pt",Kuriakos Music (1080p) -http://c2.manasat.com:1935/kmusic/kmusic3/master.m3u8 -#EXTINF:-1 tvg-id="KuriakosTV.pt",Kuriakos TV (576p) -http://195.22.11.11:1935/ktv/ktv2/playlist.m3u8 -#EXTINF:-1 tvg-id="KuriakosTV.pt",Kuriakos TV (1080p) -http://195.22.11.11:1935/ktv/ktv1/master.m3u8 -#EXTINF:-1 tvg-id="PortoCanal.pt",Porto Canal (360p) [Not 24/7] -https://streamer-a01.videos.sapo.pt/live/portocanal/playlist.m3u8 -#EXTINF:-1 tvg-id="PortoCanal.pt",Porto Canal (360p) [Not 24/7] -https://streamer-b02.videos.sapo.pt/live/portocanal/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioClubeTV.pt",Radio Clube TV (720p) [Not 24/7] -https://stmv1.srvsite.com/clubefmradio/clubefmradio/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP1.pt",RTP1 (480p) -http://162.212.178.69:41042/bysid/608 -#EXTINF:-1 tvg-id="RTP1.pt",RTP1 (720p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/rtpClean1HD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP2.pt",RTP2 (504p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtp2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP2.pt",RTP2 (720p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/rtpClean2HD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP3.pt",RTP3 (504p) [Not 24/7] -https://streaming-live.rtp.pt/livetvhlsDVR/rtpndvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTP3.pt",RTP3 (720p) [Not 24/7] -https://streaming-live.rtp.pt/livetvhlsDVR/rtpnHDdvr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAcores.pt",RTP Açores (504p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpacores.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAcores.pt",RTP Açores (720p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpacoresHD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPAfrica.pt",RTP África (504p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpafrica.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPInternacional.pt",RTP Internacional (480p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s38/index.m3u8 -#EXTINF:-1 tvg-id="RTPInternacional.pt",RTP Internacional (504p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpi.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPMadeira.pt",RTP Madeira (504p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpmadeira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPMemoria.pt",RTP Memória (360p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:rtpmem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPRadiozigzag.pt",RTP Rádio Zig Zag (720p) [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:zigzagHD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RTPRadiozigzag.pt",RTP Rádio Zig Zag [Not 24/7] -https://streaming-live.rtp.pt/liverepeater/smil:zigzag.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SICInternacional.pt",SIC Internacional (720p) [Offline] -http://live.impresa.pt/live/sicint/sicint.m3u8 -#EXTINF:-1 tvg-id="SICNoticias.pt",SIC Noticias [Geo-blocked] -http://live.impresa.pt/live/sicnot/sicnot.m3u8 -#EXTINF:-1 tvg-id="SobrenaturalTV.pt",Sobrenatural TV (360p) [Not 24/7] -http://livestreamcdn.net:1935/SobrenaturalTV/SobrenaturalTV/playlist.m3u8 -#EXTINF:-1 tvg-id="SobrenaturalTV.pt",Sobrenatural TV (1080p) -http://213.13.26.11:1935/live/sobrenaturaltv/livestream.m3u8 -#EXTINF:-1 tvg-id="SportTV1.pt",Sport TV 1 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV2.pt",Sport TV 2 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV3.pt",Sport TV 3 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportTV4.pt",Sport TV 4 (576p) -https://smart-tv.livedoomovie.com:4431/02_SPORTTV_4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="STVNoticias.pt",STV Noticias (240p) [Not 24/7] -http://dcunilive36-lh.akamaihd.net/i/dclive_1@668002/master.m3u8 -#EXTINF:-1 tvg-id="TVFatima.pt",TV Fátima (1080p) -http://213.13.26.11:1935/live/santuario.stream/livestream.m3u8 -#EXTINF:-1 tvg-id="TVFatima.pt",TV Fátima (1080p) [Not 24/7] -https://streamer-b02.videos.sapo.pt/live/santuario.stream/livestream.m3u8 -#EXTINF:-1 tvg-id="TVMana1BRA.pt",TV Maná 1 (320p) [Not 24/7] -http://195.22.11.11:1935/tvmana/tvmana1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMana2BRA.pt",TV Maná 2 (576p) [Not 24/7] -http://195.22.11.11:1935/tvmana/tvmana2/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA (ENG) (484p) -http://c2.manasat.com:1935/church-online/ingles3/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA (ESP) (488p) -http://c2.manasat.com:1935/iglesia-online/espanhol3/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA (FR) (484p) -http://c2.manasat.com:1935/eglise-online/frances3/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA (RU) (486p) -http://c2.manasat.com:1935/tserkov-online/russo3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVManaCordoba.pt",TV Maná Córdoba (576p) [Not 24/7] -http://csvl03.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA MAPUTO (526p) [Not 24/7] -http://streamspub.manasat.com:1935/tvmz/tvmz2/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MANA MAPUTO (576p) [Not 24/7] -http://csvl03.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMANA1PORTUGAL.pt",TV MANA-1 PORTUGAL (1080p) [Not 24/7] -http://csvl04.manasat.com:1935/tvmana/tvmana3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVI24.pt",TVI24 (480p) -https://video-auth2.iol.pt/live_edge/tvi24_abr/edge_servers/tvi24-480p/chunks.m3u8 -#EXTINF:-1 tvg-id="TVI.pt",TVI (480p) -https://video-auth2.iol.pt/live_edge/tvi_abr/edge_servers/tvi-480p/chunks.m3u8 -#EXTINF:-1 tvg-id="TVIReality.pt",TVI Reality (480p) -https://video-auth2.iol.pt/live_tvi_direct/live_tvi_direct/edge_servers/tvireality-480p/chunks.m3u8 diff --git a/streams/pt_samsung.m3u b/streams/pt_samsung.m3u deleted file mode 100644 index 4afa92b6a..000000000 --- a/streams/pt_samsung.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family (720p) [Offline] -https://futuretoday-afv-family-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (1080p) -https://bloomberg-bloomberg-1-pt.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews Português (720p) -https://rakuten-euronews-8-pt.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/py.m3u b/streams/py.m3u deleted file mode 100644 index aa4cabdc4..000000000 --- a/streams/py.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABCTV.py",ABC TV (720p) -https://d2e809bgs49c6y.cloudfront.net/live/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851/live.isml/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851.m3u8 -#EXTINF:-1 tvg-id="C9N.py",C9N (480p) [Offline] -http://170.83.242.153:8000/play/a022 -#EXTINF:-1 tvg-id="C9N.py",C9N (1080p) [Offline] -http://170.83.242.153:8000/play/c9nhd -#EXTINF:-1 tvg-id="FarraPlay.py",Farra Play (720p) [Not 24/7] -http://159.203.148.226/live/farra.m3u8 -#EXTINF:-1 tvg-id="",GEN (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/paraguay/gentv -#EXTINF:-1 tvg-id="",La Tele (480p) [Offline] -http://170.83.242.153:8000/play/a00j -#EXTINF:-1 tvg-id="LIMTV.py",LIM TV (720p) [Not 24/7] -https://live.admefy.com/live/default/ashamed_crimson_3360d.m3u8 -#EXTINF:-1 tvg-id="MasTV.py",Más TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/mastvonline -#EXTINF:-1 tvg-id="NPY.py",NPY (480p) [Offline] -http://170.83.242.153:8000/play/a024 -#EXTINF:-1 tvg-id="Paravision.py",Paravision (480p) [Offline] -http://170.83.242.153:8000/play/a021 -#EXTINF:-1 tvg-id="RadioUniverso.py",Radio Universo (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/paraguay/universo -#EXTINF:-1 tvg-id="SNT.py",SNT (480p) [Offline] -http://170.83.242.153:8000/play/a03d -#EXTINF:-1 tvg-id="SURTVItapua.py",SUR TV Itapúa (480p) [Offline] -http://170.83.242.153:8000/play/a025 -#EXTINF:-1 tvg-id="Telefuturo.py",Telefuturo (480p) [Offline] -http://170.83.242.153:8000/play/a03e -#EXTINF:-1 tvg-id="TreceParaguay.py",Trece Paraguay (720p) [Not 24/7] -http://174.138.118.252/live/trece.m3u8 -#EXTINF:-1 tvg-id="Unicanal.py",Unicanal (720p) [Not 24/7] -http://45.55.127.106/live/unicanal.m3u8 diff --git a/streams/qa.m3u b/streams/qa.m3u deleted file mode 100644 index e069e9161..000000000 --- a/streams/qa.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlJazeeraArabic.qa",Al Jazeera Arabic (420p) -https://live-hls-web-aja.getaj.net/AJA/index.m3u8 -#EXTINF:-1 tvg-id="AlJazeeraArabic.qa",Al Jazeera Arabic (480p) -http://ott-cdn.ucom.am/s69/index.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera Balkans (1080p) -https://live-hls-web-ajb.getaj.net/AJB/index.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera Documentary (270p) [Geo-blocked] -https://live-hls-web-ajd.getaj.net/AJD/index.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera Documentary (576p) [Not 24/7] -http://teledunet.com:8080/live/azrotv/azrotv2021/10040.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera English (480p) -http://ott-cdn.ucom.am/s23/index.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera English (1080p) -https://live-hls-web-aje.getaj.net/AJE/index.m3u8 -#EXTINF:-1 tvg-id="",Al Jazeera Mubasher (1080p) -https://live-hls-web-ajm.getaj.net/AJM/index.m3u8 -#EXTINF:-1 tvg-id="AlKassFive.qa",Al Kass Five (304p) -https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 -#EXTINF:-1 tvg-id="AlRassoul.qa",Al Rassoul (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/AlRassoulChannel/live -#EXTINF:-1 tvg-id="AlRayyan.qa",Al Rayyan (1080p) -https://svs.itworkscdn.net/alrayyanlive/alrayyan.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlRayyanAlQadeem.qa",Al Rayyan Al Qadeem (1080p) -https://svs.itworkscdn.net/alrayyanqadeemlive/alrayyanqadeem.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="QatarTV2.qa",Qatar TV 2 (480p) -https://qatartv.akamaized.net/hls/live/2026574/qtv2/master.m3u8 -#EXTINF:-1 tvg-id="QatarTV.qa",Qatar TV (360p) -https://qatartv.akamaized.net/hls/live/2026573/qtv1/master.m3u8 diff --git a/streams/ro.m3u b/streams/ro.m3u deleted file mode 100644 index ac03243c8..000000000 --- a/streams/ro.m3u +++ /dev/null @@ -1,141 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="A7TV.ro",A7TV (720p) [Not 24/7] -https://play.streamkit.tv/content/channel/aseventv/live/aseventv.player.m3u8 -#EXTINF:-1 tvg-id="AgroTV.ro",AgroTV (404p) [Not 24/7] -https://stream1.1616.ro:1945/agro/livestream/playlist.m3u8?wowzatokenhash=NqSD4qaHc94SbTW05NBB-lXC78ZiAOIbnbUBOHj1DAM= -#EXTINF:-1 tvg-id="AlephNews.ro",Aleph News (720p) -https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaOmegaTV.ro",Alfa Omega TV (540p) [Not 24/7] -http://s5.alfaomega.tv:1935/alfaomega/alfaomega1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AlfaOmegaTV.ro",Alfa Omega TV (540p) [Not 24/7] -http://s5.alfaomega.tv:1935/alfaomega/smil:alfaomegatv/playlist.m3u8 -#EXTINF:-1 tvg-id="Antena1.ro",Antena 1 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/a1 -#EXTINF:-1 tvg-id="Antena3.ro",Antena 3 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/a3 -#EXTINF:-1 tvg-id="AntenaComedy.ro",Antena Comedy (432p) [Not 24/7] -http://stream1.antenaplay.ro/live/smil:ComedyPlay.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaInternational.ro",Antena International (576p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/ai -#EXTINF:-1 tvg-id="AntenaMonden.ro",Antena Monden (720p) [Not 24/7] -http://stream1.antenaplay.ro/live/smil:AntenaMonden.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AntenaStars.ro",Antena Stars (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/astars -#EXTINF:-1 tvg-id="AntenaSport.ro",AntenaSport (720p) [Not 24/7] -https://stream1.antenaplay.ro/dfs/farasecrete5/playlist.m3u8 -#EXTINF:-1 tvg-id="B1.ro",B1 (272p) [Not 24/7] -https://stream.adunity.com/b1/b1.m3u8 -#EXTINF:-1 tvg-id="BucovinaTV.ro",Bucovina TV (480p) -http://46.4.14.12:9999/btvsvlive/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.ro",Canal33 (480p) [Timeout] -https://fms-https1.mediadirect.ro/live3/canal33.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ColumnaTV.ro",Columna TV (576p) [Not 24/7] -rtmp://columna1.arya.ro/live/columnatv1 -#EXTINF:-1 tvg-id="CooknPlay.ro",Cook&Play (480p/720p) (720p) [Not 24/7] -https://stream1.antenaplay.ro/live/smil:CookPlay.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CorneaTV.ro",Cornea TV (720p) [Not 24/7] -http://89.149.30.158:1935/CorneaTV/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CredoTV.ro",Credo TV (720p) [Not 24/7] -http://cdn.credonet.tv:1935/ctv/smil:livecredo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Digi24.ro",Digi 24 (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/digi24 -#EXTINF:-1 tvg-id="ElitaTV.ro",Elita TV (576p) [Timeout] -http://46.55.111.242:8080/Rezina.m3u8 -#EXTINF:-1 tvg-id="EstTVNeamt.ro",Est TV (Neamt) (576p) [Not 24/7] -http://89.38.8.130:39435 -#EXTINF:-1 tvg-id="GTV.ro",GTV (576p) [Not 24/7] -rtmp://gtv1.arya.ro:1935/live/gtv1.flv -#EXTINF:-1 tvg-id="HappyChannel.ro",Happy Channel (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/romania/happy-channel -#EXTINF:-1 tvg-id="IntermediaTV.ro",Intermedia TV (576p) -http://46.4.14.12:9999/intermedia1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalD.ro",Kanal D (384p) [Not 24/7] -https://stream1.kanald.ro/iphone/live.m3u8 -#EXTINF:-1 tvg-id="KissTV.ro",Kiss TV (576p) [Not 24/7] -https://fms-https1.mediadirect.ro/live3/_definst_/kiss.smil/playlist.m3u8?publisher=83 -#EXTINF:-1 tvg-id="LightChannel.ro",Light Channel (480p) [Not 24/7] -http://streamer1.streamhost.org:1935/salive/GMIlcbgM/playlist.m3u8 -#EXTINF:-1 tvg-id="MEDIAREGIONAL.ro",MEDIA REGIONAL (576p) -http://83.103.150.198:8080 -#EXTINF:-1 tvg-id="Mireasa.ro",Mireasa (480p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/mireasa -#EXTINF:-1 tvg-id="MoozDance.ro",MoozDance (576p) -https://rtmp.digitalbroadcast.ro/moozdance/moozdance.m3u8 -#EXTINF:-1 tvg-id="MoozHits.ro",MoozHits (576p) -https://rtmp.digitalbroadcast.ro/moozhits/moozhits.m3u8 -#EXTINF:-1 tvg-id="MoozRo.ro",MoozRo (576p) -https://rtmp.digitalbroadcast.ro/moozro/moozro.m3u8 -#EXTINF:-1 tvg-id="MusicChannelRomania.ro",Music Channel Romania (576p) [Offline] -https://edge126.rcs-rds.ro/utvedge/musicchannelhq.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NasulTV.ro",Naşul TV (720p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/NasulTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="NovaTVBrasov.ro",Nova TV Brasov (576p) [Not 24/7] -http://novapress.ro:1935/live/nova/playlist.m3u8 -#EXTINF:-1 tvg-id="PloiestiTV.ro",Ploiesti TV [Offline] -rtmp://v1.arya.ro:1935/live/ptv1.flv -#EXTINF:-1 tvg-id="PrimaTV.ro",Prima TV (404p) [Not 24/7] -https://stream1.1616.ro:1945/prima/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= -#EXTINF:-1 tvg-id="ProTV.ro",Pro TV (1080p) -https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0 -#EXTINF:-1 tvg-id="Profitro.ro",Profit.ro (404p) -https://stream1.1616.ro:1945/profit/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= -#EXTINF:-1 tvg-id="Profitro.ro",Profit.ro (404p) [Not 24/7] -https://stream1.profit.ro:1945/profit/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="RapsodiaTV.ro",Rapsodia TV (576p) [Offline] -rtmp://rapsodia1.arya.ro/live/rapsodiatv1 -#EXTINF:-1 tvg-id="RealitateaTV.ro",Realitatea FM (Studio) (576p) [Not 24/7] -https://live.realitatea.net/livertmp/plus/playlist.m3u8 -#EXTINF:-1 tvg-id="RealitateaTV.ro",Realitatea Plus (720p) [Timeout] -https://livestream.realitatea.net/livestream/liverealitatea.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RockTV.ro",Rock TV (180p) -https://fms-https1.mediadirect.ro/live3/_definst_/rocktv.smil/master.m3u8 -#EXTINF:-1 tvg-id="SangeorzTV.ro",Sangeorz TV (396p) [Not 24/7] -http://s2.streamnet.ro:8035/stream.flv -#EXTINF:-1 tvg-id="SomaxTV.ro",Somax TV [Offline] -http://webmobile.xdev.ro:81/tv12/playlist.m3u8 -#EXTINF:-1 tvg-id="SperantaTV.ro",Speranta TV (720p) [Not 24/7] -http://play.streamkit.tv/content/channel/sperantatv/live/sperantatv.player.m3u8 -#EXTINF:-1 tvg-id="SperantaTV.ro",Speranta TV (720p) [Not 24/7] -http://us200.streamkit.tv/edge/sperantatv_1200/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperTV.ro",SuperTV (1080p) [Not 24/7] -http://live.supertv.ro:1935/live/smil:hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Telestar1.ro",Telestar1 (480p) [Not 24/7] -http://s1.streamnet.ro:8053/stream.flv -#EXTINF:-1 tvg-id="Telestar1.ro",Telestar1 (576p) [Offline] -http://193.34.109.10:8090 -#EXTINF:-1 tvg-id="TravelMix.ro",Travel Mix (1080p) [Not 24/7] -http://89.38.8.131:39520 -#EXTINF:-1 tvg-id="TVSE.ro",TV SE (576p) [Not 24/7] -http://89.38.8.130:39419 -#EXTINF:-1 tvg-id="TVPlusSuceava.ro",TVPlus Suceava (576p) -http://85.186.146.34:8080 -#EXTINF:-1 tvg-id="TVR1.ro",TVR 1 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr1_hd_live/smil:tvr1_hd_live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR2.ro",TVR 2 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr2_test/smil:tvr2_test.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVR3.ro",TVR 3 (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvr3_test/smil:tvr3_test.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRCluj.ro",TVR Cluj (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrcluj_new/smil:tvrcluj_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRCraiova.ro",TVR Craiova (720p) [Not 24/7] -https://mn-nl.mncdn.com/tvrcraiova_new/smil:tvrcraiova_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRIasi.ro",TVR Iași (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvriasi_new/smil:tvriasi_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRInternational.ro",TVR International (720p) [Not 24/7] -https://mn-nl.mncdn.com/tvri_test/smil:tvri_test.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVRMoldova.ro",TVR Moldova (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrmoldova_new/smil:tvrmoldova_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRTarguMures.ro",TVR Târgu Mureș (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrtgmures_new/smil:tvrtgmures_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVRTimisoara.ro",TVR Timișoara (720p) [Geo-blocked] -https://mn-nl.mncdn.com/tvrtimisoara_new/smil:tvrtimisoara_new.smil/index.m3u8 -#EXTINF:-1 tvg-id="TVSat.ro",TVSat (576p) [Not 24/7] -http://89.38.8.130:39443 -#EXTINF:-1 tvg-id="UTV.ro",UTV (576p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/utv -#EXTINF:-1 tvg-id="VPTV.ro",VP TV (576p) [Not 24/7] -http://89.38.8.130:39437 -#EXTINF:-1 tvg-id="ZURadioTV.ro",ZU Radio TV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/zuradiotv -#EXTINF:-1 tvg-id="",ZU TV (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/romania/zutv diff --git a/streams/rs.m3u b/streams/rs.m3u deleted file mode 100644 index 3135c0d6a..000000000 --- a/streams/rs.m3u +++ /dev/null @@ -1,95 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdriaMusicTV.rs",Adria Music TV (1080p) -https://srv1.adriatelekom.com/AdriaMusicTV/index.m3u8 -#EXTINF:-1 tvg-id="DjakTV.rs",Djak TV (720p) -https://srv1.adriatelekom.com/DjakTV/index.m3u8 -#EXTINF:-1 tvg-id="KurirTV.rs",Kurir TV (720p) -https://kurir-tv.haste-cdn.net/providus/live2805.m3u8 -#EXTINF:-1 tvg-id="MarsTV.rs",Marš TV (576p) [Not 24/7] -http://cdn.dovecher.tv:8081/live/marsh/chunks.m3u8 -#EXTINF:-1 tvg-id="MISTelevizija.rs",MIS Televizija (720p) [Not 24/7] -https://5afd52b55ff79.streamlock.net/MISTV/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikAMVA2020.rs",Muzzik AMVA 2020 (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-8/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikCafeClubSerbia.rs",Muzzik Cafe&Club Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-3/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikHipHopSerbia.rs",Muzzik HipHop Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a4/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikJekaSerbia.rs",Muzzik Jeka Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-4/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikMediteraneoSerbia.rs",Muzzik Mediteraneo Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a5/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikOKKSerbia.rs",Muzzik OKK Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikReplaySerbia.rs",Muzzik Replay Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a3/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikRockRollSerbia.rs",Muzzik Rock&Roll Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-1/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikSaculatacSerbia.rs",Muzzik Saculatac Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-a2/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikTVSerbia.rs",Muzzik TV Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-6/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzzikWorldwideSerbia.rs",Muzzik Worldwide Serbia (720p) [Geo-blocked] -https://muzzik-live.morescreens.com/mts-5/playlist.m3u8 -#EXTINF:-1 tvg-id="N1.ba",N1 BIH (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1bos&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.hr",N1 HRVATSKA (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1hrv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.rs",N1 RS (576p) [Not 24/7] -https://best-str.umn.cdn.united.cloud/stream?channel=n1srp&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="N1.si",N1 SLOVENSKA (576p) -https://best-str.umn.cdn.united.cloud/stream?channel=n1slv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info -#EXTINF:-1 tvg-id="PinkExtra.rs",Pink Extra (576p) -http://109.105.201.198/PINKEXTRA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFamily.rs",Pink Family (576p) -http://109.105.201.198/PINKFAMILY/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFilm.rs",Pink Film (576p) -http://109.105.201.198/PINKFILM/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkFolk1.rs",Pink Folk 1 (576p) -http://109.105.201.198/PINKFOLK/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkKoncert.rs",Pink Koncert (576p) -http://109.105.201.198/PINKKONCERT/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkMovies.rs",Pink Movies (576p) -http://109.105.201.198/PINKMOVIES/playlist.m3u8 -#EXTINF:-1 tvg-id="PinknRoll.rs",Pink n Roll (360p) -http://109.105.201.198/PINKROLL/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkPedia.rs",Pink Pedia (576p) -http://109.105.201.198/PINKPEDIA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkPremium.rs",Pink Premium (576p) -http://109.105.201.198/PINKPREMIUM/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkSciFiFantasy.rs",Pink Sci-Fi & Fantasy (576p) -http://109.105.201.198/PINKSCIFI/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkSerije.rs",Pink Serije (576p) -http://109.105.201.198/PINKSERIJE/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkWorld.rs",Pink World (360p) -http://109.105.201.198/PINKWORLD/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkWorldCinema.rs",Pink World Cinema (576p) -http://109.105.201.198/PINKWORLDCINEMA/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkZabava.rs",Pink Zabava (360p) -http://109.105.201.198/PINKZABAVA/playlist.m3u8 -#EXTINF:-1 tvg-id="RedTV.rs",Red TV (720p) -https://live.rednet.rs/providus/redtv_multi.m3u8 -#EXTINF:-1 tvg-id="RTV1.rs",RTV 1 (576p) [Not 24/7] -mmsh://212.200.255.151/rtv1 -#EXTINF:-1 tvg-id="RTV1.rs",RTV 1 (576p) [Offline] -rtsp://212.200.255.151/rtv1 -#EXTINF:-1 tvg-id="RTV2.rs",RTV 2 (576p) [Not 24/7] -mmsh://212.200.255.151/rtv2 -#EXTINF:-1 tvg-id="RTV2.rs",RTV 2 (576p) [Not 24/7] -rtsp://212.200.255.151/rtv2 -#EXTINF:-1 tvg-id="RTVAS.rs",RTV AS (576p) -https://srv1.adriatelekom.com/TVAS/index.m3u8 -#EXTINF:-1 tvg-id="RTVCityUb.rs",RTV City Ub (576p) [Not 24/7] -http://167.172.39.13/hls/tvcityub.m3u8 -#EXTINF:-1 tvg-id="RTVNoviPazar.rs",RTV Novi Pazar (576p) -https://rtvnp.rs/hls/rtvnp.m3u8 -#EXTINF:-1 tvg-id="SuperSatTVHD.rs",SuperSat TV HD (1080p) [Not 24/7] -https://srv1.adriatelekom.com/SuperSatTV/index.m3u8 -#EXTINF:-1 tvg-id="belami.rs",TV Belle Amie (540p) [Not 24/7] -http://92.60.238.10:1935/live/belleamie/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDugaPlus.rs",TV Duga Plus (480p) [Not 24/7] -http://109.92.29.10:1935/tvduga/tvduga/playlist.m3u8 -#EXTINF:-1 tvg-id="TVHram.rs",TV Hram (576p) [Not 24/7] -https://vod1.laki.eu/live/hram/index.m3u8 -#EXTINF:-1 tvg-id="TVPiCanal.rs",TV Pi Canal Pirot (576p) [Not 24/7] -http://stream.pikanal.rs/pikanal/pgm.m3u8 diff --git a/streams/ru.m3u b/streams/ru.m3u deleted file mode 100644 index aaa64d1e3..000000000 --- a/streams/ru.m3u +++ /dev/null @@ -1,773 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",1HD Music Television (404p) [Not 24/7] -https://sc.id-tv.kz/1hd.m3u8 -#EXTINF:-1 tvg-id="",1HD Music Television (1080p) [Not 24/7] -http://1hdru-hls-otcnet.cdnvideo.ru/onehdmusic/tracks-v1a1/index.m3u8 -#EXTINF:-1 tvg-id="2x2.ru",2x2 (576p) [Geo-blocked] -http://176.114.16.54/2x2/index.m3u8 -#EXTINF:-1 tvg-id="2x2.ru",2x2 (720p) -https://bl.uma.media/live/317805/HLS/4614144_3,2883584_2,1153024_1/1613019214/3754dbee773afc02014172ca26d3bb79/playlist.m3u8 -#EXTINF:-1 tvg-id="8KanalKrym.ru",8 канал Крым (576p) -http://176.99.110.252/stream8/playlist.m3u8 -#EXTINF:-1 tvg-id="9Volna.ru",9 Волна (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/9volna/playlist.m3u8 -#EXTINF:-1 tvg-id="9Volna.ru",9 Волна (720p) [Geo-blocked] -https://strm.yandex.ru/kal/acb/acb0.m3u8 -#EXTINF:-1 tvg-id="43kanal.ru",43 канал (720p) -http://sochinskayatrk.ru/hdtv/hls/43Channel_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="360deg.ru",360° (576p) [Offline] -https://strm.yandex.ru/kal/360tv/360tv0.m3u8 -#EXTINF:-1 tvg-id="360deg.ru",360° (720p) -https://video1.in-news.ru/360/index.m3u8 -#EXTINF:-1 tvg-id="360deg.ru",360° (1080p) [Not 24/7] -https://edge2-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/index.m3u8 -#EXTINF:-1 tvg-id="360degNovosti.ru",360° Новости (1080p) [Offline] -https://edge2-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/index.m3u8 -#EXTINF:-1 tvg-id="A1.ru",A1 (480p) -http://ott-cdn.ucom.am/s45/index.m3u8 -#EXTINF:-1 tvg-id="A2.ru",A2 (480p) -http://ott-cdn.ucom.am/s33/index.m3u8 -#EXTINF:-1 tvg-id="A2.ru",A2 (576p) [Not 24/7] -https://sc.id-tv.kz/A2.m3u8 -#EXTINF:-1 tvg-id="AkudjiTV.ru",Akudji TV (720p) [Offline] -https://hls.goodgame.ru/hls/5346.m3u8 -#EXTINF:-1 tvg-id="AmediaHit.ru",Amedia Hit (1080p) [Not 24/7] -https://sc.id-tv.kz/amedia_hit_hd.m3u8 -#EXTINF:-1 tvg-id="AmediaPremium.ru",Amedia Premium (480p) -http://ott-cdn.ucom.am/s64/index.m3u8 -#EXTINF:-1 tvg-id="BackusTV.ru",Backus TV (720p) [Not 24/7] -http://stream.backustv.ru/live/btv/index.m3u8 -#EXTINF:-1 tvg-id="BackusTVStrashnoe.ru",Backus TV Страшное (720p) [Not 24/7] -http://stream.backustv.ru/live/btv2/index.m3u8 -#EXTINF:-1 tvg-id="BollywoodHD.ru",Bollywood HD (1080p) [Not 24/7] -https://sc.id-tv.kz/bollywood_hd.m3u8 -#EXTINF:-1 tvg-id="BridgeTV.ru",Bridge TV (480p) -http://ott-cdn.ucom.am/s34/index.m3u8 -#EXTINF:-1 tvg-id="BridgeTV.ru",Bridge TV (480p) -http://ott-cdn.ucom.am/s78/index.m3u8 -#EXTINF:-1 tvg-id="Cinema.ru",Cinema (576p) [Not 24/7] -https://sc.id-tv.kz/Cinema.m3u8 -#EXTINF:-1 tvg-id="FAN.ru",FAN (576p) [Not 24/7] -http://194.9.27.164:8103/play/FAN/index.m3u8 -#EXTINF:-1 tvg-id="FreshTV.ru",FreshTV (720p) [Geo-blocked] -https://strm.yandex.ru/kal/fresh/fresh0.m3u8 -#EXTINF:-1 tvg-id="GlobalStarTV.ru",Global Star TV (720p) [Timeout] -http://stream2.hardlife.tv:8134/hls-live/hlsGS/_definst_/liveevent/gs.m3u8 -#EXTINF:-1 tvg-id="HDlife.ru",HD life (1080p) [Not 24/7] -http://37.193.6.155:34040/udp/239.1.9.2:1234 -#EXTINF:-1 tvg-id="HDMedia.ru",HD Медиа (720p) [Geo-blocked] -https://strm.yandex.ru/kal/hdmedia/hdmedia0.m3u8 -#EXTINF:-1 tvg-id="HDL.ru",HDL (404p) [Not 24/7] -https://sc.id-tv.kz/hdl.m3u8 -#EXTINF:-1 tvg-id="HITV.ru",HITV (1080p) [Offline] -https://strm.yandex.ru/kal/hittv/hittv0.m3u8 -#EXTINF:-1 tvg-id="Leomax24.ru",Leomax 24 (1080p) -https://tvshops.bonus-tv.ru/cdn/shop24/playlist.m3u8 -#EXTINF:-1 tvg-id="LeomaxPlus.ru",Leomax Plus (576p) -https://tvshops.bonus-tv.ru/cdn/discount/playlist.m3u8 -#EXTINF:-1 tvg-id="Luxury.ru",Luxury (1080p) -http://nano.teleservice.su:8080/hls/luxury.m3u8 -#EXTINF:-1 tvg-id="MilleniumTV.ru",Millenium TV (540p) [Offline] -http://tv1.mmg.ooo/live/sd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MilleniumTV.ru",Millenium TV (1080p) -http://tv1.mmg.ooo/live/hd.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MOSOBRTV.ru",MOSOBR.TV (720p) -http://retj.educom.ru/mosobrtv/tv1/index.m3u8 -#EXTINF:-1 tvg-id="MOSOBRTV.ru",MOSOBR.TV (720p) [Not 24/7] -http://retc.educom.ru/mosobrtv/tv1/index.m3u8 -#EXTINF:-1 tvg-id="MTVmix.ru",MTVmix (Уфа) (384p) [Timeout] -http://81.30.182.82:18092/hls/live.m3u8 -#EXTINF:-1 tvg-id="MusicBoxRussia.ru",Music Box Russia (1080p) [Offline] -https://strm.yandex.ru/kal/rmbox/rmbox0.m3u8 -#EXTINF:-1 tvg-id="Olala.ru",O-la-la (576p) [Not 24/7] -http://194.9.27.164:8103/play/O_la_la/index.m3u8 -#EXTINF:-1 tvg-id="OceanTV.ru",Ocean TV (576p) [Offline] -http://91.192.168.242:9091 -#EXTINF:-1 tvg-id="RadostMoya.ru",Radost Moya (576p) [Geo-blocked] -https://cdn-01.bonus-tv.ru/radostmoya_edge/index.m3u8 -#EXTINF:-1 tvg-id="RTAmerica.ru",RT America (480p) -http://ott-cdn.ucom.am/s96/index.m3u8 -#EXTINF:-1 tvg-id="RTAmerica.ru",RT America (1080p) [Not 24/7] -https://rt-usa.gcdn.co/live/rtusa/playlist.m3u8 -#EXTINF:-1 tvg-id="RTArabic.ru",RT Arabic (1080p) -https://rt-arb.gcdn.co/live/rtarab/playlist.m3u8 -#EXTINF:-1 tvg-id="RTArabic.ru",RT Arabic (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsP3Clx2qtH2mNZ6KolVoZQ/live -#EXTINF:-1 tvg-id="RTDocumentary.ru",RT Documentary (1080p) -https://rt-rtd.gcdn.co/live/rtdoc/playlist.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (480p) -http://ott-cdn.ucom.am/s93/index.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) -https://hls.rt.com/hls/rtdru.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) -https://rtmp.api.rt.com/hls/rtdru.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) [Not 24/7] -http://uiptv.do.am/1ufc/300663722/playlist.m3u8 -#EXTINF:-1 tvg-id="RTDoc.ru",RT Documentary Russian (1080p) [Not 24/7] -https://strm.yandex.ru/kal/rtd_hd/rtd_hd0.m3u8 -#EXTINF:-1 tvg-id="RTenEspanol.ru",RT en Español (1080p) [Not 24/7] -https://rt-esp.gcdn.co/live/rtesp/playlist.m3u8 -#EXTINF:-1 tvg-id="RTFrance.ru",RT France (1080p) -https://rt-fra.gcdn.co/live/rtfrance/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNews.ru",RT News (1080p) [Not 24/7] -https://rt-glb.gcdn.co/live/rtnews/playlist.m3u8 -#EXTINF:-1 tvg-id="RTNews.ru",RT News (1080p) [Timeout] -https://strm.yandex.ru/kal/rt_hd/rt_hd0.m3u8 -#EXTINF:-1 tvg-id="RTUK.ru",RT UK (1080p) -https://rt-uk.gcdn.co/live/rtuk/playlist.m3u8 -#EXTINF:-1 tvg-id="RTGTV.ru",RTG (480p) [Timeout] -http://ott-cdn.ucom.am/s80/index.m3u8 -#EXTINF:-1 tvg-id="RTGHD.ru",RTG HD (480p) -http://ott-cdn.ucom.am/s63/index.m3u8 -#EXTINF:-1 tvg-id="",RU.TV (360p) [Offline] -https://rut-v.gcdn.co/streams/1410_95/playlist.m3u8 -#EXTINF:-1 tvg-id="",RU.TV (1080p) [Offline] -https://rutv.gcdn.co/streams/1410_95/playlist.m3u8 -#EXTINF:-1 tvg-id="",RU.TV (1080p) [Offline] -https://strm.yandex.ru/kal/rutv_cv/rutv_cv0.m3u8 -#EXTINF:-1 tvg-id="SGDF24RU.ru",SGDF24.RU (Свердлов) (720p) [Not 24/7] -http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoppingLive.ru",Shopping Live (576p) [Not 24/7] -http://serv30.vintera.tv:8081/shoppinglive/shoppinglive_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ShotTV.ru",Shot TV [Not 24/7] -http://cdn.tvmatic.net/shot.m3u8 -#EXTINF:-1 tvg-id="SochiLiveHD.ru",Sochi Live HD (720p) [Not 24/7] -http://serv30.vintera.tv:8081/sochi/sochi_stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TRK555.ru",TRK 555 (720p) -http://trk555.tv:8888/live -#EXTINF:-1 tvg-id="TVBRICSChinese.ru",TV BRICS Chinese (1080p) [Not 24/7] -https://brics.bonus-tv.ru/cdn/brics/chinese/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSEnglish.ru",TV BRICS English (1080p) -https://brics.bonus-tv.ru/cdn/brics/english/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSPortuguese.ru",TV BRICS Portuguese (1080p) -https://brics.bonus-tv.ru/cdn/brics/portuguese/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBRICSRussian.ru",TV BRICS Russian (1080p) -https://brics.bonus-tv.ru/cdn/brics/russian/playlist.m3u8 -#EXTINF:-1 tvg-id="TVPRO.ru",TV PRO (576p) [Not 24/7] -http://rtmp.tvpro-online.ru/hls/ch1.m3u8 -#EXTINF:-1 tvg-id="TVGuberniya.ru",TV Губерния (Воронеж) (720p) -https://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMChannel.ru",TVMChannel (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/tvm_edge/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMChannel.ru",TVMChannel (720p) [Geo-blocked] -https://strm.yandex.ru/kal/tvm_supres/tvm_supres0.m3u8 -#EXTINF:-1 tvg-id="UniverTV.ru",Univer TV (1080p) -https://cdn.universmotri.ru/live/smil:univer.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UniverTV.ru",Univer TV (1080p) [Not 24/7] -https://cdn.universmotri.ru/live/smil:mbr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VIVARussia.ru",VIVA Russia (1080p) [Not 24/7] -https://live.prd.dlive.tv/hls/live/viva-russia.m3u8 -#EXTINF:-1 tvg-id="WorldFashionChannel.ru",World Fashion Channel (1080p) -https://wfcint.mediacdn.ru/cdn/wfcintweb/playlist.m3u8 -#EXTINF:-1 tvg-id="AbazaTV.ru",Абаза ТВ (576p) [Offline] -http://watcher-node5.apsny.camera/tv_abaza_tv/index.m3u8 -#EXTINF:-1 tvg-id="Avto24.ru",Авто 24 (576p) [Geo-blocked] -http://185.52.77.67:8080/Avto24/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="Aris24.ru",Арис 24 (720p) [Not 24/7] -http://serv25.vintera.tv:8081/test/aris/playlist.m3u8 -#EXTINF:-1 tvg-id="Arsenal.ru",Арсенал (480p) -http://ott-cdn.ucom.am/s68/index.m3u8 -#EXTINF:-1 tvg-id="Arhyz24.ru",Архыз 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/arhyz24/arhyz240.m3u8 -#EXTINF:-1 tvg-id="Arhyz24.ru",Архыз 24 (1080p) -https://live.mediacdn.ru/sr1/arhis24/playlist.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) -https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/astrahan24/astrahan240.m3u8 -#EXTINF:-1 tvg-id="Astrahan24.ru",Астрахань 24 (720p) [Not 24/7] -http://83.234.104.142/astrakhan24hd/playlist.m3u8 -#EXTINF:-1 tvg-id="AstrahanRuSport.ru",Астрахань.Ru Sport (720p) -https://streaming.astrakhan.ru/astrakhanrusporthd/playlist.m3u8 -#EXTINF:-1 tvg-id="AstrahanRuTV.ru",Астрахань.Ru TV (480p) -https://streaming.astrakhan.ru/astrakhanrulivehd/playlist.m3u8 -#EXTINF:-1 tvg-id="Afontovo.ru",Афонтово (Красноярск) (1080p) [Geo-blocked] -http://xstream.afontovo.ru/afontovo_ya.m3u8 -#EXTINF:-1 tvg-id="Bashkortostan24.ru",Башкортостан 24 (1080p) -http://live.gtrk.tv/hls/b24-hls.m3u8 -#EXTINF:-1 tvg-id="Bashkortostan24.ru",Башкортостан 24 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/bashkortostan24/bashkortostan240.m3u8 -#EXTINF:-1 tvg-id="Belgorod24.ru",Белгород 24 (1080p) -http://belnovosti.cdn.easyhoster.ru:8080/stream.m3u8 -#EXTINF:-1 tvg-id="BelRos.ru",БелРос (576p) -http://live2.mediacdn.ru/sr1/tro/playlist.m3u8 -#EXTINF:-1 tvg-id="Bober.ru",Бобер (576p) [Not 24/7] -https://sc.id-tv.kz/bober.m3u8 -#EXTINF:-1 tvg-id="BolshayaAziya.ru",Большая Азия (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/bigasia/bigasia0.m3u8 -#EXTINF:-1 tvg-id="",БСТ (Башкирское спутниковое телевидение) (576p) -https://bsttv.bonus-tv.ru/cdn/bst/playlist.m3u8 -#EXTINF:-1 tvg-id="Vera24.ru",Вера 24 (720p) [Timeout] -http://62.32.67.187:1935/WEB_Vera24/Vera24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VestnikNadymaPlus2.ru",Вестник Надыма +2 (720p) [Not 24/7] -http://live-trknadym.cdnvideo.ru/trknadym-pub/trknadym.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Vetta24.ru",Ветта 24 (Пермь) (576p) [Not 24/7] -http://serv24.vintera.tv:8081/vetta/vetta_office/playlist.m3u8 -#EXTINF:-1 tvg-id="VechernyayaMoskva.ru",Вечерняя Москва (1080p) [Not 24/7] -https://vmvideo.gcdn.co/streams/1503_161/playlist.m3u8 -#EXTINF:-1 tvg-id="VmesteRF.ru",Вместе-РФ (1080p) [Geo-blocked] -http://cdn-01.bonus-tv.ru:8080/vmesterf/index.m3u8 -#EXTINF:-1 tvg-id="VmesteRF.ru",Вместе-РФ (1080p) [Geo-blocked] -http://uiptv.do.am/1ufc/118056781/playlist.m3u8 -#EXTINF:-1 tvg-id="Volgograd1.ru",Волгоград 1 (576p) [Offline] -http://213.234.30.38/Live/1000k/stream.m3u8 -#EXTINF:-1 tvg-id="Volgograd1.ru",Волгоград 1 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/volgograd1/volgograd10.m3u8 -#EXTINF:-1 tvg-id="Vremya.ru",Время (576p) -http://91.185.3.218:4000/play/607 -#EXTINF:-1 tvg-id="",ВТВ Плюс (Херсон) (576p) -http://193.107.128.8:8552/play/a007 -#EXTINF:-1 tvg-id="",ВТВ Плюс (Херсон) (576p) -http://iptv.rubintele.com:8552/play/a007 -#EXTINF:-1 tvg-id="GALTV.ru",ГАЛ ТВ (576p) [Offline] -http://watcher-node5.apsny.camera/tv_gal_tv_hd_online/index.m3u8 -#EXTINF:-1 tvg-id="",Городской телеканал (Ярославль) (576p) -http://www.gtk.tv/hls/gtyar.m3u8 -#EXTINF:-1 tvg-id="Guberniya33.ru",Губерния 33 (Владимир) (360p) -https://live-trc33.cdnvideo.ru/trc33/trc33.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Губерния (Самара) (576p) -http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Dagestan.ru",Дагестан (1080p) -https://dagestan.mediacdn.ru/cdn/dagestan/playlist.m3u8 -#EXTINF:-1 tvg-id="DayvingTV.ru",Дайвинг.TV (720p) [Geo-blocked] -https://strm.yandex.ru/kal/diving/diving0.m3u8 -#EXTINF:-1 tvg-id="Dialogiorybalke.ru",Диалоги о рыбалке (1080p) [Offline] -http://strm.yandex.ru/kal/dialogi/dialogi0.m3u8 -#EXTINF:-1 tvg-id="Dozhd.ru",Дождь (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/tvrain/tvrain0.m3u8 -#EXTINF:-1 tvg-id="Doktor.ru",Доктор (720p) [Not 24/7] -http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/512/index.m3u8 -#EXTINF:-1 tvg-id="",Дом кино (576p) -http://91.185.3.218:4000/play/606 -#EXTINF:-1 tvg-id="DomKinoPremium.ru",Дом Кино Премиум (1080p) [Not 24/7] -https://sc.id-tv.kz/domkino_hd.m3u8 -#EXTINF:-1 tvg-id="",Дом кино Премиум (1080p) [Offline] -http://87.247.44.26/btv/SWM/Dom_kino_Prem/Dom_kino_Prem.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (480p) -http://ott-cdn.ucom.am/s88/index.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (576p) [Timeout] -http://31.128.159.41:8080/domashniy/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Дорама (480p) -http://ott-cdn.ucom.am/s95/index.m3u8 -#EXTINF:-1 tvg-id="",Дорама (1080p) [Not 24/7] -https://sc.id-tv.kz/dorama_hd.m3u8 -#EXTINF:-1 tvg-id="Evraziya.ru",Евразия (Орск) (720p) -http://infochhdcdn.trkeurasia.ru/orsk-infochhd/infochhd/playlist.m3u8 -#EXTINF:-1 tvg-id="Evraziya.ru",Евразия (Орск) (720p) -https://infochh.trkeurasia.ru/hlsinfoch/infochhd.m3u8 -#EXTINF:-1 tvg-id="Evronovosti.ru" status="online",Евроновости (540p) -http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist.m3u8 -#EXTINF:-1 tvg-id="Evronovosti.ru",Евроновости (720p) [Offline] -https://strm.yandex.ru/kal/euronews_supres/euronews_supres0.m3u8 -#EXTINF:-1 tvg-id="Enisey.ru",Енисей (1080p) [Not 24/7] -http://hls-eniseytv.cdnvideo.ru/eniseytv/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Жар Птица (404p) [Geo-blocked] -http://streamer.rtcommufa.ru:1935/ptica/ptica1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Жар Птица (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/firebird/firebird0.m3u8 -#EXTINF:-1 tvg-id="",Жара (576p) [Not 24/7] -http://185.161.224.216/dash/JaraTv_SD.ism/playlist.mpd -#EXTINF:-1 tvg-id="Zagorodnyy.ru",Загородный (480p) -http://ott-cdn.ucom.am/s31/index.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (480p) -http://ott-cdn.ucom.am/s85/index.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (1080p) [Not 24/7] -https://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooTV.ru",Зоо ТВ (480p) -http://ott-cdn.ucom.am/s92/index.m3u8 -#EXTINF:-1 tvg-id="",Известия (720p) -https://hls-igi.cdnvideo.ru/igi/igi_sq/playlist.m3u8 -#EXTINF:-1 tvg-id="",Известия (1080p) -http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8 -#EXTINF:-1 tvg-id="",Индийское кино (576p) [Not 24/7] -https://sc.id-tv.kz/Indiiskoe_kino.m3u8 -#EXTINF:-1 tvg-id="",История (480p) -http://ott-cdn.ucom.am/s40/index.m3u8 -#EXTINF:-1 tvg-id="",К16 (Саров) (406p) [Not 24/7] -http://serv25.vintera.tv:8081/test/k16/playlist.m3u8 -#EXTINF:-1 tvg-id="KabbalaTV.ru",Каббала ТВ (360p) [Not 24/7] -https://edge2.uk.kab.tv/live/tvrus-rus-medium/playlist.m3u8 -#EXTINF:-1 tvg-id="Kavkaz24.ru",Кавказ 24 (720p) [Geo-blocked] -https://strm.yandex.ru/kal/kavkaz24_supres/kavkaz24_supres0.m3u8 -#EXTINF:-1 tvg-id="KarapuzTV.ru",Карапуз ТВ (1080p) [Offline] -https://karapuztv.fenixplustv.xyz/content/33418/index.m3u8 -#EXTINF:-1 tvg-id="Karusel.ru",Карусель (576p) -http://91.185.3.218:4000/play/604 -#EXTINF:-1 tvg-id="",Кинокомедия (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinokomediya_hd.m3u8 -#EXTINF:-1 tvg-id="Kinomiks.ru",Киномикс (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinomix_hd.m3u8 -#EXTINF:-1 tvg-id="",Кинопремьера (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinopremiera_hd.m3u8 -#EXTINF:-1 tvg-id="Kinosvidanie.ru",Киносвидание (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinosvidanie_hd.m3u8 -#EXTINF:-1 tvg-id="",Киносемья (1080p) [Not 24/7] -https://sc.id-tv.kz/Kinosemiya_hd.m3u8 -#EXTINF:-1 tvg-id="Kinohit.ru",Кинохит (404p) [Not 24/7] -https://sc.id-tv.kz/Kinohit_hd.m3u8 -#EXTINF:-1 tvg-id="KlassikaKino.ru",Классика Кино (720p) [Geo-blocked] -https://strm.yandex.ru/kal/kinoclassic/kinoclassic0.m3u8 -#EXTINF:-1 tvg-id="Komediynoe.ru",Комедийное (540p) [Timeout] -http://185.97.150.19:8082/2402 -#EXTINF:-1 tvg-id="Komediya.ru",Комедия (576p) [Not 24/7] -http://188.40.68.167/russia/komediya/playlist.m3u8 -#EXTINF:-1 tvg-id="",Конный Мир (576p) [Geo-blocked] -http://cdn-01.bonus-tv.ru/konnyimir/playlist.m3u8 -#EXTINF:-1 tvg-id="",Красная линия (480p) -https://kprf-htlive.cdn.ngenix.net/live/stream_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KrasnogorskTV.ru",Красногорск ТВ (480p) [Not 24/7] -http://live-krtv.cdnvideo.ru/krtv/krtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KrikTV.ru",Крик-ТВ (576p) [Geo-blocked] -https://strm.yandex.ru/kal/krik_tv/krik_tv0.m3u8 -#EXTINF:-1 tvg-id="Krym24.ru",Крым 24 (540p) [Not 24/7] -http://mr2live.1tvcrimea.ru:8080/24tvcrimea.m3u8 -#EXTINF:-1 tvg-id="Kuban24Orbita.ru",Кубань 24 Орбита (576p) -https://stream.kuban24.tv:1500/hls/stream.m3u8 -#EXTINF:-1 tvg-id="Kuzbass1.ru",Кузбасс 1 (1080p) [Not 24/7] -https://www.10kanal.ru:1443/10kanal/k24/playlist.m3u8 -#EXTINF:-1 tvg-id="",Культура (480p) -http://ott-cdn.ucom.am/s16/index.m3u8 -#EXTINF:-1 tvg-id="",Культура (576p) [Timeout] -http://uiptv.do.am/1ufc/000000005/playlist.m3u8 -#EXTINF:-1 tvg-id="",Культура (1920p) [Geo-blocked] -https://zabava-htlive.cdn.ngenix.net/hls/CH_RUSSIAK/variant.m3u8 -#EXTINF:-1 tvg-id="",Курай (576p) -https://bsttv.bonus-tv.ru/cdn/kurai/playlist.m3u8 -#EXTINF:-1 tvg-id="KFUTV.ru",КФУ ТВ (1080p) [Not 24/7] -https://cdn.universmotri.ru/live/kfu.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (480p) -http://46.46.143.222:1935/live/mp4:ldpr.stream_480p/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (720p) -http://46.46.143.222:1935/live/mp4:ldpr.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="LDPRTV.ru",ЛДПР ТВ (1080p) -http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Lipeckoevremya.ru",Липецкое время (576p) [Not 24/7] -http://serv25.vintera.tv:8081/liptime/liptime/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVProza.ru",ЛитКлуб ТВ Проза (720p) -http://hls-rossp.cdnvideo.ru/hls/5ace67f0dc96bf0a90d8a2b7/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVSlovo.ru",ЛитКлуб ТВ Слово (720p) -http://hls-rossp.cdnvideo.ru/hls/5ace6814e563f22e4ddc1f44/playlist.m3u8 -#EXTINF:-1 tvg-id="LitKlubTVStihi.ru",ЛитКлуб ТВ Стихи (720p) -http://hls-rossp.cdnvideo.ru/hls/5aac88ffdc96bf05a7f78899/playlist.m3u8 -#EXTINF:-1 tvg-id="",Луч (Пуровск) (720p) [Not 24/7] -https://live.trk-luch.ru/hls/live.m3u8 -#EXTINF:-1 tvg-id="LyubimoeTV.ru",Любимое.ТВ (720p) [Geo-blocked] -https://strm.yandex.ru/kal/lovedtv/lovedtv0.m3u8 -#EXTINF:-1 tvg-id="MirPlus3.ru",Мir +3 (576p) [Not 24/7] -https://sc.id-tv.kz/Mir.m3u8 -#EXTINF:-1 tvg-id="MaturTV.ru",Матур ТВ (1080p) -https://public.streaming.matur-tv.ru/hls/h264_aac/stream.m3u8 -#EXTINF:-1 tvg-id="",Между.Net (Междуреченск) (720p) [Not 24/7] -http://212.77.128.179:8089/www_mezhdunet/mezhdunet/playlist.m3u8 -#EXTINF:-1 tvg-id="Millet.ru",Миллет (540p) [Not 24/7] -http://live.trkmillet.ru/millet/index.m3u8 -#EXTINF:-1 tvg-id="Ministerstvoidey.ru",Министерство идей (720p) -http://live-minidey.cdnvideo.ru/minidey/minidey.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Mir24.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mir24_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir24.ru",Мир 24 (1080p) [Not 24/7] -http://188.40.68.167/russia/mir24/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir.ru",Мир (1080p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="Mir.ru",Мир (1080p) [Not 24/7] -http://uiptv.do.am/1ufc/113500247/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus2.ru",Мир +2 (540p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv2_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus4.ru",Мир +4 (540p) [Not 24/7] -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv3_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="MirPlus7.ru",Мир +7 (540p) -http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv7_2500/playlist.m3u8 -#EXTINF:-1 tvg-id="",Мир Белагорья (720p) [Geo-blocked] -http://mirbelogorya.ru:8080/mirbelogorya/index.m3u8 -#EXTINF:-1 tvg-id="",Мир Белогорья (720p) [Geo-blocked] -http://live-mirbelogorya.cdnvideo.ru/mirbelogorya/mirbelogorya1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Мир Белогорья (720p) [Geo-blocked] -http://stream.tvbelgorod.ru:8080/mirbelogorya/index.m3u8 -#EXTINF:-1 tvg-id="MirSeriala.ru",Мир Сериала (576p) [Not 24/7] -http://185.161.224.216/dash/Mir_seriala_SD.ism/playlist.mpd -#EXTINF:-1 tvg-id="",Мир сериала (576p) [Not 24/7] -http://188.40.68.167/russia/mir_seriala/playlist.m3u8 -#EXTINF:-1 tvg-id="Mistoplyus.ru",Мисто плюс (480p) [Timeout] -http://93.78.206.172:8080/stream4/stream.m3u8 -#EXTINF:-1 tvg-id="Mistoplyus.ru",Мисто плюс (720p) [Timeout] -http://93.78.206.172:8080/stream5/stream.m3u8 -#EXTINF:-1 tvg-id="Mordoviya24.ru",Мордовия 24 (360p) [Not 24/7] -https://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8 -#EXTINF:-1 tvg-id="",Морской (720p) [Not 24/7] -http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/742/index.m3u8 -#EXTINF:-1 tvg-id="Moskva24.ru",Москва 24 (576p) -https://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist.m3u8 -#EXTINF:-1 tvg-id="Moskva24.ru",Москва 24 (720p) [Offline] -https://strm.yandex.ru/kal/msk24_supres/msk24_supres0.m3u8 -#EXTINF:-1 tvg-id="",Моя планета (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/master.m3u8 -#EXTINF:-1 tvg-id="MoyaPlaneta.ru",Моя Планета (576p) [Offline] -https://a3569456481-s26881.cdn.ngenix.net/live/smil:mplan.smil/index.m3u8 -#EXTINF:-1 tvg-id="MTV.ru",МТВ (Волгоград) (720p) [Not 24/7] -http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Мужское кино (1080p) [Not 24/7] -https://sc.id-tv.kz/Mujskoe_kino_hd.m3u8 -#EXTINF:-1 tvg-id="",Муз союз (576p) -http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (480p) [Timeout] -http://ott-cdn.ucom.am/s28/index.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (720p) [Offline] -https://strm.yandex.ru/kal/muztv_supres/muztv_supres0.m3u8 -#EXTINF:-1 tvg-id="MuzSoyuz.ru",МузСоюз (576p) -http://hls.tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 -#EXTINF:-1 tvg-id="MuzikaPervogo.ru",Музыка Первого (576p) -http://91.185.3.218:4000/play/608 -#EXTINF:-1 tvg-id="",Мультиландия (576p) [Geo-blocked] -http://serv30.vintera.tv:8081/detskiy/multimania20/playlist.m3u8 -#EXTINF:-1 tvg-id="Nadezhda.ru",Надежда (720p) -https://live-tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 -#EXTINF:-1 tvg-id="Nadezhda.ru",Надежда (720p) -https://tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Нано (540p) -http://nano.teleservice.su:8080/hls/nano.m3u8 -#EXTINF:-1 tvg-id="Nauka.ru",Наука (480p) -http://ott-cdn.ucom.am/s98/index.m3u8 -#EXTINF:-1 tvg-id="",Наш дом [Not 24/7] -http://85.234.33.60/stream/c11.m3u8 -#EXTINF:-1 tvg-id="NashaSibir.ru",Наша Сибирь (1080p) [Offline] -https://strm.yandex.ru/kal/sibir/sibir0.m3u8 -#EXTINF:-1 tvg-id="",Наша Сибирь / Кемерово (480p) [Not 24/7] -https://strm.yandex.ru/kal/sibir/sibir0_169_480p.json/index-v1-a1.m3u8 -#EXTINF:-1 tvg-id="NasheKrutoeHD.ru",Наше Крутое HD (1080p) [Not 24/7] -http://ba5729d5.krasnafhg.ru/iptv/EAEWFFWBXPVVLY/915/index.m3u8 -#EXTINF:-1 tvg-id="NasheNovoeKino.ru",Наше Новое Кино [Not 24/7] -https://s1.idata.uz/stch_temp6/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",НВК Саха (1080p) [Not 24/7] -http://live-saha.cdnvideo.ru/saha/saha/playlist.m3u8 -#EXTINF:-1 tvg-id="NizhniyNovgorod24.ru",Нижний Новгород 24 (720p) [Not 24/7] -https://live-vestinn.cdnvideo.ru/vestinn/nn24-khl/playlist.m3u8 -#EXTINF:-1 tvg-id="NikaTV.ru",Ника ТВ (576p) [Not 24/7] -https://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Новое радио (1080p) -https://hls-video01.cdnvideo.ru/video01/smil:video01.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NovoeTV.ru",Новое ТВ (404p) [Not 24/7] -https://sc.id-tv.kz/New_Television.m3u8 -#EXTINF:-1 tvg-id="NovoeTV.ru",Новое ТВ (576p) [Not 24/7] -http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NovorossiyaTV.ru",Новороссия ТВ (720p) -http://ott.inmart.tv:8081/19/index.m3u8 -#EXTINF:-1 tvg-id="Novyymir.ru",Новый мир (406p) [Not 24/7] -http://stream.studio360.tv/nw/nw_576p/playlist.m3u8 -#EXTINF:-1 tvg-id="Noyabrsk24.ru",Ноябрьск 24 (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/noyabrsk24/noyabrsk240.m3u8 -#EXTINF:-1 tvg-id="NTV.ru",НТВ (480p) -http://ott-cdn.ucom.am/s17/index.m3u8 -#EXTINF:-1 tvg-id="NTV.ru",НТВ (576p) [Timeout] -http://31.128.159.41:8080/ntv/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",НТВ Стиль (480p) -http://ott-cdn.ucom.am/s77/index.m3u8 -#EXTINF:-1 tvg-id="NTM.ru",НТМ (Народное телевидение Мордовии) (720p) [Not 24/7] -https://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",НТС (Севастополь) (1080p) [Not 24/7] -https://peqk71plnjy.a.trbcdn.net/livemaster/w4kz7pki62_nts_tv/playlist.m3u8 -#EXTINF:-1 tvg-id="O2TV.ru",О2ТВ (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/o2/o20.m3u8 -#EXTINF:-1 tvg-id="O.ru",О! (576p) [Not 24/7] -https://sc.id-tv.kz/o.m3u8 -#EXTINF:-1 tvg-id="Oplot2.ru",Оплот 2 (1080p) -http://ott.inmart.tv:8081/17/index.m3u8 -#EXTINF:-1 tvg-id="OplotTV.ru",Оплот ТВ (1080p) -http://ott.inmart.tv:8081/54/index.m3u8 -#EXTINF:-1 tvg-id="",Остросюжетное (540p) [Timeout] -http://185.97.150.19:8082/2235 -#EXTINF:-1 tvg-id="OTV.ru",ОТВ (Одинцово) (576p) -http://185.18.4.16/live/3m/playlist.m3u8 -#EXTINF:-1 tvg-id="OTR.ru",ОТР (720p) [Offline] -https://strm.yandex.ru/kal/otr/otr0.m3u8 -#EXTINF:-1 tvg-id="OTS.ru",ОТС (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/otstv/otstv0.m3u8 -#EXTINF:-1 tvg-id="OhotnikiRybolov.ru",Охотник и Рыболов (480p) -http://ott-cdn.ucom.am/s62/index.m3u8 -#EXTINF:-1 tvg-id="OhotnikirybolovInternational.ru",Охотник и рыболов International (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/ohotnik/ohotnik0.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (480p) -http://ott-cdn.ucom.am/s14/04.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (576p) -http://91.185.3.218:4000/play/603 -#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал [Offline] -https://cdn1.mobiletv.bg/T5/perviy_kanal/perviy_kanal_794613_850k.m3u8 -#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru",Первый канал Евразия (396p) [Not 24/7] -http://stream.euroasia.lfstrm.tv/perviy_evrasia/1/index.m3u8 -#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru",Первый канал Евразия (576p) [Not 24/7] -https://sc.id-tv.kz/1KanalEvraziya.m3u8 -#EXTINF:-1 tvg-id="Pervyykrymskiy.ru",Первый крымский (540p) [Not 24/7] -http://mrlive.1tvcrimea.ru:8080/1tvcrimea.m3u8 -#EXTINF:-1 tvg-id="PervyyPskovskiy.ru",Первый Псковский (540p) [Not 24/7] -http://194.190.78.91/pskov/rewind-10800.m3u8 -#EXTINF:-1 tvg-id="Pervyyrespublikanskiy.ru",Первый республиканский (720p) -http://ott.inmart.tv:8081/18/index.m3u8 -#EXTINF:-1 tvg-id="PervyyTulskiy.ru",Первый Тульский (576p) [Not 24/7] -http://5.164.24.83/tula/1tv_low/index.m3u8 -#EXTINF:-1 tvg-id="Planeta.ru",Планета [Offline] -https://cdn1.mobiletv.bg/T5/planeta/planeta_794613_850k.m3u8 -#EXTINF:-1 tvg-id="Pobeda.ru",Победа (576p) [Not 24/7] -https://sc.id-tv.kz/Pobeda.m3u8 -#EXTINF:-1 tvg-id="Pobeda.ru",Победа (576p) [Offline] -http://87.247.44.26/btv/SWM/Pobeda/Pobeda.m3u8 -#EXTINF:-1 tvg-id="Poehali.ru",Поехали! (576p) [Not 24/7] -https://sc.id-tv.kz/poehali.m3u8 -#EXTINF:-1 tvg-id="",Прима (1920p) -https://rt-sib-krsk-htlive.cdn.ngenix.net/hls/CH_R11_OTT_SIB_KRSK_STS/variant.m3u8 -#EXTINF:-1 tvg-id="PRNK.ru",ПРНК (720p) [Not 24/7] -http://serv25.vintera.tv:8081/1pnk/1pnk/playlist.m3u8 -#EXTINF:-1 tvg-id="",Продвижение (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/prodvizheniye/prodvizheniye0.m3u8 -#EXTINF:-1 tvg-id="Prosveshchenie.ru",Просвещение (540p) [Geo-blocked] -https://cdn-01.bonus-tv.ru/prosveschenie_edge/playlist.m3u8 -#EXTINF:-1 tvg-id="PyatnicaInternational.ru",Пятница! International (480p) -http://ott-cdn.ucom.am/s50/index.m3u8 -#EXTINF:-1 tvg-id="Radio10.ru",Радио 10 (1024p) [Not 24/7] -http://langate.tv/acc/playlist.m3u8 -#EXTINF:-1 tvg-id="Radio1018.ru",Радио 101.8 (540p) -https://video.penzainform.ru/e/r1018.m3u8 -#EXTINF:-1 tvg-id="RadioGovoritMoskva.ru",Радио Говорит Москва (404p) [Not 24/7] -http://video.govoritmoskva.ru:8080/live/rufmbk-1/index.m3u8 -#EXTINF:-1 tvg-id="",Радио Говорит Москва (Веб-камера) (720p) -https://video.govoritmoskva.ru/rufm/index.m3u8 -#EXTINF:-1 tvg-id="RadioPilot.ru",Радио Пилот (720p) [Not 24/7] -https://pilotfm.ru/cam/hls/pilothd.m3u8 -#EXTINF:-1 tvg-id="",Радио России (Чувашия) (720p) [Not 24/7] -https://chgtrk.ru/pl/stream/hls/RR_720p/index.m3u8 -#EXTINF:-1 tvg-id="",радио Хит ТВ (300p) -http://lova.me/hls/hit.m3u8 -#EXTINF:-1 tvg-id="RadioShanson.ru",Радио Шансон (720p) [Not 24/7] -http://chanson-video.hostingradio.ru:8080/hls/chansonabr/live.m3u8 -#EXTINF:-1 tvg-id="RamenskoeTV.ru",Раменское ТВ (720p) [Timeout] -https://rtv.facecast.io/rtv/0.m3u8 -#EXTINF:-1 tvg-id="Ratnik.ru",Ратник (1080p) -https://online-video.rbc.ru/online/rbctv.m3u8 -#EXTINF:-1 tvg-id="Ratnik.ru",Ратник (1080p) [Geo-blocked] -http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",РБК (480p) [Timeout] -http://ott-cdn.ucom.am/s36/index.m3u8 -#EXTINF:-1 tvg-id="",РБК (560p) -http://92.50.128.180/utv/1358/index.m3u8 -#EXTINF:-1 tvg-id="",РБК (576p) -http://uiptv.do.am/1ufc/701293058/playlist.m3u8 -#EXTINF:-1 tvg-id="",РБК (720p) [Geo-blocked] -https://strm.yandex.ru/kal/rbc_supres/rbc_supres0.m3u8 -#EXTINF:-1 tvg-id="Region29.ru",Регион 29 (Архангельск) (720p) [Geo-blocked] -http://live-atkmedia.cdnvideo.ru/atkmedia/atkmedia/playlist.m3u8 -#EXTINF:-1 tvg-id="RENTV.ru",РЕН ТВ (576p) -http://ad-hls-rentv.cdnvideo.ru/ren/smil:ren.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RENTVInternational.ru",РЕН ТВ International (576p) [Not 24/7] -https://sc.id-tv.kz/RenTV.m3u8 -#EXTINF:-1 tvg-id="",РЖД ТВ (360p) [Geo-blocked] -http://hls.tva.cdnvideo.ru/tva/tva.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",РЖД ТВ (720p) [Geo-blocked] -http://hls.tva.cdnvideo.ru/tva/tvahd.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="",Родное кино (576p) [Not 24/7] -https://sc.id-tv.kz/Rodnoe_kino.m3u8 -#EXTINF:-1 tvg-id="Rodnoykanal.ru",Родной канал (720p) [Not 24/7] -https://n1.slavmir.tv/live/slavmir/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Kaluga.ru",Россия 1 (Калуга) (202p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/vgtrkrtmp/smil:kaluga_r1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1MariyEl.ru",Россия 1 (Марий Эл) (720p) [Offline] -http://gtrkmariel-live.cdnvideo.ru/gtrkmariel/gtrkmariel/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Plus6.ru",Россия 1 +6 (180p) -https://gtrkchita.ru:8081/hls/r1-chita_180p.m3u8 -#EXTINF:-1 tvg-id="Rossiya1Plus6.ru",Россия 1 +6 (360p) -https://gtrkchita.ru:8081/hls/r1-chita_360p.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (720p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (720p) [Not 24/7] -https://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (480p) [Timeout] -http://ott-cdn.ucom.am/s21/index.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (576p) -http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (576p) [Not 24/7] -http://uiptv.do.am/1ufc/000000006/playlist.m3u8 -#EXTINF:-1 tvg-id="" status="online",Россия 24 (Н.Новгород) (576p) [Not 24/7] -https://live-vestinn.cdnvideo.ru/vestinn/vestinn/playlist.m3u8 -#EXTINF:-1 tvg-id="Rossiya24Chita.ru",Россия 24 (Чита) (360p) -https://gtrkchita.ru:8081/hls/r24-chita_360p.m3u8 -#EXTINF:-1 tvg-id="Rossiya24Chita.ru",Россия 24 (Чита) (576p) -https://gtrkchita.ru:8081/hls/r24-chita_576p.m3u8 -#EXTINF:-1 tvg-id="RossiyaK.ru",Россия К (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist.m3u8 -#EXTINF:-1 tvg-id="",Россия РТР (576p) [Not 24/7] -http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Россия РТР [Timeout] -https://a3569455801-s26881.cdn.ngenix.net/live/smil:rtrp.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ростов-папа (1080p) -http://live-rostovpapa.cdnvideo.ru/rostovpapa/rostovpapa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="RTRPlaneta.ru",РТР-Планета (480p) -http://ott-cdn.ucom.am/s15/index.m3u8 -#EXTINF:-1 tvg-id="RusskiyDetektiv.ru",Русский Детектив (576p) [Timeout] -http://78.58.133.179:28000/play/a01t/index.m3u8 -#EXTINF:-1 tvg-id="RusskiyDetektiv.ru",Русский Детектив (576p) [Timeout] -http://193.33.88.172/rus-detective/playlist.m3u8 -#EXTINF:-1 tvg-id="RusskiySever.ru",Русский Север (Вологда) (1080p) -http://185.186.142.16/streams.rs.m3u8 -#EXTINF:-1 tvg-id="",Русский Экстрим [Timeout] -http://vid.extremtv.ru/hls_get/cameraFeed.m3u8 -#EXTINF:-1 tvg-id="Rybolov.ru",Рыболов (480p) -http://ott-cdn.ucom.am/s55/index.m3u8 -#EXTINF:-1 tvg-id="Ryzhiy.ru",Рыжий (480p) -http://ott-cdn.ucom.am/s57/index.m3u8 -#EXTINF:-1 tvg-id="Ryzhiy.ru",Рыжий (576p) [Geo-blocked] -http://serv30.vintera.tv:8081/detskiy/ryzhiy_08/playlist.m3u8 -#EXTINF:-1 tvg-id="S1.ru",С1 (Сургут) (1080p) [Not 24/7] -https://sitv.ru/hls/stv.m3u8 -#EXTINF:-1 tvg-id="Salyam.ru",Салям (576p) -https://bsttv.bonus-tv.ru/cdn/salyam/playlist.m3u8 -#EXTINF:-1 tvg-id="SamaraGIS.ru",Самара ГИС (1080p) [Not 24/7] -http://45.67.57.9:8080/new/new/playlist.m3u8 -#EXTINF:-1 tvg-id="Saratov24.ru",Саратов 24 (1080p) [Not 24/7] -https://saratov24.tv/online/playlist.php -#EXTINF:-1 tvg-id="Sarafan.ru",Сарафан (576p) [Not 24/7] -http://195.26.83.96:7024/play/82 -#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) -https://live2.mediacdn.ru/sr1/sever-mobile/playlist.m3u8 -#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) -https://live2.mediacdn.ru/sr1/sever/playlist.m3u8 -#EXTINF:-1 tvg-id="Sever.ru",Север (Нарьян-Мар) (1080p) -https://live.mediacdn.ru/sr1/sever/playlist.m3u8 -#EXTINF:-1 tvg-id="SelengaTV.ru",Селенга ТВ (576p) -http://90.188.37.86/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Siesta.ru",Сиеста (720p) [Not 24/7] -https://1hdru-hls-otcnet.cdnvideo.ru/siesta/index.m3u8 -#EXTINF:-1 tvg-id="SmaylikTV.ru",Смайлик ТВ (720p) [Not 24/7] -http://62.32.67.187:1935/WEB_Smilik/ngrp:Smilik.stream-adaptive/playlist.m3u8 -#EXTINF:-1 tvg-id="SmaylikTV.ru",Смайлик ТВ (720p) [Timeout] -http://62.32.67.187:1935/WEB_Smilik/Smilik.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="SolnechnogorskoeTV.ru",Солнечногорское ТВ (360p) [Geo-blocked] -http://hls.solntv.cdnvideo.ru/solntv/solntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Soyuz.ru",Союз (576p) -http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz/soyuz/playlist.m3u8 -#EXTINF:-1 tvg-id="Soyuz.ru",Союз (1080p) [Geo-blocked] -https://strm.yandex.ru/kal/soyuz/soyuz0.m3u8 -#EXTINF:-1 tvg-id="Spas.ru",СПАС (576p) -http://spas.mediacdn.ru/cdn/spas/playlist.m3u8 -#EXTINF:-1 tvg-id="Start.ru",Старт (1080p) [Offline] -https://strm.yandex.ru/kal/start/start0.m3u8 -#EXTINF:-1 tvg-id="STVKazahstan.ru",СТВ Казахстан (576p) [Not 24/7] -https://sc.id-tv.kz/STV.m3u8 -#EXTINF:-1 tvg-id="",Страна FM (720p) [Not 24/7] -http://live.stranafm.cdnvideo.ru/stranafm/stranafm_hd.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="STRK.ru",СТРК (720p) [Not 24/7] -http://sochinskayatrk.ru/hdtv/hls/strc_hd/playlist.m3u8 -#EXTINF:-1 tvg-id="STS.ru",СТС (480p) -http://ott-cdn.ucom.am/s52/04.m3u8 -#EXTINF:-1 tvg-id="STS.ru",СТС (576p) [Not 24/7] -https://sc.id-tv.kz/STS.m3u8 -#EXTINF:-1 tvg-id="Surgut24.ru",Сургут 24 (720p) [Not 24/7] -https://video1.in-news.ru/c24/index.m3u8 -#EXTINF:-1 tvg-id="",Такт/Рен ТВ (Курск) (294p) [Not 24/7] -http://109.194.62.29:8080 -#EXTINF:-1 tvg-id="Tamyr.ru",Тамыр (576p) -https://bsttv.bonus-tv.ru/cdn/tamyr/playlist.m3u8 -#EXTINF:-1 tvg-id="Tatarstan24.ru",Татарстан24 (1080p) [Not 24/7] -http://stream.efir24.tv:1935/live/efir24tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TBN.ru",ТБН (720p) [Timeout] -http://62.32.67.187:1935/WEB_TBN/TBN.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",ТВ Европа [Offline] -https://cdn1.mobiletv.bg/T10/tvevropa/tvevropa_794613_850k.m3u8 -#EXTINF:-1 tvg-id="TVKvarc.ru",ТВ Кварц (576p) [Not 24/7] -https://video.quartztelecom.ru:18080/hls/2386168/71fe656b993c510f39a5/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCentr.ru",ТВ Центр (432p) -http://uiptv.do.am/1ufc/000000009/playlist.m3u8 -#EXTINF:-1 tvg-id="TVCentr.ru",ТВ Центр (480p) -http://ott-cdn.ucom.am/s54/index.m3u8 -#EXTINF:-1 tvg-id="TVEkstra.ru",ТВ Экстра (720p) -http://live-1.otcnet.ru/tvextra720b/index.m3u8 -#EXTINF:-1 tvg-id="TV3.ru",ТВ-3 (1080p) [Timeout] -http://bar-timeshift-inet.ll-bar.zsttk.ru:8080/tv3/playlist.m3u8 -#EXTINF:-1 tvg-id="TVK24.ru",ТВК 24 (576p) -http://air.tvk6.ru/tvk24/playlist.m3u8 -#EXTINF:-1 tvg-id="TVR24.ru",ТВР24 (Сергиев Посад) (1080p) [Not 24/7] -https://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTUR.ru",ТВТУР (720p) [Geo-blocked] -https://strm.yandex.ru/kal/tvtour/tvtour0.m3u8 -#EXTINF:-1 tvg-id="TVCMezhdunarodnyy.ru",ТВЦ (Международный) (576p) [Timeout] -http://ad-hls-tvc.cdnvideo.ru/tvc-p222/smil:tvc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TDK.ru",ТДК (576p) [Not 24/7] -https://sc.id-tv.kz/TDK-42.m3u8 -#EXTINF:-1 tvg-id="Telekanal86.ru",Телеканал 86 (Сургут) (1080p) [Not 24/7] -https://sitv.ru/hls/s86.m3u8 -#EXTINF:-1 tvg-id="Telecafe.ru",Телекафе (576p) -http://91.185.3.218:4000/play/605 -#EXTINF:-1 tvg-id="Teleputeshestviya.ru",Телепутешествия (480p) -http://ott-cdn.ucom.am/s71/index.m3u8 -#EXTINF:-1 tvg-id="",Телестанция МИР (Новосибирск) (720p) [Not 24/7] -http://serv30.vintera.tv:8081/stanciya_mir/mir/playlist.m3u8 -#EXTINF:-1 tvg-id="TelplyusTVAstrahan.ru",Телплюс ТВ (Астрахань) (360p) [Not 24/7] -http://streaming.astrakhan.ru/telplushd/playlist.m3u8 -#EXTINF:-1 tvg-id="Tivikom.ru",Тивиком (Улан-Удэ) (1080p) [Not 24/7] -http://tvcom.stream.intelema.ru/tvcom/studio/playlist.m3u8 -#EXTINF:-1 tvg-id="TKAlmaznyykray.ru",ТК Алмазный край (576p) -https://stream.almaz-media.tv:8080/hls/576.m3u8 -#EXTINF:-1 tvg-id="",ТКР (Рязань) (1080p) [Not 24/7] -http://live.tkr.cdnvideo.ru/tkr/tkr.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TNVPlaneta.ru",ТНВ-Планета (576p) -http://tnv.bonus-tv.ru/cdn/tnvplanet/playlist.m3u8 -#EXTINF:-1 tvg-id="TNT4.ru",ТНТ4 (576p) [Not 24/7] -https://sc.id-tv.kz/tnt4.m3u8 -#EXTINF:-1 tvg-id="TNTInternational.ru",ТНТ International (480p) -http://ott-cdn.ucom.am/s19/04.m3u8 -#EXTINF:-1 tvg-id="ToyDuman.ru",Той Думан (576p) [Not 24/7] -https://sc.id-tv.kz/ToiDuman.m3u8 -#EXTINF:-1 tvg-id="Tolyatti24.ru",Тольятти 24 (720p) -http://91.234.108.26/hls-live/livepkgr/_definst_/liveevent1/vazlivestream1.m3u8 -#EXTINF:-1 tvg-id="Tonus.ru" status="online",Тонус (480p) -http://ott-cdn.ucom.am/s90/index.m3u8 -#EXTINF:-1 tvg-id="",Три Ангела (720p) -https://hls.tv.3angels.ru/stream/HQ.m3u8 -#EXTINF:-1 tvg-id="TuganTel.ru",Туган Тел (576p) [Offline] -http://195.20.196.69:1935/tugantel/tugantel1/playlist.m3u8 -#EXTINF:-1 tvg-id="TuganTel.ru",Туган Тел (576p) [Offline] -http://streamer.rtcommufa.ru:1935/tugantel/tugantel1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Туран ТВ (576p) [Not 24/7] -https://sc.id-tv.kz/TuranTV.m3u8 -#EXTINF:-1 tvg-id="Udmurtiya.ru",Удмуртия (404p) [Offline] -https://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="UchalyTV.ru",Учалы ТВ (576p) [Not 24/7] -http://live-uchalytv.cdnvideo.ru/uchalytv/uchalytv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Futbol.ru",Футбол (480p) [Timeout] -http://ott-cdn.ucom.am/s41/index.m3u8 -#EXTINF:-1 tvg-id="",Хабар 24 (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar_24.m3u8 -#EXTINF:-1 tvg-id="",Хабар (576p) [Not 24/7] -https://sc.id-tv.kz/Khabar.m3u8 -#EXTINF:-1 tvg-id="",Хузур ТВ (720p) [Not 24/7] -https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Центральное телевидение (ЦТВ) (480p) [Timeout] -http://ott-cdn.ucom.am/s20/index.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (480p) -http://ott-cdn.ucom.am/s43/index.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (512p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] -http://hls.shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] -http://uiptv.do.am/1ufc/602079679/playlist.m3u8 -#EXTINF:-1 tvg-id="ShansonTV.ru",Шансон ТВ (576p) [Geo-blocked] -https://hls-shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Шокирующее (540p) [Timeout] -http://185.97.150.19:8082/2401 -#EXTINF:-1 tvg-id="ShchyolkovskoeTV.ru",Щёлковское ТВ (576p) [Not 24/7] -http://stream0.tv41.ru/live.m3u8 -#EXTINF:-1 tvg-id="EhoTV.ru",Эхо TV (Рязань) (576p) [Not 24/7] -https://live-echotv.cdnvideo.ru/echotv/echotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Yu.ru",Ю (576p) [Offline] -https://strm.yandex.ru/kal/utv/utv0.m3u8 -#EXTINF:-1 tvg-id="YuvelirochkaTV.ru",Ювелирочка ТВ (576p) -http://live-uvelirochka.cdnvideo.ru/uvelirochka/uvelirochka_720p3/playlist.m3u8 -#EXTINF:-1 tvg-id="Yugra.ru",Югра (360p) -http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Yurgan.ru",Юрган (1080p) -http://yurgan.bonus-tv.ru/cdn/yurgan/playlist.m3u8 -#EXTINF:-1 tvg-id="YuTV.ru",ЮТВ (Чебоксары) (432p) [Not 24/7] -http://serv24.vintera.tv:8081/utv/Stream/playlist.m3u8 diff --git a/streams/ru_catcast.m3u b/streams/ru_catcast.m3u deleted file mode 100644 index 43eff2f1e..000000000 --- a/streams/ru_catcast.m3u +++ /dev/null @@ -1,21 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Eurodance90HD.ru",Eurodance 90 HD (1080p) [Not 24/7] -https://eurodance90.catcast.tv/content/36987/index.m3u8 -#EXTINF:-1 tvg-id="KinderTV.ua",FilmTV Kinder (400p) [Not 24/7] -https://v2.catcast.tv/content/38144/index.m3u8 -#EXTINF:-1 tvg-id="FreshTV.am",Fresh TV (720p) -https://freshtv.catcast.tv/content/33718/index.m3u8 -#EXTINF:-1 tvg-id="GravityFouls.ru",Gravity Fouls (480p) [Not 24/7] -https://v3.catcast.tv/content/38105/index.m3u8 -#EXTINF:-1 tvg-id="MetalTV.ru",Metal TV (360p) [Not 24/7] -https://v2.catcast.tv/content/33816/index.m3u8 -#EXTINF:-1 tvg-id="",Кинозал (VHS 90s) (720p) [Not 24/7] -https://v2.catcast.tv/content/37925/index.m3u8 -#EXTINF:-1 tvg-id="",Премьера (304p) [Not 24/7] -https://v2.catcast.tv/content/39161/index.m3u8 -#EXTINF:-1 tvg-id="SSSRTV.ru",СССР ТВ (464p) [Not 24/7] -https://v2.catcast.tv/content/38821/index.m3u8 -#EXTINF:-1 tvg-id="Uzhastik.ru",Ужастик (300p) [Not 24/7] -https://v2.catcast.tv/content/38896/index.m3u8 -#EXTINF:-1 tvg-id="FantastikaSciFi.ru",Фантастика Sci-Fi (272p) [Not 24/7] -https://v2.catcast.tv/content/38801/index.m3u8 diff --git a/streams/ru_okkotv.m3u b/streams/ru_okkotv.m3u deleted file mode 100644 index 477b61856..000000000 --- a/streams/ru_okkotv.m3u +++ /dev/null @@ -1,91 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",5 канал (480p) -https://okkotv-live.cdnvideo.ru/channel/5_OTT.m3u8 -#EXTINF:-1 tvg-id="BlackRussia.us",.black Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_Turbo.m3u8 -#EXTINF:-1 tvg-id="RedRussia.us",.red Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_ET.m3u8 -#EXTINF:-1 tvg-id="SciFiRussia.us",.sci-fi Russia (480p) -https://okkotv-live.cdnvideo.ru/channel/Sony_SciFi.m3u8 -#EXTINF:-1 tvg-id="A1.ru",A1 (720p) -https://okkotv-live.cdnvideo.ru/channel/A1_HD.m3u8 -#EXTINF:-1 tvg-id="A2.ru",A2 (1080p) -https://okkotv-live.cdnvideo.ru/channel/A2_HD.m3u8 -#EXTINF:-1 tvg-id="AmediaHit.ru",Amedia Hit (1080p) -https://okkotv-live.cdnvideo.ru/channel/Amedia_Hit_HD.m3u8 -#EXTINF:-1 tvg-id="BabyTV.ru",Baby TV (480p) [Not 24/7] -http://okkotv-live.cdnvideo.ru/channel/BabyTV.m3u8 -#EXTINF:-1 tvg-id="FoxLifeRussia.us",Fox Life Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Fox_Life_HD.m3u8 -#EXTINF:-1 tvg-id="FoxRussia.us",Fox Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Fox_HD.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicRussia.us",National Geographic (1080p) -https://okkotv-live.cdnvideo.ru/channel/NGC_HD.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us",National Geographic Wild Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/NGC_Wild_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000ActionRussia.se",TV1000 Action Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_Action_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000HDRussia.se",TV1000 Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_HD.m3u8 -#EXTINF:-1 tvg-id="TV1000RusskoeKino.se",TV1000 Русское кино (1080p) -https://okkotv-live.cdnvideo.ru/channel/TV1000_Rus_Kino_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatExploreRussia.se",Viasat Explore Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_Explore_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatHistoryRussia.se",Viasat History Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_History_ad_HD.m3u8 -#EXTINF:-1 tvg-id="ViasatNatureRussia.se",Viasat Nature Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/Viasat_Nature_ad_HD.m3u8 -#EXTINF:-1 tvg-id="ViPComedyRussia.se",ViP Comedy Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Comedy_HD.m3u8 -#EXTINF:-1 tvg-id="VIPMegahitRussia.se",VIP Megahit Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Megahit_HD.m3u8 -#EXTINF:-1 tvg-id="VIPPremiereRussia.se",VIP Premiere Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Premiere_HD.m3u8 -#EXTINF:-1 tvg-id="VIPSerialRussia.se",VIP Serial Russia (1080p) -https://okkotv-live.cdnvideo.ru/channel/VIP_Serial_HD.m3u8 -#EXTINF:-1 tvg-id="Dikayaohota.ru",Дикая охота (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dikaya_Ohota_HD.m3u8 -#EXTINF:-1 tvg-id="Dikayarybalka.ru",Дикая рыбалка (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dikaya_Rybalka_HD.m3u8 -#EXTINF:-1 tvg-id="",Дикий (480p) -https://okkotv-live.cdnvideo.ru/channel/Dikiy.m3u8 -#EXTINF:-1 tvg-id="Domashniy.ru",Домашний (1080p) -https://okkotv-live.cdnvideo.ru/channel/Dom_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="Zvezda.ru",Звезда (480p) -https://okkotv-live.cdnvideo.ru/channel/Zvezda_SD.m3u8 -#EXTINF:-1 tvg-id="",Известия (1080p) -https://okkotv-live.cdnvideo.ru/channel/Izvestiya_HD_2.m3u8 -#EXTINF:-1 tvg-id="Kaleydskop.ru",Калейдскоп (480p) -https://okkotv-live.cdnvideo.ru/channel/Kaleidoskop.m3u8 -#EXTINF:-1 tvg-id="KanalDisney.us",Канал Disney (480p) -https://okkotv-live.cdnvideo.ru/channel/Disney.m3u8 -#EXTINF:-1 tvg-id="Mir.ru",Мир (480p) -https://okkotv-live.cdnvideo.ru/channel/Mir_OTT.m3u8 -#EXTINF:-1 tvg-id="MuzTV.ru",Муз-ТВ (480p) -https://okkotv-live.cdnvideo.ru/channel/MuzTV.m3u8 -#EXTINF:-1 tvg-id="",Мультиландия (1080p) -https://okkotv-live.cdnvideo.ru/channel/Multilandia_HD.m3u8 -#EXTINF:-1 tvg-id="Pervyykanal.ru",Первый канал (1080p) -https://okkotv-live.cdnvideo.ru/channel/Pervii_Kanal_OTT_HD.m3u8 -#EXTINF:-1 tvg-id="RENTV.ru",РЕН ТВ (1080p) -https://okkotv-live.cdnvideo.ru/channel/Rentv_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="Rossiya1HD.ru",Россия 1 HD (1080p) -https://okkotv-live.cdnvideo.ru/channel/Russia1HD.m3u8 -#EXTINF:-1 tvg-id="Rossiya24.ru",Россия 24 (480p) -https://okkotv-live.cdnvideo.ru/channel/Russia24.m3u8 -#EXTINF:-1 tvg-id="RossiyaK.ru",Россия К (480p) -https://okkotv-live.cdnvideo.ru/channel/Russia_K_SD.m3u8 -#EXTINF:-1 tvg-id="Spas.ru",СПАС (480p) -https://okkotv-live.cdnvideo.ru/channel/Spas.m3u8 -#EXTINF:-1 tvg-id="STS.ru",СТС (1080p) -https://okkotv-live.cdnvideo.ru/channel/CTC_HD_OTT.m3u8 -#EXTINF:-1 tvg-id="CTCKids.ru",СТС Kids (1080p) -https://okkotv-live.cdnvideo.ru/channel/CTC_Kids_HD.m3u8 -#EXTINF:-1 tvg-id="STSLove.ru",СТС Love (480p) -https://okkotv-live.cdnvideo.ru/channel/CTC_Love_OTT_2.m3u8 -#EXTINF:-1 tvg-id="",Феникс Кино (480p) -https://okkotv-live.cdnvideo.ru/channel/Phoenix.m3u8 -#EXTINF:-1 tvg-id="Che.ru",Че (480p) -https://okkotv-live.cdnvideo.ru/channel/Che_OTT_2.m3u8 -#EXTINF:-1 tvg-id="Yu.ru",Ю (480p) -https://okkotv-live.cdnvideo.ru/channel/Yu_OTT.m3u8 diff --git a/streams/rw.m3u b/streams/rw.m3u deleted file mode 100644 index f0702acfe..000000000 --- a/streams/rw.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KC2.rw",KC2 (720p) [Not 24/7] -http://197.243.19.131:1935/kc2/kc2/chunklist.m3u8 -#EXTINF:-1 tvg-id="KC2.rw",KC2 (720p) [Not 24/7] -https://5c46fa289c89f.streamlock.net/kc2/kc2/chunklist.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] -http://197.243.19.131:1935/rtv/rtv/chunklist.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] -http://197.243.19.131:1935/rtv/rtv/chunklist_w2093872577.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (480p) [Not 24/7] -https://5c46fa289c89f.streamlock.net/rtv/rtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RTVRwanda.rw",RTV Rwanda (576p) [Not 24/7] -https://1600706787.rsc.cdn77.org/1600706787/tracks-v1a1/mono.m3u8 diff --git a/streams/sa.m3u b/streams/sa.m3u deleted file mode 100644 index a64563cbf..000000000 --- a/streams/sa.m3u +++ /dev/null @@ -1,111 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AhluAlQuranTV.sa",Ahlu Al Quran TV (576p) -https://ahlualquran.tv/live/ysfbfBvecZ/SaNVjgaYnE/8.m3u8 -#EXTINF:-1 tvg-id="AlEkhbariya.sa",Al Ekhbariya (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Ekhbariyah -#EXTINF:-1 tvg-id="ALHOKAIRGroupTV.sa",AL HOKAIR Group TV (576p) -http://82.212.74.3:8000/live/7513.m3u8 -#EXTINF:-1 tvg-id="AlKhalij.sa",Al Khalij (720p) -https://mn-nl.mncdn.com/khalij/khalij/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_quran/hls1/saudi_quran.m3u8 -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (720p) [Not 24/7] -http://m.live.net.sa:1935/live/quran/playlist.m3u8 -#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa",Al Quran Al Kareem TV (Mecca) (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Quran_TV -#EXTINF:-1 tvg-id="AlSaudiya.sa",Al Saudiya (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_tv/hls1/saudi_tv.m3u8 -#EXTINF:-1 tvg-id="AlSaudiya.sa",Al Saudiya (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Saudi1_TV -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_sunnah/hls1/saudi_sunnah.m3u8 -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (720p) [Not 24/7] -http://m.live.net.sa:1935/live/sunnah/playlist.m3u8 -#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa",Al Sunnah Al Nabawiyah TV (Medina) (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Sunnah_TV -#EXTINF:-1 tvg-id="AlResalah.sa",Al-Resalah (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-risala.m3u8 -#EXTINF:-1 tvg-id="AlResalah.sa",Al-Resalah (1080p) [Geo-blocked] -https://shls-rotana-alresalah-prod-dub.shahid.net/out/v1/936b89606b5e48db8ca28caa40adc886/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) -https://shls-asharq-prod-dub.shahid.net/out/v1/3b6b4902cf8747a28619411239584002/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) -https://svs.itworkscdn.net/bloomberarlive/bloomberg.smil/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa",Asharq (1080p) [Offline] -https://bcsecurelivehls-i.akamaihd.net/hls/live/1021447/6203311941001/index.m3u8 -#EXTINF:-1 tvg-id="Asharq.sa",Asharq (Portrait) (1280p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/VERTICAL_1@301860/master.m3u8 -#EXTINF:-1 tvg-id="AtfalWaMawaheb.sa",Atfal Wa Mawaheb (1080p) -https://5d658d7e9f562.streamlock.net/atfal1.com/atfal2/playlist.m3u8 -#EXTINF:-1 tvg-id="Beity.sa",Beity [Offline] -http://82.212.74.2:8000/live/7312.m3u8 -#EXTINF:-1 tvg-id="ENTV.sa",EN TV [Timeout] -http://82.212.74.100:8000/live/8130.m3u8 -#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Adkar Nawn) (720p) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_iPASlANiI8 -#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Surat Stream 1) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=hoKsZRXS7vo -#EXTINF:-1 tvg-id="EveryDaySurah.sa",Every Day Surah (Surat Stream 2) [Offline] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=plqRs-gWAOk -#EXTINF:-1 tvg-id="Iqraa.sa",Iqraa (576p) [Not 24/7] -https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar1.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraaEuropeAfrica.sa",Iqraa Europe Africa (576p) [Not 24/7] -https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar2.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JascoEventsTV.sa",Jasco Events TV (576p) [Offline] -http://82.212.74.100:8000/live/hls/8131.m3u8 -#EXTINF:-1 tvg-id="KaifTV.sa",Kaif TV (576p) [Not 24/7] -http://82.212.74.2:8000/live/hls/7311.m3u8 -#EXTINF:-1 tvg-id="KSASports1.sa",KSA Sports 1 (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport1 -#EXTINF:-1 tvg-id="KSASports2.sa",KSA Sports 2 (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport2 -#EXTINF:-1 tvg-id="",LBC (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-lbc.m3u8 -#EXTINF:-1 tvg-id="MakkahTV.sa",Makkah TV (480p) -http://makkahtv.srfms.com:1935/makkahtv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="MakkahTV.sa",Makkah TV (480p) [Not 24/7] -https://5ab29cc78f681.streamlock.net/makkahtv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="PanoramaFM.sa",Panorama FM (1080p) -https://shls-panoramafm-prod-dub.shahid.net/out/v1/66262e420d824475aaae794dc2d69f14/index.m3u8 -#EXTINF:-1 tvg-id="RotanaCinema.sa",Rotana Cinema (1080p) -https://shls-rotanacinema-egy-prod-dub.shahid.net/out/v1/c39c0ecbcbdb46e890e91106776397a8/index.m3u8 -#EXTINF:-1 tvg-id="",Rotana Cinema (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-cinema.m3u8 -#EXTINF:-1 tvg-id="RotanaCinemaKSA.sa",Rotana Cinema KSA (1080p) -https://shls-rotanacinema-ksa-prod-dub.shahid.net/out/v1/6cee1c57ea7841e697eb15cefc98e0a6/index.m3u8 -#EXTINF:-1 tvg-id="",Rotana Classic (1080p) -https://shls-rotanaclassic-prod-dub.shahid.net/out/v1/4eebed211c8441228321b4f67a46c5a5/index.m3u8 -#EXTINF:-1 tvg-id="",Rotana Classic (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-classical.m3u8 -#EXTINF:-1 tvg-id="",Rotana Comedy (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-comedy.m3u8 -#EXTINF:-1 tvg-id="",Rotana Drama (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-drama.m3u8 -#EXTINF:-1 tvg-id="",Rotana Drama (1080p) [Geo-blocked] -https://shls-rotanadrama-prod-dub.shahid.net/out/v1/20c617b40dc743589ecc9d08d9d3345d/index.m3u8 -#EXTINF:-1 tvg-id="",Rotana Khalijia (1080p) -https://shls-rotanakhalijia-prod-dub.shahid.net/out/v1/a639fd49db684f1b8c063d398101a888/index.m3u8 -#EXTINF:-1 tvg-id="",Rotana Khalijia (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-khaleejiya.m3u8 -#EXTINF:-1 tvg-id="RotanaKids.sa",Rotana Kids (1080p) -https://shls-rotanakids-prod-dub.shahid.net/out/v1/df6e0eb3cdc4410b98209aafc8677cef/index.m3u8 -#EXTINF:-1 tvg-id="RotanaKids.sa",Rotana Kids (1080p) [Geo-blocked] -https://hiplayer.hibridcdn.net/t/rotana-kids.m3u8 -#EXTINF:-1 tvg-id="RotanaMusic.sa",Rotana Music (1080p) [Offline] -https://shls-rotanamusic-prod-dub.shahid.net/out/v1/edfe0095261648908a3a931b72489f3f/index.m3u8 -#EXTINF:-1 tvg-id="RotanaPlus.sa",Rotana+ (1080p) -https://shls-rotanaplus-prod-dub.shahid.net/out/v1/1fc6103458be480b96e6a574b00fe1c0/index.m3u8 -#EXTINF:-1 tvg-id="SBC.sa",SBC (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/SBC -#EXTINF:-1 tvg-id="SSC1HD.sa",SSC1 HD (1080p) -https://ssc-5-ak.akamaized.net/out/v1/6ae0a2ebab224c72ab9c298afeec8d91/index.m3u8 -#EXTINF:-1 tvg-id="SSCActionWaleed.sa",SSC Action Waleed (1080p) [Not 24/7] -https://shls-live-event2-prod-dub.shahid.net/out/v1/0456ede1a39145d98b3d8c8062ddc998/index.m3u8 -#EXTINF:-1 tvg-id="SSCActionWaleedExtra.sa",SSC Action Waleed Extra (1080p) [Not 24/7] -https://d2x08mwxhmpplo.cloudfront.net/out/v1/587631773e55495a8aa3dd4050318f6e/index.m3u8 -#EXTINF:-1 tvg-id="ThikrayatTV.sa",Thikrayat TV (1080p) [Not 24/7] -https://iptv--iptv.repl.co/Arabic/Zikrayat -#EXTINF:-1 tvg-id="WesalTV.sa",Wesal TV [Not 24/7] -http://live.noorlive.com:1935/wesal/wesal1/playlist.m3u8 -#EXTINF:-1 tvg-id="",ZAD TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOll3M-P7oKs5cSrQ9ytt6g/live diff --git a/streams/sd.m3u b/streams/sd.m3u deleted file mode 100644 index b09ddc90d..000000000 --- a/streams/sd.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AlAlamiya2.sd",Al Alamiya 2 [Timeout] -http://82.212.74.98:8000/live/7815.m3u8 -#EXTINF:-1 tvg-id="SudanBukra.sd",Sudan Bukra (720p) [Offline] -http://live.ditve.tv:1935/sudanbukra/sudanbukra.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SudanTV.sd",Sudan TV (360p) [Offline] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/sudan_tv/hls1/sudan_tv.m3u8 diff --git a/streams/se.m3u b/streams/se.m3u deleted file mode 100644 index 65dcc70f1..000000000 --- a/streams/se.m3u +++ /dev/null @@ -1,43 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AftonbladetTV.se",Aftonbladet TV (144p) -https://aftonbladetlive-lh.akamaihd.net/i/livestream01_1@182509/master.m3u8 -#EXTINF:-1 tvg-id="ATG.se",ATG (432p) -https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free.m3u8 -#EXTINF:-1 tvg-id="ATG.se",ATG (432p) -https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free_3.m3u8 -#EXTINF:-1 tvg-id="AzerbaijanNewsTV.se",Azerbaijan News TV (720p) [Not 24/7] -https://edge1.socialsmart.tv/aznews/smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DiTV.se",Di TV (720p) -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx4_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ExpressenTV.se",Expressen TV (720p) [Not 24/7] -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/chunklist_b3628000.m3u8 -#EXTINF:-1 tvg-id="ExpressenTV.se",Expressen TV (720p) [Offline] -https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal10Asia.se",Kanal 10 Asia (540p) [Not 24/7] -https://cdn-kanal10.crossnet.net/kanal10/ngrp:kanal10asia_all/chunklist_w522739009_b2128000.m3u8 -#EXTINF:-1 tvg-id="MiracleChannel.se",Miracle Channel (360p) -https://yjh3p.stream.miraclechannel.com/hls/miracle1_med/index.m3u8 -#EXTINF:-1 tvg-id="MiracleChannel.se",Miracle Channel (576p) -https://yjh3p.stream.miraclechannel.com/hls/miracle1_high/index.m3u8 -#EXTINF:-1 tvg-id="OppnaKanalen.se",Oppna Kanalen (540p) -https://edg03-prd-se-ixn.solidtango.com/edge/_451iw2h_/451iw2h/playlist.m3u8 -#EXTINF:-1 tvg-id="",OPPNA KANALEN (540p) [Offline] -http://83.140.64.214/edge/_451iw2h_/451iw2h/chunklist_w348058882.m3u8 -#EXTINF:-1 tvg-id="OppnaKanalen.se",Öppna Kanalen (540p) [Offline] -http://83.140.64.214/edge/_451iw2h_/451iw2h/playlist.m3u8 -#EXTINF:-1 tvg-id="SVT2Varmland.se",SVT2 Värmland [Offline] -http://51.91.73.99:25461/sweden/PM66f7Y43H/12476 -#EXTINF:-1 tvg-id="TV4.se",TV4 (576p) [Offline] -https://lbs-aws-hls.tv4play.se/dailive/bbr-event1-p/master3404.m3u8 -#EXTINF:-1 tvg-id="TV4.se",TV4 (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791716.m3u8 -#EXTINF:-1 tvg-id="TV4Nyheterna.se",TV4Nyheterna (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791350.m3u8 -#EXTINF:-1 tvg-id="TV4SvenskPolitik.se",TV4 Svensk Politik (720p) -https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791553.m3u8 -#EXTINF:-1 tvg-id="VastmanlandsTV.se",Västmanlands TV (720p) -https://edg01-prd-se-dcs.solidtango.com/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 -#EXTINF:-1 tvg-id="VastmanlandsTV.se",Västmanlands TV (720p) [Offline] -http://83.140.64.214/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 -#EXTINF:-1 tvg-id="ViPComedyRussia.se",ViP Comedy Russia (720p) [Not 24/7] -http://188.40.68.167/russia/vip_comedy/playlist.m3u8 diff --git a/streams/se_samsung.m3u b/streams/se_samsung.m3u deleted file mode 100644 index 68c4dc6f6..000000000 --- a/streams/se_samsung.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Euronews English (720p) [Not 24/7] -https://rakuten-euronews-1-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) [Offline] -https://failarmy-international-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-13-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesomeSweden.us",People are Awesome Sweden (720p) [Offline] -https://jukin-peopleareawesome-2-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenActionSweden.es",Rakuten Action (Sweden) (720p) [Offline] -https://rakuten-action-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenComedySweden.es",Rakuten Comedy (Sweden) (720p) [Offline] -https://rakuten-comedy-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDocumentariesSweden.es",Rakuten Documentaries (Sweden) (720p) [Offline] -https://rakuten-documentaries-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenDramaSweden.es",Rakuten Drama (Sweden) (720p) [Not 24/7] -https://rakuten-drama-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenFamilySweden.es",Rakuten Family (Sweden) (720p) [Offline] -https://rakuten-family-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenSpotlightSweden.es",Rakuten Spotlight (Sweden) (720p) [Offline] -https://rakuten-spotlight-9-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraokeSweden.ca",Stingray Karaoke (Sweden) (1080p) -https://stingray-karaoke-3-se.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveSweden.us",The Pet Collective Sweden (720p) [Offline] -https://the-pet-collective-international-se.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/sg.m3u b/streams/sg.m3u deleted file mode 100644 index 7681ec6c4..000000000 --- a/streams/sg.m3u +++ /dev/null @@ -1,17 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="Channel5.sg",Channel 5 [Geo-blocked] -https://ddftztnzt6o79.cloudfront.net/hls/clr4ctv_okto/master.m3u8 -#EXTINF:-1 tvg-id="Channel5.sg",Channel 5 [Geo-blocked] -https://dlau142f16b92.cloudfront.net/hls/clr4ctv_ch5/master.m3u8 -#EXTINF:-1 tvg-id="Channel8.sg",Channel 8 [Geo-blocked] -https://d34e90s3s13i7n.cloudfront.net/hls/clr4ctv_ch8/master.m3u8 -#EXTINF:-1 tvg-id="CNA.sg",CNA (1080p) -https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 -#EXTINF:-1 tvg-id="CNA.sg",CNA (1080p) [Geo-blocked] -https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 -#EXTINF:-1 tvg-id="Suria.sg",Suria (720p) [Offline] -http://50.7.161.82:8278/streams/d/Suria/playlist.m3u8 -#EXTINF:-1 tvg-id="Suria.sg",Suria [Geo-blocked] -https://d11h6a6nhl9kj9.cloudfront.net/hls/clr4ctv_suria/master.m3u8 -#EXTINF:-1 tvg-id="Vasantham.sg",Vasantham [Geo-blocked] -https://d39v9xz8f7n8tk.cloudfront.net/hls/clr4ctv_vsnthm/master.m3u8 diff --git a/streams/si.m3u b/streams/si.m3u deleted file mode 100644 index 99efb231e..000000000 --- a/streams/si.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="GTV.si",GTV (360p) [Not 24/7] -http://91.220.221.60/gtv_hls/gtv_03.m3u8 -#EXTINF:-1 tvg-id="MMC.si",MMC (720p) [Not 24/7] -https://29-rtvslo-tv-mmc-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="TVKOPER.si",TV Koper-Capodistria (720p) -https://27-rtvslo-tv-kp-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV MARIBOR (720p) [Not 24/7] -https://25-rtvslo-tv-mb-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV SLOVENIJA 1 (1080p) -https://31-rtvslo-tv-slo1-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV SLOVENIJA 2 (720p) -https://21-rtvslo-tv-slo2-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV SLOVENIJA 3 (720p) -https://16-rtvslo-tv-slo3-int.cdn.eurovisioncdn.net/playlist.m3u8 -#EXTINF:-1 tvg-id="tvdx.si",TVDX (486p) [Not 24/7] -http://5ca49f2417d90.streamlock.net/live/dolnykubin1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Veseljak TV (1080p) -https://stream.veseljak.tv/hls/stream.m3u8 diff --git a/streams/sk.m3u b/streams/sk.m3u deleted file mode 100644 index 0389e1168..000000000 --- a/streams/sk.m3u +++ /dev/null @@ -1,69 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BTV.sk",BTV (720p) [Not 24/7] -rtmp://s1.media-planet.sk:80/live/bardejov1 -#EXTINF:-1 tvg-id="FashionTVCzechSlovak.sk",FashionTV Czech&Slovak (450p) -http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk",JOJ (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/joj-540.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk",JOJ (720p) [Not 24/7] -https://nn.geo.joj.sk/hls/joj-720.m3u8 -#EXTINF:-1 tvg-id="JOJ.sk",JOJ (720p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/joj-720.m3u8 -#EXTINF:-1 tvg-id="",JOJ Family (360p) [Not 24/7] -https://nn.geo.joj.sk/hls/family-360.m3u8 -#EXTINF:-1 tvg-id="",JOJ Family (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/family-540.m3u8 -#EXTINF:-1 tvg-id="",JOJ Family (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/family-540.m3u8 -#EXTINF:-1 tvg-id="Kosicednes.sk",Košice:dnes (450p) [Offline] -http://lb.streaming.sk/tvnasa/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Lifetv.sk",Life.tv (720p) [Timeout] -http://86.110.233.68:1935/lifetv/lifetv.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="LocAll.sk",LocAll (406p) -http://tv.geniusnet.sk:8081/localltv/pl.m3u8 -#EXTINF:-1 tvg-id="NoveZamky.sk",Nove Zamky (486p) -http://s1.media-planet.sk/live/novezamky/playlist.m3u8 -#EXTINF:-1 tvg-id="Plus.sk",Plus (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/jojplus-540.m3u8 -#EXTINF:-1 tvg-id="RajTV.sk",Raj TV (720p) [Not 24/7] -https://ottst05.flexitv.sk/2827-tv-pc.m3u8 -#EXTINF:-1 tvg-id="Reduta.sk",Reduta (486p) -http://s1.media-planet.sk/live/reduta/playlist.m3u8 -#EXTINF:-1 tvg-id="Rik.sk",Rik (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/rik-540.m3u8 -#EXTINF:-1 tvg-id="SenziTV.sk",Senzi TV [Offline] -http://109.74.144.130/live/senzitest/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleviziaOSEM.sk",Televizia OSEM (360p) -http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/playlist.m3u8 -#EXTINF:-1 tvg-id="TeleviziaOSEM.sk",Televízia OSEM (576p) -http://109.74.145.11:1935/tv8/ngrp:tv8.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TVDK.sk",TV DK (486p) [Not 24/7] -http://80.94.54.11:1935/live/dolnykubin1/playlist.m3u8 -#EXTINF:-1 tvg-id="TVJojko.sk",TV Jojko (540p) [Offline] -https://nn.geo.joj.sk/live/rik-index.m3u8 -#EXTINF:-1 tvg-id="TVLux.sk",TV Lux (1080p) [Not 24/7] -http://live.tvlux.sk:1935/lux/lux.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMarkiza.sk",TV Markíza (720p) [Geo-blocked] -http://ntv-st01-vod01-bts10-stage.orange.sk:8000/dna-5106-tv-pc/hls/4001v102.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk" status="online",TV Nové Zámky (486p) -http://s1.media-planet.sk/live/novezamky/lihattv.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk",TV Nové Zámky (486p) [Not 24/7] -http://s1.media-planet.sk/live/novezamky/BratuMarian.m3u8 -#EXTINF:-1 tvg-id="TVNoveZamky.sk",TV Nové Zámky (486p) [Offline] -rtmp://s1.media-planet.sk:80/live/novezamky -#EXTINF:-1 tvg-id="TVPoprad.sk",TV Poprad (1080p) [Not 24/7] -http://213.81.153.221:8080/poprad -#EXTINF:-1 tvg-id="TVPovazie.sk",TV Povazie (400p) -http://213.181.128.248:8090/tvpovazie-h264.flv -#EXTINF:-1 tvg-id="TVReduta.sk",TV Reduta (486p) [Offline] -rtmp://s1.media-planet.sk:80/live/reduta -#EXTINF:-1 tvg-id="TVRuzinov.sk",TV Ružinov (1080p) -http://lb.streaming.sk/tvruzinov/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSeverka.sk",TV Severka (576p) [Timeout] -http://88.212.7.11/live/test_severka_web_player/playlist.m3u8 -#EXTINF:-1 tvg-id="TVTurzovka.sk",TV Turzovka (486p) [Not 24/7] -rtmp://s1.media-planet.sk:80/live/turzovka -#EXTINF:-1 tvg-id="TVWAU.sk",TV WAU (540p) [Not 24/7] -https://nn.geo.joj.sk/hls/wau-540.m3u8 -#EXTINF:-1 tvg-id="TVWAU.sk",TV WAU (540p) [Not 24/7] -https://nn.geo.joj.sk/live/hls/wau-540.m3u8 diff --git a/streams/sl.m3u b/streams/sl.m3u deleted file mode 100644 index 3b4db6a58..000000000 --- a/streams/sl.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AYV.sl",AYV (720p) [Not 24/7] -https://1219373429.rsc.cdn77.org/live/stream-1/chunklist.m3u8 diff --git a/streams/sm.m3u b/streams/sm.m3u deleted file mode 100644 index fbc831ae6..000000000 --- a/streams/sm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="SanMarinoRTV.sm",San Marino RTV (720p) -https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch01/_definst_/smil:ch-01.smil/chunklist_b1692000_slita.m3u8 -#EXTINF:-1 tvg-id="SanMarinoRTVSport.sm",San Marino RTV Sport (720p) -https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch02/smil:ch-02.smil/master.m3u8 diff --git a/streams/sn.m3u b/streams/sn.m3u deleted file mode 100644 index a9cc5eabb..000000000 --- a/streams/sn.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="2STV.sn",2STV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vidbb -#EXTINF:-1 tvg-id="7TV.sn",7TV (720p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/7tv -#EXTINF:-1 tvg-id="A2iMusic.sn",A2i Music (720p) [Not 24/7] -https://stream.sen-gt.com/A2iMusic/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iNaja.sn",A2i Naja (720p) [Not 24/7] -https://stream.sen-gt.com/A2iNaija/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iReligion.sn",A2i Religion (720p) [Not 24/7] -https://stream.sen-gt.com/A2iReligion/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="A2iTV.sn",A2i TV (1080p) [Not 24/7] -https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="Africa7.sn",Africa 7 (480p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7xq2dw -#EXTINF:-1 tvg-id="DTV.sn",DTV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/dtv -#EXTINF:-1 tvg-id="LabelTV.sn",Label TV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/label-tv -#EXTINF:-1 tvg-id="RFM.sn",RFM (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wi5y1 -#EXTINF:-1 tvg-id="RTS1.sn",RTS1 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/rts1 -#EXTINF:-1 tvg-id="RTS2.sn",RTS2 (480p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/rts2 -#EXTINF:-1 tvg-id="SenTV.sn",SenTV [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/senegal/sentv -#EXTINF:-1 tvg-id="TFM.sn",TFM (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wcr45 diff --git a/streams/so.m3u b/streams/so.m3u deleted file mode 100644 index 39f6b7ba0..000000000 --- a/streams/so.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HornCableTV.so",Horn Cable TV (720p) [Not 24/7] -http://cdn.mediavisionuae.com:1935/live/hctvlive.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="KalsanTV.so",Kalsan TV (360p) -https://ap02.iqplay.tv:8082/iqb8002/s03btv/chunks.m3u8 -#EXTINF:-1 tvg-id="KalsanTV.so",Kalsan TV (1080p) [Not 24/7] -http://cdn.mediavisionuae.com:1935/live/kalsantv.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="PuntlandTV.so",Puntland TV (360p) [Offline] -https://ap02.iqplay.tv:8082/iqb8002/p2t25/chunks.m3u8 -#EXTINF:-1 tvg-id="Somalicable.so",Somali cable (576p) -https://ap02.iqplay.tv:8082/iqb8002/somc131/chunks.m3u8 -#EXTINF:-1 tvg-id="SomaliNationalTV.so",Somali National TV (360p) -https://ap02.iqplay.tv:8082/iqb8002/s4ne/chunks.m3u8 diff --git a/streams/sv.m3u b/streams/sv.m3u deleted file mode 100644 index 2321e1661..000000000 --- a/streams/sv.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AgapeTVCanal8.sv",Agape TV 8 (480p) [Offline] -https://can1.krakeniptv.com:25463/live/agape/CPLdE2EadX/1764.m3u8 -#EXTINF:-1 tvg-id="Canal10.sv",Canal 10 (720p) -http://streamingcws20.com:1935/tves/tves.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal11.sv",Canal 11 TuTV (254p) [Not 24/7] -https://algochivo.com:1936/canal11/canal11/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal12.sv",Canal 12 (220p) [Not 24/7] -https://sv-canal12-canal12-live.ned.media/canal12/smil:canal12.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.sv",Canal 33 (1080p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal33/smil:canal33.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal33.sv",Canal 33 (1080p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canal33/videocanal33/playlist.m3u8 -#EXTINF:-1 tvg-id="ElimTV.sv",Elim TV (480p) [Offline] -http://live-15.viewer.dacast.com/i/dclive_1@397642/master.m3u8 -#EXTINF:-1 tvg-id="OrbitaTVCanal25.sv",Órbita TV Canal 25 (480p) [Not 24/7] -https://5dcabf026b188.streamlock.net/orbitatv/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TCS.sv",TCS (720p) -https://secure-video.tcsgo.com/tcshd/index.m3u8 -#EXTINF:-1 tvg-id="Tele1.sv",Tele1 (720p) [Not 24/7] -http://streamingcws40.com:1935/canaluno/videocanaluno/playlist.m3u8 -#EXTINF:-1 tvg-id="Tele1.sv",Tele1 (720p) [Not 24/7] -https://5ca9af4645e15.streamlock.net/canaluno/smil:canaluno.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TribunaTV.sv",TribunaTV (720p) [Not 24/7] -https://cm.hostlagarto.com:4445/TRIBUNA-TV/tribuna.myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVMElSalvador.sv",TVM El Salvador (720p) -http://168.227.22.18:1935/tvm/tvm.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVOCanal23.sv",TVO Canal 23 (720p) [Not 24/7] -https://5fc584f3f19c9.streamlock.net/tvo/smil:tvo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TVX.sv",TVX (720p) -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canaltvx -#EXTINF:-1 tvg-id="WOWTV.sv",WOW TV (576p) [Not 24/7] -https://cdn.elsalvadordigital.com:1936/wowtv/smil:wowtv.smil/playlist.m3u8 diff --git a/streams/sy.m3u b/streams/sy.m3u deleted file mode 100644 index 2b8e1de04..000000000 --- a/streams/sy.m3u +++ /dev/null @@ -1,55 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="alltv.sy",alltv (400p) [Timeout] -http://185.96.70.242:1935/live/alltv/playlist.m3u8 -#EXTINF:-1 tvg-id="ANN.sy",ANN [Not 24/7] -http://ns8.indexforce.com:1935/ann/ann/playlist.m3u8 -#EXTINF:-1 tvg-id="HalabTodayTV.sy",Halab Today TV (480p) [Not 24/7] -http://streaming.tootvs.com:1935/8010/8010/playlist.m3u8 -#EXTINF:-1 tvg-id="HalabTodayTV.sy",Halab Today TV (480p) [Not 24/7] -https://5caf24a595d94.streamlock.net:1937/8010/8010/playlist.m3u8 -#EXTINF:-1 tvg-id="LanaTV.sy",Lana TV (720p) -https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc/master22-vod.m3u8 -#EXTINF:-1 tvg-id="LanaTVPlus.sy",Lana TV Plus (720p) -https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc2/m3u8/sdi2-720p.m3u8 -#EXTINF:-1 tvg-id="MinbijTV.sy",Minbij TV (576p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/45 -#EXTINF:-1 tvg-id="NoorAlSham.sy",Noor Al-Sham (160p) [Not 24/7] -http://82.137.248.16:1935/Nour/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="RojavaTV.sy",Rojava TV (1080p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/55 -#EXTINF:-1 tvg-id="RojavaTV.sy",Rojava TV (1080p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/55.m3u8 -#EXTINF:-1 tvg-id="RonahiTV.sy",Ronahî TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/26.m3u8 -#EXTINF:-1 tvg-id="SamaTV.sy",Sama TV (540p) [Not 24/7] -http://stream5.sama-tv.net/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ShamFM.sy",Sham FM (720p) [Not 24/7] -https://linkastream.co/headless?url=https://ok.ru/live/1366568541799 -#EXTINF:-1 tvg-id="ShamIPTV.sy",Sham IPTV (720p) [Not 24/7] -https://linkastream.co/headless?url=https://ok.ru/live/1366902775399 -#EXTINF:-1 tvg-id="SouryanaRadio.sy",Souryana Radio (160p) [Not 24/7] -http://82.137.248.16:1935/Souryana/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="Spacetoon.sy",Spacetoon (576p) -https://streams.spacetoon.com/live/stchannel/smil:livesmil.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Spacetoon.sy",Spacetoon (1080p) -https://shls-spacetoon-prod-dub.shahid.net/out/v1/6240b773a3f34cca95d119f9e76aec02/index.m3u8 -#EXTINF:-1 tvg-id="SuboroTV.sy",Suboro TV (576p) [Not 24/7] -https://streaming.viewmedia.tv/viewsatstream12/viewsatstream12.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Syria Drama (160p) [Not 24/7] -http://82.137.248.16:1935/Drama/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="",Syria Satellite Channel (160p) [Not 24/7] -http://82.137.248.16:1935/Sat/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyriaTV.sy",Syria TV (1080p) -https://svs.itworkscdn.net/syriatvlive/syriatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Syrian Education TV (160p) [Not 24/7] -http://82.137.248.16:1935/SEdu/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (160p) [Not 24/7] -http://82.137.248.16:1935/Snews/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (160p) [Not 24/7] -http://vod.alikhbaria.net:1935/Snews/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="SyrianNewsChannel.sy",Syrian News Channel (360p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjmUU7Zy3BYHGSyUdRFuFIg/live -#EXTINF:-1 tvg-id="UgaritTV.sy",Ugarit TV (160p) [Not 24/7] -http://82.137.248.16:1935/Ugarit/stream19042021/playlist.m3u8 -#EXTINF:-1 tvg-id="UgaritTV.sy",Ugarit TV (720p) [Not 24/7] -https://linkastream.co/headless?url=https://ok.ru/live/2231907917430 diff --git a/streams/th.m3u b/streams/th.m3u deleted file mode 100644 index 7c639f1e7..000000000 --- a/streams/th.m3u +++ /dev/null @@ -1,83 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ALTV.th",ALTV (1080p) -https://thaipbs-ujxrch.cdn.byteark.com/live/playlist_1080p/index.m3u8 -#EXTINF:-1 tvg-id="ASTVNews1.th",ASTV News 1 (1080p) [Not 24/7] -http://news1.live14.com/stream/news1.m3u8 -#EXTINF:-1 tvg-id="Channel5.th",Channel 5 (480p) -https://tc-live1.sanook.com/live/22302_ch5.m3u8 -#EXTINF:-1 tvg-id="Channel5.th",Channel 5 (1080p) -http://110.170.117.27:1935/apptv5hd1live/vdo-tv5hd1/playlist.m3u8 -#EXTINF:-1 tvg-id="Channel7.th",Channel 7 (240p) -https://bcovlive-a.akamaihd.net/2d37038b355f4ea6a6b0d46993dc285c/ap-southeast-1/5282994675001/profile_0/chunklist.m3u8 -#EXTINF:-1 tvg-id="Channel8.th",Channel 8 (720p) [Not 24/7] -http://usa.login.in.th:1935/ch8/ch8/playlist.m3u8 -#EXTINF:-1 tvg-id="DLTV1.th",DLTV 1 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv01.m3u8 -#EXTINF:-1 tvg-id="DLTV2.th",DLTV 2 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv02.m3u8 -#EXTINF:-1 tvg-id="DLTV3.th",DLTV 3 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv03.m3u8 -#EXTINF:-1 tvg-id="DLTV4.th",DLTV 4 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv04.m3u8 -#EXTINF:-1 tvg-id="DLTV5.th",DLTV 5 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv05.m3u8 -#EXTINF:-1 tvg-id="DLTV6.th",DLTV 6 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv06.m3u8 -#EXTINF:-1 tvg-id="DLTV7.th",DLTV 7 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv07.m3u8 -#EXTINF:-1 tvg-id="DLTV8.th",DLTV 8 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv08.m3u8 -#EXTINF:-1 tvg-id="DLTV9.th",DLTV 9 (1080p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv09.m3u8 -#EXTINF:-1 tvg-id="DLTV10.th",DLTV 10 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv10.m3u8 -#EXTINF:-1 tvg-id="DLTV11.th",DLTV 11 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv11.m3u8 -#EXTINF:-1 tvg-id="DLTV12.th",DLTV 12 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv12.m3u8 -#EXTINF:-1 tvg-id="DLTV13.th",DLTV 13 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv13.m3u8 -#EXTINF:-1 tvg-id="DLTV14.th",DLTV 14 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv14.m3u8 -#EXTINF:-1 tvg-id="DLTV15.th",DLTV 15 (720p) [Not 24/7] -https://dltv-live-edge.catcdn.cloud/dltv15.m3u8 -#EXTINF:-1 tvg-id="GolfChannelThailand.th",Golf Channel Thailand (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_golfhd_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="Mono29.th",Mono 29 (1080p) [Geo-blocked] -https://edge2-bkk.3bb.co.th:9443/MONO29_HLS_1080P/mono29hls_1080TH.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NBTBangkok.th",NBT Bangkok (1080p) [Not 24/7] -http://live.prd.go.th:1935/live/ch1_L.sdp/chunklist.m3u8 -#EXTINF:-1 tvg-id="",Thai PBS (Opt-4) (480p) -https://thaipbs-live.cdn.byteark.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="ThairathTV32.th",Thairath TV 32 (720p) -https://live.thairath.co.th/trtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="TPTV.th",TPTV (286p) [Not 24/7] -https://cdn-edge.i-iptv.com/live3/91b1-ff25-f5ee-c27f-283a/playlist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD1.th",True Premier Football HD 1 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_PremierHD1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD2.th",True Premier Football HD 2 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_PremierHD2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD3.th",True Premier Football HD 3 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_PremierHD3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD4.th",True Premier Football HD 4 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_PremierHD4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TruePremierFootballHD5.th",True Premier Football HD 5 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_PremierHD5_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSport5.th",True Sport 5 (480p Scaled) (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_sport5_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSport7.th",True Sport 7 (480p Scaled) (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_sport7_480p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD1.th",True Sport HD 1 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_2sporthd1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD2.th",True Sport HD 2 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_2sporthd2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD3.th",True Sport HD 3 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_2sporthd3_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueSportHD4.th",True Sport HD 4 (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_2sporthd4_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TrueTennisHD.th",True Tennis HD (720p) [Not 24/7] -https://smart-tv.livedoomovie.com:4431/02_TennisHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVMuslim.th",TV Muslim (1080p) [Not 24/7] -http://vip2.liveanywhere.asia:1935/tvmuslim/tvmuslim/playlist.m3u8 -#EXTINF:-1 tvg-id="WhiteChannel.th",White Channel (1080p) -http://symc-cdn.violin.co.th:1935/tndedge/whitechannel/chunklist.m3u8 diff --git a/streams/tj.m3u b/streams/tj.m3u deleted file mode 100644 index 8c0c081cc..000000000 --- a/streams/tj.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="HuzurTV.tj",Хузур ТВ (720p) [Not 24/7] -https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 diff --git a/streams/tm.m3u b/streams/tm.m3u deleted file mode 100644 index d306649df..000000000 --- a/streams/tm.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AltynAsyr.tm",Altyn Asyr (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch001.m3u8 -#EXTINF:-1 tvg-id="AltynAsyr.tm",Altyn Asyr (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch001.m3u8 -#EXTINF:-1 tvg-id="Asgabat.tm",Aşgabat (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch006.m3u8 -#EXTINF:-1 tvg-id="Asgabat.tm",Aşgabat (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch006.m3u8 -#EXTINF:-1 tvg-id="Miras.tm",Miras (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch003.m3u8 -#EXTINF:-1 tvg-id="Miras.tm",Miras (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch003.m3u8 -#EXTINF:-1 tvg-id="TurkmenOwazy.tm",Türkmen Owazy (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch005.m3u8 -#EXTINF:-1 tvg-id="TurkmenOwazy.tm",Türkmen Owazy (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch005.m3u8 -#EXTINF:-1 tvg-id="Turkmenistan.tm",Türkmenistan (226p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch007.m3u8 -#EXTINF:-1 tvg-id="Turkmenistan.tm",Türkmenistan (226p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch007.m3u8 -#EXTINF:-1 tvg-id="TurkmenistanSport.tm",Türkmenistan Sport (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch004.m3u8 -#EXTINF:-1 tvg-id="TurkmenistanSport.tm",Türkmenistan Sport (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch004.m3u8 -#EXTINF:-1 tvg-id="Yaslyk.tm",Ýaşlyk (406p) [Not 24/7] -https://alpha.tv.online.tm/hls/ch002.m3u8 -#EXTINF:-1 tvg-id="Yaslyk.tm",Ýaşlyk (406p) [Not 24/7] -https://alpha.tv.online.tm/legacyhls/ch002.m3u8 diff --git a/streams/tn.m3u b/streams/tn.m3u deleted file mode 100644 index f022dd1f8..000000000 --- a/streams/tn.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn",El Hiwar El Tounsi (400p) [Not 24/7] -http://217.182.137.206/elhiwar.m3u8 -#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn",El Hiwar El Tounsi (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k2IuM11CZakq4ZvrUkv -#EXTINF:-1 tvg-id="",Hannibal (400p) [Offline] -http://217.182.137.206/hannibal.m3u8 -#EXTINF:-1 tvg-id="IFMTV.tn",IFM TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RadioIfmTunisia/live -#EXTINF:-1 tvg-id="JawharaTV.tn",JAWHARA TV (720p) -https://streaming.toutech.net/live/jtv/index.m3u8 -#EXTINF:-1 tvg-id="MosaiqueFM.tn",Mosaïque FM (480p) [Not 24/7] -https://webcam.mosaiquefm.net:1936/mosatv/studio/playlist.m3u8 -#EXTINF:-1 tvg-id="Nessma.tn",Nessma (720p) [Offline] -https://query-streamlink-us.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7lmd4f -#EXTINF:-1 tvg-id="SahelTV.tn",Sahel TV (720p) [Not 24/7] -http://142.44.214.231:1935/saheltv/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TunisieImmobilierTV.tn",Tunisie Immobilier TV (720p) [Not 24/7] -https://5ac31d8a4c9af.streamlock.net/tunimmob/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="TunisnaTV.tn",Tunisna TV [Timeout] -http://streaming.tunisna.tv:1935/live/tunisna/playlist.m3u8 -#EXTINF:-1 tvg-id="Watania1.tn",Watania 1 (400p) [Offline] -http://217.182.137.206/tunisie1.m3u8 -#EXTINF:-1 tvg-id="Watania1.tn",Watania 1 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/WataniaReplay/live -#EXTINF:-1 tvg-id="Watania2.tn",Watania 2 (400p) [Not 24/7] -http://217.182.137.206/tunisie2.m3u8 -#EXTINF:-1 tvg-id="Watania2.tn",Watania 2 (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/Watania2Replay/live diff --git a/streams/tr.m3u b/streams/tr.m3u deleted file mode 100644 index 4cd859267..000000000 --- a/streams/tr.m3u +++ /dev/null @@ -1,457 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="24TV.tr",24 TV (1080p) -https://mn-nl.mncdn.com/kanal24/smil:kanal24.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="24TV.tr",24 TV (1080p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/134.m3u8 -#EXTINF:-1 tvg-id="360TV.tr",360 TV (720p) [Not 24/7] -https://turkmedya-live.ercdn.net/tv360/tv360.m3u8 -#EXTINF:-1 tvg-id="AALive.tr",AA Live (720p) [Not 24/7] -http://mtulqxgomrllive.mediatriple.net/mtulqxgomrllive/broadcast_59f9c0c785b88.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AfyonTurkTV.tr",Afyon Türk TV (720p) -https://5be5d840359c6.streamlock.net/afyonturktv/afyonturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="AkitTV.tr",Akit TV (720p) -https://akittv-live.ercdn.net/akittv/akittv.m3u8 -#EXTINF:-1 tvg-id="",AKSU TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/aksutv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="AlZahraTVTurkic.tr",Al-Zahra TV Turkic (720p) [Not 24/7] -https://live.al-zahratv.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="AlanyaPostaTV.tr",Alanya Posta TV (1080p) -http://win4.yayin.com.tr/postatv/postatv/playlist.m3u8 -#EXTINF:-1 tvg-id="",ALTAS TV (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/altastv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="",ALTAŞ TV (720p) [Not 24/7] -https://broadcasttr.com:446/altastv/bant1/index.m3u8 -#EXTINF:-1 tvg-id="ARASTV.tr",ARAS TV (576p) [Not 24/7] -http://1.rtmp.org/tv217/yayin.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ATVAlanya.tr",ATV Alanya (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/alanyatv/alanyatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BENGUTURKTV.tr",BENGÜTÜRK TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/benguturk/index.m3u8 -#EXTINF:-1 tvg-id="BeratTV.tr",Berat TV (720p) [Not 24/7] -http://cdn-berattv.yayin.com.tr/berattv/berattv/playlist.m3u8 -#EXTINF:-1 tvg-id="BesiktasWebTV.tr",Beşiktaş Web TV (360p) -https://s01.vpis.io/besiktas/besiktas.m3u8 -#EXTINF:-1 tvg-id="BeyazTV.tr",Beyaz TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/87 -#EXTINF:-1 tvg-id="BeyazTV.tr",Beyaz TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/beyaztv/index.m3u8 -#EXTINF:-1 tvg-id="BodrumBelediyesiWebTV.tr",Bodrum Belediyesi Web TV (720p) -https://win2.yayin.com.tr/bodrumbeltv/bodrumbeltv/playlist.m3u8 -#EXTINF:-1 tvg-id="BRTV.tr",BRTV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/brtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaASTV.tr",Bursa AS TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/astv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaTV.tr",Bursa TV (720p) [Not 24/7] -https://cdn-bursatv.yayin.com.tr/bursatv/bursatv/playlist.m3u8 -#EXTINF:-1 tvg-id="BursaTV.tr",Bursa TV (720p) [Not 24/7] -https://win1.yayin.com.tr/bursatv/bursatv/playlist.m3u8 -#EXTINF:-1 tvg-id="CanTV.tr",Can TV (720p) -http://canbroadcast.com:7000/canlican/tv.m3u8 -#EXTINF:-1 tvg-id="CanTV.tr",Can TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/105.m3u8 -#EXTINF:-1 tvg-id="",CAN TV (720p) [Not 24/7] -http://176.10.117.18:8000/play/a004/index.m3u8 -#EXTINF:-1 tvg-id="CayTV.tr",Cay TV (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/caytv/bant1/CAYTV.m3u8 -#EXTINF:-1 tvg-id="CekmekoyTV.tr",Cekmeköy TV (1080p) -https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv/playlist.m3u8 -#EXTINF:-1 tvg-id="CemTV.tr",Cem TV (576p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/104.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/ciftcitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (720p) [Not 24/7] -https://waw1.artiyerelmedya.net/ciftcitv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="CiftciTV.tr",Çiftçi TV (1080p) [Not 24/7] -http://stream.taksimbilisim.com:1935/ciftcitv/smil:ciftcitv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Cine5TV.tr",Cine5 TV (720p) [Geo-blocked] -https://host.onlineradyotv.net:1936/cine5/cine5/playlist.m3u8 -#EXTINF:-1 tvg-id="",CRI Türk Belgesel (480p) [Offline] -http://cri.aa.net.tr:1935/belgesel/belgesel/playlist.m3u8 -#EXTINF:-1 tvg-id="DehaTV.tr",Deha TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/dehatv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DenizPostasiTV.tr",Deni̇z Postasi TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/denizpostasitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DenizPostasiTV.tr",Deniz Postası TV (720p) [Not 24/7] -http://waw1.artiyerelmedya.net:1935/denizpostasitv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Dersim62TV.tr",Dersim62 TV (720p) -http://live.arkumedia.com:1935/dersim62tv/dersim62tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DHA.tr",DHA (720p) [Not 24/7] -https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8 -#EXTINF:-1 tvg-id="DIMTV.tr",DİM TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/dimtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="DiyanetTV.tr",Diyanet TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_diyanet/smil:diyanet_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="DRTTV.tr",DRT TV (720p) [Not 24/7] -https://broadcasttr.com:446/drt/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="EgeTurkTV.tr",Ege Türk TV (480p) -https://5be5d840359c6.streamlock.net/egeaturktv/egeaturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="EgeTV.tr",Ege TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/egetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ElmasTV.tr",Elmas TV (720p) [Not 24/7] -https://5be5d840359c6.streamlock.net/elmas67tv/elmas67tv/chunklist.m3u8 -#EXTINF:-1 tvg-id="EmTV.tr",Em TV (486p) -https://cdn.yayin.com.tr/TVEM/TVEM/playlist.m3u8 -#EXTINF:-1 tvg-id="",Er TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/ertv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="ErtSahTV.tr",Ert Sah TV (720p) [Not 24/7] -http://win20.yayin.com.tr/ertsahtv/ertsahtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ErzurumWebTV.tr",Erzurum Web TV (720p) -https://win29.yayin.com.tr/erzurumwebtv/erzurumwebtv/playlist.m3u8 -#EXTINF:-1 tvg-id="ETVManisa.tr",ETV Manisa (1080p) [Not 24/7] -https://broadcasttr.com:446/manisaetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Euro90Channel.tr",Euro 90 Channel (1080p) [Not 24/7] -https://ssl4.radyotvonline.com/e90tv/e90tvlive/playlist.m3u8 -#EXTINF:-1 tvg-id="EuroGenc.tr",Euro Genc (1080p) [Not 24/7] -https://dcunilive258-lh.akamaihd.net/i/dclive_1@126972/master.m3u8 -#EXTINF:-1 tvg-id="FenerbahceTVFBTV.tr",Fenerbahçe TV (FBTV) (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x21oo10 -#EXTINF:-1 tvg-id="FinansTurkTV.tr",Finans Turk TV (720p) -http://live.arkumedia.com:1935/finansturktv/finansturktv/playlist.m3u8 -#EXTINF:-1 tvg-id="GaziantepOlayTv.tr",Gaziantep Olay Tv (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/olaytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GencTV.tr",Genç TV (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_genc.m3u8 -#EXTINF:-1 tvg-id="GoncaTV.tr",Gonca TV (720p) [Not 24/7] -https://broadcasttr.com:446/tuncerciftci/smil:tuncerciftci.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GRT.tr",GRT (720p) -https://waw2.artiyerelmedya.net/grt/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="GRTGaziantep.tr",GRT Gaziantep (720p) [Geo-blocked] -http://yerelmedya.tv:1935/grt/_definst_/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GSTV.tr",GSTV [Geo-blocked] -https://owifavo5.rocketcdn.com/gstv/gstv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GunesTVKibris.tr",Güneş TV Kibris (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_gunes.m3u8 -#EXTINF:-1 tvg-id="GuneyTVTarsus.tr",Guney TV Tarsus (270p) [Offline] -http://stream2.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GuneydoguTV.tr",Guneydoğu TV (720p) [Not 24/7] -http://stream2.taksimbilisim.com:1935/gtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="GuneydoguTV.tr",Guneydoğu TV (720p) [Not 24/7] -https://broadcasttr.com:446/gtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Haber61TV.tr",Haber61 TV (720p) [Not 24/7] -https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8 -#EXTINF:-1 tvg-id="",Haber61 TV (720p) [Not 24/7] -https://win8.yayin.com.tr/haber61tv/smil:haber61tv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HaberGlobal.tr",Haber Global (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/haberglobal/index.m3u8 -#EXTINF:-1 tvg-id="",Habertürk TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/130 -#EXTINF:-1 tvg-id="",Habertürk TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/haberturk/index.m3u8 -#EXTINF:-1 tvg-id="HalkTV.tr",Halk TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_halktv/smil:halktv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HunatTV.tr",Hunat TV (480p) [Geo-blocked] -https://waw2.artiyerelmedya.net/hunattv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="HunatTV.tr",Hunat TV (480p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/hunattv/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr",IBB TV (1080p) -http://wowza.istweb.tv:1935/webtv/webtv_wowza1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr",IBB TV (1080p) [Not 24/7] -https://npserver1.ibb.gov.tr/webtv/webtv_wowza1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr",İBB TV (720p) [Offline] -http://wowza.istweb.tv:1935/dp/istanbul2/playlist.m3u8 -#EXTINF:-1 tvg-id="IBBTV.tr",İBB TV [Not 24/7] -rtmp://wowza.istweb.tv:1935/webtv/webtv_wowza1 -#EXTINF:-1 tvg-id="IcelTV.tr",Icel TV (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/iceltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="IcelTV.tr",Icel TV (720p) [Not 24/7] -https://broadcasttr.com:446/iceltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal3.tr",Kanal 3 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/kanal3/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal3.tr",Kanal 3 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal3/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal7.tr",Kanal 7 (576p) [Not 24/7] -https://live.kanal7.com/live/kanal7LiveMobile/index.m3u8 -#EXTINF:-1 tvg-id="Kanal7.tr",Kanal 7 (1080p) -https://live.kanal7.com/live/kanal7LiveDesktop/index.m3u8 -#EXTINF:-1 tvg-id="Kanal7Avrupa.tr",Kanal 7 Avrupa (1080p) [Not 24/7] -https://live.kanal7.com/live/kanal7AvrupaLive/index.m3u8 -#EXTINF:-1 tvg-id="Kanal12.tr",Kanal 12 (720p) [Not 24/7] -https://waw1.artiyerelmedya.net/kanal12/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal15.tr",Kanal 15 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal15/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal23.tr",Kanal 23 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal23/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal26.tr",Kanal 26 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal26/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal32.tr",Kanal 32 (480p) [Not 24/7] -https://edge1.socialsmart.tv/kanal32/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal33.tr",Kanal 33 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/kanal33/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal34.tr",Kanal 34 (720p) -https://5be5d840359c6.streamlock.net/kanal34tv/kanal34tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal34.tr",Kanal 34 (720p) [Not 24/7] -http://live.arkumedia.com:1935/kanal34tv/kanal34tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal38.tr",Kanal 38 (540p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/kanal38/playlist.m3u8 -#EXTINF:-1 tvg-id="KANAL58.tr",KANAL 58 (720p) [Not 24/7] -https://broadcasttr.com:446/kanal58/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="Kanal68.tr",Kanal 68 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanal68/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalAvrupa.tr",Kanal Avrupa (1080p) [Not 24/7] -http://51.15.2.151/hls/kanalavrupa.m3u8 -#EXTINF:-1 tvg-id="KanalB.tr",Kanal B (480p) [Not 24/7] -http://212.174.58.161/hls-live/livepkgr/_definst_/liveevent/kanalb.m3u8 -#EXTINF:-1 tvg-id="KanalD.tr",Kanal D (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/66.m3u8 -#EXTINF:-1 tvg-id="KanalD.tr",Kanal D (540p) [Offline] -https://2122248074.duhnet.tv/S2/HLS_LIVE/kanaldnp/track_3_750/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalDRomania.tr",Kanal D Romania (384p) [Not 24/7] -https://stream1.kanald.ro/iphone/live.m3u8 -#EXTINF:-1 tvg-id="KanalFirat.tr",Kanal Firat (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanalfirat/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalT.tr",Kanal T (720p) [Not 24/7] -http://kuzeykibris.tv/m3u8/tv_kanalt.m3u8 -#EXTINF:-1 tvg-id="KanalUrfa.tr",Kanal Urfa (576p) [Not 24/7] -https://broadcasttr.com:446/kanalurfa/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalV.tr",Kanal V (720p) [Not 24/7] -http://yerelmedya.tv:1935/kanalv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalZ.tr",Kanal Z (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/kanalz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KardelenTV.tr",Kardelen TV [Offline] -http://cdn1.streamencoding.com:1935/kardelen_live/HD/playlist.m3u8 -#EXTINF:-1 tvg-id="KayTV.tr",Kay TV (256p) [Not 24/7] -http://yayin3.canlitv.com:1935/canlitv/kaytv/playlist.m3u8 -#EXTINF:-1 tvg-id="KayTV.tr",Kay TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/kaytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KentTurk.tr",Kent Türk (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/38kenttv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="KRTTV.tr",KRT TV (1080p) [Offline] -http://live1.krttv.com.tr/show/krttv_mobil/index.m3u8 -#EXTINF:-1 tvg-id="KudusTV.tr",Kudüs TV (480p) [Geo-blocked] -https://yayin.kudustv.com/981680400/kudustv/playlist.m3u8 -#EXTINF:-1 tvg-id="KudusTV.tr",Kudüs TV (480p) [Offline] -http://yayin10.canliyayin.org/P981680400/kudustv/playlist.m3u8 -#EXTINF:-1 tvg-id="LalegulTV.tr",Lalegül TV (720p) [Not 24/7] -http://lalegultv.netmedya.net/hls/lalegultv.m3u8 -#EXTINF:-1 tvg-id="LalegulTV.tr",Lalegül TV (720p) [Not 24/7] -http://lalegultv.netmedya.net/lalegul-tv/lalegultv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LifeTV.tr",Life TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/lifetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="LineTV.tr",Line TV (404p) [Not 24/7] -https://broadcasttr.com:446/linetv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="LuysTV.tr",Luys TV [Offline] -http://luyse.mediatriple.net/luystv/luystv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MarTV.tr",Mar TV (480p) [Not 24/7] -http://marmaratv.canliyayin.org/P324353563/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="MarmaraTV.tr",Marmara TV (480p) [Geo-blocked] -https://yayin.marmaratv.com.tr/P324353563/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="MaviKaradeniz.tr",MaviKaradeniz (720p) [Geo-blocked] -http://yerelmedya.tv:1935/mavikaradeniz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MaviKaradeniz.tr",MaviKaradeniz (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/mavikaradeniz/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Med Müzik TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/29.m3u8 -#EXTINF:-1 tvg-id="",Med Müzik TV (1080p) [Not 24/7] -http://137.74.205.201/medmuzik/MedStream/playlist.m3u8 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/23 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/23.m3u8 -#EXTINF:-1 tvg-id="MedyaHaberTV.tr",Medya Haber TV (1080p) -https://602ccc850c9bb.streamlock.net/Medya/smil:1280.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Mercan TV (720p) [Not 24/7] -http://yerelmedya.tv:1935/mercantv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MercanTV.tr",Mercan TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/mercantv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="MeteorolojiTV.tr",Meteoroloji TV (720p) [Offline] -https://b01c02nl.mediatriple.net/videoonlylive/mtfgdbkwkjllolive/broadcast_5b1673b7c36b7.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="MilyonTV.tr",Milyon TV (720p) [Offline] -https://milyontv-live.ercdn.net/milyontv/milyontv_720p.m3u8 -#EXTINF:-1 tvg-id="MiskFM.tr",Misk FM (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCrvsAwtrxZ0q31yU9JEBdWA/live -#EXTINF:-1 tvg-id="MSBCKanal2000.tr",MSBC Kanal 2000 (360p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/kanal-2000/playlist.m3u8 -#EXTINF:-1 tvg-id="NaturalTV.tr",Natural TV (720p) [Not 24/7] -http://broadcasttr.com:1935/naturaltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="NaturalTV.tr",Natural TV (720p) [Not 24/7] -https://broadcasttr.com:446/naturaltv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="NTV.tr",NTV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/128 -#EXTINF:-1 tvg-id="NTVSpor.tr",NTV Spor [Timeout] -http://46.4.193.238:8484/hls/ntvspor/playlist.m3u8 -#EXTINF:-1 tvg-id="OgunTV.tr",Ogün TV (360p) -https://s01.vpis.io/ogun/ogun.m3u8 -#EXTINF:-1 tvg-id="OlayTurkTV.tr",Olay Türk TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/olayturk/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="OlayTurkKayseri.tr",OlayTürk Kayseri (720p) [Geo-blocked] -http://waw1.artiyerelmedya.net:1935/olayturk/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="On4TV.tr",On4 TV (1080p) [Not 24/7] -http://yayin.netradyom.com:1935/live/on4/playlist.m3u8 -#EXTINF:-1 tvg-id="ONMedyaHaber.tr",ON Medya Haber (720p) [Geo-blocked] -http://live.arkumedia.com:1935/marmaratv/marmaratv/playlist.m3u8 -#EXTINF:-1 tvg-id="OncuTV.tr",Öncü TV (1024p) [Not 24/7] -https://broadcasttr.com:446/oncurtv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="PetraTV.tr",Petra TV (1080p) [Not 24/7] -http://tt61.mine.nu/live/PetraTV/Fw99Gpq7Gq/6478.m3u8 -#EXTINF:-1 tvg-id="PowerTurk.tr",Power Turk (720p) [Not 24/7] -https://mn-nl.mncdn.com/blutv_powerturk/smil:powerturk_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTurk.tr",Power Turk (1080p) [Not 24/7] -https://livetv.powerapp.com.tr/powerturkTV/powerturkhd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTV.tr",Power TV (1080p) -https://livetv.powerapp.com.tr/powerTV/powerhd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerTurkTV.tr",PowerTürk TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/powerturktv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="RehberTV.tr",Rehber TV (720p) [Not 24/7] -http://rehbertv.canliyayin.org/P871000884/rehbertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SabanTV.tr",Şaban TV (720p) [Geo-blocked] -http://145.239.37.125:20458/sabantv3/sabantv3/playlist.m3u8 -#EXTINF:-1 tvg-id="SamsunCanliHaberTV.tr",Samsun Canli Haber TV (720p) [Not 24/7] -https://cdn-samsuncanlihabertv.yayin.com.tr/samsuncanlihabertv/samsuncanlihabertv/playlist.m3u8 -#EXTINF:-1 tvg-id="SariyerTV.tr",Sarıyer TV (360p) -http://s01.vpis.io/sariyer/sariyer.m3u8 -#EXTINF:-1 tvg-id="",Sat7 Pars (720p) -https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Sat7 Türk (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="SatrancTV.tr",Satranç TV (480p) [Not 24/7] -http://139.162.182.79/live/test/index.m3u8 -#EXTINF:-1 tvg-id="SemerkandTV.tr",Semerkand TV (720p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtisvwurbfcyslive/broadcast_58d915bd40efc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowTurkTV.tr",Show Türk TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_showturk/showturk_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowTV.tr",Show TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/showtv/index.m3u8 -#EXTINF:-1 tvg-id="Sinema1001.tr",Sinema 1001 (1080p) [Offline] -http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Turkish/8b8823ce5525d9b.m3u8 -#EXTINF:-1 tvg-id="SinopYildizTV.tr",Sinop Yildiz TV (360p) -https://s01.vpis.io/sinopyildiz/sinopyildiz.m3u8 -#EXTINF:-1 tvg-id="SportsTV.tr",Sports TV (720p) [Geo-blocked] -https://live.sportstv.com.tr/hls/low/sportstv.m3u8 -#EXTINF:-1 tvg-id="StarTV.tr",Star TV (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/69 -#EXTINF:-1 tvg-id="StarTV.tr",Star TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/69.m3u8 -#EXTINF:-1 tvg-id="StarTV.tr",Star TV (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.dailymotion.com/video/x729whv -#EXTINF:-1 tvg-id="SterkTV.tr",Sterk TV (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/24.m3u8 -#EXTINF:-1 tvg-id="SunRTV.tr",Sun RTV (720p) [Not 24/7] -https://tr.socialsmart.tv/suntv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="TarsusGuneyTV.tr",Tarsus Güney TV (270p) [Offline] -http://stream.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tay TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_taytv/smil:taytv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",teve2 (720p) [Offline] -https://mn-nl.mncdn.com/blutv_teve2/smil:teve2_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr",TGRT Belgesel TV (288p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe462afc6a0e.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr",TGRT Belgesel TV (576p) -https://tv.ensonhaber.com/tv/tr/tgrtbelgesel/index.m3u8 -#EXTINF:-1 tvg-id="TGRTEU.tr",TGRT EU (576p) -https://tv.ensonhaber.com/tv/tr/tgrteu/index.m3u8 -#EXTINF:-1 tvg-id="TGRTHaber.tr",TGRT Haber (360p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe4598be8e5d.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ThaqalaynTV.tr",Thaqalayn TV (720p) [Not 24/7] -https://live.thaqalayn.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="TonTV.tr",Ton TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/tontv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="ToprakTV.tr",Toprak TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/topraktv/playlist.m3u8 -#EXTINF:-1 tvg-id="TorbaTV.tr",Torba TV (1080p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/torbatv/playlist.m3u8 -#EXTINF:-1 tvg-id="TR24TV.tr",TR24 TV (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/24tv/index.m3u8 -#EXTINF:-1 tvg-id="TRT1.tr",TRT 1 (720p) [Geo-blocked] -https://tv-trt1.medya.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRT1.tr",TRT 1 (720p) [Not 24/7] -https://mn-nl.mncdn.com/blutv_trt1/smil:trt1_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRT2.tr",TRT 2 [Geo-blocked] -https://tv-trt2.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRT3.tr",TRT 3 (720p) [Offline] -https://tv-trt3.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTArabi.tr",TRT Arabi (720p) [Not 24/7] -https://tv-trtarabi.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTArabi.tr",TRT Arabi̇ (720p) [Offline] -https://mn-nl.mncdn.com/blutv_trtarapca/smil:trtarapca_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTAvaz.tr",TRT Avaz (720p) -https://tv-trtavaz.medya.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTBelgesel.tr",TRT Belgesel (720p) -https://tv-trtbelgesel.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTCocuk.tr",TRT Çocuk (720p) -https://tv-trtcocuk.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTDiyanet.tr",TRT Diyanet (1080p) -https://eustr73.mediatriple.net/videoonlylive/mtikoimxnztxlive/broadcast_5e3bf95a47e07.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTEBAIlkokul.tr",TRT EBA Ilkokul (720p) [Offline] -https://tv-e-okul00.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTEBALise.tr",TRT EBA Lise (720p) [Offline] -https://tv-e-okul02.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTEBAOrtaokul.tr",TRT EBA Ortaokul (720p) [Offline] -https://tv-e-okul01.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTHaber.tr",TRT Haber (720p) [Offline] -https://tv-trthaber.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTKurdi.tr",TRT Kurdî (720p) [Offline] -https://tv-trtkurdi.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTMuzik.tr",TRT Muzik (720p) [Offline] -https://mn-nl.mncdn.com/blutv_trtmuzik/smil:trtmuzik_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TRTSpor.tr",TRT Spor [Offline] -https://tv-trtspor1.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTTurk.tr",TRT Türk (720p) [Offline] -https://tv-trtturk.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TRTWorld.tr",TRT World (720p) [Not 24/7] -https://tv-trtworld.live.trt.com.tr/master.m3u8 -#EXTINF:-1 tvg-id="TV4.tr",TV4 (720p) -https://turkmedya-live.ercdn.net/tv4/tv4_720p.m3u8 -#EXTINF:-1 tvg-id="TV8.tr",TV 8 (480p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/74.m3u8 -#EXTINF:-1 tvg-id="TV8.tr",TV8 (576p) [Not 24/7] -http://62.112.9.63:88/TV8_TR/index.m3u8?token=test -#EXTINF:-1 tvg-id="TV85.tr",TV 8.5 (720p) [Offline] -https://mn-nl.mncdn.com/blutv_tv8_5/smil:tv8_5_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV24.tr",TV24 (720p) [Offline] -https://mn-nl.mncdn.com/blutv_kanal24/smil:kanal24_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV35.tr",TV 35 (720p) [Offline] -https://59cba4d34b678.streamlock.net/canlitv/tv35/playlist.m3u8 -#EXTINF:-1 tvg-id="TV38.tr",TV 38 (360p) [Not 24/7] -https://59cba4d34b678.streamlock.net/live/tv38/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Geo-blocked] -https://waw1.artiyerelmedya.net/tv41/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/bant1/TV41.m3u8 -#EXTINF:-1 tvg-id="TV41.tr",TV 41 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv41/smil:tv41.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV41.tr",TV41 (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/tv41/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="TV52.tr",TV 52 (720p) [Not 24/7] -http://stream.taksimbilisim.com:1935/tv52/smil:tv52.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="TV52.tr",TV 52 (720p) [Not 24/7] -https://broadcasttr.com:446/tv52/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="",tv100 (720p) [Not 24/7] -https://livex458745.livestreamlive.xyz/tv100.m3u8 -#EXTINF:-1 tvg-id="",tv100 (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=8jEXHzMTR7s -#EXTINF:-1 tvg-id="tv100Ekonomi.tr",tv100 Ekonomi (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=32enbX7XKnw -#EXTINF:-1 tvg-id="TVDen.tr",TV Den (576p) [Not 24/7] -http://canli.tvden.com.tr/hls/live.m3u8 -#EXTINF:-1 tvg-id="TVEm.tr",TV Em (486p) -http://cdn-tvem.yayin.com.tr/TVEM/TVEM/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEm.tr",TV Em (486p) -https://cdn.yayin.com.tr/TVEM/TVEM/chunklist.m3u8 -#EXTINF:-1 tvg-id="UcanKusTV.tr",UçanKuş TV (720p) -https://ucankus-live.cdnnew.com/ucankus/ucankus.m3u8 -#EXTINF:-1 tvg-id="UcanKusTV.tr",UçanKuş TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_ucankus/ucankus_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UlkeTV.tr",Ülke TV (720p) [Offline] -https://mn-nl.mncdn.com/blutv_ulketv/smil:ulketv_sd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="UniversiteTV.tr",Üniversite TV (720p) [Not 24/7] -https://5be5d840359c6.streamlock.net/unitv/unitv/playlist.m3u8 -#EXTINF:-1 tvg-id="UUTVUskudarUniversitesiTV.tr",ÜÜ TV Üsküdar Üniversitesi TV (1080p) [Not 24/7] -http://uskudarunv.mediatriple.net/uskudarunv/uskudar2/playlist.m3u8 -#EXTINF:-1 tvg-id="Vizyon58TV.tr",Vizyon 58 TV (720p) [Geo-blocked] -https://waw2.artiyerelmedya.net/vizyon58/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="VTV.tr",VTV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/kanalv/bant1/chunks.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/vuslattv/HasBahCa.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] -http://yayin3.canlitv.com:1935/live/vuslattv/playlist.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/live/vuslattv/playlist.m3u8 -#EXTINF:-1 tvg-id="VuslatTV.tr",Vuslat TV (720p) [Not 24/7] -https://waw2.artiyerelmedya.net/vuslattv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="YeniMalatyasporTV.tr",Yeni Malatyaspor TV (720p) [Not 24/7] -https://592f1881b3d5f.streamlock.net:1443/santraltv_925/santraltv_925/playlist.m3u8 -#EXTINF:-1 tvg-id="YolTV.tr",Yol TV (720p) [Not 24/7] -http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/107.m3u8 diff --git a/streams/tt.m3u b/streams/tt.m3u deleted file mode 100644 index 9e29ee538..000000000 --- a/streams/tt.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TheIslamicNetwork.tt",The Islamic Network (480p) [Not 24/7] -http://daruttarbiyah.srfms.com:1935/daruttarbiyah/livestream/playlist.m3u8 diff --git a/streams/tw.m3u b/streams/tw.m3u deleted file mode 100644 index 4625ac4c1..000000000 --- a/streams/tw.m3u +++ /dev/null @@ -1,149 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CTITVAsia.tw",CTI TV Asia (720p) [Geo-blocked] -http://free.fullspeed.tv/query?url=https://www.youtube.com/channel/UC5l1Yto5oOIgRXlI4p4VKbw/live -#EXTINF:-1 tvg-id="FTVNews.tw",FTV News (720p) [Offline] -http://210.61.56.23/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH1 綜合台 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech1.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH2 真理台 (720p) -https://live.streamingfast.net/osmflivech2.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH3 真情部落格 短版 (720p) -https://live.streamingfast.net/osmflivech3.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH5 共享觀點 短版 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech5.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH6 親近神 詩歌音樂 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech6.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH7 禱告大軍 信息 (720p) -https://live.streamingfast.net/osmflivech7.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH8 幸福學堂 短版 (720p) -https://live.streamingfast.net/osmflivech8.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH9 愛+好醫生 短版 (720p) -https://live.streamingfast.net/osmflivech9.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH10 烤箱讀書會 短版 (720p) -https://live.streamingfast.net/osmflivech10.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH12 維他命施 (720p) -https://live.streamingfast.net/osmflivech12.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH13 健康新煮流 短版 (720p) -https://live.streamingfast.net/osmflivech13.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH14 真情部落格 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech14.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH15 真情之夜 (720p) -https://live.streamingfast.net/osmflivech15.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH16 葉光明 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech16.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH17 大衛鮑森 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech17.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH18 國際講員 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech18.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH19 共享觀點 (720p) -https://live.streamingfast.net/osmflivech19.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH20 恩典時分 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech20.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH21 華語講員 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech21.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH22 職場新視野 (720p) -https://live.streamingfast.net/osmflivech22.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH23 空中主日學 生活 (720p) -https://live.streamingfast.net/osmflivech23.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH24 劉三講古 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech24.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH25 福氣人生 (720p) -https://live.streamingfast.net/osmflivech25.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH26 空中主日學 查經 (720p) -https://live.streamingfast.net/osmflivech26.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH27 空中聖經學院 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech27.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH28 現代詩歌 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech28.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH29 經典音樂河 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech29.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH30 天堂敬拜 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech30.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH31 福音佈道音樂會 (720p) -https://live.streamingfast.net/osmflivech31.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH32 特會系列:禱告與轉化 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech32.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH33 特會系列:研經培靈 (720p) -https://live.streamingfast.net/osmflivech33.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH36 特會系列:超自然大能.醫治釋放 (720p) -https://live.streamingfast.net/osmflivech36.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH37 特會系列:以色列專題 (720p) -https://live.streamingfast.net/osmflivech37.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH38 特會系列:青年特會 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech38.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH40 家庭8點檔轉轉發現愛 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech40.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH41 幸福學堂 (720p) -https://live.streamingfast.net/osmflivech41.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH44 烤箱讀書會 (720p) -https://live.streamingfast.net/osmflivech44.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH45 卡通 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech45.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH47 牧者頻道 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech47.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH49 禱告頻道 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech49.m3u8 -#EXTINF:-1 tvg-id="",GOOD TV CH50 國際講員 中文發音 (720p) [Not 24/7] -https://live.streamingfast.net/osmflivech50.m3u8 -#EXTINF:-1 tvg-id="GSTVXingFuKongJianJuJiaTai.tw",GSTV Gorgeous Space TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCoo-jAsJgM8z09ddlhcBlSA/live -#EXTINF:-1 tvg-id="IndigenousTV.tw",Indigenous TV (720p) -http://streamipcf.akamaized.net/live/_definst_/smil:liveabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",TVBS新聞 [Geo-blocked] -http://seb.sason.top/sc/tvbsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",三立新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/sllive_fhd.m3u8 -#EXTINF:-1 tvg-id="",中天新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/ztxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",中視新聞 (1080p) [Geo-blocked] -http://seb.sason.top/sc/zsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",原住民電視 (720p) -http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8 -#EXTINF:-1 tvg-id="",台視新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/tsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",唯心電視 (480p) -http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8 -#EXTINF:-1 tvg-id="",壹電視新聞台 (1080p) -http://stream.nexttv.com.tw/n001/hd/live.m3u8 -#EXTINF:-1 tvg-id="",大愛1 (720p) -https://pulltv1.wanfudaluye.com/live/tv1.m3u8 -#EXTINF:-1 tvg-id="DaAi2.tw",大愛2 (720p) -https://pulltv2.wanfudaluye.com/live/tv2.m3u8 -#EXTINF:-1 tvg-id="",大立電視 (720p) -http://www.dalitv.com.tw:4568/live/dali/index.m3u8 -#EXTINF:-1 tvg-id="",東森新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/dsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",東森財經新聞 (1080p) [Not 24/7] -http://seb.sason.top/sc/dscjxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",民視 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=ms -#EXTINF:-1 tvg-id="",民視台灣 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=tw -#EXTINF:-1 tvg-id="",民視新聞台 (720p) [Offline] -https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 -#EXTINF:-1 tvg-id="",民視第一 (720p) [Not 24/7] -http://seb.sason.top/ptv/ftv.php?id=dy -#EXTINF:-1 tvg-id="",立法院IVOD直播交通委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live6/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播內政委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live7/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播司法及法制委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live9/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播外交及國防委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live8/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播教育及文化委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live4/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播朝野協商 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live10/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播社會福利及衛生環境委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live3/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播經濟委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live5/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播財政委員會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live2/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",立法院IVOD直播院會 (450p) -https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live1/hls-cl-tv/index.m3u8 -#EXTINF:-1 tvg-id="",華視新聞資訊 [Geo-blocked] -http://seb.sason.top/sc/hsxw_fhd.m3u8 -#EXTINF:-1 tvg-id="",華藏衛視 (1080p) [Not 24/7] -http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 diff --git a/streams/tz.m3u b/streams/tz.m3u deleted file mode 100644 index b7d57c433..000000000 --- a/streams/tz.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AzamSports1.tz",Azam Sports 1 (540p) [Offline] -https://1446000130.rsc.cdn77.org/1446000130/index.m3u8 -#EXTINF:-1 tvg-id="AzamSports2.tz",Azam Sports 2 (540p) [Offline] -https://1326605225.rsc.cdn77.org/1326605225/index.m3u8 -#EXTINF:-1 tvg-id="ChannelTen.tz",Channel Ten (240p) [Not 24/7] -http://hls-pull-switchinternational.speedws.com/live/test1/playlist.m3u8 -#EXTINF:-1 tvg-id="IBNTV.tz",IBN TV (360p) -http://138.68.138.119:8080/low/5a8993709ea19/index.m3u8 diff --git a/streams/ua.m3u b/streams/ua.m3u deleted file mode 100644 index 209f53b68..000000000 --- a/streams/ua.m3u +++ /dev/null @@ -1,271 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="1Plus1Sport.ua",1+1 Спорт (720p) [Not 24/7] -https://live-k2301-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",4 канал (576p) -http://95.67.106.10/hls/nta_ua_low/index.m3u8 -#EXTINF:-1 tvg-id="",4 канал (720p) -http://95.67.106.10/hls/nta_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="",4 канал (1080p) -http://95.67.106.10/hls/nta_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="7kanal.ua",7 канал (720p) -https://cdn10.live-tv.od.ua:8083/7tvod/7tvod/playlist.m3u8 -#EXTINF:-1 tvg-id="7kanal.ua",7 канал (Одесса) (720p) -https://cdn10.live-tv.od.ua:8083/7tvod/7tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="24Kanal.ua",24 Канал (1080p) -http://streamvideol1.luxnet.ua/news24/news24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="24Kanal.ua",24 Канал (1080p) -http://streamvideol1.luxnet.ua/news24/smil:news24.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="34kanal.ua",34 канал (576p) [Not 24/7] -http://streamvideol.luxnet.ua/34ua/34ua.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="100News.ua",100% News (576p) -http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8 -#EXTINF:-1 tvg-id="ATR.ua",ATR (504p) -http://stream.atr.ua/atr/live/index.m3u8 -#EXTINF:-1 tvg-id="BamBarBiaTV.ua",BamBarBia TV (1080p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/bbb/bbbtv-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="",CNL Европа (216p) -http://live-mobile.cdn01.net/hls-live/202E1F/default/mobile/stream_10429_3.m3u8 -#EXTINF:-1 tvg-id="DonezkTV.ua",Donezk TV (720p) [Offline] -http://stream.dn.ua/hls/stream.m3u8 -#EXTINF:-1 tvg-id="GIT.ua",GIT (720p) -https://stream.uagit.tv/gittv.m3u8 -#EXTINF:-1 tvg-id="GTV.ua",GTV (224p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-240p/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua",GTV (480p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-480p/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua",GTV (720p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="GTV.ua",GTV (720p) -https://cdn1.live-tv.od.ua:8083/a1od/gtvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua",HDFashion & LifeStyle (1080p) -http://95.67.47.114/hls/hdfashion_ua.m3u8 -#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua",HDFashion & LifeStyle (1080p) -http://95.67.47.115/hls/hdfashion_ua.m3u8 -#EXTINF:-1 tvg-id="IDFashion.ua",ID Fashion (1080p) [Not 24/7] -https://idfashion.cdn-02.cosmonova.net.ua/hls/idfashion_ua.m3u8 -#EXTINF:-1 tvg-id="IHTEP.ua",IHTEP (576p) -https://edge1.iptv.macc.com.ua/img/inter_3/index.m3u8 -#EXTINF:-1 tvg-id="Inter.ua",Iнтер (576p) -https://edge3.iptv.macc.com.ua/img/inter_3/index.m3u8 -#EXTINF:-1 tvg-id="K1.ua",K1 (512p) -https://edge2.iptv.macc.com.ua/life/k1_2/index.m3u8 -#EXTINF:-1 tvg-id="Kratu.ua",Kratu (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/kratu/kratu-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Kratu.ua",Kratu (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/kratu/kratu/playlist.m3u8 -#EXTINF:-1 tvg-id="Lale.ua",Lale (504p) -http://stream.atr.ua/lale/live/index.m3u8 -#EXTINF:-1 tvg-id="M1.ua",M1 (720p) -http://live.m2.tv/hls2/stream.m3u8 -#EXTINF:-1 tvg-id="M2.ua",M2 (540p) -http://live.m2.tv/hls3/stream.m3u8 -#EXTINF:-1 tvg-id="Micto.ua" status="timeout",Micto (360p) [Timeout] -http://93.78.206.172:8080/stream3/stream.m3u8 -#EXTINF:-1 tvg-id="MostVideoTV.ua",MostVideo.TV (720p) [Not 24/7] -http://w4.mostvideo.tv/tv/ch1.m3u8 -#EXTINF:-1 tvg-id="OdessaFashion.ua",Odessa Fashion (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/ofod/ofod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Renome.ua",Renome (576p) -http://85.238.112.40:8810/hls_sec/online/list-renome.m3u8 -#EXTINF:-1 tvg-id="Simon.ua",Simon (576p) [Not 24/7] -https://hls.simon.ua/live-HD/live/playlist.m3u8 -#EXTINF:-1 tvg-id="Skrypinua.ua",Skrypin.ua (1080p) [Not 24/7] -https://open-cdn.lanet.tv/live/1008.m3u8 -#EXTINF:-1 tvg-id="Sport1.ua",Sport 1 (576p) [Not 24/7] -https://95-213-224-183.livesports24.online/sport1ua.m3u8 -#EXTINF:-1 tvg-id="TravelGuideTV.ua",Travel Guide TV (720p) -https://cdn10.live-tv.od.ua:8083/leonovtv/test1/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelGuideTV.ua",Travel Guide TV (720p) -https://cdn10.live-tv.od.ua:8083/leonovtv/test-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) -https://hls.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) -https://hls.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) -https://rtsp.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV5.ua",TV5 (Запорожье) (360p) -https://rtsp.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 -#EXTINF:-1 tvg-id="TV7Plus.ua",TV7+ (Хмельницький) (576p) [Not 24/7] -https://tv7plus.com/hls/tv7.m3u8 -#EXTINF:-1 tvg-id="UAOdesa.ua",UA: Одеса (384p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/odtrkod/odtrkod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="UATV.ua" status="online",UATV (576p) -https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_low/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) -http://95.67.106.242/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) -https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UATV.ua",UATV (720p) -https://ua-tv-hls3.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="UkrLive.ua",Ukr Live (1080p) [Not 24/7] -http://95.67.12.149:9005 -#EXTINF:-1 tvg-id="Z.ua",Z (Запорожье) (1080p) -https://stream.ztv.zp.ua/hls/live.m3u8 -#EXTINF:-1 tvg-id="A1.ua",А1 (Одесса) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/a1od/a1od-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Avtoradio.ua",Авторадио (720p) [Not 24/7] -https://rtmp.radiogroup.com.ua:8080/live/avto/index.m3u8 -#EXTINF:-1 tvg-id="",Академия (Одесса) (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/36chod/36chod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="ArhatTV.ua",Архат ТВ (720p) -https://arhat.tv/public/720p/index.m3u8 -#EXTINF:-1 tvg-id="BaltaTV.ua",Балта ТВ (768p) -http://194.50.51.34/playlist.m3u8 -#EXTINF:-1 tvg-id="VTV.ua",ВТВ (576p) -http://video.vtvplus.com.ua:81/hls/online/index.m3u8 -#EXTINF:-1 tvg-id="Glas.ua",Глас (576p) -http://85.238.112.69:8811/hls_sec/239.0.4.18-.m3u8 -#EXTINF:-1 tvg-id="GlassRU.ua",Гласс (RU) (576p) [Not 24/7] -https://glas.org.ua/hls/glassru.m3u8 -#EXTINF:-1 tvg-id="GlassUA.ua",Гласс (UA) (576p) [Not 24/7] -https://glas.org.ua/hls/glassua.m3u8 -#EXTINF:-1 tvg-id="DonbasOnline.ua",Донбас Online (1080p) [Not 24/7] -http://176.110.1.30:1935/live/donbasonline/playlist.m3u8 -#EXTINF:-1 tvg-id="DumskayaTV.ua",Думская ТВ (1080p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/dumska/dumska-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Zdorove.ua",Здоровье (504p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/zdorovood/zdorovo/playlist.m3u8 -#EXTINF:-1 tvg-id="IzmailTV.ua",Измаил ТВ (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/izod/izod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="IzmailTV.ua",Измаил ТВ (576p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/izod/izod/playlist.m3u8 -#EXTINF:-1 tvg-id="Inter.ua",Интер (512p) [Not 24/7] -http://109.68.40.67/img/inter_2/index.m3u8 -#EXTINF:-1 tvg-id="IRT.ua",ИРТ (Днепр) (576p) [Not 24/7] -http://91.193.128.233:1935/live/irt.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="Inshiy.ua",Інший (720p) -https://cdn1.live-tv.od.ua:8083/ktkod/ktkod/playlist.m3u8 -#EXTINF:-1 tvg-id="K1.ua",К1 (576p) -http://109.68.40.67/life/k1.m3u8 -#EXTINF:-1 tvg-id="K1.ua",К1 (576p) -http://edge3.iptv.macc.com.ua/life/k1_3/index.m3u8 -#EXTINF:-1 tvg-id="Krug.ua",Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/krugod/krugod/playlist.m3u8 -#EXTINF:-1 tvg-id="Krug.ua",Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="LanetTV.ua",Ланет.TV (486p) -http://kiev1-cdn.lanet.tv/live/1008.m3u8 -#EXTINF:-1 tvg-id="NadiyaNovyykanal.ua",Надия/Новый канал (576p) [Not 24/7] -http://nadiya.home-net.com.ua/mob/mystream.m3u8 -#EXTINF:-1 tvg-id="Nadiya.ua",Надія (720p) [Not 24/7] -https://stream.hope.ua/hopeua/live_1/playlist.m3u8 -#EXTINF:-1 tvg-id="NLOTV.ua",НЛО ТВ (576p) [Geo-blocked] -https://xx001.vivat.live/t-0301.0f6f.d/sd/00047/2m/index.m3u8 -#EXTINF:-1 tvg-id="",НТК (1080p) [Not 24/7] -https://stream.ntktv.ua/s/ntk/ntk.m3u8 -#EXTINF:-1 tvg-id="NTN.ua",НТН (576p) -https://edge2.iptv.macc.com.ua/img/ntn_3/index.m3u8 -#EXTINF:-1 tvg-id="NTN.ua",НТН (576p) [Not 24/7] -https://edge3.iptv.macc.com.ua/img/ntn_3/index.m3u8 -#EXTINF:-1 tvg-id="ObshchestvennoeNezavisimoeTelevidenie.ua",Общественное Независимое Телевидение (576p) -http://85.238.112.40:8810/hls_sec/239.33.75.33-.m3u8 -#EXTINF:-1 tvg-id="Obektiv59.ua",Объектив 59 (576p) -https://hls.simon.ua/live-HD/live/playlist_dvr.m3u8 -#EXTINF:-1 tvg-id="Odessa.ua",Одесса (576p) [Geo-blocked] -https://cdn1.live-tv.od.ua:8083/riood/riood-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Odessa.ua",Одесса (576p) [Geo-blocked] -https://cdn1.live-tv.od.ua:8083/riood/riood/playlist.m3u8 -#EXTINF:-1 tvg-id="OrbitaTV.ua",Орбіта ТВ (360p) [Not 24/7] -http://ftp.orbita.dn.ua/hls/orbita.m3u8 -#EXTINF:-1 tvg-id="",ОТВ (Днепр) (576p) -http://91.193.128.233:1935/live/otv.stream_576p/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyygorodskoyKrivoyRog.ua",Первый городской (Кривой Рог) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="",Первый Городской (Кривой Рог) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr/playlist.m3u8 -#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (504p) -https://cdn1.live-tv.od.ua:8083/1tvod/1tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (504p) -https://cdn1.live-tv.od.ua:8083/1tvod/1tvod/playlist.m3u8 -#EXTINF:-1 tvg-id="",Первый Городской (Одесса) (576p) -http://91.194.79.46:8081/stream2/channel2/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyygorodskoyOdessa.ua",Первый городской (Одесса) (1080p) [Not 24/7] -http://91.194.79.46:8081/stream1/channel1/playlist.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (576p) [Not 24/7] -http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (720p) -http://95.67.127.156/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PervyyDelovoy.ua",Первый Деловой (720p) -http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="PershiyDiloviy.ua",Перший Діловий (576p) -http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="PershiyDiloviy.ua",Перший Діловий (720p) -http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="",Перший Західний (Львов) (576p) -http://hls.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Перший Західний (Львов) (576p) -http://rtmp.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) -https://app.live.112.events/hls/112hd_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) -https://app.live.112.events/hls/112hd_mid/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) [Not 24/7] -http://app.live.112.events/hls-ua/112hd_hi/index.m3u8 -#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua",Перший незалежний (1080p) [Timeout] -https://app.live.112.events/hls-ua/112hd_mid/index.m3u8 -#EXTINF:-1 tvg-id="",ПравдаТУТ (720p) -http://95.67.17.131/hls/pravdatytkievshina_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="",ПравдаТУТ (720p) -http://pravdatytkievshina-hls2.cosmonova.net.ua/hls/pravdatytkievshina_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="",Прямий (576p) -http://prm-hls1.cosmonova.net.ua/hls/prm_ua_mid/index.m3u8 -#EXTINF:-1 tvg-id="",Прямий (720p) -http://95.67.21.100/hls/prm_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="",Прямий (720p) -http://prm-hls1.cosmonova.net.ua/hls/prm_ua_hi/index.m3u8 -#EXTINF:-1 tvg-id="RadioLyuks.ua",Радио Люкс (1080p) -https://stream1.luxnet.ua/luxstudio/smil:luxstudio.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Reporter.ua",Репортер (720p) [Not 24/7] -http://cdn1.live-tv.od.ua:8081/31chod/31chod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="Reporter.ua",Репортер (720p) [Not 24/7] -http://cdn1.live-tv.od.ua:8081/31chod/31chod/playlist.m3u8 -#EXTINF:-1 tvg-id="Svarozhichi.ua",Сварожичи (720p) -http://80.91.177.102:1935/live/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="Svarozhichi.ua",Сварожичи (720p) -http://tv.tv-project.com:1935/live/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua",СК 1 (256p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt240p/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua",СК 1 (480p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt480p/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua",СК 1 (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SK1.ua",СК 1 (720p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="STB.ua",СТБ [Timeout] -http://188.35.9.11:11021/j -#EXTINF:-1 tvg-id="TVDom.ua",ТВ Дом [Offline] -http://46.149.48.21:1234 -#EXTINF:-1 tvg-id="TVA.ua",ТВА (Чернiвцi) (576p) -http://hls.cdn.ua/tva.ua_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="TVA.ua",ТВА (Чернiвцi) (576p) -http://rtsp.cdn.ua/tva.ua_live/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Телеканал Прямий (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCH9H_b9oJtSHBovh94yB5HA/live -#EXTINF:-1 tvg-id="TisTV.ua",Тис ТВ (480p) [Not 24/7] -https://cdn10.live-tv.od.ua:8083/riood/tisod504/playlist.m3u8 -#EXTINF:-1 tvg-id="TretiyCifrovoy.ua",Третий Цифровой (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/3tvod/3tvod-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="TRKAleks.ua",ТРК Алекс (576p) -http://46.46.112.223/live/livestream1.m3u8 -#EXTINF:-1 tvg-id="TRKKrug.ua",ТРК Круг (576p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/krugod/krugod/playlist.m3u8 -#EXTINF:-1 tvg-id="TRKReporter.ua",ТРК Репортер (480p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/31chod/31chod-sub/playlist.m3u8 -#EXTINF:-1 tvg-id="",Трофей ТВ (720p) [Offline] -https://5db1ab4f970be.streamlock.net/live/smil:trofey.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Futbol1.ua",Футбол 1 (576p) [Not 24/7] -https://95-213-224-183.livesports24.online/uafootballua1.m3u8 -#EXTINF:-1 tvg-id="HersonPlyus.ua",Херсон Плюс (576p) -http://46.175.163.130/ks_plus/index.m3u8 -#EXTINF:-1 tvg-id="Cherniveckiypromin.ua",Чернівецький промінь (720p) [Not 24/7] -https://langate.tv/promin/live_720/index.m3u8 -#EXTINF:-1 tvg-id="",ЧП Инфо (576p) -http://edge3.iptv.macc.com.ua/life/magnolia_3/index.m3u8 -#EXTINF:-1 tvg-id="ChPinfo.ua",ЧП.інфо (576p) -http://109.68.40.67/life/magnolia.m3u8 -#EXTINF:-1 tvg-id="",Южная Волна (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/wave/wave-abr/playlist.m3u8 -#EXTINF:-1 tvg-id="",Южная Волна ТВ (Одесса) (720p) [Not 24/7] -https://cdn1.live-tv.od.ua:8083/wave/wave-720/playlist.m3u8 -#EXTINF:-1 tvg-id="YaTB.ua",ЯТБ (576p) -http://46.175.163.130/live_yatb/playlist.m3u8 diff --git a/streams/ug.m3u b/streams/ug.m3u deleted file mode 100644 index b8586f384..000000000 --- a/streams/ug.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArkTV.ug",Ark TV (576p) -https://arktelevision.org/hlslive/test/test.m3u8 -#EXTINF:-1 tvg-id="NBSTV.ug",NBS TV (360p) [Not 24/7] -https://cdn1.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/10-hls/live-media.m3u8 -#EXTINF:-1 tvg-id="NBSTV.ug",NBS TV (480p) [Not 24/7] -https://vse-cdn1-readymedia.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/5-20-hls/live.m3u8 -#EXTINF:-1 tvg-id="SaltTV.ug",Salt TV (720p) [Not 24/7] -https://dcunilive38-lh.akamaihd.net/i/dclive_1@692676/master.m3u8 diff --git a/streams/uk.m3u b/streams/uk.m3u deleted file mode 100644 index bc3d04ceb..000000000 --- a/streams/uk.m3u +++ /dev/null @@ -1,397 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="4Music.uk",4Music (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,4music-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/4music/ -#EXTINF:-1 tvg-id="Afrobeats.uk",Afrobeats (1080p) -https://stream.ecable.tv/afrobeats/index.m3u8 -#EXTINF:-1 tvg-id="AhlulbaytTV.uk",Ahlulbayt TV (1080p) [Not 24/7] -http://109.123.126.14:1935/live/livestream1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="AhlulbaytTV.uk",Ahlulbayt TV (1080p) [Not 24/7] -https://5f3e23ac71915.streamlock.net:4434/live/livestream1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="Ahwazna.uk",Ahwazna (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ahwaznach -#EXTINF:-1 tvg-id="AkaalTV.uk",Akaal TV (360p) [Not 24/7] -http://akaal.zecast.net/akaal-live/smil:akaaltv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AkaalTV.uk",Akaal TV (396p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/akaal_tv/hls1_smart_akaal/akaal_tv.m3u8 -#EXTINF:-1 tvg-id="AlarabyTV.uk",Alaraby TV (720p) -https://alaraby.cdn.octivid.com/alaraby/smil:alaraby.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Alhiwar TV (1080p) [Not 24/7] -https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AnandTV.uk",Anand TV (720p) -https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8 -#EXTINF:-1 tvg-id="AriseNews.uk",Arise News (480p) -https://contributionstreams.sechls01.visionip.tv/live/visiontv-contributionstreams-arise-tv-25f-16x9-SDh/playlist.m3u8 -#EXTINF:-1 tvg-id="AriseNews.uk",Arise News (576p) -https://news.ashttp9.visionip.tv/live/visiontvuk-news-arise-tv-hsslive-25f-16x9-SD/playlist.m3u8 -#EXTINF:-1 tvg-id="AwraasTV.uk",Awraas TV (540p) [Not 24/7] -https://b01c02nl.mediatriple.net/videoonlylive/mtqtqloqdxtlive/broadcast_5cefc3677caee.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCAlba.uk",BBC Alba (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_alba/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (540p) -https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (540p) -https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.mpd -#EXTINF:-1 tvg-id="BBCArabic.uk",BBC Arabic (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd -#EXTINF:-1 tvg-id="BBCEarth.uk",BBC Earth [Geo-blocked] -https://livecdn.fptplay.net/qnetlive/bbcearth_hls.smil/chunklist_b2500000.m3u8 -#EXTINF:-1 tvg-id="BBCFour.uk",BBC Four (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCFourHD.uk",BBC Four HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCLifestyle.uk",BBC Lifestyle (576p) [Geo-blocked] -https://livecdn.fptplay.net/qnetlive/bbclifestyle_2000.stream/chunklist.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Geo-blocked] -https://cdnuk001.broadcastcdn.net/KUK-BBCNEWSHD/index.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News HD (720p) [Not 24/7] -http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 -#EXTINF:-1 tvg-id="BBCOneCambridge.uk",BBC One Cambridge (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_cambridge/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneChannelIslands.uk",BBC One Channel Islands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_channel_islands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEast.uk",BBC One East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEastMidlands.uk",BBC One East Midlands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneEastYorkshire.uk",BBC One East Yorkshire (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_yorkshire/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneHD.uk",BBC One HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneLondon.uk",BBC One London (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_london/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthEast.uk",BBC One North East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthWest.uk",BBC One North West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthernIreland.uk",BBC One Northern Ireland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneNorthernIrelandHD.uk",BBC One Northern Ireland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneOxford.uk",BBC One Oxford (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_oxford/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotland.uk",BBC One Scotland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotlandHD.uk",BBC One Scotland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouth.uk",BBC One South (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouthEast.uk",BBC One South East (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneSouthWest.uk",BBC One South West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWales.uk",BBC One Wales (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWalesHD.uk",BBC One Wales HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCOneWest.uk",BBC One West (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneWestMidlands.uk",BBC One West Midlands (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCOneYorks.uk",BBC One Yorks (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_yorks/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCParliament.uk",BBC Parliament (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_parliament/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (360p) [Not 24/7] -http://159.69.58.154/bbc/master.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (540p) -https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (540p) -https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) -https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.mpd -#EXTINF:-1 tvg-id="BBCPersian.uk",BBC Persian (720p) -https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd -#EXTINF:-1 tvg-id="BBCRedButton1.uk",BBC Red Button 1 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_01.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton2.uk",BBC Red Button 2 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_02.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton3.uk",BBC Red Button 3 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_03.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton4.uk",BBC Red Button 4 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_04.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton5.uk",BBC Red Button 5 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_05.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton6.uk",BBC Red Button 6 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_06.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton7.uk",BBC Red Button 7 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_07.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton8.uk",BBC Red Button 8 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_08.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton9.uk",BBC Red Button 9 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_09.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton10.uk",BBC Red Button 10 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_10.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton11.uk",BBC Red Button 11 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_11.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton12.uk",BBC Red Button 12 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_12.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton13.uk",BBC Red Button 13 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_13.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton14.uk",BBC Red Button 14 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_14.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton15.uk",BBC Red Button 15 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_15.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton16.uk",BBC Red Button 16 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_16.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton17.uk",BBC Red Button 17 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_17.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton18.uk",BBC Red Button 18 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_18.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton19.uk",BBC Red Button 19 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_19.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton20.uk",BBC Red Button 20 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_20.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton21.uk",BBC Red Button 21 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_21.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton22.uk",BBC Red Button 22 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_22.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton23.uk",BBC Red Button 23 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_23.m3u8 -#EXTINF:-1 tvg-id="BBCRedButton24.uk",BBC Red Button 24 (720p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_24.m3u8 -#EXTINF:-1 tvg-id="BBCScotland.uk",BBC Scotland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCScotlandHD.uk",BBC Scotland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/content/x=3/v=pv14/b=5070016/t=3840/i=urn:bbc:pips:service:bbc_scotland_hd/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoEngland.uk",BBC Two England (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/mobile_wifi_main_sd_abr_v2.m3u8 -#EXTINF:-1 tvg-id="BBCTwoHD.uk",BBC Two HD (720p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoNorthenIreland.uk",BBC Two Northen Ireland (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCTwoNorthernIrelandHD.uk",BBC Two Northern Ireland HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="BBCTwoWales.uk",BBC Two Wales (540p) [Geo-blocked] -https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_wales_digital/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="BBCUHDTrial1.uk",BBC UHD Trial 1 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_01.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial2.uk",BBC UHD Trial 2 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_02.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial3.uk",BBC UHD Trial 3 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_03.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial4.uk",BBC UHD Trial 4 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_04.mpd -#EXTINF:-1 tvg-id="BBCUHDTrial5.uk",BBC UHD Trial 5 (2160p) [Geo-blocked] -https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_05.mpd -#EXTINF:-1 tvg-id="BBCWorldNews.uk",BBC World News (480p) -http://ott-cdn.ucom.am/s24/index.m3u8 -#EXTINF:-1 tvg-id="BBCWorldNews.uk",BBC World News (576p) -http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8 -#EXTINF:-1 tvg-id="BoxHits.uk",Box Hits (576p) -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/boxhits/ -#EXTINF:-1 tvg-id="BoxHits.uk",Box Hits (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/boxhits/ -#EXTINF:-1 tvg-id="",Brit Asia Live (US Eastern) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0500/c.m3u8 -#EXTINF:-1 tvg-id="",Brit Asia Live (US Pacific) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0800/c.m3u8 -#EXTINF:-1 tvg-id="BritishMuslimTV.uk",British Muslim TV (576p) [Not 24/7] -https://api.visionip.tv/live/ASHTTP/visiontvuk-international-britishmuslimtv-hsslive-25f-16x9-MB/playlist.m3u8 -#EXTINF:-1 tvg-id="BTSport1.uk",BT Sport 1 (576p) [Not 24/7] -https://sport.livedoomovie.com/02_BTSPORTHD_1_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="BTSport2.uk",BT Sport 2 (576p) [Not 24/7] -https://sport.livedoomovie.com/02_BTSPORTHD_2_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="CBBC.uk",CBBC (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="CBBCHD.uk",CBBC HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="CBeebies.uk",CBeebies (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="CBeebiesHD.uk",CBeebies HD (720p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/t=3840/v=pv14/b=5070016/main.m3u8 -#EXTINF:-1 tvg-id="ChannelS.uk",Channel S (576p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/chsukoff.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelS.uk",Channel S (720p) [Not 24/7] -https://a.jsrdn.com/r-373576a3/publish/22679_24MrQma9TX/index.m3u8 -#EXTINF:-1 tvg-id="",Channel S (US Eastern) (720p) -https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0500/c.m3u8 -#EXTINF:-1 tvg-id="",Channel S (US Pacific) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0800/c.m3u8 -#EXTINF:-1 tvg-id="ChelseaTV.uk",Chelsea TV (576p) -http://c0.cdn.trinity-tv.net/stream/hujuv8xpr4gdugis2szd4rqrvpzip8iuwn2jwpt68wmvpmdz79qime8idwrxga95rnghp64hfimevyvrp6n7p3c52yg3rfsuhxe9u9az35ti8te625sxerfwaxr2cbefyau4tmfa4nwqvca6ckmtwv2=.m3u8 -#EXTINF:-1 tvg-id="CraftStoreTV.uk",Craft Store TV (720p) -https://live-hochanda.simplestreamcdn.com/hochanda/live.m3u8 -#EXTINF:-1 tvg-id="Cruise1stTV.uk",Cruise1st TV (396p) [Geo-blocked] -https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/cruise_tv/hls_video/index.m3u8 -#EXTINF:-1 tvg-id="DeenTV.uk",Deen TV (576p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deentv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] -https://csm-e-stv.tls1.yospace.com/csm/live/195300285.m3u8 -#EXTINF:-1 tvg-id="EDGEsports.uk",EDGEsport (1080p) [Offline] -https://imgedge.akamaized.net/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EmanChannel.uk",Eman Channel (576p) -https://ap02.iqplay.tv:8082/iqb8002/3m9n/playlist.m3u8 -#EXTINF:-1 tvg-id="EnglishClubTV.uk",English Club TV (480p) [Timeout] -http://ott-cdn.ucom.am/s37/index.m3u8 -#EXTINF:-1 tvg-id="FadakTV.uk",Fadak TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/ddrricky/live -#EXTINF:-1 tvg-id="FadakTV.uk",Fadak TV (1080p) [Not 24/7] -https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBgM-sKkB4ySrdiCsk0ikUA/live -#EXTINF:-1 tvg-id="FreeSports.uk",FreeSports (1080p) [Not 24/7] -https://csm-e-stv.tls1.yospace.com/csm/live/203444271.m3u8 -#EXTINF:-1 tvg-id="GarshomTV.uk",Garshom TV (360p) [Not 24/7] -http://og2qd3aal7an-hls-live.5centscdn.com/garshomtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="GBNews.uk",GB News (1080p) -https://live-gbnews.simplestreamcdn.com/gbnews/gbnews/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="GemsTV.uk",Gems TV (360p) -http://57d6b85685bb8.streamlock.net:1935/abrgemporiaukgfx/livestream_360p/index.m3u8 -#EXTINF:-1 tvg-id="GodTVUK.uk",God TV UK (720p) -https://zypelive-lh.akamaihd.net/i/default_1@745545/master.m3u8 -#EXTINF:-1 tvg-id="GodTV.uk",God TV US (720p) -https://zypelive-lh.akamaihd.net/i/default_1@710958/master.m3u8 -#EXTINF:-1 tvg-id="HalaLondon.uk",Hala London (1080p) -https://halaldn.cdn.mangomolo.com/halavd/smil:halavd.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HealthMedia.uk",Health Media (720p) [Not 24/7] -https://j78dpkrjlq5r-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseCountryTV.uk",Horse & Country TV (1080p) -https://hnc-free-viewlift.amagi.tv/HNC_AUSTRALIA.m3u8 -#EXTINF:-1 tvg-id="IdealWorldTV.uk",Ideal World TV (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/IdealworldTvShopping/live -#EXTINF:-1 tvg-id="IonTV.uk",iON TV (576p) -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/iontvuk.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraBangla.uk",Iqra Bangla (576p) -https://ap02.iqplay.tv:8082/iqb8002/iq53la/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraTV.uk",Iqra TV (576p) -https://ap02.iqplay.tv:8082/iqb8002/iq6a7k/playlist.m3u8 -#EXTINF:-1 tvg-id="IqraaTV.uk",Iqraa TV (576p) [Geo-blocked] -http://wowzaprod3-lh.akamaihd.net/i/83372732_1@141298/master.m3u8 -#EXTINF:-1 tvg-id="IranInternational.ir",Iran International (1080p) -https://dev-live.livetvstream.co.uk/LS-63503-4/index.m3u8 -#EXTINF:-1 tvg-id="IranInternational.uk",Iran International (1080p) -https://live.playstop.me/1816184091/index.m3u8 -#EXTINF:-1 tvg-id="IranInternational.ir",Iran International (1080p) -https://live.playstop.me/LS-63503-4/index.m3u8 -#EXTINF:-1 tvg-id="IslamChannel.uk",Islam Channel (576p) [Not 24/7] -https://live.islamchannel.tv/islamtv/islamtv_english/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="ITV2.uk",ITV2 (432p) [Geo-blocked] -http://31.220.41.88:8081/live/itv2.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV2.uk",ITV2 (576p) [Not 24/7] -http://93.190.139.35:8278/streams/d/itv2_antik/playlist.m3u8 -#EXTINF:-1 tvg-id="ITV3.uk",ITV3 (432p) [Geo-blocked] -http://31.220.41.88:8081/live/itv3.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV4.uk",ITV4 (302p) [Geo-blocked] -http://31.220.41.88:8081/live/itv4.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="ITV.uk",ITV (302p) [Geo-blocked] -http://31.220.41.88:8081/live/itv1.stream/chunks.m3u8 -#EXTINF:-1 tvg-id="JewelleryMaker.uk",Jewelery Maker (1080p) -https://lo2-1.gemporia.com/abrjewellerymaker/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JimJamRossiya.uk" status="online",JimJam Россия (576p) [Not 24/7] -http://188.40.68.167/russia/jimjam/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.uk",Kalemeh TV (576p) [Not 24/7] -http://51.210.199.37/hls/stream.m3u8 -#EXTINF:-1 tvg-id="KanshiTV.uk",Kanshi TV (720p) [Not 24/7] -https://live.kanshitv.co.uk/mobile/kanshitvkey.m3u8 -#EXTINF:-1 tvg-id="Kerrang.uk",Kerrang (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kerrang/ -#EXTINF:-1 tvg-id="Kerrang.uk",Kerrang (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/kerrang/ -#EXTINF:-1 tvg-id="Kiss.uk",Kiss (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,kiss-inapp.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kiss/ -#EXTINF:-1 tvg-id="kMTV.uk",KMTV (576p) -https://dk7psf0dh3v1r.cloudfront.net/KMTV/playlist.m3u8 -#EXTINF:-1 tvg-id="KoolLondonRadio.uk",Kool London Radio (720p) [Timeout] -http://w10.streamgb.com:1935/kool/kool/playlist.m3u8 -#EXTINF:-1 tvg-id="LondonLive.uk",London Live (720p) [Offline] -http://bcoveliveios-i.akamaihd.net/hls/live/217434/3083279840001/master.m3u8 -#EXTINF:-1 tvg-id="Loveworld.uk",Loveworld TV (1080p) [Not 24/7] -https://cdn.lwuk.live/live/smil:lwukweb.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Magic.uk",Magic (576p) [Offline] -http://csm-e.tm.yospace.com/csm/extlive/boxplus01,magic-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/magic/ -#EXTINF:-1 tvg-id="Magnavision.uk",Magna Vision (1080p) [Not 24/7] -https://j78dpa3edq5r-hls-live.5centscdn.com/abr/0864028584026e6ad9cdf922473177a4/playlist.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto +1 (720p) [Offline] -http://159.69.58.154/manoto_plus1/manoto_plus.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto +2 [Offline] -http://159.69.58.154/manoto_plus2/manoto2.m3u8 -#EXTINF:-1 tvg-id="ManotoTV.uk",Manoto TV (1080p) -https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 -#EXTINF:-1 tvg-id="MTA1.uk",MTA 1 (720p) [Offline] -https://cflive-emea.live-delivery.ooyala.com/out/u/3vkkbgnvsm2r5/101593/1lanVtaDE6sCK6v0vDomDayqoKeSal6G/cn/8fb839e3a82045bd99a92ecd9df257e5.m3u8 -#EXTINF:-1 tvg-id="MTA1English.uk",MTA 1 English (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaeng_delivery@345736/master.m3u8 -#EXTINF:-1 tvg-id="MTA1Original.uk",MTA 1 Original (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaorigin_delivery@353498/master.m3u8 -#EXTINF:-1 tvg-id="MTA1Urdu.uk",MTA 1 Urdu (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaurdu_delivery@350117/master.m3u8 -#EXTINF:-1 tvg-id="MTA2.uk",MTA 2 (720p) -https://ooyalahd2-f.akamaihd.net/i/mtach7audio_delivery@65519/master.m3u8 -#EXTINF:-1 tvg-id="MTA2Urdu.uk",MTA 2 Urdu (720p) -https://ooyalahd2-f.akamaihd.net/i/mtageraudio_delivery@308889/master.m3u8 -#EXTINF:-1 tvg-id="MTA3.uk",MTA 3 (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtach7_delivery@348438/master.m3u8 -#EXTINF:-1 tvg-id="MTAAfrica.uk",MTA Africa (1080p) -https://ooyalahd2-f.akamaihd.net/i/mtaengaudio_delivery@138280/master.m3u8 -#EXTINF:-1 tvg-id="",n TV (US Eastern) (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/22680_3BR3zocwi9/-0500/c.m3u8 -#EXTINF:-1 tvg-id="NoorTV.uk",Noor TV (480p) [Not 24/7] -https://ls1.serverdump.com/stream3.m3u8 -#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk",Qello Concerts by Stingray (1080p) [Not 24/7] -https://csm-e-stv.tls1.yospace.com/csm/live/211935407.m3u8 -#EXTINF:-1 tvg-id="RugbyMensSevens.uk",Rugby Men's Sevens (288p) -https://esmhls1-i.akamaihd.net/hls/live/510580/hls1/playlist.m3u8 -#EXTINF:-1 tvg-id="RugbyWomensSevens.uk",Rugby Women's Sevens (288p) -https://esmhls2-i.akamaihd.net/hls/live/510581/hls2/playlist.m3u8 -#EXTINF:-1 tvg-id="RugbyWorldTV.uk",Rugby World TV (720p) -https://esmhls3-i.akamaihd.net/hls/live/510582/hls3/playlist.m3u8 -#EXTINF:-1 tvg-id="S4C.uk",S4C (540p) [Geo-blocked] -https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:s4cpbs/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 -#EXTINF:-1 tvg-id="SangatTelevision.uk",Sangat Television (368p) [Not 24/7] -https://api.new.livestream.com/accounts/6986636/events/5362122/live.m3u8 -#EXTINF:-1 tvg-id="SheffieldLiveTV.uk",Sheffield Live TV (360p) [Not 24/7] -http://tv.sheffieldlive.org/hls/main.m3u8 -#EXTINF:-1 tvg-id="SkiTV.uk",Ski TV (1080p) [Not 24/7] -https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-Zee/193.m3u8 -#EXTINF:-1 tvg-id="SkyNews.uk",Sky News (576p) [Geo-blocked] -http://skydvn-sn-mobile-prod.skydvn.com/skynews/1404/latest.m3u8 -#EXTINF:-1 tvg-id="SkyNews.uk",Sky News (720p) [Geo-blocked] -http://skynews-sn-cdhls.ak-cdn.skydvn.com/cdhlsskynews/1404/latest.m3u8 -#EXTINF:-1 tvg-id="SkyNewsArabia.uk",Sky News Arabia (720p) [Not 24/7] -https://stream.skynewsarabia.com/hls/sna.m3u8 -#EXTINF:-1 tvg-id="SkyNewsArabia.uk",Sky News Arabia (Portrait) (1280p) [Not 24/7] -https://stream.skynewsarabia.com/vertical/vertical.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra1.uk",Sky News Extra 1 (540p) -https://skynewsau-live.akamaized.net/hls/live/2002689/skynewsau-extra1/master.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra2.uk",Sky News Extra 2 (540p) [Not 24/7] -https://skynewsau-live.akamaized.net/hls/live/2002690/skynewsau-extra2/master.m3u8 -#EXTINF:-1 tvg-id="SkyNewsExtra3.uk",Sky News Extra 3 (1080p) -https://skynewsau-live.akamaized.net/hls/live/2002691/skynewsau-extra3/master.m3u8 -#EXTINF:-1 tvg-id="Spike.uk",Spike (480p) [Offline] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 -#EXTINF:-1 tvg-id="SportsTonight.uk",Sports Tonight (576p) [Not 24/7] -http://sports.ashttp9.visionip.tv/live/visiontvuk-sports-sportstonightlive-hsslive-25f-4x3-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="SportyStuffTV.uk",Sporty Stuff TV (720p) -https://ayozat-live.secure2.footprint.net/egress/bhandler/ayozat/sportystufftv/playlist.m3u8 -#EXTINF:-1 tvg-id="SpotlightTV.uk",Spotlight TV (576p) -https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-spotlighttv-hsslive-25f-SD/chunklist.m3u8 -#EXTINF:-1 tvg-id="STV.uk",STV (1080p) [Timeout] -https://csm-e-stv.tls1.yospace.com/csm/live/139900483.m3u8 -#EXTINF:-1 tvg-id="STVPlus1.uk",STV+1 (1080p) [Timeout] -https://csm-e-stv.tls1.yospace.com/csm/live/181023311.m3u8 -#EXTINF:-1 tvg-id="TheBoxUK.uk",The Box UK (576p) [Geo-blocked] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/thebox/ -#EXTINF:-1 tvg-id="TheBoxUK.uk",The Box UK (576p) [Not 24/7] -https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/thebox/ -#EXTINF:-1 tvg-id="TJC.uk",TJC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(TJCOTT)/index.m3u8 -#EXTINF:-1 tvg-id="V2BEAT.uk",V2BEAT (720p) [Not 24/7] -https://abr.de1se01.v2beat.live/playlist.m3u8 -#EXTINF:-1 tvg-id="V2BEAT.uk",V2BEAT (720p) [Not 24/7] -https://de1se01.v2beat.live/playlist.m3u8 -#EXTINF:-1 tvg-id="WilliamHillBTV1.uk",William Hill BTV 1 (720p) -https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_tklzcakd_1_1/chunklist.m3u8 -#EXTINF:-1 tvg-id="WilliamHillBTV2.uk",William Hill BTV 2 (720p) -https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_3838s0ja_1_1/chunklist.m3u8 diff --git a/streams/uk_samsung.m3u b/streams/uk_samsung.m3u deleted file mode 100644 index fdf7c774e..000000000 --- a/streams/uk_samsung.m3u +++ /dev/null @@ -1,125 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BeanoTV.uk",Beano TV (720p) [Offline] -https://beanostudios-beanotv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ClubbingTV.uk",Clubbing TV (720p) -https://clubbingtv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNInternationalUK.us",CNN International UK (720p) [Not 24/7] -https://cnn-cnninternational-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyChannel.uk",Comedy Channel (1080p) -https://uksono1-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00434-tricoast-darkmatter-spanish-samsunguk/playlist.m3u8 -#EXTINF:-1 tvg-id="DiscoverFilm.uk",Discover.Film (720p) [Offline] -https://discoverfilm-discoverfilm-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] -https://dust-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) -https://edgesport-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://rakuten-euronews-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsEnglishviaAlchimie.fr",Euronews English via Alchimie (720p) [Offline] -https://alchimie-euronews-4-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.uk",FailArmy (720p) [Offline] -https://failarmy-international-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionTVEngland.fr",Fashion TV (England) (1080p) [Not 24/7] -https://fashiontv-fashiontv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (720p) [Offline] -https://spi-filmstream-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Filmzie.uk",Filmzie (720p) [Offline] -https://filmzie-filmzie-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FTFForthefans.uk",FTF For the fans (720p) -https://elevensports-uk.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) -https://fueltv-fueltv-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GoUSA.uk",Go USA (720p) [Offline] -https://brandusa-gousa-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) -https://gustotv-samsung-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HorseandCountry.uk",Horse and Country (720p) -https://hncfree-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Humanity.fr",Humanity (720p) [Offline] -https://alchimie-humanity-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWild.nl",InWild (720p) -https://inwild-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGamerTV.uk",Kid Gamer TV (1080p) [Offline] -https://studio71-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LuxeTV.fr",Luxe TV (720p) [Offline] -https://alchimie-luxe-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVUK.us",MavTV UK (720p) [Offline] -https://mavtv-mavtvglobal-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MMATV.fr",MMA TV (720p) [Offline] -https://alchimie-mmatv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoviesCentral.fr",Movies Central (720p) [Offline] -https://alchimie-movies-central-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphereuk-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSAmerica.us",PBS America (720p) -https://pbs-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlanetKnowledge.uk",Planet Knowledge (720p) [Offline] -https://vod365-planet-knowledge-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://playerstv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Pocketwatch.uk",Pocket watch (720p) [Offline] -https://pocketwatch-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk",Qello Concerts by Stingray (1080p) -https://stingray-qelloconcerts-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVClassical.fr",Qwest TV Classical (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestclassic-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr",Qwest TV Jazz & Beyond (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestjazz-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="QwestTVMix.fr",Qwest TV Mix (720p) [Geo-blocked] -https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestmix-uk-samsungtv/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVActionMoviesUK.es",Rakuten TV Action Movies UK (720p) [Offline] -https://rakuten-actionmovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVComedyMoviesUK.es",Rakuten TV Comedy Movies UK (720p) [Offline] -https://rakuten-comedymovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVDramaUK.es",Rakuten TV Drama UK (720p) [Offline] -https://rakuten-tvshows-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesUK.es",Rakuten TV Family Movies UK (720p) [Offline] -https://rakuten-family-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RakutenTVSpotlightUK.es",Rakuten TV Spotlight UK (720p) [Offline] -https://rakuten-spotlight-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.uk",Real Stories (720p) -https://realstories-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p) -https://sofytv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SparkTv.uk",Spark Tv (720p) -https://sparktv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsChannelNetwork.us",Sports Channel Network (720p) [Offline] -https://vod365-sports-channel-network-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.uk",Stingray Karaoke (1080p) -https://stingray-karaoke-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Supertoons.us",Supertoons (720p) [Offline] -https://kedoo-supertoonstv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.uk",Tastemade (720p) -https://tastemade-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.uk",Teletubbies (720p) [Offline] -https://dhx-teletubbies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (720p) -https://tennischannel-intl-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Tennis Channel (UK) (720p) -https://tennischannel-int-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollectiveEngland.us",The Pet Collective UK (720p) [Offline] -https://the-pet-collective-international-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TimeLine.uk",Time Line (720p) -https://timeline-samsung-uk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Toongoggles.uk",Toongoggles (720p) [Offline] -https://toongoggles-toongoggles-3-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelXP.in",Travel XP (720p) [Offline] -https://travelxp-travelxp-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Truly.uk",Truly (720p) [Offline] -https://barcroft-truly-1-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Unearth.fr",Unearth (720p) [Offline] -https://alchimie-unearth-2-gb.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) [Offline] -https://venntv-samsunguk.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk",Wonder (720p) -https://wonder-samsung-uk.amagi.tv/playlist.m3u8 diff --git a/streams/uk_sportstribal.m3u b/streams/uk_sportstribal.m3u deleted file mode 100644 index f145fea7d..000000000 --- a/streams/uk_sportstribal.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ChannelFight.us",Channel Fight (720p) [Offline] -https://live.serverside.ai/hls/7dc5907c-6d6e-45ef-a24f-e28353aa8e98/master.m3u8?api-key=4a09ede0-52da-4cd9-aa82-3b36d8dfa59b&channel_name=Channel+Fight&channel_partner=Channel+Fight&consent=&content_genre=MMA&content_id=a2e646e0_20210305163052_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:52.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=a2e646e0_20210305163052_D0CF72b -#EXTINF:-1 tvg-id="EDGESport.us",EDGESport (1080p) -https://edgesports-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ForTheFans.us",For The Fans (720p) [Offline] -https://live.serverside.ai/hls/0f7f0c30-e13d-41b6-9e15-9a9de7ef979f/master.m3u8?api-key=4c19fe78-8ce2-4f88-9a39-f202dc24236f&channel_name=For+The+Fans&channel_partner=For+The+Fans&consent=&content_genre=Sport&content_id=cf1e9700_20210305160000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:00:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=cf1e9700_20210305160000_D0CF72b -#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (1080p) [Not 24/7] -https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-SportsTribal/121.m3u8 -#EXTINF:-1 tvg-id="IGNTV.us",IGN TV (720p) -https://ign-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LaxSportsNetwork.us",Lax Sports Network (720p) [Offline] -https://live.serverside.ai/hls/4a34ba0f-2ffd-47cf-9f8d-5e91ede78e5a/master.m3u8?api-key=50f33b8a-4a95-4f68-b83a-2f2b00c4251d&channel_name=Lacrosse+Channel&channel_partner=Lacrosse+Channel&consent=&content_genre=Lacrosse&content_id=11e1c5cf_20210305163000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=11e1c5cf_20210305163000_D0CF72b -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac12 Insider (720p) -https://pac12-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PokerNightInAmerica.us",Poker Night In America (720p) [Offline] -https://rushstreet-sportstribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SKITV.us",SKI TV (1080p) [Not 24/7] -https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-SportsTribal/193.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://sportsgrid-tribal.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] -https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-SportsTribal/120.m3u8 diff --git a/streams/unsorted.m3u b/streams/unsorted.m3u deleted file mode 100644 index a294a7447..000000000 --- a/streams/unsorted.m3u +++ /dev/null @@ -1,415 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",1A Network (720p) -https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8 -#EXTINF:-1 tvg-id="",Adria Music RS [Timeout] -http://91.212.150.248/AdriaMusicTV/index.m3u8 -#EXTINF:-1 tvg-id="",AdriaNet -http://79.106.48.2:4578/live/adriamed/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ahi TV Kirsehir (576p) -http://yayin3.canlitv.com:1935/canlitv/ahitv/playlist.m3u8 -#EXTINF:-1 tvg-id="AkilliTV.tr",Akilli TV [Timeout] -https://stream41.radyotelekom.com.tr/stream/m3u8/a5a7e883a71429fe9e605bb5d25d6185/chunklist_w895929071.m3u8 -#EXTINF:-1 tvg-id="",Al-Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 -#EXTINF:-1 tvg-id="",Al-Hurra Iraq (720p) -https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 -#EXTINF:-1 tvg-id="",Al-Iraqiya [Offline] -https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/imn/general2/chunks.m3u8 -#EXTINF:-1 tvg-id="",Al-Rasheed (408p) -https://media1.livaat.com/AL-RASHEED-HD/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Al-Sharqiya (1080p) -https://5d94523502c2d.streamlock.net/home/mystream/chunklist_w1408191520.m3u8 -#EXTINF:-1 tvg-id="",Al-Sharqiya News (1080p) -https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/chunklist_w449457930.m3u8 -#EXTINF:-1 tvg-id="",ALB Music (720p) [Not 24/7] -http://albmusic.dyndns.tv:1935/albuk/albmus.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",AlbDreams TV (720p) -http://live.albavision.net:1123/live/albdreams.m3u8 -#EXTINF:-1 tvg-id="",AlbKanale Music TV -https://albportal.net/albkanalemusic.m3u8 -#EXTINF:-1 tvg-id="",ATN Europe [Offline] -https://d10rltuy0iweup.cloudfront.net/ATNINT/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ava Entertainment (720p) -https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/c9aa559e_1_3310000/chunklist.m3u8 -#EXTINF:-1 tvg-id="",AXS TV NOW -https://dikcfc9915kp8.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bajo Cero TV [Offline] -https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Banovina TV -https://5b57bb229a2e6.streamlock.net/live/televizija/playlist.m3u8 -#EXTINF:-1 tvg-id="Belarus24.by",Belarus 24 (720p) -http://serv30.vintera.tv:8081/belarus24/belarus24/playlist.m3u8 -#EXTINF:-1 tvg-id="",Beteve -https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/protocol/https/uiConfId/42816492/a.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 -#EXTINF:-1 tvg-id="",Bitlis TV (720p) [Not 24/7] -https://59cba4d34b678.streamlock.net/canlitv/bitlistv/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p) -http://live-edge01.telecentro.net.ar:1935/live/26hd-720/playlist.m3u8 -#EXTINF:-1 tvg-id="",Canal Acequia (432p) [Not 24/7] -https://api.new.livestream.com/accounts/6450028/events/5813077/live.m3u8 -#EXTINF:-1 tvg-id="",Canal Coín -http://stream.fion.es:1936/Canal_Coin/canalcoin.stream/master.m3u8 -#EXTINF:-1 tvg-id="",Canal Orbe 21 -https://cdn2.zencast.tv:30443/orbe/orbe21smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalParlamento.es",Canal Parlamento (360p) -http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 -#EXTINF:-1 tvg-id="",Canalcosta TV -https://5d8d85cf2c308.streamlock.net:1936/CanalcostaTV/WXP6YT/playlist.m3u8 -#EXTINF:-1 tvg-id="",Carolina TV -https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/carolinatv/livestream2/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBTV Now (1080p) -https://oj7lng29dg82-hls-live.5centscdn.com/lives/f7b44cfafd5c52223d5498196c8a2e7b.sdp/index.m3u8 -#EXTINF:-1 tvg-id="",Cekmeköy TV -https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv_1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",CGNTV -http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Chive TV -http://a.jsrdn.com/broadcast/4df1bf71c1/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",Contact Vision TV (540p) -http://contactvision.flashmediacast.com:1935/contactvision/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",CostadelSol TV -https://limited11.todostreaming.es/live/benalmadena-livestream.m3u8 -#EXTINF:-1 tvg-id="",Cowboy Theater (720p) -https://simultv.s.llnwi.net/o054/CowboyTheater/interlink.m3u8 -#EXTINF:-1 tvg-id="",Cut Up N Cook (720p) -https://simultv.s.llnwi.net/n4s4/CutUpNCook/interlink.m3u8 -#EXTINF:-1 tvg-id="",Cycle World [Offline] -http://a.jsrdn.com/broadcast/3e5befe5dd/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",Daawah TV -http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 -#EXTINF:-1 tvg-id="",DeepHouse District -https://eu-nl-012.worldcast.tv/dancetelevisiontwo/dancetelevisiontwo.m3u8 -#EXTINF:-1 tvg-id="",Dijlah Tarab -https://ghaasiflu.online/tarab/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Dijlah TV -https://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Dimensions -https://simultv.s.llnwi.net/o054/Dimensions/interlink.m3u8 -#EXTINF:-1 tvg-id="",Drita TV -https://nesertv.live/DRITATV-5879/playlist.m3u8 -#EXTINF:-1 tvg-id="DRTV.nl",DRT TV (720p) -https://broadcasttr.com:446/drt/bant1/chunklist_w172830844.m3u8?hash=ff9087a17e9ff7a7a214048d240d21c0 -#EXTINF:-1 tvg-id="",EBS Kids [Offline] -rtsp://ebsonair.ebs.co.kr/ebsutablet500k/tablet500k -#EXTINF:-1 tvg-id="",Elbekanal Schönebeck -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:elbe_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",ems TV Lingen (280p) -https://5889e7d0d6e28.streamlock.net/ev1tv-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",ESTV -https://stream.ads.ottera.tv/playlist.m3u8?network_id=461 -#EXTINF:-1 tvg-id="",Fibracat TV (1080p) -https://cdn-02.fibracat.cat/fibracattv/index.m3u8 -#EXTINF:-1 tvg-id="FightNetwork.ca",Fight Network (1080p) -https://d12a2vxqkkh1bo.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Filstalwelle Göppingen (576p) -http://62.113.210.2/filstalwelle-live/_definst_/mp4:livestream/chunklist_w660034089.m3u8 -#EXTINF:-1 tvg-id="",Folk TV -http://584b0aa350b92.streamlock.net:1935/folk-tv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Friesischer Rundfunk Friedeburg [Offline] -https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/_definst_/mp4:friesischerrundfunk/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fun Radio (720p) -https://livevideo.infomaniak.com/streaming/livecast/funradiovisionhd/playlist.m3u8 -#EXTINF:-1 tvg-id="",Funnybone (720p) -https://simultv.s.llnwi.net/o054/FunnyBone/interlink.m3u8 -#EXTINF:-1 tvg-id="",Glas Drine -http://glasdrine.cutuk.net:8081/433ssdsw/GlasDrineSD/playlist.m3u8 -#EXTINF:-1 tvg-id="",Haldensleben TV (720p) -https://578d8e1867e87.streamlock.net/medienasa-vod/_definst_/mp4:hdl_sendung_720p.mp4/playlist.m3u8 -#EXTINF:-1 tvg-id="",HD 365 -https://netstreaming.eu:8080/hls/hd365.m3u8 -#EXTINF:-1 tvg-id="",Honor TV -https://a.jsrdn.com/broadcast/d5b48/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",Hrvatski Radio Karlovac [Offline] -https://5b57bb229a2e6.streamlock.net/live/_definst_/karlovac/playlist.m3u8 -#EXTINF:-1 tvg-id="",IDG (720p) -http://a.jsrdn.com/broadcast/529a360c04/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",Impact Wrestling (1080p) -https://d2tuwvs0ja335j.cloudfront.net/hls/1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",India TV (480p) -https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/indiatv-origin/live2/chunks.m3u8 -#EXTINF:-1 tvg-id="",Iranintl.Radio -http://51.210.199.46/hls/stream.m3u8 -#EXTINF:-1 tvg-id="",Jesus Shelanu (720p) -https://1247634592.rsc.cdn77.org/1247634592/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Kanal Alanya -https://broadcasttr.com:446/kanala/bant1/chunklist_w343770598.m3u8?hash=2ed1974639ec674a33ed440298136dcd -#EXTINF:-1 tvg-id="",Kartoon Circus -https://simultv.s.llnwi.net/o062/KartoonCircus/interlink.m3u8 -#EXTINF:-1 tvg-id="",Kid Central (720p) -https://simultv.s.llnwi.net/o058/KidCentral/interlink.m3u8 -#EXTINF:-1 tvg-id="",Klan Kosova -http://93.157.62.180/KlanKosova/index.m3u8 -#EXTINF:-1 tvg-id="",Klan Plus -http://93.157.62.180/KlanPlus/index.m3u8 -#EXTINF:-1 tvg-id="",Korça + (1080p) [Not 24/7] -http://32.shqiptv.org/korca/albplus/index.m3u8 -#EXTINF:-1 tvg-id="",KulturMD Magdeburg -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:kulturmd_high/playlist.m3u8 -#EXTINF:-1 tvg-id="KurirTV.rs",Kurir TV (720p) -http://51.15.154.138/providus/live2805_hq/index.m3u8 -#EXTINF:-1 tvg-id="",KVF Faroe Island (360p) -https://w2.kringvarp.fo/uttanlands/_definst_/smil:uttanlands.smil/chunklist_w587901821_b772000_slfao.m3u8 -#EXTINF:-1 tvg-id="",La Muscle TV (360p) -https://streamcdn.lamuscle.com/lamtv-origin/smil:monsterworkout-tricepspt1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ländle Tv (1080p) -https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8 -#EXTINF:-1 tvg-id="",Latest TV [Not 24/7] -https://5a0e89631aa14.streamlock.net/LatestTV/LatestTV/playlist.m3u8 -#EXTINF:-1 tvg-id="",Latvijas Radio 1 -http://5a44e5b800a41.streamlock.net:1935/liveVLR1/mp4:LR1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Lausitzwelle Fernsehen (1080p) -https://5856e1a25f71a.streamlock.net/easycast9-live/_definst_/mp4:livestreamhd10/playlist.m3u8 -#EXTINF:-1 tvg-id="",Lifestyle -https://simultv.s.llnwi.net/o058/Lifestyle/interlink.m3u8 -#EXTINF:-1 tvg-id="",MDF.1 Magdeburg -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:mdf1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",Messinia TV -http://176.9.123.140:1935/messinia/messinia/master.m3u8 -#EXTINF:-1 tvg-id="",Military Home Life (720p) -https://simultv.s.llnwi.net/n4s4/MilitaryHomeLife/interlink.m3u8 -#EXTINF:-1 tvg-id="",Minhaj TV (720p) -https://api.new.livestream.com/accounts/547271/events/4237509/live.m3u8 -#EXTINF:-1 tvg-id="",MMA Junkie -http://a.jsrdn.com/broadcast/80f6ba72c8/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",Mola TV (720p) -http://ventdelnord.tv:8080/mola/directe.m3u8 -#EXTINF:-1 tvg-id="",Monarch TV (360p) -https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/low/c.m3u8 -#EXTINF:-1 tvg-id="",Motorcyclist [Offline] -http://a.jsrdn.com/broadcast/256ad9e679/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="MotorvisionTV.de",Motorvision TV (720p) -https://stream.ads.ottera.tv/playlist.m3u8?network_id=535 -#EXTINF:-1 tvg-id="",Movie Kingdom TV -https://a.jsrdn.com/broadcast/e9b4093a41/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="",MTC -http://mellitv.tulix.tv:1935/mellitv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Mundo TV -https://59f1cbe63db89.streamlock.net:1443/mundotv/_definst_/mundotv/playlist.m3u8 -#EXTINF:-1 tvg-id="",MUSIC + -http://s02.diazol.hu:10192/stream.m3u8 -#EXTINF:-1 tvg-id="",Muxx.tv (1080p) -https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Mythos -https://simultv.s.llnwi.net/o058/Mythos/interlink.m3u8 -#EXTINF:-1 tvg-id="NasaTV.mk",Naša TV (1080p) [Not 24/7] -https://stream.nasatv.com.mk/hls/nasatv_live.m3u8 -#EXTINF:-1 tvg-id="NeaTV.gr",Nea TV (720p) -https://live.neatv.gr:8888/hls/neatv_high/index.m3u8 -#EXTINF:-1 tvg-id="",Neser TV -https://nesertv.live/ntv/livestream/tracks-v1a1/index.m3u8 -#EXTINF:-1 tvg-id="NetTV.ar",NET TV (720p) -https://unlimited1-us.dps.live/nettv/nettv.smil/nettv/livestream1/playlist.m3u8 -#EXTINF:-1 tvg-id="News18Lokmat.in",News18 Lokmat (504p) -https://news18lokmat-lh.akamaihd.net/i/n18lokmat_1@178974/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="",News 24 Albania -http://tv.balkanweb.com:8081/news24/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Nisville TV RS -http://92.60.237.32:1935/live/nisville/playlist.m3u8 -#EXTINF:-1 tvg-id="",OF-TV Offenbach (720p) -https://5864df9ceac85.streamlock.net/germanpictures-live/_definst_/mp4:streamschedule/playlist.m3u8 -#EXTINF:-1 tvg-id="",Offener Kanal Fulda -https://s.ok54.de/mok-fu/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Dessau -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-dessau_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Magdeburg (1080p) -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-magdeburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Mainz -https://s.ok54.de/oktvmainz/webstream/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Merseburg -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-merseburg_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Salzwedel -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-salzwedel_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",OK Wernigerode -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-wernigerode_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",ORA News -http://93.157.62.180/OraNews/index.m3u8 -#EXTINF:-1 tvg-id="",Pardesi TV (720p) -http://stream.pardesitv.online/pardesi/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Persian Bazar -http://stream.persiantv1.com/ptv1/playlist.m3u8 -#EXTINF:-1 tvg-id="",Popular Science TV [Offline] -http://a.jsrdn.com/broadcast/447912f76b/+0000/high/c.m3u8 -#EXTINF:-1 tvg-id="PrimeAsiaTV.ca",Prime Asia TV (720p) -http://primeasia.dyndns.tv:8080/Live_web_250/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="",Prime Time Drama -https://simultv.s.llnwi.net/o064/PrimeTimeDrama/interlink.m3u8 -#EXTINF:-1 tvg-id="",Providence Christian Network -https://simultv.s.llnwi.net/n4s4/ProvidenceNetwork/interlink.m3u8 -#EXTINF:-1 tvg-id="",Punjabi TV -http://cdn9.live247stream.com/punjabitvcanada/tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Punkteins -https://5852afe96c9bb.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8 -#EXTINF:-1 tvg-id="",PunktUm Hettstedt (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:punktum_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",Radio Javan TV (1080p) -https://stream.rjtv.tv/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Radio Weser TV Bremen -https://5857499ee635b.streamlock.net/radiowesertv-live/_definst_/mp4:livestreamTV/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ran1 Dessau-Roßlau (1080p) -http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ran1_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",RBW Bitterfeld-Wolfen (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:rbw_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ready Set Action (720p) -https://simultv.s.llnwi.net/o059/ReadySetAction/interlink.m3u8 -#EXTINF:-1 tvg-id="RedBullTV.at",Red Bull TV (360p) -https://rbmn-live.akamaized.net/hls/live/622817/BoRB-US/master_928.m3u8 -#EXTINF:-1 tvg-id="RedTV.rs",Red TV (720p) -https://live.rednet.rs/providus/redtv_multi_hq/index.m3u8 -#EXTINF:-1 tvg-id="RedeTV.br",RedeTV! Tocantins (720p) [Offline] -https://59f1cbe63db89.streamlock.net:1443/redetvro/_definst_/redetvro/playlist.m3u8 -#EXTINF:-1 tvg-id="",Report TV -https://deb10stream.duckdns.org/hls/stream.m3u8 -#EXTINF:-1 tvg-id="",Rete 7 (576p) -https://stream.ets-sistemi.it/live.rete7/rete7/playlist.m3u8 -#EXTINF:-1 tvg-id="",Retro Plus 2 HD -https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/_definst_/retroplussenal2/playlist.m3u8 -#EXTINF:-1 tvg-id="",Retro Plus HD -https://59f1cbe63db89.streamlock.net:1443/retroplustv/_definst_/retroplustv/playlist.m3u8 -#EXTINF:-1 tvg-id="",RFH Harz (1080p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:RFH_high/playlist.m3u8 -#EXTINF:-1 tvg-id="RheinMainTV.de",RheinMain TV (720p) [Not 24/7] -https://586fb512206e4.streamlock.net/rheinmaintv-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",RMC -https://rmc2hdslive-lh.akamaihd.net/i/DVMR_RMC@167269/master.m3u8 -#EXTINF:-1 tvg-id="",RTSH 1 -http://79.106.48.2:4578/live/rtsh_1mob_pp2/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH 2 -http://79.106.48.2:4578/live/rtsh_2mob_p2/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH 3 (270p) -http://79.106.48.2:4578/live/rtsh3mobp1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH 24 -http://79.106.48.2:4578/live/rtsh_24_mob/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Film (270p) -http://79.106.48.2:4578/live/rtsh_film_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Gjirokastra (360p) -http://79.106.48.2:4578/live/rtsh_gjirokastra_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Kids -http://79.106.48.2:4578/live/rtsh_femije_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Korça (360p) -http://79.106.48.2:4578/live/rtsh_korca_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Kukesi -http://79.106.48.2:4578/live/rtsh_kukesi_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Muzike -http://79.106.48.2:4578/live/rtsh_muzike_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Plus -http://79.106.48.2:4578/live/rtsh_plus_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Sat (360p) -http://79.106.48.2:4578/live/rtsh_sat_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Shkodra (360p) -http://79.106.48.2:4578/live/rtsh_shkodra_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTSH Shqip -http://79.106.48.2:4578/live/rtsh_shqip_mob_p1/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTV Arberia Musik -http://rtvarberia4.flashmediacast.com:1935/RtvArberia4/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTV Herceg-Bosne -https://prd-hometv-live-open.spectar.tv/ERO_1_083/576p/chunklist.m3u8 -#EXTINF:-1 tvg-id="",RTV Ilirida -http://uk4.streamingpulse.com:1935/rtvilirida/rtvilirida/playlist.m3u8 -#EXTINF:-1 tvg-id="",RTV MIR [Offline] -https://rtvmir.info/MIR/index.m3u8 -#EXTINF:-1 tvg-id="",RTV USK -http://wslb.dobratv.net:8877/uzivo/usk/index.m3u8 -#EXTINF:-1 tvg-id="",Rudana -https://live.rudana.com.ua/hls/stream_FHD.m3u8 -#EXTINF:-1 tvg-id="SandzakTV.rs",Sandzak TV (576p) -https://vod1.laki.eu/sandzak/video.m3u8 -#EXTINF:-1 tvg-id="",Sat7 Türk (720p) -https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/sat7turkpublish/sat7turk_720p/chunks_dvr.m3u8 -#EXTINF:-1 tvg-id="",Seenluft24 -https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/mp4:livestreamhd20/playlist.m3u8 -#EXTINF:-1 tvg-id="",SimSi TV [Timeout] -https://simultv.s.llnwi.net/o060/SimSiTV/interlink.m3u8 -#EXTINF:-1 tvg-id="",Slap Tech -https://simultv.s.llnwi.net/o061/SlapTech/interlink.m3u8 -#EXTINF:-1 tvg-id="",Sol Televisión -http://190.211.140.89:8081/SVTranscoder/SOLTVabr.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Sonus FM TV [Not 24/7] -https://60015180a7f57.streamlock.net:444/public/stream_source/chunklist_w1017805699.m3u8 -#EXTINF:-1 tvg-id="",Sophia TV (720p) -https://www.onairport.live/sophiatv-es-live/livestream_high/master.m3u8 -#EXTINF:-1 tvg-id="",Space Channel -https://stream.ads.ottera.tv/playlist.m3u8?network_id=565 -#EXTINF:-1 tvg-id="",Spydar -https://simultv.s.llnwi.net/o062/Spydar/interlink.m3u8 -#EXTINF:-1 tvg-id="",Start TV -https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8 -#EXTINF:-1 tvg-id="",Studio 47 -https://5852afe96c9bb.streamlock.net/studio47-live/_definst_/mp4:livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="",STV (720p) -http://89.201.163.244:8080/hls/hdmi.m3u8 -#EXTINF:-1 tvg-id="",Super TV Media -https://mirtv.club/live/mirtv/index.m3u8 -#EXTINF:-1 tvg-id="",Switch (720p) -https://simultv.s.llnwi.net/o062/Switch/interlink.m3u8 -#EXTINF:-1 tvg-id="",Sylt1 -https://5aec29c5dd23b.streamlock.net:8443/sylt1/_definst_/sylt1_high1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Syri TV (720p) -https://tv.syri.net/syrilive/webtv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Teleonuba -https://5d8d85cf2c308.streamlock.net:1936/Teleonuba/605oPXx3/playlist.m3u8 -#EXTINF:-1 tvg-id="",Televizija Radio Banovina [Offline] -https://5b57bb229a2e6.streamlock.net/live/smil:banovina.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",teltOwkanal -https://5856e1a25f71a.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd8/playlist.m3u8 -#EXTINF:-1 tvg-id="",Temple TV -https://streaming.temple.edu/tutvlive/_definst_/mp4:8BRYCQMB/chunklist_w1944862924.m3u8 -#EXTINF:-1 tvg-id="",Tempo TV -https://waw2.artiyerelmedya.net/tempotv/bant1/playlist.m3u8 -#EXTINF:-1 tvg-id="",The Archive (1080p) -https://ov.ottera.tv/live/master.m3u8?channel=mcom_ta_us -#EXTINF:-1 tvg-id="",The Grapevine -https://ov.ottera.tv/live/master.m3u8?channel=mcom_gv_us -#EXTINF:-1 tvg-id="",Tide TV (1080p) -https://5889e7d0d6e28.streamlock.net/tide-live/_definst_/smil:livestream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Top News -http://93.157.62.180/TopNews/index.m3u8 -#EXTINF:-1 tvg-id="",TopEstrada TV -http://live.topestrada.com/live/topestrada/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV2 Fyn (1080p) -https://cdnapisec.kaltura.com/p/1966291/sp/196629100/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/uiConfId/30288171/a.m3u8 -#EXTINF:-1 tvg-id="",TV Birigui (640p) -https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/_definst_/tvdigitalbirigui/chunklist_w763334596.m3u8 -#EXTINF:-1 tvg-id="",TV Brusque (720p) -https://5ad482a77183d.streamlock.net/rodrigotvbrusque.com.br/_definst_/5d880199c902eb4a1e8df00d/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Destak (360p) -https://59f2354c05961.streamlock.net:1443/pascoal/_definst_/pascoal/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Dielli (720p) -http://stream.tvdielli.com:8081/dielli/index.m3u8 -#EXTINF:-1 tvg-id="TVGazeta.br",TV Gazeta (720p) -http://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 -#EXTINF:-1 tvg-id="TVGuara.br",TV Guará (720p) [Not 24/7] -https://59f2354c05961.streamlock.net:1443/tvguara/_definst_/tvguara/chunklist.m3u8 -#EXTINF:-1 tvg-id="",TV Halle (720p) -https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:tvhalle_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Johaniter -https://nesertv.live/webstream/index.m3u8 -#EXTINF:-1 tvg-id="",TV Marajoara (720p) -https://video01.kshost.com.br:4443/tv31966/tv31966/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Max -https://59f1cbe63db89.streamlock.net:1443/tvmax/_definst_/tvmax/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Pai Eterno -https://59f1cbe63db89.streamlock.net:1443/teste01/_definst_/teste01/chunklist.m3u8 -#EXTINF:-1 tvg-id="TVPirot.rs",TV Pirot (240p) [Not 24/7] -https://5bc45691ca49f.streamlock.net/tvpirot/uzivo/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV S1 -https://sradio.ipradio.rs/sradio/radiostv/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Sharri -http://uk4.streamingpulse.com:1935/TVSHARRI/TVSHARRI/playlist.m3u8 -#EXTINF:-1 tvg-id="",TV Tema -http://134.209.238.38/hls/test.m3u8 -#EXTINF:-1 tvg-id="",TV União (720p) [Not 24/7] -https://596639ebdd89b.streamlock.net/tvuniao/tvuniao/playlist.m3u8 -#EXTINF:-1 tvg-id="TVEBahia.br",TVE RS (1080p) -http://streaming.procergs.com.br:1935/tve/stve/playlist.m3u8 -#EXTINF:-1 tvg-id="",TVnet -https://mn-nl.mncdn.com/tvnet/tvnet/chunklist.m3u8 -#EXTINF:-1 tvg-id="",TVW -https://wowzaprod13-i.akamaihd.net/hls/live/254985/29c28f19/persisTarget_9375922947_TVWAIR_247_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="",Urban Revolution -https://www.urbanrevolution.es:444/live/5e6d8470a3832/index.m3u8 -#EXTINF:-1 tvg-id="",WATAN-E-MAA -https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8 -#EXTINF:-1 tvg-id="",WTV Wettin -http://62.113.210.250:1935/medienasa-live/ok-wettin_high/playlist.m3u8 -#EXTINF:-1 tvg-id="",XZone (720p) -https://simultv.s.llnwi.net/o060/xzone/interlink.m3u8 diff --git a/streams/us.m3u b/streams/us.m3u deleted file mode 100644 index d05ab0f34..000000000 --- a/streams/us.m3u +++ /dev/null @@ -1,1939 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="3ABN.us",3ABN (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652042/secure/master.m3u8 -#EXTINF:-1 tvg-id="K17JIDT3.us",3ABN Dare to Dream (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652313/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNFrancais.us",3ABN Français (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652314/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNInternational.us",3ABN International (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652312/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNKids.us",3ABN Kids (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652318/secure/master.m3u8 -#EXTINF:-1 tvg-id="K17JIDT4.us",3ABN Latino (480p) -http://uni5rtmp.tulix.tv:1935/bettervida/bettervida/playlist.m3u8 -#EXTINF:-1 tvg-id="K18JLD2.us",3ABN Latino (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652315/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNPraiseHimMusicChannel.us",3ABN Praise Him Music Channel (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/554145/secure/playlist.m3u8 -#EXTINF:-1 tvg-id="K17JIDT2.us",3ABN Proclaim! (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652317/secure/master.m3u8 -#EXTINF:-1 tvg-id="3ABNRussia.us",3ABN Russia (720p) [Not 24/7] -https://moiptvhls-i.akamaihd.net/hls/live/652316/secure/master.m3u8 -#EXTINF:-1 tvg-id="",3 Studios Cleveland OH (WKYC) (1080p) -https://livevideo01.wkyc.com/hls/live/2015504/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",7News Boston MA (WHDH) (540p) -https://bcsecurelivehls-i.akamaihd.net/hls/live/598046/4744899807001_1/livestream/master.m3u8 -#EXTINF:-1 tvg-id="",12 News Beaumont TX (KBMT) (1080p) -https://livevideo01.12newsnow.com/hls/live/2017379/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",23 ABC Bakersfield CA (KERO) (720p) -https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8 -#EXTINF:-1 tvg-id="30ADarcizzleOffshore.us",30A Darcizzle Offshore (720p) -https://30a-tv.com/darcizzle.m3u8 -#EXTINF:-1 tvg-id="30AInvestmentPitch.us",30A Investment Pitch (720p) -https://30a-tv.com/feeds/xodglobal/30atv.m3u8 -#EXTINF:-1 tvg-id="30AMusic.us",30A Music (720p) -https://30a-tv.com/music.m3u8 -#EXTINF:-1 tvg-id="30ASidewalks.us",30A Sidewalks (720p) -https://30a-tv.com/sidewalks.m3u8 -#EXTINF:-1 tvg-id="30ATheBeachShow.us",30A The Beach Show (720p) -https://30a-tv.com/beachy.m3u8 -#EXTINF:-1 tvg-id="247RetroTV.us",247 Retro TV (432p) [Not 24/7] -http://hlsdpi-cdn-chqtx02.totalstream.net/dpilive/247retro/ret/dai/playlist.m3u8 -#EXTINF:-1 tvg-id="A3Bikini.us",A3Bikini (720p) [Offline] -https://vcnbikininetwork.teleosmedia.com/stream/bikininetwork/a3bikini/playlist.m3u8 -#EXTINF:-1 tvg-id="ABTV.us",AB TV (720p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/abtvusa.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC 2 Atlanta GA (WSB-TV) (720p) -https://d2rwx6gwduugne.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10010_183ec1c7-4183-4661-803b-3ed282ffb625_LE/in/cmg-wsbtvnow-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 2 Baton Rouge LA (WBRZ) (720p) [Not 24/7] -http://cms-wowza.lunabyte.io/wbrz-live-1/_definst_/smil:wbrz-live.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC 3 Corpus Christi TX (KIII) (1080p) -https://livevideo01.kiiitv.com/hls/live/2017378/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 4 Seattle WA (KOMO-TV) (720p) -https://content.uplynk.com/2c88dfe19e1447e6a6aa27e8e143a140.m3u8 -#EXTINF:-1 tvg-id="",ABC 5 Cleveland OH (WEWS-TV) (1080p) -https://wews-syndication.ewscloud.com/out/v1/72729e3f4dbe4aafbab93d6b1117e5f1/index.m3u8 -#EXTINF:-1 tvg-id="",ABC 5 Des Moines IA (WOI) (1080p) -https://livevideo01.weareiowa.com/hls/live/2011593/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 5 Minneapolis MN (KSTP) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/kstp-tv -#EXTINF:-1 tvg-id="",ABC 7 Denver CO (KMGH) (720p) -https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8 -#EXTINF:-1 tvg-id="",ABC 7 Los Angeles CA (KABC-TV) (720p) -https://content.uplynk.com/channel/ext/2118d9222a87420ab69223af9cfa0a0f/kabc_24x7_news.m3u8 -#EXTINF:-1 tvg-id="",ABC 7 Washington DC (WJLA) (720p) -https://content.uplynk.com/40cec2bf074c40f08932da03ab4510be.m3u8 -#EXTINF:-1 tvg-id="",ABC 8 Dallas TX (WFAA) (1080p) -https://livevideo01.wfaa.com/hls/live/2014541/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 8 Davenport IA (WQAD) (1080p) -https://livevideo01.wqad.com/hls/live/2011657/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 9 Orlando FL (WFTV) (720p) -https://d3qm7vzp07vxse.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10070_fe1f5f6c-cd0b-4993-a4a4-6db66be4f313_LE/in/cmg-wftvtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 10 Sacramento CA (KXTV) (1080p) -https://livevideo01.abc10.com/hls/live/2014547/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 11 Louisville KY (WHAS) (1080p) -https://livevideo01.whas11.com/hls/live/2016284/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 13 Grand Rapids MI (WZZM) (1080p) -https://livevideo01.wzzm13.com/hls/live/2016280/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 13 Las Vegas NV (KTNV) (720p) -https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8 -#EXTINF:-1 tvg-id="",ABC 13 Norfolk VA (WVEC) (1080p) -https://livevideo01.13newsnow.com/hls/live/2014545/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 15 Phoenix AZ (KNXV-TV) (720p) -https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8 -#EXTINF:-1 tvg-id="",ABC 16 Wilkes Barre PA (WNEP) (1080p) -https://livevideo01.wnep.com/hls/live/2011655/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 24 Austin TX (KVUE) (1080p) -https://livevideo01.kvue.com/hls/live/2016282/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC 24 Memphis TN (WATN-TV) (1080p) -https://livevideo01.localmemphis.com/hls/live/2011654/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",ABC Buffalo NY (WKBW-TV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ABCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="",ABC Detroit MI (WXYZ-TV1) (480p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC Detroit MI (WXYZ-TV1) (720p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="ABCNews.us",ABC News (720p) -https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive1.us",ABC News Live 1 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023560/abcnews1/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive2.us",ABC News Live 2 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023561/abcnews2/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive3.us",ABC News Live 3 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023562/abcnews3/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive4.us",ABC News Live 4 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023563/abcnews4/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive5.us",ABC News Live 5 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023564/abcnews5/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive6.us",ABC News Live 6 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023565/abcnews6/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive7.us",ABC News Live 7 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023566/abcnews7/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive8.us",ABC News Live 8 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023567/abcnews8/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive9.us",ABC News Live 9 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023568/abcnews9/master.m3u8 -#EXTINF:-1 tvg-id="ABCNewsLive10.us",ABC News Live 10 (720p) -https://abcnews-streams.akamaized.net/hls/live/2023569/abcnews10/master.m3u8 -#EXTINF:-1 tvg-id="",ABC News New York NY (WABC-TV) (720p) -https://content.uplynk.com/channel/ext/72750b711f704e4a94b5cfe6dc99f5e1/wabc_24x7_news.m3u8 -#EXTINF:-1 tvg-id="",ABC Seattle WA (KOMO-TV1) (480p) -http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC Seattle WA (KOMO-TV1) (720p) -http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC Spokane WA (KXLY-TV1) (480p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC Spokane WA (KXLY-TV1) (720p) -http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",ABC Tallahassee FL (WTXL-TV1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WTXLHD.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (720p) -https://a.jsrdn.com/broadcast/542cb2ce3c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="",Ace TV (KCKS-LD3) (480p) -https://cdn.igocast.com/channel3_hls/channel3_master.m3u8 -#EXTINF:-1 tvg-id="",Action (KCKS-LD4) (480p) -https://cdn.igocast.com/channel4_hls/channel4_master.m3u8 -#EXTINF:-1 tvg-id="Actionable.us",Actionable (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e25a1932c8368bdbfd87d/playlist.m3u8 -#EXTINF:-1 tvg-id="ActionMaxEast.us",ActionMax East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cinemaxaction.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="AdoracionReal.us",Adoración Real (360p) [Not 24/7] -https://tv.tvcontrolcp.com:1936/8012/8012/playlist.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsTV.us",Adventure Sports TV (720p) [Not 24/7] -https://gizmeon.s.llnwi.net/channellivev3/live/master.m3u8?channel=275 -#EXTINF:-1 tvg-id="Akaku53.us",Akaku 53 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch1.m3u8 -#EXTINF:-1 tvg-id="Akaku54.us",Akaku 54 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch2.m3u8 -#EXTINF:-1 tvg-id="Akaku55.us" status="online",Akaku 55 (Hawaii) (1080p) -https://akaku.vod.castus.tv/live/ch3.m3u8 -#EXTINF:-1 tvg-id="AKCTV.us",AKC TV (1080p) -https://broadcast.blivenyc.com/speed/broadcast/22/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AKCTVMeettheBreeds.us",AKC TV Meet the Breeds (1080p) -https://broadcast.blivenyc.com/speed/broadcast/71/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AKCTVPuppies.us",AKC TV Puppies (1080p) -https://broadcast.blivenyc.com/speed/broadcast/29/desktop-playlist.m3u8 -#EXTINF:-1 tvg-id="AlHorreyaTV.us",Al Horreya TV (1080p) -http://media.smc-host.com:1935/alhorreya.tv/alhorreya.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHorreyaTV.us",Al Horreya TV (1080p) -http://media.smc-host.com:1935/alhorreya.tv/mp4:alhorreya3/playlist.m3u8 -#EXTINF:-1 tvg-id="AlHurra.us",Al Hurra (486p) [Not 24/7] -https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 -#EXTINF:-1 tvg-id="AlHurra.us",Al Hurra (720p) -https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 -#EXTINF:-1 tvg-id="AlientoVision.us",Aliento Vision (720p) [Not 24/7] -http://209.133.209.195:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlientoVision.us",Aliento Vision (720p) [Not 24/7] -http://livestreamcdn.net:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us",Alkarma TV Australia (720p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us",Alkarma TV Australia (1080p) -https://5a8308add0b31.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVFamily.us",Alkarma TV Family (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaNA2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVMiddleEast.us",Alkarma TV Middle East (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVNorthAmericaCanada.us",Alkarma TV North America & Canada (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmana1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVPraise.us",Alkarma TV Praise (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmapa.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVTalmazaDiscipleship.us",Alkarma TV Talmaza (Discipleship) (1080p) [Not 24/7] -https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlkarmaTVYouthEnglish.us" status="online",Alkarma TV Youth & English (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmaus.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Alkerazatv (720p) -https://597f64b67707a.streamlock.net/alkerazatv.org/alkerazatv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AllSportsTVNetwork.us",All Sports TV Network (404p) [Offline] -https://2-fss-2.streamhoster.com/pl_120/amlst:203932-1476320/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmagdTVMiddleEast.us",Almagd TV Middle East (1080p) -https://597f64b67707a.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlmagdTVNorthAmerica.us",Almagd TV North America (1080p) -https://5aafcc5de91f1.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCLatinAmerica.us",AMC Latin America [Timeout] -http://209.91.213.10:8088/play/a013 -#EXTINF:-1 tvg-id="America.us",America (720p) [Not 24/7] -http://45.6.4.154/americatuc/vivo.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) -https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8 -#EXTINF:-1 tvg-id="",America's Voice (KCKS-LD5) (480p) [Not 24/7] -https://cdn.igocast.com/channel5_hls/channel5_master.m3u8 -#EXTINF:-1 tvg-id="AmericanHorrors.us",American Horrors (480p) -http://170.178.189.66:1935/live/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="AMGTV.us",AMG TV (1080p) -https://2-fss-2.streamhoster.com/pl_138/201660-1270634-1/playlist.m3u8 -#EXTINF:-1 tvg-id="AmgaTV.us",Amga TV (720p) [Not 24/7] -https://streamer1.connectto.com/AMGA_WEB_1202/playlist.m3u8 -#EXTINF:-1 tvg-id="ARTNTV.us",ARTN TV (1080p) [Not 24/7] -https://streamer1.connectto.com/ARTN_mobile/index.m3u8 -#EXTINF:-1 tvg-id="ATDTV.us",ATD TV (American TV of Dardania) (1080p) -http://46.99.146.236/0.m3u8 -#EXTINF:-1 tvg-id="AtlantaChannel.us",Atlanta Channel (720p) -http://media4.tripsmarter.com:1935/LiveTV/ACVBHD/playlist.m3u8 -#EXTINF:-1 tvg-id="AtlantaChannel.us",Atlanta Channel (720p) -https://5b0f5374bdf0c.streamlock.net:444/LiveTV/ATLHD/playlist.m3u8 -#EXTINF:-1 tvg-id="AudioDungeon.us",Audio Dungeon (720p) -https://content.uplynk.com/channel/5688add7ce704ce1a27ab62bb44044b9.m3u8 -#EXTINF:-1 tvg-id="AvangTV.us",Avang TV (1080p) [Not 24/7] -http://appavang.flashmediacast.com:1935/Appavang/livestream/palylist.m3u8 -#EXTINF:-1 tvg-id="AWEEncore.us",AWE Encore (720p) [Geo-blocked] -https://cdn.herringnetwork.com/80A4DFF/awee_nva/AWE_Encore.m3u8 -#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Thai) (720p) [Not 24/7] -https://www.livedoomovie.com/02_AXNHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Vietnamese) (1080p) [Offline] -http://103.81.104.118/hls/stream2.m3u8 -#EXTINF:-1 tvg-id="AXNLatinoamerica.us",AXN Latinoamérica (576p) [Timeout] -http://209.91.213.10:8088/play/a011 -#EXTINF:-1 tvg-id="AXSTVNow.us",AXS TV Now (1080p) -https://dikcfc9915kp8.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="AyenehTV.us",Ayeneh TV (720p) [Not 24/7] -https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 -#EXTINF:-1 tvg-id="BabyFirstTV.us",BabyFirst TV (1080p) -https://babyfirst.akamaized.net/hls/live/2028842/bftvusaott/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVCSULB.us",Beach TV CSULB (720p) [Not 24/7] -http://stream04.amp.csulb.edu:1935/Beach_TV/smil:BeachTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us",Beach TV Florida & Alabama (720p) -http://media4.tripsmarter.com:1935/LiveTV/DTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us",Beach TV Florida & Alabama (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/DTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us",Beach TV Key West & Florida Keys (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/KTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us",Beach TV Key West & Florida Keys (720p) [Offline] -https://media4.tripsmarter.com:1935/LiveTV/KTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us",Beach TV Myrtle Beach & The Grand Strand (720p) -http://media4.tripsmarter.com:1935/LiveTV/MTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us",Beach TV Myrtle Beach & The Grand Strand (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/MTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVPanamaCity.us",Beach TV Panama City (720p) -http://media4.tripsmarter.com:1935/LiveTV/BTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeachTVPanamaCity.us",Beach TV Panama City (720p) -https://5ed325193d4e1.streamlock.net:444/LiveTV/BTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="BeautyIQ.us",Beauty IQ (1080p) -https://lsqvc4us-lh.akamaihd.net/i/lsqvc4us_01@802711/master.m3u8 -#EXTINF:-1 tvg-id="BekSportsEast.us",Bek Sports East (720p) -https://wowzaprod188-i.akamaihd.net/hls/live/728897/54d0bcd5/playlist.m3u8 -#EXTINF:-1 tvg-id="BekSportsWest.us",Bek Sports West (720p) -https://wowzaprod188-i.akamaihd.net/hls/live/728897/89b077e6/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterHealthTV.us",Better Health TV (480p) -https://uni5rtmp.tulix.tv/betterhealth/betterhealth/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterHealthTV.us",Better Health TV (480p) -https://uni10rtmp.tulix.tv/betterhealth/betterhealth.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us",Better Life Nature Channel (480p) -https://uni5rtmp.tulix.tv/betternature/betternature/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us",Better Life Nature Channel (480p) -https://uni10rtmp.tulix.tv/betternature/betternature.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeTV.us",Better Life TV (720p) -https://uni5rtmp.tulix.tv/betterlife/betterlife/playlist.m3u8 -#EXTINF:-1 tvg-id="BetterLifeTV.us",Better Life TV (720p) -https://uni10rtmp.tulix.tv/betterlife/betterlife.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BibleExplorations.us",Bible Explorations (480p) [Not 24/7] -http://stream.iphonewebtown.com:1935/bibleexplorations/bexplorationsmobile.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BizTV.us",Biz TV (576p) [Not 24/7] -http://gideommd.mmdlive.lldns.net/gideommd/46c072b287224782a4d4ce93c3646589/manifest.m3u8 -#EXTINF:-1 tvg-id="BizTV.us",Biz TV (1080p) -https://thegateway.app/BizAndYou/BizTV/playlist.m3u8 -#EXTINF:-1 tvg-id="BizTV.us",Biz TV (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/m3u8/us_biztv.m3u8 -#EXTINF:-1 tvg-id="BlazeTV.us",Blaze TV (720p) -https://theblaze4.akamaized.net/hls/live/699982/theblaze/cm-dvr/master.m3u8 -#EXTINF:-1 tvg-id="BloombergHT.us",Bloomberg HT (720p) [Not 24/7] -https://tv.ensonhaber.com/tv/tr/bloomberght/index.m3u8 -#EXTINF:-1 tvg-id="BloombergHT.us",Bloomberg HT (720p) [Offline] -https://ciner.daioncdn.net/bloomberght/bloomberght.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (720p) -https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-03-qPp9HnlfNtK_live.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-02-oNnPi5xc6sq_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAsia.us",Bloomberg TV Asia (720p) -https://liveprodapnortheast.global.ssl.fastly.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAsiaLiveEvent.us",Bloomberg TV Asia Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/asia-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAustralia.us",Bloomberg TV Australia (270p) -https://liveprodapnortheast.akamaized.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-440-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVAustralia.us",Bloomberg TV Australia (720p) -https://liveprodapnortheast.global.ssl.fastly.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEMEALiveEvent.us",Bloomberg TV EMEA Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/eu-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe (360p) -https://liveprodeuwest.global.ssl.fastly.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVEurope.us",Bloomberg TV Europe (720p) -https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (180p) -https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-240-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (360p) -https://liveprodapnortheast.akamaized.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (360p) -https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) -https://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) -https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUSLiveEvent.us",Bloomberg TV US Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/us-event.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUSPoliticsLiveEvent.us",Bloomberg TV US Politics Live Event (720p) -https://www.bloomberg.com/media-manifest/streams/politics.m3u8 -#EXTINF:-1 tvg-id="BluegrassMusic4U.us",Bluegrass Music 4U (360p) [Not 24/7] -https://59d39900ebfb8.streamlock.net/blugrassmusic/blugrassmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="BoomerangLatinoamerica.us",Boomerang Latinoamérica [Geo-blocked] -http://45.5.8.78:8000/play/a00i -#EXTINF:-1 tvg-id="",Boston 25 News (WFXT) (720p) -https://d2dy6pkj44n6e7.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10020_27d61a9c-67b2-4d7c-9486-626a6a071467_LE/in/cmg-wftxtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",Bounce Tallahassee FL (WTXL-TV2) (480p) -https://5e6cea03e25b6.streamlock.net/live/BOUNCE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="BowieTV.us",Bowie TV (360p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/cityofbowie/G0466_001/playlist.m3u8 -#EXTINF:-1 tvg-id="BrazzersLatinoamerica.us",Brazzers Latinoamérica [Geo-blocked] -http://45.5.8.78:8000/play/a029 -#EXTINF:-1 tvg-id="bspoketv.us",bspoketv (720p) [Not 24/7] -https://bspoketv.s.llnwi.net/streams/322/master.m3u8 -#EXTINF:-1 tvg-id="BuffaloTV.us",Buffalo TV (360p) [Offline] -https://na-all15.secdn.net/pegstream3-live/play/c3e1e4c4-7f11-4a54-8b8f-c590a95b4ade/playlist.m3u8 -#EXTINF:-1 tvg-id="BusinessRockstars.us",Business Rockstars (720p) -https://content.uplynk.com/channel/7ad2b600b40b4a89933ab6981757f8b3.m3u8 -#EXTINF:-1 tvg-id="",BUTV10 (Boston University) (1080p) [Not 24/7] -http://butv10-livestream.bu.edu/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) -https://buzzrota-web.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) [Offline] -https://a.jsrdn.com/broadcast/ds80weh4/c.m3u8 -#EXTINF:-1 tvg-id="",Buzzr (KCKS-LD1) (480p) -https://cdn.igocast.com/channel1_hls/channel1_master.m3u8 -#EXTINF:-1 tvg-id="BYUTV.us",byu TV (720p) [Offline] -https://a.jsrdn.com/broadcast/d5b46/+0000/c.m3u8 -#EXTINF:-1 tvg-id="CSPAN2.us",C-SPAN 2 (108p) -https://skystreams-lh.akamaihd.net/i/SkyC2_1@500807/master.m3u8 -#EXTINF:-1 tvg-id="CSPAN3.us",C-SPAN 3 (108p) [Not 24/7] -https://skystreams-lh.akamaihd.net/i/SkyC3_1@500808/master.m3u8 -#EXTINF:-1 tvg-id="CSPAN.us",C-SPAN (108p) -https://skystreams-lh.akamaihd.net/i/SkyC1_1@500806/master.m3u8 -#EXTINF:-1 tvg-id="CableHits.us",Cable Hits (720p) [Not 24/7] -https://bk7l2w4nlx53-hls-live.5centscdn.com/AETV/514c04b31b5f01cf00dd4965e197fdda.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us",California Music Channel (720p) [Geo-blocked] -https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMC-TV/playlist.m3u8 -#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us",California Music Channel (720p) [Not 24/7] -https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMCU-92/playlist.m3u8 -#EXTINF:-1 tvg-id="CameraSmileTV.us",Camera Smile TV (480p) -https://playout4multirtmp.tulix.tv/live7/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="CampSpoopy.us",Camp Spoopy (1080p) -https://stream.ads.ottera.tv/playlist.m3u8?network_id=269 -#EXTINF:-1 tvg-id="CanelaTV.us",Canela TV (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=65 -#EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us",Capital City Connection Montgomery (360p) [Offline] -https://na-us-se13.secdn.net/pegstream3-live/play/5f0d9ca5-4e85-4c01-a426-9ec8d44c2c9c/playlist.m3u8 -#EXTINF:-1 tvg-id="CaptitalOTBBetting.us",Captital OTB Betting (720p) [Not 24/7] -https://d2up1hmow19bcd.cloudfront.net/livecf/liveracing/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkArabic.us",Cartoon Network Arabic (1080p) -https://shls-cartoon-net-prod-dub.shahid.net/out/v1/dc4aa87372374325a66be458f29eab0f/index.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkAsia.us",Cartoon Network Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Cn/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkIndia.us",Cartoon Network India (432p) [Not 24/7] -http://70.39.83.58:8278/cartoonnetworkhindikdin/playlist.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkIndia.us",Cartoon Network India (576p) [Timeout] -http://103.153.39.34:8000/play/a04k/index.m3u8 -#EXTINF:-1 tvg-id="CartoonNetworkLatinAmerica.us",Cartoon Network Latin America [Timeout] -http://209.91.213.10:8088/play/a00k -#EXTINF:-1 tvg-id="CartoonNetworkVietnam.us",Cartoon Network Vietnam (720p) [Geo-blocked] -https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CARTOON-SD-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CatholicTV.us",Catholic TV (720p) [Not 24/7] -http://catholictvhd-lh.akamaihd.net/i/ctvhd_1@88148/master.m3u8 -#EXTINF:-1 tvg-id="CBNEspanol.us",CBN Español (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/iptv2_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNEspanol.us",CBN Español (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/iptv2_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="CBNFamily.us",CBN Family (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/iptv1_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNFamily.us",CBN Family (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/iptv1_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] -http://bcliveuniv-lh.akamaihd.net/i/news_1@194050/master.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] -https://bcliveuniv-lh.akamaihd.net/i/news_1@194050/index_3000_av-p.m3u8 -#EXTINF:-1 tvg-id="CBNNews.us",CBN News (1080p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/news_1@500579/master.m3u8 -#EXTINF:-1 tvg-id="",CBS 2 Greensboro NC (WFMY) (1080p) -https://livevideo01.wfmynews2.com/hls/live/2016285/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 2 Spokane WA (KREM) (1080p) -https://livevideo01.krem.com/hls/live/2017156/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (720p) -https://content.uplynk.com/4a09fbea28ef4f32bce095e9eae04bd8.m3u8 -#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (720p) -https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8 -#EXTINF:-1 tvg-id="",CBS 4 New Orleans LA (WWL-TV) (1080p) -https://livevideo01.wwltv.com/hls/live/2016516/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 5 Ft Smith AR (KFSM-TV) (1080p) -https://livevideo01.5newsonline.com/hls/live/2011653/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 5 San Antonio TX (KENS) (1080p) -https://livevideo01.kens5.com/hls/live/2016281/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 6 Albany NY (WRGB) (720p) -https://content.uplynk.com/channel/bba3e7da884a49bba96341ecf5128f0f.m3u8 -#EXTINF:-1 tvg-id="",CBS 7 Dayton OH (WHIO) [Timeout] -https://svc-lvanvato-cxtv-whio.cmgvideo.com/whio/2596k/index.m3u8 -#EXTINF:-1 tvg-id="",CBS 7 Seattle WA (KIRO-TV) [Timeout] -https://svc-lvanvato-cxtv-kiro.cmgvideo.com/kiro/1864k/index.m3u8 -#EXTINF:-1 tvg-id="",CBS 8 San Diego CA (KFMB-TV) (1080p) -https://livevideo01.cbs8.com/hls/live/2014967/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 9 Washington DC (WUSA) (1080p) -https://livevideo01.wusa9.com/hls/live/2015498/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 10 Columbus OH (WBNS-TV) (1080p) -https://livevideo01.10tv.com/hls/live/2013836/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 10 Tampa FL (WTSP) (1080p) -https://livevideo01.wtsp.com/hls/live/2015503/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 11 Houston TX (KHOU) (1080p) -https://livevideo01.khou.com/hls/live/2014966/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 11 Toledo OH (WTOL) (1080p) -https://livevideo01.wtol.com/hls/live/2017153/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 12 West Palm Beach FL (WPEC) (720p) -https://content.uplynk.com/channel/0123b306191a4307a31b9fb573213fd3.m3u8 -#EXTINF:-1 tvg-id="",CBS 13 Macon GA (WMAZ-TV) (1080p) -https://livevideo01.13wmaz.com/hls/live/2017376/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 19 Columbia SC (WLTX) (1080p) -https://livevideo01.wltx.com/hls/live/2017152/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 19 Tyler TX (KYTX) (1080p) -https://livevideo01.cbs19.tv/hls/live/2017377/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",CBS 46 Atlanta GA (WGCL-TV) (720p) [Not 24/7] -https://live.field59.com/wgcl/ngrp:wgcl1_all/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS 47 Action News Jacksonville FL (WJAX-TV) (720p) -https://d2eit0bra9qkiw.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10050_b9ac3c93-be86-4f7e-82b8-796b7f8bfda3_LE/in/cmg-wjaxtv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",CBS Buffalo NY (WIVB-TV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="",CBS Detroit MI (WWJ-TV1) (480p) -http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS Detroit MI (WWJ-TV1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CBSNewsBaltimore.us",CBS News Baltimore (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsDFW.us",CBS News Dallas Ft Worth (720p) -https://cbsn-dal.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us",CBS News Live (360p) -https://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsLA.us",CBS News Los Angeles (720p) -https://cbsn-la.cbsnstream.cbsnews.com/out/v1/57b6c4534a164accb6b1872b501e0028/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsMiami.us",CBS News Miami (720p) -https://cbsn-mia.cbsnstream.cbsnews.com/out/v1/ac174b7938264d24ae27e56f6584bca0/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsNY.us",CBS News New York (720p) -https://www.cbsnews.com/common/video/cbsn-ny-prod.m3u8 -#EXTINF:-1 tvg-id="KOVR.us",CBS News Sacramento (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnsac_2/master.m3u8 -#EXTINF:-1 tvg-id="",CBS Seattle WA (KIRO-TV1) (480p) -http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS Seattle WA (KIRO-TV1) (720p) -http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS Tallahassee FL (WCTV1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WCTVDT.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS THV11 Little Rock AR (KTHV) (1080p) -https://livevideo01.thv11.com/hls/live/2017154/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) [Not 24/7] -https://cbsnhls-i.akamaihd.net/hls/live/264710/CBSN_mdialog/prodstream/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) [Offline] -https://cbsn-us-cedexis.cbsnstream.cbsnews.com/out/v1/55a8648e8f134e82a470f83d562deeca/master.m3u8 -#EXTINF:-1 tvg-id="WJZTV.us",CBSN Baltimore (720p) -https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 -#EXTINF:-1 tvg-id="CBSNewsBoston.us",CBSN Boston (720p) -https://cbsn-bos.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 -#EXTINF:-1 tvg-id="",CBSN Boston MA (720p) [Offline] -https://cbsn-bos-cedexis.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 -#EXTINF:-1 tvg-id="KTVTTV.us",CBSN Dallas Ft Worth TX (720p) [Offline] -https://cbsn-dal-cedexis.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 -#EXTINF:-1 tvg-id="CBSNLiveEvent.us",CBSN Live Event (720p) -https://cbsnewshd-lh.akamaihd.net/i/cbsnewsLivePlayer_1@196305/master.m3u8 -#EXTINF:-1 tvg-id="CCTV.us",CC-TV (720p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/charlotte/G0055_002/playlist.m3u8 -#EXTINF:-1 tvg-id="CCXMediaNorthBrooklynParkMN.us",CCX Media North Brooklyn Park MN (1080p) -http://156.142.85.152/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="CelebritySceneTV.us",Celebrity Scene TV (720p) -https://playout4multirtmp.tulix.tv/live8/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="CerritosTV3.us",Cerritos TV3 (360p) -https://granicusliveus4-a.akamaihd.net/cerritos/G0010_002/playlist.m3u8 -#EXTINF:-1 tvg-id="",Channel 9 Orlando FL (WFTV) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wftve2-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="CVTV.us",Channel 23 Clark Vancouver TV (CVTV) (1080p) [Not 24/7] -https://wowzaprod3-i.akamaihd.net/hls/live/252233/15b8d438/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelFight.us",Channel Fight (540p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=68 -#EXTINF:-1 tvg-id="Charge.us",Charge! (720p) -http://content.uplynk.com/channel/37eb732888614810b512fdd82604244e.m3u8 -#EXTINF:-1 tvg-id="",Charge! Tallahassee FL (WTWC-TV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/CHARGE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) [Offline] -https://content.uplynk.com/channel/4ee18bd581dc4d3b90303e0cb9beeb0f.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://live.chdrstatic.com/cbn/index.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://live.chdrstatic.com/cbn/primary/index.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://live.chdrstatic.com/cheddar/primary/index.m3u8 -#EXTINF:-1 tvg-id="ChefChampion.us",Chef Champion (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-chefchampion/mono.m3u8 -#EXTINF:-1 tvg-id="ChefRocShow.us",Chef Roc Show (540p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-chefrock/mono.m3u8 -#EXTINF:-1 tvg-id="ChiveTV.us",Chive TV (720p) -https://a.jsrdn.com/broadcast/4df1bf71c1/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us",Christian Youth Channel (CYC) (1080p) -http://media3.smc-host.com:1935/cycnow.com/smil:cyc.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us",Christian Youth Channel (CYC) (1080p) -http://media.smc-host.com:1935/cycnow.com/cyc2/playlist.m3u8 -#EXTINF:-1 tvg-id="Cinemax.us",Cinemax [Geo-blocked] -http://23.237.202.43:7283/CINEMAX-FHD/index.m3u8?sn=Ux0Oojow5FkqHQCpMmUNQKUr4Wb&tm=1626349319&un=rommel07 -#EXTINF:-1 tvg-id="CinemaxAsia.us",Cinemax Asia (720p) -https://livecdn.fptplay.net/hda1/cinemax_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CinemaxEast.us",Cinemax East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-cinemax.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CinePride.us",CinePride (720p) -https://content.uplynk.com/channel/e54d7e92a0154d67ae0770c9d4210e77.m3u8 -#EXTINF:-1 tvg-id="",Circle Tallahassee FL (WCTV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/ION.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CGTV.us",City of Champaign IL (CGTV) (234p) [Offline] -https://reflect-live-champaign.cablecast.tv/live/CELL-296k-234p/CELL-296k-234p.m3u8 -#EXTINF:-1 tvg-id="Civilized.us",Civilized. (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2531932c8368bdbfd87c/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicArtsShowcase.us",Classic Arts Showcase (720p) [Offline] -https://d3s1xaoyhrialn.cloudfront.net/CAS/index.m3u8 -#EXTINF:-1 tvg-id="ClassicCinema.us",Classic Cinema (240p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-classiccinema/mono.m3u8 -#EXTINF:-1 tvg-id="ClassicMoviesChannel.us",Classic Movies Channel (720p) -https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/playlist.m3u8 -#EXTINF:-1 tvg-id="ClassicTV4U.us",Classic TV 4U (480p) -https://broadcast.mytvtogo.net/classictv4u/classictv4u/playlist.m3u8 -#EXTINF:-1 tvg-id="CloudflareTV.us",Cloudflare TV (720p) -https://cloudflare.tv/hls/live.m3u8 -#EXTINF:-1 tvg-id="CNBC.us",CNBC (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/CNBC/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCArabiya.us",CNBC Arabiya (1080p) -https://hiplayer.hibridcdn.net/t/cnbcarabia-live.m3u8 -#EXTINF:-1 tvg-id="CNBCEurope.us",CNBC Europe (480p) -http://ott-cdn.ucom.am/s65/index.m3u8 -#EXTINF:-1 tvg-id="CNBCIndonesia.us",CNBC Indonesia (720p) -https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CNBCTV18.us",CNBC TV 18 (504p) -https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 -#EXTINF:-1 tvg-id="CNN.us",CNN (720p) -http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CNN.us",CNN (720p) -http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNBrasil.us",CNN Brasil (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvdwhh_fDyWccR42-rReZLw/live -#EXTINF:-1 tvg-id="CNNChile.us",CNN Chile (720p) [Timeout] -https://unlimited1-cl-movistar.dps.live/cnn/cnn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNenEspanol.us",CNN en Español [Timeout] -http://209.91.213.10:8088/play/a014 -#EXTINF:-1 tvg-id="CNNPhilippines.us",CNN Philippines (720p) [Not 24/7] -https://streaming.cnnphilippines.com/live/myStream/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNTurk.us",CNN Türk (480p) [Not 24/7] -http://163.172.39.215:25461/line/C4@!a3a1@!w72A/129 -#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] -http://stream.tvtap.live:8081/live/us-cnn.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_3_1464000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (360p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_4_1064000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (480p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_2_1964000.m3u8 -#EXTINF:-1 tvg-id="CNNUSA.us",CNN USA (720p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) -https://comedydynamics-wurl.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Comet.us",Comet (720p) -http://content.uplynk.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://d2rir1vttzppfq.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="CookingPanda.us",Cooking Panda (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=46 -#EXTINF:-1 tvg-id="CornerstoneTV.us",Cornerstone TV (640p) -http://cdn.media9.truegod.tv/ctvnlive/smil:ctvn.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CourtTV.us",Court TV (720p) -https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8 -#EXTINF:-1 tvg-id="CourtTV.us",Court TV (1080p) -https://cdn-katz-networks-01.vos360.video/Content/HLS/Live/channel(courttv)/index.m3u8 -#EXTINF:-1 tvg-id="CourtTVMystery.us",Court TV Mystery (WTXL-TV4) (480p) -https://5e6cea03e25b6.streamlock.net/live/QVC.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimePlusInvestigationAsia.us",Crime + Investigation Asia [Offline] -http://203.154.243.31:15001 -#EXTINF:-1 tvg-id="CSatTV.us",CSat TV (1080p) [Not 24/7] -http://media.smc-host.com:1935/csat.tv/smil:csat.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CTNCourtFeed.us",CT-N Court Feed (360p) [Not 24/7] -http://video.ct-n.com/live/ctnSupreme/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="CTNLiveStream2.us",CT-N Live Stream 2 (360p) [Not 24/7] -http://video.ct-n.com/live/web2stream/playlist.m3u8 -#EXTINF:-1 tvg-id="CTNTVConneticut.us",CT-N TV Conneticut (720p) [Not 24/7] -http://video.ct-n.com/live/ctnstream/playlist_DVR.m3u8 -#EXTINF:-1 tvg-id="WFGCDT1.us",CTN 61 Riviera Beach FL (WFGC) (720p) [Not 24/7] -http://hls1.livestreamingcdn.com:1935/livecdn631/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="CTN.us",CTN (404p) -http://admin.ottdemo.rrsat.com:1935/ctntv/ctntv2/playlist.m3u8 -#EXTINF:-1 tvg-id="CTN.us",CTN (720p) -http://rtmp.ottdemo.rrsat.com/ctntv/ctntvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CTN.us",CTN (720p) [Not 24/7] -https://rrsatrtmp.tulix.tv/ctntv/ctntvmulti.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="CWSeed.us",CW Seed (432p) [Geo-blocked] -https://cwseedlive.cwtv.com/ingest/playlist.m3u8 -#EXTINF:-1 tvg-id="CycleWorld.us",Cycle World (720p) [Offline] -https://a.jsrdn.com/broadcast/3e5befe5dd/+0000/c.m3u8 -#EXTINF:-1 tvg-id="DanceStarTV.us",DanceStar TV (720p) [Offline] -https://vcndstv.teleosmedia.com/stream/dstv/dstv/playlist.m3u8 -#EXTINF:-1 tvg-id="DCCouncilChannel.us",DC Council Channel (1080p) -https://video.oct.dc.gov/out/u/15_12.m3u8 -#EXTINF:-1 tvg-id="DCEagleCam.us",DC Eagle Cam (720p) -http://americaneagle-lh.akamaihd.net/i/AEF_DC1@31049/master.m3u8 -#EXTINF:-1 tvg-id="",Digi TV (WFTY-DT6) (720p) -https://amg01443-netxholdingsllc-digitv200-ono-zzfy4.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelAsia.us",Disney Channel Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Disneyxd/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelEspana.es",Disney Channel España (1080p) [Timeout] -http://5.255.90.184:2004/play/a006/index.m3u8 -#EXTINF:-1 tvg-id="DisneyChannelJapan.us",Disney Channel Japan (720p) [Not 24/7] -https://redlabmcdn.s.llnwi.net/jp04/bs13hd/index.mpd -#EXTINF:-1 tvg-id="DisneyChannelPortugal.es",Disney Channel Portugal [Offline] -http://185.236.229.21:9981/play/a056 -#EXTINF:-1 tvg-id="DisneyJuniorAsia.us",Disney Junior Asia (720p) [Timeout] -http://198.16.106.62:8278/streams/d/Disneyjr/playlist.m3u8 -#EXTINF:-1 tvg-id="DisneyJuniorLatinoamerica.es",Disney Junior Latinoamérica [Timeout] -http://209.91.213.10:8088/play/a00n -#EXTINF:-1 tvg-id="DisneyJuniorPortugal.es",Disney Junior Portugal [Offline] -http://185.236.229.21:9981/play/a03q -#EXTINF:-1 tvg-id="DistrictofColumbiaNetwork.us",District of Columbia Network (DCN) (1080p) -https://video.oct.dc.gov/out/u/DCN.m3u8 -#EXTINF:-1 tvg-id="DittyTV.us",Ditty TV (720p) [Not 24/7] -https://azroe0x-lh.akamaihd.net/i/test_1@775856/master.m3u8 -#EXTINF:-1 tvg-id="DivineVision.us",Divine Vision (480p) [Not 24/7] -https://divineplayout-us2.tulix.tv/live/Stream1/.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] -https://dovenow.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DrGeneScott.us",Dr. Gene Scott (480p) -https://wescottcchls-lh.akamaihd.net/i/wcc_wowlivehls@24607/master.m3u8 -#EXTINF:-1 tvg-id="",DreamforceBTL (Rhino Radio TV | RRTV) (720p) [Offline] -https://stmv1.panelzcast.com/dreamforcebtl/dreamforcebtl/playlist.m3u8 -#EXTINF:-1 tvg-id="DrinkTV.us",Drink TV (720p) [Offline] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=62 -#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) -https://a.jsrdn.com/broadcast/e29bdbbbf3/+0000/c.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) [Offline] -https://59d39900ebfb8.streamlock.net/molaughtertv/molaughtertv/playlist.m3u8 -#EXTINF:-1 tvg-id="Ecuavisa.us",Ecuavisa (720p) -https://livestreamcdn.net:444/Alientoenvivo/Alientoenvivo.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElConflecto.us",El Conflecto (480p) -https://content.uplynk.com/channel/c56a6c94a53843c79d3eca411d39f96f.m3u8 -#EXTINF:-1 tvg-id="ElMaqar.us",El Maqar (1080p) -http://135.181.79.179/ElmaqarTVHD/playlist.m3u8?token=mobileuser -#EXTINF:-1 tvg-id="ElMaqar.us",El Maqar (1080p) [Offline] -rtmp://elmaqar.info:1935/icopts/elKarous -#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us",El Sembrador Nueva Evangelización (ESNE) (720p) -https://zypelive-lh.akamaihd.net/i/default_1@44045/master.m3u8 -#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us",El Sembrador Nueva Evangelización (ESNE) (720p) -https://zypelive-lh.akamaihd.net/i/default_1@745572/master.m3u8 -#EXTINF:-1 tvg-id="ElbesharaGTV.us",Elbeshara GTV (1080p) [Not 24/7] -http://media3.smc-host.com:1935/elbesharagtv.com/gtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ElectricNow.us",Electric Now (720p) [Not 24/7] -https://ov.ottera.tv/live/master.m3u8?channel=elec_en -#EXTINF:-1 tvg-id="EntertainmentTonight.us",Entertainment Tonight (1080p) -https://etlive-mediapackage-fastly.cbsaavideo.com/dvr/manifest.m3u8 -#EXTINF:-1 tvg-id="Entrepreneur.us",Entrepreneur (720p) -https://a.jsrdn.com/broadcast/7582ed85f7/+0000/c.m3u8 -#EXTINF:-1 tvg-id="EscambiaCountyTV.us",Escambia County TV (720p) [Offline] -https://stream.swagit.com/live-edge/escambiacountyfl/live-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="EsperanzaTV.us",Esperanza TV (480p) [Not 24/7] -http://k3.usastreams.com:1935/etvSD/etvSD/playlist.m3u8 -#EXTINF:-1 tvg-id="",ESR 24x7 eSports Network (1080p) -https://eyeonesports.com/ES2RA-628g.m3u8 -#EXTINF:-1 tvg-id="EverydayHeroes.us",Everyday Heroes (720p) -https://a.jsrdn.com/broadcast/7b1451fa52/+0000/c.m3u8 -#EXTINF:-1 tvg-id="EWTNAfricaAsia.us",EWTN Africa-Asia (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-18/ngrp:yjnk-afxc_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNAsiaPacific.us",EWTN Asia-Pacific (720p) [Not 24/7] -https://cdn3.wowza.com/1/QmVNUVhTNTZSS3Uz/YWQ0aHpi/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNAsiaPacific.us",EWTN Asia-Pacific (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-12/ngrp:q6ms-g1u9_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (720p) [Not 24/7] -https://cdn3.wowza.com/1/YW5wSWZiRGd2eFlU/bGV0aVBq/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (720p) [Offline] -https://dyo5cp96eopax.cloudfront.net/p/CANE.m3u8 -#EXTINF:-1 tvg-id="EWTNCanada.us",EWTN Canada (1080p) [Offline] -https://live-c348a30.rmbl.ws/slot-34/ngrp:1d1d-wqrm_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us",EWTN el Canal Católico (720p) [Not 24/7] -https://cdn3.wowza.com/1/SmVrQmZCUXZhVDgz/b3J3MFJv/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us",EWTN el Canal Católico (1080p) [Timeout] -https://live-fd164e1.rmbl.ws/slot-21/ngrp:ajdj-xq6n_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNEurope.us",EWTN Europe (720p) [Not 24/7] -https://cdn3.wowza.com/1/T2NXeHF6UGlGbHY3/WFluRldQ/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNEurope.us",EWTN Europe (1080p) [Offline] -https://live-fd164e1.rmbl.ws/slot-27/ngrp:ipy0-yeb3_all/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNkatholischesTV.us",EWTN katholisches TV [Not 24/7] -https://cdn3.wowza.com/1/NWFLbEVOVjNsQWhP/YnpVbld5/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="EWTNUS.us",EWTN US (720p) [Offline] -https://d3kr0d4mfjxpbv.cloudfront.net/p/SPAS.m3u8 -#EXTINF:-1 tvg-id="ExternalOttera.us",External Ottera (720p) -https://otteravision-tg.ottera.tv/live/master.m3u8?channel=tg_tg_us -#EXTINF:-1 tvg-id="ExtremaTV.us",Extrema TV (720p) -http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="EYE95America.us",EYE95 America (1080p) [Not 24/7] -https://cdn20.liveonlineservices.com/hls/eye95tv.m3u8 -#EXTINF:-1 tvg-id="FairfaxPublicAccess.us",Fairfax Public Access (544p) [Not 24/7] -https://cs.ebmcdn.net/eastbay-live-hs-1/fairfax-pull/mp4:fairfax.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FaithLifeTV.us",Faith & Life TV (720p) [Offline] -https://na-all9.secdn.net/logos-channel/live/faithlifetv/playlist.m3u8 -#EXTINF:-1 tvg-id="FashionBoxHD.us",Fast&Fun Box (Russian) (480p) [Timeout] -http://ott-cdn.ucom.am/s79/index.m3u8 -#EXTINF:-1 tvg-id="FastWay.us",FastWay (576p) [Offline] -http://fastway.ddns.net:6421/fastway/live10/index.m3u8 -#EXTINF:-1 tvg-id="FieldStream.us",Field & Stream (720p) [Offline] -https://a.jsrdn.com/broadcast/7536b84786/+0000/c.m3u8 -#EXTINF:-1 tvg-id="",FIGHT SPORTS (1080p) -https://shls-fight-sports-ak.akamaized.net/out/v1/ee7e6475b12e484bbfa5c31461ad4306/index.m3u8 -#EXTINF:-1 tvg-id="FightBoxHD.us",FightBox HD (480p) -http://ott-cdn.ucom.am/s86/index.m3u8 -#EXTINF:-1 tvg-id="FightingSpirit.us",Fighting Spirit (720p) -https://a.jsrdn.com/broadcast/47cff5378f/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FireplaceLounge.us",Fireplace Lounge (720p) -https://a.jsrdn.com/broadcast/aee08372e5/+0000/c.m3u8 -#EXTINF:-1 tvg-id="FishTank.us",Fish Tank (720p) -https://a.jsrdn.com/broadcast/8b43a16c1e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Fite.us",Fite (720p) [Not 24/7] -https://cdn-cf.fite.tv/linear/fite247/playlist.m3u8 -#EXTINF:-1 tvg-id="FolkTVEast.us",Folk TV East (480p) [Not 24/7] -https://584b0aa350b92.streamlock.net/folk-tv/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox 2 St. Louis MO (KTVI) (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/united-states/ktvi-tv -#EXTINF:-1 tvg-id="",Fox 9 Minneapolis-St. Paul MN (KMSP) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/fox-minneapolis -#EXTINF:-1 tvg-id="",Fox 15 West Texas Abilene TX (KXVA) (1080p) -https://livevideo01.myfoxzone.com/hls/live/2017381/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",Fox 23 Tulsa OK (KOKI-TV) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-kokitv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",Fox 28 Savannah GA (WTGS) (720p) -https://content.uplynk.com/channel/e56ba52a1b9d45ad8c8a033fd83fe480.m3u8 -#EXTINF:-1 tvg-id="",Fox 32 Chicago IL (WFLD) (720p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/fox-chicago -#EXTINF:-1 tvg-id="",Fox 43 Harrisburg PA (WPMT) (1080p) -https://livevideo01.fox43.com/hls/live/2011656/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",Fox 54.1 Huntsville AL (WZDX) (1080p) -https://livevideo01.rocketcitynow.com/hls/live/2011659/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",Fox 61 Hartford CT (WTIC-TV) (1080p) -https://livevideo01.fox61.com/hls/live/2011658/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",Fox Boston MA (WFXT1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox Boston MA (WFXT1) (720p) [Not 24/7] -http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox Buffalo NY (WUTV1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_FOXHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="FoxBusiness.us",Fox Business [Geo-blocked] -http://199.66.95.242/1/1172/index.m3u8?token=test -#EXTINF:-1 tvg-id="FoxCrimeAdria.us",Fox Crime Adria [Offline] -https://cdn1.mobiletv.bg/T10/fox_crime/fox_crime_794613_850k.m3u8 -#EXTINF:-1 tvg-id="FoxGreece.us",Fox Greece (480p) [Not 24/7] -http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxMoviesAsia.us",Fox Movies Asia (Thai) (720p) [Not 24/7] -https://www.livedoomovie.com/02_FoxMoviesHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (480p) -http://encodercdn1.frontline.ca/encoder181/output/FOX_News/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (720p) -http://encodercdn1.frontline.ca/encoder181/output/FOX_News_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsChannel.us",Fox News Channel (720p) -http://trn03.tulix.tv/AsEAeOtIxz/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsRadio.us",Fox News Radio (720p) -https://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8 -#EXTINF:-1 tvg-id="",FOX Rochester NY (WUHF-DT1) (720p) -http://encodercdn1.frontline.ca/encoder184/output/FOX_Rochester_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxRussia.us",Fox Russia (576p) [Not 24/7] -http://188.40.68.167/russia/fox_russia_sd/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox Seattle WA (KCPQ1) (480p) -http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox Seattle WA (KCPQ1) (720p) -http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",FOX Spokane WA (KAYU-TV1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="",FOX Spokane WA (KAYU-TV1) (720p) -http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Fox Tallahassee FL (WTWC-TV2) (720p) -https://5e6cea03e25b6.streamlock.net/live/WTWC-FX.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxThai.us",Fox Thai (720p) [Not 24/7] -https://www.livedoomovie.com/02_FoxThai_TH_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) -https://247wlive.foxweather.com/stream/index.m3u8 -#EXTINF:-1 tvg-id="FreeSpeechTV.us",Free Speech TV (480p) [Offline] -https://edge.free-speech-tv-live.top.comcast.net/out/u/fstv.m3u8 -#EXTINF:-1 tvg-id="FrightFlix.us",FrightFlix (720p) -https://content.uplynk.com/channel/4b3fda1ff2c24556bc2c6034307d117d.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (1080p) [Offline] -https://stream.ads.ottera.tv/playlist.m3u8?network_id=516 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7fueltv.m3u8 -#EXTINF:-1 tvg-id="FunRoads.us",Fun Roads (720p) -http://104.143.4.5:2080/funroads.m3u8 -#EXTINF:-1 tvg-id="FXPeru.us",FX Peru [Timeout] -http://209.91.213.10:8088/play/a01z -#EXTINF:-1 tvg-id="GalvestonCountyTV.us",Galveston County TV (720p) [Not 24/7] -https://stream.swagit.com/live-edge/galvestontx/smil:hd-16x9-1-b/playlist.m3u8 -#EXTINF:-1 tvg-id="GalxyTV.us",Galxy TV (720p) -https://content.uplynk.com/channel/f467430e4a8e49a59ff3183cf51092b2.m3u8 -#EXTINF:-1 tvg-id="GanjeHozourTV.us",Ganj e Hozour TV (720p) -http://topfi.ios.internapcdn.net/topfi/live_1/Test/Test.m3u8 -#EXTINF:-1 tvg-id="GenesisTV.us",Genesis TV (720p) [Not 24/7] -http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Glendale11AZ.us",Glendale 11 AZ (360p) -https://stream.swagit.com/live-edge/glendaleaz/smil:std-4x3-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="GlobalFashionChannel.us",Global Fashion Channel (1080p) -https://vcngfcssai.teleosmedia.com/linear/globalfashionchannel/globalfashionchannel/playlist.m3u8 -#EXTINF:-1 tvg-id="GoldenTV.us",Golden TV (240p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-goldentv/mono.m3u8 -#EXTINF:-1 tvg-id="GoodLife45.us",GoodLife 45 (720p) [Not 24/7] -http://1-fss29-s0.streamhoster.com/lv_goodlife45f1/broadcast1/playlist.m3u8 -#EXTINF:-1 tvg-id="GospelTruthTV.us",Gospel Truth TV [Timeout] -https://bstna.tulix.tv/live/bs_2m/index.m3u8 -#EXTINF:-1 tvg-id="",Greek Voice Live 48 Tampa Bay FL (WZRA-CD1) (480p) -http://wpso.com:1936/hls/wzra.m3u8 -#EXTINF:-1 tvg-id="GreenbeltTV.us",Greenbelt TV (480p) -https://t07113a-lh.akamaihd.net/i/t07113a_1@756729/master.m3u8 -#EXTINF:-1 tvg-id="GreensboroTV.us",Greensboro TV [Offline] -https://granicusliveus4-a.akamaihd.net/greensboro/G0197_003/chunklist.m3u8 -#EXTINF:-1 tvg-id="",Grit Tallahassee FL (WTXL-TV3) (480p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/GRIT.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="grvty.us",grvty (1080p) -https://d37j5jg7ob6kji.cloudfront.net/index.m3u8 -#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (480p) [Offline] -rtsp://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed02?nc=1 -#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (720p) [Not 24/7] -http://gtv.live.cdn.bitgravity.com/gtv/live/feed03 -#EXTINF:-1 tvg-id="GunAzTV.us",GünAz TV (720p) [Not 24/7] -https://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed03/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] -https://a.jsrdn.com/broadcast/ebf95254ca/+0000/c.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (1080p) -https://d3cajslujfq92p.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="H2.us" status="online",H2 (720p) [Not 24/7] -https://www.livedoomovie.com/02_H2HD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonFactoryTV.us",Harley Davidson Factory TV (1080p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/e529407a-cb61-45ce-a9ad-94f0ad5e0ad9.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonRacingTV.us",Harley Davidson Racing TV (720p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/de245a96-516c-413d-81e9-419c05bbc6a7.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonRidesTV.us",Harley Davidson Rides TV (1080p) [Not 24/7] -https://hdtv.prod2.ioio.tv/broker/play/d4b0111a-3dcb-46fb-b2bb-1c27eca5df35.m3u8 -#EXTINF:-1 tvg-id="HarleyDavidsonTV.us",Harley Davidson TV (1080p) [Offline] -https://hdtv.prod2.ioio.tv/broker/play/cb4086ca-daba-42f5-8acf-27ee93fee0e8.m3u8 -#EXTINF:-1 tvg-id="WVITTV.us",Hartford WVIT 30 News (720p) [Offline] -http://wvitlive-f.akamaihd.net/i/wvitb2_1@71164/master.m3u8 -#EXTINF:-1 tvg-id="HBOFamilyEast.us",HBO Family East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/FAMILY/index.m3u8 -#EXTINF:-1 tvg-id="HBOFamilyEast.us",HBO Family East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/FAMILY/index.m3u8 -#EXTINF:-1 tvg-id="HBOHits.us",HBO Hits (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/HITS/index.m3u8 -#EXTINF:-1 tvg-id="HBOHits.us",HBO Hits (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/HITS/index.m3u8 -#EXTINF:-1 tvg-id="HBOMalaysia.us",HBO Malaysia (720p) [Offline] -http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8 -#EXTINF:-1 tvg-id="HBOSignatureEast.us",HBO Signature East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/main/SIG/index.m3u8 -#EXTINF:-1 tvg-id="HBOSignatureEast.us",HBO Signature East (1080p) [Offline] -https://liveorigin01.hbogoasia.com:8443/origin/live/SIG/index.m3u8 -#EXTINF:-1 tvg-id="",Heroes & Icons Tallahassee FL (WTLH1) (720p) -https://5e6cea03e25b6.streamlock.net/live/HI.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HighTimes.us",High Times (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2503932c8368bdbfd875/playlist.m3u8 -#EXTINF:-1 tvg-id="HighVision.us",High Vision (1080p) [Not 24/7] -https://streamer1.connectto.com/HIGHVISION_WEB_1205/tracks-v1a1/mono.m3u8 -#EXTINF:-1 tvg-id="History.us",History (540p) [Not 24/7] -http://s1.mysportz.tv:2082/history/playlist.m3u8 -#EXTINF:-1 tvg-id="HistoryAsia.us",History Asia (Thai) (720p) [Not 24/7] -https://www.livedoomovie.com/02_HISTORYHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="HistoryEast.us",History East (720p) [Not 24/7] -https://bk7l2w4nlx53-hls-live.5centscdn.com/HISTORY/961ac1c875f5884f31bdd177365ef1e3.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HLN.us",HLN (720p) [Geo-blocked] -https://turnerlive.warnermediacdn.com/hls/live/586496/cnngo/hln/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="HmongTVNetwork.us",Hmong TV Network (720p) -https://livefta.malimarcdn.com/ftaedge00/cvabroadcasting.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.us",Holly Wire (720p) [Offline] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=141 -#EXTINF:-1 tvg-id="HonorTV.us",Honor TV (720p) -https://a.jsrdn.com/broadcast/d5b48/+0000/c.m3u8 -#EXTINF:-1 tvg-id="HopeChannelAfrica.us",Hope Channel Africa [Offline] -http://93.152.174.144:4000/play/hopechannel/index.m3u8 -#EXTINF:-1 tvg-id="HopeChannelInternational.us",Hope Channel International (1080p) [Geo-blocked] -https://hcintlinc.mmdlive.lldns.net/hcintlinc/60f14a7fec64454e90712421a46ac6f1/manifest.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (360p) -http://media1.adventist.no:1935/live/hope3/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (540p) -http://media1.adventist.no:1935/live/hope2/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelNorge.us",Hope Channel Norge (720p) -http://media1.adventist.no:1935/live/hope1/playlist.m3u8 -#EXTINF:-1 tvg-id="HopeChannelPhilippines.us",Hope Channel Philippines (576p) [Not 24/7] -https://hcfilipino.mmdlive.lldns.net/hcfilipino/f6e775755f2647159e0adefe01a44a0e/manifest.m3u8 -#EXTINF:-1 tvg-id="HorizonArmenian.us",Horizon Armenian (1080p) -http://5.254.76.34:17070/C441/index.m3u8?token=kdsdkwy453wrRq29IIIo -#EXTINF:-1 tvg-id="HorizonArmenian.us",Horizon Armenian (1080p) -http://5.254.76.34:17070/C441/mono.m3u8?token=kdsdkwy453wrRq29IIIo -#EXTINF:-1 tvg-id="HorizonSports.us",Horizon Sports (720p) [Offline] -https://a.jsrdn.com/broadcast/20dc4269f3/+0000/c.m3u8 -#EXTINF:-1 tvg-id="HSN2.us",HSN 2 (720p) [Not 24/7] -https://hsn2html5-lh.akamaihd.net/i/hsn2html5_01@13178/master.m3u8 -#EXTINF:-1 tvg-id="HSN.us",HSN (720p) -https://html5-lh.akamaihd.net/i/html5_01@182967/master.m3u8 -#EXTINF:-1 tvg-id="HSN.us",HSN (720p) -https://lshsn1usott-lh.akamaihd.net/i/lshsn1usott_01@838842/master.m3u8 -#EXTINF:-1 tvg-id="HTV1HoustonTelevision.us",HTV 1 Houston Television (720p) -https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-a/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV2HoustonTelevision.us",HTV 2 Houston Television (720p) -https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-b/playlist.m3u8 -#EXTINF:-1 tvg-id="HumraazTV.us",Humraaz TV [Not 24/7] -https://cdn61.liveonlineservices.com/hls/humraaz.m3u8 -#EXTINF:-1 tvg-id="HuntChannel.us",Hunt Channel (1080p) -https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/index.m3u8 -#EXTINF:-1 tvg-id="HuntChannel.us",Hunt Channel (1080p) [Offline] -https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/mono.m3u8 -#EXTINF:-1 tvg-id="IDG.us",IDG (720p) -https://a.jsrdn.com/broadcast/529a360c04/+0000/c.m3u8 -#EXTINF:-1 tvg-id="IMPACTWrestling.us",IMPACT! Wrestling (1080p) -https://d2p372oxiwmcn1.cloudfront.net/hls/main.m3u8 -#EXTINF:-1 tvg-id="IndTVUSA.us",Ind TV USA (720p) -https://t06858-lh.akamaihd.net/i/t06858a_1@719164/master.m3u8 -#EXTINF:-1 tvg-id="InfoWars.us",InfoWars (720p) -http://wpc.9ec1.edgecastcdn.net/249EC1/infowarshd-edgecast/hd720.m3u8 -#EXTINF:-1 tvg-id="InfoWars.us",InfoWars (720p) -https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8 -#EXTINF:-1 tvg-id="InspirationTV.us",Inspiration TV (288p) -https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/index_2_av-p.m3u8 -#EXTINF:-1 tvg-id="InspirationTV.us",Inspiration TV (360p) -https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/master.m3u8 -#EXTINF:-1 tvg-id="",Ion 8 Christiansted VI (WSVI-TV) (300p) [Not 24/7] -https://dcunilive30-lh.akamaihd.net/i/dclive_1@534251/master.m3u8 -#EXTINF:-1 tvg-id="IraneFarda.us",Irane Farda (576p) [Not 24/7] -http://51.210.199.53/hls/stream.m3u8 -#EXTINF:-1 tvg-id="IslandEscape.us",Island Escape (720p) -https://a.jsrdn.com/broadcast/41e3e6703e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="ISN.us",ISN (1080p) -https://cpdc101-lh.akamaihd.net/i/ISNCPDCMB1_1@314337/master.m3u8 -#EXTINF:-1 tvg-id="JBS.us",JBS (304p) [Not 24/7] -https://uni8rtmp.tulix.tv/shalomtv-pc/smil:shalomtv.smil/master.m3u8 -#EXTINF:-1 tvg-id="JBS.us",JBS (404p) [Not 24/7] -http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/master.m3u8 -#EXTINF:-1 tvg-id="JBS.us",JBS (404p) [Not 24/7] -http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JewelryTV.us",Jewelry Television (720p) -https://cdn3.wowza.com/1/eUdsNEcyMmRvckor/K3pydHZw/hls/live/playlist.m3u8 -#EXTINF:-1 tvg-id="JewelryTV.us",Jewelry Television (720p) [Not 24/7] -https://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8 -#EXTINF:-1 tvg-id="KCKSLD12.us",Jewelry TV (KCKS-LD12) (480p) -https://cdn.igocast.com/channel12_hls/channel12_master.m3u8 -#EXTINF:-1 tvg-id="JewishLifeTV.us",Jewish Life TV (480p) [Not 24/7] -https://d3svwuchx5fp62.cloudfront.net/rtplive/smil:jltv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (432p) -https://johnnycarson-zype.amagi.tv/playlistR432p.m3u8 -#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) -http://d3lzjtrf5mvf3p.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) -https://vcnovation.teleosmedia.com/linear/ovation/journy/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) -https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8 -#EXTINF:-1 tvg-id="JudgeKarensCourt.us",Judge Karen's Court (540p) -https://cb5273f195a147f2bcf23544e4495f66.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5eb1e7261474f9020c06f9ec/playlist.m3u8 -#EXTINF:-1 tvg-id="JuventudRenovadaenelEspirituSanto.us",Juventud Renovada en el Espiritu Santo (720p) [Not 24/7] -http://teleredmcp.com:1935/jrestv/jrestv/playlist.m3u8 -#EXTINF:-1 tvg-id="KalemehTV.us",Kalemeh TV (1080p) [Not 24/7] -http://184.75.208.98:1935/live/kalemeh/playlist.m3u8 -#EXTINF:-1 tvg-id="KartoonCircus.us",Kartoon Circus (720p) -https://simultv.s.llnwi.net/n4s4/KartoonCircus/interlink.m3u8 -#EXTINF:-1 tvg-id="KBPSports.us",KBP Sports (720p) [Not 24/7] -https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="KBSVAssyriaSat.us",KBSV/AssyriaSat (720p) [Not 24/7] -http://66.242.170.53/hls/live/temp/index.m3u8 -#EXTINF:-1 tvg-id="",KCRT-TV 28 Richmond CA (KCRT) (360p) -http://granicusliveus3-a.akamaihd.net/richmond/G0034_002/playlist.m3u8 -#EXTINF:-1 tvg-id="KFSNNews.us",KFSN News (1080p) [Not 24/7] -https://api.abcotvs.com/v3/kfsn/m3u8/url?id=432725&key=yuemix -#EXTINF:-1 tvg-id="KGOTV.us",KGO-TV News (720p) -https://content.uplynk.com/channel/ext/4413701bf5a1488db55b767f8ae9d4fa/kgo_24x7_news.m3u8 -#EXTINF:-1 tvg-id="KidsFlix.us",KidsFlix (720p) [Not 24/7] -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50 -#EXTINF:-1 tvg-id="KoolTV.us",Kool TV (1080p) [Timeout] -http://209.182.219.50:1935/roku/roku/playlist.m3u8 -#EXTINF:-1 tvg-id="KTLATV.us",KTLA 5 Los Angeles CA (144p) -https://content.uplynk.com/channel/6cbf2d32a5384dc1b787539b1102433c.m3u8 -#EXTINF:-1 tvg-id="KTRKTVNews.us",KTRK TV News (720p) -https://content.uplynk.com/channel/ext/1efe3bfc4d1e4b5db5e5085a535b510b/ktrk_24x7_news.m3u8 -#EXTINF:-1 tvg-id="KVVBTV.us",KVVB-TV 33 Victor Valley (1080p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8 -#EXTINF:-1 tvg-id="KweliTV.us",Kweli TV (720p) -https://a.jsrdn.com/broadcast/9c897f1973/+0000/c.m3u8 -#EXTINF:-1 tvg-id="LaMegaMundial.us",La Mega Mundial (720p) [Not 24/7] -http://68.235.35.243:1935/lamegamundial/lamegamundial2/playlist.m3u8 -#EXTINF:-1 tvg-id="LaMegaMundial.us",La Mega Mundial (720p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/lamegamundial/lamegamundial2/playlist.m3u8 -#EXTINF:-1 tvg-id="LakeHavasuCity4.us",Lake Havasu City 4 (240p) [Not 24/7] -https://granicusliveus3-a.akamaihd.net/lakehavasucity/G0643_002/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoThaiUSTV.us",Lao-Thai US TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laothaius.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LatinosNCTV.us",Latinos NCTV (480p) [Not 24/7] -https://live.latinosnc.tv:1443/MRR/live/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) -https://lawcrime.s.llnwi.net/h72/lawcrimech2/playlist_scte.m3u8 -#EXTINF:-1 tvg-id="LaxSportsNetworkTV.us",Lax Sports Network TV (720p) -https://1840769862.rsc.cdn77.org/FTF/LSN_SCTE.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVEducational.us",Leominster TV Educational (720p) -http://edu.leominster.tv/Edu/smil:Edu.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVGovernment.us",Leominster TV Government (720p) -http://gov.leominster.tv/Gov/smil:Gov.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LeominsterTVPublic.us",Leominster TV Public (720p) [Not 24/7] -http://gov.leominster.tv/Pub/smil:Pub.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LevelOne.us",Level One [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5af61be7d5eeee7af3d1db47/playlist.m3u8 -#EXTINF:-1 tvg-id="LexTV.us",Lex TV (720p) -https://granicusliveus2-a.akamaihd.net/lfucg/G0264_002/playlist.m3u8 -#EXTINF:-1 tvg-id="Lifestyle.us",Lifestyle (720p) [Not 24/7] -https://bozztv.com/36bay2/gusa-lifestyle/index.m3u8 -#EXTINF:-1 tvg-id="LifevisionTV.us",LifevisionTV (720p) [Not 24/7] -https://uni5rtmp.tulix.tv/lifevision/lifevision.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LNKTVCity.us",LNKTV City (1080p) -http://5tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LNKTVEducation.us",LNKTV Education (1080p) -http://80tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LNKTVHealth.us",LNKTV Health (1080p) -http://10tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 -#EXTINF:-1 tvg-id="LogosTV.us",Logos TV (720p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logostv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTVEnglish.us",Logos TV English (1080p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoseng/playlist.m3u8 -#EXTINF:-1 tvg-id="LogosTV.us",Logos TV Mubasher (1080p) [Not 24/7] -https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoshym/playlist.m3u8 -#EXTINF:-1 tvg-id="LoneStar.us",Lone Star (960p) -https://a.jsrdn.com/broadcast/5oWx2VgEmK/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Loop80sWest.us",Loop 80s West (1080p) [Geo-blocked] -https://a500d902bdf94ea69ad343720add6036.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/80s_party_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="Loop90sWest.us",Loop 90s West (1080p) [Geo-blocked] -https://7626362bfa104137aded60d8d7e72ff5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/90s_kids_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopBeastModeWest.us",Loop Beast Mode West (1080p) [Geo-blocked] -https://884a4c762d524aad88d463477402fb7d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopBedroomWest.us",Loop Bedroom West (1080p) [Geo-blocked] -https://3bbe22c035b4409d80f997adc8ad33ee.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/bedroom_beats_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopElectronicaWest.us",Loop Electronica West (1080p) [Geo-blocked] -https://0bdf3efc906045538c63468aa2f86a96.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopFarOutWest.us",Loop Far Out West (1080p) [Geo-blocked] -https://957d71ce01dc447384d3978d3cdc55d9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/that_70s_channel_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopFlashbackWest.us",Loop Flashback West (1080p) [Geo-blocked] -https://ea86081fb9454be9b3b50037f9117024.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/like_yesterday_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopWest.us",Loop Hip-Hop West (1080p) [Geo-blocked] -https://e4d2547e0c8c492a883054acd48276be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopHottestEast.us",Loop Hottest East (1080p) [Geo-blocked] -https://2e9a0ef101a14c2ebe97c713bc5340be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hottest_of_the_hot_v2_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopLatinWest.us",Loop Latin West (1080p) [Geo-blocked] -https://c3b9df023def467086d10677827171f8.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/latin_x_pop_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopPartyWest.us",Loop Party West (1080p) [Geo-blocked] -https://1d79349342334eb0bdeddd168b5c6e1a.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopRBWest.us",Loop R&B West (1080p) [Geo-blocked] -https://0cf4f660964046daa9e0b7b6467a4e84.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hot_rnb_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopSynapseWest.us",Loop Synapse West (1080p) [Geo-blocked] -https://2807722353b745629456a555257b16bc.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTexasTunesWest.us",Loop Texas Tunes West (1080p) [Geo-blocked] -https://2fb88e730c2647d69629c6f90b0b98b9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/texas_sized_hits_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTGIFWest.us",Loop TGIF West (1080p) [Geo-blocked] -https://480e67fe68b64c35ae48b77192cb1fdf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/friday_feels_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopThatsHotWest.us",Loop That's Hot West (1080p) [Geo-blocked] -https://dccd6216f2c9471399015e69d64818cd.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/thats_hot_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopTrendingWest.us",Loop Trending West (1080p) [Geo-blocked] -https://3d26c463850c48c788975a9aad86c508.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/trending_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopUnwindWest.us",Loop Unwind West (1080p) [Geo-blocked] -https://8c455e94c5ff44d0ada529dffef58ae5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/unwind_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="LoopYachtRockWest.us",Loop Yacht Rock West (1080p) [Geo-blocked] -https://90a0d12cbaff4b959ea24bb8a3560adf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/yacht_rock_littlstar/master.m3u8 -#EXTINF:-1 tvg-id="Loupe4K.us",Loupe 4K (2160p) -http://d2dw21aq0j0l5c.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNature4K.us",Love Nature 4K [Offline] -https://d27r4t30huw0iy.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveWorldUSA.us",LoveWorld USA (1080p) [Offline] -https://loveworldusa-lh.akamaihd.net/i/lwusa2_1@514985/master.m3u8 -#EXTINF:-1 tvg-id="LuckyDog.us",Lucky Dog [Offline] -http://d1gsmhzkyjhxg4.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="MadDogandMerrill.us",Mad Dog and Merrill (540p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-mwg/playlist.m3u8 -#EXTINF:-1 tvg-id="MajestadTelevision.us",Majestad Televisión (480p) [Not 24/7] -https://5b3050bb1b2d8.streamlock.net/majestadtv/majestadtv/playlist.m3u8 -#EXTINF:-1 tvg-id="MarvelHQ.us",Marvel HQ (1080p) [Timeout] -https://feed.play.mv/live/10005200/niZoVrR2vD/master.m3u8 -#EXTINF:-1 tvg-id="MCN6.us",MCN6 (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MAIN.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="MCN6ArtsChannel.us",MCN6 Arts Channel (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_COMEDY.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="MCN6MusicChannel.us",MCN6 Music Channel (1080p) [Not 24/7] -https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MUSIC.smil/Playlist.m3u8 -#EXTINF:-1 tvg-id="",MeTV Tallahassee FL (WCTV2) (480p) [Offline] -https://5e6cea03e25b6.streamlock.net/live/WCTVDT2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MGMHDUSA.us",MGM HD USA (576p) -http://c0.cdn.trinity-tv.net/stream/uq2t763988wmx82xs37vrzrtrvaz686y22jd9gcgvgbhu88g6dntdb82kggx9zgvpvwj5wisyi5mgwwgdqzm7d6xbf7yvctwzvhsu3t57ms3wa4qxwyeuqk3ayrdwx3k2b6cdtnrydx9qa3ezqzea===.m3u8 -#EXTINF:-1 tvg-id="MiamiCityTV.us",Miami City TV (360p) [Not 24/7] -https://granicusliveus9-a.akamaihd.net/miamifl/G2076_003/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTV.us",Miami TV (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/miamitv/smil:miamitvWEB/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVJennyLive.us",Miami TV Jenny Live (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/JennyLive/JennyLive/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVLatino.us",Miami TV Latino (720p) -https://5ee7c2b857b7f.streamlock.net/latino/latino/playlist.m3u8 -#EXTINF:-1 tvg-id="MiamiTVMexico.us",Miami TV México (720p) [Not 24/7] -https://59ec5453559f0.streamlock.net/mexicotv/smil:miamitvmexicoROKU/playlist.m3u8 -#EXTINF:-1 tvg-id="MihanTV.us",Mihan TV (720p) [Not 24/7] -http://iptv.mihantv.com/live/playlist.m3u8 -#EXTINF:-1 tvg-id="MillenniumTV24.us",Millennium TV 24 (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/mnews24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MillenniumTVUSA.us",Millennium TV USA (1080p) [Not 24/7] -https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/millenniumtv-odr-up2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="MissionTV.us",Mission TV (720p) [Not 24/7] -http://stream.missiontv.com:1935/live/missiontv_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MissionTV.us",Mission TV (1080p) [Not 24/7] -https://6096a9cf11ae5.streamlock.net:1943/live/missiontv/playlist.m3u8 -#EXTINF:-1 tvg-id="MLBNetwork.us",MLB Network [Offline] -https://hlslive-akc-med1.media.mlb.com/ls01/mlbnetwork/NETWORK_LINEAR_1/master_wired.m3u8 -#EXTINF:-1 tvg-id="MMAJunkie.us",MMA Junkie (720p) -https://a.jsrdn.com/broadcast/80f6ba72c8/+0000/c.m3u8 -#EXTINF:-1 tvg-id="MohabatTV.us",Mohabat TV (540p) -http://media.mohabat.tv:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="MonarchChannel.us",Monarch Channel (480p) -https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Motorcyclist.us",Motorcyclist (720p) [Offline] -https://a.jsrdn.com/broadcast/256ad9e679/+0000/c.m3u8 -#EXTINF:-1 tvg-id="Movee4U.us",Movee 4U (480p) [Not 24/7] -https://broadcast.mytvtogo.net/movee4u/movee4u/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieKingdom.us",Movie Kingdom (720p) -https://a.jsrdn.com/broadcast/e9b4093a41/+0000/c.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (480p) -http://encodercdn1.frontline.ca/encoder182/output/MSNBC/playlist.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (720p) -http://encodercdn1.frontline.ca/encoder182/output/MSNBC_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="MSNBC.us",MSNBC (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/msnbc/playlist.m3u8 -#EXTINF:-1 tvg-id="MTVHitsEurope.us",MTV Hits Europe (576p) [Offline] -http://188.40.68.167/russia/mtv_hits/playlist.m3u8 -#EXTINF:-1 tvg-id="MTVHitsLatinoamerica.us",MTV Hits Latinoamérica (576p) [Timeout] -http://209.91.213.10:8088/play/a00z -#EXTINF:-1 tvg-id="MTV.us",MTV Latinoamérica (1080p) [Timeout] -http://209.91.213.10:8088/play/a01a -#EXTINF:-1 tvg-id="WISCDT2.us",My Madison TV (WISC-DT2) (720p) -https://ad-playlistserver.aws.syncbak.com/playlist/13613390/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkdyYXkyMDE2MDgyOSJ9.eyJtaWQiOjEzNjEzMzkwLCJtZDUiOiI2Y2M5MzczYjIxZWIwNzQ4ZDA0YTRlYzYyMjU2YjBhMiIsImlhdCI6MTQ5NzM4MTU5NywiaXNzIjoiU3luY2JhayIsInN1YiI6IkdyYXkifQ.qJPiMCbnGjAn9wgPrGjVl3M9Xfc4CVSyoZTZ5OH-1jo -#EXTINF:-1 tvg-id="Mythos.us",Mythos (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-mythos/playlist.m3u8 -#EXTINF:-1 tvg-id="",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7] -http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) -http://iphone-streaming.ustream.tv/uhls/6540154/streams/live/iphone/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) [Not 24/7] -https://hls.ums.ustream.tv/playlist/directhls/channel/6540154/playlist.m3u8?sgn=31d0dfb847c358d4cedcd2256dc4e1c42a7f13a7 -#EXTINF:-1 tvg-id="NASATVISSViews.us",NASA TV ISS Views (480p) [Not 24/7] -http://iphone-streaming.ustream.tv/uhls/9408562/streams/live/iphone/playlist.m3u8 -#EXTINF:-1 tvg-id="NASATVMedia.us",NASA TV Media (720p) -https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master.m3u8 -#EXTINF:-1 tvg-id="NASATVPublic.us",NASA TV Public (720p) -https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.us",National Geographic Abu Dhabi (1080p) -https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicEast.us",National Geographic East (720p) [Geo-blocked] -https://livecdn.fptplay.net/foxlive/natgeohd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",National Geographic España [Timeout] -http://5.255.90.184:2001/play/a04i -#EXTINF:-1 tvg-id="NationalGeographicWild.us",National Geographic Wild [Offline] -https://cdn1.mobiletv.bg/T5/ng_wild_hd/ng_wild_hd_794613_850k.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildMiddleEast.us",National Geographic Wild Middle East (720p) [Not 24/7] -http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8 -#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us",National Geographic Wild Russia (1080p) [Not 24/7] -https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8 -#EXTINF:-1 tvg-id="NAUTVNorthernArizonaUniversity.us",NAU-TV Northern Arizona University (720p) [Not 24/7] -http://stream.ec.nau.edu/live/amlst:channelfour/playlist.m3u8 -#EXTINF:-1 tvg-id="NBATV.us",NBA TV (720p) [Not 24/7] -https://www.livedoomovie.com/02_nbahd_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="",NBC 2 Buffalo NY (WGRZ) (1080p) -https://livevideo01.wgrz.com/hls/live/2016286/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="KNBCNews.us",NBC4 KNBC-TV News (1080p) [Not 24/7] -https://knbclive-f.akamaihd.net/i/LA_STREAM1@13988/master.m3u8 -#EXTINF:-1 tvg-id="",NBC 4 News Washington DC (WRC-TV) (720p) [Not 24/7] -https://wrclive-f.akamaihd.net/i/wrcb1_1@46880/master.m3u8 -#EXTINF:-1 tvg-id="WNBCNews.us",NBC4 WNBC-TV New York News (1080p) [Not 24/7] -https://wnbclive-f.akamaihd.net/i/NY_STREAM1@13992/master.m3u8 -#EXTINF:-1 tvg-id="WRCNews.us",NBC4 WRC-TV Washington News (1080p) -https://wrclive-f.akamaihd.net/i/DC_STREAM1@22925/master.m3u8 -#EXTINF:-1 tvg-id="KXASNews.us",NBC5 KXAS-TV News Dallas TX (1080p) [Not 24/7] -https://kxaslive-f.akamaihd.net/i/DALLAS_STREAM5@5495/master.m3u8 -#EXTINF:-1 tvg-id="",NBC 5 News Chicago IL (WMAQ-TV) (1080p) -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM1@22923/master.m3u8 -#EXTINF:-1 tvg-id="",NBC 5 Seattle WA (KING) (1080p) -https://livevideo01.king5.com/hls/live/2006665/live/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 5 St. Louis MO (KSDK) (1080p) -https://livevideo01.ksdk.com/hls/live/2014965/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 6 College Station TX (KAGS) (1080p) -https://livevideo01.kagstv.com/hls/live/2016283/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 6 Waco TX (KCEN) (1080p) -https://livevideo01.kcentv.com/hls/live/2017155/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="WTVJNews.us",NBC6 WTVJ-TV News Miami FL (1080p) [Not 24/7] -https://wtvjlive-f.akamaihd.net/i/MIAMI_STREAM1@19309/master.m3u8 -#EXTINF:-1 tvg-id="",NBC 7 Boise ID (KTVB) (1080p) -https://livevideo01.ktvb.com/hls/live/2014542/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 8 Portland OR (KGW) (1080p) -https://livevideo01.kgw.com/hls/live/2015506/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 9 Denver CO (KUSA) (1080p) -https://livevideo01.9news.com/hls/live/2014548/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 10 Knoxville TN (WBIR-TV) (1080p) -https://livevideo01.wbir.com/hls/live/2016515/newscasts/live-2000.m3u8 -#EXTINF:-1 tvg-id="",NBC 11 Alive Atlanta GA (WXIA-TV) (1080p) -https://livevideo01.11alive.com/hls/live/2015499/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 11 Minneapolis MN (KARE) (1080p) -https://livevideo01.kare11.com/hls/live/2014544/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 11 Pittsburgh PA (WPXI) (720p) -https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wpxitv-hls-v3/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 11 San Jose CA (KNTV) (416p) [Offline] -https://kntvlive-f.akamaihd.net/i/kntvb1_1@15530/master.m3u8 -#EXTINF:-1 tvg-id="",NBC 12 Phoenix AZ (KPNX) (1080p) -https://livevideo01.12news.com/hls/live/2015501/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 13 Indianapolis IN (WTHR) (1080p) -https://livevideo01.wthr.com/hls/live/2013835/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 15 Madison WI (WMTV) (720p) -https://ad-playlistserver.aws.syncbak.com/playlist/899088/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsImtpZCI6IkdyYXkyMDE2MDgyOSIsInN1YiI6IioiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE3OTAzNjkxMDUsImlzcyI6IldMUyIsIm1kNSI6ImJhZTU4Y2ZlZWM2NmU1MjZkNmVjZmE1YmUzNTQxMzQ4IiwibWlkIjoiODk5MDg4In0.vBWkHmqS3z3dpq8UWfbk4wFd-vQlj6B0up-rpt7X_7Q -#EXTINF:-1 tvg-id="",NBC 26 Green Bay WI (WGBA) (720p) -https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8 -#EXTINF:-1 tvg-id="",NBC 36 Charlotte NC (WCNC-TV) (1080p) -https://livevideo01.wcnc.com/hls/live/2015505/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC 207 Bangor Portland ME (WLBZ) (1080p) -https://livevideo01.newscentermaine.com/hls/live/2014540/newscasts/live/wcsh.m3u8 -#EXTINF:-1 tvg-id="",NBC / ABC Jacksonville FL (WTLV) (1080p) -https://livevideo01.firstcoastnews.com/hls/live/2014550/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="" status="error",NBC Boston MA (WBTS-CD1) (480p) [Not 24/7] -http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Boston MA (WBTS-CD1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Buffalo NY (WGRZ1) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NBCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="NBCGolfChannel.us",NBC Golf Channel (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/golf/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC New York (WNBC-DT1) (720p) -http://38.91.57.12:2082/nbc/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) -http://nbcnews2.akamaized.net/hls/live/723426-b/NBCNewsPlaymaker24x7Linear99a3a827-ua/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) [Offline] -https://nbcnewshls.akamaized.net/hls/live/2011820/nnn_live1/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent1.us",NBC News Now Event 1 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live11@183427/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent2.us",NBC News Now Event 2 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live12@187393/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent3.us",NBC News Now Event 3 (360p) -https://nbcnews-lh.akamaihd.net/i/nbc_live13@187394/master.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNowEvent4.us",NBC News Now Event 4 (720p) -https://nbcnews-lh.akamaihd.net/i/nbc_live14@187395/master.m3u8 -#EXTINF:-1 tvg-id="",NBC NewsWest 9 Midland-Odessa TX (KWES) (1080p) -https://livevideo01.newswest9.com/hls/live/2017380/newscasts/live.m3u8 -#EXTINF:-1 tvg-id="",NBC Seattle WA (KING-TV1) (480p) -http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Seattle WA (KING-TV1) (720p) -http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Spokane WA (KHQ-TV1) (480p) -http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Spokane WA (KHQ-TV1) (720p) -http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",NBC Tallahassee FL (WTWC-TV1) (720p) -https://5e6cea03e25b6.streamlock.net/live/WTWC-NB.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WVITNews.us",NBC-CT WVIT-TV News Hartford CT (1080p) -https://wvitlive-f.akamaihd.net/i/HARTFORD_STREAM1@22924/master.m3u8 -#EXTINF:-1 tvg-id="NBCLX.us",NBCLX (1080p) -https://lxlive-lh.akamaihd.net/i/LX_LIVE@148206/master.m3u8 -#EXTINF:-1 tvg-id="NegahTV.us",Negah TV (720p) [Not 24/7] -https://iptv.negahtv.com/negahtv/playlist2/index.m3u8 -#EXTINF:-1 tvg-id="NESNNational.us",NESN National (1080p) -https://bcovlive-a.akamaihd.net/bea11a7dfef34b08be06aaca4a72bcdf/us-east-1/6141518204001/playlist.m3u8 -#EXTINF:-1 tvg-id="NOTV.us",New Orleans Television (NOTV) (720p) -http://media4.tripsmarter.com:1935/LiveTV/NOTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="NOTV.us",New Orleans Television (NOTV) (720p) -https://5b0f5374bdf0c.streamlock.net:444/LiveTV/NOTVHD/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) -https://nmxairy.akamaized.net/hls/live/529965/Live_1/index.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (480p) [Not 24/7] -http://broadcastny.yournewsnet.com:8081/master/newsnetweb/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (480p) [Offline] -https://broadcaster1.prolivestream.net:8083/onair/newsnetweb/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsNet.us",NewsNet (720p) [Not 24/7] -https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1311088/playlist.m3u8 -#EXTINF:-1 tvg-id="",NewsNet (KCKS-LD2) (480p) [Not 24/7] -https://cdn.igocast.com/channel2_hls/channel2_master.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) -https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) -https://content.uplynk.com/channel/4bb4901b934c4e029fd4c1abfc766c37.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) -https://547f72e6652371c3.mediapackage.us-east-1.amazonaws.com/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) -https://d3ra88okaj5j4j.cloudfront.net/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 -#EXTINF:-1 tvg-id="NewsyTopStories.us",Newsy Top Stories (720p) -https://content.uplynk.com/channel/387c33ce09da4de699668c0c7d1244a8.m3u8 -#EXTINF:-1 tvg-id="NFLNetwork.us",NFL Network (720p) [Not 24/7] -http://s1.mysportz.tv:2082/nfl/playlist.m3u8 -#EXTINF:-1 tvg-id="NFLNetwork.us",NFL Network (720p) [Not 24/7] -http://s1.mysportz.tv:2082/nfl/playlist.m3u8 -#EXTINF:-1 tvg-id="NickJrEast.us",Nick Jr East [Offline] -https://cdn1.mobiletv.bg/T5/bit/bit_794613_850k.m3u8 -#EXTINF:-1 tvg-id="NickJrLatinoamerica.us",Nick Jr Latinoamérica (480p) [Timeout] -http://201.168.205.12:8000/play/a0ck/index.m3u8 -#EXTINF:-1 tvg-id="NickJrTooUK.us",Nick Jr Too UK (576p) [Geo-blocked] -http://212.224.98.213:2200/EX/Nick_Jr_Too-uk/index.m3u8?token= -#EXTINF:-1 tvg-id="NickelodeonAustralia.us",Nickelodeon Australia (576p) -http://c0.cdn.trinity-tv.net/stream/7tsewn83ddjifz69us9je7eftbm5nuausb4dsvz9g5aydin9672n734qbb9jgcfpiqtpwudvs9dpi2udjc3eh4h462eie5azjmfbfgfjeqfuhjmmgx9zuj736ijg7nffhf8rviq5svkgxbp639y9nfgc.m3u8 -#EXTINF:-1 tvg-id="NickelodeonEast.us",Nickelodeon East (360p) [Geo-blocked] -http://31.220.41.88:8081/live/us-nick.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyDivorceCourt.us",Nosey Divorce Court (480p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e76d1474f9020c06f9ee_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyJerrySpringer.us",Nosey Jerry Springer [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e7f848f1ff2e1d2555a2_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyJudgeKarensCourt.us",Nosey Judge Karen's Court (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e7261474f9020c06f9ec_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseyMaury.us",Nosey Maury [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e88458ad7801fa2cfc2e_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NoseySteveWilkos.us",Nosey Steve Wilkos [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e84c95ee0253b97679d7_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NothingScripted.us",Nothing Scripted (720p) -https://30a-tv.com/NothingScripted.m3u8 -#EXTINF:-1 tvg-id="NRBTV.us",NRB TV (480p) -https://uni6rtmp.tulix.tv/nrbnetwork/myStream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NYXT.us",NYXT (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/19770665/events/5522162/live.m3u8 -#EXTINF:-1 tvg-id="OANEncore.us",OAN Encore (720p) [Geo-blocked] -https://cdn.herringnetwork.com/80A4DFF/oane_oregon/OAN_Encore.m3u8 -#EXTINF:-1 tvg-id="Olelo49.us",Olelo 49 (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/olelo/G0125_009/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo53.us",Olelo 53 (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/olelo/G0125_011/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo54.us",Olelo 54 (720p) [Not 24/7] -https://granicusliveus12-a.akamaihd.net/olelo/G0125_012/playlist.m3u8 -#EXTINF:-1 tvg-id="Olelo55.us",Olelo 55 (720p) [Not 24/7] -https://granicusliveus12-a.akamaihd.net/olelo/G0125_013/playlist.m3u8 -#EXTINF:-1 tvg-id="OmidJavedan.us",Omid Javedan (720p) [Not 24/7] -http://livestream.5centscdn.com/shaditv/23abe62a446fc05ce0a6c810f4045308.sdp/index.m3u8 -#EXTINF:-1 tvg-id="OURTV.us",Opportunities in Urban Renaissance Television (OURTV) (720p) -https://hls-cdn.tvstartup.net/barakyah-channel/play/mp4:ourtvedge/playlist.m3u8 -#EXTINF:-1 tvg-id="OrangeTV.us",Orange TV (720p) -http://otv3.ocfl.net:1936/OrangeTV/smil:OrangeTV.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (720p) [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7outdoor.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (720p) [Geo-blocked] -https://livecdn.fptplay.net/world/outdoorfhd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorChannel.us",Outdoor Channel (1080p) [Offline] -http://ott.watch/stream/E7Q3UVKI5H/211.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider [Geo-blocked] -https://i.mjh.nz/au/Sydney/tv.7pac12.m3u8 -#EXTINF:-1 tvg-id="KNETCD2.us",Panarmenian TV (KNET-CD 25.2) (360p) [Not 24/7] -http://granicusliveus6-a.akamaihd.net/torrance/G0057_005/playlist.m3u8 -#EXTINF:-1 tvg-id="ParamountComedyRussia.us",Paramount Comedy Russia [Timeout] -http://45.145.32.11:20007/paramount_comedy/video.m3u8 -#EXTINF:-1 tvg-id="PartyTymeKaraoke.us",Party Tyme Karaoke (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=64 -#EXTINF:-1 tvg-id="PayameAfghanTV.us",Payam-e-Afghan TV (480p) [Not 24/7] -http://g5nl6xx5lpq6-hls-live.5centscdn.com/live1234/2621b29e501b445fabf227b086123b70.sdp/mono.m3u8 -#EXTINF:-1 tvg-id="PayvandTV.us",Payvand TV (720p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/ucur1/Payvand/playlist.m3u8 -#EXTINF:-1 tvg-id="PBCTapeshTV.us",PBC Tapesh TV (720p) [Offline] -https://iptv.tapesh.tv/tapesh/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS 39 Allentown PA (WLVT) (720p) -https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS 39 Extra Philadelphia PA (WPPT) (480p) -https://forerunnerrtmp.livestreamingcdn.com/output18-2/output18-2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED-TV) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED-TV) (720p) -http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 -#EXTINF:-1 tvg-id="",PBS Create Los Angeles CA (KLCS-DT3) (720p) [Geo-blocked] -https://d1mxoeplf1ak5a.cloudfront.net/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Create Tallahassee FL (WFSU-TV3) (480p) -https://5e6cea03e25b6.streamlock.net/live/CREATE.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Dallas TX (KERA) (1080p) [Geo-blocked] -https://kera-flash.streamguys1.com/live/eventStream/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS KET Louisville KY (WKMJ-TV) (720p) -https://2-fss-1.streamhoster.com/pl_134/amlst:200914-1282960/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSKidsAKST.us",PBS Kids Alaska (1080p) -https://livestream.pbskids.org/out/v1/2963202df0c142c69b5254a546473308/akst.m3u8 -#EXTINF:-1 tvg-id="PBSKidsEST.us",PBS Kids Eastern/Central (720p) -https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8 -#EXTINF:-1 tvg-id="PBSKidsEST.us",PBS Kids Eastern/Central (1080p) -https://livestream.pbskids.org/out/v1/1e3d77b418ad4a819b3f4c80ac0373b5/est.m3u8 -#EXTINF:-1 tvg-id="PBSKidsHAST.us",PBS Kids Hawaii (1080p) -https://livestream.pbskids.org/out/v1/19d1d62bf61b4aea9ec20f83b6450a4e/hast.m3u8 -#EXTINF:-1 tvg-id="PBSKidsMST.us",PBS Kids Mountain (1080p) -https://livestream.pbskids.org/out/v1/00a3b9014fa54c40bee6ca68a104a8a4/mst.m3u8 -#EXTINF:-1 tvg-id="PBSKidsPST.us",PBS Kids Pacific (1080p) -https://livestream.pbskids.org/out/v1/c707b9310f2848de849b336f9914adbc/pst.m3u8 -#EXTINF:-1 tvg-id="MPT.us" status="online",PBS MPT Baltimore MD (WMPB) (1088p) -https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS-TV1) (480p) -http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS-TV1) (720p) -http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS-TV1) (480p) -http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS-TV1) (720p) -http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",PBS Tallahassee FL (WFSU-TV1) (720p) -https://5e6cea03e25b6.streamlock.net/live/WFSU-PBS.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldChannel.us",PBS World Channel (480p) -https://cs.ebmcdn.net/eastbay-live-hs-1/apt/mp4:apt-world/playlist.m3u8 -#EXTINF:-1 tvg-id="PCCTV.us",PCC-TV Pinellas County FL (480p) [Not 24/7] -http://granicusliveus1-a.akamaihd.net/pinellas/G1551_004/playlist.m3u8 -#EXTINF:-1 tvg-id="",Peachtree TV Atlanta GA (WPCH-TV1) (480p) -http://encodercdn1.frontline.ca/encoder181/output/Peachtree/playlist.m3u8 -#EXTINF:-1 tvg-id="",Peachtree TV Atlanta GA (WPCH-TV1) (720p) -http://encodercdn1.frontline.ca/encoder181/output/Peachtree_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) -https://d1qaz9zojo1ayt.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) -https://peopletv-oo.akamaized.net/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) -https://peopletv-samsungus-ingest.akamaized.net/playlist.m3u8 -#EXTINF:-1 tvg-id="WPIXTV.us",PIX11 New York NY (720p) -https://content.uplynk.com/channel/98828f7707b84dc496472d5789143df2.m3u8 -#EXTINF:-1 tvg-id="PlantBasedNetwork.us",Plant Based Network (1080p) [Not 24/7] -https://hls-cdn.tvstartup.net/barakyah-channel/live/pbtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Pop.us",Pop (1080p) [Offline] -https://live-poptv-fastly-prod.global.ssl.fastly.net/pop/master.m3u8 -#EXTINF:-1 tvg-id="PopstarTV.us",Popstar! TV (1080p) [Offline] -https://a.jsrdn.com/broadcast/wAlxn4cs/c.m3u8 -#EXTINF:-1 tvg-id="PopularScience.us",Popular Science (720p) [Offline] -https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 -#EXTINF:-1 tvg-id="PositivTV.us",Positiv TV (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8973036/live.m3u8 -#EXTINF:-1 tvg-id="PrimeTimeDrama.us",Prime Time Drama (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-ptd/playlist.m3u8 -#EXTINF:-1 tvg-id="PTLTVNetwork.us",PTL TV Network (720p) -https://morningside-lh.akamaihd.net/i/jblive_1@303354/master.m3u8 -#EXTINF:-1 tvg-id="PureRock.us",Pure Rock [Offline] -http://159.69.56.148:25461/live/PuroRock/PuroRock24-7.com/25.m3u8 -#EXTINF:-1 tvg-id="QuahzTV.us",Quahz TV (360p) -https://t06243a-lh.akamaihd.net/i/t06243a_1@536897/index_750_av-p.m3u8 -#EXTINF:-1 tvg-id="QVC2.us",QVC 2 (720p) -https://lsqvc2us-lh.akamaihd.net/i/lsqvc2us_01@809440/master.m3u8 -#EXTINF:-1 tvg-id="QVC2Deutsch.us",QVC2 (Deutsch) (540p) -http://live.qvcde.simplestreamcdn.com/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVC3.us",QVC 3 (720p) -https://lsqvc3us-lh.akamaihd.net/i/lsqvc3us_01@809459/master.m3u8 -#EXTINF:-1 tvg-id="QVC.us",QVC (720p) -https://lsqvc1uscln-lh.akamaihd.net/i/lsqvc1uscln_01@809410/master.m3u8 -#EXTINF:-1 tvg-id="QVC.us",QVC (720p) -https://lsqvc1usott-lh.akamaihd.net/i/lsqvc1usott_01@838836/master.m3u8 -#EXTINF:-1 tvg-id="QVC.us",QVC (German) (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCBeauty.us",QVC Beauty (German) (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCItalia.us",QVC Italia (540p) -https://qrg.akamaized.net/hls/live/2017383/lsqvc1it/master.m3u8 -#EXTINF:-1 tvg-id="QVCJapan.us",QVC Japan (720p) -https://cdn-live1.qvc.jp/iPhone/1501/1501.m3u8 -#EXTINF:-1 tvg-id="QVCPlus.de",QVC PLUS (540p) -https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCStyleDeutsch.us",QVC Style (Deutsch) (540p) -http://live.qvcde.simplestreamcdn.com/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUK.us",QVC UK (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUK.us",QVC UK (540p) -https://d1txbbj1u9asam.cloudfront.net/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKPlus1.us",QVC UK +1 (540p) -https://live-qvcuk.simplestreamcdn.com/hera/remote/qvcuk_primary_sdi1/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKBeauty.us",QVC UK Beauty (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_beauty_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKExtra.us",QVC UK Extra (540p) -https://live-qvcuk.simplestreamcdn.com/live/qvcuk_extra_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVCUKStyle.us",QVC UK Style (540p) -http://live.qvcuk.simplestreamcdn.com/live/qvcuk_style_clean/bitrate1.isml/live.m3u8 -#EXTINF:-1 tvg-id="QVTV.us",QVTV (720p) -https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioInmaculada.us",Radio Inmaculada (1080p) [Not 24/7] -https://tv2.fastcast4u.com:3594/live/vsojgreilive.m3u8 -#EXTINF:-1 tvg-id="RadioJavan.us",Radio Javan (1080p) -https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioRitmo.us",Radio Ritmo (1080p) [Not 24/7] -https://59514edd5dd8e.streamlock.net/lax/lax/playlist.m3u8 -#EXTINF:-1 tvg-id="RadioUTV.us",Radio U TV (720p) [Not 24/7] -https://cdnlive.radiou.com/LS-ATL-43240-1/index.m3u8 -#EXTINF:-1 tvg-id="RadioyTelevisionMarti.us",Radio y Televisión Martí (1080p) -https://ocb-lh.akamaihd.net/i/ocb_mpls_tvmc1@383606/master.m3u8 -#EXTINF:-1 tvg-id="RealVision.us",Real Vision (720p) -https://a.jsrdn.com/broadcast/2a755012a8/+0000/c.m3u8 -#EXTINF:-1 tvg-id="",Red Apple 21 (Fairfax County Public Schools) (480p) [Not 24/7] -https://cs.ebmcdn.net/eastbay-live-hs-1/fcps/mp4:fcps/playlist.m3u8 -#EXTINF:-1 tvg-id="Reelz.us",Reelz (720p) [Not 24/7] -https://a.jsrdn.com/broadcast/d37066a396/+0000/c.m3u8 -#EXTINF:-1 tvg-id="RelaxingRain.us",Relaxing Rain (720p) -https://a.jsrdn.com/broadcast/76381deeda/+0000/c.m3u8 -#EXTINF:-1 tvg-id="RetroTV.us",Retro TV (720p) -https://bcovlive-a.akamaihd.net/5e531be3ed6c41229b2af2d9bffba88d/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="",Retro TV (KCKS-LD9) (480p) -https://cdn.igocast.com/channel9_hls/channel9_master.m3u8 -#EXTINF:-1 tvg-id="Revn.us",Rev'n (720p) -https://bcovlive-a.akamaihd.net/a71236fdda1747999843bd3d55bdd6fa/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="",Rev'n (KCKS-LD7) (480p) -https://cdn.igocast.com/channel7_hls/channel7_master.m3u8 -#EXTINF:-1 tvg-id="RevelationTV.us",Revelation TV (576p) -https://rtv.cdn.mangomolo.com/rtv/smil:rtv.stream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RevelationTV.us",Revelation TV (576p) -https://rtv.cdn.mangomolo.com/rtv/smil:switch.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="RevryQueer.us",Revry Queer (720p) -https://4aafa23ec0a6477ca31466bd83a115a4.mediatailor.us-west-2.amazonaws.com/v1/master/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-GALXY/mt/galxy/43/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RoosterTeethTV.us",Rooster Teeth TV (1080p) -https://d2klx6wjx7p5vm.cloudfront.net/Rooster-teeth/ngrp:Rooster-teeth_all/playlist.m3u8 -#EXTINF:-1 tvg-id="RunwayTV.us",Runway TV (720p) [Not 24/7] -https://runway-hls.secdn.net/runway-live/play/runway/playlist.m3u8 -#EXTINF:-1 tvg-id="SafeTV.us",SafeTV (1080p) -http://18.191.91.130:1935/live/safetv/playlist.m3u8 -#EXTINF:-1 tvg-id="SamsungWildlife.us",Samsung Wildlife [Offline] -https://d23gend7a1exlu.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Saveur.us",Saveur (720p) [Offline] -https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="SciFi4U.us",Sci-Fi 4U (720p) -https://broadcast.mytvtogo.net/SciFiTV4u/SciFiTV4u/playlist.m3u8 -#EXTINF:-1 tvg-id="Screamfest.us",Screamfest (720p) [Offline] -https://vcnleomarkstudios.teleosmedia.com/stream/leomarkstudios/screamfest/playlist.m3u8 -#EXTINF:-1 tvg-id="ScreenDreams.us",Screen Dreams (720p) -https://content.uplynk.com/channel/3e4b9cada2b74cf18977298804134a36.m3u8 -#EXTINF:-1 tvg-id="SeattleChannel.us",Seattle Channel (720p) [Not 24/7] -https://wowzaprod188-i.akamaihd.net/hls/live/730322/3fa8d5f5/playlist.m3u8 -#EXTINF:-1 tvg-id="SentTVGlobalNetwork.us",Sent TV Global Network (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-stgn/mono.m3u8 -#EXTINF:-1 tvg-id="SGTN49.us",Sent TV Global Network Atlanta (SGTN-49) (720p) [Timeout] -http://stgn-49.tulix.tv/live19/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="Shabakeh7.us",Shabakeh 7 (720p) -http://rtmp.abnsat.com/hls/txministry.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] -http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 -#EXTINF:-1 tvg-id="ShalomTV.us",Shalom TV (720p) [Not 24/7] -https://livestreamcdn.net:444/ShalomTV/ShalomTV/playlist.m3u8 -#EXTINF:-1 tvg-id="ShopHQ.us",Shop HQ (720p) -https://aos01-evine.secure.footprint.net/evine/clean/appleman.m3u8 -#EXTINF:-1 tvg-id="ShopLC.us",Shop LC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/DASH_DASH/Live/channel(ott)/master.mpd -#EXTINF:-1 tvg-id="",Shop LC (KCKS-LD10) (480p) [Not 24/7] -https://cdn.igocast.com/channel10_hls/channel10_master.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) -https://shoutfactory-shoutfactory-zype.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Skwad.us",SKWAD (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=71 -#EXTINF:-1 tvg-id="Slimo.us",Slimo (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2783932c8368bdbfd8a5/playlist.m3u8 -#EXTINF:-1 tvg-id="",Smart Lifestyle TV [Offline] -https://t01587-lh.akamaihd.net/i/t01587SmartLifeStyle_1@692079/master.m3u8 -#EXTINF:-1 tvg-id="Smile.us",Smile (540p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266916/live.m3u8 -#EXTINF:-1 tvg-id="SoniderosTV.us",Sonideros TV (360p) [Not 24/7] -https://tv2.fastcast4u.com:3728/live/soniderostvlive.m3u8 -#EXTINF:-1 tvg-id="SBN.us",SonLife Broadcasting (SBN) (270p) -https://sonlife7-i.akamaihd.net/hls/live/585011/ch7/master.m3u8 -#EXTINF:-1 tvg-id="SBN.us",SonLife Broadcasting (SBN) (720p) [Offline] -https://sonlife5-i.akamaihd.net/hls/live/584631/ch5/master.m3u8 -#EXTINF:-1 tvg-id="SBNGlobal.us",SonLife Broadcasting Global (SBN) (720p) [Offline] -https://sonlife10-i.akamaihd.net/hls/live/585013/ch10/master.m3u8 -#EXTINF:-1 tvg-id="SpikeItalia.us",Spike Italia (480p) [Offline] -https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 -#EXTINF:-1 tvg-id="SpiritTV.us",Spirit TV (720p) [Not 24/7] -https://cdnlive.myspirit.tv/LS-ATL-43240-2/index.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (720p) -https://playout4multirtmp.tulix.tv/live6/Stream1/playlist.m3u8 -#EXTINF:-1 tvg-id="SportskoolTV.us",Sportskool TV (486p) -https://a.jsrdn.com/broadcast/fabeab4b08/+0000/c.m3u8 -#EXTINF:-1 tvg-id="SpydarTV.us",Spydar TV (720p) -https://simultv.s.llnwi.net/n4s4/Spydar/interlink.m3u8 -#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Not 24/7] -https://stadiumlivein-i.akamaihd.net/hls/live/522512/mux_4/master.m3u8 -#EXTINF:-1 tvg-id="",Stadium | Live (720p) [Offline] -https://bcovlive-a.akamaihd.net/e64d564b9275484f85981d8c146fb915/us-east-1/5994000126001/f3d8696d886f4c3b9612132643061743/playlist_ssaiM.m3u8 -#EXTINF:-1 tvg-id="",STAR Channel (Spain) [Offline] -http://45.179.140.242:8000/play/a0h5 -#EXTINF:-1 tvg-id="",STAR Life (Spain) [Offline] -http://45.179.140.242:8000/play/a0h4 -#EXTINF:-1 tvg-id="StockchartsTV.us",StockCharts TV (1080p) [Not 24/7] -https://iptv-all.lanesh4d0w.repl.co/united-states/stockchartstv -#EXTINF:-1 tvg-id="StreetMusic4U.us",Street Music 4U (720p) -https://59d39900ebfb8.streamlock.net/streetmusic/streetmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="StreetMusic4U.us",Street Music 4U (720p) [Not 24/7] -https://broadcast.mytvtogo.net/streetmusic/streetmusic/playlist.m3u8 -#EXTINF:-1 tvg-id="SubRangTV.us",SubRang TV (720p) [Not 24/7] -https://cdn20.liveonlineservices.com/hls/subrang.m3u8 -#EXTINF:-1 tvg-id="SubRangTV.us",SubRang TV (720p) [Not 24/7] -https://cdn61.liveonlineservices.com/hls/subrang.m3u8 -#EXTINF:-1 tvg-id="SwordandShield.us",Sword and Shield (720p) -https://a.jsrdn.com/broadcast/9e63a1b236/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TAGTV.us",TAG TV (1080p) [Not 24/7] -https://cdn30.liveonlineservices.com/hls/tagtv.m3u8 -#EXTINF:-1 tvg-id="TangoTV.us",TangoTV (768p) [Not 24/7] -https://panel.streamingtv-mediacp.online:1936/8066/8066/playlist.m3u8 -#EXTINF:-1 tvg-id="TasteItTV.us",Taste It TV (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5af61f59d5eeee7af3d1db8f/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) -https://tastemadessai.akamaized.net/amagi_hls_data_tastemade-tastemade/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeAustralia.us",Tastemade Australia (1080p) -https://tastemadeintaus-smindia.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) -https://tastemadees16intl-brightcove.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es16intl-brightcove/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TBD.us",TBD. (720p) -https://content.uplynk.com/channel/1831163f97674328ad9f4b4814ed39c5.m3u8 -#EXTINF:-1 tvg-id="TBNArmenia.us",TBN Armenia [Offline] -https://bogtvhdlive-f.akamaihd.net/i/tbn_armenia@198331/master.m3u8 -#EXTINF:-1 tvg-id="TBNAsia.us",TBN Asia (360p) [Not 24/7] -http://210.210.155.35/qwr9ew/s/s39/02.m3u8 -#EXTINF:-1 tvg-id="TBNInspire.us",TBN Inspire (720p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266909/live.m3u8 -#EXTINF:-1 tvg-id="TBNUS.us",TBN US (1080p) [Not 24/7] -https://api.new.livestream.com/accounts/27460990/events/8266920/live.m3u8 -#EXTINF:-1 tvg-id="TBNUkraina.us",TBN Украина (720p) [Timeout] -http://62.32.67.187:1935/WEB_Ukraine24/Ukraine24.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TBSEast.us",TBS East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023172/tbseast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TBSWest.us",TBS West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023174/tbswest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TCMEast.us",TCM East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023186/tcmeast/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="TCMWest.us",TCM West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023187/tcmwest/noslate/VIDEO_1_5128000.m3u8 -#EXTINF:-1 tvg-id="TCT.us",TCT (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/tct -#EXTINF:-1 tvg-id="TCTKids.us",TCT Kids (1080p) [Offline] -https://iptv-all.lanesh4d0w.repl.co/united-states/tctkids -#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us",TD Ameritrade Network (1080p) -https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8 -#EXTINF:-1 tvg-id="",Techno Warehouse (US) (1080p) [Not 24/7] -https://eu-nl-012.worldcast.tv/dancetelevisionthree/dancetelevisionthree.m3u8 -#EXTINF:-1 tvg-id="WZDCCD.us",Telemundo 44 Washington DC (432p) [Offline] -https://wrclive-f.akamaihd.net/i/wrcb2_1@46880/master.m3u8 -#EXTINF:-1 tvg-id="Telemundo.us",Telemundo (416p) [Offline] -https://wmaqlive-f.akamaihd.net/i/wmaqb1_1@24420/master.m3u8 -#EXTINF:-1 tvg-id="WSCVNoticias.us",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] -https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 -#EXTINF:-1 tvg-id="WSCVNoticias.us",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] -https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 -#EXTINF:-1 tvg-id="WSNSNoticias.us",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 -#EXTINF:-1 tvg-id="WSNSNoticias.us",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] -https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 -#EXTINF:-1 tvg-id="TeleRaydo.us",TeleRadyo (720p) -https://abscbn-ono.akamaized.net/midroll/amagi_hls_data_abscbnAAA-abscbn-teleradyo-oando/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Tempe11.us",Tempe 11 AZ (720p) [Not 24/7] -https://granicusliveus1-a.akamaihd.net/tempe/G0355_003/playlist.m3u8 -#EXTINF:-1 tvg-id="TGJunior.us",TG Junior (480p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=31 -#EXTINF:-1 tvg-id="TheArchive.us",The Archive (540p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=74 -#EXTINF:-1 tvg-id="TheBeachChannel.us",The Beach Channel (720p) -https://live.lwcdn.com/live/amlst:ALH8QFrg_all/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/14c063cc-8be5-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips -#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) [Offline] -https://a.jsrdn.com/broadcast/256ccf645e/+0000/c.m3u8 -#EXTINF:-1 tvg-id="KTLADT1.us",The CW Los Angeles CA (KTLA-DT1) (720p) [Not 24/7] -http://trn03.tulix.tv/teleup-N8qwnqgUq2/playlist.m3u8 -#EXTINF:-1 tvg-id="",The CW New York NY (WPIX1) (720p) -http://encodercdn1.frontline.ca/kamino/output/pix11_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="",The CW Tallahassee FL (WTLF1) (720p) [Not 24/7] -https://5e6cea03e25b6.streamlock.net/live/WTLHCW.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) [Geo-blocked] -https://a.jsrdn.com/broadcast/9Kl3dcb5l/c.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) -https://thefirst-distroscale.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="",The Florida Channel Tallahassee FL (WFSU-TV2) (480p) -https://5e6cea03e25b6.streamlock.net/live/WFSU-FL.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheHeartlandNetwork.us",The Heartland Network (720p) -https://bcovlive-a.akamaihd.net/1ad942d15d9643bea6d199b729e79e48/us-east-1/6183977686001/playlist.m3u8 -#EXTINF:-1 tvg-id="TheLoveDestination.us",The Love Destination (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=43 -#EXTINF:-1 tvg-id="TheNowNetwork.us",The Now Network (480p) [Not 24/7] -https://link.frontlayer.com/services/hls2/fl619843/index.m3u8 -#EXTINF:-1 tvg-id="",The Ohio Channel (WOSU-DT3) (720p) -https://5ebe6889de541.streamlock.net/live/stream_10/playlist.m3u8 -#EXTINF:-1 tvg-id="TheOutdoorCookingChannel.us",The Outdoor Cooking Channel (480p) [Offline] -http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/playlist.m3u8 -#EXTINF:-1 tvg-id="TheRetroChannel.us",The Retro Channel (1080p) [Not 24/7] -https://5fd5567570c0e.streamlock.net/theretrochannel/stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TheRockvilleChannel.us",The Rockville Channel (720p) [Not 24/7] -http://granicusliveus12-a.akamaihd.net/rockvillemd/G0458_001/playlist.m3u8 -#EXTINF:-1 tvg-id="TheShoppingChannel.us",The Shopping Channel (720p) -https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 -#EXTINF:-1 tvg-id="TheSoutheasternChannel.us",The Southeastern Channel (540p) -http://147.174.13.196/live/WIFI-1296k-540p/WIFI-1296k-540p.m3u8 -#EXTINF:-1 tvg-id="TheTitanicChannel.us",The Titanic Channel (720p) -https://a.jsrdn.com/broadcast/e6bdcb5ae9/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us",The Wall Street Journal Live (720p) -https://d155hi8td9k2ns.cloudfront.net/out/wapo-medialive3-rtmp/live.m3u8 -#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us",The Wall Street Journal Live (720p) -https://wsjlivehls-lh.akamaihd.net/i/events1_1@174990/master.m3u8 -#EXTINF:-1 tvg-id="ThisTVNetwork.us",This TV Network (480p) -https://cdn.igocast.com/channel11_hls/channel11_master.m3u8 -#EXTINF:-1 tvg-id="TNTEast.us",TNT East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023168/tnteast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TNTSports2Brasil.us",TNT Sports 2 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_02/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports3Brasil.us",TNT Sports 3 Brasil (720p) -https://glxlmn026c.singularcdn.net.br/playout_03/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports4Brasil.us",TNT Sports 4 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_04/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTSports5Brasil.us",TNT Sports 5 Brasil (720p) [Not 24/7] -https://glxlmn026c.singularcdn.net.br/playout_05/playlist.m3u8 -#EXTINF:-1 tvg-id="TNTWest.us",TNT West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023170/tntwest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=37 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (1080p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=36 -#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us",Top Stories by Newsy (720p) -http://content.uplynk.com/channel/04cce35dcd994bbc82d61805ae67a65f.m3u8 -#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us",Top Stories by Newsy (720p) -https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8 -#EXTINF:-1 tvg-id="TPTNow.us",TPT Now KTCA-DT5 (720p) [Not 24/7] -https://api.new.livestream.com/accounts/12638076/events/8488790/live.m3u8 -#EXTINF:-1 tvg-id="TranquilThunderstorms.us",Tranquil Thunderstorms (720p) -https://a.jsrdn.com/broadcast/18b42f9aef/+0000/c.m3u8 -#EXTINF:-1 tvg-id="TrinityChannel.us",Trinity Channel (480p) [Not 24/7] -http://rtmp1.abnsat.com/hls/trinity.m3u8 -#EXTINF:-1 tvg-id="TruTVEast.us",TruTV East (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023176/trueast/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TruTVWest.us",TruTV West (720p) [Geo-blocked] -https://tve-live-lln.warnermediacdn.com/hls/live/2023178/truwest/slate/VIDEO_0_3564000.m3u8 -#EXTINF:-1 tvg-id="TSTV.us",TSTV (720p) -http://tstv-stream.tsm.utexas.edu/hls/livestream_hi/index.m3u8 -#EXTINF:-1 tvg-id="TulalipTV.us",Tulalip TV (720p) [Not 24/7] -https://dcunilive262-lh.akamaihd.net/i/dclive_1@303126/index_150_av-p.m3u8?rebase=on&sd=10 -#EXTINF:-1 tvg-id="",TV33 Detroit Live (WHPR) (720p) [Not 24/7] -http://162.244.81.156:1935/whprtv33roku/whprtv33roku/playlist.m3u8 -#EXTINF:-1 tvg-id="TVLand.us",TV Land (1080p) [Not 24/7] -http://s1.mysportz.tv:2082/TVLand/playlist.m3u8 -#EXTINF:-1 tvg-id="TVBJ1.us",TVB J1 (720p) [Geo-blocked] -https://bcovlive-a.akamaihd.net/f23dfe49b06b45d8878b55b4b6909595/us-west-2/5324042807001/4a3bca5b047b4564b18bb12dfa26ba62/playlist_ssaiM.m3u8 -#EXTINF:-1 tvg-id="TVS.us",TVS (1080p) [Not 24/7] -https://rds3.desdeparaguay.net/tvs/tvs/playlist.m3u8 -#EXTINF:-1 tvg-id="TVSBoxing.us",TVS Boxing (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsboxing/index.m3u8 -#EXTINF:-1 tvg-id="TVSCipherNetwork.us",TVS Cipher Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmystery/index.m3u8 -#EXTINF:-1 tvg-id="TVSClassicMovies.us",TVS Classic Movies (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsclassicmovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSClassicSports.us",TVS Classic Sports (360p) -http://rpn1.bozztv.com/36bay2/gusa-tvs/index.m3u8 -#EXTINF:-1 tvg-id="TVSComedyNetwork.us",TVS Comedy Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-comedyclassics/index.m3u8 -#EXTINF:-1 tvg-id="TVSDriveInMovie.us",TVS Drive In Movie (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsdriveinmovie/index.m3u8 -#EXTINF:-1 tvg-id="TVSFamilyChannel.us",TVS Family Channel (360p) -https://rpn1.bozztv.com/36bay2/gusa-TVSFamilyChannel/index.m3u8 -#EXTINF:-1 tvg-id="TVSFilmNoirNetwork.us",TVS Film Noir Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-TVSFilmNoir/index.m3u8 -#EXTINF:-1 tvg-id="TVSFrontPageDetective.us",TVS Front Page Detective (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsfrontpagedetective/index.m3u8 -#EXTINF:-1 tvg-id="TVSHiTops.us",TVS Hi Tops (360p) -https://rpn1.bozztv.com/36bay2/gusa-hitops/index.m3u8 -#EXTINF:-1 tvg-id="TVSHollywoodHistory.us",TVS Hollywood History (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvshollywoohistory/mono.m3u8 -#EXTINF:-1 tvg-id="TVSHorrorNetwork.us",TVS Horror Network (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvshorror/index.m3u8 -#EXTINF:-1 tvg-id="TVSInspirationalNetwork.us",TVS Inspirational Network (360p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-TVSInspirationalNetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSMainstreet.us",TVS Mainstreet (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmainst/index.m3u8 -#EXTINF:-1 tvg-id="TVSMusicNetwork.us",TVS Music Network (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvsmusic/index.m3u8 -#EXTINF:-1 tvg-id="TVSNostalgia.us",TVS Nostalgia (472p) -https://rpn1.bozztv.com/36bay2/gusa-nostalgia/index.m3u8 -#EXTINF:-1 tvg-id="TVSNostalgiaMovies.us",TVS Nostalgia Movies (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvsNostalgiaMovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSPetParadeNetwork.us",TVS Pet Parade Network (360p) -https://rpn1.bozztv.com/36bay2/gusa-petparadenetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSPinballNetwork.us",TVS Pinball Network (694p) -https://rpn1.bozztv.com/36bay2/gusa-TVSCartoonNetwork/index.m3u8 -#EXTINF:-1 tvg-id="TVSQuizShowNetwork.us",TVS Quiz Show Network (272p) -https://rpn1.bozztv.com/36bay2/gusa-tvsgameshow/index.m3u8 -#EXTINF:-1 tvg-id="TVSRareCollectibles.us",TVS Rare Collectibles (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsrarecollectibles/index.m3u8 -#EXTINF:-1 tvg-id="TVSSelectNetwork.us",TVS Select Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvsselect/index.m3u8 -#EXTINF:-1 tvg-id="TVSSiloDiscountNetwork.us",TVS Silo Discount Network (484p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvssilodiscount/index.m3u8 -#EXTINF:-1 tvg-id="TVSSports.us",TVS Sports (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvssports/index.m3u8 -#EXTINF:-1 tvg-id="TVSSportsBureau.us",TVS Sports Bureau (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvssportsbureau/index.m3u8 -#EXTINF:-1 tvg-id="TVSTallyHo.us",TVS Tally Ho (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvstallyho/index.m3u8 -#EXTINF:-1 tvg-id="TVSTavern.us",TVS Tavern (720p) -https://rpn1.bozztv.com/36bay2/gusa-tavern/index.m3u8 -#EXTINF:-1 tvg-id="TVSTelevisionNetwork.us",TVS Television Network (720p) -https://rpn1.bozztv.com/36bay2/gusa-tvstn/index.m3u8 -#EXTINF:-1 tvg-id="TVSTodayHomeEntertainmentNetwork.us",TVS Today Home Entertainment Network (720p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-TVSTodayHomeEntertainment/index.m3u8 -#EXTINF:-1 tvg-id="TVSTravel.us",TVS Travel Network (352p) [Not 24/7] -https://rpn1.bozztv.com/36bay2/gusa-tvstravel/index.m3u8 -#EXTINF:-1 tvg-id="TVSTurbo.us",TVS Turbo (360p) -https://rpn1.bozztv.com/36bay2/gusa-tvsturbo/index.m3u8 -#EXTINF:-1 tvg-id="TVSWesternMovie.us",TVS Western Movie (270p) -https://rpn1.bozztv.com/36bay2/gusa-tvswesternmovies/index.m3u8 -#EXTINF:-1 tvg-id="TVSWomenSports.us",TVS Women Sports (480p) -https://rpn1.bozztv.com/36bay2/gusa-tvswsn/index.m3u8 -#EXTINF:-1 tvg-id="UALRTV.us",UALR TV (720p) [Offline] -https://na-all23.secdn.net/pegstream3-live/play/65ea794b-dd82-41ce-8e98-a9177289a063/master.m3u8 -#EXTINF:-1 tvg-id="UCTVUniversityofCalifornia.us",UCTV University of California (720p) [Not 24/7] -https://59e8e1c60a2b2.streamlock.net/509/509.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="UNWebTV.us",UN Web TV (540p) [Offline] -https://bcliveunivsecure-lh.akamaihd.net/i/un150_A1_1@575439/master.m3u8 -#EXTINF:-1 tvg-id="UnbeatenCombat.us",Unbeaten Combat (720p) [Offline] -https://d179m5eq83yziw.cloudfront.net/live3/unbeaten_tv/bitrate1-clear.isml/manifest.m3u8 -#EXTINF:-1 tvg-id="Unidentified.us",Unidentified [Offline] -https://a.jsrdn.com/broadcast/4hhfi556/indexR720P.m3u8 -#EXTINF:-1 tvg-id="",Untamed Sports TV (KCKS-LD8) (480p) [Not 24/7] -https://cdn.igocast.com/channel8_hls/channel8_master.m3u8 -#EXTINF:-1 tvg-id="UNTV.us",UNTV News & Recue (1080p) [Timeout] -https://cdn.untvweb.com/live-stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VallenatoInternacional.us",Vallenato Internacional (720p) [Not 24/7] -https://59a564764e2b6.streamlock.net/vallenato/Vallenato2/playlist.m3u8 -#EXTINF:-1 tvg-id="VBSTV.us",VBS TV (360p) [Not 24/7] -http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://d80z5qf1qyhbf.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="Vevo2K.us",Vevo 2K (1080p) [Offline] -https://5fa09a21270b74000140368e-samsung.ssai.zype.com/5fa09a21270b74000140368e_samsung/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoCountry.us",Vevo Country (1080p) [Offline] -https://5dcc69faf960dd5dcc551818-s-2.ssai.zype.com/5dcc69faf960dd5dcc551818-s-2/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoHipHop.us",Vevo Hip Hop (720p) -https://5dcc6a54d90e8c5dc4345c16-s-4.ssai.zype.com/5dcc6a54d90e8c5dc4345c16-s-4/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoHoliday.us" status="error",Vevo Holiday (1080p) [Offline] -https://5dcc69bb1621dc5de50b1db7-s-1.ssai.zype.com/5dcc69bb1621dc5de50b1db7-s-1/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoLatino.us",Vevo Latino (1080p) [Not 24/7] -https://5dcc6a9f1621dc5dd511ca14-s-5.ssai.zype.com/5dcc6a9f1621dc5dd511ca14-s-5/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoPopEurope.us",Vevo Pop Europe (1080p) -https://5f3491c50b093e00015a3c4c-samsung.eu.ssai.zype.com/5f3491c50b093e00015a3c4c_samsung_eu/manifest.m3u8 -#EXTINF:-1 tvg-id="VevoRB.us",Vevo R&B (1080p) [Offline] -https://5dcc6a2840dfd15e7f8518ef-s-3.ssai.zype.com/5dcc6a2840dfd15e7f8518ef-s-3/manifest.m3u8 -#EXTINF:-1 tvg-id="VH1.us",VH1 (1080p) -https://content.uplynk.com/channel/36953f5b6546464590d2fcd954bc89cf.m3u8 -#EXTINF:-1 tvg-id="VictorValleyMovies.us",Victor Valley Movies (1080p) [Not 24/7] -https://2-fss-1.streamhoster.com/pl_122/201794-1414514-1/playlist.m3u8 -#EXTINF:-1 tvg-id="VictoryTelevisionNetwork.us",Victory Television Network (240p) [Timeout] -http://184.173.179.163:1935/victorytelevisionnetwork/victorytelevisionnetwork/playlist.m3u8 -#EXTINF:-1 tvg-id="",Village of Hastings-On-Hudson NY (WHOH-TV) (360p) -http://stream.swagit.com/live-edge/hastingsonhudsonny/smil:std-4x3-1-a/playlist.m3u8 -#EXTINF:-1 tvg-id="VoAPersian.us",VoA Persian (1080p) -https://voa-lh.akamaihd.net/i/voapnn_7@72817/master.m3u8 -#EXTINF:-1 tvg-id="VoATV.us",VoA TV (1080p) -https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/master.m3u8 -#EXTINF:-1 tvg-id="VoATV.us",VoA TV (1080p) [Not 24/7] -https://voa-lh.akamaihd.net/i/voa_mpls_tvmc3_3@320295/master.m3u8 -#EXTINF:-1 tvg-id="VSiN.us",VSiN (720p) -https://stream.rcncdn.com/live/vsinproxy.m3u8 -#EXTINF:-1 tvg-id="WarnerTV.us",Warner TV (720p) [Not 24/7] -https://www.livedoomovie.com/02_WarnerTVHD_720p/chunklist.m3u8 -#EXTINF:-1 tvg-id="WarnerTV.us",Warner TV (720p) [Timeout] -http://203.154.243.89:11205 -#EXTINF:-1 tvg-id="WatchItKid.us",Watch It Kid (486p) -https://content.uplynk.com/channel/ce3b524c342247549e996e7d3a977157.m3u8 -#EXTINF:-1 tvg-id="WatchItScream.us",Watch It Scream! (720p) -https://content.uplynk.com/channel/29aff31fecb848ab9044369db2d61642.m3u8 -#EXTINF:-1 tvg-id="",WCBI-TV News Tupelo MS (720p) -https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 -#EXTINF:-1 tvg-id="",WCBI-TV News Tupelo MS (720p) -https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 -#EXTINF:-1 tvg-id="",WCCA 194 Worcester MA (WCCA-TV) (480p) -https://worcester.vod.castus.tv/live/ch1.m3u8 -#EXTINF:-1 tvg-id="",WDAY News Fargo ND (720p) -https://player-api.new.livestream.com/accounts/27442514/events/8305246/live.m3u8 -#EXTINF:-1 tvg-id="",WDAY-X Automatic Weather Frago ND (720p) -https://player-api.new.livestream.com/accounts/27442514/events/8331542/live.m3u8 -#EXTINF:-1 tvg-id="",WDEF-TV News Chattanooga TN (720p) -http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 -#EXTINF:-1 tvg-id="",WDEF-TV News Chattanooga TN (720p) -http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 -#EXTINF:-1 tvg-id="",WeatherNation (KCKS-LD6) (480p) [Not 24/7] -https://cdn.igocast.com/channel6_hls/channel6_master.m3u8 -#EXTINF:-1 tvg-id="Westerns4U.us",Westerns 4U (480p) [Not 24/7] -https://broadcast.mytvtogo.net/westerntv4u/westerntv4u/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (480p) -http://encodercdn1.frontline.ca/encoder182/output/WGN/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (720p) -http://encodercdn1.frontline.ca/encoder182/output/WGN_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="WGNDT1.us",WGN Chicago IL (WGN-TV1) (720p) -http://trn03.tulix.tv/teleup-mBm5MQ50rA/playlist.m3u8 -#EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us",White Plains Community Media (360p) -https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8 -#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 3) (480p) -https://frontdoor.wcat-tv.org:8787/live/live.m3u8 -#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 15) (360p) [Not 24/7] -https://edu-wcat.azureedge.net/live/live.m3u8 -#EXTINF:-1 tvg-id="",Winthrop Community Access TV (WCAT 22) (480p) -https://frontdoor.wcat-tv.org:8686/live/live.m3u8 -#EXTINF:-1 tvg-id="WLNGRadio.us",WLNG Radio (410p) [Not 24/7] -http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="WLSTVNews.us",WLS TV News (720p) -https://content.uplynk.com/channel/ext/aac37e2c66614e699fb189ab391084ff/wls_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WMFDTV.us",WMFD-TV 68 Mansfield OH (720p) [Not 24/7] -https://player-api.new.livestream.com/accounts/1194911/events/3466400/live.m3u8 -#EXTINF:-1 tvg-id="WMGT.us",WMGT-TV News Macon GA (720p) -https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 -#EXTINF:-1 tvg-id="WMGT.us",WMGT-TV News Macon GA (720p) -https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 -#EXTINF:-1 tvg-id="",WPIX 11 (1080p) [Timeout] -http://71.187.29.220:8000/play/a08o/index.m3u8 -#EXTINF:-1 tvg-id="WPVITV.us",WPVI-TV News (720p) -https://content.uplynk.com/channel/ext/10b98e7c615f43a98b180d51797e74aa/wpvi_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WTVDTVNews.us",WTVD TV News (720p) -https://content.uplynk.com/channel/ext/f05837c508c44712aa7129d531f7dbe6/wtvd_24x7_news.m3u8 -#EXTINF:-1 tvg-id="WTVQ.us",WTVQ-DT News Lexington KY (720p) -https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 -#EXTINF:-1 tvg-id="WTVQ.us",WTVQ-DT News Lexington KY (720p) -https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 -#EXTINF:-1 tvg-id="WuTangCollection.us",Wu Tang Collection (576p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=73 -#EXTINF:-1 tvg-id="WWAY.us",WWAY News Willmington NC (720p) -https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 -#EXTINF:-1 tvg-id="WWAY.us",WWAY News Willmington NC (720p) -https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 -#EXTINF:-1 tvg-id="WWENet.us",WWE Network (720p) -http://38.91.57.12:2082/wwe/playlist.m3u8 -#EXTINF:-1 tvg-id="WXXV.us",WXXV-TV News Biloxi MS (720p) -https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 -#EXTINF:-1 tvg-id="WXXV.us",WXXV-TV News Biloxi MS (720p) -https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 -#EXTINF:-1 tvg-id="Xcorps.us",Xcorps (720p) [Offline] -https://rpn1.bozztv.com/36bay2/gusa-xcorps/playlist.m3u8 -#EXTINF:-1 tvg-id="Xcorps.us",Xcorps (720p) [Timeout] -https://simultv.s.llnwi.net/n4s4/xcorps/interlink.m3u8 -#EXTINF:-1 tvg-id="XploreReisen.us",Xplore Reisen (720p) [Not 24/7] -https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/1ecb875d-8be7-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) -https://d1ewctnvcwvvvu.cloudfront.net/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooNews.us",Yahoo! News (720p) -https://content.uplynk.com/channel/411ba7ca8cb6403a9e73509e49c3a77b.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) -https://a.jsrdn.com/broadcast/e0f99ab19c/+0000/c.m3u8 -#EXTINF:-1 tvg-id="YoutooAmerica.us",Youtoo America (1080p) -https://thegateway.app/YouToo/YTamerica/playlist.m3u8 -#EXTINF:-1 tvg-id="YoutooAmerica.us" status="online",Youtoo America (1080p) -https://thegateway.app/YouToo/CueTones/playlist.m3u8 -#EXTINF:-1 tvg-id="KanalDisney.us",Канал Disney (576p) [Not 24/7] -http://188.40.68.167/russia/disney/playlist.m3u8 diff --git a/streams/us_adultiptv.m3u b/streams/us_adultiptv.m3u deleted file mode 100644 index 852c66daf..000000000 --- a/streams/us_adultiptv.m3u +++ /dev/null @@ -1,51 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultIPTVnetAnal.us",AdultIPTV.net Anal (720p) -http://cdn.adultiptv.net/anal.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetAsian.us",AdultIPTV.net Asian (720p) -http://cdn.adultiptv.net/asian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us",AdultIPTV.net Big Ass (720p) -http://cdn.adultiptv.net/bigass.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us",AdultIPTV.net Big Dick (720p) -http://cdn.adultiptv.net/bigdick.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us",AdultIPTV.net Big Tits (720p) -http://cdn.adultiptv.net/bigtits.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlonde.us",AdultIPTV.net Blonde (720p) -http://cdn.adultiptv.net/blonde.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us",AdultIPTV.net Blowjob (720p) -http://cdn.adultiptv.net/blowjob.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBrunette.us",AdultIPTV.net Brunette (720p) -http://cdn.adultiptv.net/brunette.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCompilation.us",AdultIPTV.net Compilation (720p) -http://cdn.adultiptv.net/compilation.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us",AdultIPTV.net Cuckold (720p) -http://cdn.adultiptv.net/cuckold.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us",AdultIPTV.net Fetish (720p) -http://cdn.adultiptv.net/fetish.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us",AdultIPTV.net Gangbang (720p) -http://cdn.adultiptv.net/gangbang.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGay.us",AdultIPTV.net Gay (720p) -http://cdn.adultiptv.net/gay.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us",AdultIPTV.net Hardcore (720p) -http://cdn.adultiptv.net/hardcore.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us",AdultIPTV.net Interracial (720p) -http://cdn.adultiptv.net/interracial.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us",AdultIPTV.net Latina (720p) -http://cdn.adultiptv.net/latina.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us",AdultIPTV.net Lesbian (720p) -http://cdn.adultiptv.net/lesbian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLiveCams.us",AdultIPTV.net Live Cams (720p) -http://cdn.adultiptv.net/livecams.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us",AdultIPTV.net MILF (720p) -http://cdn.adultiptv.net/milf.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us",AdultIPTV.net Pornstar (720p) -http://cdn.adultiptv.net/pornstar.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us",AdultIPTV.net POV (720p) -http://cdn.adultiptv.net/pov.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRough.us",AdultIPTV.net Rough (720p) -http://cdn.adultiptv.net/rough.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us",AdultIPTV.net Russian (720p) -http://cdn.adultiptv.net/russian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us",AdultIPTV.net Teen (720p) -http://cdn.adultiptv.net/teen.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us",AdultIPTV.net Threesome (720p) -http://cdn.adultiptv.net/threesome.m3u8 diff --git a/streams/us_adultswim.m3u b/streams/us_adultswim.m3u deleted file mode 100644 index 5f41ea544..000000000 --- a/streams/us_adultswim.m3u +++ /dev/null @@ -1,33 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultSwimAquaTeenHungerForce.us",Adult Swim Aqua Teen Hunger Force (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/aqua-teen/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimBlackJesus.us",Adult Swim Black Jesus (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/black-jesus/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimChannel5.us",Adult Swim Channel 5 (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/channel-5/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimDreamCorpLLC.us",Adult Swim Dream Corp LLC (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/DREAM-CORP-LLC/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimFishcam.us",Adult Swim Fishcam (1080p) -https://media.cdn.adultswim.com/streams/playlists/fishcam.backup.m3u8 -#EXTINF:-1 tvg-id="AdultSwimFishcam.us",Adult Swim Fishcam (1080p) -https://media.cdn.adultswim.com/streams/playlists/live-stream.primary.v2.m3u8 -#EXTINF:-1 tvg-id="AdultSwimInfomercials.us",Adult Swim Infomercials (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/infomercials/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimLastStreamOnTheLeft.us",Adult Swim Last Stream On The Left (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/lsotl/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimMetalocalypse.us",Adult Swim Metalocalypse (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/metalocalypse/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimOffTheAir.us",Adult Swim Off The Air (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/off-the-air/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimRickAndMorty.us",Adult Swim Rick and Morty (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/rick-and-morty/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimRobotChicken.us",Adult Swim Robot Chicken (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/robot-chicken/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimSamuraiJack.us",Adult Swim Samurai Jack (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/samurai-jack/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimTheEricAndreShow.us",Adult Swim The Eric Andre Show (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/eric-andre/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimTheVentureBros.us",Adult Swim The Venture Bros (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/venture-bros/stream.m3u8 -#EXTINF:-1 tvg-id="AdultSwimYourPrettyFaceIsGoingToHell.us",Adult Swim Your Pretty Face Is Going To Hell (1080p) [Geo-blocked] -https://adultswim-vodlive.cdn.turner.com/live/ypf/stream.m3u8 diff --git a/streams/us_bumblebee.m3u b/streams/us_bumblebee.m3u deleted file mode 100644 index 559fd9e30..000000000 --- a/streams/us_bumblebee.m3u +++ /dev/null @@ -1,73 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BumblebeeTVAnimalsLive.us",Bumblebee TV Animals Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9537b8932c837b49397343/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVAuroraLive.us",Bumblebee TV Aurora Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953819932c837b49397345/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVAutoMoto.us",Bumblebee TV AutoMoto (720p) -https://stitcheraws.unreel.me/wse-node01.powr.com/live/5bf220fad5eeee0f5a40941a/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVBeachesLive.us",Bumblebee TV Beaches Live (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95396f932c837b49397360/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bumblebee TV Classics #1 (480p) -https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/manifest/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/0d14dc99-cc30-4c0e-8531-40cdfe650694/1.m3u8 -#EXTINF:-1 tvg-id="",Bumblebee TV Classics #2 (720p) -https://stitcheraws.unreel.me/wse-node05.powr.com/live/60f881602da3a5575eceb854/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCoronaVirusGov.us",Bumblebee TV CoronaVirus.Gov (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e7559e8a46b495a2283c5e8/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCountryBoyKidsVideo.us",Bumblebee TV Country Boy Kids Video (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf225aed5eeee0f5a4094bd/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVCuteZone.us",Bumblebee TV Cute Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22518d5eeee0f5a409486/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVDocsChannel.us",Bumblebee TV Docs Channel (480p) -https://0813a4e76b5d404a97a4070b8e087bc4.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609d9d6344257cbfb6ee4/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVEpicM.us",Bumblebee TV Epic M (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22225d5eeee0f5a40941d/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVFGTV.us",Bumblebee TV FGTV (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2624990145130f25474620/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVForestLive.us",Bumblebee TV Forest Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953836932c837b49397355/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVFunZone.us",Bumblebee TV Fun Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625030145130f25474622/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVGiggleZone.us",Bumblebee TV Giggle Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22526d5eeee0f5a4094b8/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLakeLive.us",Bumblebee TV Lake Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95385c932c837b49397356/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLegoToons.us",Bumblebee TV Lego Toons (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22549d5eeee0f5a4094ba/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLetsPlayMinecraft.us",Bumblebee TV Lets Play Minecraft (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625700145130f25474624/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVLifeBae.us",Bumblebee TV LifeBae (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22681932c8304fc453418/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMasterBuilder.us",Bumblebee TV Master Builder (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2256ed5eeee0f5a4094bb/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMotorCyclist.us",Bumblebee TV MotorCyclist (360p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2218bd5eeee0f5a40941b/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVMountainLive.us",Bumblebee TV Mountain Live (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95387b932c837b49397357/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us",Bumblebee TV Now You Know (720p) -https://stitcheraws.unreel.me/wse-node01.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us",Bumblebee TV Now You Know [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVPopCornFlixAction.us",Bumblebee TV PopCornFlix Action (1080p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5d4b21643f4d602ba521b06c/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVRecoilTV.us",Bumblebee TV Recoil TV (540p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7dff0f932c8368bdbfd5fd/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVRiversLive.us",Bumblebee TV Rivers Live (720p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95388f932c837b4939735a/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVShortsChannel.us",Bumblebee TV Shorts Channel (720p) -https://b29da26d9a17436eafe339c08e488f33.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609010d552957bf5aa546/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVSmosh.us",Bumblebee TV Smosh (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625af5748670f12a3bee9/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVSunsetLive.us",Bumblebee TV Sunset Live (1080p) [Not 24/7] -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538a5932c837b4939735b/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us",Bumblebee TV Thinknoodles (Test for Bitcentral) (720p) -https://2459f78c2f5d42c996bb24407b76877a.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_60f88620abf1e257404a9250/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us",Bumblebee TV Thinknoodles [Timeout] -https://stitcheraws.unreel.me/wse-node04.powr.com/live/5afc8Bumblebee+TV10e932c833522744733/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVToyZone.us",Bumblebee TV Toy Zone (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22491932c8304fc4533e4/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVTrinityBeyond.us",Bumblebee TV Trinity & Beyond (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2626030145130f25474626/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVTropicsLive.us",Bumblebee TV Tropics Live (720p) -https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538b9932c837b4939735c/playlist.m3u8 -#EXTINF:-1 tvg-id="BumblebeeTVWaterfallsLive.us",Bumblebee TV Waterfalls Live (1080p) -https://95771f8415a84e31bd152fe9c6c9905c.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5c953910932c837b4939735d/playlist.m3u8 diff --git a/streams/us_distro.m3u b/streams/us_distro.m3u deleted file mode 100644 index dfdcf5e77..000000000 --- a/streams/us_distro.m3u +++ /dev/null @@ -1,19 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ClassicRerunsTV.us",Classic Reruns TV (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/wnQPvAN9QBODw9hP-H0rZA/master.m3u8 -#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (1080p) [Not 24/7] -https://d397e8970cd346fdac04c0af81290c3a.mediatailor.us-west-2.amazonaws.com/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Hard-Knocks-DistroTV/109.m3u8 -#EXTINF:-1 tvg-id="HumorMill.us",Humor Mill (1080p) [Not 24/7] -https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-DistroTV/152.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) -https://nmxdistro.akamaized.net/hls/live/529965/Live_1/index.m3u8 -#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us",TD Ameritrade Network (1080p) -https://tdameritrade-distro.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) -https://tfd-distro.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) -https://thefirst-distroscale.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://venntv-distrotv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] -https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-DistroTV/150.m3u8 diff --git a/streams/us_filmon.m3u b/streams/us_filmon.m3u deleted file mode 100644 index 8bbd329e8..000000000 --- a/streams/us_filmon.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BBCNews.uk",BBC News (480p) [Offline] -http://www.filmon.com/vr-streams/27.high/playlist.m3u8 -#EXTINF:-1 tvg-id="BBCOneScotland.uk",BBC One Scotland (480p) [Offline] -http://www.filmon.com/vr-streams/3166.high/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmonEroticSensations.us",Filmon Erotic Sensations (480p) [Not 24/7] -https://www.filmon.com/vr-streams/6152.high/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmonFetishFactory.us",Filmon Fetish Factory (480p) [Not 24/7] -https://www.filmon.com/vr-streams/6158.high/playlist.m3u8 diff --git a/streams/us_fubo.m3u b/streams/us_fubo.m3u deleted file mode 100644 index fbf73499c..000000000 --- a/streams/us_fubo.m3u +++ /dev/null @@ -1,9 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FootballDailyXUMO.us",Football Daily (XUMO) (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-footballdaily/CDN/master.m3u8 -#EXTINF:-1 tvg-id="",fubo Sports Network (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-fubo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="MotorvisionXUMO.us",Motorvision (XUMO) (720p) -https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-motorvisiontv/CDN/master.m3u8 diff --git a/streams/us_glewedtv.m3u b/streams/us_glewedtv.m3u deleted file mode 100644 index 26acdb286..000000000 --- a/streams/us_glewedtv.m3u +++ /dev/null @@ -1,3 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) [Not 24/7] -https://redseat-thefirst-glewedtv.amagi.tv/index.m3u8 diff --git a/streams/us_imdbtv.m3u b/streams/us_imdbtv.m3u deleted file mode 100644 index 593998542..000000000 --- a/streams/us_imdbtv.m3u +++ /dev/null @@ -1,11 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AbsoluteRealitybyWETV.us",Absolute Reality by WE TV (1080p) -https://amc-absolutereality-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (1080p) -https://amc-amcpresents-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IFCFilmsPicks.us",IFC Films Picks (1080p) -https://amc-ifc-films-picks-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RushbyAMC.us",Rush by AMC (1080p) -https://amc-rushbyamc-1.imdbtv.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SlightlyOffbyIFC.us",Slightly Off by IFC (1080p) -https://amc-slightly-off-by-amc-1.imdbtv.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_klowdtv.m3u b/streams/us_klowdtv.m3u deleted file mode 100644 index efac8eafa..000000000 --- a/streams/us_klowdtv.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AWE.us",AWE (720p) -http://n1.klowdtv.net/live1/awe_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="DemandAfrica.us",Demand Africa (720p) -https://demandafrica-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",ESTV (720p) [Offline] -https://estv-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FidoTV.us",Fido TV (720p) [Not 24/7] -http://n1.klowdtv.net/live3/fido_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (720p) [Not 24/7] -http://n1.klowdtv.net/live2/gsn_720p/chunks.m3u8 -#EXTINF:-1 tvg-id="HNCFree.us",HNC Free (720p) [Offline] -https://hncfree-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) -http://n1.klowdtv.net/live1/oan_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) [Geo-blocked] -https://cdn.klowdtv.net/803B48A/oan_aws_ms/OAN.m3u8 -#EXTINF:-1 tvg-id="PopTV.us",Pop TV (720p) [Not 24/7] -http://n1.klowdtv.net/live2/pop_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="QVCLive.us",QVC Live (720p) [Not 24/7] -http://n1.klowdtv.net/live2/qvclive_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="RedseatTheFirst.us",Redseat The First (720p) -https://redseat-thefirst-klowdtv.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (720p) -https://sportsgrid-klowdtv.amagi.tv/playlist.m3u8 diff --git a/streams/us_localbtv.m3u b/streams/us_localbtv.m3u deleted file mode 100644 index 22017b890..000000000 --- a/streams/us_localbtv.m3u +++ /dev/null @@ -1,127 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="KFPHDT3.us",KFPH-DT3 (GetTV) (480p) -https://v-px.theus6tv.tk/hls/13.3/playlist.m3u8 -#EXTINF:-1 tvg-id="KYWDT1.us" status="online",KYW-DT1 (CBS 3) (1080p) -https://v-pi.theus6tv.tk/hls/3.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WABCDT1.us",WABC-DT1 (ABC 7) (720p) -https://v-ny.theus6tv.tk/hls/7.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WABCDT4.us",WABC-DT4 (HSN) (432p) -https://v-ny.theus6tv.tk/hls/7.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT1.us",WACP-DT1 (TCT) (1080p) [Not 24/7] -https://v-pi.theus6tv.tk/hls/4.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT2.us",WACP-DT2 (AceTV) (480p) -https://v-pi.theus6tv.tk/hls/4.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT4.us",WACP-DT4 (ShopLC) (480p) -https://v-pi.theus6tv.tk/hls/4.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT5.us",WACP-DT5 (Jewelry TV) (480p) -https://v-pi.theus6tv.tk/hls/4.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WACPDT6.us",WACP-DT6 (The Family Channel) (480p) -https://v-pi.theus6tv.tk/hls/4.6/playlist.m3u8 -#EXTINF:-1 tvg-id="WCAUDT1.us",WCAU-DT1 (NBC 10) (1080p) -https://v-pi.theus6tv.tk/hls/10.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WCAUDT2.us",WCAU-DT2 (COZI TV) (432p) -https://v-pi.theus6tv.tk/hls/10.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WCBSDT1.us",WCBS-DT1 (CBS 2) (1080p) -https://v-ny.theus6tv.tk/hls/2.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WDPNDT2.us",WDPN-DT2 (Grit) (432p) -https://v-pi.theus6tv.tk/hls/2.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WDPNDT5.us",WDPN-DT5 (Retro TV) (432p) -https://v-pi.theus6tv.tk/hls/2.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WELLLD1.us",WELL-LD1 (Daystar) (1080p) -https://v-pi.theus6tv.tk/hls/45.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WFMZDT1.us",WFMZ-DT1 (720p) -https://v-pi.theus6tv.tk/hls/69.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT1.us",WHYY-DT1 (PBS Philadelphia) (1080p) -https://v-pi.theus6tv.tk/hls/12.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT2.us",WHYY-DT2 (Y2) (432p) -https://v-pi.theus6tv.tk/hls/12.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WHYYDT3.us",WHYY-DT3 (Y Kids) (720p) [Not 24/7] -https://v-pi.theus6tv.tk/hls/12.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD1.us",WKOB-LD1 (Azteca America 42) (720p) -https://v-ny.theus6tv.tk/hls/42.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD2.us",WKOB-LD2 (Daystar) (480p) -https://v-ny.theus6tv.tk/hls/42.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD5.us",WKOB-LD5 (SonLife) (480p) -https://v-ny.theus6tv.tk/hls/42.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD6.us",WKOB-LD6 (Estrella TV) (480p) -https://v-ny.theus6tv.tk/hls/42.6/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD7.us",WKOB-LD7 (ShopLC) (480p) -https://v-ny.theus6tv.tk/hls/42.7/playlist.m3u8 -#EXTINF:-1 tvg-id="WKOBLD8.us",WKOB-LD8 (Novelisima) (480p) [Not 24/7] -https://v-ny.theus6tv.tk/hls/42.8/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT1.us",WLIW-DT1 (PBS WLIW) (1080p) -https://v-ny.theus6tv.tk/hls/21.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT2.us",WLIW-DT2 (Create TV) (432p) -https://v-ny.theus6tv.tk/hls/21.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT3.us",WLIW-DT3 (World) (432p) -https://v-ny.theus6tv.tk/hls/21.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WLIWDT4.us",WLIW-DT4 (All Arts) (1080p) -https://v-ny.theus6tv.tk/hls/21.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WLVTDT1.us",WLVT-DT1 (PBS 39) (720p) -https://v-pi.theus6tv.tk/hls/39.1/playlist.m3u8 -#EXTINF:-1 tvg-id="",WMBQ-LD (FNX) (432p) -https://v-ny.theus6tv.tk/hls/46.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WMCNDT1.us",WMCN-DT1 (ShopHQ) (720p) -https://v-pi.theus6tv.tk/hls/44.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNBCDT1.us",WNBC-DT1 (NBC 4) (1080p) [Not 24/7] -https://v-ny.theus6tv.tk/hls/4.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNBCDT2.us",WNBC-DT2 (COZI TV) (432p) -https://v-ny.theus6tv.tk/hls/4.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNETDT1.us",WNET-DT1 (PBS THIRTEEN) (1080p) -https://v-ny.theus6tv.tk/hls/13.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNETDT2.us",WNET-DT2 (PBS KIDS) (720p) -https://v-ny.theus6tv.tk/hls/13.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJSDT1.us",WNJS-DT1 (NJ PBS) (1080p) -https://v-pi.theus6tv.tk/hls/23.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJSDT2.us",WNJS-DT2 (NHK WORLD) (1080p) -https://v-pi.theus6tv.tk/hls/23.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNJUDT2.us",WNJU-DT2 (teleXitos) (432p) -https://v-ny.theus6tv.tk/hls/47.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT1.us",WNYE-DT1 (NYC Life) (1080p) -https://v-ny.theus6tv.tk/hls/25.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT2.us",WNYE-DT2 (NYC Gov) (432p) -https://v-ny.theus6tv.tk/hls/25.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYEDT3.us",WNYE-DT3 (CUNY TV) (1080p) -https://v-ny.theus6tv.tk/hls/25.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYJLD.us",WNYJLD (480p) -https://v-ny.theus6tv.tk/hls/28.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WNYWDT1.us" status="online",WNYW-DT1 (FOX 5) (720p) -https://v-ny.theus6tv.tk/hls/5.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPHLDT1.us",WPHL-DT1 (PHL17) (720p) -https://v-pi.theus6tv.tk/hls/17.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPHLDT2.us",WPHL-DT2 (Antenna TV) (480p) -https://v-pi.theus6tv.tk/hls/17.2/playlist.m3u8 -#EXTINF:-1 tvg-id="",WPHY-CD2 (SonLife) (432p) -https://v-pi.theus6tv.tk/hls/25.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WPIXDT4.us",WPIX-DT4 (Rewind TV) (480p) -https://v-ny.theus6tv.tk/hls/11.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WPPXDT4.us",WPPX-DT4 (TrueReal) (480p) -https://v-pi.theus6tv.tk/hls/61.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WPPXDT5.us",WPPX-DT5 (Laff) (432p) -https://v-pi.theus6tv.tk/hls/61.5/playlist.m3u8 -#EXTINF:-1 tvg-id="WPVIDT1.us",WPVI-DT1 (ABC 6) (720p) -https://v-pi.theus6tv.tk/hls/6.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WPXNDT4.us",WPXN-DT4 (DEFY TV) (480p) -https://v-ny.theus6tv.tk/hls/31.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT1.us",WRNN-DT1 (ShopLC) (720p) -https://v-ny.theus6tv.tk/hls/48.1/playlist.m3u8 -#EXTINF:-1 tvg-id="",WRNN-DT2 (Circle) (432p) -https://v-ny.theus6tv.tk/hls/48.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT3.us",WRNN-DT3 (Canal de la Fe) (432p) -https://v-ny.theus6tv.tk/hls/48.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WRNNDT4.us",WRNN-DT4 (QVC) (432p) -https://v-ny.theus6tv.tk/hls/48.4/playlist.m3u8 -#EXTINF:-1 tvg-id="WTVEDT1.us",WTVE-DT1 (720p) -https://v-pi.theus6tv.tk/hls/51.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WTVEDT2.us",WTVE-DT2 (TimelessTV) (432p) -https://v-pi.theus6tv.tk/hls/51.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WTXFDT1.us",WTXF-DT1 (FOX 29) (720p) -https://v-pi.theus6tv.tk/hls/29.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WUVPDT3.us",WUVP-DT3 (True Crime Network) (432p) -https://v-pi.theus6tv.tk/hls/65.3/playlist.m3u8 -#EXTINF:-1 tvg-id="WWSIDT2.us",WWSI-DT2 (teleXitos) (432p) -https://v-pi.theus6tv.tk/hls/62.2/playlist.m3u8 -#EXTINF:-1 tvg-id="WXTVDT1.us",WXTV-DT1 (Univision 41) (720p) -https://v-ny.theus6tv.tk/hls/41.1/playlist.m3u8 -#EXTINF:-1 tvg-id="WZTSCD1.us",WZTS-CD1 (COZI TV) (480p) -https://v-bluecbl.theus6tv.tk/hls/16.1/playlist.m3u8 diff --git a/streams/us_pbs.m3u b/streams/us_pbs.m3u deleted file mode 100644 index bef8429b5..000000000 --- a/streams/us_pbs.m3u +++ /dev/null @@ -1,265 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",PBS Albany NY (WMHT) (1080p) [Offline] -https://wmhtdt.lls.pbs.org/out/v1/5c496bd4d16348f0bca933eca69bdd1e/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Albuquerque NM (KNME) (1080p) [Offline] -https://knmedt.lls.pbs.org/out/v1/6bb7cfa3e3c34906a80c5babc026ca92/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Allentown PA (WLVT) (1080p) [Offline] -https://wlvtdt.lls.pbs.org/out/v1/92fd7dd5c56e47dfb169062a69f7a3bf/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Alliance OH (WNEO) (1080p) [Offline] -https://wneodt.lls.pbs.org/out/v1/59487e8689f14a92a443d8fd557ac948/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Anchorage AK (KAKM) (1080p) [Offline] -https://kakmdt.lls.pbs.org/out/v1/01b38c70d1e94da78deec21bb13383ed/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Appleton MN (KWCM) (1080p) [Offline] -https://kwcmdt.lls.pbs.org/out/v1/e178660dc7cf4389bf8834e4bb10df20/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Arlington DC (WETA) (1080p) [Offline] -https://wetadt5.lls.pbs.org/out/v1/616d9af7dd7641c1ba0b7be651c343a4/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Athens GA (WGTV) (1080p) [Offline] -https://wgtvdt.lls.pbs.org/out/v1/1fe7fe6e36524881bd999a7003394ec7/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Athens OH (WOUB) (1080p) [Offline] -https://woubdt.lls.pbs.org/out/v1/f9f879eacf9c4b3d859b93c1f889a5e0/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Austin TX (KLRU) (1080p) [Offline] -https://klrudt.lls.pbs.org/out/v1/c5d426d04957476186321c38e943c49f/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Bad Axe MI (WDCQ) (1080p) [Offline] -https://wdcqdt.lls.pbs.org/out/v1/ef33b9ec5f2f42ad831574cbb2c478f8/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Baton Rouge LA (WLPB) (1080p) [Offline] -https://wlpbdt.lls.pbs.org/out/v1/3f6379f418924ca39e09415a34c92738/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Binghamton NY (WSKG) (1080p) [Offline] -https://wskgdt.lls.pbs.org/out/v1/ff443d82d55c481a9d1561c5f77a3a4b/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Birmingham AL (WBIQ) (1080p) [Offline] -https://wbiqdt.lls.pbs.org/out/v1/3d5c7da724d741da9b8e203d03b6b8c3/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Bloomington IN (WTIU) (1080p) [Offline] -https://wtiudt.lls.pbs.org/out/v1/189f0df07ad448d29880d68f295ab06e/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Boise ID (KAID) (1080p) [Offline] -https://kaiddt.lls.pbs.org/out/v1/1ba7213ff76e4f3cb73405a2108922ce/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Boston MA (WGBH) (1080p) [Offline] -https://wgbhdt.lls.pbs.org/out/v1/0e31746edf794871ab0f06cdb48c1e82/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Bowling Green OH (WBGU) (1080p) [Offline] -https://wbgudt.lls.pbs.org/out/v1/6e28e12e9db04b798dc82052cc6d3375/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Bozeman MT (KUSM) (1080p) [Offline] -https://kusmdt.lls.pbs.org/out/v1/ad7a1ac654bc4231854568d83529f893/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Buffalo NY (WNED) (1080p) [Offline] -https://wneddt.lls.pbs.org/out/v1/9042ad5168e54cf8bf14b5db5582a84a/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Burlington VT (WETK) (1080p) [Offline] -https://wetkdt.lls.pbs.org/out/v1/9c3c95a5cabc4611b06086ae798b7716/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Chapel Hill NC (WUNC) (1080p) [Offline] -https://wuncdt.lls.pbs.org/out/v1/84bedaad5c7e4d7abd8a6b63f1b8d4c4/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Charleston IL (WEIU-TV) (1080p) [Offline] -https://weiudt.lls.pbs.org/out/v1/9f2dc5c07afb4e2a8b704e1462030872/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Charlotte NC (WTVI) (1080p) [Offline] -https://wtvidt.lls.pbs.org/out/v1/e01f07bdc0cc4375b8894f72b1f0bb40/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Chattanooga TN (WTCI) (1080p) [Offline] -https://wtcidt.lls.pbs.org/out/v1/b9b09144bbaf4c5b864711748cc32680/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Chicago IL (WTTW) (1080p) [Offline] -https://wttwdt.lls.pbs.org/out/v1/c9c6c698c02f404190e9e5a4e9f4e903/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Cincinnati OH (WCET) (1080p) [Offline] -https://wcetdt.lls.pbs.org/out/v1/742a384715ac468cbcd93fef92dafd9d/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Clearfield PA (WPSU) (1080p) [Offline] -https://wpsudt.lls.pbs.org/out/v1/9f1d8d513dc1419fade4c3e08177a585/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Cleveland OH (WVIZ) (1080p) [Offline] -https://wvizdt.lls.pbs.org/out/v1/94ec1f9fa451444789391cd8558ea5ed/index.m3u8 -#EXTINF:-1 tvg-id="",PBS College Station TX (KAMU) (1080p) [Offline] -https://kamudt.lls.pbs.org/out/v1/60a3ebbf04084e1e851df9b22d45a5e1/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Columbia SC (WRLK) (1080p) [Offline] -https://wrlkdt.lls.pbs.org/out/v1/ce2d1420a66b4c2a88d8a48ffecd908d/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Columbus OH (WOSU) (1080p) [Offline] -https://wosudt.lls.pbs.org/out/v1/72f8d6d91e614561b97f37439cd13f81/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Conway AR (KETS) (1080p) [Offline] -https://ketsdt.lls.pbs.org/out/v1/3eccbbb7a0544338b5ee13cf6d5fc1d8/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Cookeville TN (WCTE) (1080p) [Offline] -https://wctedt.lls.pbs.org/out/v1/f7929641d8ae4f0296b10e77ffe6d31c/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Cordova TN (WKNO) (1080p) [Offline] -https://wknodt.lls.pbs.org/out/v1/b7065d6c2d6047c0bb5bd9e20202103c/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Corpus Christi TX (KEDT) (1080p) [Offline] -https://kedtdt.lls.pbs.org/out/v1/2955c90649c44dac83a2a77513c0b861/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Dallas TX (KERA) (1080p) [Offline] -https://keradt.lls.pbs.org/out/v1/8dd50e7e0ee24d4e8a0812872f332a2c/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Dayton OH (WPTD) (1080p) [Offline] -https://wptddt.lls.pbs.org/out/v1/f372be5c7a994b3ebeab2797323de8ee/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Denver CO (KBDI) (1080p) [Offline] -https://kbdidt.lls.pbs.org/out/v1/5a01f14ff4e4492eb7cda1a79b0ced60/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Denver CO (KRMA) (1080p) [Offline] -https://krmadt.lls.pbs.org/out/v1/45cb988e1a7440288aae1fe7fe819841/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Des Moines IA (KDIN) (1080p) [Offline] -https://kdindt.lls.pbs.org/out/v1/e41a89f5fe884dbea2c80fdc974b21c6/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Detroit MI (WTVS) (1080p) [Offline] -https://wgvudt.lls.pbs.org/out/v1/a9456b151c3e4fe490213e776735bb16/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Duluth MN (WDSE) (1080p) [Offline] -https://wdsedt.lls.pbs.org/out/v1/33c52d8e7d6e43099ff584805245b694/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Durham NH (WENH) (1080p) [Offline] -https://wenhdt.lls.pbs.org/out/v1/a1c1eea03387432086459cf0fdd96334/index.m3u8 -#EXTINF:-1 tvg-id="",PBS East Lansing MI (WKAR) (1080p) [Offline] -https://wkardt.lls.pbs.org/out/v1/5b13b5c72f5d4b80a6ee9140392caf74/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Eureka CA (KEET) (1080p) [Offline] -https://keetdt.lls.pbs.org/out/v1/a223371529b14afa882d1e872d8acd3d/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Evansville IN (WNIN) (1080p) [Offline] -https://wnindt.lls.pbs.org/out/v1/338a207086464e179e97f83d4b1798be/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Fargo ND (KFME) (1080p) [Offline] -https://kfmedt.lls.pbs.org/out/v1/25be24fcd0864ec9be6f6b60cb2be826/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Fort Myers FL (WGCU) (1080p) [Offline] -https://wgcudt.lls.pbs.org/out/v1/ac57905c80c8486a8290af7ca78c5026/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Fort Wayne IN (WFWA) (1080p) [Offline] -https://wfwadt.lls.pbs.org/out/v1/8b2a780393274c2ba9b71b9168df2208/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Gary IN (WYIN) (1080p) [Offline] -https://wyindt.lls.pbs.org/out/v1/27414b46e52d43758be8227e4a91c863/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Harrisburg PA (WITF) (1080p) [Offline] -https://witfdt.lls.pbs.org/out/v1/15cd55cd6f7442c4a193a47bbfae608a/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Hartford CT (WEDH) (1080p) [Offline] -https://wedhdt.lls.pbs.org/out/v1/04182c8d6be24c1a98de212f3c55a442/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Honolulu HI (KHET) (1080p) [Not 24/7] -https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Houston TX (KUHT) (1080p) [Offline] -https://kuhtdt.lls.pbs.org/out/v1/5b02f861c8e6453aa2b6cd8c6d26e698/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Indianapolis IN (WFYI) (1080p) [Offline] -https://wfyidt.lls.pbs.org/out/v1/f969c8f98dc24032b3879664b622ead0/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Jackson MS (WMPN) (1080p) [Offline] -https://wmpndt.lls.pbs.org/out/v1/d914d235ec79418a866aef53f54f2bd2/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Jacksonville FL (WJCT) (1080p) [Offline] -https://wjctdt.lls.pbs.org/out/v1/a691e1e86f77462d81a738395505e911/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Kansas City MO (KCPT) (1080p) [Offline] -https://kcptdt.lls.pbs.org/out/v1/f63eb4e92e484fae845c31912340e2a2/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Knoxville TN (WETP) (1080p) [Offline] -https://wetpdt.lls.pbs.org/out/v1/8eb86a48b4f54a24a31aa9cf46b02494/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Lakeland MN (KAWE) (1080p) [Offline] -https://kawedt.lls.pbs.org/out/v1/b3a7b02a0d4241a193c91f1f33755c85/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Las Cruces NM (KRWG) (1080p) [Offline] -https://krwgdt.lls.pbs.org/out/v1/9cbfc7807e834ee39d2849c1bad667f2/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Las Vegas NV (KLVX) (1080p) [Offline] -https://klvxdt.lls.pbs.org/out/v1/c2d457573e4d4783b558c44e20547e21/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Lewiston ME (WCBB) (1080p) [Offline] -https://wcbbdt.lls.pbs.org/out/v1/d1ca1cb603fd4da09694f0f1f6ba8db0/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Lexington KY (WKLE) (1080p) [Offline] -https://wkledt.lls.pbs.org/out/v1/26354efcebc1400e8861988cd6a321ca/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Lexington TN (WLJT) (1080p) [Offline] -https://wljtdt.lls.pbs.org/out/v1/1ddf810d67f64eeeab40ad9da8885945/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Lincoln NE (KUON) (1080p) [Geo-blocked] -https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Los Angeles CA (KLCS-DT1) (1080p) [Offline] -https://klcsdt.lls.pbs.org/out/v1/6ee318cffa774733acf31f9a1af38036/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Los Angeles CA (KOCE) (1080p) [Offline] -https://kocedt.lls.pbs.org/out/v1/75f564cba25e4053a8789a1a14d13344/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Madison WI (WPNE) (1080p) [Offline] -https://wpnedt.lls.pbs.org/out/v1/12d4e3cd7f2c476ea575165bbfb5ac50/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Marquette MI (WNMU) (1080p) [Offline] -https://wnmudt.lls.pbs.org/out/v1/d762d9a7dd4a46c08ca89b1a1abbc475/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Medford OR (KSYS) (1080p) [Offline] -https://ksysdt.lls.pbs.org/out/v1/aecb830f3f7146a5ab62bacbeeaff661/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Miami FL (WLRN) (1080p) [Offline] -https://wlrndt.lls.pbs.org/out/v1/9e8346f507f645259f0c6f2837fb7cbe/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Miami FL (WPBT) (1080p) [Offline] -https://wpbtdt.lls.pbs.org/out/v1/0fbd3da6bffb465ba84f94abaff14973/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Milwaukee WI (WMVS) (1080p) [Offline] -https://wmvsdt.lls.pbs.org/out/v1/654e3fa9db6d465ea578cf39818fcee6/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Minneapolis MN (KTCA) (1080p) [Offline] -https://ktcadt.lls.pbs.org/out/v1/21103812ea504393b7f0d521a8b37ab7/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Moline IL (WQPT) (1080p) [Offline] -https://wqptdt.lls.pbs.org/out/v1/6ab72cd3813b469cb5f79a577d49c0b7/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Mount Pleasant MI (WCMU) (1080p) [Offline] -https://wcmudt.lls.pbs.org/out/v1/45ff0524571c41398c5f39ebab6262ef/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Muncie IN (WIPB) (1080p) [Offline] -https://wipbdt.lls.pbs.org/out/v1/73cd2d86797b4fc6ac5b660cd5a6f9c4/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Nashville TN (WNPT) (1080p) [Offline] -https://wnptdt.lls.pbs.org/out/v1/f6bca6d722674c5cad621f54b17c217b/index.m3u8 -#EXTINF:-1 tvg-id="PBSEast.us",PBS National East (1080p) [Geo-blocked] -https://pbs.lls.cdn.pbs.org/est/index.m3u8 -#EXTINF:-1 tvg-id="PBSWest.us",PBS National West (1080p) [Geo-blocked] -https://pbs.lls.cdn.pbs.org/pst/index.m3u8 -#EXTINF:-1 tvg-id="",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7] -https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8 -#EXTINF:-1 tvg-id="",PBS New Orleans LA (WYES) (1080p) [Offline] -https://wyesdt.lls.pbs.org/out/v1/3d4b8e15f65d475f8278fee4ff14becf/index.m3u8 -#EXTINF:-1 tvg-id="",PBS New York NY (WLIW) (1080p) [Offline] -https://wliwdt.lls.pbs.org/out/v1/a7a2556b48d348b8931d7fc77a57401d/index.m3u8 -#EXTINF:-1 tvg-id="",PBS New York NY (WNET) (1080p) [Not 24/7] -https://wnetdt.lls.pbs.org/out/v1/0456457548354b88b32fc437e4e7ee01/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Norfolk VA (WHRO) (1080p) [Offline] -https://whrodt.lls.pbs.org/out/v1/3266ff3730e745eba63de795e95e3c08/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Odessa TX (KPBT) (1080p) [Offline] -https://kpbtdt.lls.pbs.org/out/v1/9b66cea20b8341b8accdb0d20a49431f/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Oklahoma City OK (KETA) (1080p) [Offline] -https://ketadt.lls.pbs.org/out/v1/b718c2a2e2ab4a67a0fce0b1c3fb71a9/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Orlando FL (WUCF) (1080p) [Offline] -https://wucfdt.lls.pbs.org/out/v1/6557aa0623bc486d8fb3e54afad37307/index.m3u8 -#EXTINF:-1 tvg-id="WMPB.us",PBS Owings Mills MD (1080p) [Offline] -https://wmpbdt.lls.pbs.org/out/v1/d1dbc3dc021148fb9ba084e7a68c3739/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Pensacola FL (WSRE) (1080p) [Offline] -https://wsredt.lls.pbs.org/out/v1/d615170d96024c229c6ae2177dec84e5/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Peoria IL (WTVP) (1080p) [Offline] -https://wtvpdt.lls.pbs.org/out/v1/9e8f6bfce87a437d8a8a9aab016421e8/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Philadelphia PA (WHYY-DT1) (1080p) [Offline] -https://whyydt.lls.pbs.org/out/v1/40b7857a84ee4302be8ab755a719cc14/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Phoenix AZ (KAET) (1080p) [Offline] -https://kaetdt.lls.pbs.org/out/v1/259f25e61b3d47ce8a7e2339a00c5561/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Pittsburgh PA (WQED) (1080p) [Offline] -https://wqeddt.lls.pbs.org/out/v1/1f10d52cea0f45ae88184800e9e6b79e/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Plattsburgh NY (WCFE) (1080p) [Offline] -https://wcfedt.lls.pbs.org/out/v1/9483ef28a5a8442f8ff45b26ac23a9b0/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Portales NM (KENW) (1080p) [Offline] -https://kenwdt.lls.pbs.org/out/v1/5a08bd0c12464a42959d67ad54324081/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Portland OR (KOPB) (1080p) [Offline] -https://kopbdt.lls.pbs.org/out/v1/a946a78ff0304b51b4f95b40f6753f20/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Providence RI (WSBE) (1080p) [Offline] -https://hls-wsbedt.lls.pbs.org/out/v1/282a0653ed3341ebac0ff99c0f2a8137/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Redding CA (KIXE) (1080p) [Offline] -https://kixedt.lls.pbs.org/out/v1/fb0ef314bff940b18d8ff89dcfc0e395/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Reno NV (KNPB) (1080p) [Offline] -https://knpbdt.lls.pbs.org/out/v1/662db9937fe94ff997eda3af5a09ea43/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Richmond VA (WCVE) (1080p) [Offline] -https://wcvedt.lls.pbs.org/out/v1/178cb4bb51c44edc9bac3365ddbc66ca/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Riverton WY (KCWC) (1080p) [Offline] -https://kcwcdt.lls.pbs.org/out/v1/2f8c171f73764e29893631dad5be2849/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Roanoke VA (WBRA) (1080p) [Offline] -https://wbradt.lls.pbs.org/out/v1/cee6288a82584aee9e105cc7abc51da9/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Rochester NY (WXXI) (1080p) [Offline] -https://wxxidt.lls.pbs.org/out/v1/9ea6c5eb539d4545b74b67d064d12395/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Rohnert Park CA (KRCB) (1080p) [Offline] -https://krcbdt.lls.pbs.org/out/v1/1b383c47407b41a28a57037ee7fc237c/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Sacramento CA (KVIE) (1080p) [Offline] -https://kviedt.lls.pbs.org/out/v1/034f052201e7437da6266c4679e97526/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Salt Lake City UT (KUED) (1080p) [Offline] -https://kueddt.lls.pbs.org/out/v1/53400b74960e4a84bc4b945148e9e19a/index.m3u8 -#EXTINF:-1 tvg-id="",PBS San Antonio TX (KLRN) (1080p) [Offline] -https://klrndt.lls.pbs.org/out/v1/4d29690f8127489fafb33fb5ebd2cbeb/index.m3u8 -#EXTINF:-1 tvg-id="",PBS San Bernardino CA (KVCR) (1080p) [Offline] -https://kvcrdt.lls.pbs.org/out/v1/5114aad2d1844ccba15d559173feec19/index.m3u8 -#EXTINF:-1 tvg-id="",PBS San Diego CA (KPBS) (1080p) [Offline] -https://kpbsdt.lls.pbs.org/out/v1/cf509cc4289644f886f7496b7328a46b/index.m3u8 -#EXTINF:-1 tvg-id="",PBS San Francisco CA (KQED) (1080p) [Offline] -https://kqeddt.lls.pbs.org/out/v1/7bc5c6cfcf9b4593b7d6ad1f8b0a0138/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Scranton PA (WVIA) (1080p) [Offline] -https://wviadt.lls.pbs.org/out/v1/aa3bcde7d86a4b60b57f653c565188df/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Seattle WA (KCTS) (1080p) [Offline] -https://rtmp-kctsdt.lls.cdn.pbs.org/rtmp-kctsdt/271a9ab7-e9ed-4fec-9fe9-e46c97a3f8f0/primary.m3u8 -#EXTINF:-1 tvg-id="",PBS Smoky Hills KS (KOOD) (1080p) [Offline] -https://kooddt.lls.pbs.org/out/v1/67d31d78887e485282d135628be5489f/index.m3u8 -#EXTINF:-1 tvg-id="",PBS South Bend IN (WNIT) (1080p) [Offline] -https://wnitdt.lls.pbs.org/out/v1/0eb01a8a161e4650af15b6542a20cde5/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Spokane WA (KSPS) (1080p) [Offline] -https://kspsdt.lls.pbs.org/out/v1/cf8babf84d2b48e3876bae15e08dcdc6/index.m3u8 -#EXTINF:-1 tvg-id="",PBS St. Louis MO (KETC) (1080p) [Offline] -https://ketcdt.lls.pbs.org/out/v1/08273a78d29c4b0abd6e0eb996b3d8cf/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Tacoma WA (KBTC) (1080p) [Offline] -https://kbtcdt.lls.pbs.org/out/v1/4f08c8e00549441b9a2acce47d112525/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Tallahassee FL (WFSU) (1080p) [Offline] -https://wfsudt.lls.pbs.org/out/v1/d2be172139764358a0d54352c8411845/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Tampa FL (WEDU) (1080p) [Offline] -https://wedudt.lls.pbs.org/out/v1/3e147f13bc464958b6ace4e5a5b9accc/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Topeka KS (KTWU) (1080p) [Offline] -https://ktwudt.lls.pbs.org/out/v1/567e503539034dd0ab8838b7e33ba5de/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Tucson AZ (KUAT) (1080p) [Offline] -https://kuatdt.lls.pbs.org/out/v1/8d95fb8559594a7b9359077ea0a512c3/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Urbana-Champaign IL (WILL) (1080p) [Offline] -https://willdt.lls.pbs.org/out/v1/15103ad003674a29b20b847deb71992b/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Vermillion SD (KUSD) (1080p) [Offline] -https://kusddt.lls.pbs.org/out/v1/38b8947635c54de8a15c5260e5cf774e/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Vincennes IN (WVUT) (1080p) [Offline] -https://wvutdt.lls.pbs.org/out/v1/6f47817ed7d54053815e35042c1f4824/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Warrensburg MO (KMOS) (1080p) [Offline] -https://hls-kmosdt.lls.pbs.org/out/v1/95689f4594814dfca261ea90892eafab/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Washington DC (WHUT) (1080p) [Offline] -https://whutdt.lls.pbs.org/out/v1/dd1102f24d7948e58517ba6a6573c928/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Watertown NY (WPBS) (1080p) [Offline] -https://wpbsdt.lls.pbs.org/out/v1/e3680a91029c4df9b7797ce13d828207/index.m3u8 -#EXTINF:-1 tvg-id="",PBS West Palm Beach FL (WXEL) (1080p) [Offline] -https://wxeldt.lls.pbs.org/out/v1/d4f2bc8357164a2e93d35abd2caecc4b/index.m3u8 -#EXTINF:-1 tvg-id="",PBS Wichita KS (KPTS) (1080p) [Offline] -https://kptsdt.lls.pbs.org/out/v1/1ca3404d6bc3404c9daa86c8f1ae19d0/index.m3u8 diff --git a/streams/us_plex.m3u b/streams/us_plex.m3u deleted file mode 100644 index d73a7dff4..000000000 --- a/streams/us_plex.m3u +++ /dev/null @@ -1,221 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="24HourFreeMovies.us",24 Hour Free Movies (720p) [Not 24/7] -https://d15690s323oesy.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/UDU-Plex/158.m3u8 -#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (1080p) [Offline] -https://120sports-accdn-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AccuWeather.us",AccuWeather Now (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00684-accuweather-accuweather-plex/playlist.m3u8 -#EXTINF:-1 tvg-id="AFV.us",AFV (720p) -https://linear-12.frequency.stream/dist/plex/12/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVenEspanol.us",AFV en Español (720p) [Not 24/7] -https://linear-46.frequency.stream/dist/plex/46/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiancrush.us",Asiancrush (720p) [Offline] -https://ac-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Bambu.us",Bambu [Offline] -https://bambu-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="",CBS 3 Omaha NE (KMTV-TV) (1080p) [Offline] -https://kmtvnow-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://cheddar.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Choppertown.us",Choppertown (720p) [Not 24/7] -https://linear-11.frequency.stream/dist/plex/11/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) -https://comedydynamics-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://contv-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://contvanime-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Crackle.us",Crackle (720p) -https://crackle-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (1080p) [Offline] -https://aenetworks-crime360-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) -https://dmtv-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Offline] -https://endemol-dealornodeal-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) -https://docurama-plex-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] -https://dove-channel.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) -https://edgesports-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) -https://estrellanews-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) -https://estrellatv-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) -https://euronews-euronews-spanish-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) -https://euronews-euronews-world-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (1080p) [Offline] -https://failarmy-linear.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (540p) [Offline] -https://9c17e762ec814557b3516dd3e0a7ca56.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_FailArmy/ade59f27-be9b-4b71-b8dc-05928c1dfdf4/2.m3u8 -#EXTINF:-1 tvg-id="FilmStreams.us",FilmStreams (1080p) [Offline] -https://spi-filmstream-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FreebieTV.us",Freebie TV (720p) [Not 24/7] -https://d1h1d6qoy9vnra.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Freebie-Plex/187.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (540p) [Offline] -https://gsn-gameshowchannnel-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GFNTV.us",GFN TV (720p) [Not 24/7] -https://d3jxchypmk8fja.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/GFNTV-Plex/169.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (720p) [Offline] -https://glewedtv-3.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Offline] -https://gravitas-movies.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (1080p) -https://gustous-plex.amagi.tv/hls/amagi_hls_data_gustoAAAA-gustous-plex/CDN/playlist.m3u8?X-Plex-Token=MorUy57ijWhGe4ixZb_T&channelId=5f8746eabd529300418246d9&did=df8e1a36-847d-5096-86a7-3803ed330ede&dnt=0&us_privacy=1--- -#EXTINF:-1 tvg-id="HardKnocks.ca",Hard Knocks (1080p) [Not 24/7] -https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-PLEX/121.m3u8 -#EXTINF:-1 tvg-id="",Hi-YAH! (1080p) -https://linear-59.frequency.stream/dist/plex/59/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="HollywoodClassics.us",Hollywood Classics (1080p) [Offline] -https://vitor-hollywoodclassics-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HumorMill.us",Humor Mill (1080p) [Not 24/7] -https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-PLEX/152.m3u8 -#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) -https://ign-plex.amagi.tv/hls/amagi_hls_data_ignAAAAAA-ign-plexA/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) -https://ign-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Journy.us",Journy (1080p) -https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=5f5132df62fe160040f26bc2&ptoken=PLbo_Jw_s1xgoB_1Srgg -#EXTINF:-1 tvg-id="JournysBourdainAllDay.us",Journy's Bourdain All Day (1080p) -https://plexpab.teleosmedia.com/linear/ovation/journypresentsanthonybourdain/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=6182cd0df4e62961d9c2ccf6&ptoken=PLbo_Jw_s1xgoB_1Srgg -#EXTINF:-1 tvg-id="JudgeFaith.us",Judge Faith (1080p) [Offline] -https://judge-faith-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) -https://vidaprimo-plex.amagi.tv/hls/amagi_hls_data_vidaprimo-vidaprimo-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) -https://vidaprimo-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) -https://lawandcrime-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LIT.us",LIT (1080p) [Offline] -https://studio1-lit-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (1080p) [Offline] -https://aenetworks-ae-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopBeastModeWest.us",Loop Beast Mode West (1080p) [Geo-blocked] -https://1f0e60dbce3043279c491fe51983361d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopElectronicaWest.us",Loop Electronica West (1080p) [Not 24/7] -https://57490d2f4ea646bbae56a1a816617a5f.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopWest.us",Loop Hip-Hop West (1080p) [Offline] -https://e20b86263a38460ba3647b18fb150000.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_plex/master.m3u8 -#EXTINF:-1 tvg-id="LoopPartyWest.us",Loop Party West (1080p) [Offline] -https://0b1ea79d9170498c91073ff8c460de18.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_plex/master.m3u8 -#EXTINF:-1 tvg-id="MagellanTVNow.us",Magellan TV Now (720p) [Offline] -https://magellantv-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) [Offline] -https://maverick-maverick-black-cinema-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (1080p) [Offline] -https://mavtv-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) -https://369f2966f62841f4affe37d0b330a13c.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_MidnightPulp/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c4427&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=263&ads.wurl_name=MidnightPulp -#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphere-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MuseumTVFast.us",Museum TV Fast (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtv-en-plex/playlist.m3u8 -#EXTINF:-1 tvg-id="NeuralFocused.us",Neural Focused [Offline] -https://1d75125ffd43490eb970a2f3f575e96c.mediatailor.us-west-2.amazonaws.com/v1/manifest/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_plex/35cba159-09d0-4e37-bf3c-99cd99ec425b/5.m3u8 -#EXTINF:-1 tvg-id="News12NewYork.us",News 12 New York (1080p) [Offline] -https://cheddar-news12ny-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) -https://newsmax-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-newsmax-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] -https://nosey-2.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) [Not 24/7] -https://d18toqrnfyz3v1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/OutdoorAmerica-PLEX/159.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://a357e37df8ec46719fdeffa29a3e8e40.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_PeopleAreAwesome/8fe64d6c-210c-42ac-8b42-8006b8721cf4/3.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (1080p) [Offline] -https://jukin-peopleareawesome-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (1080p) -https://b12eca572da7423284734ca3a6242ea2.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_PlayWorks/playlist.m3u8?ads.app_bundle=com.plexapp.desktop&ads.app_store_url=https://app.plex.tv&ads.consent=0&ads.gdpr=1&ads.plex_id=5f0ff263d71dcb00449ec01e&ads.plex_token=MorUy57ijWhGe4ixZb_T&ads.psid=df8e1a36-847d-5096-86a7-3803ed330ede&ads.targetopt=0&ads.ua=Mozilla/5.0+(Windows+NT+6.1;+rv:83.0)+Gecko/20100101+Firefox/83.0&ads.us_privacy=1---&ads.wurl_channel=512&ads.wurl_name=PlayWorks -#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (1080p) [Offline] -https://playworksdigital-playworks-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] -https://pocketwatch.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PopstarTV.us",Popstar! TV (1080p) [Not 24/7] -https://linear-10.frequency.stream/dist/plex/10/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="",Real Families (1080p) -https://lds-realfamilies-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (1080p) [Offline] -https://nosey-realnosey-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RealStories.us",Real Stories (1080p) -https://lds-realstories-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCrushTV.us",RetroCrush TV (1080p) -https://45034ce1cbb7489ab1499301f6274415.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_RetroCrush/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c442a&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=491&ads.wurl_name=RetroCrush -#EXTINF:-1 tvg-id="RetroCrushTV.us",RetroCrush TV (1080p) [Offline] -https://digitalmediarights-retrocrush-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Reuters.uk",Reuters (1080p) -https://reuters-reutersnow-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry2.us",Revry 2 (720p) [Offline] -https://0bef58ceebc44ecbba8ed46a4b17de0c.mediatailor.us-west-2.amazonaws.com/v1/manifest/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-PLEX/09eef831-6e1a-4f60-a138-77c0a1da8e06/0.m3u8 -#EXTINF:-1 tvg-id="Revry.us",Revry (720p) [Not 24/7] -https://linear-5.frequency.stream/dist/plex/5/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RevryNews.us",Revry News (720p) [Not 24/7] -https://linear-44.frequency.stream/dist/plex/44/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RunTimeFreeMovies.us",RunTime (1080p) -https://ammoruntime-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (1080p) -https://ammo-espanol-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RushbyAMC.us",Rush by AMC (1080p) [Offline] -https://amc-rushbyamc-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrills.us",Skills + Thrills (1080p) [Offline] -https://aenetworks-skills-thrills-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SoReal.us",So... Real (1080p) [Offline] -https://cinedigm-so-real-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://sportsgrid-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Offline] -https://stadium-ringofhonor-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) -https://stream-us-east-1.getpublica.com/playlist.m3u8?app_bundle=com.plexapp.desktop&app_domain=app.plex.tv&app_name=plex&content_series=5f12332eeca6a20040b328e5&content_title=MorUy57ijWhGe4ixZb_T&coppa=1&custom4=plex&device_make=Windows&device_model=Firefox&did=df8e1a36-847d-5096-86a7-3803ed330ede&gdpr=1&h=691&live=1&network_id=39&us_privacy=1---&w=1224 -#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) [Offline] -https://playworksdigital-tankee-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) -https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBoatShow.us",The Boat Show (720p) [Offline] -https://vitor-theboatshow-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (240p) -https://cinedigm-bobross-1.plex.wurl.com/master.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) [Offline] -https://thedesignnetwork-tdn-5.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) -https://filmdetective-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-filmdetective-plex/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) -https://filmdetective-plex.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) [Offline] -https://631dd17512664bafa0f3d1bd9717d7c0.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_ThePetCollective/9a0bc894-3507-4712-ac73-40ae060ddbef/3.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) [Offline] -https://the-pet-collective-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Timeline.us",Timeline (1080p) -https://lds-timeline-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TVClassics.us",TV Classics (720p) -https://vitor-tvclassics-1.plex.wurl.com/manifest/4300.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://venntv-plex.amagi.tv/hls/amagi_hls_data_venntvAAA-venntv-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (360p) [Offline] -https://waypointtv-samsung.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) [Offline] -https://04799df414944908856c6c521891945f.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_WeatherSpy/2eba863c-1452-4ea6-98b2-2b1c0c81c112/3.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (1080p) [Offline] -https://jukin-weatherspy-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] -https://whistle-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (1080p) [Offline] -https://endemol-wipeoutxtra-1.plex.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wonder.uk",Wonder (1080p) -https://lds-wonder-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (1080p) [Not 24/7] -https://dth07jsr8atug.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-Plex/171.m3u8 -#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) -https://xplore-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) -https://yahoo-plex.amagi.tv/hls/amagi_hls_data_yahoofina-yahoofinance-plex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) -https://yahoo-plex.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YuyuTV.us",Yuyu TV (1080p) [Offline] -https://yuyu-samsung.plex.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_redbox.m3u b/streams/us_redbox.m3u deleted file mode 100644 index 873880bd6..000000000 --- a/streams/us_redbox.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://contv-redbox-us-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) -https://docurama-redbox-us-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (1080p) -https://johnnycarson-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-johnnycarson-redbox/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MST3K.us",MST3K (1080p) -https://mst3k-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-mst3k/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) [Not 24/7] -https://pac12-redbox.amagi.tv/hls/amagi_hls_data_pac-12AAA-pac12-redbox/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox1Spotlight.us",Redbox 1: Spotlight (1080p) -https://spotlight-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox2Comedy.us",Redbox 2: Comedy (1080p) -https://comedy-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox3Rush.us",Redbox 3: Rush (1080p) -https://rush-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-rush/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox3Rush.us",Redbox 3: Rush (1080p) -https://rush-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) -http://shoutfactory-redbox.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) -https://shoutfactory-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-shoutfactorytv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeFrance.us",Tastemade France (1080p) -https://tastemadefr16min-redbox.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-redbox/CDN/playlist.m3u8 diff --git a/streams/us_redtraffic.m3u b/streams/us_redtraffic.m3u deleted file mode 100644 index c38b70099..000000000 --- a/streams/us_redtraffic.m3u +++ /dev/null @@ -1,37 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us",AdultIPTV.net Big Ass (720p) -http://live.redtraffic.xyz/bigass.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us",AdultIPTV.net Big Dick (720p) -http://live.redtraffic.xyz/bigdick.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us",AdultIPTV.net Big Tits (720p) -http://live.redtraffic.xyz/bigtits.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us",AdultIPTV.net Blowjob (720p) -http://live.redtraffic.xyz/blowjob.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us",AdultIPTV.net Cuckold (720p) -http://live.redtraffic.xyz/cuckold.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us",AdultIPTV.net Fetish (720p) -http://live.redtraffic.xyz/fetish.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us",AdultIPTV.net Gangbang (720p) -http://live.redtraffic.net/gangbang.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us",AdultIPTV.net Hardcore (720p) -http://live.redtraffic.xyz/hardcore.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us",AdultIPTV.net Interracial (720p) -http://live.redtraffic.xyz/interracial.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us",AdultIPTV.net Latina (720p) -http://live.redtraffic.xyz/latina.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us",AdultIPTV.net Lesbian (720p) -http://live.redtraffic.xyz/lesbian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us",AdultIPTV.net MILF (720p) -http://live.redtraffic.xyz/milf.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us",AdultIPTV.net Pornstar (720p) -http://live.redtraffic.xyz/pornstar.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us",AdultIPTV.net POV (720p) -http://live.redtraffic.xyz/pov.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us",AdultIPTV.net Russian (720p) -http://live.redtraffic.xyz/russian.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us",AdultIPTV.net Teen (720p) -http://live.redtraffic.xyz/teen.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us",AdultIPTV.net Threesome (720p) -http://live.redtraffic.xyz/threesome.m3u8 -#EXTINF:-1 tvg-id="AdultIPTVnetWoman.us",AdultIPTV.net Woman (720p) -http://live.redtraffic.net/woman.m3u8 diff --git a/streams/us_roku.m3u b/streams/us_roku.m3u deleted file mode 100644 index f77a35b5d..000000000 --- a/streams/us_roku.m3u +++ /dev/null @@ -1,243 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (1080p) [Offline] -https://120sports-accdn-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AccuWeather.us",AccuWeather Now (1080p) [Geo-blocked] -https://amg00684-accuweather-accuweather-rokuus-0endj.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AFV.us",AFV (720p) -https://linear-12.frequency.stream/dist/roku/12/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AFVenEspanol.us",AFV en Español (720p) [Not 24/7] -https://linear-46.frequency.stream/dist/roku/46/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) -https://p1media-americasvoice-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) -https://bnc-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) [Offline] -https://bnc-roku-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewsnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BloodyDisgusting.us",Bloody Disgusting (1080p) -https://bloodydisgusting-ingest-roku-us.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (1080p) [Offline] -https://bonappetit-roku-us.amagi.tv/hls/amagi_hls_data_condenast-bonappetitroku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) -https://brat-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) -https://buzzr-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) -https://cheddar.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://cheddar-cheddar-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CineSureno.us",Cine Sureño (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/CineSureno-roku/master.m3u8 -#EXTINF:-1 tvg-id="CineSureno.us",Cine Sureño (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-cinesureno-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us" status="timeout",Cinevault Westerns (540p) -https://20995731713c495289784ab260b3c830.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_CinevaultWesterns/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) [Offline] -https://gsn-cinevault-westerns-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://circle-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Cocoro.us",Cocoro (1080p) -https://4ea7abcc97144832b81dc50c6e8d6330.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Cocoro/playlist.m3u8 -#EXTINF:-1 tvg-id="Cocoro.us",Cocoro (1080p) [Offline] -https://coco-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://contvanime-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (1080p) [Offline] -https://aenetworks-crime360-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimeTime.us",Crime Time (1080p) -https://crimetimebamca-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Offline] -https://endemol-dealornodeal-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) -https://dovenow-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] -https://edgesports-roku.amagi.tv/hls/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) -https://estrellanews-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) [Offline] -https://estrellanews-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellanews-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) -https://estrellatv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaTVEast.us",Estrella TV East (1080p) [Offline] -https://estrellatv-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellatv-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="EuronewsenEspanol.fr",Euronews en Español (720p) [Offline] -https://euronews-euronews-spanish-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",Euronews English (720p) [Offline] -https://euronews-euronews-world-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FidoTV.us",Fido TV (1080p) [Offline] -https://fidotv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) [Not 24/7] -http://fox-foxsoul-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) [Offline] -https://fox-foxsoul-roku.amagi.tv/hls/amagi_hls_data_foxAAAAAA-foxsoul-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us",FTF (720p) -https://eleven-rebroadcast-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkWest.us",Game Show Network West (1080p) [Offline] -https://gsn-gameshowchannnel-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HallmarkChannelEast.us",Hallmark Channel East [Offline] -https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_yupptvfrn-hallmark-frndlytv/CDN/768x432_2340800/index.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (1080p) -https://happykids-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HauntTV.us",Haunt TV (1080p) -https://haunttv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",Hi-YAH! (1080p) -https://linear-59.frequency.stream/dist/roku/59/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="Horrify.us",Horrify (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/Horrify-roku/master.m3u8 -#EXTINF:-1 tvg-id="Horrify.us",Horrify (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-horrify-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (1080p) -https://ft-ifood-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (1080p) [Offline] -https://ft-ifood-roku.amagi.tv/hls/amagi_hls_data_futuretod-ifood-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Juntos.us",Juntos (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/Juntos-roku/master.m3u8 -#EXTINF:-1 tvg-id="Juntos.us",Juntos (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-juntos-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KetchupTV.us",Ketchup TV (1080p) [Offline] -https://vod365-ketchuptv-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGamerTV.us",Kid Gamer TV [Offline] -https://studio71-roku-us.amagi.tv/hls/amagi_hls_data_studio71A-studio71roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Kidoodle.us",Kidoodle.TV (1080p) [Offline] -http://kidoodletv-kdtv-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidzBop.us",Kidz Bop (1080p) [Offline] -https://kidzbop-rokuus.amagi.tv/hls/amagi_hls_data_kidzbopAA-kidzbop-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LegoChannel.us",Lego Channel (1080p) -https://legochannel-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (1080p) [Offline] -http://aenetworks-ae-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop80sEast.us",Loop 80s East (1080p) [Geo-blocked] -https://55e014b3437040d08777729c863a2097.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Loop80s-1/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop80sEast.us",Loop 80s East (1080p) [Geo-blocked] -https://loop-80s-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Loop90sEast.us",Loop 90s East (1080p) [Offline] -https://loop-90s-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopCountry.us",Loop Country East (1080p) [Offline] -https://053155d1274848ed85106dbf20adc283.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_LoopCountry/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopCountryEast.us",Loop Country East (1080p) [Offline] -https://loop-country-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopHipHopEast.us",Loop Hip-Hop East (1080p) [Offline] -https://loop-hip-hop-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopHottestEast.us",Loop Hottest East (1080p) [Offline] -https://loop-hottest-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoopPartyEast.us",Loop Party East (1080p) [Offline] -https://loop-party-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNature.us",Love Nature (1080p) -http://bamus-eng-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LoveNatureEspanol.us",Love Nature Español (1080p) [Offline] -https://bamus-spa-roku.amagi.tv/hls/amagi_hls_data_bamusaAAA-roku-bam-spanish/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MadeinHollywood.us",Made in Hollywood (720p) [Offline] -https://connection3-ent.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (1080p) [Offline] -https://maverick-maverick-black-cinema-3.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTVSelect.us",MavTV Select (1080p) [Offline] -https://mavtv-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.fr",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MoonBug.uk",MoonBug (1080p) [Offline] -https://moonbug-rokuus.amagi.tv/hls/amagi_hls_data_moonbugAA-moonbug-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MoonbugKids.uk",Moonbug Kids (1080p) -https://moonbug-rokuus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_lionsgate-moviesphere-roku-us/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphere-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MST3K.us",MST3K (1080p) -https://mst3k-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) -https://mytime-roku-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (1080p) -https://b9860b21629b415987978bdbbfbc3095.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_NewKID/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (1080p) [Offline] -https://newidco-newkid-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) [Offline] -https://newsmax-roku-us.amagi.tv/hls/amagi_hls_data_newsmaxAA-newsmax/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] -https://nosey-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (720p) [Offline] -https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (1080p) -http://oneamericanews-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OANEncore.us",OAN Encore [Offline] -https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/512x288_875600/index.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) -https://outsidetv-roku-us.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) -https://pac12-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkfongBabyShark.us",Pinkfong Baby Shark (1080p) -https://fc2f8d2d3cec45bb9187e8de15532838.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_BabySharkTV/playlist.m3u8 -#EXTINF:-1 tvg-id="PinkfongBabyShark.us",Pinkfong Baby Shark (1080p) [Offline] -https://newidco-babysharktv-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://playerstv-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] -https://pocketwatch.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] -https://rtmtv-powernation-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (1080p) [Offline] -https://nosey-realnosey-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Redbox1Spotlight.us",Redbox 1: Spotlight (1080p) [Offline] -https://spotlight-rokuus.amagi.tv/hls/amagi_hls_data_redboxAAA-spotlight-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RetroCrush.us",RetroCrush TV (1080p) [Offline] -https://digitalmediarights-retrocrush-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ReutersNow.uk",Reuters Now (1080p) [Offline] -https://reuters-reutersnow-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us",Revry (720p) -https://linear-45.frequency.stream/dist/roku/45/hls/master/playlist.m3u8 -#EXTINF:-1 tvg-id="RuntimeSpain.us",Runtime (Spain) (1080p) -https://runtime-espanol-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RyanandFriends.us",Ryan and Friends (720p) [Offline] -https://pocketwatch-ryanandfriends-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us",Samuel Goldwyn Channel (1080p) -https://samuelgoldwyn-films-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynClassics.us",Samuel Goldwyn Classics (1080p) -https://samuelgoldwyn-classic-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel2.us",Skills + Thrills Channel 2 (1080p) [Offline] -https://aenetworks-skills-thrills-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalComedias.es",Sony Canal Comedias (720p) [Offline] -https://sony-comedias-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalCompetencias.es",Sony Canal Competencias (720p) [Offline] -https://sony-competencias-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalNovelas.us",Sony Canal Novelas (720p) [Offline] -https://sony-novelas-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SonyCanalNovelas.es",Sony Canal Novelas (720p) [Offline] -https://sony-novelas-1.roku.wurl.com/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) [Offline] -https://stadium.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) -https://tastemade-es8intl-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) [Offline] -https://tastemade-es8intl-roku.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es8intl-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCarolBurnettShow.us",The Carol Burnett Show (1080p) -https://carolburnett-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCraftistry.us",The Craftistry (1080p) -https://studio71-craftistry-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCraftistry.us",The Craftistry (1080p) [Offline] -https://studio71-craftistry-roku.amagi.tv/hls/amagi_hls_data_studio71A-craftistry-rokuA/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (1080p) [Offline] -https://thedesignnetwork-tdn-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThisOldHouse.us",This Old House (1080p) [Offline] -https://thisoldhouse-2.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TopCine.us",Top Cine (1080p) -https://olympusamagi.pc.cdn.bitgravity.com/TopCine-roku/master.m3u8 -#EXTINF:-1 tvg-id="TopCine.us",Top Cine (1080p) [Offline] -https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-topcine-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) -https://unbeaten-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) [Offline] -https://unbeaten-roku.amagi.tv/hls/amagi_hls_data_inverleig-unbeaten-roku/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) [Offline] -https://venntv-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us",WeatherNation (720p) [Geo-blocked] -https://weathernationtv.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (1080p) [Offline] -https://whistletv-roku-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (1080p) [Offline] -https://endemol-wipeoutxtra-1.roku.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) -https://xplore-roku.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) -https://yahoo-roku-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.nz",Zoo Moo (1080p) [Offline] -https://rockentertainment-zoomoo-1.roku.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_samsung.m3u b/streams/us_samsung.m3u deleted file mode 100644 index bb493b193..000000000 --- a/streams/us_samsung.m3u +++ /dev/null @@ -1,207 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ACCNetwork.us",ACC Network (720p) [Offline] -https://120sports-accdn-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (720p) [Offline] -https://amc-amcpresents-2.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Asiancrush.us",Asiancrush (720p) [Offline] -https://ac-samsung.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BCCGaming.us" status="error",BCC Gaming (720p) [Offline] -https://arcade-cloud.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p) -https://bloomberg-quicktake-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVPlus.us",Bloomberg TV+ UHD (2160p) -https://bloomberg-bloombergtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (1080p) -https://bonappetit-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BounceXL.us",Bounce XL (720p) -https://c217322ca48e4d1e98ab33fe41a5ed01.mediatailor.us-east-1.amazonaws.com/v1/master/04fd913bb278d8775298c26fdca9d9841f37601f/Samsung_BounceXL/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) -https://brat-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) -https://buzzr-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) -https://cdn-ue1-prod.tsv2.amagi.tv/linear/samsungus-buzzr-samsungtv-us/playlist.m3u8 -#EXTINF:-1 tvg-id="CanelaTV.us",Canela TV (720p) [Offline] -https://canelamedia-canelatv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) -https://cheddar.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) [Offline] -https://gsn-cinevault-westerns-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://circle-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Not 24/7] -https://contv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Crime360.us",Crime 360 (720p) -https://aenetworks-crime360-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DangerTV.us",Danger TV (720p) [Offline] -https://dangertv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (720p) [Offline] -https://endemol-dealornodeal-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DegrassiTheNextGeneration.us",Degrassi The Next Generation (720p) -https://dhx-degrassi-1-us.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Offline] -https://docurama.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DryBarComedy.us",DryBar Comedy (720p) [Offline] -https://drybar-drybarcomedy-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (720p) [Offline] -https://dust.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) -https://edgesport-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) -https://edgesport-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (US) (720p) [Timeout] -https://img-edgesport.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (1080p) -https://estrellanews-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="",ESTV (1080p) -https://estv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (720p) -https://failarmy-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsNow.us",FOX News Now (720p) -https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) -https://fox-foxsoul-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FTF.us",FTF (540p) -https://elevensports.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FuelTV.us",Fuel TV (720p) -https://fueltv-fueltv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowNetworkEast.us",Game Show Network East (720p) [Offline] -https://gsn-gameshowchannnel-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Offline] -https://gravitas-movies.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) -https://gustotv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HollyWire.us",Holly Wire (720p) [Offline] -https://hollywire.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HSN.us",HSN (720p) -https://hsn.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Hungry.us",Hungry (720p) [Offline] -https://food.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IGN.us",IGN (1080p) -https://ign-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://insighttv-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) -https://introuble-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://inwonder-samsung-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="IonPlus.us",Ion Plus (1080p) -https://ion-plus.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (720p) [Offline] -https://kidoodletv-kdtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) -http://lawandcrime.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LivelyPlace.us",Lively Place (720p) -https://aenetworks-ae-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.fr",Magellan TV (720p) [Offline] -https://magellantv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) [Offline] -https://maverick-maverick-black-cinema-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us",MavTV (720p) [Offline] -https://mavtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MHzNow.us",MHz Now (720p) [Offline] -https://mhz-samsung-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (720p) -https://dmr-midnightpulp-3-us.samsung.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieMix.us",MovieMix (720p) [Offline] -https://moviemix.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MovieSphere.us",MovieSphere (1080p) -https://moviesphere-samsung-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) -https://mytimeuk-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKMovies.us",New K-Movies (720p) [Offline] -https://newidco-newmovies-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewKidTV.us",New Kid TV (720p) [Offline] -https://newidco-newkid-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) -https://newsmax-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) [Offline] -https://newsy.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us",Nosey (720p) [Offline] -https://nosey-2.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (720p) -https://outside-tv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (1080p) -https://pac12-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Offline] -https://jukin-peopleareawesome-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://playerstv-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) [Offline] -https://pocketwatch.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] -https://rtmtv-samsung.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PowerNation.us",Power Nation (720p) [Offline] -https://rtmtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PursuitUp.us",Pursuit Up (720p) [Offline] -https://pursuitup.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Qubo.us",Qubo (720p) [Offline] -http://ion-qubo-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="QVC.us",QVC (720p) -https://qvc.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RiffTrax.us",RiffTrax (720p) [Offline] -https://rifftrax.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (720p) -https://shout-factory.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel3.us",Skills + Thrills Channel 3 (720p) [Offline] -https://aenetworks-skills-thrills-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://sportsgrid-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) -https://stadium.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.us",Stingray Naturescape (1080p) -https://stingray-naturescape-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQello.ca",Stingray Qello (1080p) -https://samsung.ott-channels.stingray.com/qello/master.m3u8 -#EXTINF:-1 tvg-id="STIRROutdoorAmerica.us",STIRR Outdoor America (720p) [Offline] -https://obsession-media-sinclair.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SurfNowTV.us",Surf Now TV (720p) [Offline] -https://1091-surfnowtv-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (720p) [Offline] -https://tastemade.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) -https://tastemade-es16tm-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TGJunior.us",TG Junior (720p) [Offline] -https://tg-junior.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) -https://thedesignnetwork-tdn-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) -https://the-pet-collective-linear.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (720p) [Offline] -https://previewchannel-previewchannel-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheYoungTurks.us",The Young Turks (TYT) (720p) -https://tyt-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThisOldHouse.us",This Old House (720p) -https://26487f8be0614420a64b6f5964563a75.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Samsung_ThisOldHouse/playlist.m3u8 -#EXTINF:-1 tvg-id="TinyHouseNation.us",Tiny House Nation (720p) [Offline] -https://aenetworks-tinyhousenation-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Offline] -https://toon-goggles.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://venntv-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (720p) [Offline] -https://waypointtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAbsoluteReality.us",We TV Absolute Reality (720p) [Offline] -https://amc-absolutereality-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAllWeddings.us",We TV All Weddings (720p) [Offline] -https://amc-allweddings-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us",Weather Nation (720p) [Offline] -https://weathernationtv.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) -https://jukin-weatherspy-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] -https://whistle-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WipeoutXtra.us",Wipeout Xtra (720p) [Offline] -https://endemol-wipeoutxtra-1.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) [Offline] -https://world-poker-tour.samsung.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) -http://xlpore-samsungus.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (1080p) -https://yahoo-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) -https://younghollywood-rakuten-samsung.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ZooMoo.us",Zoo Moo (720p) [Offline] -https://rockentertainment-zoomoo-1.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/streams/us_ssh101.m3u b/streams/us_ssh101.m3u deleted file mode 100644 index 12a75f775..000000000 --- a/streams/us_ssh101.m3u +++ /dev/null @@ -1,39 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABTelevision.pe",ABTelevision (480p) [Not 24/7] -https://tna5.bozztv.com/ABTelevision2020/index.m3u8 -#EXTINF:-1 tvg-id="AigaioTV.gr",Aigaio TV (360p) [Not 24/7] -https://tna5.bozztv.com/aigaiotv1/index.m3u8 -#EXTINF:-1 tvg-id="AVCHD.ar",AVC HD (Monte Caseros | Corrientes) (360p) [Not 24/7] -https://tna5.bozztv.com/AVCHD/index.m3u8 -#EXTINF:-1 tvg-id="Canal1.co",Canal 1 (432p) [Not 24/7] -https://tna5.bozztv.com/LiveCH007/index.m3u8 -#EXTINF:-1 tvg-id="CanalCaracol.co",Canal Caracol (432p) -https://tna5.bozztv.com/LiveCH005/index.m3u8 -#EXTINF:-1 tvg-id="CanalCaracolHD2.co",Canal Caracol HD2 (432p) [Not 24/7] -https://tna5.bozztv.com/LiveCH008/index.m3u8 -#EXTINF:-1 tvg-id="CanalRCN.co",Canal RCN (432p) [Not 24/7] -https://tna5.bozztv.com/LiveCH004/index.m3u8 -#EXTINF:-1 tvg-id="ChannelB.bd",Channel B (1080p) [Not 24/7] -https://tna5.bozztv.com/channelb/index.m3u8 -#EXTINF:-1 tvg-id="CityTV.co",City TV (Bogotà | Cundinamarca) (432p) [Not 24/7] -https://tna5.bozztv.com/LiveCH006/index.m3u8 -#EXTINF:-1 tvg-id="CLTV36.ph",CLTV 36 (480p) [Not 24/7] -https://tna5.bozztv.com/cltv36/index.m3u8 -#EXTINF:-1 tvg-id="ConectaTV.mx",Conecta TV (720p) [Not 24/7] -https://tna5.bozztv.com/Conectatvmexico/index.m3u8 -#EXTINF:-1 tvg-id="JessTV.ca",Jess TV (Lethbridge) (480p) [Not 24/7] -https://tna5.bozztv.com/jesstv/index.m3u8 -#EXTINF:-1 tvg-id="KallpaTV.pe",Kallpa TV (Chimbote) (720p) [Not 24/7] -https://tna5.bozztv.com/canaltv/index.m3u8 -#EXTINF:-1 tvg-id="LatacungaTV.ec",Latacunga TV (720p) [Not 24/7] -https://tna5.bozztv.com/latacungatv2021/index.m3u8 -#EXTINF:-1 tvg-id="OrbitaFM.sv",Órbita FM (720p) [Not 24/7] -https://tna5.bozztv.com/OrbitaFM/index.m3u8 -#EXTINF:-1 tvg-id="RadioSistema.pe",Radio Sistema (Ica) (720p) [Not 24/7] -https://tna5.bozztv.com/SISTEMA/index.m3u8 -#EXTINF:-1 tvg-id="SolarTelevision.pe",Solar Televisión (Abancay) (360p) [Not 24/7] -https://tna5.bozztv.com/televisionsolar/index.m3u8 -#EXTINF:-1 tvg-id="UchuTV.pe",Uchu TV (Cusco) (720p) [Not 24/7] -https://tna5.bozztv.com/Cusco/index.m3u8 -#EXTINF:-1 tvg-id="WORODT.pr",WORO-DT (720p) [Not 24/7] -https://tna5.bozztv.com/worodt/playlist.m3u8 diff --git a/streams/us_stirr.m3u b/streams/us_stirr.m3u deleted file mode 100644 index 2c2aeea1e..000000000 --- a/streams/us_stirr.m3u +++ /dev/null @@ -1,515 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AFV.us",AFV (720p) -https://dai.google.com/linear/hls/event/18_lZXPySFa5_GRVEbOX_A/master.m3u8 -#EXTINF:-1 tvg-id="AmericavsAddiction.us",America vs. Addiction (720p) -https://dai.google.com/linear/hls/event/-A9339ixSzydnZQZHd1u2A/master.m3u8 -#EXTINF:-1 tvg-id="beINSportsXtra.us",beIN Sports Xtra (1080p) -https://dai.google.com/linear/hls/event/3e-9BOvHQrCI9hboMYjb6w/master.m3u8 -#EXTINF:-1 tvg-id="BigLifeTV.us",Big Life TV (720p) -https://biglife.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTV.us",Bloomberg TV (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/NiumF4GTSGe-pXM-iMsP0A/master.m3u8 -#EXTINF:-1 tvg-id="BritCom.in",BritCom (720p) [Offline] -https://dai.google.com/linear/hls/event/IdHTuehZQPClis-gJaZkFQ/master.m3u8 -#EXTINF:-1 tvg-id="Buzzr.us",Buzzr (1080p) -https://dai.google.com/linear/hls/event/wFZ1ufQ8ToaSdPgGtbBbpw/master.m3u8 -#EXTINF:-1 tvg-id="CBSN.us",CBSN (720p) -https://dai.google.com/linear/hls/event/Sid4xiTQTkCT1SLu6rjUSQ/master.m3u8 -#EXTINF:-1 tvg-id="KPIXTV.us",CBSN Bay Area CA (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/VE8b4n-YStusEGv5Z2NmsQ/master.m3u8 -#EXTINF:-1 tvg-id="",CBSN Boston MA (720p) -https://dai.google.com/linear/hls/event/26FJK7wRSo6RhPsK70XS_w/master.m3u8 -#EXTINF:-1 tvg-id="WBBM.us",CBSN Chicago IL (720p) -https://dai.google.com/linear/hls/event/DWt8iR1YQ-OJQsxczu8KfQ/master.m3u8 -#EXTINF:-1 tvg-id="KTVTTV.us",CBSN Dallas Ft Worth TX (720p) -https://dai.google.com/linear/hls/event/o5J3g4U9T16CvYnS7Qd86Q/master.m3u8 -#EXTINF:-1 tvg-id="KCNCTV.us",CBSN Denver CO (720p) -https://dai.google.com/linear/hls/event/EUo67MWSRh6toPi0heJKnQ/master.m3u8 -#EXTINF:-1 tvg-id="KCBSTV.us",CBSN Los Angeles CA (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/TxSbNMu4R5anKrjV02VOBg/master.m3u8 -#EXTINF:-1 tvg-id="",CBSN Minnesota MN (720p) -https://dai.google.com/linear/hls/event/zcWPVCfURNSPxeidcckQLA/master.m3u8 -#EXTINF:-1 tvg-id="WLNYTV.us",CBSN New York NY (720p) -http://dai.google.com/linear/hls/event/rtcMlf4RTvOEkaudeany5w/master.m3u8 -#EXTINF:-1 tvg-id="KYWTV.us",CBSN Philly PA (720p) -https://dai.google.com/linear/hls/event/Xu-ITJ2GTNGaxGn893mmWg/master.m3u8 -#EXTINF:-1 tvg-id="KDKA.us",CBSN Pittsburgh PA (720p) -https://dai.google.com/linear/hls/event/i5SXVKI4QIuV-eF2XAH4FQ/master.m3u8 -#EXTINF:-1 tvg-id="CGTNEnglish.cn",CGTN English (432p) [Not 24/7] -https://dai.google.com/linear/hls/event/r4sa-f6GSN2XIvzKv5jVng/master.m3u8 -#EXTINF:-1 tvg-id="Charge.us",Charge! (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/37eb732888614810b512fdd82604244e.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://dai.google.com/linear/hls/event/frfwucAPTVunrpitYiymwg/master.m3u8 -#EXTINF:-1 tvg-id="ChickenSoupForTheSoul.us",Chicken Soup For The Soul (1080p) -https://dai.google.com/linear/hls/event/2C5P0JGUSj65s8KpeyIDcQ/master.m3u8 -#EXTINF:-1 tvg-id="CineLife.us",CineLife (720p) -https://magselect-stirr.amagi.tv/playlist720p.m3u8 -#EXTINF:-1 tvg-id="CineLife.us",CineLife (1080p) -https://magselect-stirr.amagi.tv/playlist1080p.m3u8 -#EXTINF:-1 tvg-id="Comet.us",Comet (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://contv-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://dai.google.com/linear/hls/event/o8Smo_gsSAm26uW9Xkww_g/master.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Offline] -http://contv.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CrimeStory.us",Crime Story [Offline] -https://dai.google.com/linear/hls/event/HgozmUlQQviIXFUF23mloA/master.m3u8 -#EXTINF:-1 tvg-id="Dabl.us",Dabl (1080p) -http://dai.google.com/linear/hls/event/oIKcyC8QThaW4F2KeB-Tdw/master.m3u8 -#EXTINF:-1 tvg-id="DealorNoDeal.us",Deal or No Deal (1080p) [Not 24/7] -https://endemol-dealornodeal-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DickCavett.us",Dick Cavett (720p) -https://dai.google.com/linear/hls/event/-NacIpMDTZ2y1bhkJN96Vg/master.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) -https://dai.google.com/linear/hls/event/dfbBGQhPQQqypdEAjpUGlA/master.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (1080p) -https://dai.google.com/linear/hls/event/xuMJ1vhQQDGjEWlxK9Qh4w/master.m3u8 -#EXTINF:-1 tvg-id="DUSTx.us",DUSTx (720p) [Timeout] -https://dust.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="EDGEsportSTIRR.uk",EDGEsport (STIRR) (1080p) [Offline] -https://dai.google.com/linear/hls/event/d4zeSI-dTuqizFrByjs3OA/master.m3u8 -#EXTINF:-1 tvg-id="ETLive.us",ET Live (1080p) -https://dai.google.com/linear/hls/event/xrVrJYTmTfitfXBQfeZByQ/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/hW5jMh7dTRK1UXW5fTH07A/master.m3u8 -#EXTINF:-1 tvg-id="Futurism.us",Futurism (720p) -https://dai.google.com/linear/hls/event/YakHdnr_RpyszducVuHOpQ/master.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (720p) -https://dai.google.com/linear/hls/event/ChWV1GupQOWE92uG4DvbkQ/master.m3u8 -#EXTINF:-1 tvg-id="Hallypop.kr",Hallypop (1080p) [Offline] -https://dai.google.com/linear/hls/event/ctGD-E18Q0-3WScFd_tK5w/master.m3u8 -#EXTINF:-1 tvg-id="HorseShoppingChannel.us",Horse Shopping Channel (720p) -https://uplynkcontent.sinclairstoryline.com/channel/26c7a77fd6ed453da6846a16ad0625d9.m3u8 -#EXTINF:-1 tvg-id="InsightTV.us",Insight TV (1080p) -https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (1080p) -https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 -#EXTINF:-1 tvg-id="KidsClick.us",KidsClick (720p) [Geo-blocked] -https://usgeowall.sinclairstoryline.com/channel/1698bf57810a48c486b83d542bca298d.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/3w3PsYzZQzS8lyRfi7e4mQ/master.m3u8 -#EXTINF:-1 tvg-id="LIVExLIVE.us",LIVExLIVE (1080p) -https://dai.google.com/linear/hls/event/xC8SDBfbTKCTCa20kFJQXQ/master.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.us",Magellan TV (720p) -https://dai.google.com/linear/hls/event/5xreV3X4T9WxeIbrwOmdMA/master.m3u8 -#EXTINF:-1 tvg-id="Mobcrush.us",Mobcrush (720p) [Offline] -https://dai.google.com/linear/hls/event/LGDVXxxyT8SxrL4-ZodxKw/master.m3u8 -#EXTINF:-1 tvg-id="MusicBaeble.us",Music Baeble (1080p) [Offline] -https://dai.google.com/linear/hls/event/HuoWULBBQFKJalbtsd7qPw/master.m3u8 -#EXTINF:-1 tvg-id="NASATV.us",NASA TV (720p) -https://uplynkcontent.sinclairstoryline.com/channel/ddd76fdc1c0a456ba537e4f48e827d3e.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) [Offline] -https://newsy.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) [Offline] -https://dai.google.com/linear/hls/event/0PopB0AoSiClAGrHVHBTlw/master.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) -https://dai.google.com/linear/hls/event/WB-7LjdsRVm0wVoLZjR8mA/master.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) -https://outsidetvplus-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="QelloConcerts.us",Qello Concerts (1080p) -https://dai.google.com/linear/hls/event/BakMHO8xRSmGKYeiyhsq3A/master.m3u8 -#EXTINF:-1 tvg-id="Quicktake.us",Quicktake (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/6ANW1HGeSTKzJlnAa9u1AQ/master.m3u8 -#EXTINF:-1 tvg-id="RetroCrush.us",RetroCrush TV (720p) -https://digitalmediarights-retrocrush-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RingofHonorWrestling.us",Ring of Honor Wrestling (720p) -https://stadium-ringofhonor-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) -https://dai.google.com/linear/hls/event/JX5KKhKKRPqchP3LfXD-1A/master.m3u8 -#EXTINF:-1 tvg-id="SoReal.us",So...Real (1080p) -https://dai.google.com/linear/hls/event/VMzvtHhOQdOAzbV_hQKQbQ/master.m3u8 -#EXTINF:-1 tvg-id="SportsTVPlus.us",Sports TV Plus (1080p) -https://dai.google.com/linear/hls/event/9FKrAqCfRvGfn3tPbVFO-g/master.m3u8 -#EXTINF:-1 tvg-id="Sportswire.us",Sportswire (1080p) -https://dai.google.com/linear/hls/event/8R__yZf7SR6yMb-oTXgbEQ/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) -https://stirr.ott-channels.stingray.com/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassica.ca",Stingray Classica (1080p) -https://stirr.ott-channels.stingray.com/iota-classica/index.m3u8 -#EXTINF:-1 tvg-id="StingrayDjazz.ca",Stingray Djazz (1080p) -https://dai.google.com/linear/hls/event/C-lfmhUVTGeDNWwU13_EgA/master.m3u8 -#EXTINF:-1 tvg-id="",Stingray djazz (1080p) -https://stirr.ott-channels.stingray.com/djazz/master.m3u8 -#EXTINF:-1 tvg-id="StingrayEverything80s.ca",Stingray Everything 80s (1080p) -https://stirr.ott-channels.stingray.com/128/master.m3u8 -#EXTINF:-1 tvg-id="StingrayFlashback70s.ca",Stingray Flashback 70s (1080p) -https://stirr.ott-channels.stingray.com/115/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) -https://stirr.ott-channels.stingray.com/107/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHolidayHits.ca",Stingray Holiday Hits (1080p) -https://stirr.ott-channels.stingray.com/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) -https://stirr.ott-channels.stingray.com/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.us",Stingray Karaoke (720p) -https://dai.google.com/linear/hls/event/5bqbG8j7T_6_qMONC1SDsg/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.us",Stingray Naturescape (1080p) -https://dai.google.com/linear/hls/event/6RPZlzksTCyB1euPqLcBZQ/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) [Not 24/7] -https://stirr.ott-channels.stingray.com/naturescape/master.m3u8 -#EXTINF:-1 tvg-id="STIRR2020Live.us",STIRR 2020 Live (720p) [Offline] -https://dai.google.com/linear/hls/event/mMP0Ny8OTb2Ev2EvsiIlrg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRAmericanClassics.us",STIRR American Classics (720p) -https://dai.google.com/linear/hls/event/0e06oV-NTI2ygS2MRQk9ZA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBiographies.us",STIRR Biographies (720p) [Offline] -https://dai.google.com/linear/hls/event/OzhtmoTQQjSNOimI6ikGCQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBlackCinema.us",STIRR Black Cinema (768p) [Not 24/7] -https://dai.google.com/linear/hls/event/9WuQ_LseR12mMx2-QW41XQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRBonanza.us",STIRR Bonanza (720p) [Offline] -https://dai.google.com/linear/hls/event/LeVr-Z0_Q4qMDdXx7zr22w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCharge.us",STIRR Charge! (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/e1QjWFRNSR2YFYGsPbkfgg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRChoppertown.us",STIRR Choppertown (720p) -https://dai.google.com/linear/hls/event/N3c94WZQQq2fruixzfcCUQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCinehouse.us",STIRR Cinehouse (720p) -https://dai.google.com/linear/hls/event/28oUp4GcQ-u49U4_jjC4Iw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCineLife.us",STIRR CineLife (1080p) -https://dai.google.com/linear/hls/event/PFJ1Jhd6SsSMcu3qq86wzQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCity.us",STIRR City (720p) -https://dai.google.com/linear/hls/event/4aD5IJf0QgKUJwPbq2fngg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAbilene.us",STIRR City Abilene (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/uxPBn5ErTQ-FOjxIYle2PA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAlbany.us",STIRR City Albany (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/fD3VBzTxRXGz-v7HV0vryQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAlbany.us",STIRR City Albany (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/LT14Y2LdQSWx9OQCmgVfuA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAmarillo.us",STIRR City Amarillo (720p) -https://dai.google.com/linear/hls/event/qvOGhZEeQh-s6TMFz7dVcg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityAustin.us",STIRR City Austin (720p) -https://dai.google.com/linear/hls/event/zDh7VBx8S7Sog5vzcXuehg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBakersfield.us",STIRR City Bakersfield (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/-4GLQIcZTUWzP8vDAXNQsQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBaltimore.us",STIRR City Baltimore (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/jCNW8TtPRe6lnJMMVBZWVA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBayCity.us",STIRR City Bay City (720p) -https://dai.google.com/linear/hls/event/kJPGlFKuS0itUoW7TfuDYQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBeaumont.us",STIRR City Beaumont (720p) -https://dai.google.com/linear/hls/event/FKoa3RaEQxyyrf8PfPbgkg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBeaumontPortArthur.us",STIRR City Beaumont Port Arthur (720p) -https://dai.google.com/linear/hls/event/tlvrrqidRaG0KbLN4Hd5mg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBirmingham.us",STIRR City Birmingham (720p) -https://dai.google.com/linear/hls/event/4RH6FntvSLOIv5FB-p4I8w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityBoise.us",STIRR City Boise (720p) -https://dai.google.com/linear/hls/event/EXltT2IOQvCIn8v23_15ow/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCadillac.us",STIRR City Cadillac (720p) -https://dai.google.com/linear/hls/event/do9arGJBTD--KARQ056kpw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCedarRapids.us",STIRR City Cedar Rapids (720p) -https://dai.google.com/linear/hls/event/zPJC-rOUTg28uymLdmYw5w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChampaign.us",STIRR City Champaign (720p) -https://dai.google.com/linear/hls/event/YLDvM8DGQyqsYnDsgxOBPQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCharleston.us",STIRR City Charleston (720p) -https://dai.google.com/linear/hls/event/kMNMCCQsQYyyk2n2h_4cNw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCharlestonHuntington.us",STIRR City Charleston Huntington (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/fLqJePs_QR-FRTttC8fMIA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChattanooga.us",STIRR City Chattanooga (720p) -https://dai.google.com/linear/hls/event/7_v7qMjnQWGZShy2eOvR5g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityChicoRedding.us",STIRR City Chico-Redding (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/sHnor7AERX60rGA1kR_wPA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityCincinnati.us",STIRR City Cincinnati (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/ZaLvGYKiTfuSYgJuBZD67Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbia.us",STIRR City Columbia (480p) -https://dai.google.com/linear/hls/event/btXotLiMRvmsa5J5AetBGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbia.us",STIRR City Columbia (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/nkNBP1eHT_GQwS7oYq23zw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbus1.us",STIRR City Columbus #1 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/wV5ExXM9RxabBzbWnVv9RA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityColumbus2.us",STIRR City Columbus #2 (720p) -https://dai.google.com/linear/hls/event/QLfrYVtERpCnzM7qE_PkUw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityDayton.us",STIRR City Dayton (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/nqvIiznDQO60CBNaJ5mmdQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityElPaso1.us",STIRR City El Paso #1 (720p) -https://dai.google.com/linear/hls/event/MYhAOCTqQA6QFBdc1xwULQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityElPaso2.us",STIRR City El Paso #2 (720p) -https://dai.google.com/linear/hls/event/Exp7zxEPSLWuEhMoD2voOg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield1.us",STIRR City Eugene Springfield #1 (720p) -https://dai.google.com/linear/hls/event/Ep4QBzH-TKW0iLhPVGuCvA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield2.us",STIRR City Eugene Springfield #2 (720p) -https://dai.google.com/linear/hls/event/bERQw8-YRoK3MtJ0UUaI5w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityFlorence.us",STIRR City Florence (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/6Ll-qQyAQlWgCt4PhH11Kw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityFresnoVisalia.us",STIRR City Fresno-Visalia (720p) -https://dai.google.com/linear/hls/event/tFAJ7xPcTYaLKwIfUA-JIw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGainesville.us",STIRR City Gainesville (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Ybz6nJKqSS2fcQYflsmpRw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGrandRapids.us",STIRR City Grand Rapids (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/leOKmL9fQ6eZyhdoROSh5Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenBay.us",STIRR City Green Bay (720p) -https://dai.google.com/linear/hls/event/a6lsWNYDQwyM9fjytUCrcw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenvilleAsheville.us",STIRR City Greenville Asheville (720p) -https://dai.google.com/linear/hls/event/trvuY4TqQCmrAKFTlr6tPQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityGreenvilleNewBern.us",STIRR City Greenville New Bern (720p) -https://dai.google.com/linear/hls/event/B6RsXGIZSVqeVZGZIEZESg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityHarrisburg.us",STIRR City Harrisburg (720p) -https://dai.google.com/linear/hls/event/W_NyV_9eQ-qa0XDSMfYkEg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityHastings.us",STIRR City Hastings (720p) -https://dai.google.com/linear/hls/event/xtKyBDIFSZa6cT4Of9yaGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityJohnstownAltoona.us",STIRR City Johnstown Altoona (720p) -https://dai.google.com/linear/hls/event/BXZlH0kXTeGczlQ49-0QFQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLasVegas.us",STIRR City Las Vegas (720p) -https://dai.google.com/linear/hls/event/yDGZP35hTsqdf2rwaP1BGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLewiston.us",STIRR City Lewiston (720p) -https://dai.google.com/linear/hls/event/knBsxnquSYqFXTP_UzcGgw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLittleRock.us",STIRR City Little Rock (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/MqeaRgFBR2WJ_40ngbDruQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLosAngeles.us",STIRR City Los Angeles (720p) -https://dai.google.com/linear/hls/event/n3PVAFmPTJSVYjdSVf7XZw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityLynchburgRoanoke.us",STIRR City Lynchburg Roanoke (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Fwm4J95UQi67l2FEV7N5kQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMacon.us",STIRR City Macon (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/PPMxI7GZSRG6Kgkp2gSF1g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMedford.us",STIRR City Medford (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/1g9qH9IOSIGGwAqw8fPzmw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMilwaukee.us",STIRR City Milwaukee (720p) -https://dai.google.com/linear/hls/event/jWaxnXHPQjGX1yTxuFxpuw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMinneapolis.us",STIRR City Minneapolis (720p) -https://dai.google.com/linear/hls/event/0P8RZiJkSBWfVDtjy-IiIQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityMissoula.us",STIRR City Missoula (720p) -https://dai.google.com/linear/hls/event/ARX9M-X8RieADdAEYPXNuA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityNashville.us",STIRR City Nashville (720p) -https://dai.google.com/linear/hls/event/IG9ThaPaTwCojeoEWVNZRQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityNorfolkPortsmouth.us",STIRR City Norfolk Portsmouth (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/QuSOUXM4RPaC5zL4J8ZY3w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityOklahomaCity.us",STIRR City Oklahoma City (720p) -https://dai.google.com/linear/hls/event/pRd-k6tZSiCRsw_f51Vcvg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityOttumwa.us",STIRR City Ottumwa (720p) -https://dai.google.com/linear/hls/event/jH-4z3EkQO-fLYYgjX7d3g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPensacola.us",STIRR City Pensacola (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/CAU96LSyR_e7MSeK6UTmGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPittsburgh.us",STIRR City Pittsburgh (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/qJU_NkxXQoCbACvG5BWrXQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPortland.us",STIRR City Portland (720p) -https://dai.google.com/linear/hls/event/npdISdLWSIa1E_j7NCUDBg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityPortland.us",STIRR City Portland (720p) -https://dai.google.com/linear/hls/event/OaqAqJ0yQPiEIUIYqD7IGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityProvidence.us",STIRR City Providence (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/5hLTCUyrQcS3B-NF8fNp-g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityQuincy.us",STIRR City Quincy (720p) -https://dai.google.com/linear/hls/event/bjWdbDzwTMOMd8Wmxl4rwg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityRaleighDurham.us",STIRR City Raleigh Durham (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/86JIujPNRWiVvtfzksp8QQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityReno.us",STIRR City Reno (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/0Zb5SSQcTme6P7FYwwAwcQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityRochester.us",STIRR City Rochester (720p) -https://dai.google.com/linear/hls/event/FftwN8CLTnaX1pFHztXlYw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySaltLakeCity.us",STIRR City Salt Lake City (720p) -https://dai.google.com/linear/hls/event/1bMiswhQQxqH-X8D3qbmKQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySanAntonio.us",STIRR City San Antonio (720p) -https://dai.google.com/linear/hls/event/TIQuLmldSj2SqS8y2ud9Xg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySeattle.us",STIRR City Seattle (720p) -https://dai.google.com/linear/hls/event/VLEduzwwQfGSwV4eNdkj0g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySiouxCity.us",STIRR City Sioux City (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/0Uj4AmiOSw6oTX9ilyV2rQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySouthBend.us",STIRR City South Bend (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/VGpvNIxIQRO7PXYRy7P0qw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySpringfield2.us",STIRR City Springfield #2 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/IaAlq3prS8Ghiq0FhLtzGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityStLouis.us",STIRR City St. Louis (234p) [Not 24/7] -https://dai.google.com/linear/hls/event/O5W1HC47QEKGc5tyscvsLw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCitySyracuse.us",STIRR City Syracuse (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/HSX_ZpxDQNy5aXzJHjhGGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityToledo.us",STIRR City Toledo (720p) -https://dai.google.com/linear/hls/event/1QSZA8OjS1y2Q64uTl5vWQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityTriCities.us",STIRR City Tri-Cities (720p) -https://dai.google.com/linear/hls/event/KPOafkGTRle7jOcRb9_KFw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityTulsa.us",STIRR City Tulsa (720p) -https://dai.google.com/linear/hls/event/5kbHZRGGS--RHp41xaUJHQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWashingtonDC.us",STIRR City Washington D.C. (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/_VmeKujXTf-nc9Lr2NO6tA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWestPalmBeach.us",STIRR City West Palm Beach (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/ji4LMCwtRCOw3TrRUKlQMQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWheelingSteubenville.us",STIRR City Wheeling Steubenville (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/dcaYfE2nRnqC6eAvCFWfzQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityWilkesBarreScranton.us",STIRR City Wilkes Barre Scranton (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/jlf2tRLPTg2xjMtKe5ey-w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityYakimaPasco1.us",STIRR City Yakima Pasco #1 (720p) -https://dai.google.com/linear/hls/event/Ae0L5AucTcqefaIvaS504A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCityYakimaPasco2.us",STIRR City Yakima Pasco #2 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/FJejnzFjSFGpaogi0GzPyw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRClassicTV.us",STIRR Classic TV (480p) -https://dai.google.com/linear/hls/event/8JiQCLfVQw6d7uCYt0qDJg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRClassica.us",STIRR Classica (1080p) -https://dai.google.com/linear/hls/event/AaFxJXOhQl-BsTVC9OCunQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComedy.us",STIRR Comedy (720p) [Offline] -https://dai.google.com/linear/hls/event/dGP9Z-PNRPCgGQSDEzxqYg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComedyDynamics.us",STIRR Comedy Dynamics (1080p) -https://dai.google.com/linear/hls/event/NJK_yxrcTBqULaHt-wi0Wg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRComet.us",STIRR Comet (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/83L2OqtGSZ6lbWt8ODomWg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCooks.us",STIRR Cooks (720p) [Offline] -https://dai.google.com/linear/hls/event/CHaUZsCfSyS2CVF7I-NktA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRCOVID19News.us",STIRR COVID-19 News (720p) [Offline] -https://dai.google.com/linear/hls/event/08ADpEIeQ8iZOjusLsZbCg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRDealorNoDeal.us",STIRR Deal or No Deal (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/9cq79TtPR6WbyaQGeDlHjA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRDocurama.us",STIRR Docurama (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/Hx_PEMEsSzOCcZgy0Tq2YQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRElectricNow.us",STIRR Electric Now (1080p) [Not 24/7] -https://dai.google.com/linear/hls/event/KsvJAc81Qoewj6opYso6Fw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRESR24x7eSportsNetwork.us",STIRR ESR 24x7 eSports Network (720p) [Offline] -https://dai.google.com/linear/hls/event/7-91LhuBQNONHzAbrFQr-Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRevrgrn.us",STIRR evrgrn (1080p) -https://dai.google.com/linear/hls/event/TDUiZE57Q3-CS7Its4kLDQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFailArmy.us",STIRR FailArmy (720p) -https://dai.google.com/linear/hls/event/7tuuoX1wSsCTaki1HqJFYw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFamily.us",STIRR Family (720p) -https://playoutengine.sinclairstoryline.com/playout/242b1153-0129-484e-8ec8-378edd691537.m3u8 -#EXTINF:-1 tvg-id="STIRRFilmRiseFreeMovies.us",STIRR FilmRise Free Movies (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/Va1QEor0SWO_x_SQNyaF0w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRFit.us",STIRR Fit (720p) [Offline] -https://dai.google.com/linear/hls/event/ZidoyK28TXyMRTZU7rFuEQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRForensicsFiles.us",STIRR Forensics Files (720p) [Offline] -https://dai.google.com/linear/hls/event/fJj7BuL_Tv2KjCnNAmLK8g/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGravitasMovies.us",STIRR Gravitas Movies (720p) -https://dai.google.com/linear/hls/event/EpqgwRlpQKq73ySVSohJWA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGravitasMovies.us",STIRR Gravitas Movies (720p) -https://gravitas-movies.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRGreatestAmericanHero.us",STIRR Greatest American Hero (720p) [Offline] -https://dai.google.com/linear/hls/event/zaW9PVeXQeamNt6SZ9FsOg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRGustoTV.us",STIRR Gusto TV (1080p) -https://dai.google.com/linear/hls/event/tdSCy5u2R5WtCLXX4NwDtg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHellsKitchen.us",STIRR Hell's Kitchen (720p) [Offline] -https://dai.google.com/linear/hls/event/SynaOtTyTq2y_N7BrGTz9Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHorrorMovies.us",STIRR Horror Movies (768p) -https://dai.google.com/linear/hls/event/3NTKKQBuQtaIrcUBj20lyg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHSN.us",STIRR HSN (720p) -https://dai.google.com/linear/hls/event/akursTHNTo6qGf1TtlHNsw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRHunter.us",STIRR Hunter (720p) [Offline] -https://dai.google.com/linear/hls/event/Z-kHpGoATwyuxIuQEY_3fw/master.m3u8 -#EXTINF:-1 tvg-id="ItsShowtimeAtTheApollo.us",STIRR It's Showtime at the Apollo (720p) -https://dai.google.com/linear/hls/event/fAFfTnCAT2K8d83sYsA-cw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRKitchenNightmares.us",STIRR Kitchen Nightmares (720p) [Offline] -https://dai.google.com/linear/hls/event/23QIslh0TOqygKz-M9W29Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMadeinHollywood.us",STIRR Made in Hollywood (720p) [Offline] -https://dai.google.com/linear/hls/event/Mteif75-SJeFi19Sk3-dGQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMavTV.us",STIRR MavTV (720p) -https://dai.google.com/linear/hls/event/YoBM0ae5Q62TPdrfFHS4RQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMavTV.us",STIRR MavTV (720p) -https://mavtv-1.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRMidnightPulp.us",STIRR Midnight Pulp (720p) -https://dai.google.com/linear/hls/event/1fO2zbpBRyy6S5yve_fnaw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMovieMix.us",STIRR MovieMix (720p) [Offline] -https://dai.google.com/linear/hls/event/TSIJo6RCRZWuCD9WrKtRFg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMovies.us",STIRR Movies (768p) [Not 24/7] -https://dai.google.com/linear/hls/event/f-zA7b21Squ7M1_sabGfjA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMusic.us",STIRR Music (720p) [Offline] -https://dai.google.com/linear/hls/event/_e1csFnJR6W6y056PyiG6A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRMysteryScienceTheater3000.us",STIRR Mystery Science Theater 3000 (1080p) -https://dai.google.com/linear/hls/event/rmBGeSwhQEG64TrT0_JO2A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRNational.us",STIRR National (720p) -https://dai.google.com/linear/hls/event/-V3XSvA2Sa6e8h7cnHXB8w/master.m3u8 -#EXTINF:-1 tvg-id="StirrNews247.us",Stirr News 24/7 (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/8hUeiLMpTm-YNqk7kadUwA/master.m3u8 -#EXTINF:-1 tvg-id="STIRROutsideTV.us",STIRR Outside TV (1080p) -https://dai.google.com/linear/hls/event/HJAq3zH1SUy_B6fb1j80_Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPD.us",STIRR P.D. (540p) -https://dai.google.com/linear/hls/event/dKG_ZFd_S82FPgNxHmhdJw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPeopleTV.us",STIRR People TV (1080p) -https://dai.google.com/linear/hls/event/Fe9LYYCFR5Csif-I5dyMHg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPopstarTV.us",STIRR Popstar! TV (1080p) -https://dai.google.com/linear/hls/event/cJFuxTLzQUqbGGrqTMBJuw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRPursuitUp.us",STIRR PursuitUp (720p) -https://dai.google.com/linear/hls/event/NpkpFaFVRqaQwSkpPdramg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRQVC.us",STIRR QVC (720p) -https://dai.google.com/linear/hls/event/roEbn_l7Tzezwy22F1NSfA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRealPeople.us",STIRR Real People (720p) [Offline] -https://dai.google.com/linear/hls/event/RoiVzG-4TJiJMSVUatDd4A/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRealityTV.us",STIRR Reality TV (720p) -https://dai.google.com/linear/hls/event/r9VoxPU7TYmpydEn2ZR0jA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRetroCrush.us",STIRR RetroCrush TV (720p) -https://dai.google.com/linear/hls/event/7LAMGFcmQN6iFJjNoHWXrg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRevry.us",STIRR Revry (720p) [Offline] -https://dai.google.com/linear/hls/event/gvO6-Y6TTjCxRf1QALU4VQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRRingofHonor.us",STIRR Ring of Honor (720p) -https://dai.google.com/linear/hls/event/RNiQYO3aTjOqTe8od1zlqA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSilkStalkings.us",STIRR Silk Stalkings (720p) [Offline] -https://dai.google.com/linear/hls/event/8ZYru1fgSY6JL1Ejb6T5Ag/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSOAR.us",STIRR SOAR (720p) [Not 24/7] -https://dai.google.com/linear/hls/event/_PDxBUttQYqkxPnmh3VOZA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSpace1999.us",STIRR Space:1999 (768p) -https://dai.google.com/linear/hls/event/NeKNJHuzSeCiN_7Fcuo83Q/master.m3u8 -#EXTINF:-1 tvg-id="STIRRSports.us" status="error",STIRR Sports (720p) [Offline] -https://dai.google.com/linear/hls/event/1B2yihdIR1mCL63rXzERag/master.m3u8 -#EXTINF:-1 tvg-id="STIRRStadium.us",STIRR Stadium (720p) -http://stadium.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRStadium.us",STIRR Stadium (720p) -https://dai.google.com/linear/hls/event/0jRU1DBXSW6a_TFheLfAUQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRStarMovies.us",STIRR Star Movies (720p) [Offline] -https://sonar.sinclair.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayPopAdult.us",STIRR Stingray Pop Adult (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/104.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayRockAlternative.us",STIRR Stingray Rock Alternative (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/102.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayTodaysLatinPop.us",STIRR Stingray Today's Latin Pop (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/190.m3u8 -#EXTINF:-1 tvg-id="STIRRStingrayUrbanBeats.us",STIRR Stingray Urban Beats (1080p) -https://ott-linear-channels.stingray.com/hls/stirr/133.m3u8 -#EXTINF:-1 tvg-id="STIRRTennisChannel.us",STIRR Tennis Channel (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f.m3u8 -#EXTINF:-1 tvg-id="STIRRTheAdventuresofSherlockHolmes.us",STIRR The Adventures of Sherlock Holmes (720p) [Offline] -https://dai.google.com/linear/hls/event/fMcxjP7ORACGFsBvi7ZhAg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheArchive.us",STIRR The Archive (360p) -https://dai.google.com/linear/hls/event/MdbYPXWRStmMq1DaQhsBUw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheAsylum.us",STIRR The Asylum (1080p) [Offline] -https://dai.google.com/linear/hls/event/2r7F3DThT-C5YW21CUuGLQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheBobRossChannel.us",STIRR The Bob Ross Channel (1080p) -https://dai.google.com/linear/hls/event/3dbJrQmVT_-psb-KBYuKQA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheCommish.us",STIRR The Commish (720p) [Offline] -https://dai.google.com/linear/hls/event/zfyiHhG0TeuoNist_WUwjg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheFirst.us",STIRR The First (1080p) -https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheLoneRanger.us",STIRR The Lone Ranger (720p) [Offline] -https://dai.google.com/linear/hls/event/dRKvXuioSv-e5T65yR_7Ow/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTheLucyShow.us",STIRR The Lucy Show (720p) [Offline] -https://dai.google.com/linear/hls/event/-s-FtbzrQCaLMDSyM0ejyw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTravel.us",STIRR Travel (720p) [Offline] -https://dai.google.com/linear/hls/event/0ZXyCbn9TYmrrAzcDfoU1w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTruly.us",STIRR Truly (720p) [Offline] -https://dai.google.com/linear/hls/event/Xu-I6qGiSTKeu6glzS4BtQ/master.m3u8 -#EXTINF:-1 tvg-id="STIRRTVMix.us",STIRR TV Mix (720p) -https://dai.google.com/linear/hls/event/ZP8ZMv95Q0Gm9EiyYOGHAA/master.m3u8 -#EXTINF:-1 tvg-id="STIRRUnsolvedMysteries.us",STIRR Unsolved Mysteries (720p) [Offline] -https://dai.google.com/linear/hls/event/iLjE1UKtRCiSNkFatA65bg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWesterns.us",STIRR Westerns (480p) -https://dai.google.com/linear/hls/event/YF2jfXh_QROPxoHEwp1Abw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWhistleSportsTV.us",STIRR Whistle Sports (1080p) -https://dai.google.com/linear/hls/event/Wu11mwhnTKGNhwZimEK6Jg/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWhoseLineIsItAnyway.us",STIRR Whose Line Is It Anyway (720p) [Offline] -https://dai.google.com/linear/hls/event/SYob3ZZfTwyVW7LILC9ckw/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWipeoutXtra.us",STIRR Wipeout Xtra (720p) -https://dai.google.com/linear/hls/event/0DG8p66IRES7ZzEe1WJS-w/master.m3u8 -#EXTINF:-1 tvg-id="STIRRWiseguy.us",STIRR Wiseguy (720p) [Offline] -https://dai.google.com/linear/hls/event/kv03O_9RS8-uRahEGtDcjA/master.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (504p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/f.m3u8 -#EXTINF:-1 tvg-id="TennisChannel.us",Tennis Channel (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/g.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus1.us",Tennis Channel+ 1 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus2.us",Tennis Channel+ 2 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f.m3u8 -#EXTINF:-1 tvg-id="TennisChannelPlus2.us",Tennis Channel+ 2 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f/g.m3u8 -#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (1080p) -http://asylum-stirr.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCountryNetwork.us",The Country Network (1080p) -https://dai.google.com/linear/hls/event/3EEsfZhASryigfuSpHdfKg/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) -https://dai.google.com/linear/hls/event/OYH9J7rZSK2fabKXWAYcfA/master.m3u8 -#EXTINF:-1 tvg-id="TheFilmDetective.us",The Film Detective (720p) -https://filmdetective-stirr.amagi.tv/index.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us",The First (1080p) -https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 -#EXTINF:-1 tvg-id="TheTimConwayShow.us",The Tim Conway Show (768p) -https://dai.google.com/linear/hls/event/v51OvZmXQOizl-KOgpXw1Q/master.m3u8 -#EXTINF:-1 tvg-id="USSPORTTennisPlus1.us",US SPORT Tennis Plus 1 (720p) [Geo-blocked] -https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60/g.m3u8 -#EXTINF:-1 tvg-id="USAToday.us",USA Today (1080p) -https://dai.google.com/linear/hls/event/gJJhuFTCRo-HAHYsffb3Xg/master.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://dai.google.com/linear/hls/event/gJpQRkqiS8SHzAbPlGNRQw/master.m3u8 -#EXTINF:-1 tvg-id="WaypointTV.us",Waypoint TV (1080p) -https://dai.google.com/linear/hls/event/im0MqOKRTHy9nVa1sirQSg/master.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) -https://dai.google.com/linear/hls/event/vZB78SsNSXWOR63VJrNC2Q/master.m3u8 diff --git a/streams/us_tcl.m3u b/streams/us_tcl.m3u deleted file mode 100644 index 8034c1496..000000000 --- a/streams/us_tcl.m3u +++ /dev/null @@ -1,29 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="BloodyDisgusting.us",Bloody Disgusting (1080p) -https://bloodydisgusting-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) -https://comedydynamics-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://contv-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://contvanime-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) -https://docurama-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) -https://dovenow-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) -https://introuble-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (1080p) -https://inwonder-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) -https://vidaprimo-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) -https://mytime-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SoReal.us",So... Real (1080p) -https://soreal-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Unbeaten.us",Unbeaten (1080p) -https://unbeaten-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (1080p) [Offline] -https://whistlesports-tcl.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) -https://younghollywood-tcl.amagi.tv/playlist.m3u8 diff --git a/streams/us_tubi.m3u b/streams/us_tubi.m3u deleted file mode 100644 index 2efb1c2ee..000000000 --- a/streams/us_tubi.m3u +++ /dev/null @@ -1,129 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",ABC 4 Pittsburg PA (WTAE) (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WTAE.m3u8 -#EXTINF:-1 tvg-id="",ABC 5 Cleveland OH (WEWS-TV) (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WEWS.m3u8 -#EXTINF:-1 tvg-id="",ABC 5 Oklahoma City OK (KOCO) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-KOCO.m3u8 -#EXTINF:-1 tvg-id="",ABC 7 Detroit MI (WXYZ-TV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXYZ.m3u8 -#EXTINF:-1 tvg-id="",ABC 7 Omaha NE (KETV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KETV.m3u8 -#EXTINF:-1 tvg-id="",ABC 9 Kansas City MO (KMBC-TV) (576p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KMBC.m3u8 -#EXTINF:-1 tvg-id="",ABC 9 Manchester NH (WMUR-TV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WMUR.m3u8 -#EXTINF:-1 tvg-id="AnAmericanChristmasCarol.us",An American Christmas Carol (720p) -https://cloudfront.tubi.video/5b97b1f5-a605-44a5-a192-12e10beece40/sd846jzc/stream.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (720p) -https://lnc-black-news.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (720p) [Offline] -https://csm-e-eb.csm.tubi.video/csm/live/283326845.m3u8 -#EXTINF:-1 tvg-id="CBCNewsHighlights.ca",CBC News Highlights (720p) -https://csm-e-eb.csm.tubi.video/csm/live/243017997.m3u8 -#EXTINF:-1 tvg-id="EstrellaNews.us",Estrella News (720p) -https://csm-e-eb.csm.tubi.video/csm/live/247083838.m3u8 -#EXTINF:-1 tvg-id="",FOX 2 Detroit MI (WJBK) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WJBK-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 2 San Francisco CA (KTVU) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTVU-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 4 Dallas / Fort Worth TX (KDFW) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KDFW-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 5 Atlanta GA (WAGA-TV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WAGA-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 5 New York NY (WNYW) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WNYW-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 5 Washington DC (WTTG) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTTG-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 6 Milwaukee WI (WITI) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WITI-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 7 Austin TX (KTBC) (720p) [Offline] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTBC-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 9 ST Paul Minneapolis MN (KMSP) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KMSP-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 10 Phoenix AZ (KZAS) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KSAZ-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 11 Los Angeles CA (KTTV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTTV-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 13 Memphis TN (WHBQ-TV) (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WHBQ.m3u8 -#EXTINF:-1 tvg-id="",FOX 13 Tampa Bay FL (WTVT) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTVT-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 26 Houston TX (KRIV) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KRIV-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 29 Philadelphia PA (WTXF-TV) (720p) [Not 24/7] -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTXF-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 32 Chicago IL (WFLD) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WFLD-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX 35 Orlando FL (WOFL) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WOFL-Monetizer.m3u8 -#EXTINF:-1 tvg-id="",FOX Q13 Seattle WA (KCPQ) (576p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KCPQ-Monetizer.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (720p) -https://lnc-fox-soul-scte.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Fox-Weather.m3u8 -#EXTINF:-1 tvg-id="FoxWeather.us",Fox Weather (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Fox-Weather.m3u8 -#EXTINF:-1 tvg-id="KCCI.us",KCCI-TV News Des Moines IA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCCI.m3u8 -#EXTINF:-1 tvg-id="KCRA.us",KCRA-TV News Sacramento CA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCRA.m3u8 -#EXTINF:-1 tvg-id="KHBS.us",KHBS-TV News Fort Smith AR (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KHBS.m3u8 -#EXTINF:-1 tvg-id="KOAT.us",KOAT-TV News Albuquerque NM (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KOAT.m3u8 -#EXTINF:-1 tvg-id="KSBW.us",KSBW-TV News Salinas CA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KSBW.m3u8 -#EXTINF:-1 tvg-id="Localish.us",Localish (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Localish.m3u8 -#EXTINF:-1 tvg-id="",NBC 5 Cincinnati OH (WLWT) (360p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLWT.m3u8 -#EXTINF:-1 tvg-id="",NBC 6 New Orleans LA (WDSU) (720p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WDSU.m3u8 -#EXTINF:-1 tvg-id="News12NewYork.us",News 12 New York (1080p) -https://lnc-news12.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Newsy.m3u8 -#EXTINF:-1 tvg-id="pattrn.us",Pattrn (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Pattrn.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) -https://lnc-people-tv.tubi.video/index.m3u8 -#EXTINF:-1 tvg-id="RealMadridTVUS.us",Real Madrid TV US Version (720p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Real-Madrid.m3u8 -#EXTINF:-1 tvg-id="SantaandtheThreeBears.us",Santa and the Three Bears (480p) -https://cloudfront.tubi.video/21df8036-fa23-49ff-9877-8af983546d2b/elw3phlf/stream.m3u8 -#EXTINF:-1 tvg-id="TodayAD.us",Today All Day (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Today.m3u8 -#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-USA-Today.m3u8 -#EXTINF:-1 tvg-id="VeryAlabama.us",Very Alabama (576p) -https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WVTM.m3u8 -#EXTINF:-1 tvg-id="WAPT.us",WAPT-TV News Jackson MS (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WAPT.m3u8 -#EXTINF:-1 tvg-id="WBAL.us",WBAL-TV News Baltimore MD (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WBAL.m3u8 -#EXTINF:-1 tvg-id="",WCVB-TV News Boston MA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WCVB.m3u8 -#EXTINF:-1 tvg-id="WeatherNation.us",Weathernation (720p) [Geo-blocked] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Weather-Nation.m3u8 -#EXTINF:-1 tvg-id="",WESH-TV News Orlando FL (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WESH.m3u8 -#EXTINF:-1 tvg-id="",WGAL-TV News Lancaster PA (720p) [Not 24/7] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WGAL.m3u8 -#EXTINF:-1 tvg-id="WISN.us",WISN-TV News Milwaukee WI (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WISN.m3u8 -#EXTINF:-1 tvg-id="WJCL.us",WJCL-TV News Savannah GA (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WJCL.m3u8 -#EXTINF:-1 tvg-id="WLKY.us",WLKY-TV News Louisville KY (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLKY.m3u8 -#EXTINF:-1 tvg-id="WMOR.us",WMOR-TV News Lakeland FL (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMOR.m3u8 -#EXTINF:-1 tvg-id="WMTW.us",WMTW-TV News Portland ME (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMTW.m3u8 -#EXTINF:-1 tvg-id="WPBF.us",WPBF-TV News West Palm Beach FL (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPBF.m3u8 -#EXTINF:-1 tvg-id="WPTZ.us",WPTZ-TV News Plattsburgh NY (720p) -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPTZ.m3u8 -#EXTINF:-1 tvg-id="WXII.us",WXII-TV News Winston-Salem NC (720p) [Offline] -https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXII.m3u8 diff --git a/streams/us_vizio.m3u b/streams/us_vizio.m3u deleted file mode 100644 index bf4bd058a..000000000 --- a/streams/us_vizio.m3u +++ /dev/null @@ -1,187 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AMCAbsoluteReality.us",AMC Absolute Reality (1080p) [Offline] -https://amc-absolutereality-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCIFCFilmPicks.us",AMC IFC Film Picks (1080p) [Offline] -https://amc-ifc-films-picks-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCPresents.us",AMC Presents (1080p) [Offline] -https://amc-amcpresents-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCRush.us",AMC Rush (1080p) [Offline] -https://amc-rushbyamc-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AMCSlightlyOff.us",AMC Slightly Off (1080p) [Offline] -https://amc-slightly-off-by-amc-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasVoice.us",America's Voice (720p) -https://p1media-americasvoice-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Ameritrade.us",Ameritrade (1080p) [Not 24/7] -https://tdameritrade-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="AWEEncore.us",AWE Encore (720p) -https://aweencore-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (720p) -https://blacknewschannel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (720p) -https://condenast-bonappetit-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BratTV.us",Brat TV (1080p) [Offline] -https://brat-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) [Offline] -https://cheddar-cheddar-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Choppertown.us",Choppertown (1080p) [Offline] -https://oneworlddigital-choppertown-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Cinevault80s.us",Cinevault 80s (540p) -https://gsn-cinevault-80s-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CinevaultWesterns.us",Cinevault Westerns (540p) -https://gsn-cinevault-westerns-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://circle-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Not 24/7] -https://contv.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://contvanime-vizio-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="DarkMatterTV.us",Dark Matter TV (720p) -https://dmtv-viziosc.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DemandAfrica.us",Demand Africa (720p) [Offline] -https://demandafrica-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="DocTV.us",Doc TV (1080p) [Offline] -https://wownow-doctv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) [Offline] -https://dove-channel.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Dust.us",Dust (1080p) [Offline] -https://dust-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FailArmy.us",FailArmy (1080p) [Offline] -https://failarmy-linear.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Fawesome.us",Fawesome (720p) [Offline] -https://fawesome-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FlixFling.us",FlixFling (1080p) [Offline] -https://flixfling-flixflingnow-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxNewsNow.us",FOX News Now (720p) -https://fox-foxnewsnow-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxSoul.us",Fox Soul (1080p) -https://foxsoul-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (720p) [Offline] -https://funnyordie-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GameShowCentralEast.us",Game Show Central East (1080p) [Offline] -https://gsn-gameshowchannnel-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GiggleMug.us",Giggle Mug (720p) [Offline] -https://janson-gigglemug-1-us.vizio.wurl.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="GlewedTV.us",Glewed TV (1080p) [Offline] -https://glewedtv-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) -https://gravitas-movies.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="GustoTV.us",Gusto TV (720p) [Offline] -https://gustotv-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKids.us",HappyKids (720p) -https://happykids-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HappyKidsJunior.us",HappyKids Junior (720p) -https://happykidsjunior-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="HNCFree.us",HNC Free (1080p) -https://hncfree-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Hometalk.us",Hometalk (1080p) [Offline] -https://playworksdigital-hometalk-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="iFoodTV.us",iFood.TV (720p) -https://ifood-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (1080p) -https://insighttv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p) [Offline] -https://introuble-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (1080p) [Offline] -https://inwonder-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="IonPlus.us",Ion Plus (1080p) -https://ion-ion-plus-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="IonQubo.us",Ion Qubo (720p) [Offline] -https://ion-qubo-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="JohnnyCarsonTV.us",Johnny Carson TV (720p) -https://johnnycarson-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="JudgeFaith.us",Judge Faith (1080p) [Offline] -https://judge-faith-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="KidoodleTV.us",Kidoodle.TV (1080p) [Offline] -http://kidoodletv-kdtv-3.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (720p) -https://vidaprimo-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (720p) [Offline] -https://latidomusic.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="",LEGO Channels (720p) -https://legochannel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MagellanTV.us",Magellan TV (1080p) [Offline] -https://magellantv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (1080p) [Offline] -https://maverick-maverick-black-cinema-2.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MavTV.us",MavTV (1080p) [Offline] -https://mavtv-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MidnightPulp.us",Midnight Pulp (1080p) [Offline] -https://midnightpulp-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MonsterMovies.us",Monster Movies (1080p) [Offline] -https://wownow-monstermovies-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="MysteryScienceTheater3000.us",Mystery Science Theater 3000 (1080p) -https://mst3k-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="MyTimemovienetwork.us",MyTime movie network (1080p) -https://mytime-vizio-ingest.cinedigm.com/playlist.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (1080p) -https://newsmax-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Newsy.us",Newsy (1080p) [Offline] -https://newsy-newsy-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us",Nosey (1080p) [Offline] -https://nosey-realnosey-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us",OAN (1080p) -https://oneamericanews-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (720p) -https://outside-tv-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Pac12Insider.us",Pac 12 Insider (720p) -https://pac12-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (1080p) [Offline] -https://jukin-peopleareawesome-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayWorks.us",Play.Works (720p) [Offline] -https://playworksdigital-playworks-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://playerstv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (720p) -https://pocketwatch-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="RealTruthCrime.us",Real Truth Crime [Offline] -https://endemol-reeltruthcrime-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Restore.us",Restore [Offline] -https://endemol-restore-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="RiffTrax.us",RiffTrax (720p) [Offline] -https://rifftrax-2.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (720p) [Offline] -https://shout-factory.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://sportsgrid-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Spotlight.us",Spotlight (1080p) -https://spotlight-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="SuperSimpleSongs.us",Super Simple Songs (1080p) [Offline] -https://janson-supersimplesongs-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tankee.us",Tankee (720p) [Offline] -https://playworksdigital-tankee-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) -https://tastemade-intl-vizioca.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeenEspanol.us",Tastemade en Español (1080p) -https://tastemadees16intl-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TastemadeTravel.us",Tastemade Travel (720p) -https://tastemadetravel-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) [Offline] -https://cinedigm-bobross-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="TheCarolBurnettShow.us",The Carol Burnett Show (1080p) -https://carolburnett-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheFirst.us",The First (720p) -https://thefirst-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (1080p) [Offline] -https://the-pet-collective-linear.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (1080p) [Offline] -https://previewchannel-previewchannel-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (1080p) [Offline] -https://toon-goggles-samsung.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="VENN.us",VENN (1080p) -https://venntv-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="WeTVAllWeddings.us",We TV All Weddings (1080p) [Offline] -https://amc-allweddings-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (1080p) -https://jukin-weatherspy-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WhistleSports.us",Whistle Sports (720p) [Offline] -https://whistle-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Wipeout.us",Wipeout [Offline] -https://endemol-wipeoutxtra-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="WowNowKids.us",Wow Now Kids (1080p) [Offline] -https://wownow-wownowkids-1.vizio.wurl.com/manifest/playlist.m3u8 -#EXTINF:-1 tvg-id="Xplore.us",Xplore (1080p) -https://xplore-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YahooFinance.us",Yahoo! Finance (720p) -https://yahoo-vizio.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="YoungHollywood.us",Young Hollywood (720p) -https://younghollywood-vizio.amagi.tv/playlist.m3u8 diff --git a/streams/us_xumo.m3u b/streams/us_xumo.m3u deleted file mode 100644 index ad93c986d..000000000 --- a/streams/us_xumo.m3u +++ /dev/null @@ -1,369 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ABCNews.us",ABC News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-abcnews/CDN/master.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 -#EXTINF:-1 tvg-id="AdventureSportsNetwork.us",Adventure Sports Network (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioadventuresportsnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Ameba.us",Ameba (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuameba/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericasTestKitchen.us",America's Test Kitchen (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericastestkitchen/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="AmericanClassics.us",American Classics (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericanclassics/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ArchitecturalDigest.us",Architectural Digest (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxarchitecturaldigest/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ArchitecturalDigest.us",Architectural Digest (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokutraveler/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Asylum.us",Asylum (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-theasylum/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Baeble.us",Baeble Music (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbaeble/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BatteryPopXUMO.us",Battery Pop (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbatterypop/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) -http://redbox-blacknewschannel-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) -https://blacknewschannel-xumo-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewschannel-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) -https://blacknewschannel-xumo-us.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="BlackNewsChannel.us",Black News Channel (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxblacknewschannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="BloombergTVUS.us",Bloomberg TV US (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbloomberg/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="bonappetit.us",bon appétit (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbonappetit/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCNews.us",CBC News (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcbcnews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CBCNewsXUMO.us",CBC News (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-cbcnews/CDN/master.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcheddar/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo-host-cheddar/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ChiveTV.us",Chive TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxchive/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CineRomantico.us",Cine Romantico (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokucineromantico/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://circle-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcircletv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Circle.us",Circle (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-circle/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ComedyDynamics.us",Comedy Dynamics (1080p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo-host-comedydynamics/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Complex.us",Complex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-complextv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Complex.us",Complex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcomplex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcontv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtv.us",CONtv (1080p) [Timeout] -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo123-contv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://contvanime.cinedigm.com/conapp-ssai/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CONtvAnime.us",CONtv Anime (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="CrackleXUMO.us",Crackle (XUMO) (1080p) -http://crackle-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxdocurama/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Timeout] -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Docurama.us",Docurama (1080p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 -#EXTINF:-1 tvg-id="DoveChannel.us",Dove Channel (1080p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-dovenow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="",EDGEsport (1080p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-edgesportxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ElectricNow.us",Electric Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-electricnow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="eScapesXUMO.us",eScapes (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-escapes/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FailArmyInternational.us",FailArmy International (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfailarmy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmHub.us",Film Hub (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmhub/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseAction.us",FilmRise Action (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmriseaction/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (432p) -https://hls.xumo.com/channel-hls/v1/9fe012a9926c4e91/9999400/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmriseclassictv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseClassicTV.us",FilmRise Classic TV on Redbox (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmriseclassictv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (432p) -http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFamily.us",FilmRise Family (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefamily/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseForensicFiles.us",FilmRise Forensic Files (432p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuforensicfiles/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FilmRiseForensicFilesXUMO.us",FilmRise Forensic Files (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxunsolvedmysteries/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us",FilmRise Free Movies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us",FilmRise Free Movies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofilmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseFreeMoviesRedbox.us",FilmRise Free Movies (Redbox) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseHellsKitchen.us",FilmRise Hell's Kitchen (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecooking/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us",FilmRise Mysteries (XUMO) (432p) -http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us",FilmRise Mysteries (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisemystery/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseSciFiXUMO.us",FilmRise Sci-Fi (XUMO) (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisesci-fi/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseTrueCrime.us",FilmRise True Crime (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FilmRiseWestern.us",FilmRise Western (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisewestern/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FiremanSam.us",Fireman Sam (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufiremansam/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) -https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1212A-redboxfood52A/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfood52A/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Food52.us",Food 52 (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofood52/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufunnyordie/CDN/master.m3u8 -#EXTINF:-1 tvg-id="FunnyorDie.us",Funny or Die (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfunnyordie/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="FuseEast.us",Fuse East (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfuse/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Glamour.us",Glamour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglamour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Glamour.us",Glamour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuglamour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GlobalGotTalent.us",Global Got Talent (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugottalentglobal/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GloryKickboxing.us",Glory Kickboxing (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglorykickboxing/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GoTraveler.us",Go Traveler (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgotraveler/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GQ.us",GQ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgq/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GQ.us",GQ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugq/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgravitas/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="GravitasMovies.us",Gravitas Movies (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugravitasmovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="HallmarkMoviesMore.us",Hallmark Movies & More (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuhallmark/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="HardKnocks.us",Hard Knocks (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhardknocksfightingchampionship/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="",Hi-YAH! (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhi-ya/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Hungry.us",Hungry (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhungry/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-insighttv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Journy.us",Journy (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxjourny/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="JustforLaughsGags.us",Just for Laughs Gags (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokujustforlaughsgags/CDN/master.m3u8 -#EXTINF:-1 tvg-id="JustforLaughsGags.us",Just for Laughs Gags (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziojustforlaughsgags/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="kabillion.us",kabillion (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxkabillion/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KidGenius.us",Kid Genius (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukidgenius/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="KocowaClassic.us",Kocowa Classic (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukocowa/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LatidoMusic.us",Latido Music (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumovidaprimolatido/CDN/master.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/master.m3u8 -#EXTINF:-1 tvg-id="LawCrime.us",Law & Crime (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziolawandcrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LawCrimeXUMO.us",Law & Crime (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="LIVExLIVE.us",LIVExLIVE (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumolivexlive/CDN/master.m3u8 -#EXTINF:-1 tvg-id="MaverickBlackCinema.us",Maverick Black Cinema (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-maverickmovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Moovimex.us",Moovimex (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokumoovimex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Moovimex.us",Moovimex (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziomoovimex/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunbcnewsnow/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NBCNewsNow.us",NBC News Now (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-nbcnewsnow/CDN/master.m3u8 -#EXTINF:-1 tvg-id="NewsmaxTV.us",Newsmax (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-newsmaxxumo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NitroCircus.us",Nitro Circus (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnitrocircus/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Nosey.us",Nosey (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-nosey/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThis.us",Now This (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnowthis/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThis.us",Now This (900p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunowthis/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="NowThisXUMO.us",Now This (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-nowthis/CDN/master.m3u8 -#EXTINF:-1 tvg-id="OutdoorAmerica.us",Outdoor America (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutdooramerica/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTV.us",Outside TV (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutsidetv/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="OutsideTVPlus.us",Outside TV Plus (1080p) -https://outsidetvplus-xumo.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetvplusxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="OutsideTVPlus.us",Outside TV Plus (1080p) -https://outsidetvplus-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-peopleareawesome/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpeopleareawesome/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PeopleTV.us",People TV (1080p) -https://peopletvssai.akamaized.net/amagi_hls_data_peopletvA-peopletvxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="PlayersTV.us",Players TV (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-playerstv/CDN/master.m3u8 -#EXTINF:-1 tvg-id="pocketwatch.us",pocket.watch (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpocketwatch/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="PongaloNovelaclub.us",Pongalo Novelaclub (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunovelaclub/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RainbowRuby.us",Rainbow Ruby (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-roku-rainbow-ruby/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Realnosey.us",Real nosey (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxrealnosey/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Reelz.us",Reelz (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokureelzchannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ReelzChannelXUMO.us",Reelz Channel (XUMO) (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxreelzchannel/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="RevandRoll.us",Rev and Roll (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokurev-and-roll/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Revry.us",Revry (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-revryxumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us",Samuel Goldwyn Channel (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsamuelgoldwyn/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ShopLC.us",Shop LC (1080p) -https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(xumo)/index.m3u8 -#EXTINF:-1 tvg-id="ShoutFactoryTV.us",Shout! Factory TV (1080p) -https://shoutfactory-xumo.amagi.tv/playlist.m3u8 -#EXTINF:-1 tvg-id="ShowtimeattheApollo.us",Showtime at the Apollo (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxshowtimeattheapollo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="SoYummy.us",So Yummy! (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsoyummy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="SoYummy.us",So Yummy! (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-soyummy-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumosportsgrid/CDN/master.m3u8 -#EXTINF:-1 tvg-id="SportsGrid.us",SportsGrid (1080p) -https://sportsgrid-xumo-us.amagi.tv/xumo.m3u8 -#EXTINF:-1 tvg-id="Stadium.us",Stadium (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-stadiumsports/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayAmbience.ca",Stingray Ambience (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziostingrayambiance/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayclassicrock/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) -https://xumo-redbox.ott-channels.stingray.com/101/master.m3u8 -#EXTINF:-1 tvg-id="StingrayClassicRock.ca",Stingray Classic Rock (1080p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayclassicrock/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraygreatesthits/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraygreatesthits/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayGreatestHits.ca",Stingray Greatest Hits (1080p) -https://xumo-redbox.ott-channels.stingray.com/155/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhitlist/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayHitList.ca",Stingray Hit List (1080p) -https://xumo-redbox.ott-channels.stingray.com/107/master.m3u8 -#EXTINF:-1 tvg-id="",Stingray Hitlist (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhitlist/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhotcountry/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhotcountry/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayHotCountry.ca",Stingray Hot Country (1080p) -https://xumo-redbox.ott-channels.stingray.com/108/master.m3u8 -#EXTINF:-1 tvg-id="StingrayKaraoke.ca",Stingray Karaoke (144p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraykaraoke/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (360p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraynaturescape/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayNaturescape.ca",Stingray Naturescape (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraynaturescape/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioqelloconcerts/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca",Stingray Qello Concerts (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayqello/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraysoulstorm/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraysoulstorm/CDN/master.m3u8 -#EXTINF:-1 tvg-id="StingraySoulStorm.ca",Stingray Soul Storm (1080p) -https://xumo-redbox.ott-channels.stingray.com/134/master.m3u8 -#EXTINF:-1 tvg-id="Tastemade.us",Tastemade (1080p) -https://tastemade-xumo.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="Teletubbies.uk",Teletubbies (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuteletubbies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheArchive.us",The Archive (432p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthearchive/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) -https://bobross-xumous-ingest.cinedigm.com/master.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) -https://bobross-xumous.cinedigm.com/midroll/amagi_hls_data_xumo-host-bobross-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TheBobRossChannel.us",The Bob Ross Channel (1080p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbobross/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TheDesignNetwork.us",The Design Network (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthedesignnetwork/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-petcollective/CDN/master.m3u8 -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpetcollective/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ThePreviewChannel.us",The Preview Channel (720p) -https://hls.xumo.com/channel-hls/v1/bmneuerw7j9k5lfc/9999330/master.m3u8 -#EXTINF:-1 tvg-id="TheYoungTurks.us",The Young Turks (TYT) (1080p) [Not 24/7] -https://tyt-xumo-us.amagi.tv/hls/amagi_hls_data_tytnetwor-tyt-xumo/CDN/master.m3u8 -#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziotmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="TMZ.us",TMZ (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1234A-tmz/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="ToonGoggles.us",Toon Goggles (720p) [Not 24/7] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtoongoggles/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us",USA Today (432p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuusatodaynews/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxusatoday/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USAToday.us",USA Today (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatoday/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="USATodaySportswire.us",USA Today Sportswire (720p) [Offline] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatodaysportswire/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VanityFair.us",Vanity Fair (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvanityfair/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VanityFair.us",Vanity Fair (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvanityfair/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vevo80s.us",Vevo 80s (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo80s/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VevoPop.us",Vevo Pop (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vogue.us",Vogue (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvogue/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Vogue.us",Vogue (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvogue/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VoyagerDocumentaries.us",Voyager Documentaries (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvoyager/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="VoyagerDocumentaries.us",Voyager Documentaries (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvoyagerdocumentaries/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuweatherspy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WeatherSpy.us",WeatherSpy (720p) [Timeout] -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxweatherspy/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="Wired.us",Wired (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxwired/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="WorldPokerTour.us",World Poker Tour (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxworldpokertour/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="XumoFreeMovies.us",Xumo Free Movies (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumofreemovies/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="XumoFreeWesterns.us",Xumo Free Westerns (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumowesterns/CDN/playlist.m3u8 -#EXTINF:-1 tvg-id="YoGabbaGabba.us",Yo Gabba Gabba! (720p) -https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuyogabagaba/CDN/playlist.m3u8 diff --git a/streams/uy.m3u b/streams/uy.m3u deleted file mode 100644 index 6ed64b9be..000000000 --- a/streams/uy.m3u +++ /dev/null @@ -1,13 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="",Canal 10 (720p) [Offline] -https://edge3-hr.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating_FTA/Canal10_URU.m3u8 -#EXTINF:-1 tvg-id="",CANAL 10 [Offline] -http://edge2-ccast-sl.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating/Canal10_URU-video=1480000.m3u8 -#EXTINF:-1 tvg-id="CharruaTV.uy",Charrúa Televisión (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/charruatvcanal -#EXTINF:-1 tvg-id="LaRedTV.uy",LaRed TV (576p) [Not 24/7] -https://stmv1.srvif.com/laredtv/laredtv/playlist.m3u8 -#EXTINF:-1 tvg-id="LatinoKids.uy",LatinoKids (360p) [Not 24/7] -https://s14.ssl-stream.com:3335/live/latinokidsonlinelive.m3u8 -#EXTINF:-1 tvg-id="UCL.uy",UCL TV (360p) [Not 24/7] -https://livedelta.cdn.antel.net.uy/out/u/url_canalu_2.m3u8 diff --git a/streams/uz.m3u b/streams/uz.m3u deleted file mode 100644 index 4cd3f7754..000000000 --- a/streams/uz.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AzonTV.uz",Azon TV (1080p) [Not 24/7] -http://tv2.azon.uz/high/stream.m3u8 -#EXTINF:-1 tvg-id="Milliy.uz",Milliy (480p) [Not 24/7] -http://milliy.tv/hls/index.m3u8 diff --git a/streams/va.m3u b/streams/va.m3u deleted file mode 100644 index 986b98312..000000000 --- a/streams/va.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV2000.va",TV2000 (360p) [Not 24/7] -http://cld01ibi16.wz.tv2000.it/tv2000_alfa.m3u8 -#EXTINF:-1 tvg-id="TV2000.va",TV2000 (360p) [Not 24/7] -http://mi1.wz.tv2000.it/tv2000_alfa.m3u8 diff --git a/streams/ve.m3u b/streams/ve.m3u deleted file mode 100644 index cff6ac89b..000000000 --- a/streams/ve.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="123TV.ve",123 TV [Timeout] -http://177.52.221.214:8000/play/a0ew/index.m3u8 -#EXTINF:-1 tvg-id="",Canal i (720p) [Not 24/7] -https://vcp.myplaytv.com/canali/canali/playlist.m3u8 -#EXTINF:-1 tvg-id="CanalNubehTV.ve",Canal Nubeh TV (720p) [Not 24/7] -https://vcp.myplaytv.com/nubehtv/nubehtv/playlist.m3u8 -#EXTINF:-1 tvg-id="Colombeia.ve",Colombeia [Timeout] -http://177.52.221.214:8000/play/a0co/index.m3u8 -#EXTINF:-1 tvg-id="Globovision.ve",Globovision (1080p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCfJtBtmhnIyfUB6RqXeImMw/live -#EXTINF:-1 tvg-id="Italianissimo.ve",Italianissimo (358p) [Not 24/7] -https://vcp.myplaytv.com/italianissimo/italianissimo/playlist.m3u8 -#EXTINF:-1 tvg-id="LaTeleTuya.ve",La Tele Tuya (TLT) (404p) [Geo-blocked] -https://vcp.myplaytv.com/tlthd/tlthd/playlist.m3u8 -#EXTINF:-1 tvg-id="OxigenoTV.ve",Oxigeno TV (360p) [Not 24/7] -https://vcp.myplaytv.com/oxigenotv/oxigenotv/playlist.m3u8 -#EXTINF:-1 tvg-id="PromarTV.ve",PromarTV (Yaracuy) (1080p) [Not 24/7] -http://vcp1.myplaytv.com:1935/promar/promar/playlist.m3u8 -#EXTINF:-1 tvg-id="RCR750.ve",Radio Caracas Radio 750 (720p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5AA3XP4_pXIELctSsH_L7w/live -#EXTINF:-1 tvg-id="",teleSUR (260p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/360p/playlist.m3u8 -#EXTINF:-1 tvg-id="",teleSUR (360p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/480p/playlist.m3u8 -#EXTINF:-1 tvg-id="",teleSUR (1080p) -https://cdnesmain.telesur.ultrabase.net/mbliveMain/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="",TeleSUR English (1080p) [Not 24/7] -https://cdnenmain.telesur.ultrabase.net/mblivev3/hd/playlist.m3u8 -#EXTINF:-1 tvg-id="Televen.ve",Televen (404p) [Not 24/7] -https://cloud.streamingconnect.tv:455/televen/televenweb.m3u8 -#EXTINF:-1 tvg-id="TelevisoradeOriente.ve",Televisora de Oriente (480p) [Not 24/7] -http://vcp1.myplaytv.com:1935/tvo/tvo/playlist.m3u8 -#EXTINF:-1 tvg-id="TVFamilia.ve",TV Familia (270p) -https://cdn01.yowi.tv/KPFPGJU8A6/master.m3u8 -#EXTINF:-1 tvg-id="TVVenezuela.ve",TV Venezuela (480p) [Not 24/7] -https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="ValeTV.ve",Vale TV (480p) [Not 24/7] -http://vcp1.myplaytv.com/valetv/valetv/playlist.m3u8 -#EXTINF:-1 tvg-id="VePlus.ve",Ve Plus (480p) [Not 24/7] -http://190.122.96.187:8888/http/006 -#EXTINF:-1 tvg-id="Venevision.ve" status="online",Venevision [Geo-blocked] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/venevisionweb/live -#EXTINF:-1 tvg-id="VenezolanadeTelevision.ve",Venezolana de Televisión [Timeout] -http://177.52.221.214:8000/play/a0cj/index.m3u8 -#EXTINF:-1 tvg-id="VepacoTV.ve",Vepaco TV (486p) [Not 24/7] -http://vcp1.myplaytv.com:1935/tvepaco/tvepaco/playlist.m3u8 -#EXTINF:-1 tvg-id="VPItv.ve",VPItv (480p) [Not 24/7] -http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vpitv diff --git a/streams/vn.m3u b/streams/vn.m3u deleted file mode 100644 index fcc423734..000000000 --- a/streams/vn.m3u +++ /dev/null @@ -1,103 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AirTV.vn",Air TV (720p) -https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Bến Tre (720p) [Timeout] -http://113.163.94.245/hls-live/livepkgr/_definst_/liveevent/thbt.m3u8 -#EXTINF:-1 tvg-id="BrianTV.vn",Brian TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="BRT.vn",BRT (360p) -http://113.163.216.23:1935/live/tv2.stream_480p/playlist.m3u8 -#EXTINF:-1 tvg-id="CaMauTV.vn",Cà Mau TV (720p) [Geo-blocked] -http://tv.ctvcamau.vn/live/tv/tv.m3u8 -#EXTINF:-1 tvg-id="DaNangTV1.vn",Da Nang TV1 (1080p) [Not 24/7] -http://drtdnglive.e49a7c38.cdnviet.com/livedrt1/chunklist.m3u8 -#EXTINF:-1 tvg-id="DaNangTV2.vn",Da Nang TV2 (1080p) [Not 24/7] -http://drtdnglive.e49a7c38.cdnviet.com/livestream/chunklist.m3u8 -#EXTINF:-1 tvg-id="DaoLaneXang.vn",Dao Lane Xang (720p) -https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Dhammasapha TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="",Đồng Nai 1 (360p) [Not 24/7] -http://118.107.85.4:1935/live/smil:DNTV1.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Đồng Nai 2 (360p) [Not 24/7] -http://118.107.85.4:1935/live/smil:DNTV2.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="GiaLaiTV.vn",Gia Lai TV (486p) -http://113.161.25.3:8134/hls/gialaitv/gialaitv.m3u8 -#EXTINF:-1 tvg-id="GoodIdeaTV.vn",Good Idea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HBTV.vn",HBTV (406p) [Not 24/7] -http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongStarTV.vn",Hmong Star TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HmongUSATV.vn",HmongUSA TV (360p) -https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="HoungFa.vn",Houng Fa (720p) -https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="ISTV.vn",ISTV (480p) -https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KhmerTV.vn",KhmerTV (1080p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/khmertv2020.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="KhomsanhTV.vn",Khomsanh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="KienGiangTV1.vn",KienGiangTV1 (1080p) [Geo-blocked] -http://tv.kgtv.vn/live/kgtv1/kgtv1.m3u8 -#EXTINF:-1 tvg-id="KienGiangTV.vn",KienGiangTV (1080p) [Geo-blocked] -http://tv.kgtv.vn/live/kgtv/kgtv.m3u8 -#EXTINF:-1 tvg-id="LA34LongAn.vn",LA34 Long An (720p) -http://113.161.229.13/hls-live/livepkgr/_definst_/liveevent/tv.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV1.vn",Lao Champa TV 1 (720p) -https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV2.vn",Lao Champa TV 2 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoChampaTV3.vn",Lao Champa TV 3 (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.vn",Lao Heritage Foundation TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoMuslimTV.vn",Lao Muslim TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoNetTV.vn",Lao Net TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LaoSVTV.vn",Lao SV TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="LaosPlanetTV.vn",Laos Planet TV (720p) -https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LookThoongTV.vn",Look Thoong TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="LSTV.vn",LS TV (480p) -https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="NATTV.vn",NAT TV (1080p) -https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Ning TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="OhMuangLaoTV.vn",Oh Muang Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="OyLaoTV.vn",Oy Lao TV (720p) [Not 24/7] -https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PNTV.vn",PNTV (720p) -https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="PTPPhuYen.vn",PTP Phú Yên (432p) [Not 24/7] -http://113.161.4.48:8080/phuyen/tv.m3u8 -#EXTINF:-1 tvg-id="QRT.vn",QRT (404p) [Not 24/7] -http://113.161.6.157:8081/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 -#EXTINF:-1 tvg-id="",Quốc Hội (720p) -http://113.164.225.140:1935/live/quochoitvlive.stream_720p/playlist.m3u8 -#EXTINF:-1 tvg-id="SupremeMasterTV.vn",Supreme Master TV (720p) -https://lbs-us1.suprememastertv.com/720p.m3u8 -#EXTINF:-1 tvg-id="TeaTV2.vn",Tea TV 2 (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TeaTV.vn",Tea TV (720p) -https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="TienGiang.vn",Tien Giang (720p) -http://thtg.vn:8001/thtg.m3u8 -#EXTINF:-1 tvg-id="UniquelyThai.vn",Uniquely Thai (720p) -https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VajtswvTxojlus.vn",Vajtswv Txojlus (720p) -https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VanphenhTV.vn",Vanphenh TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="VatiLaoTV.vn",Vati Lao TV (720p) -https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="VietMyTV.vn",Việt Mỹ TV (480p) [Not 24/7] -http://68.235.37.11:1935/vietmagazine/vietmagazine/playlist.m3u8 -#EXTINF:-1 tvg-id="VITV.vn",VITV (180p) -http://210.86.230.202:8134/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 diff --git a/streams/vn_fptplay.m3u b/streams/vn_fptplay.m3u deleted file mode 100644 index b327c4dbd..000000000 --- a/streams/vn_fptplay.m3u +++ /dev/null @@ -1,49 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AXNEastAsia.us",AXN East Asia (Vietnamese) (1080p) [Geo-blocked] -https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/AXN-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="ChannelV.vn",Channel V (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CHANNELV-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="FBNC.vn",FBNC (270p) [Offline] -https://livecdn.fptplay.net/sdc/fbnchd_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="FoxMoviesAsia.us",Fox Movies Asia (Vietnamese) (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/FOXMOVIES-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV1.vn",HTV1 (576p) -https://livecdn.fptplay.net/sdb/htv1_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV2.vn",HTV2 (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV2-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV3.vn",HTV3 (576p) -https://livecdn.fptplay.net/sdb/htv3_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="HTV4.vn",HTV4 (576p) -https://livecdn.fptplay.net/sdb/htv4_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTV Thể Thao (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV-THETHAO-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Ca Nhạc (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-CANHAC-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Du Lịch Cuộc Sống (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-DULICH-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Gia Đình (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-GIADINH-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Phim (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHIM-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Phụ Nữ (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHUNU-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Thuần Việt (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIET-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",HTVC Thuần Việt (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIETHD-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="HTVCPlus.vn",HTVC+ (1080p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PLUS-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="SkyShop.vn",SkyShop (720p) -https://livecdn.fptplay.net/sda/skymart_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Vĩnh Long 1 [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL1-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="",Vĩnh Long 2 [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL2-HD-1080p/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC4.vn",VTC4 (720p) -https://livecdn.fptplay.net/sdc/vtc4_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC4Yeah1Family.vn",VTC4 Yeah1 Family (720p) [Geo-blocked] -http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/VTC4-SD-ABR/HTV-ABR/VTC4-SD-720p/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC5.vn",VTC5 (576p) -https://livecdn.fptplay.net/sdb/vtc5_hls.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="VTC6.vn",VTC6 (576p) -https://livecdn.fptplay.net/sdb/vtc6_hls.smil/playlist.m3u8 diff --git a/streams/xk.m3u b/streams/xk.m3u deleted file mode 100644 index 3a6e7c962..000000000 --- a/streams/xk.m3u +++ /dev/null @@ -1,23 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="ArtaNews.xk",Arta News (720p) [Not 24/7] -https://samiu.gjirafa.com/live/DpTlD159VIIRWtzFOvUI70nftnyosgUE/yt1q1x.m3u8 -#EXTINF:-1 tvg-id="RTK1.xk",RTK 1 (720p) [Not 24/7] -http://stream1.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK1.xk",RTK 1 (720p) [Not 24/7] -http://stream2.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK2.xk",RTK 2 (720p) -http://stream1.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK2.xk",RTK 2 (720p) -http://stream2.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK3.xk",RTK 3 (720p) -http://stream1.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK3.xk",RTK 3 (720p) -http://stream2.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK4.xk",RTK 4 (720p) [Not 24/7] -http://stream1.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="RTK4.xk",RTK 4 (720p) [Not 24/7] -http://stream2.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 -#EXTINF:-1 tvg-id="TravelingoTV.xk",Travelingo TV (1080p) [Not 24/7] -https://abdyli.gjirafa.com/live/r6e3JjXjSjkUCsA7CmdhL8lzM4fGXGz4/ytkytq.m3u8 -#EXTINF:-1 tvg-id="ZeriTV.xk",Zeri TV (360p) [Offline] -https://abdyli.gjirafa.com/live/ZvTsY6MH7RPPvXuUDjRjcEYkK7yryigW/ytkt1k.m3u8 diff --git a/streams/ye.m3u b/streams/ye.m3u deleted file mode 100644 index c7084d2e1..000000000 --- a/streams/ye.m3u +++ /dev/null @@ -1,25 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AdenTV.ye",Aden TV [Offline] -https://master.starmena-cloud.com/hls/aden.m3u8 -#EXTINF:-1 tvg-id="AICTV.ye",AIC TV (576p) [Timeout] -http://195.35.85.115:8000/play/a0fr -#EXTINF:-1 tvg-id="AlMahrah.ye",Al Mahrah (576p) [Offline] -http://82.212.74.99:8000/live/hls/8173.m3u8 -#EXTINF:-1 tvg-id="AlMasirah.ye",Al Masirah (720p) [Not 24/7] -https://svs.itworkscdn.net/almasiralive/almasira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="AlMasirahMubacher.ye",Al Masirah Mubacher (642p) [Not 24/7] -https://svs.itworkscdn.net/almasiramubacherlive/almasira.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",Al Masirah TV (720p) [Not 24/7] -https://svs.itworkscdn.net/almasiralive/almasira/playlist.m3u8 -#EXTINF:-1 tvg-id="AlerthAlnabawi.ye",Alerth Alnabawi (576p) [Not 24/7] -http://82.212.74.2:8000/live/7307.m3u8 -#EXTINF:-1 tvg-id="AlghadAlmushreq.ye",Alghad Almushreq (576p) -http://82.212.74.3:8000/live/7512.m3u8 -#EXTINF:-1 tvg-id="AlyamanShabab.ye",Alyaman Shabab (1080p) [Not 24/7] -https://master.starmena-cloud.com/hls/yemenshabab.m3u8 -#EXTINF:-1 tvg-id="BelqeesTV.ye",Belqees TV (1080p) [Offline] -https://svs.itworkscdn.net/itwlive/itw3.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="Hadramout.ye",Hadramout [Offline] -https://linkastream.co/headless?url=https://www.youtube.com/c/hadramouttv/live -#EXTINF:-1 tvg-id="SuhailTV.ye",Suhail TV (576p) -http://82.212.74.98:8000/live/hls/7726.m3u8 diff --git a/streams/zm.m3u b/streams/zm.m3u deleted file mode 100644 index e30382ee2..000000000 --- a/streams/zm.m3u +++ /dev/null @@ -1,5 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="TV1.zm",TV1 (480p) [Not 24/7] -https://dcunilive159-lh.akamaihd.net/i/dclive_1@1013574/master.m3u8 -#EXTINF:-1 tvg-id="TV4.zm",TV4 (576p) [Not 24/7] -https://dcunilive258-lh.akamaihd.net/i/dclive_1@348579/master.m3u8 From c3ecac33aa203ee4d1ebaf4441677cfaf74fcd25 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 01:55:13 +0300 Subject: [PATCH 147/157] Add /channels --- channels/ad.m3u | 3 + channels/ae.m3u~master | 193 ++ channels/af.m3u | 35 + channels/ag.m3u | 3 + channels/al.m3u~master | 263 +++ channels/am.m3u~master | 73 + channels/ao.m3u | 5 + channels/ar.m3u~master | 176 ++ channels/at.m3u~master | 61 + channels/at_samsung.m3u | 11 + channels/au.m3u~master | 119 ++ channels/au_samsung.m3u | 87 + channels/aw.m3u~master | 11 + channels/az.m3u~master | 55 + channels/ba.m3u~master | 29 + channels/bb.m3u | 3 + channels/bd.m3u | 7 + channels/bd_jagobd.m3u~master | 53 + channels/be.m3u~master | 43 + channels/be_samsung.m3u~master | 11 + channels/bf.m3u | 9 + channels/bg.m3u~master | 55 + channels/bh.m3u | 17 + channels/bj.m3u~master | 11 + channels/bn.m3u | 5 + channels/bo.m3u~master | 51 + channels/br.m3u~master | 315 +++ channels/br_pluto.m3u | 123 ++ channels/br_samsung.m3u | 33 + channels/bs.m3u~master | 7 + channels/by.m3u~master | 33 + channels/by_sluhay.m3u | 25 + channels/ca.m3u~master | 273 +++ channels/ca_samsung.m3u | 49 + channels/ca_stingray.m3u | 21 + channels/cd.m3u~master | 13 + channels/cg.m3u | 3 + channels/ch.m3u~master | 85 + channels/ch_samsung.m3u | 11 + channels/ci.m3u | 3 + channels/cl.m3u~master | 355 ++++ channels/cm.m3u | 9 + channels/cn.m3u~master | 2959 +++++++++++++++++++++++++++++ channels/co.m3u~master | 99 + channels/cr.m3u~master | 81 + channels/cu.m3u~master | 13 + channels/cw.m3u~master | 11 + channels/cy.m3u~master | 57 + channels/cz.m3u~master | 54 + channels/de.m3u~master | 474 +++++ channels/de_samsung.m3u | 49 + channels/dk.m3u | 15 + channels/dk_samsung.m3u | 25 + channels/do.m3u~master | 141 ++ channels/dz.m3u | 49 + channels/ec.m3u~master | 49 + channels/ee.m3u | 15 + channels/eg.m3u~master | 86 + channels/es.m3u~master | 521 +++++ channels/es_rakuten.m3u | 135 ++ channels/es_samsung.m3u | 57 + channels/et.m3u | 3 + channels/fi.m3u~master | 21 + channels/fi_samsung.m3u | 23 + channels/fj.m3u | 5 + channels/fo.m3u | 3 + channels/fr.m3u~master | 257 +++ channels/fr_samsung.m3u | 55 + channels/ge.m3u | 19 + channels/gh.m3u | 5 + channels/gl.m3u | 5 + channels/gm.m3u | 3 + channels/gn.m3u | 3 + channels/gp.m3u | 3 + channels/gq.m3u | 3 + channels/gr.m3u~master | 229 +++ channels/gt.m3u | 13 + channels/hk.m3u~master | 64 + channels/hn.m3u~master | 99 + channels/hr.m3u | 42 + channels/ht.m3u | 33 + channels/hu.m3u~master | 83 + channels/id.m3u~master | 289 +++ channels/ie.m3u | 17 + channels/ie_samsung.m3u | 11 + channels/il.m3u~master | 55 + channels/in.m3u~master | 843 ++++++++ channels/in_samsung.m3u | 29 + channels/iq.m3u~master | 121 ++ channels/ir.m3u~master | 253 +++ channels/ir_telewebion.m3u~master | 207 ++ channels/is.m3u | 7 + channels/it.m3u~master | 492 +++++ channels/it_samsung.m3u | 69 + channels/jm.m3u | 5 + channels/jo.m3u~master | 43 + channels/jp.m3u~master | 201 ++ channels/ke.m3u~master | 25 + channels/kg.m3u | 7 + channels/kh.m3u | 21 + channels/kp.m3u | 5 + channels/kr.m3u~master | 117 ++ channels/kw.m3u~master | 41 + channels/kz.m3u | 47 + channels/la.m3u | 63 + channels/lb.m3u~master | 62 + channels/li.m3u | 5 + channels/lk.m3u | 21 + channels/lt.m3u | 9 + channels/lu.m3u | 15 + channels/lu_samsung.m3u | 11 + channels/lv.m3u | 11 + channels/ly.m3u | 21 + channels/ma.m3u~master | 47 + channels/mc.m3u | 3 + channels/md.m3u | 27 + channels/me.m3u | 17 + channels/mk.m3u | 11 + channels/ml.m3u | 3 + channels/mm.m3u~master | 24 + channels/mn.m3u | 5 + channels/mo.m3u | 23 + channels/mq.m3u | 5 + channels/mt.m3u | 7 + channels/mv.m3u | 3 + channels/mw.m3u | 3 + channels/mx.m3u~master | 203 ++ channels/mx_samsung.m3u | 31 + channels/my.m3u~master | 39 + channels/mz.m3u | 9 + channels/ne.m3u | 3 + channels/ng.m3u~master | 19 + channels/ni.m3u | 23 + channels/nl.m3u~master | 217 +++ channels/nl_samsung.m3u | 23 + channels/no.m3u | 43 + channels/no_samsung.m3u | 27 + channels/np.m3u | 5 + channels/nz.m3u~master | 31 + channels/om.m3u~master | 13 + channels/pa.m3u~master | 27 + channels/pe.m3u~master | 423 +++++ channels/pf.m3u | 3 + channels/ph.m3u | 37 + channels/pk.m3u | 68 + channels/pl.m3u | 83 + channels/pr.m3u~master | 17 + channels/ps.m3u | 49 + channels/pt.m3u | 118 ++ channels/pt_samsung.m3u | 9 + channels/py.m3u | 33 + channels/qa.m3u~master | 32 + channels/ro.m3u~master | 146 ++ channels/rs.m3u | 95 + channels/ru.m3u~master | 811 ++++++++ channels/ru_catcast.m3u~master | 21 + channels/ru_okkotv.m3u | 91 + channels/rw.m3u | 13 + channels/sa.m3u~master | 123 ++ channels/sd.m3u | 7 + channels/se.m3u | 43 + channels/se_samsung.m3u | 25 + channels/sg.m3u | 17 + channels/si.m3u | 19 + channels/sk.m3u | 69 + channels/sl.m3u | 3 + channels/sm.m3u | 5 + channels/sn.m3u | 29 + channels/so.m3u | 13 + channels/sv.m3u~master | 34 + channels/sy.m3u | 58 + channels/th.m3u~master | 96 + channels/tj.m3u | 3 + channels/tm.m3u~master | 29 + channels/tn.m3u | 33 + channels/tr.m3u~master | 471 +++++ channels/tt.m3u | 3 + channels/tw.m3u~master | 149 ++ channels/tz.m3u | 9 + channels/ua.m3u~master | 271 +++ channels/ug.m3u | 9 + channels/uk.m3u~master | 405 ++++ channels/uk_samsung.m3u | 125 ++ channels/uk_sportstribal.m3u | 23 + channels/unsorted.m3u~master | 415 ++++ channels/us.m3u~master | 1953 +++++++++++++++++++ channels/us_adultiptv.m3u | 51 + channels/us_adultswim.m3u | 33 + channels/us_bumblebee.m3u~master | 73 + channels/us_distro.m3u | 19 + channels/us_filmon.m3u | 9 + channels/us_fubo.m3u | 9 + channels/us_glewedtv.m3u | 3 + channels/us_imdbtv.m3u | 11 + channels/us_klowdtv.m3u | 25 + channels/us_localbtv.m3u | 190 ++ channels/us_pbs.m3u | 265 +++ channels/us_plex.m3u~master | 221 +++ channels/us_pluto.m3u | 2159 +++++++++++++++++++++ channels/us_redbox.m3u | 25 + channels/us_redtraffic.m3u | 37 + channels/us_roku.m3u~master | 243 +++ channels/us_samsung.m3u | 207 ++ channels/us_ssh101.m3u | 58 + channels/us_stirr.m3u~master | 515 +++++ channels/us_tcl.m3u | 29 + channels/us_tubi.m3u~master | 129 ++ channels/us_vizio.m3u~master | 187 ++ channels/us_xumo.m3u~master | 369 ++++ channels/uy.m3u | 13 + channels/uz.m3u | 5 + channels/va.m3u | 5 + channels/ve.m3u~master | 49 + channels/vn.m3u~master | 103 + channels/vn_fptplay.m3u | 57 + channels/xk.m3u | 23 + channels/ye.m3u | 25 + channels/zm.m3u | 5 + 218 files changed, 24262 insertions(+) create mode 100644 channels/ad.m3u create mode 100644 channels/ae.m3u~master create mode 100644 channels/af.m3u create mode 100644 channels/ag.m3u create mode 100644 channels/al.m3u~master create mode 100644 channels/am.m3u~master create mode 100644 channels/ao.m3u create mode 100644 channels/ar.m3u~master create mode 100644 channels/at.m3u~master create mode 100644 channels/at_samsung.m3u create mode 100644 channels/au.m3u~master create mode 100644 channels/au_samsung.m3u create mode 100644 channels/aw.m3u~master create mode 100644 channels/az.m3u~master create mode 100644 channels/ba.m3u~master create mode 100644 channels/bb.m3u create mode 100644 channels/bd.m3u create mode 100644 channels/bd_jagobd.m3u~master create mode 100644 channels/be.m3u~master create mode 100644 channels/be_samsung.m3u~master create mode 100644 channels/bf.m3u create mode 100644 channels/bg.m3u~master create mode 100644 channels/bh.m3u create mode 100644 channels/bj.m3u~master create mode 100644 channels/bn.m3u create mode 100644 channels/bo.m3u~master create mode 100644 channels/br.m3u~master create mode 100644 channels/br_pluto.m3u create mode 100644 channels/br_samsung.m3u create mode 100644 channels/bs.m3u~master create mode 100644 channels/by.m3u~master create mode 100644 channels/by_sluhay.m3u create mode 100644 channels/ca.m3u~master create mode 100644 channels/ca_samsung.m3u create mode 100644 channels/ca_stingray.m3u create mode 100644 channels/cd.m3u~master create mode 100644 channels/cg.m3u create mode 100644 channels/ch.m3u~master create mode 100644 channels/ch_samsung.m3u create mode 100644 channels/ci.m3u create mode 100644 channels/cl.m3u~master create mode 100644 channels/cm.m3u create mode 100644 channels/cn.m3u~master create mode 100644 channels/co.m3u~master create mode 100644 channels/cr.m3u~master create mode 100644 channels/cu.m3u~master create mode 100644 channels/cw.m3u~master create mode 100644 channels/cy.m3u~master create mode 100644 channels/cz.m3u~master create mode 100644 channels/de.m3u~master create mode 100644 channels/de_samsung.m3u create mode 100644 channels/dk.m3u create mode 100644 channels/dk_samsung.m3u create mode 100644 channels/do.m3u~master create mode 100644 channels/dz.m3u create mode 100644 channels/ec.m3u~master create mode 100644 channels/ee.m3u create mode 100644 channels/eg.m3u~master create mode 100644 channels/es.m3u~master create mode 100644 channels/es_rakuten.m3u create mode 100644 channels/es_samsung.m3u create mode 100644 channels/et.m3u create mode 100644 channels/fi.m3u~master create mode 100644 channels/fi_samsung.m3u create mode 100644 channels/fj.m3u create mode 100644 channels/fo.m3u create mode 100644 channels/fr.m3u~master create mode 100644 channels/fr_samsung.m3u create mode 100644 channels/ge.m3u create mode 100644 channels/gh.m3u create mode 100644 channels/gl.m3u create mode 100644 channels/gm.m3u create mode 100644 channels/gn.m3u create mode 100644 channels/gp.m3u create mode 100644 channels/gq.m3u create mode 100644 channels/gr.m3u~master create mode 100644 channels/gt.m3u create mode 100644 channels/hk.m3u~master create mode 100644 channels/hn.m3u~master create mode 100644 channels/hr.m3u create mode 100644 channels/ht.m3u create mode 100644 channels/hu.m3u~master create mode 100644 channels/id.m3u~master create mode 100644 channels/ie.m3u create mode 100644 channels/ie_samsung.m3u create mode 100644 channels/il.m3u~master create mode 100644 channels/in.m3u~master create mode 100644 channels/in_samsung.m3u create mode 100644 channels/iq.m3u~master create mode 100644 channels/ir.m3u~master create mode 100644 channels/ir_telewebion.m3u~master create mode 100644 channels/is.m3u create mode 100644 channels/it.m3u~master create mode 100644 channels/it_samsung.m3u create mode 100644 channels/jm.m3u create mode 100644 channels/jo.m3u~master create mode 100644 channels/jp.m3u~master create mode 100644 channels/ke.m3u~master create mode 100644 channels/kg.m3u create mode 100644 channels/kh.m3u create mode 100644 channels/kp.m3u create mode 100644 channels/kr.m3u~master create mode 100644 channels/kw.m3u~master create mode 100644 channels/kz.m3u create mode 100644 channels/la.m3u create mode 100644 channels/lb.m3u~master create mode 100644 channels/li.m3u create mode 100644 channels/lk.m3u create mode 100644 channels/lt.m3u create mode 100644 channels/lu.m3u create mode 100644 channels/lu_samsung.m3u create mode 100644 channels/lv.m3u create mode 100644 channels/ly.m3u create mode 100644 channels/ma.m3u~master create mode 100644 channels/mc.m3u create mode 100644 channels/md.m3u create mode 100644 channels/me.m3u create mode 100644 channels/mk.m3u create mode 100644 channels/ml.m3u create mode 100644 channels/mm.m3u~master create mode 100644 channels/mn.m3u create mode 100644 channels/mo.m3u create mode 100644 channels/mq.m3u create mode 100644 channels/mt.m3u create mode 100644 channels/mv.m3u create mode 100644 channels/mw.m3u create mode 100644 channels/mx.m3u~master create mode 100644 channels/mx_samsung.m3u create mode 100644 channels/my.m3u~master create mode 100644 channels/mz.m3u create mode 100644 channels/ne.m3u create mode 100644 channels/ng.m3u~master create mode 100644 channels/ni.m3u create mode 100644 channels/nl.m3u~master create mode 100644 channels/nl_samsung.m3u create mode 100644 channels/no.m3u create mode 100644 channels/no_samsung.m3u create mode 100644 channels/np.m3u create mode 100644 channels/nz.m3u~master create mode 100644 channels/om.m3u~master create mode 100644 channels/pa.m3u~master create mode 100644 channels/pe.m3u~master create mode 100644 channels/pf.m3u create mode 100644 channels/ph.m3u create mode 100644 channels/pk.m3u create mode 100644 channels/pl.m3u create mode 100644 channels/pr.m3u~master create mode 100644 channels/ps.m3u create mode 100644 channels/pt.m3u create mode 100644 channels/pt_samsung.m3u create mode 100644 channels/py.m3u create mode 100644 channels/qa.m3u~master create mode 100644 channels/ro.m3u~master create mode 100644 channels/rs.m3u create mode 100644 channels/ru.m3u~master create mode 100644 channels/ru_catcast.m3u~master create mode 100644 channels/ru_okkotv.m3u create mode 100644 channels/rw.m3u create mode 100644 channels/sa.m3u~master create mode 100644 channels/sd.m3u create mode 100644 channels/se.m3u create mode 100644 channels/se_samsung.m3u create mode 100644 channels/sg.m3u create mode 100644 channels/si.m3u create mode 100644 channels/sk.m3u create mode 100644 channels/sl.m3u create mode 100644 channels/sm.m3u create mode 100644 channels/sn.m3u create mode 100644 channels/so.m3u create mode 100644 channels/sv.m3u~master create mode 100644 channels/sy.m3u create mode 100644 channels/th.m3u~master create mode 100644 channels/tj.m3u create mode 100644 channels/tm.m3u~master create mode 100644 channels/tn.m3u create mode 100644 channels/tr.m3u~master create mode 100644 channels/tt.m3u create mode 100644 channels/tw.m3u~master create mode 100644 channels/tz.m3u create mode 100644 channels/ua.m3u~master create mode 100644 channels/ug.m3u create mode 100644 channels/uk.m3u~master create mode 100644 channels/uk_samsung.m3u create mode 100644 channels/uk_sportstribal.m3u create mode 100644 channels/unsorted.m3u~master create mode 100644 channels/us.m3u~master create mode 100644 channels/us_adultiptv.m3u create mode 100644 channels/us_adultswim.m3u create mode 100644 channels/us_bumblebee.m3u~master create mode 100644 channels/us_distro.m3u create mode 100644 channels/us_filmon.m3u create mode 100644 channels/us_fubo.m3u create mode 100644 channels/us_glewedtv.m3u create mode 100644 channels/us_imdbtv.m3u create mode 100644 channels/us_klowdtv.m3u create mode 100644 channels/us_localbtv.m3u create mode 100644 channels/us_pbs.m3u create mode 100644 channels/us_plex.m3u~master create mode 100644 channels/us_pluto.m3u create mode 100644 channels/us_redbox.m3u create mode 100644 channels/us_redtraffic.m3u create mode 100644 channels/us_roku.m3u~master create mode 100644 channels/us_samsung.m3u create mode 100644 channels/us_ssh101.m3u create mode 100644 channels/us_stirr.m3u~master create mode 100644 channels/us_tcl.m3u create mode 100644 channels/us_tubi.m3u~master create mode 100644 channels/us_vizio.m3u~master create mode 100644 channels/us_xumo.m3u~master create mode 100644 channels/uy.m3u create mode 100644 channels/uz.m3u create mode 100644 channels/va.m3u create mode 100644 channels/ve.m3u~master create mode 100644 channels/vn.m3u~master create mode 100644 channels/vn_fptplay.m3u create mode 100644 channels/xk.m3u create mode 100644 channels/ye.m3u create mode 100644 channels/zm.m3u diff --git a/channels/ad.m3u b/channels/ad.m3u new file mode 100644 index 000000000..78babb213 --- /dev/null +++ b/channels/ad.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ATV.ad" tvg-country="AD" tvg-language="Catalan" tvg-logo="https://i.imgur.com/kJCjeQ4.png" group-title="General",ATV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/andorra/atv diff --git a/channels/ae.m3u~master b/channels/ae.m3u~master new file mode 100644 index 000000000..df31a4bc3 --- /dev/null +++ b/channels/ae.m3u~master @@ -0,0 +1,193 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3eeshAlAanTV.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://www.3eeshalaan.net/wp-content/themes/alaan-child-3eesh/assets/img/logo.png" group-title="General",3eesh Al Aan TV (720p) [Timeout] +https://streaming.3eeshalaan.net/AAAFinalFeed/AlAanFeed_live.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiAloula.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Abu Dhabi Aloula (1080p) +https://admdn2.cdn.mangomolo.com/adtv/smil:adtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiDrama.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7Bx66K7.jpg" group-title="General",Abu Dhabi Drama (1080p) [Offline] +https://admdn5.cdn.mangomolo.com/drama/smil:drama.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiEmirates.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Abu Dhabi Emirates (1080p) +https://admdn3.cdn.mangomolo.com/emarat/smil:emarat.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports1.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/lKl2wZH.png" group-title="Sports",Abu Dhabi Sports 1 (1080p) +https://admdn1.cdn.mangomolo.com/adsports1/smil:adsports1.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Abu Dhabi Sports 2 (1080p) +https://admdn5.cdn.mangomolo.com/adsports2/smil:adsports2.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Abu Dhabi Sports 3 (1080p) +https://admdn3.cdn.mangomolo.com/adsports3/smil:adsports3.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AbuDhabiSports4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://statres.cdn.mgmlcdn.com/analytics/uploads/164/5e3ad6cc72.png" group-title="Sports",Abu Dhabi Sports 4 (1080p) [Geo-blocked] +https://admdn4ta.cdn.mgmlcdn.com/adsports4/smil:adsports4.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Ajman.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://mk0ajmantvb4ih3ifdec.kinstacdn.com/wp-content/uploads/2019/07/logo_header_2-1.png" group-title="",Ajman (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/emirates/ajman +#EXTINF:-1 tvg-id="AlAan.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://www.alaan.tv/wp-content/themes/alaan-child-tv/assets/img/logo.png" group-title="",Al Aan (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x74wje5 +#EXTINF:-1 tvg-id="AlArabiya.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7OrfyOx.jpg" group-title="News",Al Arabiya (1080p) +https://live.alarabiya.net/alarabiapublish/alarabiya.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlArabiya.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7OrfyOx.jpg" group-title="News",Al Arabiya (1080p) +https://shls-alarabiya-prod-dub.shahid.net/out/v1/f5f319206ed740f9a831f2097c2ead23/index.m3u8 +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Arabiya Al Hadath (1080p) [Not 24/7] +https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlDafrahTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://aldafrah.ae/wp-content/uploads/2018/02/logo_2x-1.png" group-title="General",Al Dafrah TV (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/aldafrah +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Hadath TV (1080p) +https://shls-hadath-prod-dub.shahid.net/out/v1/0e1a306399c346faac4226aa0858f99b/index.m3u8 +#EXTINF:-1 tvg-id="AlArabiyaAlHadath.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rLR5q2x.png" group-title="News",Al Hadath TV (1080p) [Not 24/7] +https://live.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQamarTV.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://alqamartv-rfrfjjt.netdna-ssl.com/arb/wp-content/uploads/2017/05/Title5.png" group-title="",Al Qamar TV (360p) +https://cdn5.iqsat.net/iq/8c17d37e0f5c88b1e9c7e1f8f82bc980.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSharqiyaMinKabla.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6Er1lh6.png" group-title="General",Al Sharqiya Min Kabla (1080p) +https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlWoustaTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/WAD.png" group-title="General",Al Wousta TV (1080p) +https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlYaumTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://alyaumtv.net/wp-content/uploads/2019/04/alyaom-1-1_small2.png" group-title="News",Al Yaum TV (720p) +https://ikomg1.s.llnwi.net/alyaumtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Asharq.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Asharq (1080p) +https://bcovlive-a.akamaihd.net/0b75ef0a49e24704a4ca023d3a82c2df/ap-south-1/6203311941001/playlist.m3u8 +#EXTINF:-1 tvg-id="BeeMovies.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",Bee Movies (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCuaMJTqQ_W7qztqZ_zyErJg/live +#EXTINF:-1 tvg-id="BeeTheater.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/43sPGSLV/beetheater.jpg" group-title="Entertainment",Bee Theater (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC32M9DWf0zgMhBYGd_MOiIw/live +#EXTINF:-1 tvg-id="CitrussTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6lTEvrU.jpg" group-title="Shop",Citruss TV (720p) [Geo-blocked] +https://citrusstv.akamaized.net/hls/live/687285/CTV/index.m3u8 +#EXTINF:-1 tvg-id="DubaiOne.ae" tvg-country="ARAB" tvg-language="English;Arabic" tvg-logo="https://i.imgur.com/WjJ8MHC.png" group-title="General",Dubai One (1080p) +http://dminnvll.cdn.mangomolo.com/dubaione/smil:dubaione.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiOne.ae" tvg-country="ARAB" tvg-language="English;Arabic" tvg-logo="https://i.imgur.com/WjJ8MHC.png" group-title="General",Dubai One (304p) +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="DubaiRacing.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="http://admango.cdn.mangomolo.com/analytics/uploads/71/icons/live/dubai-racing-live.png" group-title="Sports",Dubai Racing (1080p) +https://dmisvthvll.cdn.mangomolo.com/events/smil:events.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiRacing2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="http://admango.cdn.mangomolo.com/analytics/uploads/71/icons/live/duabi-racing-2-live.png" group-title="Sports",Dubai Racing 2 (720p) +https://dmithrvll.cdn.mangomolo.com/dubairacing/smil:dubairacing.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiRacing3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eytrf0Y.png" group-title="Sports",Dubai Racing 3 (240p) +https://dmithrvll.cdn.mangomolo.com/dubaimubasher/smil:dubaimubasher.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiSports1.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/iYgHR5D.png" group-title="Sports",Dubai Sports 1 (1080p) +https://dmitnthvll.cdn.mangomolo.com/dubaisports/smil:dubaisports.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiSports2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Dubai Sports 2 (1080p) +https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd/smil:dubaisportshd.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiSports3.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Sports",Dubai Sports 3 (1080p) [Not 24/7] +https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd5/smil:dubaisportshd5.smil/index.m3u8 +#EXTINF:-1 tvg-id="DubaiTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dWueFIE.png" group-title="General",Dubai TV (1080p) +https://dmisxthvll.cdn.mgmlcdn.com/dubaitvht/smil:dubaitv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DubaiZaman.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5U9qpf.png" group-title="Classic",Dubai Zaman (400p) [Not 24/7] +https://dmiffthvll.cdn.mangomolo.com/dubaizaman/smil:dubaizaman.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EXPO2020.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="",EXPO 2020 (1080p) +https://shls-expotv-prod-dub.shahid.net/out/v1/d01b0b3888284878b8898017895a5922/index.m3u8 +#EXTINF:-1 tvg-id="HawasTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rVYdkth.jpg" group-title="General",Hawas TV (480p) +https://jmc-live.ercdn.net/hawastvhd/hawastvhd.m3u8 +#EXTINF:-1 tvg-id="KhyberMiddleEastTV.ae" tvg-country="AE" tvg-language="Pashto" tvg-logo="" group-title="",Khyber Middle East TV (720p) [Not 24/7] +https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 +#EXTINF:-1 tvg-id="KhyberNewsTV.ae" tvg-country="AE" tvg-language="Pashto" tvg-logo="" group-title="News",Khyber News TV (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 +#EXTINF:-1 tvg-id="MajidTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/9Bun2IX.png" group-title="Kids",Majid TV (1080p) [Offline] +https://admdn4.cdn.mangomolo.com/majid/smil:majid.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149009_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] +https://shls-mbc1ksa-ak.akamaized.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 +#EXTINF:-1 tvg-id="MBC.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 KSA (1080p) [Geo-blocked] +https://shls-mbc1ksa-prod-dub.shahid.net/out/v1/451b666db1fb41c7a4bbecf7b4865107/index.m3u8 +#EXTINF:-1 tvg-id="MBC1USA.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eKBXOKd.png" group-title="General",MBC 1 USA (1080p) +https://shls-mbc1-usa-prod.shahid.net/out/v1/1b559e832c3f40f996c1984245b3b24b/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GLltP2T.png" group-title="General",MBC 2 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149010_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KXuzL1u.png" group-title="Movies",MBC 2 (720p) [Timeout] +https://blogs.livehdchanel.live/mbc-222/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KXuzL1u.png" group-title="Movies",MBC 2 (1080p) [Offline] +https://shls-mbc2-prod-dub.shahid.net/out/v1/b4befe19798745fe986f5a9bfba62126/index.m3u8 +#EXTINF:-1 tvg-id="MBC2.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GLltP2T.png" group-title="General",MBC 2 (576p) [Offline] +http://93.184.1.247/MBC2/index.m3u8 +#EXTINF:-1 tvg-id="MBC3.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 (1080p) +https://shls-mbc3-prod-dub.shahid.net/out/v1/d5bbe570e1514d3d9a142657d33d85e6/index.m3u8 +#EXTINF:-1 tvg-id="MBC3.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149011_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC3EUR.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 EUR (1080p) +https://shls-mbc3-eur-prod-dub.shahid.net/out/v1/fce09dd6a967431a871efb3b8dec9f82/index.m3u8 +#EXTINF:-1 tvg-id="MBC3USA.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FVNVC73.png" group-title="Kids",MBC 3 USA (1080p) +https://shls-mbc3-usa-prod.shahid.net/out/v1/f7584f50d13c4c01b0fac2be04c61c7e/index.m3u8 +#EXTINF:-1 tvg-id="MBC4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pfF61uH.png" group-title="General",MBC 4 (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149012_0.m3u8?session= +#EXTINF:-1 tvg-id="MBC4.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pfF61uH.png" group-title="General",MBC 4 (1080p) [Geo-blocked] +https://shls-mbc4-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/index.m3u8 +#EXTINF:-1 tvg-id="MBC5.ae" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/ar/thumb/4/48/Mbc5.webp/168px-Mbc5.webp.png" group-title="General",MBC 5 (1080p) +https://shls-mbc5-prod-dub.shahid.net/out/v1/2720564b6a4641658fdfb6884b160da2/index.m3u8 +#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149013_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (1080p) [Geo-blocked] +https://shls-mbcaction-prod-dub.shahid.net/out/v1/68dd761538e5460096c42422199d050b/index.m3u8 +#EXTINF:-1 tvg-id="MBCAction.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n3TgfP0.png" group-title="Movies",MBC Action (576p) [Timeout] +https://blogs.livehdchanel.live/action2/index.m3u8 +#EXTINF:-1 tvg-id="MBCBollywood.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fMjhK06.png" group-title="General",MBC Bollywood (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149014_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCBollywood.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fMjhK06.png" group-title="General",MBC Bollywood (1080p) [Geo-blocked] +https://shls-mbcbollywood-prod-dub.shahid.net/out/v1/a79c9d7ef2a64a54a64d5c4567b3462a/index.m3u8 +#EXTINF:-1 tvg-id="MBCDrama.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="General",MBC Drama KSA (1080p) +https://shls-mbcdramaksa-prod-dub.shahid.net/out/v1/ce0f0762d89e4394a856c5fd13e43645/index.m3u8 +#EXTINF:-1 tvg-id="M.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="General",MBC Drama USA (1080p) +https://shls-mbc-drama-usa-prod.shahid.net/out/v1/efb67fc5c04a40778cd5c21e2e7ea884/index.m3u8 +#EXTINF:-1 tvg-id="MBCFM.ae" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/radio/mm/mbc_ae_fm.png" group-title="Music",MBC FM (1080p) +https://mbcfm-riyadh-prod-dub.shahid.net/out/v1/69c8a03f507e422f99cf5c07291c9e3a/index.m3u8 +#EXTINF:-1 tvg-id="MBCIraq.ae" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc-iraq-ae-iq.png" group-title="General",MBC Iraq (1080p) +https://shls-iraq-prod-dub.shahid.net/out/v1/c9bf1e87ea66478bb20bc5c93c9d41ea/index.m3u8 +#EXTINF:-1 tvg-id="MBCIraq.ae" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc-iraq-ae-iq.png" group-title="General",MBC Iraq (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149018_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCEgypt.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr.png" group-title="General",MBC Masr 1 (1080p) [Geo-blocked] +https://shls-masr-prod-dub.shahid.net/out/v1/b7093401da27496797a8949de23f4578/index.m3u8 +#EXTINF:-1 tvg-id="MBCMasr1USA.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr.png" group-title="General",MBC Masr 1 USA (1080p) +https://shls-mbc-masr-usa-prod.shahid.net/out/v1/d4fded7d5df04b88b9ea1db61d00f095/index.m3u8 +#EXTINF:-1 tvg-id="MBCMasr2.ae" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/mm/mbc_ae_masr_2.png" group-title="General",MBC Masr 2 (1080p) [Geo-blocked] +https://shls-masr2-prod-dub.shahid.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149015_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Not 24/7] +https://shls-mbcmax-prod-dub.shahid.net/out/v1/13815a7cda864c249a88c38e66a2e653/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (576p) [Timeout] +https://blogs.livehdchanel.live/max/index.m3u8 +#EXTINF:-1 tvg-id="MBCMax.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/X6EliFm.png" group-title="Movies",MBC Max (1080p) [Offline] +http://93.184.1.247/MBC_MAX/index.m3u8 +#EXTINF:-1 tvg-id="MBCPersia.ae" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8f/MBC_Persia_Logo.png" group-title="General",MBC Persia (1080p) +https://shls-mbcpersia-prod-dub.shahid.net/out/v1/bdc7cd0d990e4c54808632a52c396946/index.m3u8 +#EXTINF:-1 tvg-id="MBCDramaPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="Movies",MBC Plus Drama (1080p) +https://shls-mbcplusdrama-prod-dub.shahid.net/out/v1/97ca0ce6fc6142f4b14c0a694af59eab/index.m3u8 +#EXTINF:-1 tvg-id="MBCDramaPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/F5ER0we.png" group-title="Movies",MBC Plus Drama (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149016_0.m3u8?session= +#EXTINF:-1 tvg-id="MBCVarietyPlus.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KefqHnm.jpg" group-title="Movies",MBC Plus Variety (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149017_0.m3u8?session= +#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/baXbWro.jpg" group-title="Outdoor",National Geographic Abu Dhabi (1080p) +https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NoorDubai.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FP2yHkl.png" group-title="General",Noor Dubai (576p) +https://dmiffthvll.cdn.mangomolo.com/noordubaitv/smil:noordubaitv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PeaceTVAlbanian.ae" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/albanian.jpg" group-title="Religious",Peace TV Albanian (360p) +http://82.114.67.178:8081/hls/PeaceTV.m3u8 +#EXTINF:-1 tvg-id="PeaceTVBangla.ae" tvg-country="BD;IN" tvg-language="Bengali" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/bangla.jpg" group-title="Religious",Peace TV Bangla (720p) +http://199.223.252.162:8032/bangla_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVChinese.ae" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/chinese.jpg" group-title="Religious",Peace TV Chinese (720p) +http://199.223.252.162:8032/chinese_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVEnglish.ae" tvg-country="INT" tvg-language="English" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/english.jpg" group-title="Religious",Peace TV English (1080p) +http://199.223.252.162:8032/english_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTVUrdu.ae" tvg-country="PK;IN" tvg-language="Urdu" tvg-logo="https://github.com/fawazahmed0/tiger/raw/master/peace/urdu.jpg" group-title="Religious",Peace TV Urdu (1080p) +http://199.223.252.162:8032/urdu_adaptive/index.m3u8 +#EXTINF:-1 tvg-id="Sama Dubai" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/bF6I3N1.jpg" group-title="General",Sama Dubai (1080p) +https://dmieigthvll.cdn.mgmlcdn.com/samadubaiht/smil:samadubai.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Sharjah2.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ob1GhbC.jpg" group-title="Religious",Sharjah 2 (1080p) +https://svs.itworkscdn.net/smc2live/smc2tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SharjahRadioQuran.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="" group-title="Religious",Sharjah Radio Quran (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://youtube.com/channel/UCn8lMRYDANs_1yAL3iuw7_g/live +#EXTINF:-1 tvg-id="SharjahSportsTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/IaRaabJ.jpg" group-title="Sports",Sharjah Sports TV (1080p) +https://svs.itworkscdn.net/smc4sportslive/smc4.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SharjahTV.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FAp0RtO.png" group-title="Religious",Sharjah TV (1080p) +https://svs.itworkscdn.net/smc1live/smc1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TowheedTV.ae" tvg-country="AE;IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/nsxrqta.jpg" group-title="Religious",Towheed TV (720p) [Not 24/7] +http://51.210.199.1/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Wanasah.ae" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GmgibYW.jpg" group-title="Music",Wanasah (1080p) +https://shls-wanasah-prod-dub.shahid.net/out/v1/c84ef3128e564b74a6a796e8b6287de6/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakAction.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/207c8580-318d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Action (1080p) +https://weyyak-live.akamaized.net/weyyak_action/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakDrama.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/d995517f-bc87-ea11-831d-02d662556796/poster-image" group-title="Movies",Weyyak Drama (720p) +https://weyyak-live.akamaized.net/weyyak_drama/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakMix.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/bc777336-328d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Mix (1080p) +https://weyyak-live.akamaized.net/weyyak_mix/index.m3u8 +#EXTINF:-1 tvg-id="WeyyakNawaem.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/d867c2e9-328d-ea11-831d-02d662556796/poster-image" group-title="",Weyyak Nawaem (720p) +https://weyyak-live.akamaized.net/weyyak_nawaem/index.m3u8 +#EXTINF:-1 tvg-id="Yas.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ky1sNul.png" group-title="Sports",Yas (1080p) +https://admdn1.cdn.mangomolo.com/yastv/smil:yastv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAflam.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/5a7c9610-5562-407b-b711-f31ce6267786/poster-image" group-title="",Zee Aflam (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_zee_aflam/index.m3u8 +#EXTINF:-1 tvg-id="ZeeAlwan.ae" tvg-country="AE" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/25a860af-4bbc-4289-8e1f-b3bed0dcc64a/poster-image" group-title="",Zee Alwan (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_zee_alwan/index.m3u8 diff --git a/channels/af.m3u b/channels/af.m3u new file mode 100644 index 000000000..6c701dd3b --- /dev/null +++ b/channels/af.m3u @@ -0,0 +1,35 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArianaAfghanistanInternationalTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Ariana Afghanistan International TV (720p) [Not 24/7] +http://iptv.arianaafgtv.com/ariana/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVNational.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV National (720p) [Not 24/7] +https://d10rltuy0iweup.cloudfront.net/ATNNAT/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVUS.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV US (720p) [Not 24/7] +https://d2g7v53450s2i2.cloudfront.net/ATNUS/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ArianaTVUS.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/8VbuI9n.png" group-title="",Ariana TV US (Delayed stream) (720p) [Not 24/7] +https://d2g7v53450s2i2.cloudfront.net/ATNUS/streamdelay/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNNews.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/x8mlbJM.jpg" group-title="News",ATN News (360p) [Not 24/7] +https://d10rltuy0iweup.cloudfront.net/ATNNEWS/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaharTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Bahar TV (720p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/bahartv/bahartv/playlist.m3u8 +#EXTINF:-1 tvg-id="BaryaTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/yf5cI8r.jpg" group-title="",Barya TV (720p) [Not 24/7] +http://51.210.199.56/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HelalTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/mfTccwm.png" group-title="",Helal TV (720p) [Not 24/7] +http://51.210.199.54/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HewadTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/RkcUtMK.jpg" group-title="",Hewad TV (720p) [Not 24/7] +http://51.210.199.58/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ImanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Iman TV (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/imantv/imantv/playlist.m3u8 +#EXTINF:-1 tvg-id="KayhanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/XpR1VvZ.png" group-title="",Kayhan TV (720p) +https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="KayhanTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/XpR1VvZ.png" group-title="",Kayhan TV (720p) [Geo-blocked] +http://208.93.117.113/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="PamirTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="" group-title="",Pamir TV (1080p) [Not 24/7] +http://live.stream.cdn.pamirtv.com/ptv/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 +#EXTINF:-1 tvg-id="Sharq.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://ws.shoutcast.com/images/contacts/b/b9f8/b9f811c5-d210-4d0b-ae32-f467823a913e/radios/0d677ea5-46b4-4129-9359-9e5783fb6a37/0d677ea5-46b4-4129-9359-9e5783fb6a37.png" group-title="General",Sharq (576p) [Offline] +http://51.210.199.50/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SolhTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/bAbNyIt.jpg" group-title="",Solh TV (576p) [Not 24/7] +http://51.210.199.42/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ToloTV.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://pbs.twimg.com/profile_images/579001245697908737/bSnXEBFo_400x400.jpeg" group-title="",Tolo TV (720p) +https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolotv.m3u8 +#EXTINF:-1 tvg-id="Tuti.af" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/JerfIBt.jpg" group-title="",Tuti (480p) [Not 24/7] +https://rrsatrtmp.tulix.tv/livecdn827/myStream.sdp/playlist.m3u8 diff --git a/channels/ag.m3u b/channels/ag.m3u new file mode 100644 index 000000000..821237843 --- /dev/null +++ b/channels/ag.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABSTV.ag" tvg-country="AG" tvg-language="English" tvg-logo="" group-title="",ABS TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.twitch.tv/absliveantigua3/ diff --git a/channels/al.m3u~master b/channels/al.m3u~master new file mode 100644 index 000000000..161b5fed1 --- /dev/null +++ b/channels/al.m3u~master @@ -0,0 +1,263 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",7 HD (540p) [Not 24/7] +https://5d00db0e0fcd5.streamlock.net/7064/7064/playlist.m3u8 +#EXTINF:-1 tvg-id="21Mix.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Mix (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8756/playlist.m3u8 +#EXTINF:-1 tvg-id="21Plus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Plus (720p) [Not 24/7] +http://46.29.169.15:4001/play/a00b/index.m3u8 +#EXTINF:-1 tvg-id="21PopulloreHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 Popullore HD (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8749/playlist.m3u8 +#EXTINF:-1 tvg-id="21RTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 RTV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8748/playlist.m3u8 +#EXTINF:-1 tvg-id="21TVMacedonia.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",21 TV Macedonia (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8790/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",A TV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8709/playlist.m3u8 +#EXTINF:-1 tvg-id="ABCNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://abcnews.al/wp-content/uploads/2020/11/cropped-abclogo.png" group-title="News",ABC News (720p) [Not 24/7] +https://tv2.abcnews.al/live/abcnews/playlist.m3u8 +#EXTINF:-1 tvg-id="AdriaTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Adria TV (480p) [Offline] +https://tvlive.rtsh.dev/live/adriamed/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbaniaFolk.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Albania Folk (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8759/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbanianTVAmerica.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Albanian TV America (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8711/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbMusikHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",AlbMusik HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8821/playlist.m3u8 +#EXTINF:-1 tvg-id="AlbUKTV.uk" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/gRvEH4v.png" group-title="",AlbUK TV (1080p) [Not 24/7] +http://albuk.dyndns.tv:1935/albuk/albuk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ALPO.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/00hiXCL.png" group-title="",ALPO (720p) [Not 24/7] +https://5d00db0e0fcd5.streamlock.net/7236/7236/playlist.m3u8 +#EXTINF:-1 tvg-id="Alsat.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Alsat (1080p) [Not 24/7] +http://93.157.62.180/AlsatM/index.m3u8 +#EXTINF:-1 tvg-id="ARTAHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",ARTA HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8745/playlist.m3u8 +#EXTINF:-1 tvg-id="ATD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",ATD (1080p) +http://46.99.146.236/0.m3u8 +#EXTINF:-1 tvg-id="BabyTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",BabyTV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8747/playlist.m3u8 +#EXTINF:-1 tvg-id="BangBang.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TD4J83Q.png" group-title="Kids",Bang Bang (576p) [Not 24/7] +http://93.157.62.180/BangBang/index.m3u8 +#EXTINF:-1 tvg-id="BBFMusicTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",BBF Music TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8795/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel117.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Channel 117 (1080p) [Offline] +https://shkoder.gjirafa.com/api/media/rgjirafa/t0110y/index.m3u8 +#EXTINF:-1 tvg-id="Cufo.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/cjVAXnZ.png" group-title="Kids",Çufo (576p) +http://93.157.62.180/Cufo/index.m3u8 +#EXTINF:-1 tvg-id="DigitalbAktionHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Aktion HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8742/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbAutor.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Autor (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8753/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP1.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Big Brother VIP 1 (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8803/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbBigBrotherVIP2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Big Brother VIP 2 (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8804/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbDrame.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Dramë (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8727/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbDYHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb DY HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8731/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbEurofilm.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Eurofilm (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8758/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbFamilyHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Family HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8754/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8746/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHistori.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Histori (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8729/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbHitsHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Hits HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8755/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbKomedi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Komedi (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8752/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbNatyra.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Natyra (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8739/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbNjeHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Një HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8730/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbShkense.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Shkensë (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8726/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbStinet.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Stinët (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8751/playlist.m3u8 +#EXTINF:-1 tvg-id="DigitalbThriller.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Digitalb Thriller (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8757/playlist.m3u8 +#EXTINF:-1 tvg-id="Drame.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Drame (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8883/playlist.m3u8 +#EXTINF:-1 tvg-id="dTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",dTV HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8793/playlist.m3u8 +#EXTINF:-1 tvg-id="ElrodiTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Elrodi TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8718/playlist.m3u8 +#EXTINF:-1 tvg-id="FaxNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Fax News (360p) [Not 24/7] +http://edge01eu.ekranet.com/faxnews/index.m3u8 +#EXTINF:-1 tvg-id="FirstChannel.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",First Channel (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8717/playlist.m3u8 +#EXTINF:-1 tvg-id="FrameTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Frame TV (1080p) [Not 24/7] +http://195.154.252.221:8000/play/a002/index.m3u8 +#EXTINF:-1 tvg-id="KHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",K HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8710/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanali7.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://tv2go.t-2.net/static/media/img/channels/dark/ios/small/retina/145526.png" group-title="",Kanali 7 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8761/playlist.m3u8 +#EXTINF:-1 tvg-id="KLAN.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/pWoMc0r.png" group-title="",KLAN [Timeout] +http://79.106.73.244:4040/live/klanhdmob/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8704/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanMakedonia.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan Makedonia (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8789/playlist.m3u8 +#EXTINF:-1 tvg-id="KLANNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/NMtr8Z4.jpg" group-title="News",KLAN News [Offline] +http://51.195.88.12:4050/live/klannewsmobpp3/playlist.m3u8 +#EXTINF:-1 tvg-id="KlanPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Klan Plus (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8720/playlist.m3u8 +#EXTINF:-1 tvg-id="KLANPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/xg23eK4.jpg" group-title="News",KLAN Plus [Offline] +http://51.195.88.12:4050/live/klanplusmobpp3/playlist.m3u8 +#EXTINF:-1 tvg-id="Komedi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Komedi (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8881/playlist.m3u8 +#EXTINF:-1 tvg-id="Kosova.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Kosova (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8706/playlist.m3u8 +#EXTINF:-1 tvg-id="KTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",KTV HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8705/playlist.m3u8 +#EXTINF:-1 tvg-id="Max.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Max (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8882/playlist.m3u8 +#EXTINF:-1 tvg-id="MPT2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",MPT 2 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8728/playlist.m3u8 +#EXTINF:-1 tvg-id="Muse.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringMuse_logo.png" group-title="",Muse (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8778/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/PWGMnzW.jpg" group-title="News",News 24 (392p) [Not 24/7] +http://tv.balkanweb.com/news24/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="News24AL.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",News24 AL (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8724/playlist.m3u8 +#EXTINF:-1 tvg-id="Novela.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Novela (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8884/playlist.m3u8 +#EXTINF:-1 tvg-id="Opoja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Opoja (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8723/playlist.m3u8 +#EXTINF:-1 tvg-id="Oranews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Oranews (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8715/playlist.m3u8 +#EXTINF:-1 tvg-id="PeaceTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Peace TV (360p) +http://93.157.62.180/PeaceTV/index.m3u8 +#EXTINF:-1 tvg-id="PeaceTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Peace TV (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8792/playlist.m3u8 +#EXTINF:-1 tvg-id="PendimiTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Pendimi TV HD (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8786/playlist.m3u8 +#EXTINF:-1 tvg-id="QSportNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Q Sport News (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8785/playlist.m3u8 +#EXTINF:-1 tvg-id="ReportTVHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Report TV HD (1080p) [Not 24/7] +http://93.157.62.180/ReportTV/index.m3u8 +#EXTINF:-1 tvg-id="RitaTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Rita TV (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8890/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH1.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 1 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_11mob1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH1HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 1 HD (406p) +http://93.157.62.180/RTSH1/index.m3u8 +#EXTINF:-1 tvg-id="RTSH2.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/jEirJ9x.png" group-title="",RTSH 2 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_2ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH2HD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IVttVXp.png" group-title="",RTSH 2 HD (406p) +http://93.157.62.180/RTSH2/index.m3u8 +#EXTINF:-1 tvg-id="RTSH3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TNNYFYj.png" group-title="",RTSH 3 (576p) +http://93.157.62.180/RTSH3/index.m3u8 +#EXTINF:-1 tvg-id="RTSH3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/TNNYFYj.png" group-title="",RTSH 3 (406p) +https://tvlive.rtsh.dev/live/rtsh3ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSH24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLlUkn8.png" group-title="",RTSH 24 (406p) +http://93.157.62.180/RTSH24/index.m3u8 +#EXTINF:-1 tvg-id="RTSH24.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLlUkn8.png" group-title="",RTSH 24 (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_24_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHAgro.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/Vh5MgY8.png" group-title="",RTSH Agro (560p) +https://tvlive.rtsh.dev/live/rtsh_agro_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHAgro.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/Vh5MgY8.png" group-title="",RTSH Agro (560p) [Not 24/7] +http://93.157.62.180/RTSHAgro/index.m3u8 +#EXTINF:-1 tvg-id="RTSHFemije.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/K7uClaf.png" group-title="",RTSH Femijë (576p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_femije_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHFilm.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/CB2zett.png" group-title="",RTSH Film (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_film_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHGjirokastra.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/lXq6WsR.png" group-title="",RTSH Gjirokastra (560p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_gjirokastra_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKorca.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RtJnrvm.jpg" group-title="",RTSH Korça (560p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_korca_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKukesi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/gNhoDAX.png" group-title="",RTSH Kukësi (560p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_kukesi_ott_p2/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHKuvend.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/k83keY8.png" group-title="",RTSH Kuvend (560p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_kuvendi_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHMuzike.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/AXXlIgR.png" group-title="",RTSH Muzike (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_muzike_mob/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UiDzIUN.png" group-title="",RTSH Plus (560p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_plus_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHSatelit.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTSH Satelit (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8701/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHShkolle.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/e8KhDGp.png" group-title="",RTSH Shkollë (360p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_shkolle_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHShqip.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/IBpZiuO.png" group-title="",RTSH Shqip (406p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_shqip_ott/playlist.m3u8 +#EXTINF:-1 tvg-id="RTSHSport.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/rCTH2iP.png" group-title="",RTSH Sport (720p) [Not 24/7] +https://tvlive.rtsh.dev/live/rtsh_sport_ott11/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDukagjini.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Dukagjini (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8788/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVFontana.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Fontana (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8852/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVIlirida.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV Ilirida (360p) [Not 24/7] +https://5a1178b42cc03.streamlock.net/rtvilirida/rtvilirida/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVSCAN.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTV SCAN (480p) [Not 24/7] +http://edge01eu.ekranet.com/scantv/index.m3u8 +#EXTINF:-1 tvg-id="RTVislam.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",RTVislam (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8714/playlist.m3u8 +#EXTINF:-1 tvg-id="Shenja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Shenja (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8850/playlist.m3u8 +#EXTINF:-1 tvg-id="Shqiponja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Shqiponja (720p) [Not 24/7] +http://ott.iptvshqipott.com:8080/live/shqiponja/tv/236.m3u8 +#EXTINF:-1 tvg-id="SofiaHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Sofia HD (1080p) [Not 24/7] +http://93.157.62.180/Sofia/index.m3u8 +#EXTINF:-1 tvg-id="StarHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Star HD (1080p) [Geo-blocked] +http://us.bestvideostreaming.is/8781/playlist.m3u8 +#EXTINF:-1 tvg-id="SyriHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Syri HD (720p) [Not 24/7] +http://93.157.62.180/SyriTV/index.m3u8 +#EXTINF:-1 tvg-id="SyriTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="http://www.albepg.com/tvlogi/Syri%20Blue.png" group-title="",Syri TV (720p) [Not 24/7] +http://live.syri.tv:6969/live/syriblue/hd/23.ts +#EXTINF:-1 tvg-id="SyriTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="http://www.albepg.com/tvlogi/Syri%20Blue.png" group-title="",Syri TV (720p) [Not 24/7] +rtmp://live.syri.tv:8001/input/bluehd +#EXTINF:-1 tvg-id="TipTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TipTV.png" group-title="",Tip TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8776/playlist.m3u8 +#EXTINF:-1 tvg-id="TopChannel.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/top-channel-logo.png" group-title="",Top Channel (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8708/playlist.m3u8 +#EXTINF:-1 tvg-id="TopNews.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Top News (720p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x6inuzo +#EXTINF:-1 tvg-id="Tring3.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring 3 (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8773/playlist.m3u8 +#EXTINF:-1 tvg-id="TringActionHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Action HD (1080p) [Not 24/7] +http://93.157.62.180/TringAction/index.m3u8 +#EXTINF:-1 tvg-id="TringComedy.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringComedy.png" group-title="",Tring Comedy (576p) [Geo-blocked] +http://93.157.62.180/TringComedy/index.m3u8 +#EXTINF:-1 tvg-id="TringFantasy.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://prd-static-mkt.spectar.tv/rev-1636968170/image_transform.php/transform/1/instance_id/1/video_id/126" group-title="",Tring Fantasy (576p) [Geo-blocked] +http://93.157.62.180/TringFantasy/index.m3u8 +#EXTINF:-1 tvg-id="TringHistory.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringHistory.png" group-title="",Tring History (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8765/playlist.m3u8 +#EXTINF:-1 tvg-id="TringJollyHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Jolly HD (1080p) [Not 24/7] +http://93.157.62.180/JollyHD/index.m3u8 +#EXTINF:-1 tvg-id="TringKids.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringKids_logo.png" group-title="",Tring Kids (576p) [Not 24/7] +http://93.157.62.180/TringKids/index.m3u8 +#EXTINF:-1 tvg-id="TringLife.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Life (576p) +http://93.157.62.180/TringLife/index.m3u8 +#EXTINF:-1 tvg-id="TringPlanet.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringPlanet.png" group-title="",Tring Planet (576p) +http://93.157.62.180/TringPlanet/index.m3u8 +#EXTINF:-1 tvg-id="TringShqip.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringShqip.png" group-title="",Tring Shqip (576p) [Not 24/7] +http://93.157.62.180/TringShqip/index.m3u8 +#EXTINF:-1 tvg-id="TringSmile.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Smile (576p) +http://93.157.62.180/TringSmile/index.m3u8 +#EXTINF:-1 tvg-id="TringSuperHD.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring Super HD (1080p) [Not 24/7] +http://93.157.62.180/TringSuper/index.m3u8 +#EXTINF:-1 tvg-id="TringTring.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/TringTringTv.png" group-title="",Tring Tring (576p) [Not 24/7] +http://93.157.62.180/TringTring/index.m3u8 +#EXTINF:-1 tvg-id="TringWorld.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Tring World (576p) +http://93.157.62.180/TringWorld/index.m3u8 +#EXTINF:-1 tvg-id="TurboTV.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",Turbo TV (576p) [Geo-blocked] +http://us.bestvideostreaming.is/8839/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Albania.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/k9WqPLZ.png" group-title="",TV 7 Albania (540p) [Not 24/7] +http://media.az-mediaserver.com:1935/7064/7064/playlist.m3u8 +#EXTINF:-1 tvg-id="TVApollon.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Apollon (720p) +https://live.apollon.tv/Apollon-WEB/video.m3u8?token=tnt3u76re30d2 +#EXTINF:-1 tvg-id="TVDielli.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Dielli (720p) +http://93.157.62.180/DielliTV/index.m3u8 +#EXTINF:-1 tvg-id="TVKoha.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/AJ472ot.png" group-title="",TV Koha (720p) [Offline] +rtmp://live.tvkoha.tv/live/koha +#EXTINF:-1 tvg-id="TVLlapi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Llapi (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8823/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOpoja.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/De7sZf6.jpg" group-title="",TV Opoja (720p) [Not 24/7] +http://ip.opoja.tv:1935/tvopoja/tvopoja/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPlisi.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",TV Plisi (720p) [Geo-blocked] +http://us.bestvideostreaming.is/8735/playlist.m3u8 +#EXTINF:-1 tvg-id="VPlus.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="" group-title="",V Plus (720p) [Not 24/7] +http://93.157.62.180/VizionPlus/index.m3u8 +#EXTINF:-1 tvg-id="ZjarrTelevizion.al" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UValLp1.png" group-title="",Zjarr Televizion (360p) [Not 24/7] +http://edge01eu.ekranet.com/zjarrtv/index.m3u8 diff --git a/channels/am.m3u~master b/channels/am.m3u~master new file mode 100644 index 000000000..3aa97ded1 --- /dev/null +++ b/channels/am.m3u~master @@ -0,0 +1,73 @@ +#EXTM3U +#EXTINF:-1 tvg-id="5TV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/yigw9dr.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",5-րդ ալիք (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s6/index.m3u8 +#EXTINF:-1 tvg-id="21TV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/21_TV_Armenia_logo.svg/785px-21_TV_Armenia_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",21TV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s10/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaPremium.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/IxOFvqz.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Premium (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s83/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaHayKino.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/XwbLfqd.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Հայ Կինո (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s22/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaJanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/AhX46e5.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Armenia Ջան TV (480p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s42/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaSinemaks.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/fRfGuQg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Armenia Սինեմաքս (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s66/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaTownTownik.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/XjhkUXy.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Kids",Armenia Տուն Թունիկ (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s46/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaKomedi.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/pvF7dGN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Comedy",Armenia Քոմեդի (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s32/index.m3u8 +#EXTINF:-1 tvg-id="ATV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/9/9c/Atvnew.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",ATV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s8/index.m3u8 +#EXTINF:-1 tvg-id="ATVTavaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/cndJCRU.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",ATV Թավա TV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s53/index.m3u8 +#EXTINF:-1 tvg-id="ATVKhaghaliqTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/mrfm9uY.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Kids",ATV ԽաղԱլիք (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s74/index.m3u8 +#EXTINF:-1 tvg-id="ATVKinoman.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/lidNHkH.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",ATV Կինոման (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s94/index.m3u8 +#EXTINF:-1 tvg-id="ATVHayTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/KCkzU5R.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",ATV Հայ TV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s73/index.m3u8 +#EXTINF:-1 tvg-id="ATVFilmzone.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/uWBrDpV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",ATV Ֆիլմզոն (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s48/index.m3u8 +#EXTINF:-1 tvg-id="H1.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Armenian_Public_TV_logo.svg/507px-Armenian_Public_TV_logo.svg.png" group-title="General",Առաջին ալիք (1080p) +http://serv24.vintera.tv:8081/test/h1_arm/index.m3u8 +#EXTINF:-1 tvg-id="H1.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Armenian_Public_TV_logo.svg/507px-Armenian_Public_TV_logo.svg.png" group-title="General",Առաջին ալիք (1080p) +https://amtv1.livestreamingcdn.com/am2abr/index.m3u8 +#EXTINF:-1 tvg-id="ArmeniaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/fnoOw8T.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Արմենիա TV (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s4/index.m3u8 +#EXTINF:-1 tvg-id="ArmNews.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/0vrFGY5.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Արմնյուզ (1080p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s11/index.m3u8 +#EXTINF:-1 tvg-id="YerkirMediaTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/FKpxkVH.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Երկիր Մեդիա (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s7/index.m3u8 +#EXTINF:-1 tvg-id="KentronTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/g7pEQG6.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Կենտրոն (234p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s5/index.m3u8 +#EXTINF:-1 tvg-id="H2.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Armenian_Second_TV_Channel_logo.svg/800px-Armenian_Second_TV_Channel_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Հ2 (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s2/index.m3u8 +#EXTINF:-1 tvg-id="NorHayastanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EmOsMTC.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Նոր Հայաստան (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s12/index.m3u8 +#EXTINF:-1 tvg-id="NorHayastanTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EmOsMTC.png" group-title="General",Նոր Հայաստան (720p) [Offline] +https://cdn.onarmtv.com/str/7/output.m3u8 +#EXTINF:-1 tvg-id="ShantTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/EbqVba3.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Շանթ (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s3/index.m3u8 +#EXTINF:-1 tvg-id="ShoghakatTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/e4VxCnn.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Religious",Շողակաթ (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s13/index.m3u8 diff --git a/channels/ao.m3u b/channels/ao.m3u new file mode 100644 index 000000000..731119cc7 --- /dev/null +++ b/channels/ao.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TPA1.ao" tvg-country="AO" tvg-language="Portuguese" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5762b5256aff3.png" group-title="General",TPA 1 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/angola/tpa1 +#EXTINF:-1 tvg-id="TVZimbo.ao" tvg-country="AO" tvg-language="Portuguese" tvg-logo="https://www.tvzimbo.ao/temas/tvzimbo/assets/img/logo-programacao.png" group-title="General",TV Zimbo (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/angola/tv-zimbo diff --git a/channels/ar.m3u~master b/channels/ar.m3u~master new file mode 100644 index 000000000..0704d5aa3 --- /dev/null +++ b/channels/ar.m3u~master @@ -0,0 +1,176 @@ +#EXTM3U +#EXTINF:-1 tvg-id="5RTv.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wCQJuaU.jpg" group-title="",5RTv (720p) [Not 24/7] +https://api.new.livestream.com/accounts/22636012/events/8242619/live.m3u8 +#EXTINF:-1 tvg-id="5TV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kujnLsO.png" group-title="",5TV (Corrientes) (480p) [Not 24/7] +http://www.coninfo.net:1935/tvcinco/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="247CanaldeNoticias.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6miysb8.png" group-title="News",24/7 Canal de Noticias (720p) +https://59c5c86e10038.streamlock.net/6605140/6605140/playlist.m3u8 +#EXTINF:-1 tvg-id="247CanaldeNoticias.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6miysb8.png" group-title="News",24/7 Canal de Noticias (720p) +https://panel.dattalive.com/6605140/6605140/playlist.m3u8 +#EXTINF:-1 tvg-id="A24.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_america-24_m.png" user-agent="iPhone" group-title="News",A24 (540p) +#EXTVLCOPT:http-user-agent=iPhone +https://g1.vxral-hor.transport.edge-access.net/a15/ngrp:a24-100056_all/a24-100056.m3u8 +#EXTINF:-1 tvg-id="AmericaSports.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AmericaSports/picture?width=320&height=320" group-title="Sports",América Sports (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnx743KuO_16sCMIbEg7Y7Q/live +#EXTINF:-1 tvg-id="AmericaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_america-2-capital_m.png" user-agent="iPhone" group-title="General",América TV (720p) +#EXTVLCOPT:http-user-agent=iPhone +https://raw.githubusercontent.com/MachineSystems/archived_m3u8/main/america_hls.m3u8 +#EXTINF:-1 tvg-id="ArgentinisimaSatelital.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Jo7p7yZ.png" group-title="",Argentinísima Satelital (720p) +http://186.0.233.76:1935/Argentinisima/smil:argentinisima.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 2 Jujuy (720p) [Not 24/7] +http://api.new.livestream.com/accounts/679322/events/3782013/live.m3u8 +#EXTINF:-1 tvg-id="Canal3Pinamar.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 3 Pinamar (360p) [Not 24/7] +http://www.intelintec.com.ar:9090/hls/canal3pinamar.m3u8 +#EXTINF:-1 tvg-id="Canal3Rosario.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 3 Rosario (704p) [Geo-blocked] +https://59d52c5a5ce5e.streamlock.net:4443/canal3rosario/ngrp:canal3rosario_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 (Posadas) (360p) [Geo-blocked] +http://184.154.28.210:1935/canal4/canal4/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Balcarce.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://canal4teleba.com.ar/wp-content/uploads/2016/12/teleba-youtube.jpg" group-title="",Canal 4 Balcarce (480p) [Not 24/7] +http://inliveserver.com:1935/8550/8550/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcT1gHj_nLWhaGNfk5gYfEoENvdvYEEnrlFWCQ&usqp=CAU" group-title="",Canal 4 Jujuy (720p) +http://190.52.32.13:1935/canal4/smil:manifest.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Jujuy.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.pixabay.com/photo/2017/05/07/14/59/flag-2292664_960_720.png" group-title="",Canal 4 Jujuy (720p) +https://5cd577a3dd8ec.streamlock.net/canal4/smil:manifest.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Posadas.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fgrauI0.png" group-title="",Canal 4 Posadas (360p) [Geo-blocked] +http://184.154.28.210:1935/canal4/canal4/live.m3u8 +#EXTINF:-1 tvg-id="C5N.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_c5n_m.png" group-title="News",Canal 5 Noticias (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/c5n/live +#EXTINF:-1 tvg-id="Canal7SALTA.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3v0JfX-x7l_CBLGgk-PyioJ4pEOIlRkwaOA&usqp=CAU" group-title="",Canal 7 SALTA (404p) [Geo-blocked] +https://589ff3c36f7e8.streamlock.net/crespo3/crespo3/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9ComodoroRivadavia.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.pixabay.com/photo/2017/05/07/14/59/flag-2292664_960_720.png" group-title="",Canal 9 (Comodoro Rivadavia) (576p) [Not 24/7] +https://live.canalnueve.tv/canal.m3u8 +#EXTINF:-1 tvg-id="Canal9Televida.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIgMORTmDFYoZ568zWDgjQ-hkmEHYDVGTFCw&usqp=CAU" group-title="",Canal 9 Televida (720p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/viviloendirecto2/canal9/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10MardelPlata.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/4e/Canal_10_Mar_del_Plata_%28Logo_2010%29.png" group-title="",Canal 10 Mar del Plata (720p) [Not 24/7] +https://cdn2.zencast.tv:30443/live/canal10smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10RioNegro.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PE2Gi3N.png" group-title="Local",Canal 10 Rio Negro (720p) [Not 24/7] +http://panel.dattalive.com:1935/8204/8204/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11LaRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://www.fenix951.com.ar/nuevo_2013/a2017/assets/imgapp/logocanal.jpeg" group-title="",Canal 11 La Rioja (Fénix Multiplataforma) (360p) +http://stmv4.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12PuertoMadryn.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 12 Puerto Madryn (720p) [Not 24/7] +https://5f700d5b2c46f.streamlock.net/madryntv/madryntv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13LaRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2017/10/13rioja.png" group-title="",Canal 13 La Rioja (480p) +http://arcast.net:1935/mp/mp/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (720p) +http://200.115.193.177/live/26hd-720/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (720p) +http://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR;HISPAM" tvg-language="Spanish" tvg-logo="http://1.bp.blogspot.com/-oaM5k7pbu3A/ULKcb6odA1I/AAAAAAAAXko/nmQ_WMr0c4k/s1600/canal26hd.png" group-title="News",Canal 26 (720p) +http://live-edge02.telecentro.net.ar/live/c26.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalC.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal C (Córdoba | Provincia de Córdoba) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canalccordoba +#EXTINF:-1 tvg-id="CanaldelaCiudad.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_ciudad-abierta_m.png" user-agent="iPhone" group-title="",Canal de la Ciudad (720p) [Offline] +#EXTVLCOPT:http-user-agent=iPhone +https://g5.proy-hor.transport.edge-access.net/a08/ngrp:gcba_video4-100042_all/Playlist.m3u8?sense=true +#EXTINF:-1 tvg-id="CanalLuz.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" user-agent="iPhone" group-title="",Canal Luz (1080p) +#EXTVLCOPT:http-user-agent=iPhone +https://g2.vxral-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8 +#EXTINF:-1 tvg-id="CanalMilenium.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/08/canal-milenium-salta-90x67.jpg" group-title="",Canal Milenium [Offline] +https://panel.tuvideostreaming.com:19360/8002/8002.m3u8 +#EXTINF:-1 tvg-id="CanalProvincial.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal Provincial (San Miguel) (360p) [Not 24/7] +http://www.trimi.com.ar/provincial/streaming/mystream.m3u8 +#EXTINF:-1 tvg-id="CANALTDC.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2018/02/TDC-TV-Santa-F%C3%A9-en-vivo-Online.png" group-title="",CANAL TDC (1080p) [Not 24/7] +https://5e7cdf2370883.streamlock.net/tdconline/tdconline/playlist.m3u8 +#EXTINF:-1 tvg-id="CANAL9MULTIVISION.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSg84RxHjkboUjpSwVwVYl7oviFLwGDJs-4UCKzP-JMCdIE4MOb&s" group-title="",CANAL.9 MULTIVISION (720p) [Not 24/7] +https://panel.dattalive.com/8250/8250/playlist.m3u8 +#EXTINF:-1 tvg-id="canalLUZ.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.canalluz.org/assets/images/logo-2020-250x79.png" user-agent="Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36" group-title="Religious",canalLUZ (1080p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 +https://g1.mc-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8?sense=true +#EXTINF:-1 tvg-id="CatacamaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Catacama TV (1080p) +https://5f700d5b2c46f.streamlock.net/catamarcatelevision/catamarcatelevision/playlist.m3u8 +#EXTINF:-1 tvg-id="ChacoTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/JbxMs5i.png" group-title="Local",Chaco TV (720p) [Not 24/7] +https://5b7ecefab6325.streamlock.net/Streamtv/chacotv/playlist.m3u8 +#EXTINF:-1 tvg-id="ChacraTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mZlUGBf.jpg" group-title="",Chacra TV (480p) [Not 24/7] +https://s8.stweb.tv/chacra/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CincoTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.pinimg.com/originals/2d/18/54/2d185451c3cc188c39add960b94c6844.png" group-title="",Cinco TV (480p) [Not 24/7] +https://59537faa0729a.streamlock.net/cincotv/cincotv/playlist.m3u8 +#EXTINF:-1 tvg-id="CINEAR.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.totalmedios.com/img/noticias/2018/04/5ae3127f4ef2e__838x390.jpg" group-title="",CINE.AR (720p) [Not 24/7] +https://5fb24b460df87.streamlock.net/live-cont.ar/cinear/playlist.m3u8 +#EXTINF:-1 tvg-id="CiudadTVResistencia.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WxzqqFQ.jpg" group-title="Local",Ciudad TV Resistencia (Chaco) (720p) [Not 24/7] +http://coninfo.net:1935/chacodxdtv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CN3Pinamar.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",CN3 Pinamar (720p) [Not 24/7] +https://wowza.telpin.com.ar:1935/canal3/canal3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CPEtv.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/75UgF.png" group-title="",CPEtv (720p) [Offline] +https://dcunilive28-lh.akamaihd.net/i/dclive_1@533583/master.m3u8 +#EXTINF:-1 tvg-id="CrossingTVCrossingContenidos.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Crossing TV (Crossing Contenidos) (720p) [Not 24/7] +https://vivo.solumedia.com:19360/crossing/crossing.m3u8 +#EXTINF:-1 tvg-id="DeporTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_dxtv_m.png" group-title="Sports",DeporTV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSmh3DFxBwFurMttT60PQ1g/live +#EXTINF:-1 tvg-id="ElDoceTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",El Doce TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?feature=emb_title&streaming-ip=https://www.youtube.com/watch?v=gBbMbqILzXU +#EXTINF:-1 tvg-id="ElGarageTV.ar" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/cd0hP5e.png" group-title="Auto",El Garage TV (480p) [Not 24/7] +http://186.0.233.76:1935/Garage/smil:garage.smil/master.m3u8 +#EXTINF:-1 tvg-id="ElOnce.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",ElOnce (1080p) [Not 24/7] +https://elonceovh.elonce.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="Encuentro.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_encuentro_m.png" group-title="General",Encuentro (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC1zLDoKL-eKmd_K7qkUZ-ow/live +#EXTINF:-1 tvg-id="FenixTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Op0zdh5.jpg" group-title="Local",Fenix TV (Ciudad de La Rioja) (360p) +https://stmv1.questreaming.com/fenixlarioja/fenixlarioja/playlist.m3u8 +#EXTINF:-1 tvg-id="GenTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",GenTV (720p) [Not 24/7] +https://videohd.live:19360/8010/8010.m3u8 +#EXTINF:-1 tvg-id="InformacionPeriodística.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="News",Informacion Periodística (1080p) +https://d1nmqgphjn0y4.cloudfront.net/live/ip/live.isml/5ee6e167-1167-4a85-9d8d-e08a3f55cff3.m3u8 +#EXTINF:-1 tvg-id="LaVozDeTucuman.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://lavozdetucuman.com/wp-content/uploads/2021/11/LOGOTRANSPARENTE2-1-600x187.png" group-title="",La Voz de Tucuman (720p) +https://srv1.zcast.com.br/lavozdetucuman/lavozdetucuman/playlist.m3u8 +#EXTINF:-1 tvg-id="LivePeruTVStreaming.ar" tvg-country="AR;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/liveperutv/picture?width=320&height=320" group-title="General",Live Perú TV Streaming (720p) [Not 24/7] +http://209.126.108.55/app/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MagicKids.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="",Magic Kids (720p) [Not 24/7] +https://live.admefy.com/live/default/rival_maroon_4fb1e.m3u8 +#EXTINF:-1 tvg-id="MediosRioja.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Medios Rioja (864p) [Not 24/7] +http://streamyes.alsolnet.com/mediosrioja/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MultivisionFederal.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sZ1yE4e.png" group-title="",Multivisión Federal (720p) [Not 24/7] +http://panel.dattalive.com:1935/8250/8250/playlist.m3u8 +#EXTINF:-1 tvg-id="MusicTop.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_musictop_m.png" group-title="Music",MusicTop (720p) +http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/J7stpmb.png" group-title="",Net TV (720p) +https://unlimited6-cl.dps.live/nettv/nettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/J7stpmb.png" group-title="",Net TV (720p) [Not 24/7] +https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Pakapaka.ar" tvg-country="AR;PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AKedOLQbue1WVK5s0ne8sFBVwxf6u7-TbKAdPjK-YCHI8g=s400-c-k-c0x00ffffff-no-rj" group-title="Kids",Pakapaka (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCVVNYxncuD4EfHpKDlPIYcQ/live +#EXTINF:-1 tvg-id="PlanetaMultimedios.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Music",Planeta Multimedios (720p) [Not 24/7] +https://videostream.shockmedia.com.ar:19360/planetamultimedia/planetamultimedia.m3u8 +#EXTINF:-1 tvg-id="PowerTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Power TV (720p) [Not 24/7] +https://wowza.telpin.com.ar:1935/live-powerTV/power.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QuatroTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Quatro TV (540p) [Not 24/7] +https://59d52c5a5ce5e.streamlock.net:4443/quatro/quatro/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVNeuquen.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://www.televisiongratis.tv/components/com_televisiongratis/images/rtn-neuqun-1517.jpg" group-title="",Radio TV Neuquen (720p) [Not 24/7] +http://media.neuquen.gov.ar/rtn/television/playlist.m3u8 +#EXTINF:-1 tvg-id="RTN.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/daMqavf.jpg" group-title="",RTN (Neuquén) (720p) [Not 24/7] +http://media.neuquen.gov.ar/rtn/television/media.m3u8 +#EXTINF:-1 tvg-id="SantaMariaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Santa María TV (360p) [Not 24/7] +http://www.trimi.com.ar/santa_maria/streaming/mystream.m3u8 +#EXTINF:-1 tvg-id="T5Satelital.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Eu7rHtj.jpg" group-title="",T5 Satelital (540p) [Not 24/7] +https://api.new.livestream.com/accounts/20819504/events/8664197/live.m3u8 +#EXTINF:-1 tvg-id="Telefe.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",Telefe (480p) [Not 24/7] +http://170.83.242.153:8000/play/a00b +#EXTINF:-1 tvg-id="TelefeRosario.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_telefe-rosario_m.png" group-title="Local",Telefe Rosario (720p) [Not 24/7] +http://telefewhitehls-lh.akamaihd.net/i/whitelist_hls@302302/master.m3u8 +#EXTINF:-1 tvg-id="TeleJunin.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",TeleJunín (576p) [Not 24/7] +https://videostream.shockmedia.com.ar:1936/telejunin/telejunin/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemax.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1XgRcmd.png" group-title="",Telemax (720p) +http://live-edge01.telecentro.net.ar/live/smil:tlx.smil/master.m3u8 +#EXTINF:-1 tvg-id="TelenordCorrientes.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/byxXHzq.png" group-title="Local",Telenord Corrientes (1080p) [Not 24/7] +http://www.coninfo.net:1935/previsoratv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TelesolTLS.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://telesol.tv/wp-content/uploads/2020/06/LOGO-FINAL-TELESOL-2020.png" group-title="",Telesol (TLS) (432p) [Not 24/7] +https://cnnsanjuan.com:9999/live/telesol/playlist.m3u8 +#EXTINF:-1 tvg-id="TelpinCanal2.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/B2lKSvo.png" group-title="",Telpin Canal 2 (720p) [Not 24/7] +https://wowza.telpin.com.ar:1935/telpintv/smil:ttv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelpinTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="",Telpin TV (1080p) [Not 24/7] +https://wowza.telpin.com.ar:1935/telpintv/ttv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TierraMiaTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2018_09/small.Logo_TierramiaTV.png.52a0b19eb1a7425c43898d0766558d1a.png" group-title="",Tierra Mía TV (720p) +http://live-edge01.telecentro.net.ar/live/smil:trm.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Toonizaki.ar" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/toonizaki/picture?width=300&height=300" group-title="Animation",Toonizaki (720p) [Not 24/7] +https://live.admefy.com/live/default/great_salmon_9bd9d.m3u8 +#EXTINF:-1 tvg-id="TVManaArgentina.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GVI8kkp.jpg" group-title="Local",TV Maná Argentina (576p) [Not 24/7] +http://streamspub.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPublica.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/0a/Logo_Televisi%C3%B3n_P%C3%BAblica_Argentina.png" group-title="General",TV Pública (TVP) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/TVPublicaArgentina/live +#EXTINF:-1 tvg-id="TVUniversidad.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/960549144657002496/9Rdtd6Ke_400x400.jpg" group-title="Education",TVU Universidad Nacional de La Plata (720p) [Not 24/7] +https://stratus.stream.cespi.unlp.edu.ar/hls/tvunlp.m3u8 +#EXTINF:-1 tvg-id="Venus.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="XXX",Venus (480p) [Offline] +http://170.83.242.153:8000/play/a00z +#EXTINF:-1 tvg-id="VTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vertvgs/picture?width=320&height=320" group-title="",VerTV (VTV) (720p) [Not 24/7] +https://5f700d5b2c46f.streamlock.net/vertv/vertv/playlist.m3u8 +#EXTINF:-1 tvg-id="Vorterix.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vorterix/picture?width=320&height=320" group-title="Entertainment",Vorterix (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvCTWHCbBC0b9UIeLeNs8ug/live diff --git a/channels/at.m3u~master b/channels/at.m3u~master new file mode 100644 index 000000000..58531b431 --- /dev/null +++ b/channels/at.m3u~master @@ -0,0 +1,61 @@ +#EXTM3U +#EXTINF:-1 tvg-id="antennevorarlberg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/cnMTcPw.png" group-title="Music",Antenne Vorarlberg (720p) [Not 24/7] +https://5857db5306b83.streamlock.net/antennevorarlberg-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="DorfTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/SK9IQ1Z.png" group-title="",Dorf TV (576p) +https://stream.openplayout.org/hls/dorftv/live.m3u8 +#EXTINF:-1 tvg-id="FS1Salzburg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/HSRpYUl.jpg" group-title="",FS1 Salzburg (720p) [Not 24/7] +http://stream.fs1.tv:8080/hls/webstream.m3u8 +#EXTINF:-1 tvg-id="FS1Salzburg.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/HSRpYUl.jpg" group-title="",FS1 Salzburg (720p) [Not 24/7] +https://stream.fs1.tv/hls/webstream.m3u8 +#EXTINF:-1 tvg-id="GoTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/UxISEZf.png" group-title="",GoTV (576p) [Timeout] +https://nstream17.gotv.at:1443/live/gotvlive/manifest.mpd +#EXTINF:-1 tvg-id="HitradioO3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/pb4Iqno.png" group-title="",Hitradio Ö3 (720p) [Not 24/7] +https://studiocam-oe3.mdn.ors.at/out/u/studiocam_oe3/q6a/manifest_1.m3u8 +#EXTINF:-1 tvg-id="HitradioO3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/pb4Iqno.png" group-title="",Hitradio Ö3 (360p) [Offline] +http://185.85.28.19/oe3sd/orf.sdp/master.m3u8 +#EXTINF:-1 tvg-id="KTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/OyOPRtq.png" group-title="",K-TV (720p) +https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 +#EXTINF:-1 tvg-id="KroneTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/kronetv.png" group-title="",Krone.TV (360p) +https://kronetv.mdn.ors.at/out/u/kronetv-nodrm.m3u8 +#EXTINF:-1 tvg-id="Kronehit.at" tvg-country="AT" tvg-language="German" tvg-logo="" group-title="Music",Kronehit (1080p) +https://bitcdn-kronehit.bitmovin.com/v2/hls/playlist.m3u8 +#EXTINF:-1 tvg-id="M4.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/xmfgBrg.png" group-title="",M4 (1090p) [Not 24/7] +https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="oe24TV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oe24tv.png" group-title="",oe24 TV (1080p) +https://varoe24live.sf.apa.at/oe24-live1/oe24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OktoEight.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/Z9LgT0v.jpg" group-title="",Okto Eight (720p) [Offline] +https://d38d1dtxhym0zi.cloudfront.net/LiveHTTPOrigin/okto/playlist.m3u8 +#EXTINF:-1 tvg-id="OktoTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Okto.svg/150px-Okto.svg.png" group-title="",Okto TV [Offline] +https://d2i6psfxyapxwi.cloudfront.net/out/v1/f0cc8e3aceb64ad8968231dc5a0041d4/index.m3u8 +#EXTINF:-1 tvg-id="ORF1.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/ORF1_logo.svg/1280px-ORF1_logo.svg.png" group-title="General",ORF 1 (720p) [Geo-blocked] +https://orf1.mdn.ors.at/out/u/orf1/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORF2.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/ORF2_logo_n.svg/1280px-ORF2_logo_n.svg.png" group-title="",ORF 2 (540p) [Geo-blocked] +https://orf2.mdn.ors.at/out/u/orf2/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORF3.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/40/ORF_III_Logo.png" group-title="",ORF 3 (720p) [Geo-blocked] +https://orf3.mdn.ors.at/out/u/orf3/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="ORFSportPlus.at" tvg-country="AT" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/ORF_Sport%2B.svg/1200px-ORF_Sport%2B.svg.png" group-title="Sports",ORF Sport+ (540p) [Geo-blocked] +https://orfs.mdn.ors.at/out/u/orfs/qxb/manifest.m3u8 +#EXTINF:-1 tvg-id="P3tv.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/C6Hp5Pb.jpg" group-title="",P3tv (720p) [Not 24/7] +http://p3-6.mov.at:1935/live/weekstream/master.m3u8 +#EXTINF:-1 tvg-id="PremiumChannel.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/XLeth50.jpg" group-title="",Premium Channel [Not 24/7] +http://premium-channel.tv:88/live/kali.m3u8 +#EXTINF:-1 tvg-id="R9.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/Wu6SMvb.png" group-title="",R9 (720p) [Not 24/7] +https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RedBullTV.at" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/7NeBmWX.jpg" group-title="Sports",Red Bull TV (1080p) +https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8 +#EXTINF:-1 tvg-id="RTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rtvat.png" group-title="",RTV (1080p) +http://iptv.rtv-ooe.at/stream.m3u8 +#EXTINF:-1 tvg-id="SchauTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://image.schautv.at/images/cfs_616w/3123676/schautv_homepagebanner_twitter.png" group-title="",SchauTV (720p) +https://schautv.mdn.ors.at/out/u/schautv-nodrm.m3u8 +#EXTINF:-1 tvg-id="SwamijiTV.at" tvg-country="AT" tvg-language="English" tvg-logo="https://i.imgur.com/ygkBFYT.jpg" group-title="Outdoor",Swamiji TV (720p) [Not 24/7] +https://stream.swamiji.tv/YogaIPTV/smil:YogaStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TeinsTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/KJie1k5.png" group-title="",Teins TV (1080p) [Not 24/7] +https://live1.markenfunk.com/t1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TirolTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/0jHWmjL.png" group-title="",Tirol TV (720p) [Not 24/7] +https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8 +#EXTINF:-1 tvg-id="UpperaBalkan.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/4fAkcCd.jpg" group-title="",Uppera Balkan (720p) [Geo-blocked] +http://89.187.168.245:8080/live/sUPPERchannel2/index.m3u8 +#EXTINF:-1 tvg-id="UPPERACommunityTV.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/4fAkcCd.jpg" group-title="",UPPERA Community TV [Geo-blocked] +http://89.187.168.245:8080/live/sUPPERchannel/index.m3u8 +#EXTINF:-1 tvg-id="W24.at" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/J25y9ah.png" group-title="",W24 (720p) [Not 24/7] +https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8 diff --git a/channels/at_samsung.m3u b/channels/at_samsung.m3u new file mode 100644 index 000000000..e026f6ed0 --- /dev/null +++ b/channels/at_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RakutenTVActionMoviesAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/81NIxYJ.jpg" group-title="Movies",Rakuten TV Action Movies Austria (720p) [Offline] +https://rakuten-actionmovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/slOK2IH.jpg" group-title="Movies",Rakuten TV Comedy Movies Austria (720p) [Offline] +https://rakuten-comedymovies-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/5bC53Xk.jpg" group-title="Movies",Rakuten TV Drama Austria (720p) [Offline] +https://rakuten-tvshows-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Austria (720p) [Offline] +https://rakuten-family-5-at.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightAustria.es" tvg-country="AT" tvg-language="German" tvg-logo="https://i.imgur.com/qgYRzl1.jpg" group-title="",Rakuten TV Spotlight Austria (720p) [Offline] +https://rakuten-spotlight-5-at.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/au.m3u~master b/channels/au.m3u~master new file mode 100644 index 000000000..c96babcc1 --- /dev/null +++ b/channels/au.m3u~master @@ -0,0 +1,119 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3AW.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Uvie0ws.png" group-title="",3AW (Melbourne) (574p) [Not 24/7] +http://melb3awvid-lh.akamaihd.net/i/melbournevid_1@109381/master.m3u8 +#EXTINF:-1 tvg-id="7flix.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020525.png" group-title="",7flix [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020525.m3u8 +#EXTINF:-1 tvg-id="7mate.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020523.png" group-title="",7mate [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020523.m3u8 +#EXTINF:-1 tvg-id="7two.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020522.png" group-title="",7two [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020522.m3u8 +#EXTINF:-1 tvg-id="9Gem.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200427.png" group-title="",9Gem [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200427.m3u8 +#EXTINF:-1 tvg-id="9Go.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200428.png" group-title="",9Go! [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200428.m3u8 +#EXTINF:-1 tvg-id="9Life.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200424.png" group-title="",9Life [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200424.m3u8 +#EXTINF:-1 tvg-id="9Rush.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200429.png" group-title="",9Rush [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200429.m3u8 +#EXTINF:-1 tvg-id="10.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020625.png" group-title="",10 (720p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020625.m3u8 +#EXTINF:-1 tvg-id="10Bold.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020627.png" group-title="",10 Bold (540p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020627.m3u8 +#EXTINF:-1 tvg-id="10Peach.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020628.png" group-title="",10 Peach (540p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020628.m3u8 +#EXTINF:-1 tvg-id="10Shake.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101406020623.png" group-title="",10 Shake [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101406020623.m3u8 +#EXTINF:-1 tvg-id="ABCKids.au" tvg-country="AU" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/960892021/6dcf6804c2d739fe765563a1f28f493e" group-title="Kids",ABC Kids (720p) [Not 24/7] +https://c.mjh.nz/101002210222 +#EXTINF:-1 tvg-id="ABCME.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210224.png" group-title="",ABC ME (720p) +https://c.mjh.nz/101002210224 +#EXTINF:-1 tvg-id="ABCNews.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210220.png" group-title="News",ABC News (720p) +https://abc-iview-mediapackagestreams-2.akamaized.net/out/v1/6e1cc6d25ec0480ea099a5399d73bc4b/index.m3u8 +#EXTINF:-1 tvg-id="ABCNews.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210220.png" group-title="News",ABC News (720p) [Geo-blocked] +https://c.mjh.nz/101002210220 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) +https://c.mjh.nz/3201026102E1 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101002210221.png" group-title="",ABC TV (720p) +https://c.mjh.nz/101002210221 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) +https://c.mjh.nz/101002310231 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://static.epg.best/au/ABC.au.png" group-title="",ABC TV (720p) +https://c.mjh.nz/101002510251 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) +https://c.mjh.nz/101002710271 +#EXTINF:-1 tvg-id="ABCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/rLCHYCs.png" group-title="",ABC TV (720p) +https://c.mjh.nz/101002810281 +#EXTINF:-1 tvg-id="ABCTVPlus.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",ABC TV Plus (720p) +https://c.mjh.nz/abc2 +#EXTINF:-1 tvg-id="ACCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.acc.tv/wp-content/uploads/2016/06/acctv-logo-web.png" group-title="Religious",ACCTV (Adelaide) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/australia/acctv-adelaide +#EXTINF:-1 tvg-id="ACCTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.acc.tv/wp-content/uploads/2016/06/acctv-logo-web.png" group-title="Religious",ACCTV (Melbourne) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/australia/acctv-melbourne +#EXTINF:-1 tvg-id="AflamMohtrama.au" tvg-country="AU" tvg-language="Arabic" tvg-logo="" group-title="",Aflam Mohtrama (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/mim21889/live +#EXTINF:-1 tvg-id="AusTamil.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Aus Tamil (720p) [Not 24/7] +https://bk7l2pn7dx53-hls-live.5centscdn.com/austamil/fe01ce2a7fbac8fafaed7c982a04e229.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ausbizTV.au" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7ausbiz.png" group-title="Business",ausbiz TV (720p) [Geo-blocked] +https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8 +#EXTINF:-1 tvg-id="AustraliaChannel.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="News",Australia Channel (720p) +https://austchannel-live.akamaized.net/hls/live/2002729/austchannel-news/master.m3u8 +#EXTINF:-1 tvg-id="C31Melbourne.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ge1EutY.png" group-title="General",C31 Melbourne (240p) +https://d1k6kax80wecy5.cloudfront.net/RLnAKY/index.m3u8 +#EXTINF:-1 tvg-id="Channel44.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Channel 44 (240p) +https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8 +#EXTINF:-1 tvg-id="ExpoChannel.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/2KzCShW.png" group-title="Shop",Expo Channel (360p) +https://tvsn-i.akamaihd.net/hls/live/261837/expo/expo.m3u8 +#EXTINF:-1 tvg-id="JonmoBhumiTV.au" tvg-country="AU" tvg-language="Bengali" tvg-logo="http://www.jonmobhumi.tv/wp-content/uploads/2017/11/Final-Red-Logo.png" group-title="General",JonmoBhumi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jonmobhumitv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="M4TV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/m4tv.png" group-title="",M4TV (1090p) +https://5a32c05065c79.streamlock.net/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="M4TVMalayalam.au" tvg-country="AU" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/2fbxRsU.png" group-title="",M4TV Malayalam (1080p) [Not 24/7] +https://app.m4stream.live/mfourmalayalamhls/live.m3u8 +#EXTINF:-1 tvg-id="Nine.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101204200421.png" group-title="",Nine [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101204200421.m3u8 +#EXTINF:-1 tvg-id="NITV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000305.png" group-title="",NITV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000305.m3u8 +#EXTINF:-1 tvg-id="OpenShop.au" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7openshop.png" group-title="",Open Shop [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7openshop.m3u8 +#EXTINF:-1 tvg-id="OpenShop.au" tvg-country="AU" tvg-language="English" tvg-logo="https://www.openshop.com.au/resources/images/pc/common/f_logo.png" group-title="",Open Shop (720p) [Offline] +https://medialive.openshop.com.au/asn-live_1.m3u8 +#EXTINF:-1 tvg-id="RaceCentralTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="",Race Central TV (720p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-racecentral/index.m3u8 +#EXTINF:-1 tvg-id="Racingcom.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020528.png" group-title="",Racing.com [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020528.m3u8 +#EXTINF:-1 tvg-id="Racingcom.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/NAY9DTt.png" group-title="",Racing.com (576p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/australia/racing +#EXTINF:-1 tvg-id="SBSFood.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000304.png" group-title="Cooking",SBS Food [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000304.m3u8 +#EXTINF:-1 tvg-id="SBSTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000301.png" group-title="",SBS TV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000301.m3u8 +#EXTINF:-1 tvg-id="SBSViceland.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000303.png" group-title="",SBS Viceland [Geo-blocked] +https://dai.google.com/linear/hls/event/nPy2IRtvQTWudFfYwdBgsg/master.m3u8 +#EXTINF:-1 tvg-id="SBSViceland.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000303.png" group-title="",SBS Viceland [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000303.m3u8 +#EXTINF:-1 tvg-id="SBSWorldMovies.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.320203000307.png" group-title="Movies",SBS World Movies [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.320203000307.m3u8 +#EXTINF:-1 tvg-id="Seven.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.101305020520.png" group-title="",Seven [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.101305020520.m3u8 +#EXTINF:-1 tvg-id="SkyRacing1.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269404/6402.png" group-title="",Sky Racing 1 (540p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky1.m3u8 +#EXTINF:-1 tvg-id="SkyRacing1.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269404/6402.png" group-title="",Sky Racing 1 (270p) [Not 24/7] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky1.m3u8 +#EXTINF:-1 tvg-id="SkyRacing2.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269377/6411.png" group-title="",Sky Racing 2 (720p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/sky2.m3u8 +#EXTINF:-1 tvg-id="SkyRacing2.au" tvg-country="AU" tvg-language="English" tvg-logo="https://media.info/i/lf/300/1514269377/6411.png" group-title="",Sky Racing 2 (360p) [Not 24/7] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/sky2.m3u8 +#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.skyrtc.png" group-title="",Sky Thoroughbred Central (720p) +https://skylivetab-i.akamaihd.net/hls/live/569779/tablive/stcsd.m3u8 +#EXTINF:-1 tvg-id="SkyThoroughbredCentral.au" tvg-country="AU" tvg-language="English" tvg-logo="https://www.foxtel.com.au/content/dam/foxtel/shared/channel/SRW/SRH_425x243.png" group-title="",Sky Thoroughbred Central (720p) [Offline] +https://skylivesky-i.akamaihd.net/hls/live/569780/skylive/stcsd.m3u8 +#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.snowy-mountains.png" group-title="Sports",Snowy Mountains Television (1080p) [Geo-blocked] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 +#EXTINF:-1 tvg-id="SnowyMountainsTelevision.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/vuFx0Zd.jpg" group-title="Sports",Snowy Mountains Television (1080p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535229/master.m3u8 +#EXTINF:-1 tvg-id="TravelFoodTV.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="Lifestyle",Travel & Food TV (720p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-moviemagictv/index.m3u8 +#EXTINF:-1 tvg-id="TVSN.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/TuHnkxP.png" group-title="",TVSN (360p) [Not 24/7] +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 +#EXTINF:-1 tvg-id="AoDaLiYaTianHeDianShi.au" tvg-country="AU" tvg-language="English" tvg-logo="http://www.rtvchannel.com.au/wp-content/uploads/2017/04/xshow_08.png.pagespeed.ic_.2KNN9OHw1p.png" group-title="",澳大利亚天和电视 (720p) +http://www.rtvcdn.com.au:8082/TV0002.m3u8 diff --git a/channels/au_samsung.m3u b/channels/au_samsung.m3u new file mode 100644 index 000000000..74c2307aa --- /dev/null +++ b/channels/au_samsung.m3u @@ -0,0 +1,87 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ActionHollywoodMovies.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/wnlzC0w.jpg" group-title="Movies",Action Hollywood Movies (1080p) [Offline] +https://lightning-actionhollywood-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AusBizTV.au" tvg-country="AU" tvg-language="English" tvg-logo="" group-title="",Aus Biz TV (720p) [Offline] +https://ausbiztv-ausbiz-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) [Offline] +https://bloomberg-bloomberg-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BountyPlus.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Q8mmLAB.png" group-title="",Bounty Plus (720p) [Offline] +https://bountyfilms-bounty-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/XDqmN1R.png" group-title="Comedy",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] +https://dust-samsung-uk-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://euronews-euronews-world-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] +https://spi-filmstream-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) +https://fueltv-fueltv-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] +https://gustotv-samsung-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseandCountry.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/r5Ip3P0.png" group-title="",Horse and Country (720p) +https://hncfree-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) +https://introuble-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) +https://inwild-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQK6GMj.png" group-title="Movies",Made in Hollywood (720p) [Offline] +https://connection3-ent-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV Australia (720p) [Offline] +https://mavtv-mavtvglobal-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (1080p) +https://outdoorchannel-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Australia (720p) [Offline] +https://jukin-peopleareawesome-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pulse.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/vQ6cBdd.png" group-title="",Pulse (1080p) [Offline] +https://lightning-pulse-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/B69BHnx.jpg" group-title="Classic",Qwest TV Classical (720p) [Offline] +https://qwestclassic-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzandBeyond.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/bhSrOea.jpg" group-title="",Qwest TV Jazz and Beyond (720p) [Offline] +https://qwestjazz-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/B69BHnx.jpg" group-title="",Qwest TV Mix (720p) [Offline] +https://qwestmix-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealFamiliesAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/z8O4Dl6.png" group-title="Family",Real Families (Australia) (720p) +https://lds-realfamilies-samsunguau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/KOkWP6i.jpg" group-title="",Real Stories (720p) +https://lds-realstories-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Rialto.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/RnzWT9C.jpg" group-title="",Rialto (1080p) +https://rialto-rialto-samsungaustralia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RyanandFriends.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/M8VTWFk.jpg" group-title="",Ryan and Friends (1080p) +https://ryanandfriends-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SmithsonianChannelAsia.us" tvg-country="US;AU" tvg-language="English" tvg-logo="https://i.imgur.com/weNdD7r.png" group-title="Science",Smithsonian Channel Asia (1080p) +https://smithsonianaus-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraokeAustralia.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (Australia) (1080p) +https://samsung-au.ott-channels.stingray.com/karaoke/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescapeAustralia.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (Australia) (1080p) [Not 24/7] +https://samsung-au.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="TastemadeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Australia (1080p) +https://tmint-aus-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Australia (720p) [Offline] +https://the-pet-collective-international-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeLineAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/J8qVUjM.png" group-title="Entertainment",Time Line Australia (720p) +https://lds-timeline-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US;AU" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Offline] +https://toongoggles-toongoggles-3-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceSportStarsAustralia.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Sports",Trace Sport Stars (Australia) (1080p) +https://lightning-tracesport-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceUrbanAustralia.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",Trace Urban (Australia) (1080p) +https://lightning-traceurban-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.au" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/H8ucPJd.jpg" group-title="",VENN (1080p) +https://venntv-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Australia (720p) [Offline] +https://jukin-weatherspy-2-au.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (720p) +https://lds-wonder-samsungau.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMooAustralia.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (Australia) (1080p) +https://zoomoo-samsungau.amagi.tv/playlist.m3u8 diff --git a/channels/aw.m3u~master b/channels/aw.m3u~master new file mode 100644 index 000000000..7cc212fb5 --- /dev/null +++ b/channels/aw.m3u~master @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArubaTV.aw" tvg-country="AW" tvg-language="English" tvg-logo="https://i.imgur.com/9fWY09U.png" group-title="General",Aruba.TV (1080p) [Not 24/7] +https://ed1ov.live.opencaster.com/GzyysAAvEhht/index.m3u8 +#EXTINF:-1 tvg-id="NosIslaTV.aw" tvg-country="AW" tvg-language="Dutch;Papiamento" tvg-logo="https://i.imgur.com/Gf95oov.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" group-title="General",Nos Isla TV (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 +https://backend-server-dot-telearuba-app.appspot.com/media/livestream23/playlist.m3u8 +#EXTINF:-1 tvg-id="Telearuba.aw" tvg-country="AW" tvg-language="Dutch;Papiamento;English" tvg-logo="https://i.imgur.com/wjwxp3K.png" group-title="General",Telearuba (720p) +http://cdn.setar.aw:1935/Telearuba/smil:telearuba.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telearuba.aw" tvg-country="AW" tvg-language="Dutch;Papiamento;English" tvg-logo="https://i.imgur.com/wjwxp3K.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" group-title="General",Telearuba (480p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36 +https://backend-server-dot-telearuba-app.appspot.com/media/livestream13/playlist.m3u8 diff --git a/channels/az.m3u~master b/channels/az.m3u~master new file mode 100644 index 000000000..a59cd42bd --- /dev/null +++ b/channels/az.m3u~master @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlvinChannelTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://www.alvinchannel.com/templates/Default/images/logo.png" group-title="General",Alvin Channel TV (360p) [Not 24/7] +http://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="ARB.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://arbtv.az/assets/uploads/sites/logo.png" group-title="General",ARB (576p) [Not 24/7] +https://europe2.livetv.az/azerbaijan/arb/playlist.m3u8 +#EXTINF:-1 tvg-id="ARB24.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://arb24.az/assets/uploads/sites/logo_arb24.png" group-title="News",ARB 24 (1080p) [Not 24/7] +http://85.132.81.184:8080/arb24/live1/index.m3u8 +#EXTINF:-1 tvg-id="ARBGunes.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://gunesh.arbtv.az/assets/uploads/sites/arb_gunesh.png" group-title="Kids",ARB Günəş [Geo-blocked] +http://149.255.152.199/arbgunes.m3u8 +#EXTINF:-1 tvg-id="AzTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://www.aztv.az/storage/settings/September2019/23bMtFJXZsjnUuC0AwiQ.png" group-title="General",Az TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/aztv_stream2/playlist.m3u8 +#EXTINF:-1 tvg-id="AzadTVMinus2.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV -2 (ATV) (720p) +http://85.132.81.184:8080/atv-2/index.m3u8 +#EXTINF:-1 tvg-id="AzadTVMinus4.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV -4 (ATV) (720p) [Not 24/7] +http://85.132.81.184:8080/atv-4/index.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (720p) +http://85.132.81.184:8080/atv/index.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (720p) +http://85.132.81.184:8080/atvlive/atv-e1/index.m3u8 +#EXTINF:-1 tvg-id="AzadTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/rDYSoRL.png" group-title="General",Azad TV (ATV) (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/atv_sd_stream4/playlist.m3u8 +#EXTINF:-1 tvg-id="CBC.az" tvg-country="AZ;TR;GE" tvg-language="Azerbaijani;Russian;English;Persian;Armenian" tvg-logo="http://cbc.az/assets/uploads/sites/Logo_fin.png" group-title="News",CBC (720p) [Not 24/7] +http://cbctvlive.flashmediacast.com:1935/CBCTVLive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="ELTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://eltv.az/wp-content/uploads/2021/01/alllogo.png" group-title="General",EL TV (260p) +http://85.132.53.162:1935/live/eltv/playlist.m3u8 +#EXTINF:-1 tvg-id="FTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://apim.livetv.az/images/original/ftvlogo.png" group-title="Movies",FTV (720p) [Not 24/7] +https://str2.yodacdn.net/publive/ftv/video.m3u8 +#EXTINF:-1 tvg-id="IctimaiTV.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://itv.az/assets/images/itv-logo.png" group-title="General",İctimai TV (720p) [Geo-blocked] +https://node19.connect.az:8086/ch1/ch1.hi.m3u8 +#EXTINF:-1 tvg-id="IctimaiTV.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://itv.az/assets/images/itv-logo.png" group-title="General",İctimai TV (480p) [Geo-blocked] +https://node19.connect.az:8086/ch1/ch1.med.m3u8 +#EXTINF:-1 tvg-id="IdmanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/cUs7TFd.png" group-title="Sports",İdman TV (576p) +http://109.205.166.68/server124/idman_az/index.m3u8 +#EXTINF:-1 tvg-id="InterAz.az" tvg-country="AZ" tvg-language="Azerbaijani;Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/%C4%B0nterAz_loqosu.jpeg/600px-%C4%B0nterAz_loqosu.jpeg" group-title="General",İnterAz (1080p) [Not 24/7] +http://yayin.netradyom.com:1935/live/interaz/playlist.m3u8 +#EXTINF:-1 tvg-id="KepezTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/K%C9%99p%C9%99z_TV_%282019-h.h.%29.png/504px-K%C9%99p%C9%99z_TV_%282019-h.h.%29.png" group-title="General",Kəpəz TV (540p) [Not 24/7] +http://85.132.81.184:8080/arbkepez/live/index.m3u8 +#EXTINF:-1 tvg-id="KepezTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/3/3e/K%C9%99p%C9%99z_TV_%282019-h.h.%29.png/504px-K%C9%99p%C9%99z_TV_%282019-h.h.%29.png" group-title="General",Kəpəz TV (540p) [Not 24/7] +http://streams.livetv.az/arbkepez/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MedeniyyetTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://medeniyyettv.az/storage/settings/September2019/RDRVyTmdeB1NvyNm4UnF.png" group-title="Culture",Mədəniyyət TV (404p) [Not 24/7] +http://streams.livetv.az/azerbaijan/medeniyyet_stream2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuganTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/HMT5vZA.png" group-title="General",Muğan TV (480p) [Not 24/7] +http://cdn10-mugantv.yayin.com.tr/mugantv/mugantv/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxcivanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://ntv.az/assets/images/logo.png" group-title="General",Naxçıvan TV (720p) [Not 24/7] +http://streams.livetv.az/azerbaijan/nax/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxcivanTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://ntv.az/assets/images/logo.png" group-title="General",Naxçıvan TV (720p) [Offline] +http://canli.naxcivantv.az/media/20210930/index.m3u8 +#EXTINF:-1 tvg-id="QafqazTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/thumb/6/69/Qafqaz_TV_%282017-h.h.%29.png/640px-Qafqaz_TV_%282017-h.h.%29.png" group-title="General",Qafqaz TV (360p) [Not 24/7] +https://europe2.livetv.az/azerbaijan/qafqaztv/playlist.m3u8 +#EXTINF:-1 tvg-id="QblTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/degUDMf.png" group-title="General",Qəbələ TV (480p) [Not 24/7] +https://qebele.tv/live/stream/index.m3u8 +#EXTINF:-1 tvg-id="SpaceTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://spacetv.az/wp-content/themes/spacetv/images/logo.png" group-title="General",Space TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/space_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="XezerTV.az" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="http://xezertv.az/images/logo.png" group-title="General",Xəzər TV (576p) [Not 24/7] +http://streams.livetv.az/azerbaijan/xazar_sd_stream_2/playlist.m3u8 diff --git a/channels/ba.m3u~master b/channels/ba.m3u~master new file mode 100644 index 000000000..d4b25a0c3 --- /dev/null +++ b/channels/ba.m3u~master @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="B1TV.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/fdd1oQP.png" group-title="",B1 TV (1080p) [Not 24/7] +http://proxy.bihnet.net:88/live/b1tv.m3u8 +#EXTINF:-1 tvg-id="BHRT.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/F8jTl1o.png" group-title="",BHRT (720p) [Geo-blocked] +https://bhrtstream.bhtelecom.ba/bhrtportal.m3u8 +#EXTINF:-1 tvg-id="BHRT.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/F8jTl1o.png" group-title="",BHRT (270p) [Geo-blocked] +https://bhrtstream.bhtelecom.ba/hls15/bhrtportal.m3u8 +#EXTINF:-1 tvg-id="BNTV.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/8bhQY8B.jpg" group-title="",BN TV (480p) +https://dns2.rtvbn.com:8080/live/index.m3u8 +#EXTINF:-1 tvg-id="Malta.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="" group-title="",Malta (720p) [Not 24/7] +http://webtvstream.bhtelecom.ba/malta.m3u8 +#EXTINF:-1 tvg-id="ntvic.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/Y4UJEfg.png" group-title="",NTV IC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ntvic +#EXTINF:-1 tvg-id="RTVBPK.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/g639yyT.jpg" group-title="",RTV BPK (720p) [Not 24/7] +https://webtvstream.bhtelecom.ba/gorazde_cam2.m3u8 +#EXTINF:-1 tvg-id="RTVHB.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/EE8C8rR.png" group-title="",RTV HB (576p) [Not 24/7] +https://prd-hometv-live-open.spectar.tv/ERO_1_083/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVZE.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="" group-title="Local",RTV ZE (720p) [Not 24/7] +https://stream.rtvze.ba/123.m3u8 +#EXTINF:-1 tvg-id="Televizija5.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/hdwjkYa.png" group-title="",Televizija 5 (576p) [Timeout] +https://balkanmedia.dynu.net/hls/tv5web.m3u8 +#EXTINF:-1 tvg-id="tvslon.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV Slon Extra (1080p) [Not 24/7] +http://31.47.0.130:8082 +#EXTINF:-1 tvg-id="tvslon.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV Slon Extra (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVSLON/live +#EXTINF:-1 tvg-id="tvsloninfo.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.rtvslon.ba/wp-content/uploads/2020/07/slon-extra-logo-mali-300x277.jpg" group-title="",TV SLON INFO (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=YHLiGONh--I +#EXTINF:-1 tvg-id="RTRS.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://i.imgur.com/mhfGMIw.jpg" group-title="",РТРС (576p) [Geo-blocked] +https://parh.rtrs.tv/tv/live/playlist.m3u8 diff --git a/channels/bb.m3u b/channels/bb.m3u new file mode 100644 index 000000000..b0aa6f369 --- /dev/null +++ b/channels/bb.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CBCTV8.bb" tvg-country="BB" tvg-language="English" tvg-logo="https://i.imgur.com/o7IbMWy.png" group-title="",CBC TV8 (1080p) [Not 24/7] +https://1740288887.rsc.cdn77.org/1740288887/index.m3u8 diff --git a/channels/bd.m3u b/channels/bd.m3u new file mode 100644 index 000000000..eed42ab18 --- /dev/null +++ b/channels/bd.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChannelT1.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/dyoXd9c.png" group-title="News",Channel T1 (720p) [Not 24/7] +http://irbtv.net/channelt1/1080/index.m3u8 +#EXTINF:-1 tvg-id="EkusheyTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/5XjSZbN.png" group-title="News",Ekushey TV (480p) +https://ekusheyserver.com/etvlivesn.m3u8 +#EXTINF:-1 tvg-id="RTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/41/Rtv_bangladesh.PNG" group-title="General",RTV (720p) [Not 24/7] +https://stream.cstfctg.com/rtvonline/rtv2021.stream/playlist.m3u8 diff --git a/channels/bd_jagobd.m3u~master b/channels/bd_jagobd.m3u~master new file mode 100644 index 000000000..b0bdbe779 --- /dev/null +++ b/channels/bd_jagobd.m3u~master @@ -0,0 +1,53 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ATNBangla.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/ATN_Bangla.svg/207px-ATN_Bangla.svg.png" group-title="General",ATN Bangla (1080p) [Geo-blocked] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbd-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNBanglaUK.bd" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://atnbanglauk.tv/wp-content/uploads/2015/04/sized1.png" group-title="General",ATN Bangla UK (576p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnbanglauk-off.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNNews.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/2F1BaT2.gif" group-title="News",ATN News (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnws-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BanglaVision.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/doJuPjL.png" group-title="General",Bangla Vision (1080p) [Geo-blocked] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/banglav000.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BijoyTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/63/BIJOY_TV_Logo_BD.png" group-title="General",Bijoy TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/bijoy00.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BoishakhiTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="http://www.boishakhionline.com/frontend_source/assets/images/logo.png" group-title="General",Boishakhi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/boishakhitv-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVChittagong.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/CMUHtv3.png" group-title="Local",BTV Chittagong (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvnational-ctg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVWorld.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/1Chamk9.png" group-title="General",BTV World (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/btvbd-office-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/f/ff/Channel9_bd.svg/350px-Channel9_bd.svg.png" group-title="Local",Channel 9 (720p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel9hd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel24.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Channel24logo.svg/400px-Channel24logo.svg.png" group-title="News",Channel 24 (720p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channel24-sg-e8e.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelI.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.channelionline.com/wp-content/uploads/2019/07/channel-i-logo-1.png" group-title="General",Channel I (1080p) [Timeout] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/channeli-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ColosalTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/4kxxSCq.png" group-title="Entertainment",Colosal TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/colosal.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DBCNews.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://dbcnews.tv/img/dbc.png" group-title="News",DBC News (1080p) [Timeout] +https://live.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/dbcnews.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="GaanBangla.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="http://gaanbangla.tv/img/logo.png" group-title="Music",Gaan Bangla (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/gaanbangla-8-orgd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="IndependentTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/c1/Independent_Television_Logo.svg/157px-Independent_Television_Logo.svg.png" group-title="News",Independent TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/independent-8-org.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JamunaTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.jamuna.tv/wp-content/themes/jtv-news/img/logo.png" group-title="News",Jamuna TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/jamuna-test-sample-ok.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.news24bd.tv/assets/desktop/images/logos/logo.png" group-title="News",News 24 (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/news24local.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NexusTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/XcJZKg4.png" group-title="General",Nexus TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nexustv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NokshiTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/QWJNqS5.jpeg" group-title="Entertainment",Nokshi TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nakshitv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTVEurope.bd" tvg-country="EUR" tvg-language="Bengali;English" tvg-logo="https://europentv.ntvbd.com/sites/all/themes/sloth/logo.png" group-title="General",NTV Europe (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/ntvuk00332211.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/41/Rtv_bangladesh.PNG" group-title="General",RTV (720p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/rtv-sg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SangshadTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/15/Sangsad_Television_Logo.jpg" group-title="General",Sangshad TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/songsodtv-world.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SATV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.satv.tv/wp-content/uploads/2016/07/logo1.png" group-title="General",SATV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/satvoff5666.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SomoyNewsTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.somoynews.tv/_nuxt/img/somoy-logo-192x192.33c3254.png" group-title="News",Somoy News TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/somoyt000011226615544544.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SomoyNewsTV.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://www.somoynews.tv/_nuxt/img/somoy-logo-192x192.33c3254.png" group-title="News",Somoy News TV (1080p) [Not 24/7] +https://somoy.appv.jagobd.com:444/somoy/somoyt000011226615544544.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeTelevision.us" tvg-country="US" tvg-language="Bengali" tvg-logo="https://www.timetvusa.com/images/ttv200.png" group-title="General",Time Television (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/timetvusa.stream/playlist.m3u8 diff --git a/channels/be.m3u~master b/channels/be.m3u~master new file mode 100644 index 000000000..a2b62cd04 --- /dev/null +++ b/channels/be.m3u~master @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ATV" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/iWXUmje.jpg" group-title="",ATV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27755193/events/8452381/live.m3u8 +#EXTINF:-1 tvg-id="BelRTL.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.ibb.co/VmQ5bzM/5107.jpg" group-title="",Bel RTL (720p) +https://bel-lh.akamaihd.net/i/BEL_1@321282/master.m3u8 +#EXTINF:-1 tvg-id="BX1.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/YjKqWru.png" group-title="",BX1 (720p) [Not 24/7] +https://59959724487e3.streamlock.net/stream/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalZoom.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/uoSMNnr.png" group-title="Local",Canal Zoom (720p) [Not 24/7] +http://streamer.canalc.be:1935/canalzoom/smil:SMIL-canalzoom-multi/playlist.m3u8 +#EXTINF:-1 tvg-id="CityMusicTV.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/LJ4Hpdc.png" group-title="Music",City Music TV (720p) +https://5592f056abba8.streamlock.net/citytv/citytv/playlist.m3u8 +#EXTINF:-1 tvg-id="EbS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ebs.png" group-title="",EbS Live (Europe by Satellite) (1080p) +https://euc-live.fl.freecaster.net/live/eucom/ebs.m3u8 +#EXTINF:-1 tvg-id="EbSPlus.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ebs.png" group-title="",EbS+ Live (Europe by Satellite) (1080p) +https://euc-live.fl.freecaster.net/live/eucom/ebsp.m3u8 +#EXTINF:-1 tvg-id="KetnetJunior.be" tvg-country="BE;LU;NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/eDYaphB.png" group-title="",Ketnet Junior (720p) +https://content.uplynk.com/channel/e11a05356cc44198977436418ad71832.m3u8 +#EXTINF:-1 tvg-id="LN24.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.imgur.com/bp1Qp0d.png" group-title="News",LN24 (1080p) [Offline] +https://live.cdn.ln24.be/out/v1/b191621c8b9a436cad37bb36a82d2e1c/index.m3u8 +#EXTINF:-1 tvg-id="MaTele.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.ibb.co/m48XZS7/matele.png" group-title="",MaTele (1080p) [Not 24/7] +https://live.matele.be/hls/live.m3u8 +#EXTINF:-1 tvg-id="MNM.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Mnm_logo.svg/180px-Mnm_logo.svg.png" group-title="",MNM (720p) +https://live-vrt.akamaized.net/groupa/live/bac277a1-306d-44a0-8e2e-e5b9c07fa270/live.isml/.m3u8 +#EXTINF:-1 tvg-id="Notele.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="" group-title="",Notele (576p) [Not 24/7] +https://streaming01.divercom.be/notele_live/_definst_/direct.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QMusic.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/s0CZjmi.png" group-title="Music",Q-Music (1080p) +https://dpp-streamlive-plain.medialaancdn.be/qmusic/plain/hls.m3u8 +#EXTINF:-1 tvg-id="RadioContact.be" tvg-country="BE" tvg-language="French" tvg-logo="https://i.ibb.co/4jfSTKz/contact.jpg" group-title="Music",Radio Contact (720p) +https://contact-lh.akamaihd.net/i/CONTACT_1@321283/master.m3u8 +#EXTINF:-1 tvg-id="RadioPROS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RMjFeGE.png" group-title="Music",Radio PROS (720p) [Not 24/7] +http://highvolume04.streampartner.nl/radiopros/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPROS.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RMjFeGE.png" group-title="Music",Radio PROS (720p) [Not 24/7] +https://558bd16067b67.streamlock.net/radiopros/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="ROB" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/CzQe0q2.png" group-title="",ROB TV (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/27755193/events/8462344/live.m3u8 +#EXTINF:-1 tvg-id="RTL-TVi BE" tvg-country="BE;LU" tvg-language="French" tvg-logo="https://i.imgur.com/yjtxdmh.png" group-title="",RTL-TVi (720p) +https://rtltvi-lh.akamaihd.net/i/TVI_1@319659/master.m3u8 +#EXTINF:-1 tvg-id="TV Oost Dend" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.imgur.com/JFVEcEA.png" group-title="",TV Oost (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/27755193/events/8511193/live.m3u8 +#EXTINF:-1 tvg-id="TVL.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="https://i.ibb.co/KGRYRmt/download.jpg" group-title="Local",TVL (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/27755193/events/8452383/live.m3u8 +#EXTINF:-1 tvg-id="TVO.be" tvg-country="BE" tvg-language="Dutch" tvg-logo="" group-title="",TVO (576p) +https://media.mediahuisvideo.be/hls/account=tqIhfOEY3U0A/item=oIFtpshSvwcy/oIFtpshSvwcy.m3u8 diff --git a/channels/be_samsung.m3u~master b/channels/be_samsung.m3u~master new file mode 100644 index 000000000..4fec5506d --- /dev/null +++ b/channels/be_samsung.m3u~master @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews Français (720p) +https://rakuten-africanews-2-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-be.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] +https://rakuten-euronews-2-be.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/bf.m3u b/channels/bf.m3u new file mode 100644 index 000000000..0a6efac8a --- /dev/null +++ b/channels/bf.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="3TV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://i.imgur.com/oYctB4J.png" group-title="",3TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/3tvbf +#EXTINF:-1 tvg-id="FasoTV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://fasotv.net/wp-content/uploads/2019/08/log-faso.png" group-title="",Faso TV (480p) [Not 24/7] +https://playtv4kpro.com:5443/LiveApp/streams/163893638025530331068059.m3u8 +#EXTINF:-1 tvg-id="ImpactTV.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://i.imgur.com/sCGRccj.png" group-title="Religious",Impact TV (360p) +https://edge.vedge.infomaniak.com/livecast/ik:impacttv_1/manifest.m3u8 +#EXTINF:-1 tvg-id="RTB.bf" tvg-country="BF" tvg-language="French" tvg-logo="https://www.rtb.bf/wp-content/uploads/2020/04/LOgo-RTB-272-90-3.png" group-title="",RTB (360p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:rtbtvlive1/manifest.m3u8 diff --git a/channels/bg.m3u~master b/channels/bg.m3u~master new file mode 100644 index 000000000..1b6d8374b --- /dev/null +++ b/channels/bg.m3u~master @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="100AutoMotoTV.bg" tvg-country="BG" tvg-language="Bulgarian;English" tvg-logo="https://i.imgur.com/PjBm4Ic.jpg" group-title="Auto",100% Auto Moto TV (720p) [Not 24/7] +http://100automoto.tv:1935/bgtv1/autotv/playlist.m3u8 +#EXTINF:-1 tvg-id="BalkanikaTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/S0GrDsQ.png" group-title="Music",Balkanika TV (270p) [Offline] +rtsp://stream.teracomm.bg/balkanika +#EXTINF:-1 tvg-id="BGMusic.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Music",BG Music [Offline] +https://cdn1.mobiletv.bg/T10/bgmusic/bgmusic_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BNMusic.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Music",BN Music [Offline] +https://cdn1.mobiletv.bg/T5/bn_music/bn_music_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BoxTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/boxTV_BG_logo.png" group-title="",Box TV [Offline] +https://cdn1.mobiletv.bg/T5/box_tv/box_tv_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BTK.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/5Sl6bKi.png" group-title="",BTK (576p) [Not 24/7] +http://hls.cdn.bg:2007/fls/vtv/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVCinema.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/bTV_Cinema_BG.png" group-title="",BTV Cinema [Offline] +https://cdn1.mobiletv.bg/T8/btv_cinema/btv_c_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BTVComedy.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/bTV_Comedy_BG.png" group-title="Comedy",BTV Comedy [Offline] +https://cdn1.mobiletv.bg/T5/btvcomedy/btvcomedy_794613_850k.m3u8 +#EXTINF:-1 tvg-id="BulgariaOnAir.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) +http://edge1.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) +http://edge15.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) +http://hls.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Bulgaria On Air" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/fawQSJN.jpg" group-title="News",Bulgaria On Air (576p) +http://ios.cdn.bg:2006/fls/bonair.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CityTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/CITY_BG_logo.png" group-title="",City TV (576p) [Not 24/7] +https://tv.city.bg/play/tshls/citytv/index.m3u8 +#EXTINF:-1 tvg-id="Diema.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Diema_BG.png" group-title="",Diema [Offline] +https://cdn1.mobiletv.bg/T13/diema/diema_794613_850k.m3u8 +#EXTINF:-1 tvg-id="DMSAT.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="",DM SAT [Offline] +https://cdn1.mobiletv.bg/T5/dm_sat/dm_sat_794613_850k.m3u8 +#EXTINF:-1 tvg-id="DSTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/2vRfj1D.png" group-title="",DSTV (614p) +http://46.249.95.140:8081/hls/data.m3u8 +#EXTINF:-1 tvg-id="Ekids.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Kids",Ekids [Offline] +https://cdn1.mobiletv.bg/T8/ekids/ekids_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Evrokom.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/3s7qchh.png" group-title="",Evrokom (360p) +https://live.ecomservice.bg/hls/stream.m3u8 +#EXTINF:-1 tvg-id="FishingHuntingChannel.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Outdoor",Fishing & Hunting Channel [Offline] +https://cdn1.mobiletv.bg/T5/fh/fh_794613_850k.m3u8 +#EXTINF:-1 tvg-id="HomeOneTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/v0gJW1l.jpg" group-title="",HomeOne TV (1080p) [Timeout] +https://streamer104.neterra.tv/n1tv/n1tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LightChannel.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (480p) [Not 24/7] +https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8 +#EXTINF:-1 tvg-id="MMTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/Fr1SYxZ.png" group-title="Music",MM TV (480p) [Offline] +https://streamer103.neterra.tv/mmtv/mmtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Nostalgia.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="",Nostalgia [Offline] +https://cdn1.mobiletv.bg/T10/kanal4/kanal4_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Sportal.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="" group-title="Sports",Sportal.bg [Geo-blocked] +https://e113-ts.cdn.bg/sportal/fls/sportal_fullhd/chunklist.m3u8?at=c92098d9ab33bf471967c6b6195361e3 +#EXTINF:-1 tvg-id="ThisisBulgaria.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/FxLjPLh.jpg" group-title="",This is Bulgaria (1080p) [Offline] +https://streamer103.neterra.tv/thisisbulgaria/community.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPlus.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/W074hkS.jpg" group-title="",TV+ [Timeout] +http://141.136.14.18/kanal1/kanal1.m3u8 +#EXTINF:-1 tvg-id="WnessTV.bg" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/n0YJN6v.png" group-title="",Wness TV (720p) [Offline] +https://wness103.neterra.tv/wness/wness.smil/playlist.m3u8 diff --git a/channels/bh.m3u b/channels/bh.m3u new file mode 100644 index 000000000..6eaa4537b --- /dev/null +++ b/channels/bh.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BahrainInternational.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/uiulhEg.jpg" group-title="General",Bahrain International (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+International_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainLawal.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain Lawal (410p) +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Lawal_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainQuran.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OPw6U7j.jpg" group-title="Religious",Bahrain Quran (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Quran_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports1.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pQ0QGGl.jpg" group-title="Sports",Bahrain Sports 1 (720p) [Not 24/7] +http://185.105.4.106:1935/live/Bahrain+Sports/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports1.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/pQ0QGGl.jpg" group-title="Sports",Bahrain Sports 1 (720p) [Not 24/7] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainSports2.bh" tvg-country="BH" tvg-language="Arabic" tvg-logo="https://i.imgur.com/e5buVPV.jpg" group-title="Sports",Bahrain Sports 2 (720p) [Offline] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+Sports+2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainTV.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain TV (720p) [Not 24/7] +http://185.105.4.106:1935/live/Bahrain+TV/playlist.m3u8 +#EXTINF:-1 tvg-id="BahrainTV.bh" tvg-country="BH" tvg-language="Arabic;English" tvg-logo="https://i.imgur.com/LTD0jIm.png" group-title="General",Bahrain TV (720p) [Not 24/7] +https://5c7b683162943.streamlock.net/live/ngrp:Bahrain+TV_all/playlist.m3u8 diff --git a/channels/bj.m3u~master b/channels/bj.m3u~master new file mode 100644 index 000000000..2ebd604c9 --- /dev/null +++ b/channels/bj.m3u~master @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BB24.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/vFhfu6M.jpg" group-title="",BB24 (360p) [Not 24/7] +https://edge9.vedge.infomaniak.com/livecast/ik:bb24/manifest.m3u8 +#EXTINF:-1 tvg-id="Etélé.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/0LBbnSM.jpg" group-title="",Etélé (720p) [Not 24/7] +https://livetvsteam.com:1936/etelebenin/etelebenin/playlist.m3u8 +#EXTINF:-1 tvg-id="GolfeTVAfrica.bj" tvg-country="BJ" tvg-language="English;French" tvg-logo="https://i.imgur.com/AIXn66Q.png" group-title="News",Golfe TV Africa (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC98EZ3PHQNrqV-B-CtwAHMA/live +#EXTINF:-1 tvg-id="KultuTV.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/8ytvChX.png" group-title="Music",Kultu TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82zdni +#EXTINF:-1 tvg-id="ortb.bj" tvg-country="BJ" tvg-language="French" tvg-logo="https://i.imgur.com/SpMvar1.png" group-title="",ORTB (1080p) [Offline] +https://edge3.vedge.infomaniak.com/livecast/ik:ortb/manifest.m3u8 diff --git a/channels/bn.m3u b/channels/bn.m3u new file mode 100644 index 000000000..9a4f152f7 --- /dev/null +++ b/channels/bn.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RTBGo.bn" tvg-country="BN" tvg-language="Malay;English" tvg-logo="https://rtb-images.glueapi.io/300x0/live/GoLiveNew.png" group-title="",RTB Go (720p) [Offline] +https://d19j8udk9agj55.cloudfront.net/smil:rtbgo/playlist.m3u8 +#EXTINF:-1 tvg-id="RTBSukmaindera.bn" tvg-country="BN" tvg-language="Malay;English" tvg-logo="https://i.imgur.com/wRzyzPA.png" group-title="",RTB Sukmaindera (720p) [Offline] +https://d19j8udk9agj55.cloudfront.net/smil:rtb1/playlist.m3u8 diff --git a/channels/bo.m3u~master b/channels/bo.m3u~master new file mode 100644 index 000000000..1be9a3a2e --- /dev/null +++ b/channels/bo.m3u~master @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlegriaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/jlRMBbu.jpg" group-title="Music",Alegria TV (804p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 +#EXTINF:-1 tvg-id="ATB.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DCAtokY.png" group-title="",ATB (614p) [Not 24/7] +http://186.121.206.197/live/daniel/index.m3u8 +#EXTINF:-1 tvg-id="ATB.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oszItYJ.jpg" group-title="",ATB (360p) [Not 24/7] +https://mediacp.hostradios.com.ar:19360/atbcochabamba/atbcochabamba.m3u8 +#EXTINF:-1 tvg-id="BoPlusLive.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Bo Plus Live (1080p) [Offline] +https://mediastreamm.com:3342/live/boplustvlive.m3u8 +#EXTINF:-1 tvg-id="BoliviaRadioTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Bolivia Radio TV (720p) [Not 24/7] +https://play.amelbasoluciones.co:3546/live/boliviaradiotvlive.m3u8 +#EXTINF:-1 tvg-id="BoliviaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="http://www.boliviatv.bo/principal/assets/images/the-voyager/btv1.png" group-title="General",Bolivia TV (720p) [Not 24/7] +http://boliviatv1.srfms.com:5735/live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="BoliviaTV72.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1zTLGdj.jpg" group-title="General",Bolivia TV 7.2 (480p) +https://video1.getstreamhosting.com:1936/8224/8224/playlist.m3u8 +#EXTINF:-1 tvg-id="CVC.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/320429538167628/picture?width=300&height=300" group-title="",Canal Vírgen de Copacabana (CVC) (818p) [Timeout] +https://cp.sradiotv.com:1936/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="CTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="Local",CTV Canal 38 Digital (Viacha) (480p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8026/index.m3u8 +#EXTINF:-1 tvg-id="DTVPlay.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="Sports",DTV Play (Deporte Total) (720p) [Not 24/7] +https://tv.portalexpress.es:3044/live/dtplaylive.m3u8 +#EXTINF:-1 tvg-id="MegaTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatelevisionbolivia/picture?width=300&height=300" group-title="",MegaTV (720p) [Not 24/7] +https://solo.disfrutaenlared.com:1936/tvcbba/tvcbba/playlist.m3u8 +#EXTINF:-1 tvg-id="MegaTVYacuiba.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MegatvYacuiba/picture?width=300&height=300" group-title="",MegaTV (Yacuiba) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/mega/mega/playlist.m3u8 +#EXTINF:-1 tvg-id="PAT.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",PAT (720p) [Offline] +http://live.cdn.comteco.com.bo/comgo/0215/index.m3u8 +#EXTINF:-1 tvg-id="RedAdvenir.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Red Advenir (360p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/GMIredadvenirm/playlist.m3u8 +#EXTINF:-1 tvg-id="RedPatBolivia.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/patboliviahd/picture?width=300&height=300" group-title="",Red Pat Bolivia [Offline] +https://5975e06a1f292.streamlock.net:4443/patbolivia/patlapaz/master.m3u8 +#EXTINF:-1 tvg-id="RedUno.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://comteco.com.bo/img/upload/canales/iZ7Gvp.png" group-title="",Red Uno (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp +#EXTINF:-1 tvg-id="RedUno.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://comteco.com.bo/img/upload/canales/iZ7Gvp.png" group-title="",Red Uno (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/embed/video/x825whp +#EXTINF:-1 tvg-id="RenuevaDigital.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="" group-title="",Renueva Digital (480p) +https://inliveserver.com:1936/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/eTDc0wd.jpg" group-title="",RTP (720p) [Not 24/7] +http://136.243.3.70:1935/RtpBolivia/RtpBolivia/playlist.m3u8 +#EXTINF:-1 tvg-id="SEOTV.bo" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="General",SEO TV (720p) [Not 24/7] +https://panel.seo.tv.bo:3645/live/franzleonel0live.m3u8 +#EXTINF:-1 tvg-id="SEOTVKids.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="Kids",SEO TV Kids (540p) [Not 24/7] +https://panel.seo.tv.bo:3182/live/franzleonellive.m3u8 +#EXTINF:-1 tvg-id="SEOTVNovelas.bo" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Seo.Tv.sat/picture?width=300&height=300" group-title="Series",SEO TV Novelas (540p) [Not 24/7] +https://panel.seo.tv.bo:3337/live/franzbalboa2live.m3u8 +#EXTINF:-1 tvg-id="TVLatinaCanal42.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://ya.co.ve/3VJ" group-title="",TV Latina Canal 42 (720p) [Not 24/7] +https://master.tucableip.com/live/tvlatinamontero/playlist.m3u8 +#EXTINF:-1 tvg-id="TVU.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YdiF5k6.png" group-title="",TVU (276p) [Not 24/7] +http://136.243.3.70:1935/TvUniversitaria/TvUniversitaria/playlist.m3u8 +#EXTINF:-1 tvg-id="XTOTV.bo" tvg-country="BO" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/XTOTVBolivia/picture?width=300&height=300" group-title="",XTOTV (404p) [Not 24/7] +http://www.channel.tevemi.com:1935/XtoTv/XtoTv/playlist.m3u8 diff --git a/channels/br.m3u~master b/channels/br.m3u~master new file mode 100644 index 000000000..b9b1f7727 --- /dev/null +++ b/channels/br.m3u~master @@ -0,0 +1,315 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1001Noites.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/xbkYDeg.png" group-title="Shop",1001 Noites (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8155/ngrp:LVW8155_41E1ciuCvO_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AgroBrasilTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.costadosol.tv.br/site/wp-content/uploads/2017/12/agro-brasil.png" group-title="Outdoor",AgroBrasil TV (720p) [Not 24/7] +http://45.162.230.234:1935/agrobrasiltv/agrobrasiltv/playlist.m3u8 +#EXTINF:-1 tvg-id="AgroBrasilTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.costadosol.tv.br/site/wp-content/uploads/2017/12/agro-brasil.png" group-title="Outdoor",AgroBrasil TV (720p) [Not 24/7] +https://server.flixtv.com.br/agrobrasiltv/agrobrasiltv/playlist.m3u8 +#EXTINF:-1 tvg-id="Agromais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_agromais-hd_m.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",Agromais (1080p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/geob_band/agromais/playlist.m3u8 +#EXTINF:-1 tvg-id="AllSports.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/wULpnYR.png" group-title="Sports",All Sports (720p) +https://5cf4a2c2512a2.streamlock.net/dgrau/dgrau/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimeTV.br" tvg-country="BR" tvg-language="Japanese" tvg-logo="https://i.imgur.com/rmAm6UE.png" group-title="Animation",Anime TV (360p) [Not 24/7] +https://stmv1.srvif.com/animetv/animetv/playlist.m3u8 +#EXTINF:-1 tvg-id="Animestation.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5UpjGcL.png" group-title="",Animestation (480p) [Not 24/7] +https://stmv.video.expressolider.com.br/animestation1/animestation1/playlist.m3u8 +#EXTINF:-1 tvg-id="Band.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/HnL2uBA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",Band (1080p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/geob_band/app/playlist.m3u8 +#EXTINF:-1 tvg-id="Band.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/HnL2uBA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",Band (1080p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/geob_band/band/playlist.m3u8 +#EXTINF:-1 tvg-id="Bandnews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.band.uol.com.br/assets/bandnewstv/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",Bandnews (720p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/geob_band/bandnewstv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal25Jundiai.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/9SjoGWj.png" group-title="Local",Canal 25 Jundiaí (404p) [Not 24/7] +https://stream01.msolutionbrasil.com.br/hls/canal25/live.m3u8 +#EXTINF:-1 tvg-id="CanaldoBoi.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Logo_Canal_do_Boi_-_PNG.png/301px-Logo_Canal_do_Boi_-_PNG.png" group-title="Outdoor",Canal do Boi [Offline] +https://aovivo.equipea.com.br:5443/WebRTCAppEE/streams/713829795440060188004130.m3u8 +#EXTINF:-1 tvg-id="MetropoleNewsTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cmn.tv.br/images/logo_cmn.fw.png" group-title="News",Canal Metropolitano de Noticias (720p) [Not 24/7] +http://in.uaimacks.net.br:1935/macks/macks.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSaude.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/MXhHP6U.png" group-title="",Canal Saúde (360p) [Not 24/7] +https://arkyvbre1g.zoeweb.tv/fiocruz/fiocruz/playlist.m3u8 +#EXTINF:-1 tvg-id="CatveFM.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/w89yw36.png" group-title="General",Catve FM (720p) [Not 24/7] +https://5b33b873179a2.streamlock.net:1443/radiocamera/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CatveMasterTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4m7Iazm.png" group-title="General",Catve Master TV (720p) [Timeout] +https://5b33b873179a2.streamlock.net:1443/mastertv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Catve2.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/qiVfsfB.png" group-title="General",Catve2 (720p) [Timeout] +https://5b33b873179a2.streamlock.net:1443/catve2/catve2/playlist.m3u8 +#EXTINF:-1 tvg-id="CBNRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/FZwHq8k.png" group-title="News",CBN Rio (720p) +https://medias.sgr.globo.com/hls/vCBNRJ/vCBNRJ.m3u8 +#EXTINF:-1 tvg-id="CBNSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/FZwHq8k.png" group-title="News",CBN São Paulo (720p) +https://medias.sgr.globo.com/hls/vCBNSP/vCBNSP.m3u8 +#EXTINF:-1 tvg-id="CentralTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/6QcsihL.jpg" group-title="",Central TV (1080p) [Offline] +http://serv2.videovox.pw/joaorodrigo7309/joaorodrigo7309/playlist.m3u8 +#EXTINF:-1 tvg-id="COMBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/c8ztQnF.png" group-title="General",COM Brasil (720p) [Not 24/7] +https://596639ebdd89b.streamlock.net/8032/8032/playlist.m3u8 +#EXTINF:-1 tvg-id="CulturaPara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5jPEI5c.png" group-title="General",Cultura Pará (480p) [Not 24/7] +http://str.portalcultura.com.br/funtelpa/tv_funtelpa/live.m3u8 +#EXTINF:-1 tvg-id="TVCulturaNacional.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_cultura_m.png" group-title="General",Cultura PR Catve (720p) [Timeout] +http://wowza4.catve.com.br:1935/live/livestream/media.m3u8 +#EXTINF:-1 tvg-id="FonteTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4lnSlOZ.png" group-title="Religious",Fonte TV (1080p) [Not 24/7] +http://flash.softhost.com.br:1935/fonte/fontetv/live.m3u8 +#EXTINF:-1 tvg-id="Futura.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Canal_Futura.png/300px-Canal_Futura.png" group-title="Education",Futura (540p) [Not 24/7] +https://tv.unisc.br/hls/test.m3u8 +#EXTINF:-1 tvg-id="GhostTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/ZVO8GVI.png" group-title="Movies",Ghost TV (480p) [Not 24/7] +https://stmv.video.expressolider.com.br/ghostv/ghostv/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelCartoon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/aoq9CGU.png" group-title="Religious",Gospel Cartoon (480p) [Offline] +https://stmv1.srvstm.com/gospelcartoon2/gospelcartoon2/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelMovieTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://ipgo.xyz/tv/gmovies/imagens/logo_gospelf_site.png" group-title="Religious",Gospel Movie TV (360p) +https://stmv1.srvif.com/gospelf/gospelf/playlist.m3u8 +#EXTINF:-1 tvg-id="HotFM.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://imgur.com/hvm6Npo.png" group-title="",Hot FM SP (720p) [Not 24/7] +http://flash8.crossdigital.com.br/id2266/id2266/playlist.m3u8 +#EXTINF:-1 tvg-id="IMPDTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/D15qpCm.png" group-title="Religious",IMPD TV (720p) +https://58a4464faef53.streamlock.net/impd/ngrp:impd_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/6/63/Logo-istv.png" group-title="General",ISTV (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-9883/LVW9883_lFcfKysrHF/chunklist.m3u8 +#EXTINF:-1 tvg-id="ITV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i1.wp.com/itu.tv.br/wp-content/uploads/2020/03/cropped-favicon.png" group-title="Local",ITV (480p) [Not 24/7] +http://tv02.logicahost.com.br:1935/itutv/itutv/live.m3u8 +#EXTINF:-1 tvg-id="JovemPanNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Jovem_Pan_logo_2018.svg/320px-Jovem_Pan_logo_2018.svg.png" group-title="News",Jovem Pan News (1080p) [Not 24/7] +https://d6yfbj4xxtrod.cloudfront.net/out/v1/7836eb391ec24452b149f3dc6df15bbd/index.m3u8 +#EXTINF:-1 tvg-id="KpopTVPlay.br" tvg-country="BR" tvg-language="Korean" tvg-logo="https://kpoptv.live/wp-content/uploads/2021/10/logokpoptvplay.png" group-title="Music",KpopTV Play (720p) [Not 24/7] +https://srv1.zcast.com.br/kpoptv/kpoptv/playlist.m3u8 +#EXTINF:-1 tvg-id="MKKWebTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TDEDNLK.png" group-title="General",MKK Web TV (480p) [Not 24/7] +https://video01.logicahost.com.br/mkkwebtv/mkkwebtv/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaEraTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IK3F9Uq.png" group-title="Local",Nova Era TV (1080p) [Not 24/7] +http://wz3.dnip.com.br:1935/novaeratv/novaeratv.sdp/live.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (720p) +https://stream.live.novotempo.com/tv/smil:tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) +http://stream.novotempo.com:1935/tv/smil:tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) +http://stream.novotempo.com:1935/tv/tvnovotempo.smil/live.m3u8 +#EXTINF:-1 tvg-id="NovoTempo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Novo Tempo (480p) +http://stream.novotempo.com/tv/tvnovotempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NuevoTiempo.br" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="Religious",Nuevo Tiempo (720p) [Not 24/7] +https://stream.live.novotempo.com/tv/smil:tvnuevotiempo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PeruChannel.br" tvg-country="BR;PE" tvg-language="Portuguese;Spanish" tvg-logo="https://i.imgur.com/01KEiEp.png" group-title="General",Perú Channel (720p) [Not 24/7] +https://stmv1.duvoxtv.com.br/novelaplz/novelaplz/playlist.m3u8 +#EXTINF:-1 tvg-id="PUCTVGoias.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.puctvgoias.com.br/img/logo.png" group-title="Religious",PUC TV Goiás (326p) [Not 24/7] +http://flash.softhost.com.br:1935/pucgoias/aovivo/live.m3u8 +#EXTINF:-1 tvg-id="RecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c7/Logotipo_da_Record_News_%282016%29.png" group-title="News",Record News (720p) [Geo-blocked] +https://playplusnews-lh.akamaihd.net/i/pp_nws@377849/master.m3u8 +#EXTINF:-1 tvg-id="RecordBelem.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Belem (720p) [Geo-blocked] +https://playpluspa-lh.akamaihd.net/i/pp_pa@377468/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="Record.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Brasilia (720p) [Geo-blocked] +https://playplusbsa-lh.akamaihd.net/i/pp_bsa@377860/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordGoias.Br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Goias (720p) [Geo-blocked] +https://playplusgoya-lh.akamaihd.net/i/pp_gna@377833/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordItapoan.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Itapoan (720p) [Geo-blocked] +https://playplussdr-lh.akamaihd.net/i/pp_sdr@377858/index_720_av-b.m3u8 +#EXTINF:-1 tvg-id="Record.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Manaus (720p) [Geo-blocked] +https://playplusmao-lh.akamaihd.net/i/pp_mao@409195/master.m3u8 +#EXTINF:-1 tvg-id="RecordMinas.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Minas (720p) [Geo-blocked] +https://playplusbh-lh.akamaihd.net/i/pp_bh@377862/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV Rio (720p) [Geo-blocked] +https://playplusrjo-lh.akamaihd.net/i/pp_rj@377859/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordPortoAlegre.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV RS (720p) [Geo-blocked] +https://playpluspoa-lh.akamaihd.net/i/pp_poa@377864/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RecordSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",Record TV SP (720p) [Geo-blocked] +https://playplusspo-lh.akamaihd.net/i/pp_sp@350176/index_720_av-p.m3u8 +#EXTINF:-1 tvg-id="RedeBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/3/39/Logotipo_da_Rede_Brasil_de_Televis%C3%A3o.png/300px-Logotipo_da_Rede_Brasil_de_Televis%C3%A3o.png" group-title="General",Rede Brasil (480p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/rbtv/rbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeBrasildeComunicacao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://portal.rbc1.com.br/public/portal/img/layout/logorbc.png" group-title="Religious",Rede Brasil de Comunicação (720p) [Not 24/7] +http://rbc.directradios.com:1935/rbc/rbc/live.m3u8 +#EXTINF:-1 tvg-id="RedeCNTCuritiba.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cnt.com.br/public/dist/assets/myDev/image/global/logo.png" group-title="Local",Rede CNT (Curitiba) (360p) [Not 24/7] +https://dd8umsy8yf96u.cloudfront.net/live/cnt-curitiba.m3u8 +#EXTINF:-1 tvg-id="RedeCNTSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.cnt.com.br/public/dist/assets/myDev/image/global/logo.png" group-title="Local",Rede CNT (São Paulo) (360p) [Not 24/7] +https://dd8umsy8yf96u.cloudfront.net/live/cnt-americana.m3u8 +#EXTINF:-1 tvg-id="RedeFamilia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.redefamilia.com.br/wp-content/themes/redefamilia/assets/images/logo20anos-branco.png" group-title="",Rede Família (720p) [Not 24/7] +https://5a1c76baf08c0.streamlock.net/familia/smil:familia.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGloboRiodeJaneiro.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/q7pYaJR.png" group-title="Sports",Rede Globo RJ (720p) [Offline] +http://live.video.globo.com/h/1402196682759012345678915746027599876543210hM4EA1neMoQoIiUyVn1TNg/k/app/a/A/u/anyone/d/s/hls-globo-rj/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeGospel.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/yvxG9m5.png" group-title="Religious",Rede Gospel (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8719/LVW8719_AcLVAxWy5J/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeMaoAmiga.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/cqD6DNY.png" group-title="Religious",Rede Mão Amiga (480p) [Not 24/7] +http://streaming03.zas.media:1935/redemaoamiga/redemaoamiga/live.m3u8 +#EXTINF:-1 tvg-id="RedeMinas.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Tgov03S.jpg" group-title="Education",Rede Minas (1080p) [Not 24/7] +https://v4-slbps-sambavideos.akamaized.net/live/3282,8114,ec4b5a296d97fa99bf990662f5b4f8e1;base64np;Mc8VDxqNjXKCAf8!/amlst:Mc_tFgfGiHOdQXPB/chunklist_.m3u8 +#EXTINF:-1 tvg-id="RedeRC.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/nc95BPy.png" group-title="Local",Rede RC (360p) [Not 24/7] +http://tv02.logicahost.com.br:1935/rederc/rederc/live.m3u8 +#EXTINF:-1 tvg-id="RedeSeculo21.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vvrCWVo.jpg" group-title="Religious",Rede Século 21 (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-10024/ngrp:LVW10024_H3QLdAY6kx_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeSuper.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/3ODbxcM.png" group-title="Religious",Rede Super (432p) [Not 24/7] +https://api.new.livestream.com/accounts/10205943/events/3429501/live.m3u8 +#EXTINF:-1 tvg-id="RedeTVES.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! ES (720p) [Offline] +https://hls.brasilstream.com.br/live/redetves/redetves/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPampa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! Pampa (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvpampa/tvpampa/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.livetvnews.com.br/wp-content/uploads/2019/03/Logo-RedeTV.png" group-title="General",Rede TV! SP (720p) [Not 24/7] +https://hls.brasilstream.com.br/live/redetv/redetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeVida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Rede_Vida_logo.png/267px-Rede_Vida_logo.png" group-title="Religious",Rede Vida (720p) [Not 24/7] +https://cvd1.cds.ebtcvd.net/live-redevida/smil:redevida.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeTVTocantins.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/8fGmJWA.png" group-title="General",RedeTV! Tocantins (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/redetvro/redetvro/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCartoon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/cyfu3qP.png" group-title="Classic",Retrô Cartoon (480p) [Not 24/7] +https://stmv1.srvif.com/retrotv/retrotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SantaCeciliaTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/KxYsq1d.png" group-title="Education",Santa Cecilia TV (288p) [Not 24/7] +http://flash1.crossdigital.com.br/2063/2063/playlist.m3u8 +#EXTINF:-1 tvg-id="RedeMassa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-massa_m.png" group-title="General",SBT Rede Massa (720p) [Not 24/7] +https://cdn-cdn-iguacu.ciclano.io:1443/cdn-iguacu/cdn-iguacu/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadeVerde.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-cidade-verde-hd_m.png" group-title="General",SBT TV Cidade Verde (1080p) [Not 24/7] +https://stmv1.transmissaodigital.com/cidadeverde/cidadeverde/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IUDRW8l.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",SBT TV Jornal Caruaru (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/ne10/ne10-tvjornal-caruaru-video-web.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/IUDRW8l.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",SBT TV Jornal Recife (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://evpp.mm.uol.com.br/ne10/ne10.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSerraDourada.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-serra-dourada-hd_m.png" group-title="General",SBT TV Serra Dourada (720p) [Not 24/7] +https://5a1c76baf08c0.streamlock.net/tvsd2/smil:tvsd2_20042020.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SescTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://sesctv.org.br/wp-content/uploads/2018/06/SESCTV-ICON.png" group-title="Music",Sesc TV (1080p) [Not 24/7] +https://slbps-ml-sambatech.akamaized.net/samba-live/2472/7424/8a00fe7cc36ac263b2c3e9324497d5ff/video/0c884f97-4264-446f-abcd-03aa46089a96_index.m3u8 +#EXTINF:-1 tvg-id="TELECINEACTION.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Telecine_Action_2.png/320px-Telecine_Action_2.png" group-title="Movies",TELE CINE ACTION (720p) +http://painelvj.com.br/tvaguaboa2/tvaguaboa2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TerraViva.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hBaG4Ce.png" group-title="Outdoor",Terra Viva (720p) [Not 24/7] +http://evpp.mm.uol.com.br:1935/band_live/terraviva/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAberta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1pZUGb4.png" group-title="General",TV Aberta (1080p) [Not 24/7] +https://cdn-canalpaulo.ciclano.io:1443/canalpaulo/canalpaulo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVALMG.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.almg.gov.br/export/sites/default/biblioteca/imagens/logo_facebook.png" group-title="Legislative",TV ALMG (720p) +https://streaming.almg.gov.br/live/tvalmg.m3u8 +#EXTINF:-1 tvg-id="TVAlternativa.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VnlWeo3.png" group-title="General",TV Alternativa (614p) [Not 24/7] +http://stmv8.conectastm.com/wagner1168/wagner1168/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAparecida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/1/1e/Logotipo_da_TV_Aparecida.png" group-title="Religious",TV Aparecida (1080p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-9716/LVW9716_HbtQtezcaw/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBirigui.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VqIzaFz.png" group-title="General",TV Birigui (320p) +http://tv02.logicahost.com.br:1935/tvdigitalbirigui/tvdigitalbirigui/live.m3u8 +#EXTINF:-1 tvg-id="TVBirigui.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VqIzaFz.png" group-title="General",TV Birigui (320p) +https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/tvdigitalbirigui/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBNO.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.tvbno.com.br/images/LOGOTIPO-BNO-1.png" group-title="Music",TV BNO (270p) [Not 24/7] +http://tv02.logicahost.com.br:1935/bonner/bonner/live.m3u8 +#EXTINF:-1 tvg-id="TVBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/1/1c/Logotipo_da_TV_Brasil.png" group-title="General",TV Brasil [Timeout] +https://edge-rj-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(kyMRVuhfTf2jk2bhk4oZVw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGXTwBm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuhde-5ZIl_f4tK0pFaa_lpv5gVXuaKHBhpJxYHQpAySe8UfuTry1gihrKpUq-DVrvTLAVcN_NYL-OR5gME)'t(ccA)b(Q_39q61nTExyyL-LZijmcTvd7twmucXBiaA)))/live_720_index.m3u8 +#EXTINF:-1 tvg-id="TVCamara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/UpV2PRk.png" group-title="Legislative",TV Câmara (1080p) +https://stream3.camara.gov.br/tv1/manifest.m3u8 +#EXTINF:-1 tvg-id="TVCamara2.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/UpV2PRk.png" group-title="Legislative",TV Câmara 2 (1080p) [Not 24/7] +https://stream3.camara.gov.br/tv2/manifest.m3u8 +#EXTINF:-1 tvg-id="saopaulo.sp.leg.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/Logo_tvcamara_.png/320px-Logo_tvcamara_.png" group-title="Legislative",TV Camara de Sao Paulo (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8711/ngrp:LVW8711_tG0F3TEBDL_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCapitalLucelia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://radiocapitalfm777.com/images/415d46e69bdae8276a4cc5cba9cd3d10.jpg" group-title="",TV Capital Lucelia (720p) [Not 24/7] +http://tv02.logicahost.com.br:1935/tvcapital/tvcapital/live.m3u8 +#EXTINF:-1 tvg-id="TVCarioca.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pbr-str.srvsite.com/arquivos/7051/cabecalho-7051-20200320104612.png" group-title="General",TV Carioca (720p) +https://srv5.zcast.com.br/tvcarioca/tvcarioca/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadeCanal9.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/mbw27tW.png" group-title="Local",TV Cidade Canal 9 (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvcidade/tvcidade/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadedePetropolis.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/jaaGxnd.png" group-title="Local",TV Cidade de Petrópolis (1080p) [Not 24/7] +https://video01.kshost.com.br:4443/inside2133/inside2133/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCidadedeSaoPaulo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/8/88/Logotipo_da_TV_Cidade_de_S%C3%A3o_Paulo.png/200px-Logotipo_da_TV_Cidade_de_S%C3%A3o_Paulo.png" group-title="Local",TV Cidade de Sao Paulo [Not 24/7] +https://cast.cdnseguro.com:19360/8012/8012.m3u8 +#EXTINF:-1 tvg-id="TVCinec.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/bEoN2tt.png" group-title="",TV Cinec (360p) [Not 24/7] +http://tv01.logicahost.com.br:1935/tvcinec/tvcinec/live.m3u8 +#EXTINF:-1 tvg-id="TVDestak.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W1LutVP.png" group-title="General",TV Destak (360p) +http://tv02.logicahost.com.br:1935/pascoal/pascoal/live.m3u8 +#EXTINF:-1 tvg-id="TVDestak.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W1LutVP.png" group-title="General",TV Destak (320p) +https://59f2354c05961.streamlock.net:1443/pascoal/pascoal/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDiariodoSertao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/uBntXf1.png" group-title="General",TV Diário do Sertão (720p) +http://painelvj.com.br:1935/pdsertaotv/pdsertaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEscola.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pt.wikipedia.org/wiki/Ficheiro:TV_Escola.png" group-title="Education",TV Escola [Timeout] +https://edge-pe-01.eduplay.rnp.br/media/ocp(r(SOtSyQ)t(AAAAAAAAAAA)p(d(ADo)k(EBE)m(iKyPRJ66GZqYJf0OVp_mxw)n(a(kLbutb9FljfAzjoWmXgS8Rnp6_GUlkq0)s(rRg)'a(T-aZqqGVQABm6ZHJp3tHyyjZ)s(fvc)))s(t(eT8)b(6P9w9Nu8wcNIUaKqkTKqXRWNHWIhMz8mxUoA4mgo1tqnqVYwaZMCmldOaMbaZB0n33FR3ttihZ1JvOivSGdZIuAfecBVa16Et9eMjlLC13Rq6Cwwi8mycU0Iwr-66QiAe98vgBCT-AiPs61W_9bjrtb8ATEJw-JsxpVNlotY)'t(wDM)b(pbCqvGJQQWqY9cAtI-9-O9bngy67xc2Xu8ug)))/live_540_index.m3u8 +#EXTINF:-1 tvg-id="TVEvangelizar.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/4LG6sA0.png" group-title="Religious",TV Evangelizar (480p) +https://5f593df7851db.streamlock.net/evangelizar/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVFuturo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/BFekw0L.png" group-title="General",TV Futuro (720p) [Not 24/7] +https://streaming03.zas.media/tvfuturo/tvfuturo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGalegaBlumenau.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://ps.srvsite.com/arquivos/5757/cabecalho-5757-20190807171022.png" group-title="Local",TV Galega Blumenau (720p) [Not 24/7] +https://cdn.jmvstream.com/w/LVW-8538/LVW8538_KBtZ9UMIZn/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGazeta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/MAMGt7I.png" group-title="General",TV Gazeta (720p) [Not 24/7] +https://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 +#EXTINF:-1 tvg-id="TVGideoes.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.gideoes.com.br/wp-content/uploads/2018/12/logotipo-tvgideoes.png" group-title="Religious",TV Gideoes (720p) [Not 24/7] +https://streaming01.zas.media/gideoes/programacao/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGuara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/PafEXRA.png" group-title="General",TV Guará (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvguara/tvguara/playlist.m3u8 +#EXTINF:-1 tvg-id="TVInterlagos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.tvinterlagos.com.br/images/logo_tv2.jpg" group-title="Local",TV Interlagos (480p) [Not 24/7] +http://tv.tvalphanet.com.br:1935/tvinterlagos/tvinterlagos/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJornaldoNordeste.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://pa-str.srvsite.com/arquivos/5459/cabecalho-5459-20200226161907.png" group-title="Local",TV Jornal do Nordeste (720p) [Not 24/7] +https://5cf4a2c2512a2.streamlock.net/jornaldonorteste/jornaldonorteste/playlist.m3u8 +#EXTINF:-1 tvg-id="TVLiberdade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/W6bHHqE.png" group-title="",TV Liberdade (720p) [Geo-blocked] +https://5c483b9d1019c.streamlock.net/8238/8238/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMackenzie.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/TV_Mackenzie_logo.svg/320px-TV_Mackenzie_logo.svg.png" group-title="Education",TV Mackenzie (480p) [Not 24/7] +https://player.internetaovivo.com:8443/live_tvmackenzieabr/tvmackenzieabr/playlist.m3u8 +#EXTINF:-1 tvg-id="TVManchete.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VeELX7K.png" group-title="General",TV Manchete (360p) [Offline] +https://srv5.zcast.com.br/tvmanchete/tvmanchete/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMAX.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/2Pg0baJ.png" group-title="",TV MAX (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/tvmax/tvmax/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMetropole.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/thumb/9/92/Logotipo_da_TV_Metr%C3%B3pole.png/300px-Logotipo_da_TV_Metr%C3%B3pole.png" group-title="General",TV Metropole (720p) [Not 24/7] +https://cdn-fundacao-2110.ciclano.io:1443/fundacao-2110/fundacao-2110/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMetropolitanaRio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Elyp4SG.png" group-title="Local",TV Metropolitana Rio (480p) [Offline] +https://59f1cbe63db89.streamlock.net:1443/caxiastv/caxiastv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMon.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/j7EJvHr.png" group-title="Local",TV Mon (720p) +https://srv1.zcast.com.br/tvmon/tvmon/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNovaOnda.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1dCdBM5.png" group-title="Local",TV Nova Onda (720p) +https://5c483b9d1019c.streamlock.net/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPaiEterno.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.paieterno.com.br/wp-content/uploads/2019/05/cropped-logo-portal-01-192x192.png" group-title="Religious",TV Pai Eterno (480p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/teste01/teste01/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPaiEterno.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.paieterno.com.br/wp-content/uploads/2019/05/cropped-logo-portal-01-192x192.png" group-title="Religious",TV Pai Eterno (360p) [Not 24/7] +http://flash8.crossdigital.com.br/2306/2306/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPantanalMS.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/0FOmktl.png" group-title="Local",TV Pantanal MS (720p) [Not 24/7] +https://5e837408ea907.streamlock.net:1936/tvpantanalms/tvpantanalms/playlist.m3u8 +#EXTINF:-1 tvg-id="TVParanaTurismo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/3lxkJxb.png" group-title="Travel",TV Paraná Turismo (720p) [Not 24/7] +http://200.189.113.201/hls/tve.m3u8 +#EXTINF:-1 tvg-id="TVPocos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tvpocos.com.br/wp-content/uploads/2017/04/logo_branca_125.png" group-title="Local",TV Poços (192p) [Not 24/7] +http://rtmp.cdn.upx.net.br/00084/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSantaCruz.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.tvsantacruzcr.net/img/logotvsc.png" group-title="Local",TV Santa Cruz (720p) [Not 24/7] +https://rtmp.info/tvsantacruz/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSERIES.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://image.winudf.com/v2/image/Y29tLnR2c2VyaWVzLmdyYXRpc19zY3JlZW5fMF8xNTEzODc0NTE1XzA2OA/screen-0.jpg?fakeurl=1&type=.jpg" group-title="",TV SERIES (480p) [Offline] +https://stmv1.srvstm.com/tvserie/tvserie/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSolComunidade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tvsolcomunidade.com.br/wp-content/uploads/2019/01/logo-tv-sol.png" group-title="Local",TV Sol Comunidade (480p) [Not 24/7] +http://streaming03.zas.media:1935/tvsol/tvsol/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTerceiroAnjo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.terceiroanjo.com/static/img/logo-2019-gif.gif" group-title="Religious",TV Terceiro Anjo (360p) [Not 24/7] +https://streamer1.streamhost.org/salive/GMI3anjoh/livestream.m3u8 +#EXTINF:-1 tvg-id="TVThathi.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://tv.thathi.com.br/wp-content/uploads/2021/02/tv-thathi-150x150.png" group-title="General",TV Thathi (720p) [Not 24/7] +https://cdn-grupo-10049.ciclano.io:1443/grupo-10049/grupo-10049/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTokyo.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/TV_Tokyo_logo_20110629.svg/320px-TV_Tokyo_logo_20110629.svg.png" group-title="Animation",TV Tokyo (720p) [Not 24/7] +https://stmv1.voxtvhd.com.br/tvtokio/tvtokio/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTropical.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TD6ZJoa.png" group-title="General",TV Tropical (480p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvtropical/tvtropical/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUFG.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Yp3dbJo.png" group-title="Education",TV UFG (720p) [Not 24/7] +http://flash.softhost.com.br:1935/ufg/tvufgweb/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUFOP.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.upf.br/Assets/img/logo.png" group-title="Science",TV UFOP [Timeout] +https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(6pbmcjLXNoerDLdAhoXBxw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuXyAosvuqvlMJtsMkooySBOlQbVM33PgsYPQdea2CdwV3jCwh3bEWxgkPO8qmBPQtt_5bUEV1Mi_2t1AjM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcUr5z4MZQ)))/index.m3u8 +#EXTINF:-1 tvg-id="TVUniaoFortaleza.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-uni-o_m.png" group-title="Local",TV Uniao (1080p) [Not 24/7] +http://stmv1.ifantasy.com.br/admin/admin/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUniSantos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.tvunisantos.com.br/images/resource/logo.png" group-title="Local",TV UniSantos (240p) [Not 24/7] +http://live.cdn.upx.com/7550/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUniversal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TIsk5zN.png" group-title="Religious",TV Universal [Offline] +https://14398c.ha.azioncdn.net/primary/smil:tv_universal.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVVerdesCampos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/1mK39TC.png" group-title="General",TV Verdes Campos (360p) [Not 24/7] +https://596639ebdd89b.streamlock.net/8124/8124/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCI.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/dc/Logo_RCI.png" group-title="Local",TVCI (360p) [Not 24/7] +http://flash8.crossdigital.com.br:1935/2306/2306/live.m3u8 +#EXTINF:-1 tvg-id="TVEBahia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/TVE_Bahia_logo.svg/800px-TVE_Bahia_logo.svg.png" group-title="Local",TVE Bahia (720p) [Not 24/7] +http://stream2.ba.gov.br/hls-live/livepkgr/_definst_/irdeb/pgm-1.m3u8 +#EXTINF:-1 tvg-id="TVE.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c2/Logotipo_da_TVE_RS.png" group-title="Education",TVE RS (1080p) [Not 24/7] +http://selpro1348.procergs.com.br:1935/tve/stve/playlist.m3u8 +#EXTINF:-1 tvg-id="TVideoNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vstHOYx.png" group-title="News",TVídeoNews (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvideonews/_definst_/tvideonews/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVMaticComedy.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="Comedy",TVMatic Comedy (720p) [Timeout] +http://cdn.tvmatic.net/comedy.m3u8 +#EXTINF:-1 tvg-id="TVMaticCrafts.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Crafts (720p) [Timeout] +http://cdn.tvmatic.net/crafts.m3u8 +#EXTINF:-1 tvg-id="TVMaticFacebook.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Facebook (720p) [Timeout] +http://cdn.tvmatic.net/facebook.m3u8 +#EXTINF:-1 tvg-id="TVMaticFight.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Fight (720p) [Timeout] +http://cdn.tvmatic.net/fight.m3u8 +#EXTINF:-1 tvg-id="TVMaticFunny.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Funny (720p) [Timeout] +http://cdn.tvmatic.net/funny.m3u8 +#EXTINF:-1 tvg-id="TVMaticSport.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic Sport (720p) [Timeout] +http://cdn.tvmatic.net/sport.m3u8 +#EXTINF:-1 tvg-id="TVMaticTikTok.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/l5PBcKN.png" group-title="",TVMatic TikTok (720p) [Timeout] +http://cdn.tvmatic.net/tiktok.m3u8 +#EXTINF:-1 tvg-id="TVNBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Cywnp02.png" group-title="Local",TVN Brasil (720p) [Not 24/7] +http://painelvj.com.br:1935/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNBrasil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Cywnp02.png" group-title="Local",TVN Brasil (720p) [Not 24/7] +http://wz3.dnip.com.br/tvnbrasil/tvnbrasil.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVunisat.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/x6rVrTt.png" group-title="Local",TVunisat (720p) [Not 24/7] +https://stmv1.srvstm.com/jurandir3193/jurandir3193/playlist.m3u8 +#EXTINF:-1 tvg-id="UNBTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Webysther_20160322_-_Logo_UnB_(sem_texto).svg/200px-Webysther_20160322_-_Logo_UnB_(sem_texto).svg.png" group-title="Science",UNBTV [Timeout] +https://edge-go-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(XavC51HboPDZJtji_e3szw)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdjsnrQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyuX9AbUB8KvlMJtsMkooySBOlQbVM33PgsYPQdea2BJ0ehzbwQ39JhRwi_LnomRVQOY02rJ-d2IH3hF-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kcVqJj_MZQ)))/live_1080_index.m3u8 +#EXTINF:-1 tvg-id="UniTVPortoAlegre.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="http://www.ufrgs.br/unitv/images/logo.png" group-title="Education",UniTV Porto Alegre (480p) +http://unitvaovivo.ufrgs.br:8080/live.ogg +#EXTINF:-1 tvg-id="UPFTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://www.upf.br/Assets/img/logo.png" group-title="Local",UPFTV [Timeout] +https://edge-df-01.eduplay.rnp.br/media/ocp(r(iRGrcw)t(AAAAAAAAAAA)p(d(Dxg)k(Qdk)m(Zpw89V7JSRj33uzTBmvflA)n(a(3LDBWxJLACwHVOavx5cO4BC5lA2ZDpPC)s(HrY)'a(12ztgSdgu3rQqz6xH52ZjVZa)s(Pm8)))s(t(aTo)b(PTsuEXhXAScNjp6w9ssG70foQQQiZk9_8m0vsjgLJ_yzxGPuj8i57PEDMMA4cmTNsKda2B5oX-EEErouZ1HFyvnyAaUn8qvlMJtsMkooySBOlQbVM33PgsYPQdea2BUvej3szg6oEmxOu__mykl-Ud831Jp-clI-5BB-JDM)'t(S2o)b(WaBWYarWoWCInKe38WSze3Q_-kAUqZ79MZQ)))/live_768_index.m3u8 +#EXTINF:-1 tvg-id="WhamTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vxg8fKd.jpg" group-title="Music",Wham TV (720p) [Offline] +https://srv5.zcast.com.br/andre4369/andre4369/playlist.m3u8 +#EXTINF:-1 tvg-id="Yeeaah.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/TxdOyKS.png" group-title="General",Yeeaah! (720p) [Not 24/7] +https://srv3.zcast.com.br/yeeaah/yeeaah/playlist.m3u8 diff --git a/channels/br_pluto.m3u b/channels/br_pluto.m3u new file mode 100644 index 000000000..616b7817c --- /dev/null +++ b/channels/br_pluto.m3u @@ -0,0 +1,123 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AVidaModernaDeRocko.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6df6293a12e10007017396/colorLogoPNG.png" group-title="Kids",A vida moderna de Rocko (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="AsAventurasDeJackieChan.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6079c1539b05aa0007a57495/colorLogoPNG.png" group-title="Kids",As Aventuras de Jackie Chan (684p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c1539b05aa0007a57495/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="AsPistasDeBlue.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f99aad4e82db50007fac4b2/colorLogoPNG.png" group-title="Kids",As Pistas de Blue (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Babyfirst.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f4fb4cf605ddf000748e16f/colorLogoPNG.png" group-title="Kids",Babyfirst (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f4fb4cf605ddf000748e16f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="BetBeingMaryJane.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60a8126a0ac3970007f850fe/colorLogoPNG.png" group-title="Entertainment",BET Being Mary Jane (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60a8126a0ac3970007f850fe/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="BetPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5ff768b6a4c8b80008498610/colorLogoPNG.png" group-title="Entertainment",BET Pluto TV (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff768b6a4c8b80008498610/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="ComedyCentralPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f357e91b18f0b00073583d2/colorLogoPNG.png" group-title="Comedy",Comedy Central Pluto TV (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f357e91b18f0b00073583d2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="ComedyCentralSouthPark.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/609ae66b359b270007869ff1/colorLogoPNG.png" group-title="Comedy",Comedy Central South Park (720p) [Not 24/7] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/609ae66b359b270007869ff1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="FailArmy.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5141c1605ddf000748eb1b/colorLogoPNG.png" group-title="Comedy",FailArmy (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="FilmesSuspense.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171d3442a0500007362f22/colorLogoPNG.png" group-title="Movies",Filmes Suspense (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="FuelTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6144d088516ea8000739076a/colorLogoPNG.png" group-title="Sports",FUEL TV (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6144d088516ea8000739076a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="GuiaDeCanais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fa97a8a75cc210007c9041d/colorLogoPNG.png" group-title="",Guia de Canais (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa97a8a75cc210007c9041d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="JeannieEUmGenio.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6079c058aa05ac0007d10054/colorLogoPNG.png" group-title="Series",Jeannie é um Gênio (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c058aa05ac0007d10054/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="JovemPanPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/602e80c762306a0007179876/colorLogoPNG.png" group-title="Entertainment",Jovem Pan Pluto TV (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/602e80c762306a0007179876/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Loupe.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/600b248969c6580007e91a2d/colorLogoPNG.png" group-title="Lifestyle",Loupe (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/600b248969c6580007e91a2d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Masterchef.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6077045b6031bd00078de127/colorLogoPNG.png" group-title="Entertainment",MasterChef (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6077045b6031bd00078de127/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="MTVAreYouTheOne.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6108d8cc331900075e98e4/colorLogoPNG.png" group-title="Entertainment",MTV Are you the One? (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="MTVBiggestPop.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6047fbdbbb776a0007e7f2ff/colorLogoPNG.png" group-title="Music",MTV Biggest Pop (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047fbdbbb776a0007e7f2ff/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="MTVPlutoTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1212fb81e85c00077ae9ef/colorLogoPNG.png" group-title="Entertainment",MTV Pluto TV (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="MTVSpankinNew.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6047ff2e5e61cf000784e4da/colorLogoPNG.png" group-title="Music",MTV Spankin' New (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047ff2e5e61cf000784e4da/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Naruto.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f6df5a173d7340007c559f7/colorLogoPNG.png" group-title="Animation",Naruto (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="NickClassico.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12151794c1800007a8ae63/colorLogoPNG.png" group-title="Kids",Nick Clássico (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="NickJrClub.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121460b73ac6000719fbaf/colorLogoPNG.png" group-title="Kids",Nick Jr. Club (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="NickTeen.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60f5fabf0721880007cd50e3/colorLogoPNG.png" group-title="Family",Nick Teen (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f5fabf0721880007cd50e3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="NoseyCasos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f9b096236af340008da3779/colorLogoPNG.png" group-title="Entertainment",Nosey Casos (720p) [Offline] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b096236af340008da3779/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="NoseyEscandalos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f9b05a99547eb0007676b02/colorLogoPNG.png" group-title="Entertainment",Nosey Escândalos (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b05a99547eb0007676b02/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="OEncantadorDeCaes.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/61099df8cee03b00074b2ecf/colorLogoPNG.png" group-title="Entertainment",O Encantador de Cães (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/61099df8cee03b00074b2ecf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="OReinoInfantil.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5c216df68f920007888315/colorLogoPNG.png" group-title="Kids",O Reino Infantil (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5c216df68f920007888315/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="ParamountPlusApresenta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60072798dcf437000755b4f3/colorLogoPNG.png" group-title="General",Paramount+ Apresenta (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60072798dcf437000755b4f3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PeopleAreAwesome.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f515d080e738d000739e19c/colorLogoPNG.png" group-title="Entertainment",People are Awesome (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVAnime.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12136385bccc00070142ed/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVAnimeAcao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b79c558393100078faeef/colorLogoPNG.png" group-title="Animation",Pluto TV Anime Ação (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b79c558393100078faeef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineClassicos" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fa1612a669ba0000702017b/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Clássicos (480p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa1612a669ba0000702017b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineComedia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12101f0b12f00007844c7c/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Comédia (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineDrama.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1210d14ae1f80007bafb1d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineFamilia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Família (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineRomance.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f171f988ab9780007fa95ea/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Romance (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f988ab9780007fa95ea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineSucessos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f120e94a5714d00074576a1/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Sucessos (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120e94a5714d00074576a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCineTerror.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12111c9e6c2c00078ef3bb/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVComedia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6001f3018502100007f528ac/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédia (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6001f3018502100007f528ac/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVEstiloDeVida.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/60f8841a4865da0007421177/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Estilo de Vida (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f8841a4865da0007421177/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVFashionbox.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f516730b78b7600079294f5/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashionbox (720p) [Not 24/7] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f120f41b7d403000783a6d6/colorLogoPNG.png" group-title="Movies",Pluto TV Filmes Ação (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVFilmesNacionais.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f5a545d0dbf7f0007c09408/colorLogoPNG.png" group-title="Movies",Pluto TV Filmes Nacionais (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5a545d0dbf7f0007c09408/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVInvestigacao.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f32cf37c9ff2b00082adbc8/colorLogoPNG.png" group-title="Series",Pluto TV Investigação (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVJunior.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f12141b146d760007934ea7/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVKaraoke.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b99d633a72b00078e05ad/colorLogoPNG.png" group-title="Music",Pluto TV Karaokê por Stingray (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b99d633a72b00078e05ad/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVKids.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1214a637c6fd00079c652f/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVMisterios.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fac52f142044f00078e2a51/colorLogoPNG.png" group-title="Documentary",Pluto TV Mistérios (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fac52f142044f00078e2a51/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVNatureza.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1213ba0ecebc00070e170f/colorLogoPNG.png" group-title="Documentary",Pluto TV Natureza (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVPaisagens.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604a8dedbca75b0007b1c753/colorLogoPNG.png" group-title="",Pluto TV Paisagens por Stingray (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604a8dedbca75b0007b1c753/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVRecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/6102e04e9ab1db0007a980a1/colorLogoPNG.png" group-title="News",Pluto TV Record News (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6102e04e9ab1db0007a980a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVRetro.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f1212ad1728050007a523b8/colorLogoPNG.png" group-title="Series",Pluto TV Retrô (684p) [Not 24/7] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVSeries.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121262a189a800076b9386/colorLogoPNG.png" group-title="Series",Pluto TV Séries (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVShows.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/604b91e0692f770007d9f33f/colorLogoPNG.png" group-title="Music",Pluto TV Shows por Stingray (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b91e0692f770007d9f33f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVVidaReal.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f32d4d9ec194100070c7449/colorLogoPNG.png" group-title="Documentary",Pluto TV Vida Real (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PortaDosFundos.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f36f2346ede750007332d11/colorLogoPNG.png" group-title="Comedy",Porta dos Fundos (720p) [Not 24/7] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Tastemade.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5fd1419a3b4f4b000773ba85/colorLogoPNG.png" group-title="Lifestyle",Tastemade (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="ThePetCollective.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f515ebac01c0f00080e8439/colorLogoPNG.png" group-title="Comedy",The Pet Collective (480p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="Tokusato.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5ff609de50ab210008025c1b/colorLogoPNG.png" group-title="Animation",Tokusato (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff609de50ab210008025c1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="TurmaDaMonica.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f997e44949bc70007a6941e/colorLogoPNG.png" group-title="Kids",Turma da Mônica (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY diff --git a/channels/br_samsung.m3u b/channels/br_samsung.m3u new file mode 100644 index 000000000..877bd9f5d --- /dev/null +++ b/channels/br_samsung.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArcadeCloudBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXOuzsx.png" group-title="",Arcade Cloud (Brazil) (720p) [Offline] +https://arcade-cloud-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-3-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTVBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV Brazil (720p) +https://darkmatter-por-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsPortugues.fr" tvg-country="PT;BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Português (720p) [Offline] +https://euronews-euronews-portugues-1-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) +https://fueltv-fueltv-9-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insight-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) +https://introuble-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) +https://inwild-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Brazil (720p) +https://appletree-mytime-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RecordNews.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/c/c7/Logotipo_da_Record_News_%282016%29.png" group-title="News",Record News (720p) +https://rede-muhler-recordnews-1-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="Movies",Runtime (Brazil) (1080p) [Geo-blocked] +https://runtimebrazil-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeBrasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Brasil (1080p) +https://tastemade-pt16intl-samsungbrazil.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveBrazil.us" tvg-country="BR" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Brazil (720p) [Offline] +https://the-pet-collective-international-br.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyBrazil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Brazil (720p) [Offline] +https://jukin-weatherspy-2-br.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/bs.m3u~master b/channels/bs.m3u~master new file mode 100644 index 000000000..4c42a16a1 --- /dev/null +++ b/channels/bs.m3u~master @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="IslandLuckTV.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://www.islandluck.com/images/logo.png" group-title="Entertainment",Island Luck TV (1080p) [Not 24/7] +https://wowzaprod225-i.akamaihd.net/hls/live/1006296/23aa8a88/playlist.m3u8 +#EXTINF:-1 tvg-id="TheParliamentaryChannel.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://i.imgur.com/35oFiNg.jpg" group-title="Legislative",The Parliamentary Channel (480p) [Not 24/7] +https://cloud.streamcomedia.com/parliamentarychannel/smil:parliamentarychannel_streams.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZNSTV.bs" tvg-country="BS" tvg-language="English" tvg-logo="https://znsbahamas.com/wp-content/uploads/2017/12/ZNS-PL-1.png" group-title="General",ZNS TV (720p) [Not 24/7] +https://cloud.streamcomedia.com/znstv/smil:znstv_streams.smil/playlist.m3u8 diff --git a/channels/by.m3u~master b/channels/by.m3u~master new file mode 100644 index 000000000..8b90927a8 --- /dev/null +++ b/channels/by.m3u~master @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="8kanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/VpWmrEw.png" group-title="Local",8 канал (Витебск) (576p) [Not 24/7] +http://95.46.208.8:24433/art +#EXTINF:-1 tvg-id="Belarus3.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/ru/6/69/Belarus_3.jpg" group-title="News",Беларусь 3 (1080p) [Not 24/7] +https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Belarus4.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/59/Belarus_4.png" group-title="General",Беларусь 4 (576p) [Timeout] +http://95.46.208.8:26258/belarus4 +#EXTINF:-1 tvg-id="Belarus24.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/ru/d/df/Belarus-24.jpg" group-title="News",Беларусь 24 (1080p) +https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Vitebsk.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/plYo16P.jpg" group-title="Local",Витебск (720p) [Not 24/7] +https://flu.vtv.by/tvt-non-by/playlist.m3u8 +#EXTINF:-1 tvg-id="NasheTV.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/FnoSJdh.png" group-title="Local",Наше ТВ (Витебск) (576p) [Timeout] +http://95.46.208.8:26259/nashe +#EXTINF:-1 tvg-id="ONT.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/3qItFtI.png" group-title="General",ОНТ (576p) [Not 24/7] +https://stream.dc.beltelecom.by/ont/ont/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (1080p) +http://rtmp.one.by:1300 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (720p) +http://hz1.teleport.cc/HLS/HD.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (576p) +http://hz1.teleport.cc/HLS/SD.m3u8 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (576p) +http://rtmp.one.by:1200 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyKanal.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://www.crdru.net/b/templates/ottch/onemuz.png" group-title="Music",Первый Музыкальный Канал (2160p) [Timeout] +http://rtmp.one.by:1499 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by" tvg-country="BY" tvg-language="Russian" tvg-logo="http://www.giniko.com/logos/190x110/1043.jpg" group-title="Music",Первый Музыкальный Канал Россия (1080p) +http://rtmp.one.by:2300 +#EXTINF:-1 tvg-id="PervyyMuzykalnyyRossiya.by" tvg-country="BY" tvg-language="Russian" tvg-logo="http://www.giniko.com/logos/190x110/1043.jpg" group-title="Music",Первый Музыкальный Канал Россия (576p) +http://rtmp.one.by:2200 +#EXTINF:-1 tvg-id="RadioHit.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://i.imgur.com/oXoGORi.jpg" group-title="Local",Радио Хит (Орск) (720p) +http://lova.me/hls/hithd.m3u8 +#EXTINF:-1 tvg-id="STV.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/stv-by.png" group-title="General",СТВ (576p) [Not 24/7] +http://212.98.171.116/HLS/ctvby/playlist.m3u8 diff --git a/channels/by_sluhay.m3u b/channels/by_sluhay.m3u new file mode 100644 index 000000000..b0ccde250 --- /dev/null +++ b/channels/by_sluhay.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Sluhayby.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by (720p) [Not 24/7] +https://sluhay.by/live/Ch045pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyAillion.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Aillion (720p) [Not 24/7] +https://sluhay.by/live/Ch149pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyAmoungYourGod.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Among Your God (720p) [Not 24/7] +https://sluhay.by/live/Ch086pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyChrist.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Christ (720p) [Not 24/7] +https://sluhay.by/live/Ch064pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyEDM.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_edm.png" group-title="Music",Sluhay.by EDM (720p) [Not 24/7] +https://sluhay.by/live/Ch091pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyLenadi.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Lenadi (720p) [Not 24/7] +https://sluhay.by/live/Ch052pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyLive.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_live.png" group-title="Music",Sluhay.by Live (720p) [Not 24/7] +https://sluhay.by/live/Ch173pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyMova.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Mova (720p) [Not 24/7] +https://sluhay.by/live/Ch034pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyPop.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_pop.png" group-title="Music",Sluhay.by Pop (720p) [Not 24/7] +https://sluhay.by/live/Ch066pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyRap.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_rap.png" group-title="Music",Sluhay.by Rap (720p) [Not 24/7] +https://sluhay.by/live/Ch107pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyRock.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_rock.png" group-title="Music",Sluhay.by Rock (720p) [Not 24/7] +https://sluhay.by/live/Ch114pub/index.m3u8 +#EXTINF:-1 tvg-id="SluhaybyXtip.by" tvg-country="BY" tvg-language="Russian" tvg-logo="https://sluhay.by/assets/logo_channel.png" group-title="Music",Sluhay.by Xtip (720p) [Not 24/7] +https://sluhay.by/live/Ch056pub/index.m3u8 diff --git a/channels/ca.m3u~master b/channels/ca.m3u~master new file mode 100644 index 000000000..8ff171162 --- /dev/null +++ b/channels/ca.m3u~master @@ -0,0 +1,273 @@ +#EXTM3U +#EXTINF:-1 tvg-id="5AABTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/k9M5ydW.png" group-title="",5AAB TV (720p) [Not 24/7] +http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cartoon.stream/playlist.m3u8?token=null +#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (720p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (720p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (432p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023183/aseast/noslate/VIDEO_3_1928000.m3u8 +#EXTINF:-1 tvg-id="AdultSwim.ca" tvg-country="US;CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Entertainment",Adult Swim (432p) [Not 24/7] +https://tve-live-lln.warnermediacdn.com/hls/live/2023185/aswest/noslate/VIDEO_3_1928000.m3u8 +#EXTINF:-1 tvg-id="AmazingDiscoveriesTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/zXWgbVk.png" group-title="Religious",Amazing Discoveries TV (720p) +https://uni01rtmp.tulix.tv/amazingdtv/amazingdtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Amitele.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/AMI-tv.png" group-title="",AMI Tele (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMI-F_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="AMITV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/AMI-tv.png" group-title="",AMI TV (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_AMItv_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="APTN.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/APTN.png" group-title="",APTN [Offline] +http://encodercdn1.frontline.ca/geonosis/output/APTN_720p/playlist.m3u +#EXTINF:-1 tvg-id="AzStarTV.ca" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.azstartv.com/wp-content/uploads/2021/06/AzStarTV.png" group-title="General",Az Star TV (1080p) +http://live.azstartv.com/azstar/smil:azstar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AzStarTV.ca" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.azstartv.com/wp-content/uploads/2021/06/AzStarTV.png" group-title="General",Az Star TV (240p) [Offline] +https://live.livestreamtv.ca/azstar/ngrp:azstar/playlist.m3u8 +#EXTINF:-1 tvg-id="AzstarTV.ca" tvg-country="CA" tvg-language="Persian" tvg-logo="https://i.imgur.com/iqraNYV.jpg" group-title="Music",Azstar TV (1080p) [Not 24/7] +http://live.livestreamtv.ca/azstar/smil:azstar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCTorontoGaundaPunjab.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/uSX4YXL.png" group-title="",BBC Toronto Gaunda Punjab (720p) [Not 24/7] +http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanadaOne.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/zr6KoiS.jpg" group-title="",Canada One (720p) [Not 24/7] +http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanadaStarTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/3Q9Nxj1.jpg" group-title="",Canada Star TV (1080p) [Offline] +http://live.canadastartv.com:1935/canadastartv/canadastartv/playlist.m3u +#EXTINF:-1 tvg-id="CanadianArabTV.ca" tvg-country="CA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rAZBgir.png" group-title="",Canadian Arab TV (720p) [Not 24/7] +http://142.112.39.133:8080/catv.mp4 +#EXTINF:-1 tvg-id="CanadianArabTV.ca" tvg-country="CA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rAZBgir.png" group-title="",Canadian Arab TV (720p) [Not 24/7] +http://142.112.39.133:8080/hls/catv/index.m3u8 +#EXTINF:-1 tvg-id="AssembleenationaleduQuebec.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/xKNnoci.png" group-title="Legislative",Canal de l'Assemblée nationale (544p) [Not 24/7] +https://wowzaprod231-i.akamaihd.net/hls/live/1013830/177d227e/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSavoir.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/dSvUExH.png" group-title="Documentary",Canal Savoir (360p) +https://hls.savoir.media/live/stream.m3u8 +#EXTINF:-1 tvg-id="CanBanglaTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://i.imgur.com/CMUHtv3.png" group-title="General",CanBangla TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/canbanglatv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCCalgary.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Calgary [Geo-blocked] +https://cbclivedai4-i.akamaihd.net/hls/live/567230/event2/CBRT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCCharlottetown.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Charlottetown [Geo-blocked] +https://cbclivedai6-i.akamaihd.net/hls/live/567239/event2/CBCT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCEdmonton.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Edmonton [Geo-blocked] +https://cbclivedai4-i.akamaihd.net/hls/live/567231/event2/CBXT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCFredericton.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Fredericton [Geo-blocked] +https://cbclivedai7-i.akamaihd.net/hls/live/567244/event2/CBAT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCHalifax.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Halifax [Geo-blocked] +https://cbclivedai3-i.akamaihd.net/hls/live/566977/event2/CBHT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCMontreal.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Montreal [Geo-blocked] +https://cbclivedai3-i.akamaihd.net/hls/live/566976/event2/CBMT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCNewsNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/SGbZKbJ.png" group-title="News",CBC News Network [Geo-blocked] +https://livecbcdai-i.akamaihd.net/hls/live/567245/event2/CBCNN/master5.m3u8 +#EXTINF:-1 tvg-id="CBCOttawa.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Ottawa [Geo-blocked] +https://cbclivedai5-i.akamaihd.net/hls/live/567235/event2/CBOT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCRegina.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Regina [Geo-blocked] +https://cbclivedai2-i.akamaihd.net/hls/live/566969/event2/CBKT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCStJohns.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC St Johns [Geo-blocked] +https://cbclivedai5-i.akamaihd.net/hls/live/567236/event2/CBNT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/RulfaHI.png" group-title="Local",CBC Toronto [Geo-blocked] +https://cbclivedai1-i.akamaihd.net/hls/live/566940/event2/CBLT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCCBLT.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cbc2015.png" group-title="",CBC Toronto (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/CBC_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCVancouver.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Vancouver [Geo-blocked] +https://cbclivedai2-i.akamaihd.net/hls/live/566968/event2/CBUT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCWindsor.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Windsor [Geo-blocked] +https://cbclivedai1-i.akamaihd.net/hls/live/566941/event2/CBET/master5.m3u8 +#EXTINF:-1 tvg-id="CBCWinnipeg.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Winnipeg [Geo-blocked] +https://cbclivedai6-i.akamaihd.net/hls/live/567237/event2/CBWT/master5.m3u8 +#EXTINF:-1 tvg-id="CBCYellowknife.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/thAavMy.png" group-title="Local",CBC Yellowknife [Geo-blocked] +https://cbclivedai7-i.akamaihd.net/hls/live/567240/event2/CFYK/master5.m3u8 +#EXTINF:-1 tvg-id="CHCH.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/chch.png" group-title="",CHCH (720p) [Offline] +http://encodercdn1.frontline.ca/geonosis/output/CHCH_Hamilton_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Cheknews.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/2jRdJ3p.png" group-title="News",Cheknews (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/canada/chek-news +#EXTINF:-1 tvg-id="CityTVToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="" group-title="General",CityTV Toronto CFTO-DT (720p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/City_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassiqueTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/rhHq745.png" group-title="Movies",Classique TV (480p) [Offline] +http://stmv2.srvstm.com/classique/classique/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassiqueTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/rhHq745.png" group-title="Movies",Classique TV (480p) [Offline] +http://stmv3.srvstm.com/classique/classique/playlist.m3u8 +#EXTINF:-1 tvg-id="CMT.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cmtcanada.png" group-title="",CMT (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CMTHD_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CP24.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/cp24.png" group-title="News",CP24 (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CP24H_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CPACOttawa.ca" tvg-country="CA" tvg-language="English;French" tvg-logo="https://i.imgur.com/5ym6eJS.png" group-title="Legislative",CPAC (720p) +https://d7z3qjdsxbwoq.cloudfront.net/groupa/live/f9809cea-1e07-47cd-a94d-2ddd3e1351db/live.isml/.m3u8 +#EXTINF:-1 tvg-id="CPACOttawaEn.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CPAC.png" group-title="",Cpac (720p) [Offline] +http://encodercdn1.frontline.ca/yavin/output/CPAC_English_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CPACOttawa.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CPAC.png" group-title="",CPAC FR (720p) [Offline] +http://encodercdn1.frontline.ca/yavin/output/CPAC_French_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CPMTV24.ca" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",CPMTV 24 [Offline] +http://159.69.58.154/cpmtv/cpmtv.m3u8 +#EXTINF:-1 tvg-id="CTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/nfcjHAW.png" group-title="",CTV (720p) +https://pe-fa-lp02a.9c9media.com/live/News1Digi/p/hls/00000201/38ef78f479b07aa0/index/0c6a10a2/live/stream/h264/v1/3500000/manifest.m3u8 +#EXTINF:-1 tvg-id="CTVNewsChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctvnews.png" group-title="News",CTV News (720p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/CTV_News_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CTVNewsChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctvnews.png" group-title="News",CTV News (480p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/CTV_News/playlist.m3u8 +#EXTINF:-1 tvg-id="CFTO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctv-2018.png" group-title="General",CTV Toronto CFTO-DT (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/CTV_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CKVR.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/ctv2-2018.png" group-title="General",CTV2 Barrie CKVR-DT (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TCTV2_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="CTVDrama.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/CTV_drama_channel.png" group-title="",CTVDrama (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/CTV_Drama_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="DesheBidesheTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://www.deshebideshe.tv/assets/importent_images/footer-logo.png" group-title="General",DesheBideshe TV (720p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deshebideshe.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DoyelTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="http://www.doyeltv.com/wp-content/uploads/2020/12/LOGO-BUG-without-Slogan.png" group-title="General",Doyel TV (720p) [Not 24/7] +http://ipm.oncast.me:1934/iplived/ip-doyeltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DoyelTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="http://www.doyeltv.com/wp-content/uploads/2020/12/LOGO-BUG-without-Slogan.png" group-title="General",Doyel TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/doyeltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DukhNivaran.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="https://www.dukhnivaran.ca/wp-content/uploads/2019/01/dukhnivaran_logo1-1.png" group-title="",Dukh Nivaran (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/dncal/index.m3u8 +#EXTINF:-1 tvg-id="EEntertainment.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/E.png" group-title="",E! Canada (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_E!HD_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="EawazTV.ca" tvg-country="CA" tvg-language="Urdu" tvg-logo="https://i.imgur.com/vB4yzen.png" group-title="",Eawaz TV (720p) [Not 24/7] +https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8 +#EXTINF:-1 tvg-id="EETTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/k0Hzr3X.png" group-title="",EET TV (1080p) [Not 24/7] +https://eu.streamjo.com/eetlive/eettv.m3u8 +#EXTINF:-1 tvg-id="EMCITV.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/HRqcIcR.png" group-title="Religious",EMCI TV (1080p) [Not 24/7] +https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 +#EXTINF:-1 tvg-id="FightNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d1bf32e5d221b1e5a7e55" group-title="Sports",Fight Network (1080p) +https://d12a2vxqkkh1bo.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="GlobalNewsToronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/global.png" group-title="",Global Toronto (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/Global_Toronto_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="GurSikhSabhaTV.ca" tvg-country="CA" tvg-language="Hindi" tvg-logo="https://i.imgur.com/2EKCtQm.png" group-title="Religious",GurSikh Sabha TV (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/gsctv/index.m3u8 +#EXTINF:-1 tvg-id="HistoryChannel.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/historycanada.png" group-title="",History (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/History_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ICIMontreal.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/i3xFNPE.png" group-title="General",ICI Montreal (720p) [Not 24/7] +https://ici-i.akamaihd.net/hls/live/873426/ICI-Live-Stream/master.m3u8 +#EXTINF:-1 tvg-id="CBFT.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/byTTNAi.png" group-title="General",Ici Radio-Canada Télé (720p) +https://rcavlive.akamaized.net/hls/live/696615/xcancbft/master.m3u8 +#EXTINF:-1 tvg-id="CBFT.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/byTTNAi.png" group-title="General",Ici Radio-Canada Télé (1080p) [Geo-blocked] +https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8 +#EXTINF:-1 tvg-id="ICIRadioCanadaRDI.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/ICI_RDI.png" group-title="",ICI RDI (720p) +https://rcavlive.akamaized.net/hls/live/704025/xcanrdi/master.m3u8 +#EXTINF:-1 tvg-id="ICIRadioCanadaOntario.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/rQyoWsy.png" group-title="",ICI TELE Toronto (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ICIHT_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="IIPCTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/G7hGk8y.png" group-title="Religious",IIPC TV (480p) [Geo-blocked] +https://uni10rtmp.tulix.tv/iipctv/iipctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITCTV.ca" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",ITC TV (480p) [Geo-blocked] +https://dacastmmd.mmdlive.lldns.net/dacastmmd/f05d55e42dc746c8bd36edafbace7cc1/playlist.m3u8 +#EXTINF:-1 tvg-id="Knowledge.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/kdgMVOI.png" group-title="Kids",Knowledge (720p) [Geo-blocked] +http://knstream1.azureedge.net/knlive/knlive_high.m3u8 +#EXTINF:-1 tvg-id="LCN.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/JHOyrgA.png" group-title="",LCN [Geo-blocked] +https://tvalive.akamaized.net/hls/live/2014213/tvan01/tvan01.m3u8 +#EXTINF:-1 tvg-id="MeteoMedia.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",Meteomedia (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/Meteo_Media_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MontrealGreekTV.ca" tvg-country="CA" tvg-language="Greek" tvg-logo="https://i.imgur.com/eNu3N0f.png" group-title="Local",Montreal Greek TV (480p) [Not 24/7] +http://94.130.180.175:8081/live/greektv/playlist.m3u8 +#EXTINF:-1 tvg-id="NACTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/FzM95rH.png" group-title="",NACTV (720p) [Not 24/7] +http://stream.pivotalelements.com/nactv/stream.m3u8 +#EXTINF:-1 tvg-id="NETVToronto.ca" tvg-country="CA" tvg-language="Greek" tvg-logo="https://i.imgur.com/IYDllP5.jpg" group-title="Movies",NETV Toronto (720p) [Not 24/7] +https://live.streams.ovh/NetvToronto/NetvToronto/playlist.m3u8 +#EXTINF:-1 tvg-id="Nickelodeon.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/nickelodeon.png" group-title="",Nickelodeon Canada (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NICKH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="NRBTV.ca" tvg-country="CA" tvg-language="Bengali" tvg-logo="https://www.thenrb.tv/organization/logo/nrb-tv_WJkwkcRXBEVrzo5_1576430300.jpg" group-title="General",NRB TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/nrb-eu.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/X5CJ3jz.png" group-title="",NTV (Newfoundland) (576p) [Not 24/7] +https://2-fss-1.streamhoster.com/pl_122/201748-1282644-1/playlist.m3u8 +#EXTINF:-1 tvg-id="OMNI1.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/omni1.png" group-title="",OMNI 1 (720p) [Offline] +http://encodercdn1.frontline.ca/geonosis/output/OMNI1_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ONNtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/RUuCbIG.png" group-title="Local",ONNtv (Ontario) (1080p) [Offline] +https://onntv.vantrix.tv/onntv_hls/h264_aac_ABR.m3u8 +#EXTINF:-1 tvg-id="OntarioParliamentaryNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/BQWfhEr.jpg" group-title="Legislative",Ontario Parliamentary Network (720p) +http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8 +#EXTINF:-1 tvg-id="OntarioParliamentaryNetworkFR.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/BQWfhEr.jpg" group-title="Legislative",Ontario Parliamentary Network (FR) (720p) +http://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-fr/playlist.m3u8 +#EXTINF:-1 tvg-id="PardesiTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/CwAdPpZ.jpg" group-title="",Pardesi TV (720p) [Not 24/7] +http://stream.pardesitv.online/pardesi/index.m3u8 +#EXTINF:-1 tvg-id="ParnianTV.ca" tvg-country="CA" tvg-language="Persian" tvg-logo="https://i.imgur.com/eNGthNI.jpg" group-title="",Parnian TV (720p) +https://live2.parnian.tv/hls/.m3u8 +#EXTINF:-1 tvg-id="PlymouthRockTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PlymouthRockTV_205x205.png?raw=true" group-title="",Plymouth Rock TV (1080p) +https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtv/playlist.m3u8 +#EXTINF:-1 tvg-id="PlymouthRockTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PlymouthRockTV_205x205.png?raw=true" group-title="",Plymouth Rock TV (1080p) +https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimeAsiaTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/LdGWsGj.png" group-title="",Prime Asia TV (720p) +http://primeasia.dyndns.tv:8080/Live_web_250/index.m3u8 +#EXTINF:-1 tvg-id="PrimeCanadaTV.ca" tvg-country="CA" tvg-language="Panjabi" tvg-logo="" group-title="",Prime Canada TV (720p) [Not 24/7] +http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="QVTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/X9LBFzK.jpg" group-title="Religious",QVTV (720p) +https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RamgarhiABC.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="http://ramgarhiabc.com/wp-content/uploads/2014/02/headerlogo.png" group-title="",Ramgarhi ABC (720p) [Not 24/7] +https://443-1.autopo.st/100/live/bcgurduwarabrookside/chunks.m3u8 +#EXTINF:-1 tvg-id="SaltPlusLightTelevision.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/mpJICdg.png" group-title="Religious",Salt + Light Television (1080p) +https://zm6gdaxeyn93-hls-live.5centscdn.com/slworld/d65ce2bdd03471fde0a1dc5e01d793bb.sdp/index.m3u8 +#EXTINF:-1 tvg-id="SanjhaPunjab.ca" tvg-country="CA" tvg-language="Panjabi" tvg-logo="https://i.imgur.com/17e3T2n.png" group-title="",Sanjha Punjab (720p) +http://toronto3.live247stream.com:8081/sanjhapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SardariTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/AhbJjPL.jpg" group-title="",Sardari TV (1080p) [Not 24/7] +http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 +#EXTINF:-1 tvg-id="Showcase.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/showcasecanada.png" group-title="",Showcase (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/Showcase_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SikhSpiritualCentreRexdale.ca" tvg-country="CA" tvg-language="Punjabi" tvg-logo="https://www.sikhspiritualcentrerexdale.com/wp-content/uploads/2019/07/favicon-transprent.png" group-title="",Sikh Spiritual Centre Rexdale (720p) +https://cdn12.henico.net:8443/live/ssct/index.m3u8 +#EXTINF:-1 tvg-id="TAGTV.ca" tvg-country="CA" tvg-language="Hindi" tvg-logo="https://i.imgur.com/4PA2adF.png" group-title="",TAG TV (1080p) [Not 24/7] +http://cdn11.live247stream.com/tag/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TamilVisionTV.ca" tvg-country="CA;IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/jSWRXdg.png" group-title="",Tamil Vision TV (1080p) +http://live.tamilvision.tv:8081/TVI/HD/playlist.m3u8 +#EXTINF:-1 tvg-id="TamilVisionTV.ca" tvg-country="CA;IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/jSWRXdg.png" group-title="",Tamil Vision TV (720p) +http://live.tamilvision.tv:8081/TVI/SD/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCulturelleMedias.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/oRigj9q.jpg" group-title="",Télé Culturelle Médias (720p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8150/8150/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleMagQuebec.ca" tvg-country="CA" tvg-language="French" tvg-logo="" group-title="",Télé-Mag Québec (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNKXYT-Nng5LBMUQrZJ9zWA/live +#EXTINF:-1 tvg-id="TeleMag.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/i5Isrob.png" group-title="General",Télé-Mag Québec (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/ctmq/live +#EXTINF:-1 tvg-id="CIVM.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/0ZmcpEE.png" group-title="General",Télé-Québec (720p) +https://bcovlive-a.akamaihd.net/575d86160eb143458d51f7ab187a4e68/us-east-1/6101674910001/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletoon.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/canada/teletoon-ca.png" group-title="Animation",Teletoon (720p) [Not 24/7] +http://s1.mysportz.tv:2082/teletoon/playlist.m3u8 +#EXTINF:-1 tvg-id="TFO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TFO.png" group-title="",TFO (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/TFO_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TheChannelTV.ca" tvg-country="CA" tvg-language="Bengali;English" tvg-logo="https://i.imgur.com/08c6W9l.png" group-title="General",The Channel TV (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/thechanneltv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN5.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/canada/tsn-ca.png" group-title="Sports",The Sports Network (TSN5) (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/TSN5_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="TheWeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",The Weather Network (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TheWeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://s1.twnmm.com/images/en_ca/mobile/logos/twn-mobile-logo.png" group-title="Weather",The Weather Network (480p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/The_Weather_Network/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/jOOkSCE.png" group-title="Weather",The Weather Network Event (720p) [Not 24/7] +https://bcliveunivsecure-lh.akamaihd.net/i/twn_1@631672/master.m3u8 +#EXTINF:-1 tvg-id="TMC.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tcm.png" group-title="",TMC (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/TCM_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Toronto360TV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/PkWndsv.png" group-title="Local",Toronto 360 TV (720p) [Not 24/7] +http://toronto3.live247stream.com/toronto360/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Treehouse.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/treehousetv.png" group-title="",Treehouse (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_TREEH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="TSC.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/FlJVD8a.png" group-title="Shop",TSC (720p) +https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 +#EXTINF:-1 tvg-id="TSN1.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn1-2018.png" group-title="",TSN 1 (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/TSN1_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN2.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn2-2018.png" group-title="",TSN 2 (720p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/TSN2_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN3.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn3-2018.png" group-title="",TSN 3 (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/TSN3_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TSN4.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/tsn4-2018.png" group-title="",TSN 4 (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/TSN4_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TV16Toronto.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/brxkNbw.png" group-title="Local",TV 16 Toronto (720p) [Not 24/7] +http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TV5.png" group-title="",TV5 (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/ColbaNet_TV5_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="CFTM.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://graph.facebook.com/ReseauTVA/picture?width=300&height=300" group-title="",TVA [Geo-blocked] +https://tvalive-nondai.akamaized.net/Content/HLS/Live/channel(a7315e07-037c-12a8-bdc8-da7bd513da9d)/index.m3u8 +#EXTINF:-1 tvg-id="TVA.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TVA.png" group-title="",TVA Montreal (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/TVA_Montreal_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TVC9.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://i.imgur.com/KLWdogU.png" group-title="Local",TVC9 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC0JP0ek-HhcqisiEpsZiQZA/live +#EXTINF:-1 tvg-id="TVO.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/TVO.png" group-title="",TVO (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/TVO_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOKids.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tvokids-logo.svg/512px-Tvokids-logo.svg.png" group-title="Kids",TVOKids (360p) [Not 24/7] +https://bcsecurelivehls-i.akamaihd.net/hls/live/623607/15364602001/tvokids/master.m3u8 +#EXTINF:-1 tvg-id="UniTV.ca" tvg-country="CA" tvg-language="French" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/UNIS.png" group-title="",UnisTV (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_UNISH_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="isumatv.ca" tvg-country="CA" tvg-language="English;Inuktitut" tvg-logo="https://i.imgur.com/RR7ATr2.png" group-title="Local",Uvagut TV (1080p) +http://dee7mwgg9dzvl.cloudfront.net/hls/uvagut/playlist.m3u8 +#EXTINF:-1 tvg-id="VBS.ca" tvg-country="CA" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/IWpevBp.jpg" group-title="",VBS (480p) [Not 24/7] +https://uni6rtmp.tulix.tv/vbstv/vbsabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Vision.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/vision.png" group-title="",Vision TV (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_VISON_AtopItci_2015_01_12_SD/hls_sd.m3u8 +#EXTINF:-1 tvg-id="WTN.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/w-copy.png" group-title="",W Network (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/W_Network_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WCGtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/q7UPbEG.png" group-title="",WCGtv Brandon (720p) [Not 24/7] +https://wowzastream.westmancom.com/wcgtvlive/highstream.sdp/master.m3u8 +#EXTINF:-1 tvg-id="WCGtv.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/q7UPbEG.png" group-title="",WCGtv Brandon Radio Pub Sessions (720p) [Not 24/7] +https://wowzastream.westmancom.com/wcgtvlive/wcgtvPSA.stream/master.m3u8 +#EXTINF:-1 tvg-id="YesTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/yestv.png" group-title="",yes TV (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/YESTV_Hamilton_720p/playlist.m3u8 diff --git a/channels/ca_samsung.m3u b/channels/ca_samsung.m3u new file mode 100644 index 000000000..0e24c1d84 --- /dev/null +++ b/channels/ca_samsung.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="DealornoDeal.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/soOgFFc.jpg" group-title="",Deal or no Deal (720p) [Offline] +https://endemol-dealornodeal-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DegrassiTheNextGenerationCanada.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mRBQKp3.png" group-title="",Degrassi The Next Generation (Canada) (720p) +http://dhx-degrassi-2-ca.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/a3mGVRE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] +https://dust-samsung-uk-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (720p) [Offline] +https://elevensports-samsunguk-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) +https://fueltv-fueltv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/BT31YWz.png" group-title="",HollyWire (720p) [Offline] +https://hollywire-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsung-canada.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsung-canada.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (720p) [Offline] +https://mavtv-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MHZ.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/a5fw83n.jpg" group-title="",MHZ (720p) [Offline] +https://mhz-samsung-linear-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/snuV96y.png" group-title="",Outside TV (720p) +https://outside-tv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/d3EaS41.png" group-title="Sports",Players TV (1080p) +https://playerstv-samsungca.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/HwAQMJL.png" group-title="",PowerNation (720p) [Offline] +https://rtmtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (1080p) [Offline] +https://stingray-naturescape-1-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/yuRa9lM.png" group-title="Cooking",Tastemade (720p) [Offline] +https://ti-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/wCq3E0M.png" group-title="",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-6-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Canada (720p) [Offline] +https://the-pet-collective-international-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/yBTz6JA.png" group-title="",Waypoint TV (720p) [Offline] +https://waypointtv-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Weatherspy.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/8oJYi1z.png" group-title="",Weatherspy (720p) +https://jukin-weatherspy-2-ca.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) [Offline] +https://world-poker-tour-samsung-ca.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/ca_stingray.m3u b/channels/ca_stingray.m3u new file mode 100644 index 000000000..00ddfb40f --- /dev/null +++ b/channels/ca_stingray.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Classic Rock (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayEverything80s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Everything 80s (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/128/master.m3u8 +#EXTINF:-1 tvg-id="StingrayFlashback70s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Flashback 70s (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/115/master.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Greatest Hits (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Hit List (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/107/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Hot Country (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayPopAdult.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Pop Adult (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/104/master.m3u8 +#EXTINF:-1 tvg-id="StingrayRockAlternative.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Rock Alternative (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/102/master.m3u8 +#EXTINF:-1 tvg-id="StingrayTodaysLatinPop.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Today's Latin Pop (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/190/master.m3u8 +#EXTINF:-1 tvg-id="StingrayUrbanBeat.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/StingrayMusic_512x512.png?raw=true" group-title="Music",Stingray Urban Beat (1080p) +https://ott-linear-channels.stingray.com/v1/master/734895816ccb1e836f8c1e81f772244d9be0077c/133/master.m3u8 diff --git a/channels/cd.m3u~master b/channels/cd.m3u~master new file mode 100644 index 000000000..d49e28394 --- /dev/null +++ b/channels/cd.m3u~master @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Afrobeats.cd" tvg-country="CD" tvg-language="English" tvg-logo="" group-title="Music",Afrobeats (1080p) +https://stream.ecable.tv/afrobeats/index.m3u8 +#EXTINF:-1 tvg-id="BOne.cd" tvg-country="CD" tvg-language="French" tvg-logo="" group-title="Entertainment",B-One [Offline] +http://178.33.237.146/rtnc1.m3u8 +#EXTINF:-1 tvg-id="BossBrothersTV.cd" tvg-country="CD" tvg-language="French" tvg-logo="" group-title="General",Boss Brothers TV (1080p) +http://51.254.199.122:8080/bossbrothersTV/index.m3u8 +#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd" tvg-country="CD" tvg-language="French" tvg-logo="https://i.imgur.com/KiyYqPK.jpg" group-title="General",Congo Planet Television (1080p) +https://radio.congoplanet.com/Congo_Planet_TV_Pop.sdp/Congo_Planet_TV_Pop/playlist.m3u8 +#EXTINF:-1 tvg-id="CongoPlanetTelevision.cd" tvg-country="CD" tvg-language="French" tvg-logo="https://i.imgur.com/KiyYqPK.jpg" group-title="General",Congo Planet Television (474p) +https://radio.congoplanet.com/Congo_Planet_TV.sdp/Congo_Planet_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNC1.cd" tvg-country="CD" tvg-language="French;Lingala" tvg-logo="" group-title="General",RTNC 1 (360p) +https://cdn.strimie.eu:3431/live/rtnc1live.m3u8 diff --git a/channels/cg.m3u b/channels/cg.m3u new file mode 100644 index 000000000..8b0ad1b87 --- /dev/null +++ b/channels/cg.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ObossoTV.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://i.imgur.com/UTo9vCc.jpg" group-title="",Obosso TV (1080p) [Offline] +https://edge4.vedge.infomaniak.com/livecast/ik:obossotv_6/manifest.m3u8 diff --git a/channels/ch.m3u~master b/channels/ch.m3u~master new file mode 100644 index 000000000..2d88f9708 --- /dev/null +++ b/channels/ch.m3u~master @@ -0,0 +1,85 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalAlphaJura.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Jura (360p) +https://canalalphaju.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlphaJura.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Jura (360p) +https://edge.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlphaNeuchatel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/eQ8xHK9.jpg" group-title="",Canal Alpha Neuchatel (1080p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:canalalpha/playlist.m3u8 +#EXTINF:-1 tvg-id="Couleur3.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/9fAlB8K.png" group-title="",Couleur 3 (900p) +https://rtsc3video-lh.akamaihd.net/i/rtsc3video_ww@513975/master.m3u8 +#EXTINF:-1 tvg-id="DieNeueZeit.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/9dQuwCc.jpg" group-title="",Die Neue Zeit (576p) +https://www.onairport.live/die-neue-zeit-tv-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="DieuTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/3sWAEuY.jpg" group-title="",Dieu TV (1080p) +https://katapy.hs.llnwd.net/dieutvwza1/DIEUTVLIVE/smil:dieutv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ELITTVIsvicre.ch" tvg-country="CH" tvg-language="German" tvg-logo="http://elittv.ch/images/elityenilogokucuk2opy.png" group-title="",ELIT TV Isvicre (720p) [Offline] +http://source2.primetime.ch/play/elittv/index.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 auf Deutsch (1080p) +https://livesd2.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 auf Deutsch (1080p) [Offline] +https://edge.vedge.infomaniak.com/livecast/ik:livesd2/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 en Français (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:livehd/master.m3u8 +#EXTINF:-1 tvg-id="Kanal9.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/nQVDOVb.png" group-title="",Kanal 9 en Français (1080p) +https://livehd.vedge.infomaniak.com/livecast/livehd/master.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) +https://latele.vedge.infomaniak.com/livecast/latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTele.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/JiAnDPu.png" group-title="",La Télé (1080p) +https://livevideo.infomaniak.com/streaming/livecast/latele/playlist.m3u8 +#EXTINF:-1 tvg-id="LFMCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:lfmhd/manifest.m3u8 +#EXTINF:-1 tvg-id="LFMCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:lfmmd/manifest.m3u8 +#EXTINF:-1 tvg-id="LFMTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) +https://lfmhd.vedge.infomaniak.com/livecast/lfmhd/playlist.m3u8 +#EXTINF:-1 tvg-id="LFMTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/UE1E3uH.png" group-title="",LFM TV (1080p) +https://lfmmd.vedge.infomaniak.com/livecast/smil:lfmmd.smil/manifest.m3u8 +#EXTINF:-1 tvg-id="Meteonews.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/YtYhbJD.png" group-title="News",Meteonews (1080p) +https://streaming.meteonews.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="OneTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://i.imgur.com/YEQ957V.png" group-title="",One TV (720p) +https://edge.vedge.infomaniak.com/livecast/ik:onefmmd/manifest.m3u8 +#EXTINF:-1 tvg-id="Radio3i.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lp23ChL.jpg" group-title="",Radio 3i (720p) +https://livestream.gruppocdt.ch/hls/radio3i.m3u8 +#EXTINF:-1 tvg-id="RadioPilatus.ch" tvg-country="CH" tvg-language="German" tvg-logo="" group-title="",Radio Pilatus (1080p) +https://rp_tv_1.vedge.infomaniak.com/livecast/rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPilatusTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lQzG2lg.png" group-title="",Radio Pilatus TV (1080p) +https://edge.vedge.infomaniak.com/livecast/ik:rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPilatusTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/lQzG2lg.png" group-title="",Radio Pilatus TV (1080p) +https://livevideo.infomaniak.com/streaming/livecast/rp_tv_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) +https://edge.vedge.infomaniak.com/livecast/ik:event/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) +https://event.vedge.infomaniak.com/livecast/event.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RougeTV.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://od.lk/s/MF8yMjYwNDgzMzhf/RougeTV_225x225.png" group-title="XXX",Rouge TV (720p) +https://rougetv.vedge.infomaniak.com/livecast/rougetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RoyalTV.ch" tvg-country="CH" tvg-language="Turkish" tvg-logo="https://i.pinimg.com/736x/40/55/54/40555489faf07aabc2001322f637be0e.jpg" group-title="",Royal TV (720p) [Offline] +http://source2.primetime.ch:2981/play/royaltv/index.m3u8 +#EXTINF:-1 tvg-id="Schweiz5.ch" tvg-country="CH" tvg-language="German" tvg-logo="http://www.schweiz5.ch/wp-content/uploads/2018/10/ch5logo-large-1.png" group-title="",Schweiz 5 (1080p) [Timeout] +https://stream.schweiz5.ch/schweiz52020/stream.m3u8 +#EXTINF:-1 tvg-id="SwissSportTV.ch" tvg-country="CH" tvg-language="English" tvg-logo="https://i.imgur.com/HC0j4cC.jpg" group-title="Sports",Swiss Sport TV (720p) [Timeout] +https://av02.upstream-cloud.ch/sstvlinear/ngrp:sstvlinear_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele1.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://icanlive.tv/pictures/tele1.jpg" group-title="",Tele 1 (1080p) +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_xias5bqq/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="TeleM1.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/telem1.png" group-title="",Tele M1 (720p) [Not 24/7] +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_ljzy3evp/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="Telebasel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/mMXYqtm.png" group-title="",Telebasel (432p) +https://cldf-wzw-live.r53.cdn.tv1.eu/10096xtelebase/_definst_/1000199copo/live/app510394368/w162136077/live_de_1500/playlist.m3u8 +#EXTINF:-1 tvg-id="Telebasel.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/mMXYqtm.png" group-title="",Telebasel (288p) +http://xapp510394368c1000199.f.l.z.lb.core-cdn.net/10096xtelebase/ios_500/master.m3u8 +#EXTINF:-1 tvg-id="TeleBielingue.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/bPpWJj2.png" group-title="",TeleBielingue (720p) +https://edge.vedge.infomaniak.com/livecast/ik:telebielinguech/manifest.m3u8 +#EXTINF:-1 tvg-id="TeleBielingue.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/bPpWJj2.png" group-title="",TeleBielingue (720p) +https://livevideo.infomaniak.com/streaming/livecast/telebielinguech/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTicino.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/HuPkeOg.jpg" group-title="",TeleTicino (720p) +https://livestream.gruppocdt.ch/hls/teleticino.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Logo_TVM3_2015.png/1200px-Logo_TVM3_2015.png" group-title="",TVM 3 (1080p) +http://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH" tvg-language="French" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvm3.png" group-title="",TVM3 (1080p) +https://edge.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM3.ch" tvg-country="CH;FR;MC;BE;CA;LU" tvg-language="French" tvg-logo="https://www.tvm3.tv/images/Tvm3BlueLogo.png" group-title="",TVM3 (1080p) [Not 24/7] +https://tvm3.vedge.infomaniak.com/livecast/tvm3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOCH.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo_ch.png" group-title="",TVO (CH) (720p) +https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_t5h46v64/format/applehttp/protocol/https/a.m3u8 +#EXTINF:-1 tvg-id="TVO.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo_ch.png" group-title="",TVO (CH) (1080p) [Not 24/7] +https://s3.welocal.world/tvo/media/447348/videos/hls.m3u8 diff --git a/channels/ch_samsung.m3u b/channels/ch_samsung.m3u new file mode 100644 index 000000000..dbd2f17d1 --- /dev/null +++ b/channels/ch_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RakutenTVActionMoviesSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies Switzerland (720p) [Offline] +https://rakuten-actionmovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies Switzerland (720p) [Offline] +https://rakuten-comedymovies-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama Switzerland (720p) [Offline] +https://rakuten-tvshows-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilySwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Switzerland (720p) [Offline] +https://rakuten-family-4-ch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightSwitzerland.es" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/vbb3bjW.png" group-title="",Rakuten TV Spotlight Switzerland (720p) [Offline] +https://rakuten-spotlight-4-ch.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/ci.m3u b/channels/ci.m3u new file mode 100644 index 000000000..93a8e47da --- /dev/null +++ b/channels/ci.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="NTVAfrique.ci" tvg-country="CI" tvg-language="French" tvg-logo="https://i.imgur.com/qiGrf6k.png" group-title="",NTV Afrique (1080p) [Not 24/7] +https://strhlslb01.streamakaci.tv/str_ntv_ntv/str_ntv_ntv_multi/playlist.m3u8 diff --git a/channels/cl.m3u~master b/channels/cl.m3u~master new file mode 100644 index 000000000..edfeae655 --- /dev/null +++ b/channels/cl.m3u~master @@ -0,0 +1,355 @@ +#EXTM3U +#EXTINF:-1 tvg-id="24horas.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",24 Horas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/24HORAS/live +#EXTINF:-1 tvg-id="ADNRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",ADN Radio (1080p) +https://unlimited1-us.dps.live/adntv/adntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ADNRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",ADN Radio (1080p) +https://unlimited6-cl.dps.live/adntv/adntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AERadioTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://66.media.tumblr.com/tumblr_llqajtuVTe1qi24nu.jpg" group-title="",AE Radio TV (720p) [Not 24/7] +http://edge1.cl.grupoz.cl/aeradio/live/index.m3u8 +#EXTINF:-1 tvg-id="AlegriaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.m3u.cl/logo/80111_Alegria_TV.png" group-title="",Alegria TV (720p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8 +#EXTINF:-1 tvg-id="AlternativaTVHuasco.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Alternativa TV (Huasco) (720p) [Not 24/7] +https://srv2.zcast.com.br/carlos2469/carlos2469/playlist.m3u8 +#EXTINF:-1 tvg-id="AntofagastaTVATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Antofagasta TV (ATV) (1080p) +https://unlimited6-cl.dps.live/atv/atv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ARABTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Culture",ARABTV (720p) +https://livefocamundo.com:8081/arabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="AricaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Arica TV (480p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8002/8002/playlist.m3u8 +#EXTINF:-1 tvg-id="AtacamaTVCopiapo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Atacama TV (Copiapó) (720p) [Not 24/7] +https://v2.tustreaming.cl/atacamatv/index.m3u8 +#EXTINF:-1 tvg-id="AutonomaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Autonoma TV (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8144/8144/playlist.m3u8 +#EXTINF:-1 tvg-id="AysenTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Aysén TV (720p) [Not 24/7] +https://v2.tustreaming.cl/aysentv/playlist.m3u8 +#EXTINF:-1 tvg-id="BajoCeroTVCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Bajo Cero TV (Corporación Eva) (656p) [Offline] +https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 +#EXTINF:-1 tvg-id="BuinSomosTodos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Buin Somos Todos (720p) [Not 24/7] +https://bst.buin.cl/0.m3u8 +#EXTINF:-1 tvg-id="CamaradeDiputadosDVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Camara de Diputados (DVR) (720p) [Not 24/7] +http://camara.02.cl.cdnz.cl/cdndvr/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="CampoAbiertoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.rodeoenvivo.cl/portal/wp-content/uploads/2016/05/BANNER_CAMPO_ABIERTO_TV.png" group-title="",Campo Abierto TV (Huechuraba) (480p) [Not 24/7] +http://v3.tustreaming.cl/campoabierto/playlist.m3u8 +#EXTINF:-1 tvg-id="CampusTVTalca.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Campus TV (Talca) (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/campustv/campustv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2SanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 2 (San Antonio) (720p) [Not 24/7] +https://unlimited1-us.dps.live/canal2/canal2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UnWMRrT.png" group-title="",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] +https://unlimited1-us.dps.live/c9/c9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UnWMRrT.png" group-title="",Canal 9 Bío Bío Televisión (1080p) [Not 24/7] +https://unlimited6-cl.dps.live/c9/c9.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SYGV0j6.jpg" group-title="",Canal 13 (720p) [Geo-blocked] +http://canal13-m3u.chorroaeboy.repl.co +#EXTINF:-1 tvg-id="Canal21.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-zdameN8RkN4/Wn9k02_XleI/AAAAAAAAgwU/o7QWyXJUMuUIqbZ7vPAZ7eOHYmFLIBDNwCK8BGAs/s265/2018-02-10.png" group-title="",Canal 21 (720p) [Not 24/7] +http://edge1.cl.grupoz.cl/canal21tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal21.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.canal21tv.cl/wp/wp-content/uploads/2017/06/LogoFront-1.png" group-title="",Canal 21 (720p) [Not 24/7] +https://tls.cdnz.cl/canal21tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal29.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iQ5Umwj.jpg" group-title="",Canal 29 (614p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/canal/canal/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.canal33.cl/assets/images/logo.png" group-title="",Canal 33 (720p) [Geo-blocked] +https://5eae379fb77bb.streamlock.net/eduardo555/eduardo555/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal57Melipilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 57 Melipilla (720p) +https://593b04c4c5670.streamlock.net/8148/8148/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal74SanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal 74 (San Antonio) (720p) +https://stmv1.zcastbr.com/canal74hd/canal74hd/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalDiputados.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Canal Diputados (720p) +http://camara.03.cl.cdnz.cl/camara19/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalISBIglesiaSanBernardo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Canal ISB (Iglesia San Bernardo) (720p) +https://unlimited1-us.dps.live/isb/isb.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalLatino.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://radio1latina.cl/wp-content/uploads/2015/01/logo.png" group-title="",Canal Latino (CL54) (360p) +https://hd.chileservidores.cl:1936/latina/latina/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSCNSanCarlosNuble.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal SCÑ (San Carlos Ñuble) (720p) [Not 24/7] +https://live.tvcontrolcp.com:1936/sancarlostv/sancarlostv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurvisionAlerce.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://tvsurvision.cl/wp-content/uploads/2020/10/LOGO-PNG.png" group-title="",Canal Survision Alerce [Offline] +http://170.79.102.254:1935/pruebacamara/Survision_tv_alerce/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalTUTVQuillota.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Canal TUTV (Quillota) (720p) +https://paneltv.net:3978/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="CaracolaTVPenalolen.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Caracola TV (Peñalolén) (720p) [Not 24/7] +https://wifispeed.trapemn.tv:1936/comunales/caracola-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CarolinaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/eaHPbqd.png" group-title="Music",Carolina TV (1080p) +https://unlimited6-cl.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CarolinaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.carolina.cl/carolina-tv/img/ogimage.png" group-title="Music",Carolina TV (1080p) [Not 24/7] +https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CEACTVSantiago.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",CEAC TV (Santiago) (360p) +https://hd.chileservidores.cl:1936/ceactv/ceactv/playlist.m3u8 +#EXTINF:-1 tvg-id="CHICMagazine.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="http://chicmagazinetv.online/img/logo-radio.png" group-title="Lifestyle",CHIC Magazine (480p) [Not 24/7] +https://paneltv.online:1936/8056/8056/playlist.m3u8 +#EXTINF:-1 tvg-id="ChileVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GAsSUqn.png" group-title="General",ChileVisión (720p) [Geo-blocked] +http://chv-m3u.chorroaeboy.repl.co +#EXTINF:-1 tvg-id="ChileVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GAsSUqn.png" group-title="General",ChileVisión (360p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/chv_003cl +#EXTINF:-1 tvg-id="24horas.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",CHV Noticias (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRsUoZYC1ULUspipMRnMhwg/live +#EXTINF:-1 tvg-id="ClickTVCoronel.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Click TV (Coronel) (720p) +http://v2.tustreaming.cl/clicktv/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudserverKids90.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Cloudserver Kids90 (432p) +https://videostreaming.cloudserverlatam.com/Kids90/Kids90/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudserverLatamCSTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Cloudserver Latam (CSTV) (360p) +https://videostreaming.cloudserverlatam.com/CSTV/CSTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubTVSantaJuana.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Club TV (Santa Juana) (720p) [Not 24/7] +https://paneltv.online:1936/8030/8030/playlist.m3u8 +#EXTINF:-1 tvg-id="Contivision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Contivisión (720p) +https://unlimited6-cl.dps.live/contivision/contivision.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CulturaOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Culture",Cultura Online (720p) [Not 24/7] +https://v2.tustreaming.cl/culturaonline/index.m3u8 +#EXTINF:-1 tvg-id="DecimaTVAncud.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Décima TV (Ancud) (720p) +http://unlimited10-cl.dps.live/decimatv/decimatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EGMChannel.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",EGM Channel (480p) [Not 24/7] +https://paneltv.online:1936/8186/8186/playlist.m3u8 +#EXTINF:-1 tvg-id="EKIZTVRancagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",EKIZ TV (Rancagua) (1080p) +https://stmv.panel.mivideo.pro/ekiztv/ekiztv/playlist.m3u8 +#EXTINF:-1 tvg-id="ElPinguinoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3ob9ss3.jpg" group-title="",El Pingüino TV (720p) [Offline] +https://iptv-all.lanesh4d0w.codes/m3u8/elpinguino_cl.m3u8 +#EXTINF:-1 tvg-id="ElionCanalDigital.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Elion Canal Digital (Chillan) (288p) [Not 24/7] +https://paneltv.online:1936/8154/8154/playlist.m3u8 +#EXTINF:-1 tvg-id="EnerGeek.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/EnerGeek.chile/picture?width=300&height=300" group-title="Entertainment",EnerGeek (720p) [Not 24/7] +https://stmv1.voxhdnet.com/energeek/energeek/playlist.m3u8 +#EXTINF:-1 tvg-id="EstacionTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS-ikVAyjIFBMuH1_tknzbL5zxfU9kQw1YfPw&usqp=CAU" group-title="",Estación TV (720p) [Timeout] +http://unlimited1-cl.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EstacionTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS-ikVAyjIFBMuH1_tknzbL5zxfU9kQw1YfPw&usqp=CAU" group-title="",Estación TV (720p) [Offline] +http://unlimited1-us.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EstacionTVChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Estación TV (Chillán) (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/estaciontv/estaciontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EvaStreamCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Eva Stream (Corporación Eva) (480p) [Not 24/7] +https://stmv.panel.mivideo.pro/evastream/evastream/playlist.m3u8 +#EXTINF:-1 tvg-id="EvavisionPachangaCorporacionEva.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Evavisión Pachanga (Corporación Eva) (720p) +http://159.69.56.148:25461/live/evavision/2r4rfasf/38.m3u8 +#EXTINF:-1 tvg-id="ExprezionTVEXTVLosAlamos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Exprezión TV (EXTV | Los Álamos) (720p) [Not 24/7] +https://srv3.zcast.com.br/expreszion/expreszion/playlist.m3u8 +#EXTINF:-1 tvg-id="GenialTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.chileiptv.cl/img/logos/file_1521688260.jpg" group-title="",Genial TV (720p) [Not 24/7] +http://v3.tustreaming.cl/genialtv/playlist.m3u8 +#EXTINF:-1 tvg-id="GeovisionIquique.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Geovisión (Iquique) (532p) +https://5fa5de1a545ae.streamlock.net/Geovision/Geovision/playlist.m3u8 +#EXTINF:-1 tvg-id="GraciaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://is1-ssl.mzstatic.com/image/thumb/Purple71/v4/dc/4f/bb/dc4fbb86-fb91-7803-17ad-9e26c5bc61f0/pr_source.png/246x0w.jpg" group-title="Religious",Gracia TV (1080p) [Not 24/7] +http://v3.tustreaming.cl/graciatv/index.m3u8 +#EXTINF:-1 tvg-id="HiperconectadosTV.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/hiperconectadostv/picture?width=320&height=320" group-title="Science",Hiperconectados Televisión (720p) +https://mediacpstreamchile.com:1936/hiperconectados/hiperconectados/playlist.m3u8 +#EXTINF:-1 tvg-id="HiperTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-Jzepv48lTKg/Xm-zbST5B9I/AAAAAAAAw9c/j5ZlS99NHzghrTZ7O-RHN8wIXHEkMRutgCK8BGAsYHg/s0/2020-03-16.png" group-title="",HiperTV (720p) [Not 24/7] +https://inliveserver.com:1936/11010/11010/playlist.m3u8 +#EXTINF:-1 tvg-id="HolvoetTVCopiapo.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Holvoet TV (Copiapó) (720p) [Not 24/7] +https://unlimited1-us.dps.live/holvoettv/holvoettv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Interradio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Interradio (1080p) [Not 24/7] +https://video01.logicahost.com.br/interradiofrutillar/smil:transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITVPatagonia.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9sKGsmt.png" group-title="",ITV Patagonia (720p) [Not 24/7] +https://unlimited1-us.dps.live/itv/itv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ITVPatagonia.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQx7H4ZZVpypexXqbp7Devw9Jo8H1FMPIv4eA&usqp=CAU" group-title="",ITV Patagonia (720p) [Timeout] +https://unlimited1-cl.dps.live/itv/itv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LaGranjaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",La Granja TV (720p) [Not 24/7] +https://5eae379fb77bb.streamlock.net/8126/8126/playlist.m3u8 +#EXTINF:-1 tvg-id="LaPopularTVSalamanca.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",La Popular TV (Salamanca) (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8076/ngrp:8076/playlist.m3u8 +#EXTINF:-1 tvg-id="LaRed.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_la-red_m.png" group-title="General",La Red (720p) [Not 24/7] +https://unlimited1-cl-movistar.dps.live/lared/lared.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LRPTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",LRP Televisión (720p) [Not 24/7] +https://v2.tustreaming.cl/lrp/index.m3u8 +#EXTINF:-1 tvg-id="LTVRenaico.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",LTV (Renaico) (720p) [Not 24/7] +https://medios.sirtel.cl/live/stream/index.m3u8 +#EXTINF:-1 tvg-id="MASPlusTVChile.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-gJQjLC4uY64nX5RDj7As24mWj35sC73ukw&usqp=CAU" group-title="",MÁS+.TV Chile (720p) [Not 24/7] +https://593b04c4c5670.streamlock.net/8008/8008/playlist.m3u8 +#EXTINF:-1 tvg-id="MAXIMA.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://maximachile.cl/wp-content/uploads/2019/10/LOGO-MAXIMA-MIO-ESTATICO-e1572548123359.png" group-title="",MAXIMA (720p) [Not 24/7] +https://server1.oklanet.cl:1936/maximavideo1/maximavideo1/playlist.m3u8 +#EXTINF:-1 tvg-id="Mega.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_mega_m.png" group-title="",Mega [Geo-blocked] +http://186.67.117.178:8081/play/a00x +#EXTINF:-1 tvg-id="Meganoticias.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",Meganoticias (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkccyEbqhhM3uKOI6Shm-4Q/live +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Conciertos (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/7.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Global Hits (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/5.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Puro Rock (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/25.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Retro (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/4.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Top100 (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/2.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Tropical (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/3.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 Vdj Retro (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/1.m3u8 +#EXTINF:-1 tvg-id="MIX247.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/WCyapaP.jpg" group-title="Music",MIX 24/7 VdjPop (720p) [Offline] +http://159.69.56.148:25461/live/Mix24-7Gratis/78qy9/6.m3u8 +#EXTINF:-1 tvg-id="MundodelaMusica.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Mundo de la Música (720p) +https://videostreaming.cloudserverlatam.com/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="NubleRTVChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ñuble RTV (Chillán) (720p) [Not 24/7] +https://live.tvcontrolcp.com:1936/guzman/guzman/playlist.m3u8 +#EXTINF:-1 tvg-id="NublevisionChillan.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ñublevisión (Chillán) (720p) +https://cdn.oneplaychile.cl:1936/regionales/nublevision.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OndaRadio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",Onda Radio (720p) [Offline] +https://5eff35271151c.streamlock.net:1936/8074/8074/playlist.m3u8 +#EXTINF:-1 tvg-id="Pauta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CFbHdqZ.jpg" group-title="",Pauta (720p) +https://unlimited1-us.dps.live/pautatv/pautatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Pauta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CFbHdqZ.jpg" group-title="",Pauta (720p) +https://unlimited6-cl.dps.live/pautatv/pautatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PintanaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/-tRkb11g6GOI/WoBPJm9cd4I/AAAAAAAAgyc/lrR7FPg27aoiQryOJXRQGuG8FLpKoXxBQCK8BGAs/s132/2018-02-11.png" group-title="",Pintana TV (720p) +http://cdn.vms.grupoz.cl/lapintanatv/content/5a7c8e25e19d3e641aca9fb2/hls/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvKids.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Kids (1080p) +https://mediacpstreamchile.com:1936/8152/8152/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvMovie.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Movie (1080p) +https://mediacpstreamchile.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetatvMusic.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Planetatv Music (720p) [Geo-blocked] +https://5eae379fb77bb.streamlock.net/planetatvmusic/planetatvmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="Portalfoxmix.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/portalfoxmixtv/picture?width=320&height=320" group-title="Music",Portalfoxmix (288p) [Not 24/7] +http://tv.portalfoxmix.club:1935/portalfoxmix/portalfoxmix/playlist.m3u8 +#EXTINF:-1 tvg-id="Portalfoxmix.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/portalfoxmixtv/picture?width=320&height=320" group-title="Music",Portalfoxmix (288p) [Not 24/7] +https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/playlist.m3u8 +#EXTINF:-1 tvg-id="PunconTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Puncón TV (1080p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/pucontv/pucontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioAmericaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Radio América TV (720p) [Not 24/7] +https://stmv1.zcastbr.com/americatvchile/americatvchile/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioElSembrador.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio El Sembrador (1080p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8064/8064/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioLaSabrosura.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio La Sabrosura (288p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8096/8096/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioMaxima949FMSB.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GQWiS9Q.png" group-title="",Radio Maxima 94.9 FM SB (720p) [Not 24/7] +http://server1.oklanet.cl:1935/maximavideo1/maximavideo1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRancaguaFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio Rancagua FM (768p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8056/8056/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRitmoFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Radio Ritmo FM (720p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8032/8032/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioUniem.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Radio Uniem (480p) [Not 24/7] +https://5eff35271151c.streamlock.net:1936/8110/8110/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZetaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://ik.imagekit.io/ulangotv/image/upload/3788384_logo_radio_zeta.png" group-title="",Radio Zeta TV (240p) [Not 24/7] +https://unlimited1-us.dps.live/radioztv/radioztv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZetaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://ik.imagekit.io/ulangotv/image/upload/3788384_logo_radio_zeta.png" group-title="",Radio Zeta TV (480p) [Timeout] +https://unlimited1-cl.dps.live/radioztv/radioztv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RCKTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Music",RCK TV (720p) +https://mediacpstreamchile.com:1936/ricardoaravena/ricardoaravena/playlist.m3u8 +#EXTINF:-1 tvg-id="RealProOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",RealPro Online (540p) [Offline] +https://paneltv.online:1936/8202/8202/playlist.m3u8 +#EXTINF:-1 tvg-id="RedBullBatalladeGallos.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Sports",RedBull Batalla de Gallos (720p) +https://videostreaming.cloudserverlatam.com/Batalladegallos/Batalladegallos/playlist.m3u8 +#EXTINF:-1 tvg-id="RestaurandoVidasInternacional.cl" tvg-country="CL;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104654614259430/picture?width=300&height=300" group-title="Religious",Restaurando Vidas Internacional (720p) [Not 24/7] +http://v4.tustreaming.cl/restaurandovidastv/index.m3u8 +#EXTINF:-1 tvg-id="RetroPlus.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Music",Retro Plus (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplustv/retroplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroPlus2.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Music",Retro Plus 2 (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/retroplussenal2/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroPlus3.cl" tvg-country="CL;PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i0rZsgG.png" group-title="Movies",Retro Plus 3 (720p) +https://59f1cbe63db89.streamlock.net:1443/retroplussenal3/retroplussenal3/playlist.m3u8 +#EXTINF:-1 tvg-id="RewindTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Ni2jlBi.png" group-title="Music",Rewind TV (720p) [Not 24/7] +https://tls.cdnz.cl/rewindtv/rewindtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RoccoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://roccotv.cl/wp-content/uploads/2015/02/roccotv.png" group-title="",Rocco TV (Coyhaique) (240p) [Not 24/7] +http://evo.eltelon.com:1935/live/rocco-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RuidosFM.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IvSqpx0.jpg" group-title="Music",Ruidos FM (720p) +https://593b04c4c5670.streamlock.net/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="SantaMariaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Santa María Televisión (720p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/smtv/smtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SellodeRaza.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GbALFNA.png" group-title="",Sello de Raza (720p) [Not 24/7] +https://v2.tustreaming.cl/mastermedia/playlist.m3u8 +#EXTINF:-1 tvg-id="SoloStandUp.cl" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/solostanduptv/picture?width=300&height=300" group-title="Comedy",SoloStandUp (480p) [Not 24/7] +https://paneltv.online:1936/8116/8116/playlist.m3u8 +#EXTINF:-1 tvg-id="SpectrumChannelLGBTQPlus.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",Spectrum Channel LGBTQ+ (480p) [Not 24/7] +https://vdohd.cl:1936/8078/8078/playlist.m3u8 +#EXTINF:-1 tvg-id="StgoTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/984897951024713729/HyC8AIMf.jpg" group-title="",Stgo.TV (720p) +https://stv.janus.cl/playlist/stream.m3u8 +#EXTINF:-1 tvg-id="T13.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="News",T13 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsRnhjcUCR78Q3Ud6OXCTNg/live +#EXTINF:-1 tvg-id="Tele2WebRetiro.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Tele 2 Web (Retiro) (536p) [Not 24/7] +https://inliveserver.com:1936/11516/11516/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_teletrak_m.png" group-title="Sports",Teletrak (720p) +https://unlimited6-cl.dps.live/sportinghd/sportinghd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6J8xRah.png" group-title="",Teletrak (720p) +https://unlimited6-cl.dps.live/teletrak/teletrak.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletrak.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6J8xRah.png" group-title="",Teletrak (720p) [Not 24/7] +https://unlimited1-us.dps.live/teletrak/teletrak.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Tendencias31PrimeT31Nunoa.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Tendencias 31 Prime (T31 | Ñuñoa) (1080p) [Not 24/7] +https://v2.tustreaming.cl/tendenciastv/index.m3u8 +#EXTINF:-1 tvg-id="Tevex.cl" tvg-country="CL;HISPAM" tvg-language="Spanish" tvg-logo="https://tevex.cl/wp-content/uploads/2021/01/logo_tevex_formato_3.svg" group-title="Business",Tevex (720p) [Not 24/7] +https://v4.tustreaming.cl/tevexinter/index.m3u8 +#EXTINF:-1 tvg-id="ThemaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.thematelevision.cl/wp-content/uploads/2016/02/LOGO1.png" group-title="",Thema Televisión (La Serena) (720p) [Not 24/7] +https://unlimited1-us.dps.live/thema/thema.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ThemaTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.thematelevision.cl/wp-content/uploads/2016/02/LOGO1.png" group-title="",Thema Televisión (La Serena) (720p) [Not 24/7] +https://unlimited6-cl.dps.live/thema/thema.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TNE.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",TNE (720p) [Not 24/7] +https://v2.tustreaming.cl/tnetv/index.m3u8 +#EXTINF:-1 tvg-id="TurfMovil.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Sports",Turf Móvil (720p) +https://janus.tvturf.cl/playlist/stream.m3u8 +#EXTINF:-1 tvg-id="TVCosta.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://image.winudf.com/v2/image1/dHYuY29zdGEzX2ljb25fMTU3MTA1MDcwOV8wODA/icon.png?w=170&fakeurl=1" group-title="",TV Costa (720p) [Not 24/7] +http://cdn.streamingmedia.cl:1935/live/canalcosta/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCostaSanAntonio.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Costa (San Antonio) (720p) [Not 24/7] +https://hd.chileservidores.cl:1936/tvcosta1/tvcosta1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVElquiLaSerena.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Elqui (La Serena) (720p) [Offline] +https://5eff35271151c.streamlock.net:1936/8070/8070/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOsorno.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Osorno (720p) [Not 24/7] +https://hd.chileservidores.cl:1936/osorno2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPop.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.radiopop.cl/wp-content/uploads/2019/01/logo_pop_001.png" group-title="",TV Pop (720p) +https://v4.tustreaming.cl/poptv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuellon.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Quellón (1080p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/tvquellon/tvquellon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuintaRegion.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV Quinta Región (1080p) [Not 24/7] +https://stmv1.zcastbr.com/danielg/smil:transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSalud.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PSDKboh.png" group-title="",TV Salud (720p) [Not 24/7] +https://srv3.zcast.com.br/mastermedia/mastermedia/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSenado.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_senado-tv_m.png" group-title="Local",TV Senado (360p) +https://janus-tv-ply.senado.cl/playlist/playlist.m3u8 +#EXTINF:-1 tvg-id="TVVision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",TV Vision (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3750/live/tvvisionlive.m3u8 +#EXTINF:-1 tvg-id="TV5Linares.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FvqaFci.png" group-title="",TV5 Linares (720p) +https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5Linares.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FvqaFci.png" group-title="",TV5 Linares (720p) [Not 24/7] +https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8Concepcion.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TV8 (Concepción) (514p) [Geo-blocked] +https://593b04c4c5670.streamlock.net/8014/8014/playlist.m3u8 +#EXTINF:-1 tvg-id="TVN.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLN4WfUMrRsD0b04jbG3EnYrnlV4FYPZURRw&usqp=CAU" group-title="",TVN (720p) [Not 24/7] +https://unlimited1-us.dps.live/tvn/tvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVN.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLN4WfUMrRsD0b04jbG3EnYrnlV4FYPZURRw&usqp=CAU" group-title="",TVN (720p) [Not 24/7] +https://unlimited10-cl.dps.live/tvn/tvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOSanVicente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",TVO (San Vicente) (270p) [Not 24/7] +https://pantera1-100gb-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOSanVicente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fvnO1X9.png" group-title="",TVO San Vicente (720p) [Not 24/7] +https://unlimited2-cl-movistar.dps.live/tvo/tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOTocopilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uM665XE.png" group-title="Local",TVO Tocopilla (360p) [Not 24/7] +http://srv3.zcast.com.br/cristian5592/cristian5592/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://elfiltrador.com/wp-content/uploads/2019/03/53311917_1258469654318918_8926059123426983936_n.png" group-title="",TVR (180p) [Not 24/7] +https://unlimited1-us.dps.live/tvr/tvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://elfiltrador.com/wp-content/uploads/2019/03/53311917_1258469654318918_8926059123426983936_n.png" group-title="",TVR (720p) [Timeout] +https://unlimited1-cl.dps.live/tvr/tvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ULosLagosTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="",U Los Lagos TV (1080p) [Not 24/7] +http://tv.ulagos.cl/web/live.m3u8 +#EXTINF:-1 tvg-id="UCV3TV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/f/f6/UCV_3.png/revision/latest?cb=20170820170650" group-title="",UCV3 TV (720p) +http://unlimited6-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UCV3TV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/f/f6/UCV_3.png/revision/latest?cb=20170820170650" group-title="",UCV3 TV (720p) [Timeout] +http://unlimited1-cl.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2dVTcSF.png" group-title="",UESTV (720p) [Offline] +http://cl.origin.grupoz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://sitios.upla.cl/contenidos/wp-content/uploads/2010/06/logo-canal-tv-2.jpg" group-title="",UESTV (720p) [Offline] +http://edge1.cl.grupoz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UESTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1158034752/logo_canal_tv_2.2.JPG" group-title="",UESTV (720p) [Offline] +https://tls.cdnz.cl/uestv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UMAGTVTelevision.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://www.novasur.cl/sites/default/files/web_umag_tv.png" group-title="",UMAGTV Televisión (Punta Arenas) (720p) [Offline] +http://edge1.cl.grupoz.cl/tser5/live/playlist.m3u8 +#EXTINF:-1 tvg-id="UnidadEvangelicaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Unidad Evangelica TV (720p) [Not 24/7] +https://v2.tustreaming.cl/unidadevangelica/index.m3u8 +#EXTINF:-1 tvg-id="UATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://uatv.cl/wp-content/uploads/2016/01/marcauatv_2.png" group-title="",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] +https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UATV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://uatv.cl/wp-content/uploads/2016/01/marcauatv_2.png" group-title="",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7] +https://unlimited6-cl.dps.live/uatv/uatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UTVSanClemente.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://www.utvsanclemente.cl/img/logo-utv-sc.png" group-title="",UTV San Clemente (720p) [Geo-blocked] +http://v3.tustreaming.cl/utvsc/playlist.m3u8 +#EXTINF:-1 tvg-id="VCOnline.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/897eGEd.png" group-title="",VC Online (706p) +https://593b04c4c5670.streamlock.net/8068/8068/playlist.m3u8 +#EXTINF:-1 tvg-id="VidaTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Vida TV (1080p) [Offline] +http://45.161.188.242:88/vidatv/index.m3u8 +#EXTINF:-1 tvg-id="VisionPlusTVMelipilla.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión Plus TV (Melipilla) (720p) [Not 24/7] +http://v2.tustreaming.cl/visionplustv/index.m3u8 +#EXTINF:-1 tvg-id="VisionTVFrutillar.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión TV Frutillar (720p) [Not 24/7] +https://vivo.solumedia.com:19360/visiontv/visiontv.m3u8 +#EXTINF:-1 tvg-id="VozdePoder.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Religious",Voz de Poder (720p) [Not 24/7] +https://v2.tustreaming.cl/vozdepoder/index.m3u8 +#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Valle de Aconcagua (720p) [Not 24/7] +https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Valle de Aconcagua (720p) [Not 24/7] +https://unlimited6-cl.dps.live/vtv/vtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTVVinadelMaryValparaiso.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="http://images.eltelon.com/cache/media/4151/square_150x150-2.jpg" group-title="",VTV Viña del Mar y Valparaíso (720p) [Offline] +http://cdn.streamingmedia.cl:1935/live/vtvvina/playlist.m3u8 +#EXTINF:-1 tvg-id="Wapp.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Lifestyle",Wapp (1080p) +https://mdstrm.com/live-stream-playlist/6046495ddf98b007fa2fe807.m3u8 +#EXTINF:-1 tvg-id="ZappingMusic.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lHvoKdw.jpg" group-title="Music",Zapping (720p) [Offline] +https://zmlive.zappingtv.com/zm_free/zm.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZizaTVChiguayante.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Local",Ziza TV (Chiguayante) (720p) [Not 24/7] +https://v2.tustreaming.cl/zizatv/index.m3u8 +#EXTINF:-1 tvg-id="ZonaLatina.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_zona-latina_m.png" group-title="Music",Zona Latina (480p) [Not 24/7] +http://38.131.11.9:1080/play/a00x +#EXTINF:-1 tvg-id="ZonaPlayTVZPTV.cl" tvg-country="CL" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Zona Play TV (ZPTV) (720p) [Not 24/7] +https://srv3.zcast.com.br/juancarlos9451/juancarlos9451/playlist.m3u8 diff --git a/channels/cm.m3u b/channels/cm.m3u new file mode 100644 index 000000000..7cb7d4e7e --- /dev/null +++ b/channels/cm.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EmergenceTV.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/REJJHir.jpg" group-title="",Emergence TV (480p) [Not 24/7] +http://connectiktv.ddns.net:5000/emergencetv/emergencetv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTVChannel.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/BuKv5Vj.png" group-title="",My TV Channel (720p) [Not 24/7] +http://connectiktv.ddns.net:5000/mytvchannel/@mytvchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayTV.cm" tvg-country="CM" tvg-language="French" tvg-logo="https://i.imgur.com/mvgRAZw.jpg" group-title="Music",Play TV (720p) [Not 24/7] +http://connectiktv.ddns.net:5000/playtv/@playtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Vision4.cm" tvg-country="CM" tvg-language="English;French" tvg-logo="https://i.imgur.com/FekWmTu.jpg" group-title="",Vision 4 (360p) +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/vision4/hls_video/index.m3u8 diff --git a/channels/cn.m3u~master b/channels/cn.m3u~master new file mode 100644 index 000000000..5414893b2 --- /dev/null +++ b/channels/cn.m3u~master @@ -0,0 +1,2959 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BesTVChaoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",BesTV超级 (576p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226942/index.m3u8 +#EXTINF:-1 tvg-id="BlueMeiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/BLUE.png" group-title="",Blue 美剧 (360p) [Not 24/7] +http://210.210.155.35/dr9445/h/h16/02.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225618/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://117.169.120.140:8080/live/cctv-1/.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://183.207.248.71/cntv/live1/cctv-1/cctv-1 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv1/HD-2500k-1080P-cctv1 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://183.207.249.9/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://183.207.249.15/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://223.110.245.170/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://223.110.245.170/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) +http://223.110.245.173/PLTV/4/224/3221227375/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/cctv1hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.243.138/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Not 24/7] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=29&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-1/G_CCTV-1 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] +http://223.110.245.139/PLTV/4/224/3221225852/index.m3u8 +#EXTINF:-1 tvg-id="CCTV1.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/6/65/CCTV-1_Logo.png" group-title="General",CCTV-1综合 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225852/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://117.169.120.140:8080/live/cctv-2/.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://183.207.248.71/cntv/live1/cctv-2/cctv-2 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) +http://223.110.245.170/PLTV/3/224/3221227207/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (540p) +http://112.25.48.68/live/program/live/cctv2/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226220/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=10&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTV2HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-2/G_CCTV-2 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (576p) [Offline] +http://183.207.249.13/PLTV/4/224/3221225881/index.m3u8 +#EXTINF:-1 tvg-id="CCTV2.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/CCTV-2_Logo.svg/800px-CCTV-2_Logo.svg.png" group-title="",CCTV-2财经 (360p) [Offline] +http://125.210.152.10:8060/live/CCTV2HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://39.135.38.165:6610/000000001000/1000000001000011218/1.m3u8?IASHttpSessionId=OTT16157620200202041417014267&fmt=ts2hls&u=45768392 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225647/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://112.25.48.68/live/program/live/cctv3hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://117.169.120.140:8080/live/cctv-3/.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv3/HD-2500k-1080P-cctv3 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://183.207.249.5/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://183.207.249.6/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://183.207.249.14/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) +http://183.207.249.35/PLTV/4/224/3221227295/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/cctv-3/cctv-3 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (480p) [Not 24/7] +http://newvideo.dangtutv.cn:8278/CCTVzongyi/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=80&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8 +#EXTINF:-1 tvg-id="CCTV3.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/34/CCTV-3_Logo.png" group-title="Entertainment",CCTV-3综艺 (576p) [Offline] +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226360/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://117.169.120.140:8080/live/cctv-4/.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://183.207.248.71/cntv/live1/cctv-4/cctv-4 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://183.207.249.6/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://183.207.249.11/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) +http://223.110.245.170/PLTV/3/224/3221225534/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) +http://111.63.117.13:6060/030000001000/CCTV-4/CCTV-4.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (540p) +http://112.25.48.68/live/program/live/cctv4/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=26&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/CCTV-4/CCTV-4 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctvamerica_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (1080p) [Offline] +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Offline] +http://183.207.249.15/PLTV/4/224/3221225781/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225781/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctveurope_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] +https://cctvcnch5ca.v.wscdns.com/live/cctvamerica_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV4.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/0/07/CCTV-4_Logo.svg/800px-CCTV-4_Logo.svg.png" group-title="General",CCTV-4中文国际 (360p) [Offline] +https://cctvcnch5ca.v.wscdns.com/live/cctveurope_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225706/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225649/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://117.169.120.132:8080/live/hdcctv05plus/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://183.207.248.71/cntv/live1/CCTV5+/hdcctv05plus +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://183.207.248.71/cntv/live1/hdcctv05plus/hdcctv05plus +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://183.207.249.14/PLTV/3/224/3221225604/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) +http://223.110.245.139/PLTV/4/224/3221227480/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5Plus.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-5+体育赛事 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=36&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225633/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225648/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://112.25.48.68/live/program/live/cctv5hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://183.207.248.71/cntv/live1/cctv-5/cctv-5 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://183.207.249.35/PLTV/4/224/3221227381/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.243.137/PLTV/3/224/3221227478/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.243.172/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.245.136/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.245.139/PLTV/4/224/3221227298/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.245.170/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) +http://223.110.245.172/PLTV/4/224/3221227298/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv5/HD-2500k-1080P-cctv5 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (360p) [Not 24/7] +http://hbry.chinashadt.com:1938/live/1004.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226224/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=32&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Timeout] +http://ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (1080p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227401/1.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (576p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221226362/index.m3u8 +#EXTINF:-1 tvg-id="CCTV5.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/3/33/CCTV-5_Logo.png" group-title="Sports",CCTV-5体育 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv5_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225650/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://117.169.120.140:8080/live/cctv-6/.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://183.207.248.37/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://183.207.249.9/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://183.207.249.15/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) +http://223.110.245.173/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/cctv6hd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv6/HD-2500k-1080P-cctv6 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226226/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=87&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] +http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 +#EXTINF:-1 tvg-id="CCTV6.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0c/CCTV-6_Logo.png" group-title="Movies",CCTV-6电影 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225644/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225624/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://117.169.120.140:8080/live/cctv-7/.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://183.207.248.10/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://183.207.248.71/cntv/live1/cctv-7/cctv-7 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://183.207.249.9/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://183.207.249.15/PLTV/3/224/3221225546/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) +http://183.207.249.36/PLTV/4/224/3221227314/index.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (540p) +http://112.25.48.68/live/program/live/cctv7/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=028&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=28&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=28&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTV7HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV7.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/f0/CCTV-7_Logo.png" group-title="",CCTV-7国防军事 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225631/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://117.169.120.132:8080/live/cctv-8/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://117.169.120.140:8080/live/cctv-8/.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://183.207.248.12/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://183.207.248.35/PLTV/3/224/3221227205/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://183.207.248.71/cntv/live1/cctv-8/cctv-8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.243.171/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.245.139/PLTV/4/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.245.170/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.245.170/PLTV/3/224/3221227205/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://223.110.245.172/PLTV/4/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=21&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-cctv8/HD-2500k-1080P-cctv8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226257/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (1080p) [Offline] +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8 +#EXTINF:-1 tvg-id="CCTV8.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/4/49/CCTV-8_Logo.png" group-title="",CCTV-8电视剧 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_CCTV-8/G_CCTV-8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225646/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) +http://183.207.248.71/cntv/live1/cctv-news/cctv-news +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) +http://183.207.249.6/PLTV/3/224/3221225532/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225868/index.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=33&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (360p) [Timeout] +http://125.210.152.18:9090/live/CCTVJLHD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV9.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/1/11/CCTV-9_Logo.png" group-title="Documentary",CCTV-9纪录 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctvjilu_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225636/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://117.169.120.140:8080/live/cctv-10/.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://183.207.248.71/cntv/live1/cctv-10/cctv-10 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://183.207.249.7/PLTV/3/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://183.207.249.34/PLTV/4/224/3221227317/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) +http://223.110.245.170/PLTV/3/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=4&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV10.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/f/fd/CCTV-10_Logo.png" group-title="Education",CCTV-10科教 (720p) [Timeout] +http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225628/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) +http://117.169.120.140:8080/live/cctv-11/.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (1080p) +http://223.110.245.169/PLTV/4/224/3221227384/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (540p) +http://112.25.48.68/live/program/live/cctv11/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (720p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (360p) [Not 24/7] +http://cctvalih5ca.v.myalicdn.com/live/cctv11_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV11.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/9/9c/CCTV-11_Logo.png" group-title="",CCTV-11戏曲 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=53&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225637/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225629/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://183.207.248.71/cntv/live1/cctv-12/cctv-12 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://183.207.249.7/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://183.207.249.8/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://223.110.245.170/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) +http://223.110.245.172/PLTV/3/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=34&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (720p) [Timeout] +http://125.210.152.18:9090/live/CCTV12HD_H265.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (540p) [Timeout] +http://112.25.48.68/live/program/live/cctv12/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (576p) [Offline] +http://183.207.249.5/PLTV/4/224/3221225803/index.m3u8 +#EXTINF:-1 tvg-id="CCTV12.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/7/71/CCTV-12_Logo.png" group-title="",CCTV-12社会与法制 (360p) [Offline] +http://cctvalih5ca.v.myalicdn.com/live/cctv12_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) +http://183.207.248.71/cntv/live1/cctv-13/cctv-13 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) +http://183.207.249.14/PLTV/3/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) +http://183.207.249.36/PLTV/4/224/3221227387/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (720p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (720p) +http://117.169.120.140:8080/live/cctv-13/.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) +http://stream4.jlntv.cn/cctv13/sd/live.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (540p) +http://112.25.48.68/live/program/live/cctvxw/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (360p) +http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (1080p) [Not 24/7] +http://223.110.245.170/PLTV/3/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=64&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV13.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/0/0b/CCTV-13_Logo.png" group-title="News",CCTV-13新闻 (576p) [Timeout] +http://125.210.152.18:9090/live/CCTV13_750.m3u8 +#EXTINF:-1 tvg-id="CCTV15.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Music",CCTV-15音乐 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=54&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225908/index.m3u8 +#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225907/index.m3u8 +#EXTINF:-1 tvg-id="CCTV17.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-17农业农村 (1080p) [Offline] +http://117.169.120.160:8080/live/HD-4000k-1080P-cctv17/1.m3u8 +#EXTINF:-1 tvg-id="CCTVNuXingShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-女性时尚 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8 +#EXTINF:-1 tvg-id="CCTVLaoGuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV-老故事 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8 +#EXTINF:-1 tvg-id="CCTVPlus1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV+ 1 (600p) [Not 24/7] +https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CCTVPlus2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CCTV+ 2 (600p) [Not 24/7] +https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CETV1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CETV1 (576p) +http://183.207.248.71/gitv/live1/G_CETV-1/G_CETV-1 +#EXTINF:-1 tvg-id="CETV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CETV2 (576p) +http://183.207.248.71/gitv/live1/G_CETV-2/G_CETV-2 +#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) +http://live.cgtn.com/500/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) +http://live.cgtn.com/1000/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTN.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=14&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CGTNArabic.cn" tvg-country="CN" tvg-language="Arabic" tvg-logo="https://ui.cgtn.com/static/resource/images/icon_new/live/live_AR.png" group-title="News",CGTN Arabic (576p) [Not 24/7] +http://livear.cgtn.com/1000a/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNDocumentary.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/CGTN_Documentary_logo.png" group-title="Documentary",CGTN Documentary (576p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225645/index.m3u8 +#EXTINF:-1 tvg-id="CGTNDocumentary.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/CGTN_Documentary_logo.png" group-title="Documentary",CGTN Documentary (576p) [Not 24/7] +https://livedoc.cgtn.com/1000d/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNEspanol.cn" tvg-country="CN" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN Español (576p) +https://livees.cgtn.com/1000e/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNEspanol.cn" tvg-country="CN" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN Español (576p) [Not 24/7] +http://livees.cgtn.com/500e/prog_index.m3u8 +#EXTINF:-1 tvg-id="CGTNFrancais.cn" tvg-country="CN" tvg-language="French" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/10/03/DStv_cgtn_french_4-3_001_xlrg.png" group-title="",CGTN Français (576p) [Not 24/7] +https://news.cgtn.com/resource/live/french/cgtn-f.m3u8 +#EXTINF:-1 tvg-id="CGTNJiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CGTN纪录 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225509/index.m3u8 +#EXTINF:-1 tvg-id="CHCDongZuoDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CHC动作电影 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=119&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="CHCGaoQingDianYing.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/GjGiNIA.jpg" group-title="Movies",CHC高清电影 [Offline] +http://ivi.bupt.edu.cn/hls/chchd.m3u8 +#EXTINF:-1 tvg-id="CNCZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",CNC中文 (720p) [Not 24/7] +http://source07.v.news.cn/live/CNC_CN/playlist.m3u8 +#EXTINF:-1 tvg-id="CNCYingYu.cn" tvg-country="CN" tvg-language="English" tvg-logo="" group-title="",CNC英语 (720p) [Not 24/7] +http://source07.v.news.cn/live/CNC_EN/playlist.m3u8 +#EXTINF:-1 tvg-id="NewTVZhongGuoGongFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV中国功夫 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJunShiPingLun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV军事评论 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225535/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJunLuJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV军旅剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225560/index.m3u8 +#EXTINF:-1 tvg-id="NewTVNongYeZhiFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV农业致富 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8 +#EXTINF:-1 tvg-id="NewTVDongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV动画王国 (1080p) +http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8 +#EXTINF:-1 tvg-id="NewTVDongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV动画王国 (1080p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8 +#EXTINF:-1 tvg-id="NewTVGuZhuangJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV古装剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225524/index.m3u8 +#EXTINF:-1 tvg-id="NewTVWanMeiYouXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV完美遊戲 (1080p) +http://183.207.249.16/PLTV/3/224/3221225539/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJiaTingJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV家庭剧场 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225538/index.m3u8 +#EXTINF:-1 tvg-id="NewTVYiBanJianKang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV怡伴健康 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225571/index.m3u8 +#EXTINF:-1 tvg-id="NewTVBoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV搏击 (720p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221226803/index.m3u8 +#EXTINF:-1 tvg-id="NewTVMingXingDaPian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV明星大片 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8 +#EXTINF:-1 tvg-id="NewTVWuBoShiJie.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV武搏世界 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoMaLaPo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV潮妈辣婆 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225542/index.m3u8 +#EXTINF:-1 tvg-id="NewTVXuanWuWeiLai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV炫舞未来 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8 +#EXTINF:-1 tvg-id="NewTVAiQingXiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV爱情喜剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225533/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJingPinTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品体育 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJingPinDaJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品大剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJingPinJiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品纪录 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品電影 (1080p) +http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV精品電影 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoJiTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级体育 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoJiDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电影 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoJiDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电影 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoJiDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级电视剧 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8 +#EXTINF:-1 tvg-id="NewTVChaoJiZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV超级综艺 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8 +#EXTINF:-1 tvg-id="NewTVJinPaiZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",NewTV金牌综艺 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8 +#EXTINF:-1 tvg-id="SDETV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SDETV (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8 +#EXTINF:-1 tvg-id="SiTVQiCaiXiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV七彩戏剧 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/qcxj/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVDongFangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV东方财经 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/dfcj/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVQuanJiShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV全纪实台 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/qjshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVDongManXiuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV动漫秀场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dmxchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVJingBaoTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV劲爆体育 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/jbtyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVJingBaoTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV劲爆体育 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=74&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="SiTVXingFuCai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV幸福彩 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=73&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="SiTVXinShiJue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV新视觉 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=75&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="SiTVXinShiJueTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV新视觉台 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/xsjhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVJiSuQiChe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV极速汽车 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/jsqchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVHuanXiaoJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV欢笑剧场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hxjchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVFaZhiTianDi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV法治天地 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/fztd/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVYouXiFengYun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV游戏风云 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/yxfyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVShengHuoShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV生活时尚 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/shsshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVDuShiJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV都市剧场 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dsjchd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVMeiLiZuQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV魅力足球 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/mlyyhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiTVMeiLiZuQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",SiTV魅力足球 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=76&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB 明珠台 (240p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=2&FvSeid=1&Pcontent_id=8114.m3u8&Provider_id=0 +#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (480p) [Timeout] +http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="TVBMingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB明珠台 (480p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/hls/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=188&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="TVBFeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVB翡翠台 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&_res_tag_=video +#EXTINF:-1 tvg-id="TVS2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",TVS2 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8 +#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州三峡移民 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="WanZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州影视 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州科教 (576p) +http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万州综合 (576p) [Not 24/7] +http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="WanShengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",万盛新闻综合 (576p) [Not 24/7] +http://stream0.tv41.ru/live.m3u8 +#EXTINF:-1 tvg-id="SanMingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",三明公共 (720p) [Not 24/7] +http://stream.smntv.cn/smtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="SanMingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",三明新闻综合 (720p) [Not 24/7] +http://stream.smntv.cn/smtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="SanLiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/SETNews.png" group-title="News",三立新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/sllive_fhd.m3u8 +#EXTINF:-1 tvg-id="ShangHaiICSWaiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海 ICS外语 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/wypdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiDongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海东方卫视 [Offline] +http://ivi.bupt.edu.cn/hls/dfhd.m3u8 +#EXTINF:-1 tvg-id="ShangHaiDongFangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海东方影视 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dsjpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiWuXingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海五星体育 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/ssty/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv +#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (1080p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8 +#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 (576p) [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225856/index.m3u8 +#EXTINF:-1 tvg-id="ShangHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海卫视 [Offline] +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="ShangHaiHaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海哈哈炫动 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hhxdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiWaiTanMoYan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海外滩魔眼 [Offline] +rtmp://bililive.kksmg.com/hls/sdi80 +#EXTINF:-1 tvg-id="ShangHaiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海教育 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/setv/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiJiaoYuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海教育台 (720p) [Offline] +http://live.setv.sh.cn/slive/shedu02_1200k.m3u8 +#EXTINF:-1 tvg-id="ShangHaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海新闻综合 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/xwzhhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiDiYiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海第一财经 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/dycjhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海纪实 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225654/index.m3u8 +#EXTINF:-1 tvg-id="ShangHaiJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海纪实 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225655/index.m3u8 +#EXTINF:-1 tvg-id="ShangHaiZheYiKeMoDuYan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海这一刻魔都眼 (720p) [Not 24/7] +http://bililive.kksmg.com/hls/sdi80/playlist.m3u8 +#EXTINF:-1 tvg-id="ShangHaiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海都市 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/ylpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShangHaiJinShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上海金山电视台 (270p) +http://live.mudu.tv/watch/4zbn2f.m3u8 +#EXTINF:-1 tvg-id="ShangYu1XinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞1新闻综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8 +#EXTINF:-1 tvg-id="ShangYu3XinShangDu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞3新商都 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8 +#EXTINF:-1 tvg-id="ShangYuJingJiWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",上虞經濟文化 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) +http://112.25.48.68/live/program/live/dnwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) +http://117.169.120.140:8080/live/dongnanstv/.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) +http://223.110.254.205:6610/cntv/live1/n-dongnanstv/n-dongnanstv/1.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225500/index.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (576p) +http://183.207.249.15/PLTV/4/224/3221225816/index.m3u8 +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=23&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="DongNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东南卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/DNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="DongXiangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",东乡电视台 [Timeout] +http://117.156.28.119/270000001111/1110000131/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225672/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225658/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225659/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://112.25.48.68/live/program/live/hddfws/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://183.207.249.7/PLTV/4/224/3221227396/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://223.110.254.212:6610/cntv/live1/HD-2500k-1080P-dongfangstv/HD-2500k-1080P-dongfangstv/1.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Not 24/7] +http://223.110.243.138/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Not 24/7] +http://223.110.243.138/PLTV/3/224/3221227208/index.m3u8 +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="DongFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/dongfang.jpg" group-title="",东方卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=22&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="DongFangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东方影视 (1080p) +http://140.207.241.3:8080/live/program/live/dsjpdhd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="DongZhiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至影视 (576p) [Not 24/7] +http://223.247.33.124:1935/live/yingshi/playlist.m3u8 +#EXTINF:-1 tvg-id="DongZhiWenHuaZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至文化资讯 (576p) [Not 24/7] +http://223.247.33.124:1935/live/wenhua/playlist.m3u8 +#EXTINF:-1 tvg-id="DongZhiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东至新闻综合 (720p) [Not 24/7] +http://223.247.33.124:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="DongWanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东莞综合 (480p) +http://dslive.grtn.cn/dgzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="DongYangYingShiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东阳影视生活 [Offline] +http://stream.dybtv.com/yssh/GQ/live.m3u8 +#EXTINF:-1 tvg-id="DongYangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",东阳新闻综合 [Offline] +http://stream.dybtv.com/xwzh/GQ/live.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国交通 (576p) [Offline] +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国交通 (576p) [Offline] +http://ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoTongSiChuan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_sc.jpg" group-title="",中国交通 (四川) (360p) [Offline] +https://tv.lanjingfm.com/cctbn/sichuan.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoTongAnHui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_ah.png" group-title="",中国交通 (安徽) [Offline] +https://tv.lanjingfm.com/cctbn/anhui.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoTongHaiNan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://cctbn.com/images/cctbn_hn.png" group-title="",中国交通 (海南) (1080p) [Not 24/7] +https://tv.lanjingfm.com/cctbn/hainan.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoTianQi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国天气 (576p) [Not 24/7] +http://112.25.48.68/live/program/live/zgqx/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国教育1 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoJiaoYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中国教育1 (1080p) [Not 24/7] +http://39.134.39.39/PLTV/88888888/224/3221226282/index.m3u8 +#EXTINF:-1 tvg-id="ZhongGuoQiXiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Weather",中国气象 (576p) [Not 24/7] +http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8 +#EXTINF:-1 tvg-id="ZhongTianXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/908.png" group-title="",中天新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/ztxw_fhd.m3u8 +#EXTINF:-1 tvg-id="ZhongShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山公共 (480p) +http://dslive.grtn.cn/zszh/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZhongShanJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山教育 [Offline] +http://149.129.100.78/tv.php?id=zsjy +#EXTINF:-1 tvg-id="ZhongShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中山综合 [Offline] +http://149.129.100.78/tv.php?id=zszh +#EXTINF:-1 tvg-id="ZhongMouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中牟综合 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10122-1.m3u8 +#EXTINF:-1 tvg-id="ZhongMouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",中牟综合 (360p) [Not 24/7] +http://218.206.193.210:9850/playServer/acquirePlayService?deviceGroup=TV(STB)&drmType=none&kdsplayer=media&nsukey=&op=sovp&playType=catchup&protocol=hls0&redirect=m3u8&resourceId=1000000000000001&type=live +#EXTINF:-1 tvg-id="ZhongShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/%E4%B8%AD%E8%A7%86%E6%96%B0%E9%97%BB.png" group-title="",中視新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/zsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="LinYiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",临沂公共 [Offline] +http://live.ilinyi.net/channels/tvie/linyigonggong/flv:500k/live +#EXTINF:-1 tvg-id="LinYiNongKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",临沂农科 [Offline] +http://live.ilinyi.net/channels/tvie/linyicaijing/flv:500k/live +#EXTINF:-1 tvg-id="LeQingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",乐清新闻 [Geo-blocked] +http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_170.m3u8 +#EXTINF:-1 tvg-id="LeQingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",乐清生活 [Geo-blocked] +http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8 +#EXTINF:-1 tvg-id="YunNanIWenShanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 文山公共台 (1080p) +http://tvdrs.wsrtv.com.cn:8100/channellive/ch2.flv +#EXTINF:-1 tvg-id="YunNanIWenShanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 文山综合台 (1080p) [Not 24/7] +http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv +#EXTINF:-1 tvg-id="YunNanIHongHeZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南 Ⅰ 红河综合台 (1080p) +http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南公共 [Offline] +http://yntvpullhls.ynradio.com/live/yunnangonggong/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (1080p) +https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225664/index.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://183.207.248.71/gitv/live1/G_YUNNAN/G_YUNNAN +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://223.110.245.173/PLTV/4/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (540p) +http://112.25.48.68/live/program/live/ynws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) [Not 24/7] +http://183.207.248.71/cntv/live1/yunnanstv/yunnanstv +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="YunNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云南卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=110&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="YunNanGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南国际 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanguoji/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南娱乐 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanyule/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南少儿 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanshaoer/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南生活资讯 [Offline] +http://yntvpullhls.ynradio.com/live/yunnanshenghuo/playlist.m3u8 +#EXTINF:-1 tvg-id="YunNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南都市 (1080p) [Timeout] +http://39.130.202.81:6610/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8 +#EXTINF:-1 tvg-id="YunNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="",云南都市 [Offline] +http://yntvpullhls.ynradio.com/live/yunnandushi/playlist.m3u8 +#EXTINF:-1 tvg-id="YunFuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",云浮综合 (480p) [Timeout] +http://dslive.grtn.cn/yfzh/playlist.m3u8 +#EXTINF:-1 tvg-id="WuXingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",五星体育 (720p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221226799/index.m3u8 +#EXTINF:-1 tvg-id="YaTaiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亚太台 (480p) +http://174.127.67.246/live330/playlist.m3u8 +#EXTINF:-1 tvg-id="JiaoChengDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",交城電視台 (576p) +http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JingShiJuChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",京视剧场 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227040/index.m3u8 +#EXTINF:-1 tvg-id="BoZhouNongCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亳州农村 (360p) [Timeout] +http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8 +#EXTINF:-1 tvg-id="BoZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",亳州新聞頻道 (360p) +http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8 +#EXTINF:-1 tvg-id="JinRiELuoSi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Russia-today-logo.svg/1200px-Russia-today-logo.svg.png" group-title="",今日俄罗斯 (720p) [Offline] +https://rt-news-gd.secure2.footprint.net/1103_2500Kb.m3u8 +#EXTINF:-1 tvg-id="XianTaoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",仙桃新聞綜合 (576p) [Offline] +http://221.233.242.239:280/live/71/playlist.m3u8 +#EXTINF:-1 tvg-id="XianTaoShengHuoWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",仙桃生活文體 (576p) [Offline] +http://221.233.242.239:280/live/72/playlist.m3u8 +#EXTINF:-1 tvg-id="YouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优漫卡通 (576p) +http://183.207.249.15/PLTV/4/224/3221225933/index.m3u8 +#EXTINF:-1 tvg-id="YouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优漫卡通 (576p) +http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8 +#EXTINF:-1 tvg-id="YouShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优视 (720p) +http://1-fss24-s0.streamhoster.com/lv_uchannel/_definst_/broadcast1/chunklist.m3u8 +#EXTINF:-1 tvg-id="YouShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",优视 (720p) [Not 24/7] +http://1-fss24-s0.streamhoster.com/lv_uchannel/broadcast1/playlist.m3u8 +#EXTINF:-1 tvg-id="YuYaoYaoJiangWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",余姚姚江文化 (576p) +http://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8 +#EXTINF:-1 tvg-id="YuYaoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",余姚新闻综合 (576p) +http://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8 +#EXTINF:-1 tvg-id="FoShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",佛山公共 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="FoShanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",佛山公共 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=182&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="QiaoXiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="qiaoxiangpingdao.png" group-title="",侨乡 (1080p) +http://stream.jinjiang.tv/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",內蒙古卫视 (1080p) [Offline] +http://live.m2oplus.nmtv.cn/1/playlist.m3u8 +#EXTINF:-1 tvg-id="LiuAnGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.china-latv.com/t/icon/201901/20190107160038YJK.png" group-title="",六安公共 (720p) [Offline] +http://live.china-latv.com/channel2/playlist.m3u8 +#EXTINF:-1 tvg-id="LiuAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.china-latv.com/t/icon/201901/20190107160038YJK.png" group-title="",六安新闻综合 (720p) [Not 24/7] +http://live.china-latv.com/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="BingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/bingtuantv.jpg" group-title="",兵团卫视 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/btws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="BingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/bingtuantv.jpg" group-title="",兵团卫视 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=050&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="NeiJiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江公共 (720p) +http://njzb.scnj.tv:90/live/gggy_gggy800.m3u8 +#EXTINF:-1 tvg-id="NeiJiangKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江科教 (720p) +http://njzb.scnj.tv:90/live/kjpd_kjpd800.m3u8 +#EXTINF:-1 tvg-id="NeiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内江综合 (720p) +http://njzb.scnj.tv:90/live/xwzh_xwzh800.m3u8 +#EXTINF:-1 tvg-id="NeiMengWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225577/index.m3u8 +#EXTINF:-1 tvg-id="NeiMengGu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙古 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225577/index.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225667/index.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) +http://117.169.120.140:8080/live/neimenggustv/.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) +http://183.207.248.71/gitv/live1/G_NEIMENGGU/G_NEIMENGGU +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (576p) +http://223.110.245.173/PLTV/4/224/3221225836/index.m3u8 +#EXTINF:-1 tvg-id="NeiMengGuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/neimeng.png" group-title="",内蒙古卫视 (480p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=17&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="NeiMengMengYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",内蒙蒙语 (240p) +http://stream.nmtv.cn/3/sd/live.m3u8 +#EXTINF:-1 tvg-id="NongAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",农安新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/naxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) +http://223.110.245.139/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) +http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=190&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (576p) [Timeout] +http://125.210.152.18:9090/live/FHZW_1200.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (240p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=190&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/fhchinese/1.m3u8 +#EXTINF:-1 tvg-id="FengHuangZhongWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰中文 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhchinese/1.m3u8 +#EXTINF:-1 tvg-id="FengHuangDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/a/a0/Phoenix_Movies.svg/200px-Phoenix_Movies.svg.png" group-title="Movies",凤凰电影 [Offline] +https://www.fanmingming.cn/hls/fhdy.m3u8 +#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) +http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (576p) [Timeout] +http://125.210.152.18:9090/live/FHZX_1200.m3u8 +#EXTINF:-1 tvg-id="FengHuangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰资讯 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/ysten-bussiness/live/fhzixun/1.m3u8 +#EXTINF:-1 tvg-id="FengHuangXiangGang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰香港 (720p) +http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8 +#EXTINF:-1 tvg-id="FengHuangXiangGang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤凰香港 (720p) +http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8 +#EXTINF:-1 tvg-id="FengTaiWenHuaShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤台文化生活 (576p) [Not 24/7] +http://60.175.115.119:1935/live/wenhua/playlist.m3u8 +#EXTINF:-1 tvg-id="FengTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",凤台综合 (576p) [Not 24/7] +http://60.175.115.119:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="LiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川公共 (576p) [Geo-blocked] +http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8 +#EXTINF:-1 tvg-id="LiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川公共 (180p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w1847269952_b204800.m3u8 +#EXTINF:-1 tvg-id="LiChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",利川新闻综合 (480p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w439903609_b1228800.m3u8 +#EXTINF:-1 tvg-id="QianGuoZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",前郭综合 [Geo-blocked] +http://stream2.jlntv.cn/qg/sd/live.m3u8 +#EXTINF:-1 tvg-id="DongZuoDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",动作电影 (1080p) [Timeout] +http://39.134.19.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8 +#EXTINF:-1 tvg-id="DongHuaWangGuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",动画王国 (1080p) +http://183.207.248.71/cntv/live1/donghuawg/donghuawg +#EXTINF:-1 tvg-id="BeiJing10ShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京10少儿 [Offline] +http://ivi.bupt.edu.cn/hls/btv10.m3u8 +#EXTINF:-1 tvg-id="BeiJingTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京体育 (1080p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=158&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="BeiJingDongAoJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京冬奥纪实 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=158&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="BeiJingQiaKuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",北京卡酷少儿 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225562/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingQiaKuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",北京卡酷少儿 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=108&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225673/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225674/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://183.207.248.71/cntv/live1/beijingstv/beijingstv +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://183.207.249.7/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://183.207.249.8/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227246/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227390/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://223.110.245.173/PLTV/4/224/3221227390/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/bjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv1.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=30&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_BEIJING/G_BEIJING +#EXTINF:-1 tvg-id="BeiJingJiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京家有购物 (720p) +http://39.134.66.66/PLTV/88888888/224/3221225554/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京影視 [Offline] +http://ivi.bupt.edu.cn/hls/btv4.m3u8 +#EXTINF:-1 tvg-id="BeiJingWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京文藝 [Offline] +http://ivi.bupt.edu.cn/hls/btv2.m3u8 +#EXTINF:-1 tvg-id="BeiJingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京新聞 [Offline] +http://ivi.bupt.edu.cn/hls/btv9.m3u8 +#EXTINF:-1 tvg-id="BeiJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京生活 [Offline] +http://ivi.bupt.edu.cn/hls/btv7.m3u8 +#EXTINF:-1 tvg-id="BeiJingKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京科教 [Offline] +http://ivi.bupt.edu.cn/hls/btv3.m3u8 +#EXTINF:-1 tvg-id="BeiJingJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://media.bjnews.com.cn/image/2019/05/03/4788479376108891447.jpg" group-title="News",北京紀實 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225675/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingJiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://media.bjnews.com.cn/image/2019/05/03/4788479376108891447.jpg" group-title="News",北京紀實 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225676/index.m3u8 +#EXTINF:-1 tvg-id="BeiJingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/bjbtv.jpg" group-title="",北京衛視 (1080p) [Geo-blocked] +http://14.152.88.77/liveplay-kk.rtxapp.com/live/program/live/bjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BTVCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京财经 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv5.m3u8 +#EXTINF:-1 tvg-id="BTVQingNian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北京青年 [Not 24/7] +http://ivi.bupt.edu.cn/hls/btv8.m3u8 +#EXTINF:-1 tvg-id="BeiPeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",北碚综合 (576p) [Offline] +http://222.178.181.121:12034/beibei01.m3u8 +#EXTINF:-1 tvg-id="BanDaoXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",半岛新闻 (1080p) +https://live-hls-web-aje.getaj.net/AJE/01.m3u8 +#EXTINF:-1 tvg-id="HuaTingDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://5b0988e595225.cdn.sohucs.com/images/20181203/2813953209084182afb08496fd20e484.jpeg" group-title="",华亭电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000148/index.m3u8 +#EXTINF:-1 tvg-id="HuaShu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",华数 (720p) [Not 24/7] +http://hls-ott-zhibo.wasu.tv/live/442/index.m3u8 +#EXTINF:-1 tvg-id="NanJingXinXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京信息 (720p) +http://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingShiBa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京十八 (720p) +http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingShiBa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京十八 (576p) +http://183.207.248.71/gitv/live1/G_NJSB/G_NJSB +#EXTINF:-1 tvg-id="NanJingYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京娱乐 (720p) +http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京少儿 (720p) [Not 24/7] +http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京影视 [Offline] +http://live.nbs.cn/channels/njtv/yspd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (576p) +http://183.207.248.71/gitv/live1/G_NJJK/G_NJJK +#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (576p) +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8 +#EXTINF:-1 tvg-id="NanJingJiaoKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京教科 (720p) [Not 24/7] +http://live.nbs.cn/channels/njtv/jkpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京新闻综合 (720p) +http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南京生活 (720p) +http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8 +#EXTINF:-1 tvg-id="NanZhaoYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南召一套 (576p) [Not 24/7] +http://hnnz.chinashadt.com:1935/live/1002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NanNingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁公共 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_PUB_A.m3u8 +#EXTINF:-1 tvg-id="NanNingYingShiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁影视娱乐 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_VOD_A.m3u8 +#EXTINF:-1 tvg-id="NanNingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁新闻综合 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_NEWS_A.m3u8 +#EXTINF:-1 tvg-id="NanNingDuShiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南宁都市生活 (720p) [Not 24/7] +http://hls.nntv.cn/nnlive/NNTV_METRO_A.m3u8 +#EXTINF:-1 tvg-id="NanChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川新闻综合 (360p) +http://221.5.213.4:30000/1111.m3u8 +#EXTINF:-1 tvg-id="NanChuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川新闻综合 (360p) [Not 24/7] +http://nanchuanlive.cbg.cn:30000/1111.m3u8 +#EXTINF:-1 tvg-id="NanChuanLuYouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川旅游经济 (360p) [Offline] +http://221.5.213.4:30000/2222.m3u8 +#EXTINF:-1 tvg-id="NanChuanLuYouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南川旅游经济 (360p) [Offline] +http://nanchuanlive.cbg.cn:30000/2222.m3u8 +#EXTINF:-1 tvg-id="NanFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/nanfang.png" group-title="",南方卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="NanFangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/nanfang.png" group-title="",南方卫视 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=51 +#EXTINF:-1 tvg-id="NanFangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南方购物 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=42 +#EXTINF:-1 tvg-id="NanTongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通公共 [Offline] +http://149.129.100.78/nantong.php?id=gg +#EXTINF:-1 tvg-id="NanTongJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通教育 [Offline] +http://149.129.100.78/nantong.php?id=sj +#EXTINF:-1 tvg-id="NanTongWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通文化旅游 [Offline] +http://149.129.100.78/nantong.php?id=ly +#EXTINF:-1 tvg-id="NanTongXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南通新闻综合 [Offline] +http://149.129.100.78/nantong.php?id=zh +#EXTINF:-1 tvg-id="NanYangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南阳新闻 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8 +#EXTINF:-1 tvg-id="NanYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南陽公共頻道 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8 +#EXTINF:-1 tvg-id="NanYangKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",南陽科教頻道 (1080p) [Not 24/7] +http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8 +#EXTINF:-1 tvg-id="BoZhouHanYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",博州汉语综合 [Offline] +http://klmyyun.chinavas.com/hls/bozhou1.m3u8 +#EXTINF:-1 tvg-id="BoZhouWeiYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",博州维语综合 [Offline] +http://klmyyun.chinavas.com/hls/bozhou3.m3u8 +#EXTINF:-1 tvg-id="ShaMenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/XMWS.png" group-title="",厦门卫视 (576p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8 +#EXTINF:-1 tvg-id="ShaMenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/XMWS.png" group-title="",厦门卫视 (540p) [Not 24/7] +http://112.25.48.68/live/program/live/xmws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShuangFengDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",双峰电视一套 (360p) +http://hnsf.chinashadt.com:2036/zhuanma/tv1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="FaXianZhiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",发现之旅 (576p) [Timeout] +http://125.210.152.18:9090/live/FXZL_750.m3u8 +#EXTINF:-1 tvg-id="TaiShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/%E5%8F%B0%E8%A7%86%E6%96%B0%E9%97%BB.png" group-title="",台視新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/tsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="JiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉州新聞綜合 (1080p) +http://218.204.153.158/10.m3u8 +#EXTINF:-1 tvg-id="JiLin7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林7 (900p) [Not 24/7] +http://stream1.jlntv.cn/fzpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) +http://117.169.120.140:8080/live/jilinstv/.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) +http://183.207.249.7/PLTV/4/224/3221225883/index.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (540p) +http://112.25.48.68/live/program/live/jlws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (240p) [Not 24/7] +http://stream4.jlntv.cn/test2/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=25&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="JiLinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jilin.png" group-title="",吉林卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/JLWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="JiLinShiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林市新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/jilin1/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiLinXiangCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",吉林乡村 (900p) [Not 24/7] +http://stream1.jlntv.cn/xcpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/wujiangtv.jpg" group-title="",吴江新闻综合 (720p) [Not 24/7] +http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8 +#EXTINF:-1 tvg-id="ZhouKouTuWenXinXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口图文信息 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live4/mp4:ch4-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhouKouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口影视 [Offline] +http://hls.haokan.bdstatic.com/haokan/stream_bduid_1646578943_0.m3u8 +#EXTINF:-1 tvg-id="ZhouKouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口新闻综合 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live1/mp4:ch1-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhouKouKeJiaoWenHua2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口科教文化2 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live3/mp4:ch3-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhouKouJingJiShengHuo2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",周口经济生活2 (576p) [Not 24/7] +http://tv.zkxww.com:1935/live2/mp4:ch2-500k/playlist.m3u8 +#EXTINF:-1 tvg-id="HuLunBeiErXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",呼伦贝尔新闻 (720p) [Not 24/7] +http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="HuLunBeiErShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",呼伦贝尔生活资讯 (720p) [Not 24/7] +http://live1.hrtonline.cn:1935/live/live102/500K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="HeZhengDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",和政电视台 [Timeout] +http://117.156.28.119/270000001111/1110000149/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225613/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225619/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225620/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Not 24/7] +http://39.134.66.66/PLTV/88888888/224/3221225617/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225615/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225618/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225621/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225622/index.m3u8 +#EXTINF:-1 tvg-id="MiGuShiPin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",咪咕视频 (1080p) [Timeout] +http://39.134.66.66/PLTV/88888888/224/3221225638/index.m3u8 +#EXTINF:-1 tvg-id="HaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/b/b5/TOONMAX_logo.png" group-title="Kids",哈哈炫动卫视 (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s50/index.m3u8 +#EXTINF:-1 tvg-id="HaHaXuanDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/b/b5/TOONMAX_logo.png" group-title="Kids",哈哈炫动卫视 (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s50/index2.m3u8 +#EXTINF:-1 tvg-id="WeiXinDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/weixin.png" group-title="",唯心電視 (480p) +http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="JiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/jiajiakt.png" group-title="Kids",嘉佳卡通 (576p) +http://223.110.245.139/PLTV/4/224/3221227009/index.m3u8 +#EXTINF:-1 tvg-id="JiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/jiajiakt.png" group-title="Kids",嘉佳卡通 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=66 +#EXTINF:-1 tvg-id="JiaJiaQiaTongGuangDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",嘉佳卡通 (广东) (540p) [Not 24/7] +http://112.25.48.68/live/program/live/jjkt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiChuanISiChuanYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川影视台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv5/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanISiChuanXinWenTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川新闻台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv4/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanISiChuanJingJiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 四川经济台 (720p) +http://scgctvshow.sctv.com/hdlive/sctv3/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanIBaZhongZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 巴中综合台 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.flv +#EXTINF:-1 tvg-id="SiChuanIXingKongGouWuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 星空购物台 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv6/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanILuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州公共 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv2.flv +#EXTINF:-1 tvg-id="SiChuanILuZhouKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州科技 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv3.flv +#EXTINF:-1 tvg-id="SiChuanILuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 泸州综合 [Offline] +http://tvdrs.weblz.com.cn:8100/channellive/lztv1.flv +#EXTINF:-1 tvg-id="SiChuanIMianYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳公共 [Offline] +http://live.826pc.com/mytv/live.php?id=3 +#EXTINF:-1 tvg-id="SiChuanIMianYangKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳科技 [Offline] +http://live.826pc.com/mytv/live.php?id=2 +#EXTINF:-1 tvg-id="SiChuanIMianYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 绵阳综合 [Offline] +http://live.826pc.com/mytv/live.php?id=4 +#EXTINF:-1 tvg-id="SiChuanIDaZhouGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 达州公共台 (720p) [Not 24/7] +http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel36/playlist.m3u8 +#EXTINF:-1 tvg-id="SiChuanIDaZhouZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 达州综合台 (720p) [Not 24/7] +http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel35/playlist.m3u8 +#EXTINF:-1 tvg-id="SiChuanIYaAnGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 雅安公共 (720p) +http://flv.drs.tv.yatv.tv:8080/channellive/gonggong.flv +#EXTINF:-1 tvg-id="SiChuanIYaAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川 Ⅰ 雅安综合 (720p) +http://flv.drs.tv.yatv.tv:8080/channellive/xinwen.flv +#EXTINF:-1 tvg-id="SiChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv9.png" group-title="",四川公共 (720p) +http://scgctvshow.sctv.com/hdlive/sctv9/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (720p) +http://scgctvshow.sctv.com/scgc/sctv1deu5453w/1.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225733/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) +http://183.207.248.71/gitv/live1/SCWS/SCWS +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (540p) +http://112.25.48.68/live/program/live/scws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=3&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (576p) [Timeout] +http://183.207.249.36/PLTV/4/224/3221225814/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebb7c2f272.png" group-title="",四川卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/SCWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="SCTV7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv7.png" group-title="",四川妇女儿童 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/sctv7/index.m3u8 +#EXTINF:-1 tvg-id="SiChuanKangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四川康巴卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225527/index.m3u8 +#EXTINF:-1 tvg-id="SCTV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/sctv2.png" group-title="",四川文化旅游 (720p) +http://scgctvshow.sctv.com/hdlive/sctv2/index.m3u8 +#EXTINF:-1 tvg-id="SiPingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",四平新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/sptv/sd/live.m3u8 +#EXTINF:-1 tvg-id="GuoWaiMTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",国外MTV (720p) [Offline] +https://vcndstv.teleosmedia.com/stream/dstv/sunburn/seglist_720p.m3u8 +#EXTINF:-1 tvg-id="ZengChengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",增城綜合 (1080p) +http://202.168.164.38:8083/videos/live/19/27/QEQXMtU5AUpwo/QEQXMtU5AUpwo.m3u8 +#EXTINF:-1 tvg-id="DaYeYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大冶一套 [Geo-blocked] +http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8 +#EXTINF:-1 tvg-id="DaYeErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大冶二套 [Geo-blocked] +http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8 +#EXTINF:-1 tvg-id="DaWuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大悟综合 [Geo-blocked] +http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8 +#EXTINF:-1 tvg-id="DaAi1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.daai.tv/images/logo.png" group-title="",大愛1 (720p) +https://pulltv1.wanfudaluye.com/live/tv1.m3u8 +#EXTINF:-1 tvg-id="DaAiHaiWai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",大爱海外 (720p) [Offline] +https://pulltv3.wanfudaluye.com/live/tv3.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225665/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225698/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225739/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://112.25.48.68/live/program/live/tjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://117.169.120.140:8080/live/hdtianjinstv/.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://223.110.243.170/PLTV/3/224/3221227212/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227212/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (576p) +http://183.207.249.12/PLTV/4/224/3221225808/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8 +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="TianJinWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/TJWS.png" group-title="",天津卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=37&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="QiMiaoDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",奇妙電視 (720p) +http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8 +#EXTINF:-1 tvg-id="AoShiWeiXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/AOSHI.png" group-title="",奥视卫星 (720p) [Not 24/7] +http://61.244.22.5/ch3/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="NuXingShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",女性时尚 (576p) +http://223.110.245.169/PLTV/4/224/3221227026/index.m3u8 +#EXTINF:-1 tvg-id="RuDongXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",如东新闻综合 (480p) [Not 24/7] +http://live.rdxmt.com/channels/rudong/news/flv:sd/live +#EXTINF:-1 tvg-id="XiaoYiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",孝義新聞綜合 (576p) [Timeout] +http://app.xygdcm.com:2036/live/stream:xy1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MengZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",孟州电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10883-1.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://39.134.65.162/PLTV/88888888/224/3221225579/index.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://117.169.120.140:8080/live/ningxiastv/.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://183.207.248.11/PLTV/4/224/3221225842/index.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (540p) +http://112.25.48.68/live/program/live/nxws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_NINGXIA/G_NINGXIA +#EXTINF:-1 tvg-id="NingXiaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁夏卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=120&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="NingBoShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波少儿 (360p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=5 +#EXTINF:-1 tvg-id="NingBoYingShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波影视剧 (360p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=4 +#EXTINF:-1 tvg-id="NingBoJiaoYuKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波教育科技 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=6 +#EXTINF:-1 tvg-id="NingBoXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波新闻综合 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=1 +#EXTINF:-1 tvg-id="NingBoJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波经济生活 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=2 +#EXTINF:-1 tvg-id="NingBoDuShiWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宁波都市文体 (540p) [Not 24/7] +http://149.129.100.78/ningbo.php?id=3 +#EXTINF:-1 tvg-id="AnHuiIHuaiBeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 淮北公共 (720p) +http://live.0561rtv.cn/ggpd/hd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiIHuaiBeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 淮北综合 (720p) +http://live.0561rtv.cn/xwzh/hd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiILangXiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 郎溪综合台 (1080p) [Timeout] +http://117.70.93.210:1935/live/xinwen/playlist.m3u8 +#EXTINF:-1 tvg-id="AnHuiITongLingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 铜陵公共 (720p) +http://dstpush1.retalltech.com/app/stream2.m3u8 +#EXTINF:-1 tvg-id="AnHuiITongLingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽 Ⅰ 铜陵综合 (720p) +http://dstpush1.retalltech.com/app/stream1.m3u8 +#EXTINF:-1 tvg-id="AnHuiRenWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahrw.jpg" group-title="",安徽人物 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=69 +#EXTINF:-1 tvg-id="AnHuiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahgg.jpg" group-title="",安徽公共 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=50 +#EXTINF:-1 tvg-id="AnHuiNongYeKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahkj.jpg" group-title="",安徽农业科教 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=51 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225691/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225737/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=2&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://183.207.249.15/PLTV/3/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) +http://223.110.254.203:6610/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv/1.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) +http://183.207.248.71/gitv/live1/AHWS/AHWS +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) +http://183.207.249.5/PLTV/4/224/3221225800/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/anhuistv/anhuistv +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Not 24/7] +http://zbbf2.ahtv.cn/live/749.m3u8 +#EXTINF:-1 tvg-id="AnHuiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d7479d83.png" group-title="",安徽卫视 (1080p) [Timeout] +http://112.25.48.68/live/program/live/ahwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="AnHuiXiaoShuoPingShuGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽小说评书广播 [Geo-blocked] +http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/anhys.jpg" group-title="",安徽影视 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=72 +#EXTINF:-1 tvg-id="AnHuiXiQuGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽戏曲广播 [Geo-blocked] +http://stream2.ahrtv.cn/xnxq/sd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiXinWenZongHeGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽新闻综合广播 [Geo-blocked] +http://stream2.ahrtv.cn/xnxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiLuYouGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",安徽旅游广播 [Geo-blocked] +http://stream2.ahrtv.cn/lygb/sd/live.m3u8 +#EXTINF:-1 tvg-id="AnHuiZongYiTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/ahzy.jpg" group-title="",安徽综艺体育 (480p) [Not 24/7] +http://149.129.100.78/anhui.php?id=73 +#EXTINF:-1 tvg-id="WanMeiYouXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",完美游戏 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/wmyx/wmyx +#EXTINF:-1 tvg-id="YiXingXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜兴新闻 (720p) +http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8 +#EXTINF:-1 tvg-id="YiXingDianShiZiSha.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜兴电视紫砂 (720p) +http://live-dft-hls-yf.jstv.com/live/yixing_zs/online.m3u8 +#EXTINF:-1 tvg-id="YiChangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌公共 [Offline] +http://149.129.100.78/yichang.php?id=ggpd +#EXTINF:-1 tvg-id="YiChangLuYouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌旅游生活 [Offline] +http://149.129.100.78/yichang.php?id=lysw +#EXTINF:-1 tvg-id="YiChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜昌综合 [Offline] +http://149.129.100.78/yichang.php?id=zhpd +#EXTINF:-1 tvg-id="YiZhangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜章新闻综合 (576p) +http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="YiZhangSheHuiFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宜章社会法制 (576p) +http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JiaTingYingYuan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家庭影院 (1080p) [Timeout] +http://39.134.19.153/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8 +#EXTINF:-1 tvg-id="JiaTingLiCai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家庭理财 (576p) +http://223.110.245.139/PLTV/4/224/3221227011/index.m3u8 +#EXTINF:-1 tvg-id="JiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",家有购物 (720p) [Not 24/7] +http://183.207.248.71/cntv/live1/SD-1500k-576P-jiayougw/SD-1500k-576P-jiayougw +#EXTINF:-1 tvg-id="SuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿州公共 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-ggpd/index.m3u8 +#EXTINF:-1 tvg-id="SuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿州新闻综合 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-szzh/index.m3u8 +#EXTINF:-1 tvg-id="SuZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2018/0711/f91966206d646e5cc94ca9e597b855ec.jpg" group-title="",宿州科教 (1080p) [Not 24/7] +http://live.ahsz.tv/video/s10001-kxjy/index.m3u8 +#EXTINF:-1 tvg-id="SuQianGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",宿迁公共 (480p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221226939/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongIYanTaiYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台影视台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=5 +#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=2 +#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=3 +#EXTINF:-1 tvg-id="ShanDongIYanTaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东 Ⅰ 烟台综合台 (720p) [Offline] +http://player.200877926.top/hogejump/yantai.php?id=4 +#EXTINF:-1 tvg-id="ShanDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_tiyu.png" group-title="",山东体育 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/typd.m3u8 +#EXTINF:-1 tvg-id="ShanDongNongKe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_nongke.png" group-title="",山东农科 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/nkpd.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225697/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225738/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://117.169.120.140:8080/live/hdshandongstv/.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227258/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227448/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://223.110.254.207:6610/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv/1.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=39&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/SDWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/SDWS/SDWS +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] +http://183.207.249.7/PLTV/4/224/3221225804/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564eb79891a97.png" group-title="",山东卫视 (576p) [Offline] +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225804/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_shaoer.png" group-title="",山东少儿 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/sepd.m3u8 +#EXTINF:-1 tvg-id="ShanDongJuJiaGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东居家购物 (360p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/gwpd.m3u8 +#EXTINF:-1 tvg-id="ShanDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_yingshi.png" group-title="",山东影视 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/yspd.m3u8 +#EXTINF:-1 tvg-id="ShanDongJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东教育 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225558/index.m3u8 +#EXTINF:-1 tvg-id="ShanDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山东新闻 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/ggpd.m3u8 +#EXTINF:-1 tvg-id="ShanDongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_shenghuo.png" group-title="",山东生活 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/shpd.m3u8 +#EXTINF:-1 tvg-id="ShanDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_zongyi.png" group-title="",山东综艺 (406p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/zypd.m3u8 +#EXTINF:-1 tvg-id="ShanDongQiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/sd_qilu.png" group-title="",山东齐鲁 (1080p) [Geo-blocked] +http://livealone302.iqilu.com/iqilu/qlpd.m3u8 +#EXTINF:-1 tvg-id="ShanXiIShuoZhouXinWenTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西 Ⅰ 朔州新闻台 (10p) [Not 24/7] +http://stream.sxsztv.com/live4/sd/live.m3u8 +#EXTINF:-1 tvg-id="ShanXiYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西优购物 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=55&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShanXiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://app.sxrtv.com/images/2019/5/15/20195151557897422066_33_t1080.jpg" group-title="",山西公共 [Offline] +http://149.129.100.78/tv.php?id=sxgg +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) +http://117.169.120.140:8080/live/shanxistv/.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=144&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",山西卫视 (576p) [Offline] +http://125.210.152.10:8060/live/SXWS.m3u8 +#EXTINF:-1 tvg-id="ShanXiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://app.sxrtv.com/images/2019/5/15/20195151557897361061_33_t1080.jpg" group-title="",山西影视 [Offline] +http://149.129.100.78/tv.php?id=sxys +#EXTINF:-1 tvg-id="ShanXiSheHuiYuFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://apphhplushttps.sxrtv.com/images/2020/12/31/202012311609402077716_90.jpg" group-title="",山西社会与法治 [Offline] +http://149.129.100.78/tv.php?id=sxkj +#EXTINF:-1 tvg-id="ShanXiJingJiYuKeJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://apphhplushttps.sxrtv.com/images/2020/12/31/202012311609402311324_90.jpg" group-title="",山西经济与科技 [Offline] +http://149.129.100.78/tv.php?id=sxjjzx +#EXTINF:-1 tvg-id="LingNanXiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岭南戏曲 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=15 +#EXTINF:-1 tvg-id="YueXiTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西圖文頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/tuwen/playlist.m3u8 +#EXTINF:-1 tvg-id="YueXiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西影視頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/yingshi/playlist.m3u8 +#EXTINF:-1 tvg-id="YueXiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳西綜合頻道 (576p) [Not 24/7] +http://58.243.4.22:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="YueYangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",岳阳公共 (576p) +http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-2F5F-FA96-1887C72E55CE&auth=654837809071524@615@2E9A5FD0B225B012E3178551CF3754A8 +#EXTINF:-1 tvg-id="MinXianDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",岷县电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000130/index.m3u8 +#EXTINF:-1 tvg-id="ShengZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",嵊州综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8 +#EXTINF:-1 tvg-id="YiXiaXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",已下线 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="BaZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中公共 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8 +#EXTINF:-1 tvg-id="BaZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中公共 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/hddongfangstv/1.m3u8 +#EXTINF:-1 tvg-id="BaZhongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",巴中综合 (1080p) [Not 24/7] +http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8 +#EXTINF:-1 tvg-id="PingXiangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/pingxiangtai.jpg" group-title="",平乡电视台 (576p) +http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="GuangDongFoShanSanShuiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山三水区 (404p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sspd.m3u8 +#EXTINF:-1 tvg-id="GuangDongFoShanNanHaiQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山南海区 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_nhpd.m3u8 +#EXTINF:-1 tvg-id="GuangDongFoShanGaoMingQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 佛山高明区 (404p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_gmpd.m3u8 +#EXTINF:-1 tvg-id="GuangDongLingNanXiQuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 岭南戏曲台 (540p) +http://szlive.grtn.cn/lnxq/sd/live.m3u8 +#EXTINF:-1 tvg-id="GuangDongQingXinZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 清新综合台 (1080p) +http://hls.wiseqx.com/live/qxzh.m3u8 +#EXTINF:-1 tvg-id="GuangDongGaoErFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 ‖ 高尔夫 (480p) +http://szlive.grtn.cn/grfpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="GuangDongIFoShanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山公共台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_ggpd.m3u8 +#EXTINF:-1 tvg-id="GuangDongIFoShanYingShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山影视台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_yspd.m3u8 +#EXTINF:-1 tvg-id="GuangDongIFoShanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山综合台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_zhpd.m3u8 +#EXTINF:-1 tvg-id="GuangDongIFoShanShunDeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 佛山顺德台 (720p) [Offline] +http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sdpd.m3u8 +#EXTINF:-1 tvg-id="GuangDongIChaoAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 潮安综合 (360p) +http://chaoan.chaoantv.com:8278/chaoanzonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="GuangDongIShaoGuanGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 韶关公共台 (720p) [Not 24/7] +https://www.sgmsw.cn/videos/tv/201805/1308/9P424TC5M000AFO13CXK6GN6BOA889D2/hls/live.m3u8 +#EXTINF:-1 tvg-id="GuangDongIShaoGuanZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东 Ⅰ 韶关综合台 (720p) [Not 24/7] +https://www.sgmsw.cn/videos/tv/201805/1308/SB05RIYZOU8JR418AUQOF62CAJQ08D0E/hls/live.m3u8 +#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东体育 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=47 +#EXTINF:-1 tvg-id="GuangDongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东公共 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=85&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongNanFangWeiShiDiMian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东南方卫视地面 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=9&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225701/index.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225742/index.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://112.25.48.68/live/program/live/gdwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://223.110.243.136/PLTV/3/224/3221227249/index.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227249/index.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://223.110.245.172/PLTV/4/224/3221227399/index.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) +http://223.110.254.195:6610/cntv/live1/HD-2500k-1080P-guangdongstv/HD-2500k-1080P-guangdongstv/1.m3u8 +#EXTINF:-1 tvg-id="GuangDongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/guangdong.jpg" group-title="",广东卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=43&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongJiaJiaQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东嘉佳卡通 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=130&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东国际 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=46 +#EXTINF:-1 tvg-id="GuangDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东少儿 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=83&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东少儿 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=54 +#EXTINF:-1 tvg-id="GuangDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东影视 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=86&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东影视 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=53 +#EXTINF:-1 tvg-id="GuangDongFangChan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东房产 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=67 +#EXTINF:-1 tvg-id="GuangDongWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东文化 (720p) [Not 24/7] +http://149.129.100.78/guangdong.php?id=75 +#EXTINF:-1 tvg-id="GuangDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东新闻 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=84&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东新闻 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=45 +#EXTINF:-1 tvg-id="GuangDongZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东珠江 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/zhujiang.png" group-title="",广东珠江 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=44 +#EXTINF:-1 tvg-id="GuangDongYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东移动 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=74 +#EXTINF:-1 tvg-id="GuangDongJingJiKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东经济科教 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=20&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongJingJiKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东经济科教 (540p) [Offline] +http://149.129.100.78/guangdong.php?id=49 +#EXTINF:-1 tvg-id="GuangDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东综艺 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=79&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangDongZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广东综艺 (720p) [Offline] +http://149.129.100.78/guangdong.php?id=16 +#EXTINF:-1 tvg-id="GuangZhouNanGuoDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州南国都市 (1080p) [Offline] +http://149.129.100.78/gztv.php?id=shenghuo +#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=yingshi +#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/yingshi +#EXTINF:-1 tvg-id="GuangZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州影视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=xinwen +#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/xinwen +#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州新闻 (720p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=00&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=fazhi +#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/fazhi +#EXTINF:-1 tvg-id="GuangZhouFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州法治 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=46&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=jingsai +#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/jingsai +#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=52&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouJingSai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州竞赛 (720p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=0&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=81&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (720p) [Not 24/7] +http://149.129.100.78/gztv.php?id=zhonghe +#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Chinese/zhonghe +#EXTINF:-1 tvg-id="GuangZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广州综合 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=44&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://ku.90sjimg.com/element_pic/17/12/31/2ec189f5167bd017e47acd441800487b.jpg" group-title="",广水新闻综合 [Geo-blocked] +http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8 +#EXTINF:-1 tvg-id="GuangShiWang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广视网 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=11&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GuangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8 +#EXTINF:-1 tvg-id="GuangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",广西卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=138&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="KangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",康巴卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227008/index.m3u8 +#EXTINF:-1 tvg-id="KangBaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",康巴卫视 (720p) [Not 24/7] +http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8 +#EXTINF:-1 tvg-id="YanAn1Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/YA1.jpg" group-title="",延安1台 [Offline] +http://stream2.liveyun.hoge.cn/YATV1/sd/live.m3u8 +#EXTINF:-1 tvg-id="YanAn2Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/YA2.jpg" group-title="",延安2台 [Offline] +http://stream2.liveyun.hoge.cn/YATV2/sd/live.m3u8 +#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (720p) +http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8 +#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="YanBianWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/YANBIAN1.png" group-title="",延边卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 +#EXTINF:-1 tvg-id="YanBianXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",延边新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/jlyb/sd/live.m3u8 +#EXTINF:-1 tvg-id="JianAnDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",建安电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/11003-1.m3u8 +#EXTINF:-1 tvg-id="KaiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",开州综合 (720p) +http://kaixianlive.cbg.cn:10345/1.m3u8 +#EXTINF:-1 tvg-id="YiTanChunQiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",弈坛春秋 (576p) +http://223.110.245.139/PLTV/4/224/3221227031/index.m3u8 +#EXTINF:-1 tvg-id="ZhangJiaKouYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家口一套 (720p) [Not 24/7] +http://nlive.zjkgdcs.com:8091/live/xwzhpd.m3u8 +#EXTINF:-1 tvg-id="ZhangJiaGangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家港新闻综合 (720p) +http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhangJiaGangSheHuiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家港社会生活 (720p) +http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhangJiaJie1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家界1 (240p) [Not 24/7] +http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8 +#EXTINF:-1 tvg-id="ZhangJiaJie2Tai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",张家界2台 (240p) [Not 24/7] +http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8 +#EXTINF:-1 tvg-id="PengShuiWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",彭水文化旅游 (288p) +http://pengshuilive.cbg.cn/pengshui02.m3u8 +#EXTINF:-1 tvg-id="PengShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",彭水新闻综合 (288p) [Timeout] +http://pengshuilive.cbg.cn/pengshui01.m3u8 +#EXTINF:-1 tvg-id="XuZhou1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-1 (1080p) +http://183.207.249.15/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="XuZhou3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-3 (1080p) +http://183.207.249.7/PLTV/3/224/3221225949/index.m3u8 +#EXTINF:-1 tvg-id="XuZhou3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-3 (1080p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225949/index.m3u8 +#EXTINF:-1 tvg-id="XuZhou4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州-4 (1080p) +http://183.207.249.15/PLTV/3/224/3221225951/index.m3u8 +#EXTINF:-1 tvg-id="XuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州公共頻道 (1080p) +http://183.207.248.11/PLTV/3/224/3221225951/index.m3u8 +#EXTINF:-1 tvg-id="XuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州公共頻道 (720p) +http://stream1.huaihai.tv/ggpd/playlist.m3u8 +#EXTINF:-1 tvg-id="XuZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州影视 (720p) +http://stream1.huaihai.tv/wyys/playlist.m3u8 +#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (1080p) +http://183.207.248.11/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (1080p) +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225945/index.m3u8 +#EXTINF:-1 tvg-id="XuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州新聞綜合 (720p) +http://stream1.huaihai.tv/xwzh/playlist.m3u8 +#EXTINF:-1 tvg-id="XuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州生活 (240p) +http://stream1.huaihai.tv/jjsh/playlist.m3u8 +#EXTINF:-1 tvg-id="XuZhouJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/LcJZVV5.png" group-title="",徐州經濟生活 (1080p) +http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221225947/index.m3u8 +#EXTINF:-1 tvg-id="XuZhouJiaWangLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",徐州贾汪旅游 (576p) +http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221227389/index.m3u8 +#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (1080p) [Offline] +http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (576p) [Offline] +http://video.dztv.tv:1935/live/dzgg_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州公共 (480p) [Offline] +http://video.dztv.tv:1935/live/dzgg_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (720p) [Offline] +http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (576p) [Offline] +http://video.dztv.tv:1935/live/dztw_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州图文 (360p) [Offline] +http://video.dztv.tv:1935/live/dztw_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (1080p) [Offline] +http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (576p) [Offline] +http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",德州新闻 (480p) [Offline] +http://video.dztv.tv:1935/live/xwzh_sj/playlist.m3u8 +#EXTINF:-1 tvg-id="DeZhouDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://gss3.bdstatic.com/-Po3dSag_xI4khGkpoWK1HF6hhy/baike/w%3D268%3Bg%3D0/sign=14e4b49cc03d70cf4cfaad0bc0e7b63d/f31fbe096b63f62400badfa68e44ebf81b4ca3b4.jpg" group-title="",德州都市 [Offline] +http://video.dztv.tv:1935/live/dspd_gq/playlist.m3u8 +#EXTINF:-1 tvg-id="XinYueZhiShengGongYiGuangBo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",心约之声公益广播 [Not 24/7] +http://4521.hlsplay.aodianyun.com/xyzs/stream.m3u8 +#EXTINF:-1 tvg-id="RenZheShenGui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忍者神龟 (480p) +http://www.alibabapictures.com/movies/shenggui/poyingerchu.mp4 +#EXTINF:-1 tvg-id="ZhongXianWenLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忠县文旅 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_36.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhongXianZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",忠县综合 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuaiJiuJingDianTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",怀旧经典台 [Offline] +http://hls.haokan.bdstatic.com/haokan/stream_bduid_1868968677_0.m3u8 +#EXTINF:-1 tvg-id="HuiZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",惠州公共 (1080p) [Offline] +http://livehuiz.chinamcache.com/live/zb02.m3u8 +#EXTINF:-1 tvg-id="HuiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hztv1.jpg" group-title="",惠州新闻综合 (1080p) +http://livehuiz.chinamcache.com/live/zb01.m3u8 +#EXTINF:-1 tvg-id="HuiZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hztv1.jpg" group-title="",惠州新闻综合 (480p) +http://dslive.grtn.cn/hzzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="CDTV5.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv5.png" group-title="",成都公共 (360p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=5 +#EXTINF:-1 tvg-id="ChengDuDaXiongMao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",成都大熊猫 (1080p) [Not 24/7] +https://gcbsc.v.live.baishancdnx.cn/gc/xiongmao03_1/index.m3u8?contentid=2820180516001 +#EXTINF:-1 tvg-id="CDTV6.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv6.png" group-title="",成都少儿 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=6 +#EXTINF:-1 tvg-id="CDTV4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv4.png" group-title="",成都影视 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=45 +#EXTINF:-1 tvg-id="CDTV1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv1.png" group-title="",成都新闻综合 (450p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=1 +#EXTINF:-1 tvg-id="CDTV2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv2.png" group-title="",成都经济 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=2 +#EXTINF:-1 tvg-id="CDTV3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/sheng/cdtv3.png" group-title="",成都都市 (480p) [Not 24/7] +http://149.129.100.78/cdtv.php?id=3 +#EXTINF:-1 tvg-id="FangShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://img.funhillrm.com/201912173520409e01fadc9c2811d72ff26f62ef.png" group-title="",房山电视台 (576p) +https://live.funhillrm.com/2/playlist.m3u8 +#EXTINF:-1 tvg-id="YangZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",扬州公共 [Offline] +http://149.129.100.78/yangzhou.php?id=236 +#EXTINF:-1 tvg-id="YangZhouJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",扬州教育 [Offline] +http://149.129.100.78/yangzhou.php?id=291 +#EXTINF:-1 tvg-id="FuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",抚州公共 (270p) +http://111.75.179.195:30767/video/live_vide2.m3u8 +#EXTINF:-1 tvg-id="JieYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",揭阳综合 (540p) +http://dslive.grtn.cn/jyzh/playlist.m3u8 +#EXTINF:-1 tvg-id="FuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",撫州綜合頻道 (270p) [Not 24/7] +http://111.75.179.195:30767/video/live_vide.m3u8 +#EXTINF:-1 tvg-id="DunHuangDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/dunhuangtai.jpg" group-title="",敦煌电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000028/index.m3u8 +#EXTINF:-1 tvg-id="WenShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文山综合 (1080p) [Not 24/7] +http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8 +#EXTINF:-1 tvg-id="WenShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文水新聞綜合 (360p) [Offline] +http://sxws.chinashadt.com:1938/live/tv10.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="WenShuiShiShangXiu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",文水時尚秀 (360p) [Offline] +http://sxws.chinashadt.com:1938/live/tv11.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="DouYuDianYing2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影2 (1080p) +http://tx2play1.douyucdn.cn/live/20415rnWbjg6Ex1K.xs +#EXTINF:-1 tvg-id="DouYuDianYing3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影3 (720p) +http://tx2play1.douyucdn.cn/live/3928r9p0BHMDG_8000p.flv +#EXTINF:-1 tvg-id="DouYuDianYing4.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼电影4 (1080p) +http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq_8000p.flv +#EXTINF:-1 tvg-id="DouYuChePing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",斗鱼车评 (1080p) [Not 24/7] +http://tx2play1.douyucdn.cn/live/321987r8e6tCsPR_4000.xs?uuid= +#EXTINF:-1 tvg-id="XinTangRenMeiXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新唐人-美西 (486p) +http://live.ntdimg.com/uwlive520/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenYaTaiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人亚太臺 (480p) +https://live.ntdimg.com/aplive200/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenJiaDongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人加东臺 (720p) +https://live.ntdimg.com/mllive860/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenJiaXiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人加西臺 (216p) +https://live.ntdimg.com/cwlive220/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenJiuJinShanTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人旧金山臺 (486p) +https://live.ntdimg.com/sflive990/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenMeiDongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人美东臺 (480p) +https://live.ntdimg.com/live400/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTangRenMeiXiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.ntdtv.com/assets/themes/ntd/images/logo/logo_ntd.png" group-title="",新唐人美西臺 (486p) +https://live.ntdimg.com/uwlive990/playlist.m3u8 +#EXTINF:-1 tvg-id="XinChangXiuXianYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新昌休闲影视 (1080p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxinchang2/720p.m3u8 +#EXTINF:-1 tvg-id="XinChangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新昌新聞綜合 (1080p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxinchang1/720p.m3u8 +#EXTINF:-1 tvg-id="XinTaiXiangCunDangJian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰乡村党建 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰影視頻道 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtys/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰影視頻道 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰生活 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtsh/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰生活 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰综合 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtzh/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰综合 (480p) [Not 24/7] +http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8 +#EXTINF:-1 tvg-id="XinTaiXiangCunDangJian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新泰鄉村黨建 (480p) [Not 24/7] +http://111.17.214.4:1935/live/xtxc/playlist.m3u8 +#EXTINF:-1 tvg-id="XinJiangBingTuanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆兵团卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=50&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225582/index.m3u8 +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225725/index.m3u8 +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) +http://183.207.248.71/cntv/live1/xinjiangstv/xinjiangstv +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) +http://183.207.248.71/gitv/live1/G_XINJIANG/G_XINJIANG +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) +http://183.207.249.15/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (540p) +http://112.25.48.68/live/program/live/xjws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=122&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Timeout] +http://223.110.243.136/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="XinJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆卫视 (576p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/xinjiangstv/1.m3u8 +#EXTINF:-1 tvg-id="XinJiangHaYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新疆哈语综合 (480p) [Offline] +http://livehyw.sobeycache.com/xjtvs/zb3.m3u8?auth_key=1807150116-0-0-ee46da0e36aa0d170240c1102e8c8e47 +#EXTINF:-1 tvg-id="XinJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆少儿 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb12.m3u8 +#EXTINF:-1 tvg-id="XinJiangHanYuXinXiFuWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆汉语信息服务 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb11.m3u8 +#EXTINF:-1 tvg-id="XinJiangHanYuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/xinjiang.png" group-title="",新疆汉语综艺 [Geo-blocked] +http://livehyw5.chinamcache.com/hyw/zb04.m3u8 +#EXTINF:-1 tvg-id="XinZhengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",新郑综合 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/10184-1.m3u8 +#EXTINF:-1 tvg-id="WuXiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡娱乐 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv2&type=tv +#EXTINF:-1 tvg-id="WuXiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡新闻综合 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv1&type=tv +#EXTINF:-1 tvg-id="WuXiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡生活 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv4&type=tv +#EXTINF:-1 tvg-id="WuXiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡经济 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv5&type=tv +#EXTINF:-1 tvg-id="WuXiDuShiZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",无锡都市资讯 [Offline] +http://149.129.100.78/wuxi.php?id=wxtv3&type=tv +#EXTINF:-1 tvg-id="RiBenQuanTianXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/riben24.png" group-title="",日本全天新聞 (480p) +https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 +#EXTINF:-1 tvg-id="WangCangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",旺苍新闻 (528p) [Not 24/7] +http://3g.dzsm.com/streamer/gycttv.m3u8 +#EXTINF:-1 tvg-id="MingZhuTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",明珠台 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=12&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=233&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=234&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空衛視 (576p) +http://218.202.220.2:5000/nn_live.ts?id=STARTV +#EXTINF:-1 tvg-id="XingKongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/XingXong.svg/300px-XingXong.svg.png" group-title="",星空衛視 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=234&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="JinZhongGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",晋中公共 (1080p) [Not 24/7] +http://jzlive.jztvnews.com:90/live/jzgg.m3u8 +#EXTINF:-1 tvg-id="JinZhongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",晋中综合 (1080p) +http://jzlive.jztvnews.com:90/live/jzzh.m3u8 +#EXTINF:-1 tvg-id="JinZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.nettv.live/uploads/18/1-1PG421013KU.jpg" group-title="",晋州综合 [Offline] +http://zhjz.chinashadt.com:2036/live/1.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="JingXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视一套 (576p) [Not 24/7] +http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JingXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视一套 (360p) [Not 24/7] +http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="JingXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视二套 (576p) [Offline] +http://hbjx.chinashadt.com:1935/live/jx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JingXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",景县电视二套 (360p) [Offline] +http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhiHuiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",智慧教育 (576p) +http://111.63.117.13:6060/030000001000/G_CETV-4/G_CETV-4.m3u8 +#EXTINF:-1 tvg-id="ShuoZhou1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/shuozhou.jpg" group-title="",朔州1 (480p) [Not 24/7] +http://stream.sxsztv.com/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="ShuoZhou2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/shuozhou.jpg" group-title="",朔州2 (480p) [Not 24/7] +http://stream.sxsztv.com/live2/playlist.m3u8 +#EXTINF:-1 tvg-id="DongGuangYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光一套 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DongGuangErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光二套 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DongGuangZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",東光綜藝 (576p) +http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SongYuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",松原新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/sytv/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZaoZhuangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄公共 (540p) +http://stream.zzgd.tv/3/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZaoZhuangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄教育 (540p) +http://stream.zzgd.tv/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZaoZhuangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",枣庄新闻综合 (540p) +http://stream.zzgd.tv/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="KeQiaoShiShang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",柯桥时尚 (1080p) [Offline] +http://live.scbtv.cn/hls/qfc/index.m3u8 +#EXTINF:-1 tvg-id="KeQiaoZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",柯桥综合 (1080p) [Offline] +http://live.scbtv.cn/hls/news/index.m3u8 +#EXTINF:-1 tvg-id="QiXiaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",栖霞新闻 (480p) [Not 24/7] +http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8 +#EXTINF:-1 tvg-id="LiangPingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",梁平综合 (360p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MeiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",梅州综合 (480p) +http://dslive.grtn.cn/mzzh/playlist.m3u8 +#EXTINF:-1 tvg-id="YuShuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",榆树综合 (360p) [Offline] +http://stream.zhystv.com/yset/sd/live.m3u8 +#EXTINF:-1 tvg-id="YuShuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PDzWK3L.png" group-title="",榆樹綜藝頻道 (360p) [Offline] +http://stream.zhystv.com/ysyt/sd/live.m3u8 +#EXTINF:-1 tvg-id="HengShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",横山综合 [Offline] +http://stream.hsqtv.cn/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHanWaiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉外语 (576p) +http://stream.appwuhan.com/6tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHanWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉文体 (480p) +http://stream.appwuhan.com/5tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHanJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武汉经济 (360p) +http://stream.appwuhan.com/4tzb/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuJinXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武进新闻 (576p) [Not 24/7] +http://live.wjyanghu.com/live/CH1.m3u8 +#EXTINF:-1 tvg-id="WuJinShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",武进生活 (576p) [Not 24/7] +http://live.wjyanghu.com/live/CH2.m3u8 +#EXTINF:-1 tvg-id="MinShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",民視新聞 (720p) [Offline] +https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="YongXinDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视一套 (576p) +http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="YongXinDianShiSanTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视三套 (576p) +http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="YongXinDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",永新电视二套 (576p) +http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ShanTouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕头综合 (540p) +http://dslive.grtn.cn/stzh/playlist.m3u8 +#EXTINF:-1 tvg-id="ShanWeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕尾公共 (540p) +http://dslive.grtn.cn/swzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="ShanWeiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",汕尾综合 (540p) +http://dslive.grtn.cn/swzh/playlist.m3u8 +#EXTINF:-1 tvg-id="JiangJinWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津文化旅游 (576p) +http://222.179.155.21:1935/ch2.m3u8 +#EXTINF:-1 tvg-id="JiangJinWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津文化旅游 (576p) +http://jiangjinlive.cbg.cn:1935/ch2.m3u8 +#EXTINF:-1 tvg-id="JiangJinXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津新闻综合 (576p) +http://222.179.155.21:1935/ch1.m3u8 +#EXTINF:-1 tvg-id="JiangJinXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津新闻综合 (576p) +http://jiangjinlive.cbg.cn:1935/ch1.m3u8 +#EXTINF:-1 tvg-id="JiangJinJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津经济生活 (576p) +http://222.179.155.21:1935/ch0.m3u8 +#EXTINF:-1 tvg-id="JiangJinJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江津经济生活 (576p) +http://jiangjinlive.cbg.cn:1935/ch0.m3u8 +#EXTINF:-1 tvg-id="JiangSuIDongHaiZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 东海综合台 [Offline] +rtmp://livetv.dhtv.cn/live/news +#EXTINF:-1 tvg-id="JiangSuISuZhouWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州文化 [Not 24/7] +rtmp://csztv.2500sz.com/live/c03 +#EXTINF:-1 tvg-id="JiangSuISuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州生活 [Not 24/7] +rtmp://csztv.2500sz.com/live/c04 +#EXTINF:-1 tvg-id="JiangSuISuZhouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州经济 [Not 24/7] +rtmp://csztv.2500sz.com/live/c02 +#EXTINF:-1 tvg-id="JiangSuISuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 苏州综合 [Not 24/7] +rtmp://csztv.2500sz.com/live/c01 +#EXTINF:-1 tvg-id="JiangSuILianYunGangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 连云港公共 (480p) [Not 24/7] +http://live.lyg1.com/ggpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiangSuILianYunGangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏 Ⅰ 连云港综合 (540p) [Not 24/7] +http://live.lyg1.com/zhpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiangSuYouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏优漫卡通 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuYouManQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏优漫卡通 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=146&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) +http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY +#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) +http://183.207.249.12/PLTV/4/224/3221225935/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育 (576p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225935/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuTiYuXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏体育休闲 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsty +#EXTINF:-1 tvg-id="JiangSuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏公共 (576p) +http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG +#EXTINF:-1 tvg-id="JiangSuGongGongXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏公共新闻 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsgg +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225503/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225702/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225743/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://112.25.48.68/live/program/live/jswshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://117.169.120.140:8080/live/hdjiangsustv/.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://183.207.248.71/cntv/live1/jiangsustv/jiangsustv +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://183.207.249.34/PLTV/4/224/3221227402/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227255/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=5&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="JiangSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d2aaed87.png" group-title="",江苏卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/JSWS-HD/JSWS-HD +#EXTINF:-1 tvg-id="JiangSuGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏国际 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsgj +#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (576p) +http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS +#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (576p) +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225929/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuChengShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏城市 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jscs +#EXTINF:-1 tvg-id="JiangSuXueXi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏学习 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsxx +#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsys +#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS +#EXTINF:-1 tvg-id="JiangSuYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏影视 (576p) [Offline] +http://223.110.243.134/PLTV/4/224/3221225937/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (576p) +http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225923/index.m3u8 +#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jsjy +#EXTINF:-1 tvg-id="JiangSuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏教育 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY +#EXTINF:-1 tvg-id="JiangSuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏综艺 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jszy +#EXTINF:-1 tvg-id="JiangSuZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江苏综艺 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY +#EXTINF:-1 tvg-id="JingZhuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/liangzhuang.png" group-title="",江苏靓妆 (720p) [Not 24/7] +http://149.129.100.78/jiangsu.php?id=jslz +#EXTINF:-1 tvg-id="JiangXiIShangRaoZongHeTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西 Ⅰ 上饶综合台 (540p) +http://live.0793.tv/srtv1/sd/live.m3u8 +#EXTINF:-1 tvg-id="JiangXiGongGongNongYe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西公共农业 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv5 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225705/index.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225746/index.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://112.25.48.68/live/program/live/jxwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://183.207.248.71/cntv/live1/jiangxistv/jiangxistv +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://183.207.249.11/PLTV/3/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) +http://223.110.254.199:6610/cntv/live1/jiangxistv/jiangxistv/1.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (720p) +http://117.169.120.140:8080/live/jiangxistv/.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (576p) +http://183.207.248.71/gitv/live1/JXWS/JXWS +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (576p) +http://183.207.249.15/PLTV/4/224/3221225798/index.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=40&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/JXWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="JiangXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebc704917e.png" group-title="",江西卫视 (1080p) [Offline] +http://223.110.245.170/PLTV/3/224/3221225536/index.m3u8 +#EXTINF:-1 tvg-id="JiangXiShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西少儿 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv6 +#EXTINF:-1 tvg-id="JiangXiYingShiLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西影视旅游 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv4 +#EXTINF:-1 tvg-id="JiangXiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西新闻 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv7 +#EXTINF:-1 tvg-id="JiangXiYiDongDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西移动电视 (720p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv8 +#EXTINF:-1 tvg-id="JiangXiJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西经济生活 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv3 +#EXTINF:-1 tvg-id="JiangXiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西都市 (576p) [Not 24/7] +http://149.129.100.78/jxtv.php?id=jxtv2 +#EXTINF:-1 tvg-id="JiangXiFengShangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江西风尚购物 (1080p) [Not 24/7] +http://39.134.66.66/PLTV/88888888/224/3221225521/index.m3u8 +#EXTINF:-1 tvg-id="JiangMenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江门综合 (1080p) +http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 +#EXTINF:-1 tvg-id="JiangMenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",江门综合 (540p) +http://dslive.grtn.cn/jmzh/playlist.m3u8 +#EXTINF:-1 tvg-id="CangXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",沧县电视二套 (576p) +http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CangXianDianShiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",沧县电视综合 (576p) +http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北公共 (540p) +http://live7.plus.hebtv.com/hbggx/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiNongMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北农民 (240p) +http://live3.plus.hebtv.com/nmpdx/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225495/index.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225732/index.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) +http://183.207.248.71/gitv/live1/G_HEBEI/G_HEBEI +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (576p) +http://hbpx.chinashadt.com:2036/live/px4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (540p) +http://112.25.48.68/live/program/live/hbws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=45&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HeBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/HBWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="HeBeiShaoErKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北少儿科教 (540p) +http://live6.plus.hebtv.com/sekjx/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiYingShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北影视剧 (540p) +http://live6.plus.hebtv.com/hbysx/hd/live.m3u8 +#EXTINF:-1 tvg-id="HeBeiJinZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北晋州综合 (576p) [Offline] +http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北经济 (576p) +http://hbfc.chinashadt.com:2036/live/6.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北经济生活 (540p) [Not 24/7] +http://live2.plus.hebtv.com/jjshx/playlist.m3u8 +#EXTINF:-1 tvg-id="HeBeiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河北都市 (240p) [Not 24/7] +http://live3.plus.hebtv.com/hbdsx/playlist.m3u8 +#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (576p) +http://183.207.248.71/cntv/live1/henanstv/henanstv +#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (576p) +http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8 +#EXTINF:-1 tvg-id="HeNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201511/20/564ebd72d9f07.png" group-title="",河南卫视 (540p) +http://112.25.48.68/live/program/live/hnws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="HeYuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源公共 (540p) +http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeYuanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源综合 (540p) +http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeYuanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",河源综合 (480p) +http://dslive.grtn.cn/hyzh/playlist.m3u8 +#EXTINF:-1 tvg-id="LuoYangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",洛陽綜合頻道 (1080p) [Not 24/7] +http://live1.lytv.com.cn:1935/live/LYTV1-1/playlist.m3u8 +#EXTINF:-1 tvg-id="HongYaXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",洪雅新闻综合 (1080p) +http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8 +#EXTINF:-1 tvg-id="JiNingGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁公共 (450p) +http://lives.jnnews.tv/video/s10001-JTV3/index.m3u8 +#EXTINF:-1 tvg-id="JiNingTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁图文 (576p) +http://lives.jnnews.tv/video/s10001-JTV4/index.m3u8 +#EXTINF:-1 tvg-id="JiNingJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",济宁教育 (1080p) +http://lives.jnnews.tv/video/s10001-JTV2/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江休闲 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江国际 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江少儿 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江教育 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江新闻 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangYiGou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江易购 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangLiuXue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江留学 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIZheJiangJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 浙江经济 (720p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIShaoXingYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 绍兴影视 (720p) [Timeout] +http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangIShaoXingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江 Ⅰ 绍兴综合 (576p) [Timeout] +http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiang6Tao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江6套 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江公共 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel07/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225514/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225703/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://112.25.48.68/live/program/live/zjwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-zhejiangstv/HD-2500k-1080P-zhejiangstv +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://183.207.248.71/cntv/live1/zhejiangstv/zhejiangstv +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://183.207.249.34/PLTV/4/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://223.110.254.210:6610/cntv/live1/zhejiangstv/zhejiangstv/1.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=13&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (1080p) [Offline] +http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8 +#EXTINF:-1 tvg-id="ZheJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="",浙江卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_ZHEJIANG/G_ZHEJIANG +#EXTINF:-1 tvg-id="ZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/72d035c03412d7cb2d319c6607fef8e9.png" group-title="",浙江国际 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/72d035c03412d7cb2d319c6607fef8e9.png" group-title="",浙江国际 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/33b59c051574c604f93157baa61455b2.png" group-title="",浙江少儿 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/33b59c051574c604f93157baa61455b2.png" group-title="",浙江少儿 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/ZJYS.png" group-title="",浙江影视 (1080p) +http://yd-m-l.cztv.com/channels/lantian/channel05/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/ZJYS.png" group-title="",浙江影视 (720p) +http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangJiaoKeYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/b500dac5d5af1dae3a3eceaf2e165bd0.png" group-title="",浙江教科影视 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangShuMaShiDai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/05/16/090bdb9f3da9df74a275a785c3ba023f.png" group-title="",浙江数码时代 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangMinShengXiuXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/11/b11dda9a789c67cb16e6a5a5fce63125.png" group-title="",浙江民生休闲 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangLiuXue.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",浙江留学 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangJingJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/6c2c5375eff2669abfc9ad58b5fb200b.png" group-title="",浙江经济生活 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangQianJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/bf6ad9ce4da1182a3a7ed0e188d8632f.png" group-title="",浙江钱江 (1080p) +http://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8 +#EXTINF:-1 tvg-id="ZheJiangQianJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ohudong.cztv.com/1/logos/2017/04/12/bf6ad9ce4da1182a3a7ed0e188d8632f.png" group-title="",浙江钱江 (1080p) [Not 24/7] +http://hw-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8 +#EXTINF:-1 tvg-id="HaiNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南公共 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=6 +#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8 +#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (576p) +http://183.207.248.11/PLTV/4/224/3221225810/index.m3u8 +#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (720p) [Not 24/7] +http://livelyws.chinamcache.com/lyws/zb01.m3u8?auth_key=1593241343-0-0-90b80e74457c94b2015f9428a1cb9b0e +#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=114&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HaiNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南卫视 (540p) [Timeout] +http://112.25.48.68/live/program/live/lyws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="HaiNanShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南少儿 (720p) [Not 24/7] +http://149.129.100.78/hainan.php?id=9 +#EXTINF:-1 tvg-id="HaiNanZhouCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南州藏語頻道 (480p) +http://live.hnzzzzzdst.com/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="HaiNanWenLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南文旅 (720p) [Not 24/7] +http://149.129.100.78/hainan.php?id=8 +#EXTINF:-1 tvg-id="HaiNanXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南新闻 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=5 +#EXTINF:-1 tvg-id="HaiNanJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海南经济 (480p) [Not 24/7] +http://149.129.100.78/hainan.php?id=4 +#EXTINF:-1 tvg-id="HaiYanXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海盐新闻 (720p) +http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="HaiXiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",海西州综合 (576p) +http://stream.haixitv.cn/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="WoYangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",涡阳新闻综合 (360p) +http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8 +#EXTINF:-1 tvg-id="ShenZhenGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳公共 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=4 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225668/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225700/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225741/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225741/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://112.25.48.68/live/program/live/szwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://117.169.120.140:8080/live/hdshenzhenstv/.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://183.207.249.37/PLTV/4/224/3221227307/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227307/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Not 24/7] +http://183.207.248.71/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8 +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShenZhenWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=42&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ShenZhenYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳娱乐 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=6 +#EXTINF:-1 tvg-id="ShenZhenShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳少儿 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=7 +#EXTINF:-1 tvg-id="ShenZhenDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳电视剧 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=3 +#EXTINF:-1 tvg-id="ShenZhenYiDongDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳移动电视 (360p) [Not 24/7] +http://149.129.100.78/sztv.php?id=8 +#EXTINF:-1 tvg-id="ShenZhenSheKou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳蛇口 (1080p) +http://218.17.99.211:5080/hls/ttsw6ccn.m3u8 +#EXTINF:-1 tvg-id="ShenZhenCaiJingShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳财经生活 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=5 +#EXTINF:-1 tvg-id="ShenZhenDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深圳都市 (720p) [Not 24/7] +http://149.129.100.78/sztv.php?id=2 +#EXTINF:-1 tvg-id="ShenZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深州綜合頻道 (576p) [Not 24/7] +http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ShenZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",深州綜合頻道 (360p) [Not 24/7] +http://hbsz.chinashadt.com:2036/live/stream:sztv.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="HuBeiIJingMenGongGongTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖北 Ⅰ 荆门公共台 (1080p) [Geo-blocked] +http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225569/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225699/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225740/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://117.169.120.140:8080/live/hdhubeistv/.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227211/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://223.110.254.136:6610/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv/1.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (576p) +http://183.207.248.71/gitv/live1/G_HUBEI/G_HUBEI +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (576p) +http://183.207.249.16/PLTV/4/224/3221225877/index.m3u8 +#EXTINF:-1 tvg-id="HuBeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201706/26/59506de1abb41.png" group-title="",湖北卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=18&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanXianFengPingYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南先锋乒羽 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=72&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南公共 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=261 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-hunanstv/HD-2500k-1080P-hunanstv +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227404/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.245.168/PLTV/4/224/3221227320/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227191/index.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) +http://223.110.254.134:6610/cntv/live1/hunanstv/hunanstv/1.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) +http://hbpx.chinashadt.com:2036/live/px5.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=6&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (1080p) [Timeout] +http://183.207.248.71/cntv/live1/hunanstv/hunanstv +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/HNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=006&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (720p) [Offline] +http://m-tvlmedia.public.bcs.ysten.com/live/hdhunanstv/1.m3u8 +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_HUNAN/G_HUNAN +#EXTINF:-1 tvg-id="HuNanWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/HNWS.png" group-title="",湖南卫视 (576p) [Offline] +http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8 +#EXTINF:-1 tvg-id="HuNanGuoJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南国际 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=229 +#EXTINF:-1 tvg-id="HuNanYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南娱乐 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=344 +#EXTINF:-1 tvg-id="HuNanKuaiLeChuiDiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南快乐垂钓 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=69&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanKuaiLeGou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南快乐购 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=56&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南教育 [Offline] +http://pull.hnedutv.com/live/hnedutv.m3u8 +#EXTINF:-1 tvg-id="HuNanDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南电视剧 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=484 +#EXTINF:-1 tvg-id="HuNanJingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南经视 [Not 24/7] +http://149.129.100.78/hunan.php?id=280 +#EXTINF:-1 tvg-id="HuNanCha.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.lizhizu.com/uploads/images/20180620/bf1e4dba0c575389968b21d8a3493b7d.jpg" group-title="",湖南茶 (1080p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=70&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HuNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南都市 (576p) +http://hnsd.chinashadt.com:2036/live/stream:hunandushi.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuNanDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南都市 (360p) [Not 24/7] +http://149.129.100.78/hunan.php?id=346 +#EXTINF:-1 tvg-id="HuNanJinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湖南金鹰卡通 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8 +#EXTINF:-1 tvg-id="XiangTanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湘潭公共 (576p) +http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="XiangTanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湘潭新闻综合 (720p) +http://live.hnxttv.com:9601/live/xwzh/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="ZhanJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",湛江综合 (540p) +http://dslive.grtn.cn/zjzh/playlist.m3u8 +#EXTINF:-1 tvg-id="ChuZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州公共 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvgg/playlist.m3u8 +#EXTINF:-1 tvg-id="ChuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州新闻综合 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvzh/playlist.m3u8 +#EXTINF:-1 tvg-id="ChuZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滁州科教 (450p) [Timeout] +http://183.167.193.45:1935/live/cztvkj/playlist.m3u8 +#EXTINF:-1 tvg-id="LuanXianZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滦县综合 (576p) +http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LuanXianZongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滦县综艺 (576p) +http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BinZhouGongGongDianShiJu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州公共电视剧 (576p) +http://stream.bzcm.net/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="BinZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州新闻综合 (576p) +http://stream.bzcm.net/2/sd/live.m3u8 +#EXTINF:-1 tvg-id="BinZhouCeShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨州测试 (576p) +http://stream.bzcm.net/4/sd/live.m3u8 +#EXTINF:-1 tvg-id="BinHaiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/tvstation/logo/JSBHTV.gif" group-title="",滨海新闻 (1080p) [Timeout] +http://60.30.52.41/live/bhtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="BinHaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",滨海新闻综合 (576p) [Not 24/7] +http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BinHaiDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/tvstation/logo/JSBHTV.gif" group-title="",滨海都市 (1080p) [Timeout] +http://60.30.52.41/live/bhtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhangZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",漳州新闻综合 (720p) [Not 24/7] +http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8 +#EXTINF:-1 tvg-id="ChaoAnYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",潮安影视 [Offline] +http://chaoan.chaoantv.com:8278/h_yingshi_1028/playlist.m3u8 +#EXTINF:-1 tvg-id="ChaoAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",潮安综合 (540p) +http://chaoan.chaoantv.com:8278/live/chaoanzongyi.m3u8 +#EXTINF:-1 tvg-id="ChaoZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.jisutiyu.com/uploads/150706/16-150F61J645626.jpg" group-title="",潮州公共 [Offline] +http://live.zscz0768.com/live/ggpd.m3u8 +#EXTINF:-1 tvg-id="ChaoZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.jisutiyu.com/uploads/150706/16-150F61J645626.jpg" group-title="",潮州综合 (480p) +http://dslive.grtn.cn/czzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 [Not 24/7] +http://live.mastvnet.com/4rlff1m/live.m3u8 +#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] +http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=192&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8 +#EXTINF:-1 tvg-id="AoYaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/d/d6/MASTV.png/180px-MASTV.png" group-title="",澳亚卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=192&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="AoDaLiYaSaiMa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳大利亚赛马 (270p) [Offline] +https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8 +#EXTINF:-1 tvg-id="AoShiWeiXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/AOSHI.png" group-title="",澳视卫星 (720p) [Not 24/7] +http://61.244.22.5/ch3/_definst_/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoShiAoMen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳视澳门 (720p) [Not 24/7] +http://61.244.22.4/ch1/ch1.live/playelist.m3u8 +#EXTINF:-1 tvg-id="AoShiPuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳视葡文 (720p) [Not 24/7] +http://61.244.22.4/ch2/ch2.live/chunklist_w1632175875.m3u8 +#EXTINF:-1 tvg-id="AoMen1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门1 (720p) [Not 24/7] +http://61.244.22.4/ch3/ch3.live/playelist.m3u8 +#EXTINF:-1 tvg-id="AoMen2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门2 (720p) [Not 24/7] +http://61.244.22.4/ch2/ch2.live/playelist.m3u8 +#EXTINF:-1 tvg-id="AoMenTiYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",澳门体育 (720p) +http://61.244.22.4/ch4/sport_ch4.live/playelist.m3u8 +#EXTINF:-1 tvg-id="LingTaiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://5b0988e595225.cdn.sohucs.com/images/20181203/9958772f6d52462e840c4fbbeca65b22.jpeg" group-title="",灵台新闻综合 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000145/index.m3u8 +#EXTINF:-1 tvg-id="XuanDongQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",炫动卡通 (540p) +http://183.207.255.188/live/program/live/xdkt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="XuanDongQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",炫动卡通 (576p) [Offline] +http://223.110.245.139/PLTV/4/224/3221226388/index.m3u8 +#EXTINF:-1 tvg-id="DianZhangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/N8YdX6W.png" group-title="",点掌财经 (712p) +http://cclive.aniu.tv/live/anzb.m3u8 +#EXTINF:-1 tvg-id="JianWeiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",犍为新闻综合 (720p) [Not 24/7] +http://tv.scwlqw.cn:3100/hls/kqcyufpi/index.m3u8 +#EXTINF:-1 tvg-id="XianDaiJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",现代教育 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=13 +#EXTINF:-1 tvg-id="ZhuJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/zhujiang.png" group-title="",珠江 (720p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=8&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="ZhuHaiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",珠海生活 (480p) +http://dslive.grtn.cn/zhzh/playlist.m3u8 +#EXTINF:-1 tvg-id="GanSuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃公共 (540p) [Not 24/7] +https://hls.gstv.com.cn/49048r/3t5xyc.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225584/index.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225724/index.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) +http://117.169.120.140:8080/live/gansustv/.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) +http://183.207.248.71/gitv/live1/G_GANSU/G_GANSU +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (540p) +http://112.25.48.68/live/program/live/gsws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) [Not 24/7] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (1080p) [Timeout] +http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8?from=26&hms_devid=685&icpid=88888888 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (1080p) [Timeout] +http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8 +#EXTINF:-1 tvg-id="GanSuWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=142&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="GanSuShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃少儿 [Offline] +http://stream.gstv.com.cn/sepd/sd/live.m3u8 +#EXTINF:-1 tvg-id="GanSuWenHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃文化影视 [Offline] +http://stream.gstv.com.cn/whys/sd/live.m3u8 +#EXTINF:-1 tvg-id="GanSuYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃移动 (540p) [Not 24/7] +https://hls.gstv.com.cn/49048r/y72q36.m3u8 +#EXTINF:-1 tvg-id="GanSuJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃经济 [Offline] +http://stream.gstv.com.cn/jjpd/sd/live.m3u8 +#EXTINF:-1 tvg-id="GanSuDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",甘肃都市 [Offline] +http://stream.gstv.com.cn/dspd/sd/live.m3u8 +#EXTINF:-1 tvg-id="ShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",生活 (576p) +http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227311/index.m3u8 +#EXTINF:-1 tvg-id="DianBaiShiChuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白视窗 (576p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DianBaiShiChuang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白视窗 (360p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="DianBaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白综合 (576p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DianBaiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",电白综合 (360p) [Not 24/7] +http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="FanYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",番禺 (1080p) [Offline] +http://live.pybtv.cn/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="BaiChengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",白城新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/baicheng1/sd/live.m3u8 +#EXTINF:-1 tvg-id="BaiShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",白山新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/baishan1/sd/live.m3u8 +#EXTINF:-1 tvg-id="BaiShiTongTiYu1.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育1 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba1/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BaiShiTongTiYu2.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育2 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba2/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BaiShiTongTiYu3.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育3 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba3/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BaiShiTongTiYu5.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育5 (1080p) +http://112.25.48.68/live/program/live/hdnba5/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="BaiShiTongTiYu7.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",百事通体育7 (1080p) [Not 24/7] +http://112.25.48.68/live/program/live/hdnba7/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="JingCaiAnHui.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ss1.baidu.com/-4o3dSag_xI4khGko9WTAnF6hhy/baike/w=268;g=0/sign=99d4887928a446237ecaa264a0191533/3ac79f3df8dcd1004e570a227a8b4710b8122fee.jpg" group-title="",睛彩安徽 (576p) [Not 24/7] +http://149.129.100.78/anhui.php?id=85 +#EXTINF:-1 tvg-id="ShiJingShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",石景山电视台 (1080p) [Not 24/7] +http://live.sjsrm.com/bjsjs/sd/live.m3u8 +#EXTINF:-1 tvg-id="FuFJianJGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J公共 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226113/10000100000000060000000002358064_0.smil +#EXTINF:-1 tvg-id="FuFJianJShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J少儿 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226120/10000100000000060000000002358082_0.smil +#EXTINF:-1 tvg-id="FuFJianJXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J新闻 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226116/10000100000000060000000002358068_0.smil +#EXTINF:-1 tvg-id="FuFJianJLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J旅游 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226125/10000100000000060000000002358191_0.smil +#EXTINF:-1 tvg-id="FuFJianJDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J电视 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226115/10000100000000060000000002358067_0.smil +#EXTINF:-1 tvg-id="FuFJianJJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福F建J经济 [Offline] +rtsp://183.252.176.54:554/PLTV/88888888/224/3221226117/10000100000000060000000002358072_0.smil +#EXTINF:-1 tvg-id="FuShanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福山生活 (576p) [Not 24/7] +http://live.jiaodong.net:82/tvfushan/hls/tv_shenghuo.m3u8 +#EXTINF:-1 tvg-id="FuZhouShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="Kids",福州少儿 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-sepd-4/index.m3u8 +#EXTINF:-1 tvg-id="FuZhouYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州影视 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-yspd-2/index.m3u8 +#EXTINF:-1 tvg-id="FuZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州生活 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-shpd-3/index.m3u8 +#EXTINF:-1 tvg-id="FuZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福州综合 (1080p) [Not 24/7] +http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8 +#EXTINF:-1 tvg-id="FuHaiWeiYuZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",福海维语综合 [Offline] +http://klmyyun.chinavas.com/hls/fuhai1.m3u8 +#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州三峽移民 (576p) +http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouSanXiaYiMin.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州三峽移民 (576p) +http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州影視文藝 (576p) +http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州影視文藝 (576p) [Not 24/7] +http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州科教頻道 (576p) +http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouKeJiao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州科教頻道 (576p) +http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州綜合頻道 (576p) +http://123.146.162.24:8017/iTXwrGs/800/live.m3u8 +#EXTINF:-1 tvg-id="WanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萬州綜合頻道 (576p) +http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8 +#EXTINF:-1 tvg-id="QinHuangDaoYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島影視 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv3/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="QinHuangDaoZhengFa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島政法 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv2/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="QinHuangDaoXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",秦皇島新聞 (576p) [Not 24/7] +http://vod.qhdcm.com:1935/live/qhdtv1/800K/tzwj_video.m3u8 +#EXTINF:-1 tvg-id="JiShiShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://portrait2.sinaimg.cn/1296090737/blog/180.jpg" group-title="",积石山电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000152/index.m3u8 +#EXTINF:-1 tvg-id="LanQiuZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",篮球资讯 (576p) +http://223.110.245.139/PLTV/4/224/3221227023/index.m3u8 +#EXTINF:-1 tvg-id="LouDi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",娄底 (720p) +http://mms.ldntv.cn:1935/live/_definst_/zonghe/chunklist_w67585331.m3u8 +#EXTINF:-1 tvg-id="LouDiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.ldntv.cn/Portal/Tpl/templates/default/images/live_pic1.png" group-title="",娄底综合 (720p) +http://119.39.242.52:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="LouDiZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.ldntv.cn/Portal/Tpl/templates/default/images/live_pic1.png" group-title="",娄底综合 (720p) [Not 24/7] +http://mms.ldntv.cn:1935/live/zonghe/playlist.m3u8 +#EXTINF:-1 tvg-id="JingPinDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",精品电影 (1080p) +http://183.207.248.71/cntv/live1/jdianying/jdianying +#EXTINF:-1 tvg-id="QiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",綦江综合 (576p) [Offline] +http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HongNiuREDBULLTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",红牛REDBULL TV (720p) +https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_3360.m3u8 +#EXTINF:-1 tvg-id="JiShiRenWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",纪实人文 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225655/index.m3u8 +#EXTINF:-1 tvg-id="ChunXiang4K.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",纯享4K (2160p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8 +#EXTINF:-1 tvg-id="SuiJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",绥江综合 [Offline] +http://60.160.23.32:6055/sjtv/sjtv.m3u8 +#EXTINF:-1 tvg-id="JiXuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",继续教育 (576p) +http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8 +#EXTINF:-1 tvg-id="LuoShanDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",罗山电视台 (1080p) [Not 24/7] +http://live.dxhmt.cn:9081/tv/11521-1.m3u8 +#EXTINF:-1 tvg-id="LuoMaNiYaSTV.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",罗马尼亚STV [Not 24/7] +http://s2.streamnet.ro:8035/stream.flv +#EXTINF:-1 tvg-id="ZhiYe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",置业 (576p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8 +#EXTINF:-1 tvg-id="MeiGuoZhongWenDianShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://ss0.baidu.com/-Po3dSag_xI4khGko9WTAnF6hhy/baike/pic/item/4034970a304e251f46b43584a786c9177f3e530f.jpg" group-title="",美国中文电视 (406p) [Not 24/7] +https://jpts.sinovision.net/livestream.m3u8 +#EXTINF:-1 tvg-id="MeiGuoYaMeiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",美国亚美卫视 (480p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8 +#EXTINF:-1 tvg-id="MeiGuoGouGouChongWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",美国狗狗宠物 (1080p) +https://video.blivenyc.com/broadcast/prod/2061/22/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="FeiCuiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",翡翠台 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=188&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 (288p) +http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 +http://202.69.67.66/webcast/bshdlive-pc/playlist.m3u8 +#EXTINF:-1 tvg-id="YaoCaiCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",耀才财经 [Offline] +rtmp://202.69.69.180/webcast/bshdlive-pc +#EXTINF:-1 tvg-id="SuZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/WcPcluo.png" group-title="",肃州电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000123/index.m3u8 +#EXTINF:-1 tvg-id="ZhaoQingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",肇庆综合 (480p) +http://dslive.grtn.cn/zqzh/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhouShanGongGongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",舟山公共生活 (720p) +http://live.wifizs.cn/ggsh/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZhouShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/ZJZS-ZH.jpg" group-title="",舟山新闻综合 (240p) +http://live.wifizs.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZhouShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://static2.tvzhe.com/channel/logo/ZJZS-ZH.jpg" group-title="",舟山新闻综合 (240p) +http://stream.wifizs.cn/xwzh/sd/live.m3u8 +#EXTINF:-1 tvg-id="ZhouShanQunDaoLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",舟山群岛旅游 (720p) +http://live.wifizs.cn/qdly/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHuGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖公共 (576p) +http://live1.wuhubtv.com/channel3/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHuXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖新闻综合 (576p) +http://live1.wuhubtv.com/channel1/sd/live.m3u8 +#EXTINF:-1 tvg-id="WuHuShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",芜湖生活 (576p) +http://live1.wuhubtv.com/channel2/sd/live.m3u8 +#EXTINF:-1 tvg-id="SuZhouWenHuaShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州文化生活 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szwhsh +#EXTINF:-1 tvg-id="SuZhouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州新闻综合 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szxw +#EXTINF:-1 tvg-id="SuZhouShengHuoZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州生活资讯 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szshzx +#EXTINF:-1 tvg-id="SuZhouSheHuiJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",苏州社会经济 (540p) [Not 24/7] +http://149.129.100.78/suzhou.php?id=szshjj +#EXTINF:-1 tvg-id="MaoMingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",茂名综合 (540p) +http://dslive.grtn.cn/mmzh/playlist.m3u8 +#EXTINF:-1 tvg-id="RongChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",荣昌综合 (404p) [Not 24/7] +http://183.64.181.25:40023/rongchang01.m3u8 +#EXTINF:-1 tvg-id="JuXianTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣圖文頻道 (720p) [Timeout] +http://61.162.225.122:8181/live/test3.m3u8 +#EXTINF:-1 tvg-id="JuXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣電視一套 (576p) [Timeout] +http://61.162.225.122:8181/live/test1.m3u8 +#EXTINF:-1 tvg-id="JuXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莒縣電視二套 (576p) [Not 24/7] +http://61.162.225.122:8181/live/test2.m3u8 +#EXTINF:-1 tvg-id="LianHuaWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",莲花卫视 (1080p) [Not 24/7] +http://149.129.100.78/lotus.php?id=1 +#EXTINF:-1 tvg-id="HuaShiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/910.png" group-title="",華視新聞 [Geo-blocked] +http://seb.sason.top/sc/hsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="HuaCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://www.hwazan.org/statics/images/newhztv_logo.png" group-title="",華藏衛視 (1080p) [Not 24/7] +http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="PingXiangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉公共頻道 (1080p) [Not 24/7] +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv3stream.m3u8 +#EXTINF:-1 tvg-id="PingXiangJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉教育頻道 (480p) +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8 +#EXTINF:-1 tvg-id="PingXiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萍鄉新聞綜合 (576p) [Not 24/7] +http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8 +#EXTINF:-1 tvg-id="XiaoShanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",萧山新闻综合 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8 +#EXTINF:-1 tvg-id="LanPing432.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蓝屏 432 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=109&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="PengAnXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蓬安新闻综合 (720p) [Not 24/7] +http://palive.patv123.com:8091/live/xwpd_800K.m3u8 +#EXTINF:-1 tvg-id="WuHuJiaoYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蕪湖教育頻道 (576p) +http://live1.wuhubtv.com/channel4/sd/live.m3u8 +#EXTINF:-1 tvg-id="XiaoShanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",蕭山生活頻道 (720p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8 +#EXTINF:-1 tvg-id="HengShuiYingShiYuLe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",衡水影视娱乐 (480p) [Not 24/7] +http://hls.hsrtv.cn/hls/hstv2.m3u8 +#EXTINF:-1 tvg-id="HengShuiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",衡水新闻综合 (720p) [Not 24/7] +http://hls.hsrtv.cn/hls/hstv1.m3u8 +#EXTINF:-1 tvg-id="YuanZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",袁州綜合頻道 (576p) [Not 24/7] +http://jxyz.chinashadt.com:8036/live/yz1.stream/playist.m3u8 +#EXTINF:-1 tvg-id="XiAnSiLu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv5.jpg" group-title="",西安丝路 (404p) [Not 24/7] +http://stream2.xiancity.cn/xatv5/playlist.m3u8 +#EXTINF:-1 tvg-id="XiAnLeGouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2018/0806/af2ee98fb3e3b7fcafb3bbbdae9d7957.jpg" group-title="",西安乐购购物 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv6/playlist.m3u8 +#EXTINF:-1 tvg-id="XiAnShangWuZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv3.jpg" group-title="",西安商务资讯 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv3/playlist.m3u8 +#EXTINF:-1 tvg-id="XiAnYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/xatv4.jpg" group-title="",西安影视 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv4/playlist.m3u8 +#EXTINF:-1 tvg-id="XiAnXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西安新闻 (1080p) [Not 24/7] +http://stream2.xiancity.cn/xatv1/playlist.m3u8 +#EXTINF:-1 tvg-id="XiAnBaiGe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西安白鸽 (180p) [Not 24/7] +http://stream2.xiancity.cn/xatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8 +#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) +http://117.169.120.140:8080/live/xizangstv/.m3u8 +#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) +http://183.207.249.16/PLTV/3/224/3221225523/index.m3u8 +#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) +http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8 +#EXTINF:-1 tvg-id="XiCangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=208&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="XiCangCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西藏藏語 (576p) +http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8 +#EXTINF:-1 tvg-id="XiHongShiShouFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西虹市首富 [Offline] +https://zuikzy.win7i.com/2018/07/30/hCt7GSGU1sAgOC8j/playlist.m3u8 +#EXTINF:-1 tvg-id="XiQingXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",西青新闻综合 (1080p) [Not 24/7] +http://221.238.209.44:81/hls/live1.m3u8 +#EXTINF:-1 tvg-id="GuiZhouTiYuLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州体育旅游 (406p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=dwpd +#EXTINF:-1 tvg-id="GuiZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州公共 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzgg +#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225576/index.m3u8 +#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8 +#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) +http://183.207.248.71/gitv/live1/G_GUIZHOU/G_GUIZHOU +#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (576p) +http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8 +#EXTINF:-1 tvg-id="GuiZhouWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州卫视 (360p) [Timeout] +http://125.210.152.18:9090/live/GZWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="GuiZhouDaZhongShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州大众生活 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=dzsh +#EXTINF:-1 tvg-id="GuiZhouJiaYouGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州家有购物 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=8 +#EXTINF:-1 tvg-id="GuiZhouYingShiWenYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州影视文艺 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzwy +#EXTINF:-1 tvg-id="GuiZhouKeJiaoJianKang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州科教健康 (406p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=kjjk +#EXTINF:-1 tvg-id="GuiZhouJingJi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",贵州经济 (720p) [Not 24/7] +http://149.129.100.78/guizhou.php?id=gzjj +#EXTINF:-1 tvg-id="ZhaoXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视一套 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhaoXianDianShiYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视一套 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhaoXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视二套 (576p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ZhaoXianDianShiErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",赵县电视二套 (360p) +http://hbzx.chinashadt.com:2036/zhibo/stream:zx2.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="XinJiXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辛集新聞頻道 (480p) [Not 24/7] +http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="XinJiShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辛集生活頻道 (480p) [Not 24/7] +http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225735/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) +http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) +http://112.25.48.68/live/program/live/lnwshd/4000000/mnf.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225499/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) +http://183.207.248.71/cntv/live1/liaoningstv/liaoningstv +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) +http://183.207.249.12/PLTV/4/224/3221225802/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (576p) +http://183.207.249.71/PLTV/3/224/3221225566/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) [Timeout] +http://39.134.39.37/PLTV/88888888/224/3221226209/index.m3u8 +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (1080p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=38&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="LiaoNingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/liaoning.jpg" group-title="",辽宁卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/LNWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="LiaoYuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",辽源新闻综合 [Geo-blocked] +http://stream2.jlntv.cn/liaoyuan1/sd/live.m3u8 +#EXTINF:-1 tvg-id="MaiShiWang.cn" tvg-country="CN" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/S14txRh.jpg" group-title="",迈视网 [Offline] +http://xinl.live.maxtv.cn/live/zb/playlist.m3u8 +#EXTINF:-1 tvg-id="DiQingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",迪庆综合 (1080p) +http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DiQingCangYu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.66zhibo.net/d/file/2019/0124/af2241fbb539921aa3c9c744b5cdc26b.jpg" group-title="",迪庆藏语 (576p) +http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TongHuaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",通化新闻 [Geo-blocked] +http://stream2.jlntv.cn/tonghua1/sd/live.m3u8 +#EXTINF:-1 tvg-id="TongZhouDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.dayuntongzhou.com/web/style/images/logo.png" group-title="",通州电视台 (720p) +http://pull.dayuntongzhou.com/live/tztv.m3u8 +#EXTINF:-1 tvg-id="SuiNingGongGongGongYi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",遂宁公共公益 [Offline] +http://snlive.scsntv.com:8091/live/gggy.m3u8 +#EXTINF:-1 tvg-id="SuiNingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",遂宁综合 [Offline] +http://snlive.scsntv.com:8091/live/xwzh.m3u8 +#EXTINF:-1 tvg-id="HanJiangZiXun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",邗江资讯 (576p) [Offline] +http://223.110.245.139/PLTV/4/224/3221227154/index.m3u8 +#EXTINF:-1 tvg-id="ShaoDongZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",邵东综合 (576p) +http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JiuQuanXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/jiuquan.jpg" group-title="",酒泉新闻综合 (576p) [Timeout] +http://117.156.28.119/270000001111/1110000001/index.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225692/index.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225734/index.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) +http://117.169.120.132:8080/live/chongqingstv/playlist.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) +http://223.110.254.137:6610/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv/1.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (576p) +http://183.207.249.5/PLTV/4/224/3221225812/index.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (540p) +http://112.25.48.68/live/program/live/cqws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (576p) [Not 24/7] +http://183.207.248.71/gitv/live1/G_CHONGQING/G_CHONGQING +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (432p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=10&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="ChongQingWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://parco-zh.github.io/demo/chongqing.jpg" group-title="",重庆卫视 (1080p) [Offline] +http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="ChongQingZhongXian.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆忠县 (576p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_35.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="ChongQingYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆移动 (480p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_57.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChongQingYiDongJiChang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",重庆移动机场 (480p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_56.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JinChangGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金昌公共頻道 (240p) [Geo-blocked] +http://stream4.liveyun.hoge.cn/ch01/sd/live.m3u8 +#EXTINF:-1 tvg-id="JinChangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金昌綜合頻道 (720p) [Geo-blocked] +http://stream4.liveyun.hoge.cn/ch02/sd/live.m3u8 +#EXTINF:-1 tvg-id="JinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (576p) +http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8 +#EXTINF:-1 tvg-id="JinYingQiaTong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (576p) [Geo-blocked] +http://223.110.241.149:6610/gitv/live1/G_JINYING/G_JINYING/1.m3u8 +#EXTINF:-1 tvg-id="JinYingQiaTongHuNan.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",金鹰卡通 (湖南) (540p) [Not 24/7] +http://112.25.48.68/live/program/live/jykt/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="YinChuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",银川公共 (360p) [Not 24/7] +http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8 +#EXTINF:-1 tvg-id="YinChuanShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",银川生活 (360p) [Not 24/7] +http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8 +#EXTINF:-1 tvg-id="ChangFengXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",長豐新聞綜合 (576p) +http://218.23.114.19:1935/live/xinwen/playlist.m3u8 +#EXTINF:-1 tvg-id="ChangLeZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长乐综合 [Geo-blocked] +http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8 +#EXTINF:-1 tvg-id="ChangShouWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长寿文化旅游 (576p) [Offline] +http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChangShouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长寿综合 (720p) [Not 24/7] +http://qxlmlive.cbg.cn:1935/app_2/ls_63.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChangChunZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长春综合 [Geo-blocked] +http://stream2.jlntv.cn/jlcc/sd/live.m3u8 +#EXTINF:-1 tvg-id="ChangShaDiTieYiDong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙地铁移动 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8 +#EXTINF:-1 tvg-id="ChangShaNuXing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙女性 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_349.m3u8 +#EXTINF:-1 tvg-id="ChangShaZhengFa.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙政法 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_348.m3u8 +#EXTINF:-1 tvg-id="ChangShaXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙新闻 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_346.m3u8 +#EXTINF:-1 tvg-id="ChangShaJingMao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙经贸 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8 +#EXTINF:-1 tvg-id="ChangShaGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",长沙购物 [Geo-blocked] +http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_354.m3u8 +#EXTINF:-1 tvg-id="FuChengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",阜城综合 (576p) [Not 24/7] +http://hbfc.chinashadt.com:2036/live/2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="YangJiangZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",阳江综合 (480p) +http://dslive.grtn.cn/yjzh/playlist.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225729/index.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (576p) +http://223.110.245.139/PLTV/4/224/3221227022/index.m3u8 +#EXTINF:-1 tvg-id="ShanXiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",陕西卫视 (540p) +http://112.25.48.68/live/program/live/sxws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="LongHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隆化影视 (576p) +http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LongHuaZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隆化综合 (576p) +http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SuiZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隨州綜合 (720p) [Not 24/7] +http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_304.m3u8 +#EXTINF:-1 tvg-id="SuiZhouNongCun.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",隨州農村 (720p) [Not 24/7] +http://34766.hlsplay.aodianyun.com/guangdianyun_34766/tv_channel_305.m3u8 +#EXTINF:-1 tvg-id="JiAnZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",集安综合 [Geo-blocked] +http://stream2.jlntv.cn/ja/sd/live.m3u8 +#EXTINF:-1 tvg-id="HuoShanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霍山综合 (576p) +http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaZhouGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州公共頻道 (576p) [Not 24/7] +http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaZhouShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州少兒頻道 (576p) [Not 24/7] +http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaZhouWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州文化頻道 (576p) +http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaZhouXinWenPinDao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州新聞頻道 (576p) +http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BaZhouXinWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",霸州新闻 (576p) [Offline] +http://rtvcdn.com.au:8082/TV_GG.m3u8 +#EXTINF:-1 tvg-id="QingZhouWenHuaLuYou.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州文化旅游 (576p) +http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QingZhouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州生活 (576p) +http://sdqz.chinashadt.com:2036/live/stream:2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QingZhouZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青州综合 (576p) +http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (1080p) +http://live.geermurmt.com/qhws/sd/live.m3u8 +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225573/index.m3u8 +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225727/index.m3u8 +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (540p) +http://112.25.48.68/live/program/live/qhws/1300000/mnf.m3u8 +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) [Timeout] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="QingHaiWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567bbf299dfa0.png" group-title="",青海卫视 (576p) [Timeout] +http://116.199.5.52:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=206&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="QingHaiAnDuoWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",青海安多卫视 (576p) +http://39.134.66.66/PLTV/88888888/224/3221225531/index.m3u8 +#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (720p) [Not 24/7] +http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8 +#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (720p) [Not 24/7] +http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8 +#EXTINF:-1 tvg-id="JingJiangXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",靖江新闻綜合 (480p) [Not 24/7] +http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8 +#EXTINF:-1 tvg-id="JingNingZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",静宁综合 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000147/index.m3u8 +#EXTINF:-1 tvg-id="AnShanTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鞍山图文 (480p) [Timeout] +http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=1&Pcontent_id=.m3u8&Provider_id= +#EXTINF:-1 tvg-id="ShaoGuanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",韶关公共 (480p) +http://dslive.grtn.cn/sgxwzhHD/playlist.m3u8 +#EXTINF:-1 tvg-id="FengShangGouWu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",风尚购物 (1080p) +http://183.207.248.71/cntv/live1/fengshanggw/fengshanggw +#EXTINF:-1 tvg-id="YuYaoYaoJiangWenHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",餘姚姚江文化 (576p) [Not 24/7] +http://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8 +#EXTINF:-1 tvg-id="MaYunDuiHua.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",马云对话 (480p) +http://www.alibabapictures.com/movies/10/mayunduihua.mp4 +#EXTINF:-1 tvg-id="GaoTaiDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/2/28/%E7%94%98%E8%82%83%E5%8D%AB%E8%A7%86.png" group-title="",高台电视台 (1080p) [Timeout] +http://117.156.28.119/270000001111/1110000146/index.m3u8 +#EXTINF:-1 tvg-id="GaoErFu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",高尔夫 (480p) [Offline] +http://149.129.100.78/guangdong.php?id=68 +#EXTINF:-1 tvg-id="GaoQingDianYing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",高清电影 (1080p) [Timeout] +http://39.134.19.76/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8 +#EXTINF:-1 tvg-id="HeBiXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/hebi.jpg" group-title="",鹤壁新闻综合 (480p) [Not 24/7] +http://pili-live-hls.hebitv.com/hebi/hebi.m3u8 +#EXTINF:-1 tvg-id="HeFengZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹤峰综合 [Geo-blocked] +http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8 +#EXTINF:-1 tvg-id="LuQuanYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹿泉一套 (576p) [Not 24/7] +http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LuQuanErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",鹿泉二套 (576p) [Not 24/7] +http://hblq.chinashadt.com:2036/live/stream:luquan2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuangHuaYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黃驊影視 (576p) +http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuangHuaBoHaiXinQu.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黃驊渤海新區 (576p) +http://hbhh.chinashadt.com:2111/live/bhtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuangHeDianShiTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/huanghe.png" group-title="",黄河电视台 [Offline] +http://149.129.100.78/tv.php?id=sxhh +#EXTINF:-1 tvg-id="HuangHuaYiTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黄骅一套 (576p) +http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HuangHuaErTao.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黄骅二套 (576p) +http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HeiMeiDianJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑莓电竞 (1080p) +http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) +http://223.110.243.169/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) +http://223.110.245.139/PLTV/4/224/3221227492/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (1080p) +http://223.110.245.170/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙卫视 (720p) [Timeout] +http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (1080p) +http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (1080p) +http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiang.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江 (576p) [Offline] +http://183.207.248.71/gitv/live1/G_HEILONGJIANG/G_HEILONGJIANG +#EXTINF:-1 tvg-id="HeiLongJiangWei.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江卫 (1080p) +http://183.207.248.71/cntv/live1/HD-2500k-1080P-heilongjiangstv/HD-2500k-1080P-heilongjiangstv +#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225690/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) +http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) +http://183.207.249.36/PLTV/4/224/3221227323/index.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (1080p) +http://223.110.254.143:6610/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv/1.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangWeiShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="http://s.wasu.cn/data/images/201512/24/567b9d67870b3.png" group-title="",黑龙江卫视 (576p) [Not 24/7] +http://116.199.5.51:8114/00000000/index.m3u8?Fsv_CMSID=&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Fsv_chan_hls_se_idx=27&Fsv_cid=0&Fsv_ctype=LIVES&Fsv_ctype=LIVES&Fsv_filetype=1&Fsv_otype=1&Fsv_otype=1&Fsv_rate_id=0&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id= +#EXTINF:-1 tvg-id="HeiLongJiangTai.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江台 [Timeout] +http://stream3.hljtv.com/hljws2/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangShaoEr.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江少儿 [Offline] +http://stream3.hljtv.com/hljse2/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangYingShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江影视 [Timeout] +http://stream3.hljtv.com/hljys2/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangWenTi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江文体 [Offline] +http://stream3.hljtv.com/hljwy2/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangXinWenFaZhi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江新闻法治 [Offline] +http://stream3.hljtv.com/hljxw2/sd/live.m3u8 +#EXTINF:-1 tvg-id="HeiLongJiangDuShi.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黑龙江都市 [Offline] +http://stream3.hljtv.com/hljdd2/sd/live.m3u8 +#EXTINF:-1 tvg-id="QianXiNanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黔西南公共 (288p) [Geo-blocked] +http://live.qxndt.com/channel3/sd/live.m3u8 +#EXTINF:-1 tvg-id="QianXiNanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",黔西南综合 (288p) [Geo-blocked] +http://live.qxndt.com/channel2/sd/live.m3u8 +#EXTINF:-1 tvg-id="DianZhangCaiJing.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/N8YdX6W.png" group-title="",點掌財經 (712p) +http://cclive2.aniu.tv/live/anzb.m3u8 +#EXTINF:-1 tvg-id="LongKouTuWen.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口图文 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LongKouXinWenZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口新闻综合 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LongKouShengHuo.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙口生活 (576p) [Offline] +http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LongYanGongGong.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙岩公共 (540p) [Not 24/7] +http://stream.lytv.net.cn/1/sd/live.m3u8 +#EXTINF:-1 tvg-id="LongYanZongHe.cn" tvg-country="CN" tvg-language="Chinese" tvg-logo="" group-title="",龙岩综合 (540p) +http://stream.lytv.net.cn/2/sd/live.m3u8 diff --git a/channels/co.m3u~master b/channels/co.m3u~master new file mode 100644 index 000000000..42659de9e --- /dev/null +++ b/channels/co.m3u~master @@ -0,0 +1,99 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Amordiscos.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://amordiscostv.com/wp-content/uploads/2021/02/thumbnail_Logo-Amordiscos-600x600-alpha-150x150.png" group-title="Music",Amordiscos (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:amordiscos_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-atv-1694.jpg" group-title="Local",ATV (Soacha | Cundinamarca) (360p) [Not 24/7] +https://movil.ejeserver.com/live/verteve.m3u8 +#EXTINF:-1 tvg-id="AvivamientoTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7YB94Hf.png" group-title="Religious",Avivamiento TV (1080p) [Not 24/7] +https://s1.abntelevision.com/avivamientoabr/stream/avivamientohd/avivamientohd/playlist.m3u8 +#EXTINF:-1 tvg-id="BuenisimaRadioTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/buenisima-radio-tv-4865.jpg" group-title="Local",Buenísima Radio TV (Gamarra | Cesar) (1080p) [Not 24/7] +https://streamyes.alsolnet.com/buturama/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/1b/Cali_TV.png/revision/latest" group-title="Local",Cali TV (Santiago de Cali | Valle del Cauca) (540p) [Not 24/7] +https://5ab772334c39c.streamlock.net/live-calitv/calitv1/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-2-1725.jpg" group-title="General",Canal 2 (720p) [Not 24/7] +https://video13.virtualtronics.com/streamer/canal2.m3u8 +#EXTINF:-1 tvg-id="Canal12.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bo3zQKb.png" group-title="Local",Canal 12 (Valledupar | Cesar) (486p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/canal-12-valledupar.m3u8 +#EXTINF:-1 tvg-id="CanalC.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-c-2584.jpg" group-title="",Canal C (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8104/8104/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCapital.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Hlrdeds.png" group-title="General",Canal Capital (720p) [Not 24/7] +https://mdstrm.com/live-stream-playlist/57d01d6c28b263eb73b59a5a.m3u8 +#EXTINF:-1 tvg-id="CanalCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/574463697b9817cf0886fc17.m3u8 +#EXTINF:-1 tvg-id="CanalDos.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BYsyNHZ.jpg" group-title="Local",Canal Dos (Yopal | Casanare) (720p) [Not 24/7] +http://131.221.42.25:1935/streaming/canal2/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalInstitucionalTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/canal-institucional-tv-2599.jpg" group-title="General",Canal Institucional TV (1080p) +https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalRCNNovelas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Canal RCN Novelas (480p) +http://45.179.140.242:8000/play/a0jf +#EXTINF:-1 tvg-id="CanalRCNNovelas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Canal RCN Novelas (480p) [Not 24/7] +http://38.131.11.9:1080/play/a037 +#EXTINF:-1 tvg-id="CanalSonTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://canalsontv.co/wp-content/uploads/2021/05/SON-TV-logo-jpg.jpg" group-title="Music",Canal Son TV (280p) [Not 24/7] +https://server12.videostreaming.net:3628/stream/play.m3u8 +#EXTINF:-1 tvg-id="CanalVisionDorada.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",Canal Visión Dorada (720p) [Not 24/7] +https://movil.ejeserver.com/live/visiondorada.m3u8 +#EXTINF:-1 tvg-id="ChavoTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/El_Chavo_%28simple_logo%29.svg/800px-El_Chavo_%28simple_logo%29.svg.png" group-title="Series",Chavo TV (480p) [Not 24/7] +https://videostreaming.cloudserverlatam.com/chavotv/chavotv/playlist.m3u8 +#EXTINF:-1 tvg-id="CinemaMás.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Movies",Cinema+ (720p) +https://hvtrafico.ddns.net/cinema720/cinema720.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Eduvision.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/eduvision-2592.jpg" group-title="Education",Eduvision (720p) [Timeout] +http://66.240.236.25:1936/eduvision/eduvision/playlist.m3u8 +#EXTINF:-1 tvg-id="EnlaceTelevision.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/enlace-television-3301.jpg" group-title="General",Enlace Televisión (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/colombia/enlace.m3u8 +#EXTINF:-1 tvg-id="FamiliChannel.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/famili-channel-5336.jpg" group-title="Family",Famili Channel (720p) [Not 24/7] +https://rtmp02.portalexpress.es/thefchanel/thefchanel/playlist.m3u8 +#EXTINF:-1 tvg-id="LATAMTV.tv" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://t46.90f.myftpupload.com/wp-content/uploads/2020/08/cropped-Logo-LATAM-Horizontal-solo-alfa.png" group-title="",LATAM TV (Bogotà) (540p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/latam +#EXTINF:-1 tvg-id="MarinaStereo.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://www.marinastereo.co/wp-content/uploads/2019/11/LOGO-4-300x136.png" group-title="",Marina Stereo (720p) [Offline] +https://rtmp02.portalexpress.es/marinastereo/marinastereo/playlist.m3u8 +#EXTINF:-1 tvg-id="MelodyChannelColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://melodychannel.tv/wp-content/uploads/2021/01/cropped-logoMelody-2.png" group-title="Music",Melody Channel Colombia (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:MelodyChannel_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MiGenteTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/pe_mi-gente_m.png" group-title="",Mi Gente TV (720p) [Not 24/7] +https://hvtrafico.ddns.net/migente720/migente720.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieFe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="http://moviefe.com/logo%20moviefe.png" group-title="Movies",MovieFe (360p) [Not 24/7] +https://vcp.myplaytv.com/moviefe/ngrp:moviefe_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MundoMas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CREs19T.png" group-title="",Mundo Mas (560p) [Not 24/7] +http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 +#EXTINF:-1 tvg-id="NoticiasCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/589b13f631f1bebd088ff756.png" group-title="News",Noticias Caracol (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/58dc3d471cbe05ff3c8e463e.m3u8 +#EXTINF:-1 tvg-id="NTN24.co" tvg-country="CO;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NTN24/picture?width=320&height=320" group-title="News",NTN24 (Nuestra Tele Noticias) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEJs1fTF3KszRJGxJY14VrA/live +#EXTINF:-1 tvg-id="SenalColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://s3.amazonaws.com/rtvc-assets-senalcolombia.gov.co/s3fs-public/logo.png" group-title="General",Señal Colombia (1080p) +https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SuramTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6d2fOjq.png" group-title="Local",Suram TV (1080p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/suramtv/suramtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TDIColombia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/tdi-colombia-4792.jpg" group-title="General",TDI Colombia (720p) [Not 24/7] +https://play.amelbasoluciones.co:3971/live/tdicolombiatvlive.m3u8 +#EXTINF:-1 tvg-id="Teleamiga.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="Local",Teleamiga (Bogotà | Cundinamarca) (480p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ +https://liveingesta118.cdnmedia.tv/teleamigatvlive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleantioquia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_teleantioquia-hd_m.png" group-title="General",Teleantioquia (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ +https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleantioquia2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="General",Teleantioquia 2 (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ +https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecafe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="http://cdn-std-1.sibasa.netdna-cdn.com/co/b3aef974216995f45cbb271e6be36964.jpg" group-title="General",Telecafé [Offline] +http://38.131.11.9:1080/play/a0ct +#EXTINF:-1 tvg-id="Telecaribe.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/i5wyEor.png" group-title="General",Telecaribe (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/telecaribe_adaptive +#EXTINF:-1 tvg-id="Teleislas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4xNgb8H.png" group-title="General",Teleislas (486p) [Not 24/7] +http://vbox2.cehis.net/live-teleislas/smil:teleislas.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleislas.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4xNgb8H.png" group-title="General",Teleislas (486p) [Not 24/7] +https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemedellin.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_telemedellin-hd_m.png" group-title="General",Telemedellin (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/ +https://liveingesta118.cdnmedia.tv/telemedellintvlive/smil:dvrlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelemusicaTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bwp5lST.png" group-title="Music",Telemúsica TV (480p) +https://5b464b69d264e.streamlock.net/Channels_live/ngrp:telemusica_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Telepacifico.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://www.lyngsat-stream.com/logo/tv/tt/telepacifico_co.png" group-title="Local",Telepacífico (Santiago de Cali | Valle del Cauca) (720p) [Not 24/7] +https://stream.logicideas.media/telepacifico-live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telepetroleo.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.colombia.com/canales/telepetroleo-2308.jpg" group-title="Local",Telepetróleo (Barrancabermeja | Santander) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/colombia/telepetroleo.m3u8 +#EXTINF:-1 tvg-id="TelevisionCelestial.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",Television Celestial (480p) [Not 24/7] +https://stmvideo2.livecastv.com/celestialtv/celestialtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGracia.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/co-tv-gracia.jpg" group-title="Religious",TVGracia (720p) +https://streamyes.alsolnet.com/tvgracia/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNGlobal.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="",TVN Global (614p) [Not 24/7] +https://stmv2.voxtvhd.com.br/tvnglobal/tvnglobal/playlist.m3u8 +#EXTINF:-1 tvg-id="UNOPLAY.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/RReDi1C.png" group-title="Entertainment",UNO PLAY (720p) [Not 24/7] +https://live-edge-bhs-1.cdn.enetres.net/184784E1D210401F8041E3E1266822CC021/playlist.m3u8 diff --git a/channels/cr.m3u~master b/channels/cr.m3u~master new file mode 100644 index 000000000..e2cfd1669 --- /dev/null +++ b/channels/cr.m3u~master @@ -0,0 +1,81 @@ +#EXTM3U +#EXTINF:-1 tvg-id="88Stereo.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://hosttec.online/wp-content/uploads/2020/03/img1920.jpg" group-title="Music",88 Stereo (720p) [Not 24/7] +http://k3.usastreams.com/CableLatino/88stereo/playlist.m3u8 +#EXTINF:-1 tvg-id="AgrotendenciaTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/agrotendencia/picture?width=320&height=320" group-title="Outdoor",AgrotendenciaTV (480p) [Not 24/7] +https://inliveserver.com:1936/15506/15506/playlist.m3u8 +#EXTINF:-1 tvg-id="AnexionTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PrOYyU1.png" group-title="",Anexión TV (1080p) [Not 24/7] +http://rtmp.info:8081/anexiontv/envivo/index.m3u8 +#EXTINF:-1 tvg-id="AnexionTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/PrOYyU1.png" group-title="",Anexión TV (720p) [Not 24/7] +https://rtmp.info/anexiontv/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaSeisTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://lh3.googleusercontent.com/V-_fSNpzlQPfFuUG0wLkrR7-PQ3RDx3n9tE4zA_8Exm_OKVeU24Kt2HiKLYweJXItgY" group-title="",Antena Seis TV (720p) [Geo-blocked] +http://inliveserver.com:1935/14510/14510/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal4/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal6.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/6_de_costa_rica-mediano.png" group-title="",Canal 6 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal6/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal8.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://image.multimedios.cr/sites/default/files/styles/social_share/public/multimedios1.jpg" group-title="",Canal 8 (720p) +http://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 +#EXTINF:-1 tvg-id="Canal11.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://es.wikipedia.org/wiki/Canal_11_(Costa_Rica)#/media/Archivo:Repretel_11_logo.png" group-title="General",Canal 11 (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal11/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal13Sinart.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://costaricamedios.cr/wp-content/uploads/2018/11/logo-header-sinartcr.png" group-title="",Canal 13 Sinart (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vh8g3 +#EXTINF:-1 tvg-id="Canal14SanCarlos.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTNDjR1edbxFUJ8KSf8dffHp6ch_Xz35Cm9UIlH9PGTyheprfQc" group-title="",Canal 14 San Carlos (720p) +http://tvn.obix.tv:1935/TVN/CH14.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal38.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.canal38cr.com/wp-content/uploads/2019/10/cropped-Logo-Nuevo-400.jpg" group-title="Music",Canal 38 (720p) [Not 24/7] +https://rtmp.info/canal38/envivo/chunks.m3u8 +#EXTINF:-1 tvg-id="Canal38.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.canal38cr.com/wp-content/uploads/2019/10/cropped-Logo-Nuevo-400.jpg" group-title="Music",Canal 38 (720p) [Not 24/7] +https://rtmp.info/canal38/envivo/playlist.m3u8 +#EXTINF:-1 tvg-id="ColosalTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="",Colosal TV (720p) [Not 24/7] +http://tv.ticosmedia.com:1935/COLOSAL/COLOSAL/playlist.m3u8 +#EXTINF:-1 tvg-id="CRTVyRadio.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="Sports",CR-TV y Radio (360p) [Timeout] +https://cp.sradiotv.com:1936/8034/8034/playlist.m3u8 +#EXTINF:-1 tvg-id="EJTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ejtvla/picture?width=320&height=320" group-title="Religious",Enlace Juvenil (EJTV) (288p) [Not 24/7] +https://api.new.livestream.com/accounts/ejtvla/events/2294538/live.m3u8 +#EXTINF:-1 tvg-id="EnlaceTV.cr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/enlacetv/picture?width=320&height=320" group-title="Religious",EnlaceTV (720p) [Not 24/7] +https://v4.tustreaming.cl/enlacebpbtv/index.m3u8 +#EXTINF:-1 tvg-id="ExtremaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/E9AuhOU.png" group-title="",Extrema TV (720p) +http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ExtremaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/E9AuhOU.png" group-title="",Extrema TV (720p) +https://www.livestreamcdn.net:444/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HBTVTicaVision.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/-k5QO6YHdanw/AAAAAAAAAAI/AAAAAAAAAAA/UTcqO9gj0z0/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",HBTV TicaVisión (720p) [Not 24/7] +http://k3.usastreams.com:1935/HBTV/HBTV/playlist.m3u8 +#EXTINF:-1 tvg-id="Humor247.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/humor247cr/picture?width=320&height=320" group-title="Entertainment",Humor 24-7 (360p) +https://srv.panelcast.net/humor247/humor247/playlist.m3u8 +#EXTINF:-1 tvg-id="LuzNacienteTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/192_Luz_Naciente_TV.png" group-title="",Luz Naciente TV (720p) [Not 24/7] +https://cloudflare.streamgato.us:3399/live/luznacientetvlive.m3u8 +#EXTINF:-1 tvg-id="NicoyaTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/NicoyaTv/picture?width=320&height=320" group-title="Local",NicoyaTV (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8 +#EXTINF:-1 tvg-id="QuinceUCR.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7hRnPcP.png" group-title="",Quince UCR (Universidad de Costa Rica) (720p) [Not 24/7] +http://163.178.170.127:1935/quinceucr/live.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="General",Repretel CDR-2 Central de Radios (360p) [Not 24/7] +https://d30zjikdv9ntds.cloudfront.net/repretel/canal2/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroTVPalmares.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="http://tvretropalmares.com/img/logo.png" group-title="",Retro TV Palmares (360p) [Not 24/7] +http://tvretropalmares.com:8090/hls/envivo.m3u8 +#EXTINF:-1 tvg-id="SanRafaelenLinea.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/telemascr.com/wp-content/uploads/2020/10/LOGO-WEB.png" group-title="Local",San Rafael en Linea (720p) [Geo-blocked] +https://cp.sradiotv.com:1936/8064/8064/playlist.m3u8 +#EXTINF:-1 tvg-id="SMOTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UYAL51B.png" group-title="Religious",SMO TV [Timeout] +http://186.15.50.30:8080/hls/smotv.m3u8 +#EXTINF:-1 tvg-id="STVElCamalFamiliar.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/10/Canal-stv-en-vivo.jpg" group-title="",STV El Camal Familiar (720p) [Not 24/7] +http://tiquiciatv.com:1935/stv/web/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleUno.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/directostv.teleame.com/wp-content/uploads/2016/06/Tele-Uno-Costa-Rica-en-vivo-Online.png?fit=1920%2C1080" group-title="",Tele Uno (720p) [Not 24/7] +http://tv.teleunotv.cr:1935/TVUNO/TVUNO/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleredTelevision.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iO6qmgY.png" group-title="",Telered Television (720p) [Not 24/7] +http://k4.usastreams.com/ARBtv/teleplus/playlist.m3u8 +#EXTINF:-1 tvg-id="Telesistema.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/478_Telesistema.png" group-title="",Telesistema (486p) +https://59ef525c24caa.streamlock.net/ARBtv/ARBtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSURCostaRica.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/r5p97Ex.jpg" group-title="",TeleSUR Costa Rica (720p) [Not 24/7] +http://k3.usastreams.com/telesur/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSURCostaRica.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/r5p97Ex.jpg" group-title="",TeleSUR Costa Rica (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/telesur/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletica7.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GeIK8rC.png" group-title="",Teletica 7 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x29e3wg +#EXTINF:-1 tvg-id="TVSurCanal9.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTQ-pLqFOvp-6R_dr9whF_Q5IBLtvtRcMjOY2xmROz5zFlIu7Y88Q&s" group-title="",TV Sur Canal 9 (480p) [Not 24/7] +http://tv.ticosmedia.com:1935/TVSUR/TVSUR/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSurCanal14.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.tvsur.co.cr/wp-content/uploads/2020/05/tvsur-logo.png" group-title="",TV Sur Canal 14 (720p) +https://5bf8041cb3fed.streamlock.net/TVSURCANAL14/TVSURCANAL14/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoTourChannel.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/l1oc3ER.png" group-title="Music",Video Tour Channel (720p) [Not 24/7] +http://k4.usastreams.com/videotour/videotour/playlist.m3u8 +#EXTINF:-1 tvg-id="VMLatino.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.m3u.cl/logo/1062_Canal_VM_Latino.png" group-title="Music",VM Latino (720p) [Not 24/7] +https://59ef525c24caa.streamlock.net/vmtv/vmlatino/playlist.m3u8 +#EXTINF:-1 tvg-id="ZonaFilmsTV.cr" tvg-country="CR" tvg-language="Spanish" tvg-logo="" group-title="Music",Zona Films TV (900p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/zonafilmstv diff --git a/channels/cu.m3u~master b/channels/cu.m3u~master new file mode 100644 index 000000000..8f5b59c74 --- /dev/null +++ b/channels/cu.m3u~master @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalEducativo.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/ce.jpg" group-title="",Canal Educativo [Timeout] +http://177.52.221.214:8000/play/a0dw/index.m3u8 +#EXTINF:-1 tvg-id="CanalEducativo2.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/ce2.jpg" group-title="",Canal Educativo 2 [Timeout] +http://177.52.221.214:8000/play/a0dx/index.m3u8 +#EXTINF:-1 tvg-id="CubaVision.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cubavision.jpg" group-title="",CubaVision [Timeout] +http://177.52.221.214:8000/play/a0dc/index.m3u8 +#EXTINF:-1 tvg-id="CubaVisionInternacional.cu" tvg-country="CU;HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cvi.jpg" group-title="",CubaVision Internacional (480p) [Not 24/7] +http://190.122.96.187:8888/http/010 +#EXTINF:-1 tvg-id="CubaVisionInternacional.cu" tvg-country="CU;HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/cvi.jpg" group-title="",CubaVision Internacional [Timeout] +http://177.52.221.214:8000/play/a0dy/index.m3u8 +#EXTINF:-1 tvg-id="TeleRebelde.cu" tvg-country="CU" tvg-language="Spanish" tvg-logo="https://www.tvcubana.icrt.cu/images/logos-canales/logo-mascara/tr.jpg" group-title="",Tele Rebelde [Timeout] +http://177.52.221.214:8000/play/a0dd/index.m3u8 diff --git a/channels/cw.m3u~master b/channels/cw.m3u~master new file mode 100644 index 000000000..810f97995 --- /dev/null +++ b/channels/cw.m3u~master @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BonceTV.cw" tvg-country="CW" tvg-language="Dutch" tvg-logo="" group-title="",Bonce TV (480p) [Not 24/7] +https://seswa.bonce.tv/hls/bonceswa.m3u8 +#EXTINF:-1 tvg-id="NosPais.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/jmYvx2s.jpg" group-title="",Nos Pais (720p) [Not 24/7] +http://558bd16067b67.streamlock.net/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NosPais.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/jmYvx2s.jpg" group-title="",Nos Païs (720p) [Not 24/7] +http://highvolume04.streampartner.nl:1935/nos_pais_24_7/smil:livestream.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCuracao.cw" tvg-country="CW" tvg-language="English" tvg-logo="https://i.imgur.com/9D9G4co.png" group-title="",TeleCuraçao (720p) +http://ott.streann.com:8080/loadbalancer/services/public/channels/5ed71e232cdc24a3d08cd6de/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDirect13.cw" tvg-country="CW" tvg-language="Dutch" tvg-logo="" group-title="",TV Direct 13 (720p) [Not 24/7] +https://edge1.tvdirect13.com/live/smil:mystream.smil/playlist.m3u8 diff --git a/channels/cy.m3u~master b/channels/cy.m3u~master new file mode 100644 index 000000000..3bd4d1f17 --- /dev/null +++ b/channels/cy.m3u~master @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdaTV.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/d8op3Wh.jpg" group-title="",Ada TV (1080p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/kibrisadatv/playlist.m3u8 +#EXTINF:-1 tvg-id="AdaTV.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/d8op3Wh.jpg" group-title="",Ada TV (720p) [Offline] +http://kuzeykibris.tv/m3u8/tv_ada.m3u8 +#EXTINF:-1 tvg-id="AlfaSport.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Vq4YBIA.png" group-title="Sports",Alfa Sport (1080p) [Not 24/7] +https://dev.aftermind.xyz/edge-hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="AlfaSport.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Vq4YBIA.png" group-title="Sports",Alfa Sport (1080p) [Not 24/7] +https://dev.aftermind.xyz/hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="ASTTV1.cy" tvg-country="CY" tvg-language="English" tvg-logo="https://i.imgur.com/KmokZz8.jpg" group-title="XXX",AST TV 1 (PC) (1080p) [Not 24/7] +https://www.ast.tv/stream/1/master.m3u8 +#EXTINF:-1 tvg-id="ASTTV2.cy" tvg-country="CY" tvg-language="English" tvg-logo="https://i.imgur.com/KmokZz8.jpg" group-title="XXX",AST TV 2 (PC) (1080p) [Not 24/7] +https://www.ast.tv/stream/2/master.m3u8 +#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_brt1.m3u8 +#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (576p) [Not 24/7] +http://wms.brtk.net:1935/live/BRTHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT1HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8GocquE.png" group-title="",BRT 1 HD (576p) [Not 24/7] +rtmp://wms.brtk.net:1935/live/BRTHD +#EXTINF:-1 tvg-id="BRT2HD.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/HjuOfNf.png" group-title="",BRT 2 HD (406p) [Not 24/7] +http://wms.brtk.net:1935/live/brt1/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT3.cy" tvg-country="CY" tvg-language="Turkish" tvg-logo="https://i.imgur.com/P3ibIye.png" group-title="",BRT 3 (406p) [Not 24/7] +http://wms.brtk.net:1935/live/brt2/playlist.m3u8 +#EXTINF:-1 tvg-id="CityChannel.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Jo6jIP1.jpg" group-title="",City Channel (720p) +https://dev.aftermind.xyz/edge-hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="CityChannel.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/Jo6jIP1.jpg" group-title="",City Channel (720p) +https://dev.aftermind.xyz/hls/unitrust/citychannel/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="DigitalTV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Digital TV (720p) +https://l8.cloudskep.com/digital/dtv/playlist.m3u8 +#EXTINF:-1 tvg-id="KuzeyKibrisTV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Kuzey Kibris TV (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_kktv.m3u8 +#EXTINF:-1 tvg-id="Reload.cy" tvg-country="CY" tvg-language="English;Greek" tvg-logo="" group-title="Music",Reload (720p) +http://web.onair-radio.eu:1935/video/video/playlist.m3u8 +#EXTINF:-1 tvg-id="RIK1CYBC1.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/daphne-lopezcybc-com-cy/2018/02/RIK1-4.png" group-title="",RIK 1 (CYBC 1) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rik1/playlist.m3u8 +#EXTINF:-1 tvg-id="RIK2CYBC2.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/daphne-lopezcybc-com-cy/2018/03/RIK2.png" group-title="",RIK 2 (CYBC 2) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rik2/playlist.m3u8 +#EXTINF:-1 tvg-id="RIKHDCYBCHD.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="http://cybc.com.cy/wp-content/uploads/admin/2018/10/rik-hd-bubble-border.png" group-title="",RIK HD (CYBC HD) [Geo-blocked] +http://l6.cloudskep.com/rikcy/rikhd/playlist.m3u8 +#EXTINF:-1 tvg-id="RIKSat.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/YAn5BJZ.png" group-title="",RΙΚ Sat (CYBC S) (720p) [Not 24/7] +https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="SAT7ARABIC.cy" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/xvJw3qt.png" group-title="Religious",SAT-7 ARABIC (720p) +https://svs.itworkscdn.net/sat7arabiclive/sat7arabic.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="SAT7KIDS.cy" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="" group-title="Kids",SAT-7 KIDS (1080p) +https://svs.itworkscdn.net/sat7kidslive/sat7kids.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="SAT7PARS.cy" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/wrOg8vL.png" group-title="Religious",SAT-7 PARS (720p) +https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="SAT7TURK.cy" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/zia9ehv.jpg" group-title="Religious",SAT-7 TÜRK (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Sigma.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",Sigma (576p) [Not 24/7] +https://sl2.sigmatv.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="TV2020.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="" group-title="",TV 2020 (720p) [Offline] +http://kuzeykibris.tv/m3u8/tv_dialog.m3u8 +#EXTINF:-1 tvg-id="VOULITV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/rIt5pfv.png" group-title="",Vouli TV (1080p) +https://dev.aftermind.xyz/edge-hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu +#EXTINF:-1 tvg-id="VOULITV.cy" tvg-country="CY" tvg-language="Greek" tvg-logo="https://i.imgur.com/rIt5pfv.png" group-title="",Vouli TV (1080p) +https://dev.aftermind.xyz/hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqu diff --git a/channels/cz.m3u~master b/channels/cz.m3u~master new file mode 100644 index 000000000..315f8e411 --- /dev/null +++ b/channels/cz.m3u~master @@ -0,0 +1,54 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ElektrikaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",Elektrika TV (1080p) +http://rtmp.elektrika.cz/live/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ExtasyHD.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="XXX",Extasy HD / Leo TV HD (576p) +http://213.151.233.20:8000/dna-6233-tv-pc.m3u8 +#EXTINF:-1 tvg-id="Nova.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/2f/TV_Nova_logo_2017.png" group-title="",Nova (640p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="Nova2.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/Nova2.cz.png" group-title="",Nova 2 (640p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_2_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaAction.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d2/Nova-action-logo-2017.png" group-title="",Nova Action (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_action_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaCinema.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/NovaCinema.cz.png" group-title="",Nova Cinema (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_cinema_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://static.epg.best/cz/NovaGold.cz.png" group-title="",Nova Gold (576p) [Geo-blocked] +https://nova-live.ssl.cdn.cra.cz/channels/nova_gold_avod/playlist.m3u8 +#EXTINF:-1 tvg-id="Ocko.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.imgur.com/jKPRYdM.png" group-title="Music",Óčko (540p) +https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko.stream.1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Ocko.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.imgur.com/jKPRYdM.png" group-title="Music",Óčko (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoExpres.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ocko-expres.png" group-title="Music",Óčko Expres (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko_expres/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/nrWNyLc.jpg" group-title="Music",Óčko Gold (540p) +https://ocko-live.ssl.cdn.cra.cz/channels/ocko_gold/playlist.m3u8 +#EXTINF:-1 tvg-id="OckoGold.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/nrWNyLc.jpg" group-title="Music",Óčko Gold (540p) [Geo-blocked] +https://ocko-live.ssl.cdn.cra.cz/cra_live2/ocko_gold.stream.1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PolarTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://polar.cz/images/layout/header/logo.png" group-title="",Polar TV (1080p) +https://stream.polar.cz/polar/polarlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="PrahaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://prahatv.eu/images/layout/header/logo.png" group-title="",Praha TV (1080p) +https://stream.polar.cz/prahatv/prahatvlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTelevision.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="Music",Retro Music Television (360p) +http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.postimg.cc/C53XtK5f/zaltv.png" group-title="Music",Retro Music TV (360p) +http://89.185.253.55/retrotv/retrotvHQ1/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroMusicTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://i.postimg.cc/C53XtK5f/zaltv.png" group-title="Music",RetroMusicTV (360p) +http://stream.mediawork.cz/retrotv/smil:retrotv2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTMplus.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.smidlib.cz/obrazky/clanky/liberecky-eter/co-se-deje-v-eteru-libereckeho-kraje/logo-tv-rtm+.jpg" group-title="",RTM plus (720p) +http://www.rtmplus.cz/live/1-playlist.m3u8 +#EXTINF:-1 tvg-id="Slagr2.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://www.starnet.cz/tv/slagr2.png" group-title="",Šlágr 2 (576p) +http://92.62.234.233/slagr2.m3u +#EXTINF:-1 tvg-id="SlagrTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://www.slagrtv.cz/files/logo-slagr.png" group-title="Music",Slagr TV (540p) [Not 24/7] +http://slagrtv-live-hls.ssl.cdn.cra.cz/channels/slagrtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SlagrTV.cz" tvg-country="CZ;SK" tvg-language="Czech" tvg-logo="https://www.slagrtv.cz/files/logo-slagr.png" group-title="Music",Šlágr TV (576p) +https://stream-6.mazana.tv/slagr.m3u +#EXTINF:-1 tvg-id="TVNatura.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",TV Natura (360p) [Not 24/7] +https://media1.tvnatura.cz/live_out/1/live.m3u8 +#EXTINF:-1 tvg-id="TVNOE.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.imgur.com/Dg9edVr.jpg" group-title="",TV NOE (720p) [Offline] +https://w101.quickmedia.tv/prozeta-live04/prozeta-live04.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="VychodoceskaTV.cz" tvg-country="CZ" tvg-language="Czech" tvg-logo="https://i.iinfo.cz/images/409/v1-vychodoceska-televize-1.jpg" group-title="",Východočeská TV (576p) +https://stream.polar.cz/vctv/vctvlive-1/playlist.m3u8 +#EXTINF:-1 tvg-id="NastoyashcheeVremya.cz" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Настоящее Время (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s61/index.m3u8 +#EXTINF:-1 tvg-id="NastoyashcheeVremya.cz" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Настоящее Время (1080p) [Not 24/7] +http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8 diff --git a/channels/de.m3u~master b/channels/de.m3u~master new file mode 100644 index 000000000..85d9e85ea --- /dev/null +++ b/channels/de.m3u~master @@ -0,0 +1,474 @@ +#EXTM3U +#EXTINF:-1 tvg-id="123TV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24444-2.png" group-title="",1-2-3 TV (480p) +http://123tv-mx1.flex-cdn.net/index.m3u8 +#EXTINF:-1 tvg-id="3sat.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/3sat.png" group-title="",3sat [Geo-blocked] +https://zdf-hls-18.akamaized.net/hls/live/2016501/dach/high/master.m3u8 +#EXTINF:-1 tvg-id="atv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/tupATym.png" group-title="",a.tv (1080p) [Not 24/7] +https://augsburgtv.iptv-playoutcenter.de/augsburgtv/augsburgtv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="ADRIAMusic.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/pPAj9Ua.png" group-title="Music",ADRIA Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-1/master.m3u8 +#EXTINF:-1 tvg-id="AlexBerlin.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/eTmHk4e.png" group-title="",Alex Berlin (1080p) [Not 24/7] +https://alex-stream.rosebud-media.de/live/alexlivetv40.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AnixeHDSerie.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Anixe_HD.svg/641px-Anixe_HD.svg.png" group-title="",Anixe HD Serie (360p) +https://ma.anixa.tv/clips/stream/anixehd/index.m3u8 +#EXTINF:-1 tvg-id="AntenneVorarlberg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/TpBbZwq.png" group-title="",Antenne Vorarlberg (720p) [Not 24/7] +http://5857db5306b83.streamlock.net/antennevorarlberg-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="ARDEvent1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/daserste.png" group-title="",ARD Event 1 (540p) [Offline] +http://wdrardevent1-lh.akamaihd.net/i/ardevent1_weltweit@566648/master.m3u8 +#EXTINF:-1 tvg-id="ARDalpha.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/e96fafec01ec632f9b38/black/84x48.png" group-title="",ARD-alpha (720p) +http://livestreams.br.de/i/bralpha_germany@119899/master.m3u8 +#EXTINF:-1 tvg-id="ARDalpha.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/e96fafec01ec632f9b38/black/84x48.png" group-title="",ARD-alpha (720p) [Not 24/7] +https://brlive-lh.akamaihd.net/i/bralpha_germany@119899/master.m3u8 +#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (1080p) [Not 24/7] +http://176.10.117.18:8000/play/a002/index.m3u8 +#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/139 +#EXTINF:-1 tvg-id="ARTITV.de" tvg-country="DE" tvg-language="German;Turkish" tvg-logo="" group-title="",ARTI TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/139.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] +http://badentv-stream2.siebnich.info/rtplive/btv.stream/live.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] +http://badentv-stream2.siebnich.info/rtplive/btv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BadenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Baden TV (1080p) [Not 24/7] +https://cdn.icu.de/rtplive/btv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/0OoMMbd.png" group-title="",Bibel TV (720p) +https://bibint01.iptv-playoutcenter.de/bibint01/bibint01.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTVImpuls.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/bibeltv.png" group-title="",Bibel TV Impuls (720p) +https://bibeltv02.iptv-playoutcenter.de/bibeltv02/bibeltv02.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BibelTVMusik.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/bibeltv.png" group-title="",Bibel TV Musik (720p) +http://bibeltv03.iptv-playoutcenter.de/bibeltv03/bibeltv03.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKRegionalTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/blkregionaltv.png" group-title="",BLK Regional TV (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://pbs.twimg.com/profile_images/706774153001639938/VCkr2ys5_400x400.jpg" group-title="",BLK TV (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/D5wePo5.jpg" group-title="",BLK TV Hohenmölsen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8?ref=medienportal-sachsen- +#EXTINF:-1 tvg-id="BLKTVHohenmolsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/D5wePo5.jpg" group-title="",BLK TV Hohenmölsen (1080p) [Not 24/7] +http://62.113.210.250/medienasa-live/BLKonline_high/playlist.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Nord (720p) [Geo-blocked] +http://livestreams.br.de/i/bfsnord_germany@119898/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenNord.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/brhd.png" group-title="",BR Fernsehen Nord (720p) [Geo-blocked] +https://brlive-lh.akamaihd.net/i/bfsnord_germany@119898/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) +https://brcdn.vo.llnwd.net/br/fs/bfs_sued/hls/de/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] +http://livestreams.br.de/i/bfssued_germany@119890/master.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] +https://br_hdslive-f.akamaihd.net/i/bfssued_germany@119890/index_3776_av-p.m3u8 +#EXTINF:-1 tvg-id="BayerischesFernsehenSud.de" tvg-country="DE" tvg-language="German" tvg-logo="http://images.live-stream.tv/picons/br.png" group-title="",BR Fernsehen Süd (720p) [Geo-blocked] +https://brlive-lh.akamaihd.net/i/bfssued_germany@119890/master.m3u8 +#EXTINF:-1 tvg-id="CampusTVMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://yt3.ggpht.com/-p6SxYHWfzPA/AAAAAAAAAAI/AAAAAAAAAAA/v8ceLuwU1Qg/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Campus TV Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8 +#EXTINF:-1 tvg-id="CampusTVMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://yt3.ggpht.com/-p6SxYHWfzPA/AAAAAAAAAAI/AAAAAAAAAAA/v8ceLuwU1Qg/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Campus TV Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/hasbahca.m3u8?bitrate=800 +#EXTINF:-1 tvg-id="CampusTVMagdeburgPlus.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Campus-TV-Magdeburg+ (1080p) +http://62.113.210.250/medienasa-live/ok-wernigerode_high/chunklist_w937425968.m3u8 +#EXTINF:-1 tvg-id="ChemnitzFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Chemnitz Fernsehen (1080p) +https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",CIRA TV (720p) [Not 24/7] +http://176.10.117.18:8000/play/a00f/index.m3u8 +#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",ÇİRA TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/25 +#EXTINF:-1 tvg-id="CIRATV.de" tvg-country="DE" tvg-language="Kurdish" tvg-logo="" group-title="",ÇİRA TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/25.m3u8 +#EXTINF:-1 tvg-id="CroTVHD.de" tvg-country="CZ" tvg-language="Czech" tvg-logo="" group-title="",CroTV HD (1080p) +http://92.204.40.139:8081/crotv/televizijahrvatskedijaspore/playlist.m3u8 +#EXTINF:-1 tvg-id="DaVinci.de" tvg-country="CIS" tvg-language="Russian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/da_vinci_learning.png" group-title="Kids",Da Vinci [Timeout] +http://sc.id-tv.kz/DaVinci_38_39.m3u8 +#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/7wABSuo.png" group-title="",Das Erste (720p) +https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/2a2a4aee64bbd6f7f817/black/84x48.png" group-title="",Das Erste (720p) +https://mcdn.daserste.de/daserste/de/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/7wABSuo.png" group-title="",Das Erste (720p) [Geo-blocked] +https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8 +#EXTINF:-1 tvg-id="DasErste.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/2a2a4aee64bbd6f7f817/black/84x48.png" group-title="",Das Erste (720p) [Geo-blocked] +https://mcdn.daserste.de/daserste/de/master.m3u8 +#EXTINF:-1 tvg-id="DASDING908.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/rR44kv4.png" group-title="",DASDING 90.8 (720p) [Offline] +https://swrdasdingvrhls-i.akamaihd.net/hls/live/780817/vrdasding/master.m3u8 +#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/wUjgEUs.jpg" group-title="",Deutsches Musik Fernsehen (720p) [Not 24/7] +https://tv.artcom-venture.de/dmf/tv.m3u8 +#EXTINF:-1 tvg-id="DeutschesMusikFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/wUjgEUs.jpg" group-title="",Deutsches Musik Fernsehen (540p) [Not 24/7] +http://tv.artcom-venture.de:1322/dmf/tv.m3u8 +#EXTINF:-1 tvg-id="DresdenFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Dresden Fernsehen (1080p) [Not 24/7] +https://dresden.iptv-playoutcenter.de/dresden/dresdenfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="DW.de" tvg-country="DE;AT;BE;LI;LU;CH" tvg-language="German" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",DW (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s26/index.m3u8 +#EXTINF:-1 tvg-id="DWArabic.de" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/A1xzjOI.png" group-title="News",DW Arabic (1080p) +https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/index.m3u8 +#EXTINF:-1 tvg-id="DWDeutsch.de" tvg-country="DE" tvg-language="German" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/17/dstv_Deutshe_Welle_4-3_lightbackground_001_xlrg.png" group-title="News",DW Deutsch (1080p) [Geo-blocked] +https://dwamdstream106.akamaized.net/hls/live/2017965/dwstream106/index.m3u8 +#EXTINF:-1 tvg-id="DWDeutschPlus.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/deutschewelle.png" group-title="News",DW Deutsch+ (1080p) [Geo-blocked] +https://dwamdstream105.akamaized.net/hls/live/2015531/dwstream105/index.m3u8 +#EXTINF:-1 tvg-id="DWEnglish.de" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/xnv0Pgm.jpg" group-title="News",DW English (1080p) +https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/index.m3u8 +#EXTINF:-1 tvg-id="DWEnglish.de" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/xnv0Pgm.jpg" group-title="News",DW English (720p) [Offline] +https://m-c010-j2apps.s.llnwi.net/hls_hd/8024.DWEnglishHD.in.m3u8 +#EXTINF:-1 tvg-id="DWEspanol.de" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/A1xzjOI.png" group-title="News",DW Español (1080p) +https://dwamdstream104.akamaized.net/hls/live/2015530/dwstream104/index.m3u8 +#EXTINF:-1 tvg-id="EarthTV.de" tvg-country="DE" tvg-language="English" tvg-logo="" group-title="",Earth TV (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/germany/earth-tv +#EXTINF:-1 tvg-id="Elbekanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/IKslrJu.png" group-title="",Elbekanal (576p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="Elbekanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/IKslrJu.png" group-title="",Elbekanal (576p) +http://62.113.210.250/medienasa-live/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="ElbekanalSchonebeck.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/MjZ0w7G.png" group-title="",Elbekanal Schönebeck (576p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="emsTVLingen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/dKCLYAj.png" group-title="",ems TV Lingen (280p) +https://5889e7d0d6e28.streamlock.net/ev1tv-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="eoTV.de" tvg-country="DE;AT;CH" tvg-language="German" tvg-logo="https://i.imgur.com/oitJsZU.png" group-title="",eo TV (1080p) [Geo-blocked] +https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd5/playlist.m3u8 +#EXTINF:-1 tvg-id="ERF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/MAnSA7W.jpg" group-title="",ERF 1 [Offline] +http://14000-l.z.core.cdn.streamfarm.net/007erfiphonelive/smil:stream_live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ErzTVStollberg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/VenSjan.png" group-title="",Erz-TV Stollberg (576p) +https://5acade5fc0c29.streamlock.net/kabeljournal/live2020.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroAlTV.de" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/qLaEmIT.png" group-title="",EuroAl TV (720p) [Timeout] +http://5.135.92.131:1935/live/euroAl/playlist.m3u8 +#EXTINF:-1 tvg-id="Filstalwelle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/19iKLvf.png" group-title="",Filstalwelle (576p) +http://62.113.210.2/filstalwelle-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="FinestTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Finest TV (288p) [Not 24/7] +http://media.finest.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="FOLXMusic.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/R9f5Fmx.png" group-title="Music",FOLX Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-4/master.m3u8 +#EXTINF:-1 tvg-id="FOLXSlovenija.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/R9f5Fmx.png" group-title="Music",FOLX Slovenija (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-5/master.m3u8 +#EXTINF:-1 tvg-id="FrankenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/frankenfernsehen.png" group-title="",Franken Fernsehen (1080p) +https://s3.welocal.world/frankenfernsehen/media/191627/videos/hls.m3u8 +#EXTINF:-1 tvg-id="FrankenFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/frankenfernsehen.png" group-title="",Franken Fernsehen (Nürnberg) (1080p) [Not 24/7] +https://frankentv.iptv-playoutcenter.de/frankentv/frankentv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="FriesischerRundfunkFriedeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jynL4Xl.png" group-title="",Friesischer Rundfunk Friedeburg (350p) [Not 24/7] +https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/mp4:friesischerrundfunk/playlist.m3u8 +#EXTINF:-1 tvg-id="Hamburg1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9TRhahY.png" group-title="",Hamburg 1 (270p) [Not 24/7] +https://live2.telvi.de/hls/hamburg1.m3u8 +#EXTINF:-1 tvg-id="Handystar.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Handystar (404p) [Offline] +http://mediaspar-live.hls.adaptive.level3.net/ses/mediaspar/stream1/streamPlaylist.m3u8 +#EXTINF:-1 tvg-id="HauptstadtTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ZXskBkv.png" group-title="",Hauptstadt.TV (Potsdam) (720p) [Not 24/7] +https://live2.telvi.de/hls/hauptstadttv_hd720.m3u8 +#EXTINF:-1 tvg-id="HealthTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Health TV (720p) +http://62.67.13.53:1935/HealthTV/ghtv_live_master.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HR.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/hr.png" group-title="",hr-fernsehen (1080p) [Timeout] +https://hrhls.akamaized.net/hls/live/2024525/hrhls/index.m3u8 +#EXTINF:-1 tvg-id="HSE.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24483-2.png" group-title="",HSE (1080p) +https://hse24.akamaized.net/hls/live/2006663/hse24/playlist.m3u8 +#EXTINF:-1 tvg-id="HSE24Extra.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",HSE24 Extra (1080p) +https://hse24extra.akamaized.net/hls/live/2006596/hse24extra/playlist.m3u8 +#EXTINF:-1 tvg-id="HSE24Trend.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",HSE24 Trend (576p) +https://hse24trend.akamaized.net/hls/live/2006597/hse24trend/playlist.m3u8 +#EXTINF:-1 tvg-id="IsarTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Isar TV (1080p) [Not 24/7] +https://isar-tv.iptv-playoutcenter.de/isar-tv/isar-tv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="JenaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/o3D4bQI.png" group-title="",JenaTV (1080p) [Timeout] +https://stream7.sehradar.de/jenatv/ngrp:livestream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KTVFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",K-TV (Fernsehen) (720p) +https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8 +#EXTINF:-1 tvg-id="KiKA.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",KiKA [Geo-blocked] +https://kikageohls.akamaized.net/hls/live/2022693/livetvkika_de/master.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) +http://62.113.210.250/medienasa-live/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KulturMD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/io7cJ1Z.png" group-title="",KulturMD (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KWTVWildau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/882I3h8.png" group-title="",KW TV Wildau (720p) [Not 24/7] +https://58af0c57eaf3e.streamlock.net/easycast11-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Lausitzwelle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/GNMaGZE.png" group-title="",Lausitzwelle (Fernsehen) (1080p) +https://5856e1a25f71a.streamlock.net/easycast9-live/mp4:livestreamhd10/playlist.m3u8 +#EXTINF:-1 tvg-id="LeipzigFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Leipzig Fernsehen (1080p) +https://leipzig.iptv-playoutcenter.de/leipzig/leipzigfernsehen.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="LightChannel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (576p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/lctvde/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SEeqryT.png" group-title="",MDF.1 (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SEeqryT.png" group-title="",MDF.1 (1080p) +http://62.113.210.250/medienasa-live/mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MDF1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://medienportal-sachsen-anhalt.de/uploads/hg/mdf1.png" group-title="",MDF.1 (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="MunchenTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/67z7iRh.jpg" group-title="",München TV (1080p) [Not 24/7] +https://muenchentv.iptv-playoutcenter.de/muenchentv/muenchentv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Muxxtv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/QUOxNbF.png" group-title="",Muxx.tv (1080p) [Not 24/7] +https://5856e1a25f71a.streamlock.net/easycast7-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTVplus.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.mytvplus.de/arbeitsdaten/png/LOGO%20MyTVplus%2002.png" group-title="",MyTVplus (Dresden) (576p) +https://mytvplus.iptv-playoutcenter.de/mytvplus/mytvplus.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="ntvEvent.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9FPXcFY.jpg" group-title="",n-tv Event (540p) +https://ntvlivehls-lh.akamaihd.net/i/ntvlivehls_event1_1@409295/master.m3u8 +#EXTINF:-1 tvg-id="naheTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XINB3Zf.png" group-title="",naheTV (720p) +https://s.ok54.de/nahetv/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="NDREvent1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 1 (720p) +https://ndrevent-lh.akamaihd.net/i/ndrevent_1@409066/master.m3u8 +#EXTINF:-1 tvg-id="NDREvent2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 2 (720p) +https://ndrevent-lh.akamaihd.net/i/ndrevent_2@429805/master.m3u8 +#EXTINF:-1 tvg-id="NDREvent3.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BuirhUR.png" group-title="",NDR Event 3 (720p) [Geo-blocked] +https://ndrevent-lh.akamaihd.net/i/ndrevent_3@409068/master.m3u8 +#EXTINF:-1 tvg-id="NDRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild110_v-contentxl.jpg" group-title="",NDR Fernsehen (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_fs@430230/master.m3u8 +#EXTINF:-1 tvg-id="NDRHamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild100_v-contentxl.jpg" group-title="",NDR Hamburg (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_hh@430231/master.m3u8 +#EXTINF:-1 tvg-id="NDRHamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild100_v-contentxl.jpg" group-title="",NDR Hamburg (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_hh/master.m3u8 +#EXTINF:-1 tvg-id="NDRInternational.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild108_v-contentxl.jpg" group-title="",NDR International (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_int@430236/master.m3u8 +#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild102_v-contentxl.jpg" group-title="",NDR Mecklenburg-Vorpommern (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_mv@430232/master.m3u8 +#EXTINF:-1 tvg-id="NDRMecklenburgVorpommern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild102_v-contentxl.jpg" group-title="",NDR Mecklenburg-Vorpommern (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_mv/master.m3u8 +#EXTINF:-1 tvg-id="NDRNiedersachsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild104_v-contentxl.jpg" group-title="",NDR Niedersachsen (540p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_nds@430233/master.m3u8 +#EXTINF:-1 tvg-id="NDRNiedersachsen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild104_v-contentxl.jpg" group-title="",NDR Niedersachsen (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_nds/master.m3u8 +#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild106_v-contentxl.jpg" group-title="",NDR Schleswig-Holstein (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_sh@430234/master.m3u8 +#EXTINF:-1 tvg-id="NDRSchleswigHolstein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild106_v-contentxl.jpg" group-title="",NDR Schleswig-Holstein (720p) [Timeout] +https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_sh/master.m3u8 +#EXTINF:-1 tvg-id="NDRWeltweiter.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.ndr.de/fernsehen/livestreamteaserbild108_v-contentxl.jpg" group-title="",NDR Weltweiter (720p) [Geo-blocked] +https://ndrfs-lh.akamaihd.net/i/ndrfs_ww@430235/master.m3u8 +#EXTINF:-1 tvg-id="NiederbayernTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Niederbayern TV (1080p) [Not 24/7] +https://stream03.stream.welocal.world/stream/nla/ngrp:nla.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NiederbayernTVPassau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/niederbayerntv.png" group-title="",Niederbayern TV Passau (1080p) [Offline] +https://stream03.stream.welocal.world/stream/npa/ngrp:npa.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Noa4Hamburg.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Noa 4 Hamburg (1080p) +https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8 +#EXTINF:-1 tvg-id="Noa4Norderstedt.de" tvg-country="DE" tvg-language="German" tvg-logo="http://s3.vefire.ru/l/en/NOA4.gif" group-title="",Noa 4 Norderstedt (1080p) +https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8 +#EXTINF:-1 tvg-id="NRT2.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",NRT 2 (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/54.m3u8 +#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="NRWISION.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",NRWISION (1080p) +https://fms.nrwision.de/live/livestreamHD.stream_source/playlist.m3u8 +#EXTINF:-1 tvg-id="NRWision.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/RkF2Kmx.png" group-title="",NRWision (1080p) +https://fms.nrwision.de/live/livestreamHD.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OberlausitzTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Oberlausitz TV (1080p) [Not 24/7] +http://5856e1a25f71a.streamlock.net:1935/easycast8-live/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="OberpfalzTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Oberpfalz TV (1080p) +https://oberpfalztv.iptv-playoutcenter.de/oberpfalztv/oberpfalztv.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="oeins.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/NHvYg7e.png" group-title="",oeins (Oldenburg) (1080p) [Not 24/7] +https://www.oeins.de/live/studio.m3u8 +#EXTINF:-1 tvg-id="OFTVOffenbach.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/BmJaDT3.jpg" group-title="",OF-TV Offenbach (720p) +https://5864df9ceac85.streamlock.net/germanpictures-live/mp4:streamschedule/playlist.m3u8 +#EXTINF:-1 tvg-id="OKDessau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okdessau.png" group-title="",OK Dessau (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKDessau.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okdessau.png" group-title="",OK Dessau (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKFlensburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YNYsGYY.png" group-title="",OK Flensburg (576p) [Offline] +https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/flensburgtv/index.m3u8 +#EXTINF:-1 tvg-id="OKGiessen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Gießen (360p) [Not 24/7] +https://s.ok54.de/mok-gi/mok-gi/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKaiserslautern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/SzGXrjb.png" group-title="",OK Kaiserslautern (720p) [Not 24/7] +https://s.ok54.de/abr_okkl/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKassel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Kassel (720p) [Not 24/7] +https://s.ok54.de/mok-ks/kassel/playlist.m3u8 +#EXTINF:-1 tvg-id="OKKiel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/A8rLufC.png" group-title="",OK Kiel (576p) [Offline] +https://d1lv1lpzlrjn3y.cloudfront.net/play/hls/kieltv/index.m3u8 +#EXTINF:-1 tvg-id="OKLudwigshafen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okludwigshafen.png" group-title="",OK Ludwigshafen (720p) [Not 24/7] +https://s.ok54.de/oklu/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) +http://62.113.210.250/medienasa-live/ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMagdeburg.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmagdeburg.png" group-title="",OK Magdeburg (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmerseburg.png" group-title="",OK Merseburg-Querfurt (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKMerseburgQuerfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okmerseburg.png" group-title="",OK Merseburg-Querfurt (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKRheinMain.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/XsmPI4N.jpg" group-title="",OK Rhein-Main (576p) [Not 24/7] +https://s.ok54.de/mok-rm/mok-rm/playlist.m3u8 +#EXTINF:-1 tvg-id="OKRheinLokalWorms.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okrheinlokal.png" group-title="",OK RheinLokal (Worms) (720p) [Not 24/7] +https://s.ok54.de/rheinlokal/rheinlOKal_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] +http://62.113.210.250/medienasa-live/ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSalzwedel.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksalzwedel.png" group-title="",OK Salzwedel (1080p) [Not 24/7] +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) +http://62.113.210.250/medienasa-live/ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKStendal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okstendal.png" group-title="",OK Stendal (1080p) [Not 24/7] +http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-stendal_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKSuedwestpfalz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oksuedwestpfalz.png" group-title="",OK Suedwestpfalz (720p) [Not 24/7] +https://s.ok54.de/okswp/test/playlist.m3u8 +#EXTINF:-1 tvg-id="OKTrier.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oktrier.png" group-title="",OK Trier (720p) +https://s.ok54.de/ott/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWeinstrasseNeustadt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okweinstrasse.png" group-title="",OK Weinstraße (Neustadt) (432p) +https://s.ok54.de/okweinstrasse/okweinstrasse/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWernigerode.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okwernigerode.png" group-title="",OK Wernigerode (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="OKWernigerode.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/okwernigerode.png" group-title="",OK Wernigerode (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="oldenburgeins.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/oldenburgeins.png" group-title="",oldenburg eins (1080p) [Not 24/7] +https://oeins.de/live/studio.m3u8 +#EXTINF:-1 tvg-id="ONE1Music.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/fHbHbEH.png" group-title="Music",ONE1 Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-3/master.m3u8 +#EXTINF:-1 tvg-id="ONE1Slovenija.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/fHbHbEH.png" group-title="Music",ONE1 Slovenija (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-6/master.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 1 (1080p) +https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 1 (270p) [Not 24/7] +https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk1.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 2 (270p) +https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk2.m3u8 +#EXTINF:-1 tvg-id="Parlamentsfernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/parlamentsfernsehen.png" group-title="",Parlamentsfernsehen 2 (270p) [Not 24/7] +https://c13014-l-hls.u.core.cdn.streamfarm.net/1000153copo/hk2.m3u8 +#EXTINF:-1 tvg-id="PearlTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/pearltv.png" group-title="",Pearl TV [Offline] +http://enstyle-live.hls.adaptive.level3.net/ses/enstyle/stream1/streamPlaylist.m3u8 +#EXTINF:-1 tvg-id="Phoenix.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/phoenix.png" group-title="",Phoenix [Geo-blocked] +https://zdf-hls-19.akamaized.net/hls/live/2016502/de/high/master.m3u8 +#EXTINF:-1 tvg-id="PunkteinsOberlausitz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Zb87dQQ.png" group-title="",Punkteins (Oberlausitz) (1080p) [Not 24/7] +https://5852afe96c9bb.streamlock.net/easycast8-live/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="PunktUM.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",PunktUM (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="PUNKTum.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/punktum.png" group-title="",PUNKTum (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="PUNKTumFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.punktum-fernsehen.de/share/android-icon-192x192.png" group-title="",PUNKTum Fernsehen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:punktum_high/playlist.m3u +#EXTINF:-1 tvg-id="PunktumSdharz.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Punktum S�dharz (1080p) +http://62.113.210.250/medienasa-live/punktum_high/master.m3u8 +#EXTINF:-1 tvg-id="Radio21TV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ubEUBmB.png" group-title="Music",Radio 21 TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/22300508/events/6675945/live.m3u8 +#EXTINF:-1 tvg-id="RadioWeserTVBremen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/9pvCYaA.png" group-title="Music",Radio Weser TV Bremen (576p) +https://5857499ee635b.streamlock.net/radiowesertv-live/mp4:livestreamTV/playlist.m3u8 +#EXTINF:-1 tvg-id="Ran1.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Ran 1 (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ran1.png" group-title="",RAN1 (1080p) +http://62.113.210.250/medienasa-live/mp4:ran1_high/master.m3u8 +#EXTINF:-1 tvg-id="RAN1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ran1.png" group-title="",RAN1 (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.ran1.de/img/ban1.png" group-title="",RAN1 Regionalfernsehen (1080p) +http://62.113.210.250:1935/medienasa-live/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RAN1Regionalfernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/NUP8ZBb.png" group-title="",RAN1 Regionalfernsehen (1080p) +http://62.113.210.250:1935/medienasa-live/ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) +http://62.113.210.250/medienasa-live/rbw_high/master.m3u8 +#EXTINF:-1 tvg-id="RBW.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.rbwonline.de/img/ban1.png" group-title="",RBW (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVBodensee.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/olVCZTJ.png" group-title="",Regio TV Bodensee (1080p) +https://regiotv-b.iptv-playoutcenter.de/regiotv-b/regiotv-b.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVSchwaben.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/OFGHhRE.png" group-title="",Regio TV Schwaben (1080p) [Offline] +https://stream05.stream.welocal.world/stream/rsc/ngrp:rsc.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVStuttgart.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/OFGHhRE.png" group-title="",Regio TV Stuttgart (1080p) +https://regiotv-s.iptv-playoutcenter.de/regiotv-s/regiotv-s.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RFH.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rfh.png" group-title="",RFH (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RFHHarz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/de/thumb/e/ea/RFH-Logo.svg/200px-RFH-Logo.svg.png" group-title="",RFH Harz (1080p) +http://62.113.210.250/medienasa-live/RFH_high/master.m3u8 +#EXTINF:-1 tvg-id="RFHHarz.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/de/thumb/e/ea/RFH-Logo.svg/200px-RFH-Logo.svg.png" group-title="",RFH Harz (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:RFH_high/playlist.m3u8?ref=medienportal-sachsen-anhalt.de&seid=528347 +#EXTINF:-1 tvg-id="RFHTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RFH TV (1080p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RFORosenheim.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rfo.png" group-title="",RFO Rosenheim (1080p) +https://stream01.stream.welocal.world/stream/fhd-rfo_66876/ngrp:stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/G7W4K3K.png" group-title="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/chunklist.m3u8 +#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YBkBDSz.png" group-title="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="rheinmaintv.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/rheinmaintv.png" group-title="",rheinmaintv (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/mp4:livestream/playlist.m3u8?=&ref=www.rheinmaintv.de&seid=598541 +#EXTINF:-1 tvg-id="RNF.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/YkB39hx.png" group-title="",RNF (1080p) +https://rnf.iptv-playoutcenter.de/rnf/rnf.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="RockAntenne.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/eZKNvkT.png" group-title="",Rock Antenne [Not 24/7] +https://stream.rockantenne.de/rockantenne/stream/mp3 +#EXTINF:-1 tvg-id="RocklandTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/vIMkVo6.png" group-title="",Rockland TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 +#EXTINF:-1 tvg-id="RocklandTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/vIMkVo6.png" group-title="",Rockland TV (720p) [Not 24/7] +http://player-api.new.livestream.com/accounts/22300522/events/6680139/live.m3u8 +#EXTINF:-1 tvg-id="RONTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ZqHWb40.png" group-title="",RON TV (1080p) [Offline] +https://ron-i.akamaihd.net/hls/live/523496/ron/master.m3u8 +#EXTINF:-1 tvg-id="RTL.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL [Offline] +https://cdn1.mobiletv.bg/T5/rtl/rtl_794613_850k.m3u8 +#EXTINF:-1 tvg-id="RTLWest.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/i7245OO.png" group-title="",RTL West (540p) [Offline] +https://rtl_west-i.akamaihd.net/hls/live/656246/rtlwest/master.m3u8 +#EXTINF:-1 tvg-id="RWEErfurt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/AMzEPGl.jpg" group-title="",RWE Erfurt (1080p) +https://stream.keyweb.org:8085/hls/rwetv.m3u8 +#EXTINF:-1 tvg-id="SA14dtirolTV.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Südtirol TV (720p) +https://5ce9406b73c33.streamlock.net/SudTirolTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SaarlandFernsehen1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Nvw7SaN.png" group-title="",Saarland Fernsehen 1 (1080p) +https://saarland1.iptv-playoutcenter.de/saarland1/saarland1.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="SaarlandFernsehen2.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Nvw7SaN.png" group-title="",Saarland Fernsehen 2 (720p) [Not 24/7] +https://saarland2.iptv-playoutcenter.de/saarland2/saarland2.stream_2/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraShortFilm.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/0Pq7fdJ.jpg" group-title="",Santhora Short Film (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/kn1DHZq.gif" group-title="",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="Seenluft24.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/3TgBg9v.jpg" group-title="",Seenluft24 (1080p) +https://5856e1a25f71a.streamlock.net/easycast7-live/mp4:livestreamhd20/playlist.m3u8 +#EXTINF:-1 tvg-id="SonnenklarTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/piwT1HQ.jpg" group-title="",Sonnenklar.TV (1080p) [Offline] +http://euvia-live.hls.adaptive.level3.net/ses/euvia/index.m3u8 +#EXTINF:-1 tvg-id="SonusFMAlemania.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",Sonus FM Alemania (1080p) [Not 24/7] +http://www.sonus.fm:1935/public/stream_source/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jyMedaF.png" group-title="Religious",Sophia TV (720p) +https://www.onairport.live/sophiatv-it-live/livestream_low/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/jyMedaF.png" group-title="Religious",Sophia TV (720p) +https://www.onairport.live/sophiatv/smil:sophia-tv-en.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/c50695d215e17cb3f886/black/84x48.png" group-title="",SR Fernsehen (720p) +http://fs.live.sr.de/i/sr_universal02@107595/master.m3u8 +#EXTINF:-1 tvg-id="SRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/c50695d215e17cb3f886/black/84x48.png" group-title="",SR Fernsehen (720p) +https://srlive24-lh.akamaihd.net/i/sr_universal02@107595/master.m3u8 +#EXTINF:-1 tvg-id="Studio47.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/xCiU1TB.png" group-title="",Studio 47 (576p) [Not 24/7] +https://5852afe96c9bb.streamlock.net/studio47-live/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SWR3VisualRadio.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/PxSgxRO.jpg" group-title="",SWR 3 Visual Radio (720p) [Offline] +https://swrswr3vrhls-i.akamaihd.net/hls/live/780818/vrswr3/master.m3u8 +#EXTINF:-1 tvg-id="Sylt1.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/sylt1.png" group-title="",Sylt1 (404p) +https://5aec29c5dd23b.streamlock.net:8443/sylt1/sylt1_high1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Tagesschau24.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/tagesschau24.png" group-title="",Tagesschau24 (720p) +https://tagesschau-lh.akamaihd.net/i/tagesschau_1@119231/master.m3u8 +#EXTINF:-1 tvg-id="TeinsTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/KJie1k5.png" group-title="",Teins TV (1080p) [Not 24/7] +http://live1.markenfunk.com/t1/live/chunklist.m3u8 +#EXTINF:-1 tvg-id="teltOwkanal.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/05UB2YT.png" group-title="",teltOwkanal (1080p) +https://5856e1a25f71a.streamlock.net/easycast8-live/mp4:livestreamhd8/playlist.m3u8 +#EXTINF:-1 tvg-id="TesasTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/xEGCX1f.png" group-title="",Tesas TV (720p) [Not 24/7] +https://jola.live:16200/tesastv.m3u8 +#EXTINF:-1 tvg-id="TideTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tidetv.png" group-title="",Tide TV (1080p) [Not 24/7] +https://5889e7d0d6e28.streamlock.net/tide-live/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="tiviTURK.de" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/9TDs8q8/IFE6LHH.jpg" group-title="",tiviTÜRK (720p) [Not 24/7] +https://stream.tiviturk.de/live/tiviturk.m3u8 +#EXTINF:-1 tvg-id="TVBayernLive.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/WyJLIzA.jpg" group-title="",TV Bayern Live (1080p) [Not 24/7] +https://s3.welocal.world/tvbayernlive/media/134371/videos/hls.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvhalle.png" group-title="",TV Halle (720p) +http://58bd5b7a98e04.streamlock.net/medienasa-live/tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/GUBVccx.png" group-title="",TV Halle (720p) +http://62.113.210.250/medienasa-live/tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHalle.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvhalle.png" group-title="",TV Halle (720p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="TVIngolstadt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/lrLaILx.png" group-title="",TV Ingolstadt (1080p) [Offline] +https://stream01.stream.welocal.world/stream/tvi/ngrp:tvi.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMainfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmainfranken.png" group-title="",TV Mainfranken (1080p) [Not 24/7] +https://tvtouringw.iptv-playoutcenter.de/tvtouringw/tvtouringw.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMainfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmainfranken.png" group-title="",TV Mainfranken (1080p) [Offline] +https://stream01.stream.welocal.world/stream/tvm/ngrp:tvm.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMittelrhein.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvmittelrhein.png" group-title="",TV Mittelrhein (404p) [Offline] +https://sdn-global-live-http-cache.3qsdn.com/2979/amlst:5714-sbr/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOberfranken.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tvo.png" group-title="",TV Oberfranken (1080p) [Offline] +https://stream02.stream.welocal.world/stream/tvo/ngrp:tvo.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TV38SudostNiedersachen.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/ob9JJPU.png" group-title="",TV38 Südost-Niedersachen (480p) [Not 24/7] +http://62.113.221.3/tv38-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVA.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",TVA (1080p) [Not 24/7] +https://tvaktuellr.iptv-playoutcenter.de/tvaktuellr/tvaktuellr.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAOstbayern.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/tva.png" group-title="",TVA Ostbayern (1080p) [Offline] +https://stream02.stream.welocal.world/stream/tva/ngrp:tva.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVO.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",TVO (1080p) [Not 24/7] +https://tvoberfranken.iptv-playoutcenter.de/tvoberfranken/tvoberfranken.stream_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Unserding.de" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/7/78/UnserDing_logo_2013_203x143.png" group-title="",Unserding (544p) +https://srunserding-lh.akamaihd.net/i/visualradio_ud@197013/master.m3u8 +#EXTINF:-1 tvg-id="WDRFernsehen.de" tvg-country="DE" tvg-language="German" tvg-logo="http://www.yilmaztv.com/logo/wdr.png" group-title="",WDR Fernsehen (720p) [Offline] +https://wdr_fs-lh.akamaihd.net/i/wdrfs_weltweit@112033/master.m3u8 +#EXTINF:-1 tvg-id="WDRKoeln.de" tvg-country="DE" tvg-language="German" tvg-logo="http://logos.zattic.com/images/channels/logos/da2f7b1155f1c2586f93/black/84x48.png" group-title="",WDR Koeln (720p) [Timeout] +https://wdrfsww247.akamaized.net/hls/live/2009628/wdr_msl4_fs247ww/master.m3u8 +#EXTINF:-1 tvg-id="Welt.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/welt.png" group-title="News",WELT [Geo-blocked] +https://live2weltcms-lh.akamaihd.net/i/Live2WeltCMS_1@444563/master.m3u8 +#EXTINF:-1 tvg-id="WesterwaldTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/westerwaldtv.png" group-title="",Westerwald TV (404p) [Offline] +https://sdn-global-live-http-cache.3qsdn.com/2980/amlst:5715-sbr/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldofFreesports.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/pggeczF.jpg" group-title="Sports",World of Freesports (720p) +https://a.jsrdn.com/broadcast/ab14783a09/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ZDF.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/zdf-logo.png" group-title="",ZDF [Geo-blocked] +https://zdf-hls-15.akamaized.net/hls/live/2016498/de/high/master.m3u8 +#EXTINF:-1 tvg-id="ZDFinfo.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",ZDFinfo [Geo-blocked] +https://zdf-hls-17.akamaized.net/hls/live/2016500/de/high/master.m3u8 +#EXTINF:-1 tvg-id="ZDFneo.de" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",ZDFneo [Geo-blocked] +https://zdf-hls-16.akamaized.net/hls/live/2016499/de/high/master.m3u8 +#EXTINF:-1 tvg-id="ZWEI2Music.de" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/VVwHID9.png" group-title="Music",ZWEI2 Music (1080p) [Timeout] +https://serve-first.folxplay.tv/folx/ch-2/master.m3u8 diff --git a/channels/de_samsung.m3u b/channels/de_samsung.m3u new file mode 100644 index 000000000..230d134d8 --- /dev/null +++ b/channels/de_samsung.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CNNInternationalGermany.us" tvg-country="DE" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International Germany (720p) +https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DeluxeLoungeHD.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.highview.com/fileadmin/Webdata/grafiken/highview/brands/lounge_deluxe_brand_logo_HD_neu.png" group-title="Music",Deluxe Lounge HD (720p) [Not 24/7] +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/manifest/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/91fcad1e-54b1-4702-9ec1-22a379525281/0.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] +https://dust-samsung-uk-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsDeutsch.fr" tvg-country="DE" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Deutsch (720p) +https://rakuten-euronews-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEurope.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV (1080p) +https://fashiontv-fashiontv-4-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsung-de.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsung-de.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/81NIxYJ.jpg" group-title="Movies",Rakuten TV Action Movies Germany (720p) [Offline] +https://rakuten-actionmovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/slOK2IH.jpg" group-title="Movies",Rakuten TV Comedy Movies Germany (720p) [Offline] +https://rakuten-comedymovies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/5bC53Xk.jpg" group-title="Movies",Rakuten TV Drama Germany (720p) [Offline] +https://rakuten-tvshows-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Family",Rakuten TV Family Germany (720p) [Offline] +https://rakuten-family-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightGermany.es" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/qgYRzl1.jpg" group-title="",Rakuten TV Spotlight Germany (720p) [Offline] +https://rakuten-spotlight-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) +https://sofy-ger-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (1080p) +https://stingray-karaoke-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Stingray Qello Concerts (1080p) +https://stingray-qelloconcerts-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperToonsTV.de" tvg-country="BG" tvg-language="Bulgarian" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Super Toons TV (720p) [Offline] +https://kedoo-supertoonstv-5-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeDeutschland.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Deutschland (720p) +https://tastemade-de-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.ca" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="Kids",Teletubbies (720p) [Offline] +https://dhx-teletubbies-3-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveGermany.us" tvg-country="DE" tvg-language="German" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Germany (720p) [Offline] +https://the-pet-collective-international-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] +https://travelxp-travelxp-2-de.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xite.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/VaDrfKr.png" group-title="",Xite (720p) +https://xite-samsung-de.amagi.tv/playlist.m3u8 diff --git a/channels/dk.m3u b/channels/dk.m3u new file mode 100644 index 000000000..c6dedc489 --- /dev/null +++ b/channels/dk.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KanalHovedstaden.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/hATNB38.jpg" group-title="",Kanal Hovedstaden (720p) +https://59b954022ec35.streamlock.net/liveTV2/smil:liveTVstream2.transcoder.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KKRtv.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/cpl90ZC.png" group-title="",KKRtv (720p) +http://stream.kkr.dk/live/kkr/playlist.m3u8 +#EXTINF:-1 tvg-id="KKRtv.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/cpl90ZC.png" group-title="",KKRtv (720p) +http://stream.kkr.dk/live/ngrp:kkr_adaptive/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2Fyn.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://vignette1.wikia.nocookie.net/logopedia/images/6/6e/TV_2_Fyn.png" group-title="",TV2 Fyn (270p) [Not 24/7] +https://cdnapisec.kaltura.com/p/1966291/sp/1966291/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/flavorId/0_8g29e3jz/name/a.mp4/index.m3u8 +#EXTINF:-1 tvg-id="TV2Bornholm.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/ylB5ea2.jpg" group-title="",TV2/Bornholm (1080p) [Not 24/7] +https://live.tv2bornholm.dk/stream/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2Lorry.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/IxJIiLJ.jpg" group-title="",TV2/Lorry (720p) +https://cdnapisec.kaltura.com/p/2045321/sp/204532100/playManifest/entryId/1_2kojfk4m/format/applehttp/protocol/https/uiConfId/32599481/a.m3u8 +#EXTINF:-1 tvg-id="TV2Ostjylland.dk" tvg-country="DK" tvg-language="Danish" tvg-logo="https://i.imgur.com/rC07Op2.jpg" group-title="",TV2/Østjylland (720p) +https://cdnapisec.kaltura.com/p/2102081/sp/2102081/playManifest/entryId/0_x4p3licd/flavorIds/0_pcvatr5k,0_aezqkdsi,0_dkeq429y,0_99pivdxs/deliveryProfileId/10552/protocol/https/format/applehttp/a.m3u8 diff --git a/channels/dk_samsung.m3u b/channels/dk_samsung.m3u new file mode 100644 index 000000000..a607cece4 --- /dev/null +++ b/channels/dk_samsung.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) +https://rakuten-africanews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) [Offline] +https://bloomberg-bloomberg-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) [Offline] +https://mmm-ducktv-4-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Denmark) (720p) [Offline] +https://rakuten-action-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Denmark) (720p) [Offline] +https://rakuten-comedy-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Denmark) (720p) [Offline] +https://rakuten-documentaries-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Denmark) (720p) [Offline] +https://rakuten-drama-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Denmark) (720p) [Offline] +https://rakuten-family-10-dk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightDenmark.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Denmark) (720p) [Offline] +https://rakuten-spotlight-10-dk.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/do.m3u~master b/channels/do.m3u~master new file mode 100644 index 000000000..6e5043e79 --- /dev/null +++ b/channels/do.m3u~master @@ -0,0 +1,141 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AkíTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",AkíTV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Akitv/Akitv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Ame47.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Amé 47 (720p) [Offline] +https://ss6.domint.net:3028/ame_str/amecanal47/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimeZoneTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AnimeZoneXTV/picture?width=300&height=300" group-title="Animation",Anime Zone TV (480p) [Not 24/7] +http://azxtv.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Boreal.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-_c3Wai2yuIY/Xl-e-HIk2VI/AAAAAAAAr5w/-vzqG9PJsg0DPrpR299YXH3m2u2BsQRvgCLcBGAsYHQ/s200/Boreal%2BTelevision.jpg" group-title="",Boreal (720p) [Offline] +https://5b38ce71f1f00.streamlock.net/8180/8180/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://serenotv.com/wp-content/uploads/2020/10/Canal-12-telecanal-republica-dominicana-en-vivo.jpg" group-title="",Canal 12 (720p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/telecanal12/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal56.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://emisoradominicana.net/television/wp-content/uploads/2015/06/tv-recuerdos-56.jpg" group-title="",Canal 56 (720p) [Geo-blocked] +https://cloudflare.streamgato.us:3549/live/canal56live.m3u8 +#EXTINF:-1 tvg-id="CanalAme47.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qExHiPc.png" group-title="",Canal Amé 47 (720p) [Offline] +http://ss6.domint.net:2028/ame_str/amecanal47/master.m3u8 +#EXTINF:-1 tvg-id="Carivision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hufTLyq.png" group-title="",Carivision (720p) [Not 24/7] +http://ss6.domint.net:2012/tes_str/teleelsalvador/playlist.m3u8 +#EXTINF:-1 tvg-id="ChinolaTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/axesNOe.png" group-title="Kids",Chinola TV (480p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/Chinolatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevisionCanal19.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/a/AGF-l79S5nkYhOxf6MqoTzBLUEnrDQRl6hGgy01i0g=s900-c-k-c0xffffffff-no-rj-mo" group-title="",Cinevision Canal 19 (720p) +https://live.teledom.info:3713/live/cinevisionlive.m3u8 +#EXTINF:-1 tvg-id="ColorVisionCanal9.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Color Vision Canal 9 [Timeout] +http://177.52.221.214:8000/play/a0c0/index.m3u8 +#EXTINF:-1 tvg-id="ComunionTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BNtmf7o.png" group-title="",Comunion TV (720p) [Not 24/7] +http://50.30.37.36:1935/live/smil:MyStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ComunionTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BNtmf7o.png" group-title="",Comunion TV (720p) [Not 24/7] +http://50.30.37.36:1935/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DANTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",DAN TV (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Punaltv/punaltvHD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Digital15.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/15_republica_dominicana-mediano.png" group-title="",Digital 15 (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://livestream.com/accounts/27456795/events/8268514/player +#EXTINF:-1 tvg-id="DigitalVision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Digital Vision (720p) [Not 24/7] +https://ss3.domint.net:3120/dv6_str/digitalvision/playlist.m3u8 +#EXTINF:-1 tvg-id="Ecovisión.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Ecovisión (480p) [Not 24/7] +https://vdo1.streamgato.us:3014/live/ecovisionlive.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://fuego40.com/wp-content/uploads/2018/11/cropped-FUEGO-LOGO-TIPO.png" group-title="",Fuego TV (720p) [Not 24/7] +https://video.misistemareseller.com/Fuegotv/Fuegotv/playlist.m3u8 +#EXTINF:-1 tvg-id="GDMTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i0.wp.com/www.gdm.do/wp-content/uploads/2020/01/Logo-GDM.png?w=696&ssl=1" group-title="",GDMTV (720p) [Not 24/7] +https://ss2.domint.net:3200/gdm_str/gdmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="GHTelevisionCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",GH Television Canal 10 (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3352/live/ghtelevisionhdlive.m3u8 +#EXTINF:-1 tvg-id="HermanasMirabalTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://emisoradominicana.net/television/wp-content/uploads/2015/06/hermanas-mirabal-tv.jpg" group-title="",Hermanas Mirabal TV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Hmtv/hmtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="HilandoFino.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://www.hilandofinotv.com/wp-content/uploads/2017/04/cropped-logo-tv-3.png" group-title="",Hilando Fino (1080p) [Not 24/7] +https://primary-out.iptv-global.net/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Hits360TV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Cx5V233.jpg" group-title="Music",Hits 360 TV (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/hits360tv/hits360HD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="HM.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://emisoradominicana.net/television/wp-content/uploads/2015/06/hermanas-mirabal-tv.jpg" group-title="",HM (720p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Hmtv/hmtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="LAMIATV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/77uVMGw.png" group-title="",LA MIA TV (720p) [Not 24/7] +https://ss8.domint.net:3108/mia_str/lamiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="LocomotionTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/auEJJvP.png" group-title="Animation",Locomotion TV (480p) [Not 24/7] +http://51.222.85.85:81/hls/loco/index.m3u8 +#EXTINF:-1 tvg-id="LocomotionTV.do" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/auEJJvP.png" group-title="Animation",Locomotion TV (480p) [Not 24/7] +http://locomotiontv.com/envivo/loco_ch/stream.m3u8 +#EXTINF:-1 tvg-id="LVM.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/814AENk%2BEaL.png" group-title="",LVM (720p) +https://uni01rtmp.tulix.tv/playout2multi9/lavozdemaria.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MegavisionCanal43.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2017/10/megavision.png" group-title="",Megavision Canal 43 (480p) [Not 24/7] +http://stream3.prostudionetwork.com:1943/megavision/MV/playlist.m3u8 +#EXTINF:-1 tvg-id="Microvision10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Sbv9mq5.png" group-title="",Microvision 10 (720p) [Not 24/7] +http://190.103.183.24:1935/live/MicroHD/playlist.m3u8 +#EXTINF:-1 tvg-id="MisionELTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-OiAyNltHK1c/XoR4TuBHe4I/AAAAAAAAszg/d3NIH9pHptsJ75DDyIGuGjq9cVO-of7kgCLcBGAsYHQ/s200/misioneltvlogo.png" group-title="",Mision ELTV (480p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8286/8286/playlist.m3u8 +#EXTINF:-1 tvg-id="ORBITTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://orbittv.net/images/orbit_logo4.png" group-title="",ORBIT TV (480p) [Geo-blocked] +https://ss3.domint.net:3134/otv_str/orbittv/playlist.m3u8 +#EXTINF:-1 tvg-id="PH.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-INH3BeYCloo/XWVcY2zOpUI/AAAAAAAAmxI/YRwbGEa3orQf7ltrcE2VTv20TPoqYSiygCLcBGAs/s320/PHTV.png" group-title="",PH (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="PHTVCanal34.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://dominicanchannels.com/wp-content/uploads/2014/10/PHTV-300x194.jpg" group-title="",PHTV Canal 34 (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/phtv/Phtv.myStream/chunks.m3u8 +#EXTINF:-1 tvg-id="PuntaCanaTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/735482998372630529/bEgiPOU1_400x400.jpg" group-title="",Punta Cana TV (720p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/puntacanatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio105full.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://ru0-cdn.onlineradiobox.com/img/l/2/94192.v2.png" group-title="Music",Radio105 full (1080p) [Not 24/7] +https://cloudflare.streamgato.us:3901/live/radio105live.m3u8 +#EXTINF:-1 tvg-id="ReadyTVCanal6.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://juanvmedrano.com/readytv/wp-content/uploads/2016/12/Ready-Logo-2016-oi2.png" group-title="",Ready TV Canal 6 (720p) [Not 24/7] +http://190.103.183.24:1935/ReadyTV/ReadyHD/playlist.m3u8 +#EXTINF:-1 tvg-id="RNN.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-dNgkjv_lHvA/WrukdUgXxuI/AAAAAAAAdEc/lr2WVL7zy20Nl9G1XIXzwu9BlBJj4buhwCLcBGAs/s200/RNN%2B-%2BRed%2BNacional%2BNoticias.png" group-title="",RNN (720p) [Not 24/7] +https://ss2.domint.net:3202/rnn_str/canal27/playlist.m3u8 +#EXTINF:-1 tvg-id="RomanaTVCanal42.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rv3jShy.jpg" group-title="",Romana TV Canal 42 (410p) [Geo-blocked] +http://tv.romanatv42.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="SanIsidroTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://sanisidrotv.com/wp-content/uploads/2020/10/logo-san-isidro-tv-png-1-300x221.png" group-title="",San Isidro TV (360p) [Not 24/7] +https://cdn4.hostlagarto.com:8081/static/sanisidrotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SiTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://sitv.com.do/imgs/sitv.png" group-title="",SiTV (720p) +http://190.122.104.221/Player/sitv.m3u8 +#EXTINF:-1 tvg-id="SuperCanal33.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Super Canal 33 (480p) +http://190.122.96.186:8888/http/005 +#EXTINF:-1 tvg-id="SuperTV55Santiago.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-WO2ZKryfWoU/Wr1pO5clk_I/AAAAAAAAdJk/QYRg8_bp4OgmIWI55Y4m6i5o8RiWfCHWwCLcBGAs/s200/SuperTV55.jpg" group-title="",Super TV 55 (Santiago) (720p) [Not 24/7] +http://ss8.domint.net:2128/stv_str/tv55/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV55Santiago.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/aJcpxHL.jpg" group-title="",Super TV 55 (Santiago) (720p) [Not 24/7] +https://ss8.domint.net:3128/stv_str/tv55/master.m3u8 +#EXTINF:-1 tvg-id="TDNMedios.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRhNXeL2j6nDfgnmZxLlnMTAMne2l7IZ7boVIGUPL8h0VaFCFV2" group-title="",TDN Medios (480p) [Not 24/7] +http://108.175.14.125:1935/tdn/tdn/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleBendicion.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7v46dB1.png" group-title="",TeleBendicion (720p) [Not 24/7] +http://ss8.domint.net:2124/tbt_str/telebendicion/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecanal28.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wYklHWy.png" group-title="",Telecanal 28 (360p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Telecanal-28/telecanal.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCibao.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0XRxX9IhpJdBoV0UZNy1vSZAI-YRkewjeA1Jbp7VUIUFgGRpM" group-title="",TeleCibao (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Telecibao/Telecibao/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleCibao.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0XRxX9IhpJdBoV0UZNy1vSZAI-YRkewjeA1Jbp7VUIUFgGRpM" group-title="",TeleCibao (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/Telecibao/Telecibao/playlist.m3u8 +#EXTINF:-1 tvg-id="TelefuturoCanal23.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0Bbj2lh.jpg" group-title="",Telefuturo Canal 23 (720p) [Not 24/7] +http://ss8.domint.net:2118/tf_str/futu/master.m3u8 +#EXTINF:-1 tvg-id="Teleimpacto.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Teleimpacto (720p) [Not 24/7] +http://190.122.96.188:8888/http/013 +#EXTINF:-1 tvg-id="Telemicro.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-4fTAMMvrofI/WtOf7D-zT4I/AAAAAAAAeRU/4AsiXPcfIqAQVfwxLg3sH_J4Sh_IcDO9wCLcBGAs/s200/Telemicro.png" group-title="",Telemicro (720p) [Not 24/7] +https://api.new.livestream.com/accounts/28126860/events/8825282/live.m3u8 +#EXTINF:-1 tvg-id="Telemilenio.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://santiagotv36.com/wp-content/uploads/2014/09/Logo-web1.png" group-title="",Telemilenio (720p) [Not 24/7] +http://cm.hostlagarto.com:8081/Telemilenio/Telemilenio.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Telenord8.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-H6WpFuwnBw8/Xb8tpN3x27I/AAAAAAAAowE/i8xCRlptBkEGIn9nxcfdajE2ieOQ07GGQCLcBGAsYHQ/s200/Telenord.jpg" group-title="",Telenord 8 (1080p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord8/telenord8/playlist.m3u8 +#EXTINF:-1 tvg-id="Telenord12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iE1xhA5.png" group-title="",Telenord 12 (720p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord12/telenord12/playlist.m3u8 +#EXTINF:-1 tvg-id="TelenordCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Telenord Canal 10 (1080p) [Not 24/7] +http://newyorkstream.ddns.net:1935/telenord10/telenord10/playlist.m3u8 +#EXTINF:-1 tvg-id="Telesistema11.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Telesistema 11 [Timeout] +http://177.52.221.214:8000/play/a0fk/index.m3u8 +#EXTINF:-1 tvg-id="TelesurCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://www.telesur.com.do/images/telesur_canal_10_logo2.png" group-title="",Telesur Canal (360p) [Not 24/7] +https://ss3.domint.net:3124/tls_str/telesur/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleunion.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-1P8ozDYekaw/XbBkLrf0Q4I/AAAAAAAAodQ/5qTLYC9km6YVHW8E1WoELvFneAUm1U7bwCPcBGAYYCw/s200/Teleunion%2B%25281%2529.png" group-title="",Teleunion (480p) [Not 24/7] +http://server3.prostudionetwork.com:1945/teleunion/TU/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleverCanal12.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://i.imgur.com/s2FJJDS.png" group-title="",Telever Canal 12 [Offline] +http://tengomusica.ddns.net:1935/telever/telever.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVÉxitos.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",TV Éxitos (720p) [Not 24/7] +https://vdo1.streamgato.us:3359/live/tvexitoslive.m3u8 +#EXTINF:-1 tvg-id="TVMontanaCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2Sgckg3.jpg" group-title="",TV Montaña Canal 10 (720p) [Not 24/7] +http://ss6.domint.net:2060/tvm_str/montanatv/master.m3u8 +#EXTINF:-1 tvg-id="TVPlata.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-33hgi3XzfLk/XaTZchnPFzI/AAAAAAAAoXM/_4Dev7Cb_II0S6JPEDyqOShzfmInR42vACLcBGAsYHQ/s200/tvplata.png" group-title="",TV Plata (1080p) [Not 24/7] +https://ss6.domint.net:3104/tvp_str/tvplata/playlist.m3u8 +#EXTINF:-1 tvg-id="TVS.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://dominicanchannels.com/wp-content/uploads/2016/06/tvs.jpg" group-title="",TVS (540p) [Geo-blocked] +http://cm.hostlagarto.com:8081/Tvstv/TvstvHD.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Vallevision.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="http://www.vallevision.com.do/images/vallevision.png" group-title="",Vallevision (720p) [Not 24/7] +http://190.103.183.24:1935/Vallevision/ValleHD/playlist.m3u8 +#EXTINF:-1 tvg-id="VallevisionCanal10.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://es.live-tv-channels.org/pt-data/uploads/logo/do-vallevision-canal-10-9607-300x225.jpg" group-title="",Vallevision Canal 10 (720p) [Not 24/7] +https://streaming.telecablecentral.com.do/Vallevision/ValleHD/playlist.m3u8 +#EXTINF:-1 tvg-id="VegaTeve.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-5JBZ6ZO0ybk/XaS-xAYTF7I/AAAAAAAAoXA/u1OK-aVn_sQNM86uwWFBqLuk5Q-Uzo7hgCLcBGAsYHQ/s200/vegateve.jpg" group-title="",Vega Teve (720p) [Not 24/7] +https://ss6.domint.net:3012/tes_str/teleelsalvador/playlist.m3u8 +#EXTINF:-1 tvg-id="VivaCanal5.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="" group-title="",Viva Canal 5 (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/dominicanrepublic/viva-canal-5 +#EXTINF:-1 tvg-id="Zol106.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://2.bp.blogspot.com/-OlrTJEjmmAI/Wr1YlnuxLOI/AAAAAAAAdIU/vTw_1pzwsTUbHwz_4zPiZwnbaeHDwiYAwCLcBGAs/s200/Zol%2B106.png" group-title="",Zol106 (720p) [Not 24/7] +https://ss3.domint.net:3108/zol_str/vzol/playlist.m3u8 +#EXTINF:-1 tvg-id="ZTV.do" tvg-country="DO" tvg-language="Spanish" tvg-logo="https://z101digital.com/wp-content/themes/z-101-digital/imgs/podcasts/audios-destacados.jpg" group-title="",ZTV (720p) [Not 24/7] +https://lb00zdigital.streamprolive.com/mnt/hls/live.m3u8 diff --git a/channels/dz.m3u b/channels/dz.m3u new file mode 100644 index 000000000..4655a6942 --- /dev/null +++ b/channels/dz.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlAnisTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/G60iJen.png" group-title="",Al Anis TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/El_Fhama_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV3.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J6VmBuw.png" group-title="",Algérie TV3 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/A3_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV4.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/n8httHt.png" group-title="",Algérie TV4 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_4/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV5.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/gXG15AX.png" group-title="",Algérie TV5 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_5/playlist.m3u8 +#EXTINF:-1 tvg-id="AlgerieTV6.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/HYqJY6y.png" group-title="",Algérie TV6 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV_6_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="BahiaTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oBRXuH2.png" group-title="",Bahia TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Bahia_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAlgerie.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/FPmDhNH.png" group-title="",Canal Algérie [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/CANAL_ALGERIE/playlist.m3u8 +#EXTINF:-1 tvg-id="CNA.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4s1NlRf.jpg" group-title="Religious",CNA (Chaîne Nord Africaine) (360p) [Not 24/7] +https://live.creacast.com/cna/smil:cna.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukNews.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="" group-title="News",Echorouk News (480p) [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/ECHOROUK_NEWS/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukNews.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="" group-title="News",Echorouk News (240p) [Not 24/7] +http://echorouk-live-tv.dzsecurity.net:8081/echo/EchoroukNews/playlist.m3u8 +#EXTINF:-1 tvg-id="EchoroukTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1315_1.png" group-title="",Echorouk TV (720p) [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Echorouk_TV_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="ElBilad.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Bp00gMu.png" group-title="",El Bilad [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_BILAD/playlist.m3u8 +#EXTINF:-1 tvg-id="ElDjazairN1.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/EoB4f6e.png" group-title="",El Djazair N1 [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/El_Djazair_N1/playlist.m3u8 +#EXTINF:-1 tvg-id="ElDjazairiaOne.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OhTioAg.png" group-title="",El Djazairia One [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_DJAZAIRIA_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="ElFadjrTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Br7bAVR.png" group-title="",El Fadjr TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_FADJR_TV_DZ/playlist.m3u8 +#EXTINF:-1 tvg-id="ElHayatTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fNLiJwK.png" group-title="",El Hayat TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_HAYAT_TV_ALGERIE/playlist.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ta9o5qJ.png" group-title="",Ennahar TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/ENNAHAR_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/cc/Ennahar_TV.svg/330px-Ennahar_TV.svg.png" group-title="",Ennahar TV (360p) [Not 24/7] +http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV_SD/chunks.m3u8 +#EXTINF:-1 tvg-id="EnnaharTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/cc/Ennahar_TV.svg/330px-Ennahar_TV.svg.png" group-title="",Ennahar TV (240p) [Not 24/7] +http://numidiatv-live.dzsecurity.net:8081/entv/EnnaharTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ENTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tFXvY71.png" group-title="",ENTV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/PROGRAMME_NATIONAL/playlist.m3u8 +#EXTINF:-1 tvg-id="LinaTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/WeGG33J.png" group-title="",Lina TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Lina_TV/playlist.m3u8 +#EXTINF:-1 tvg-id="SamiraTV.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5C80xDT.png" group-title="",Samira TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/SamiraTV/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Elmaarifa.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dYlAfFZ.png" group-title="",TV7 Elmaarifa [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV7_ELMAARIFA/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8Edhakira.dz" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/l7hw1W6.png" group-title="",TV8 Edhakira [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/TV8_EDHAKIRA/playlist.m3u8 diff --git a/channels/ec.m3u~master b/channels/ec.m3u~master new file mode 100644 index 000000000..c886aa1a9 --- /dev/null +++ b/channels/ec.m3u~master @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanelaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",CanelaTV (720p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/canelatv/canelatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Ecotel.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Ecotel (720p) [Not 24/7] +https://ecotel.streamseguro.com/hls/ecoteltv.m3u8 +#EXTINF:-1 tvg-id="EcuadorTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/357.png" group-title="",Ecuador TV (480p) +http://45.179.140.242:8000/play/a0jp +#EXTINF:-1 tvg-id="EducaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Education",EducaTV (1080p) [Not 24/7] +https://cloud7.streamingcnt.net/cnt/educa/playlist.m3u8 +#EXTINF:-1 tvg-id="ElSolRadioTelevision.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",El Sol Radio y Television (404p) [Not 24/7] +http://streaming5.globalhostla.com/rtplive/elsolrad/playlist.m3u8 +#EXTINF:-1 tvg-id="EliteRadioTelevisión.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Elite Radio Televisión (480p) [Not 24/7] +https://tv.portalexpress.es:3785/live/trincheratvlive.m3u8 +#EXTINF:-1 tvg-id="HechosEcuador.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com8YPXrcX.png" group-title="",Hechos Ecuador (480p) [Not 24/7] +http://37.187.7.106/hechostv/live.m3u8 +#EXTINF:-1 tvg-id="LoretoTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Loreto TV (720p) [Not 24/7] +https://srv1.zcast.com.br/diego3282/diego3282/playlist.m3u8 +#EXTINF:-1 tvg-id="MulticanalCatamayo.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Multicanal Catamayo (720p) [Not 24/7] +https://multicanal.streamseguro.com/hls/streaming.m3u8 +#EXTINF:-1 tvg-id="ParaísoDigital.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Paraíso Digital (360p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8106/index.m3u8 +#EXTINF:-1 tvg-id="PasiónTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Pasión TV (360p) [Not 24/7] +https://tv.portalexpress.es:3753/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="PrincesaEstéreoTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Princesa Estéreo TV (480p) [Not 24/7] +https://tv.portalexpress.es:3084/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="PuruwaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/puruwaTV/picture?width=320&height=320" group-title="",Puruwa TV (720p) +https://srv.panelcast.net/puruwalive/puruwalive/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioImpacto2.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Radio Impacto 2 (1080p) [Not 24/7] +https://sv72.ecuaradiotv.net/impacto2tv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTS.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",RTS (RadioTeleSistema) (480p) +http://45.179.140.242:8000/play/a0kw +#EXTINF:-1 tvg-id="RTU.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="News",RTU (630p) [Not 24/7] +https://streamingwowza.com:1936/rtutv/rtutv/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleamazonas.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com/of0fNUU.png" group-title="",Teleamazonas (720p) [Not 24/7] +https://api.new.livestream.com/accounts/1359588/events/4428723/live.m3u8 +#EXTINF:-1 tvg-id="Telerama.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Telerama (240p) [Not 24/7] +https://envivo.telerama.ec/stream.m3u8 +#EXTINF:-1 tvg-id="TVUniversal.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Religious",TV Universal (Ecuador) (720p) [Not 24/7] +https://59c3c7bda15f4.streamlock.net:444/universal/smil:universal.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UCSG.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://i.imgur.com/otOhIe8.png" group-title="",UCSG (1080p) [Not 24/7] +http://ecuastreamhd.com:1935/UCSGHQ/UCSGHQ/chunklist.m3u +#EXTINF:-1 tvg-id="Unisión.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Unisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://player.vimeo.com/video/645807901 +#EXTINF:-1 tvg-id="VisionRadioTelevision.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Local",Visión Radio Televisión (1080p) +https://stmv.panel.mivideo.pro/vision/vision/playlist.m3u8 +#EXTINF:-1 tvg-id="WuanPlus.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WuanPlus/picture?width=320&height=320" group-title="General",Wuan+ (720p) +https://streamingwowza.com:1936/wuanplus/wuanplus/playlist.m3u8 +#EXTINF:-1 tvg-id="ZaracayTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="Local",Zaracay TV (720p) [Not 24/7] +https://streamingwowza.com:1936/zaracaytv/smil:zaracaytv.smil/playlist.m3u8 diff --git a/channels/ee.m3u b/channels/ee.m3u new file mode 100644 index 000000000..493807b00 --- /dev/null +++ b/channels/ee.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ETV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://static.iptv-epg.com/ee/ETV.ee.png" group-title="",ETV (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etv.m3u8 +#EXTINF:-1 tvg-id="ETV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://static.iptv-epg.com/ee/ETV.ee.png" group-title="",ETV (720p) +https://sb.err.ee/live/etv.m3u8 +#EXTINF:-1 tvg-id="ETVPlus.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/ETV%2B_logo.png/225px-ETV%2B_logo.png" group-title="",ETV+ (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etvpluss.m3u8 +#EXTINF:-1 tvg-id="ETV2.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/ETV2_logo.svg/240px-ETV2_logo.svg.png" group-title="",ETV2 (720p) +https://errstreams4.cdn.eurovisioncdn.net/live/etv2.m3u8 +#EXTINF:-1 tvg-id="LifeTV.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://i.imgur.com/RBUmENQ.png" group-title="",Life TV (432p) [Not 24/7] +https://lifetv.bitflip.ee/live/stream1.m3u8 +#EXTINF:-1 tvg-id="Riigikogu.ee" tvg-country="EE" tvg-language="Estonian" tvg-logo="https://i.imgur.com/xuySaSN.png" group-title="",Riigikogu (720p) +https://h6le2.babahhcdn.com/bb1027/smil:riigikogu_ch1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TBNBaltia.ee" tvg-country="EE" tvg-language="Russian" tvg-logo="https://inet-static.mw.elion.ee/images/channels/300x300/261.png" group-title="Religious",TBN Baltia (1080p) +http://dc.tbnbaltia.eu:8088/dvr/rewind-21600.m3u8 diff --git a/channels/eg.m3u~master b/channels/eg.m3u~master new file mode 100644 index 000000000..fa94b97fe --- /dev/null +++ b/channels/eg.m3u~master @@ -0,0 +1,86 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AghapyTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="Religious",Aghapy TV (1080p) +https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlGhad.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://www.alghad.tv/wp-content/uploads/2018/10/AlGhad_2x-2-1.png" group-title="",Al Ghad (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alghadtv/live +#EXTINF:-1 tvg-id="AlHayatTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/9HocMyE.jpg" group-title="Religious",Al Hayat TV (720p) +http://media.islamexplained.com:1935/live/_definst_mp4:ahme.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Alrafidain.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Alrafidain (1024p) [Not 24/7] +http://cdg3.edge.tmed.pw/arrafidaintv/live_1024p/chunks.m3u8 +#EXTINF:-1 tvg-id="AppleAflam.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Aflam (576p) [Timeout] +http://213.162.202.5:4000/play/a09p/index.m3u8 +#EXTINF:-1 tvg-id="AppleAlwan.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Alwan (576p) [Timeout] +http://213.162.202.5:4000/play/a09d/index.m3u8 +#EXTINF:-1 tvg-id="AppleCinema.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Cinema (576p) [Timeout] +http://213.162.202.5:4000/play/a09b/index.m3u8 +#EXTINF:-1 tvg-id="AppleComedy.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Comedy (576p) [Timeout] +http://213.162.202.5:4000/play/a09a/index.m3u8 +#EXTINF:-1 tvg-id="AppleHekayat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Hekayat (576p) [Timeout] +http://213.162.202.5:4000/play/a0a1/index.m3u8 +#EXTINF:-1 tvg-id="AppleMoslsalat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Moslsalat (576p) [Timeout] +http://213.162.202.5:4000/play/a09l/index.m3u8 +#EXTINF:-1 tvg-id="AppleToday.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Apple Today (576p) [Timeout] +http://213.162.202.5:4000/play/a09k/index.m3u8 +#EXTINF:-1 tvg-id="ATVSat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/14EjTS3.png" group-title="",ATVSat (1080p) [Not 24/7] +https://stream.atvsat.com/atvsatlive/smil:atvsatlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CBC.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1198_1.png" group-title="",CBC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/cbcstream/live +#EXTINF:-1 tvg-id="CBCDrama.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1199_1.png" group-title="",CBC Drama (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCDramaStream/live +#EXTINF:-1 tvg-id="CBCSofra.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://media.elcinema.com/tvguide/1260_1.png" group-title="",CBC Sofra [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/CBCSofraStream/live +#EXTINF:-1 tvg-id="CopticTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.ctvchannel.tv/Images/Page/Logo.png" group-title="Religious",Coptic TV (720p) +https://58cc65c534c67.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CopticTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.ctvchannel.tv/Images/Page/Logo.png" group-title="Religious",Coptic TV (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/ctvchannel.tv/ctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElsharqTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://elsharq.tv/img/elsharq.png" group-title="General",Elsharq TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/elsharq_live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="eXtraNews.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://extranews.tv/assets/images/Extranews_logo_R.png" group-title="News",eXtra News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC65F33K2cXk9hGDbOQYhTOw/live +#EXTINF:-1 tvg-id="Huda.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7dnjDgw.jpg" group-title="",Huda (720p) [Timeout] +https://cdn.videoevent.live:19360/elfaro2/elfaro2.m3u8 +#EXTINF:-1 tvg-id="KoogiTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/I5A1mMZ.jpg" group-title="Kids",Koogi TV (1080p) +https://5d658d7e9f562.streamlock.net/koogi.tv/koogi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MekameleenTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/K0MQiNB.png" group-title="News",Mekameleen TV (1080p) +https://mn-nl.mncdn.com/mekameleen/smil:mekameleentv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MESat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://copticocc.org/mesat/wp-content/uploads/2018/07/logo-width12.png" group-title="Religious",MESat (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCg5uHOxrP5GkMWldOavPKGQ/live +#EXTINF:-1 tvg-id="NileTVCinema.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/cinema/cinema.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Movies",Nile TV Cinema (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCinema/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVComedy.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/comedy/comedy.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Comedy",Nile TV Comedy (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileComedy/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVCulture.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/culture/culture.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Culture",Nile TV Culture (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileCulture/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVFamily.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/family/family.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Family",Nile TV Family (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileFamily/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVLearning.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/learning/learning.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Education",Nile TV Learning (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/Learning1/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVLife.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/live/live.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Lifestyle",Nile TV Life (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileLife/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NileTVSport.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.niletc.tv/images/sport/sport.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Sports",Nile TV Sport (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://livestreaming5.onlinehorizons.net/hls-live/NTNNileSport/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="NobleTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Noble TV (1080p) +https://5d39f1ab8ba65.streamlock.net:1935/arabic-test/arabic-test/playlist.m3u8 +#EXTINF:-1 tvg-id="NogoumFMTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://storage.googleapis.com/nogoumfm-eu-web/1/2019/12/logo-nogoum-1.png" group-title="Music",Nogoum FM TV (506p) [Not 24/7] +https://stream-speed.extremesolution.mobi/nogoumfm/nogoumfmlive/playlist.m3u8 +#EXTINF:-1 tvg-id="OmgChannelTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://omgchannel.net/image/cache/catalog/logo-210x89.png" group-title="",Omg Channel TV (720p) [Not 24/7] +http://media6.smc-host.com:1935/omgchannel.net/omgtv/playlist.m3u8 +#EXTINF:-1 tvg-id="OmgSeriesTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://omgchannel.net/image/cache/catalog/logo-210x89.png" group-title="",Omg Series TV (720p) [Not 24/7] +http://media6.smc-host.com:1935/omgchannel.net/omgseries/playlist.m3u8 +#EXTINF:-1 tvg-id="QuranTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="" group-title="",Quran TV (576p) [Timeout] +http://213.162.202.5:4000/play/a09u/index.m3u8 +#EXTINF:-1 tvg-id="SadaElbalad.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://elbaladtv.net/wp-content/uploads/2020/02/Sada-Logo-190.webp" group-title="",Sada Elbalad (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/elbaladtv +#EXTINF:-1 tvg-id="TenTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://content.weyyak.com/8ff99681-4dd8-4e97-aa18-de4a866ef0fd/poster-image" group-title="",Ten TV (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_ten_tv/index.m3u8 +#EXTINF:-1 tvg-id="TheKingdomSat.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6xa14aQ.png" group-title="Religious",The Kingdom Sat (576p) +https://bcovlive-a.akamaihd.net/87f7c114719b4646b7c4263c26515cf3/eu-central-1/6008340466001/profile_0/chunklist.m3u8 +#EXTINF:-1 tvg-id="WatanTV.eg" tvg-country="EG" tvg-language="Arabic" tvg-logo="http://www.watanegypt.tv/design/home/img/f-logo.png" group-title="General",Watan TV (1080p) +https://cdg8.edge.technocdn.com/watantv/live/playlist.m3u8 diff --git a/channels/es.m3u~master b/channels/es.m3u~master new file mode 100644 index 000000000..8508430e2 --- /dev/null +++ b/channels/es.m3u~master @@ -0,0 +1,521 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586402/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586403/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586404/master.m3u8 +#EXTINF:-1 tvg-id="Plus24.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+24 (576p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlslive_1@586405/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlsdvrlive_1@39732/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125698/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125699/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125702/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@125703/master.m3u8 +#EXTINF:-1 tvg-id="Plustdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",+tdp [Geo-blocked] +https://hlsliveamdgl1-lh.akamaihd.net/i/hlslive_1@143656/master.m3u8 +#EXTINF:-1 tvg-id="324.es" tvg-country="ES;AD" tvg-language="Catalan" tvg-logo="https://i.imgur.com/CnIVW9o.jpg" group-title="News",3/24 (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:324_web/master.m3u8 +#EXTINF:-1 tvg-id="7LaRioja.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",7 La Rioja (1080p) [Not 24/7] +https://pc-la7delarioja-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="7Noticias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="News",7 Noticias (1080p) +https://amg01573-7nn-7nnono-ono-pcdj3.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="7TelevisionRegiondeMurcia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/M0JqHa9.png" group-title="Local",7 Televisión Región de Murcia (360p) [Not 24/7] +https://rtvmurcia_01-lh.akamaihd.net/i/rtvmurcia_1_0@507973/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (720p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835804/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaBahia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Bahía) (576p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835790/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Córdoba) (720p) [Not 24/7] +https://dcunilive265-lh.akamaihd.net/i/dclive_1@409360/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaCostaNoroeste.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Costa Noroeste) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835802/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaJaen.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Jaén) (404p) [Offline] +https://dcunilive266-lh.akamaihd.net/i/dclive_1@426886/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaJerez.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Jerez) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835794/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaMalaga.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Málaga) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835798/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaSevilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Sevilla) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835800/master.m3u8 +#EXTINF:-1 tvg-id="7TVAndaluciaSierra.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/7TelevisionAndalucia/picture?width=320&height=320" group-title="News",7 TV Andalucía (Sierra) (404p) [Offline] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835792/master.m3u8 +#EXTINF:-1 tvg-id="8TVCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",8 TV Cádiz (360p) [Not 24/7] +https://5940924978228.streamlock.net/8289/smil:8289.smil/master.m3u8 +#EXTINF:-1 tvg-id="9laLomaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fpUaXqe.png" group-title="",9 la Loma TV [Geo-blocked] +https://9laloma.tv/live.m3u8 +#EXTINF:-1 tvg-id="11TV.es" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/Uo3iDXN.jpg" group-title="Music",11 TV (576p) [Not 24/7] +http://51.210.199.43/hls/stream.m3u8 +#EXTINF:-1 tvg-id="25TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sADbx7S.png" group-title="",25 TV (480p) [Not 24/7] +https://cdnlive.shooowit.net/25televisiolive/smil:channel1.smil/master.m3u8 +#EXTINF:-1 tvg-id="28kanala.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/28kanala/picture?width=320&height=320" group-title="",28 kanala (720p) [Geo-blocked] +https://5940924978228.streamlock.net/8157/8157/master.m3u8 +#EXTINF:-1 tvg-id="101TeleAntequera.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ZhvkYeg.jpg" group-title="Music",101 Tele Antequera (1080p) +https://limited38.todostreaming.es/live/101tv-AntequeraHD.m3u8 +#EXTINF:-1 tvg-id="101TVMalaga.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CXHLhZD.png" group-title="News",101TV Malaga (1080p) [Not 24/7] +https://limited38.todostreaming.es/live/101tv-web101tv.m3u8 +#EXTINF:-1 tvg-id="324.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/CnIVW9o.jpg" group-title="News",324 (576p) +https://directes-tv-int.ccma.cat/int/ngrp:324_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="APunt.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://graph.facebook.com/apuntmedia/picture?width=200&height=200" group-title="General",À Punt (720p) +https://bcovlive-a.akamaihd.net/469e448f034b4d46afa4bcac53297d60/eu-central-1/6057955885001/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="APunt.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://graph.facebook.com/apuntmedia/picture?width=200&height=200" group-title="General",À Punt (720p) [Geo-blocked] +https://bcovlive-a.akamaihd.net/1e7e91116b104391a4f22e13a694d94f/eu-central-1/6057955885001/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="ActivaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/guHWZwP.jpg" group-title="Music",Activa TV (720p) [Not 24/7] +https://streamtv.mediasector.es/hls/activatv/.m3u8 +#EXTINF:-1 tvg-id="AlacantiTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Alacantí TV (576p) [Not 24/7] +https://streaming01.gestec-video.com/hls/artequatreAlacanti.m3u8 +#EXTINF:-1 tvg-id="AlcarriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/pzJAYan.png" group-title="",Alcarria TV (576p) +http://217.182.77.27/live/alcarriatv-livestream.m3u8 +#EXTINF:-1 tvg-id="AlcarriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/pzJAYan.png" group-title="",Alcarria TV (576p) [Not 24/7] +http://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AragonRadioZaragoza.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Aragón Radio (Zaragoza) [Not 24/7] +https://cartv.streaming.aranova.es/hls/live/aragonradio_aragonradio1.m3u8 +#EXTINF:-1 tvg-id="AragonTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d4/Logo_aragon_tv_2016.png" group-title="",Aragón TV (480p) +https://cartv.streaming.aranova.es/hls/live/aragontv_canal1.m3u8 +#EXTINF:-1 tvg-id="BailenTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Bailén TV (720p) [Not 24/7] +http://cpd.bailen.tv:8080/Playlist_CANAL_24H/playlist.m3u8 +#EXTINF:-1 tvg-id="BarcaTV.es" tvg-country="ES" tvg-language="Spanish;Catalan" tvg-logo="https://www.movistarplus.es/recorte/m-NEO/canal/BARNA.png" group-title="Sports",Barça TV [Timeout] +http://5.255.90.184:2002/play/a01z +#EXTINF:-1 tvg-id="BARVATV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://barvatvplus.com/wp-content/uploads/2020/12/PicsArt_11-24-11.04.44.png" group-title="",BARVA.TV (360p) [Timeout] +https://cp.sradiotv.com:1936/8076/8076/playlist.m3u8 +#EXTINF:-1 tvg-id="beteve.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",betevé (1080p) +https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 +#EXTINF:-1 tvg-id="BonDiaTV.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/pY8zxN3.png" group-title="",Bon Dia TV (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:bnd_web/playlist.m3u8 +#EXTINF:-1 tvg-id="CadenaElite.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Cadena Elite (720p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8004/index.m3u8 +#EXTINF:-1 tvg-id="CampinaSurTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/87KGlQz.png" group-title="",Campiña Sur TV [Not 24/7] +https://cdn01.yowi.tv/4131RI73I9/master.m3u8 +#EXTINF:-1 tvg-id="Canal4ManchaCentro.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 Mancha Centro (720p) [Not 24/7] +https://5924d3ad0efcf.streamlock.net/canal4/canal4live/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal4Tenerife.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 4 Tenerife (576p) [Not 24/7] +https://5940924978228.streamlock.net/Directo3/Directo3/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10Emporda.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 10 Empordà (360p) [Not 24/7] +http://ventdelnord.tv:8080/escala/directe.m3u8 +#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7QZIf0dta-XPXsp9Hv4dTw/live +#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (1080p) [Timeout] +https://rtvelivestreamv3.akamaized.net/24h_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Canal24horas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Logo_TVE-24h.svg/2084px-Logo_TVE-24h.svg.png" group-title="News",Canal 24 horas (720p) [Timeout] +https://rtvelivestreamv3.akamaized.net/24h_main_dvr.m3u8 +#EXTINF:-1 tvg-id="Canal25TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2BBGZ1H.png" group-title="Local",Canal 25 TV (Barbastro) (720p) [Not 24/7] +https://common01.todostreaming.es/live/tvbarbastro-livestream.m3u8 +#EXTINF:-1 tvg-id="Canal33Madrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1zJpDIX.png" group-title="",Canal 33 Madrid (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/canal33tvmadridgmailcom/livestream/master.m3u8 +#EXTINF:-1 tvg-id="CANAL45TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2016/02/Canal-45-Ja%C3%A9n.png" group-title="",CANAL 45 TV (360p) [Not 24/7] +https://cdn01.yowi.tv/503L6OKTE2/master.m3u8 +#EXTINF:-1 tvg-id="Canal56.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 56 (576p) [Not 24/7] +https://videos.canal56.com/directe/stream/index.m3u8 +#EXTINF:-1 tvg-id="Canal2000LaSolana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal 2000 La Solana (720p) +http://canal2000.berkano-systems.net/streaming/streams/canal2000.m3u8 +#EXTINF:-1 tvg-id="CanalDiocesano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i1.wp.com/directostv.teleame.com/wp-content/uploads/2016/01/Canal-Diocesano-en-directo-Online.png?fit=1920%2C1080" group-title="",Canal Diocesano (576p) [Not 24/7] +https://cdn01.yowi.tv/DDDDDDDDDD/master.m3u8 +#EXTINF:-1 tvg-id="CanalDonana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Doñana (720p) [Not 24/7] +https://secure5.todostreaming.es/live/division-alm.m3u8 +#EXTINF:-1 tvg-id="CanalExtremadura.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CanalExtremadura/picture?width=320&height=320" group-title="",Canal Extremadura (576p) [Not 24/7] +https://cdnlive.shooowit.net/canalextremaduralive/smil:channel1DVR.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalMalagaRTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BXmmroM.jpg" group-title="Local",Canal Málaga RTV (720p) [Not 24/7] +https://canalmalaga-tv-live.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/U842Z2c.png" group-title="",Canal Parlamento (360p) +http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 +#EXTINF:-1 tvg-id="CanalSanRoque.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QBzvCJc.png" group-title="",Canal San Roque (720p) [Not 24/7] +https://elastic10.todostreaming.es/live/sanroque-livestream.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (1080p) +http://217.125.136.93:8080/canalsierradecadiz1080.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (720p) +http://217.125.136.93:8080/canalsierradecadiz720.m3u8 +#EXTINF:-1 tvg-id="CanalSierradeCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Sierra de Cádiz (576p) +http://217.125.136.93:8080/canalsierradecadiz576.m3u8 +#EXTINF:-1 tvg-id="CanalSuper3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kbgoyvg.png" group-title="",Canal Super 3 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (720p) +https://cdnlive.codev8.net/rtvalive/smil:channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (720p) +https://cdnlive.shooowit.net/rtvalive/smil:channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalSurAndalucia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/sEN6VcY.png" group-title="",Canal Sur Andalucía (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqwjtgaJflHga2aPWphG5PQ/live +#EXTINF:-1 tvg-id="CanalTaronjaOsonaiMoianes.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Taronja Osona i Moianés (480p) [Not 24/7] +https://taronjavic.streaming-pro.com/hls/vic.m3u8 +#EXTINF:-1 tvg-id="CCMAExclusiu1.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://pbs.twimg.com/profile_images/899576410607693825/BLjUpQzO_400x400.jpg" group-title="",CCMA Exclusiu 1 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:oca1_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="CCMAExclusiu2.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://pbs.twimg.com/profile_images/899576410607693825/BLjUpQzO_400x400.jpg" group-title="",CCMA Exclusiu 2 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:oca2_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="Clan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/5d/Tve_clan.png" group-title="",Clan TVE (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/clan_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Clan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/5d/Tve_clan.png" group-title="",Clan TVE (1080p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/5466990.m3u8 +#EXTINF:-1 tvg-id="CMMTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdByrmGVNifOPE1W-LsD8oYtNGiRsIrrsMFw&usqp=CAU" group-title="",CMM TV (360p) [Not 24/7] +http://cdnapi.kaltura.com/p/2288691/sp/39582391/playManifest/entryId/0_xs45iy5i/format/applehttp/.m3u8 +#EXTINF:-1 tvg-id="Condavision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Btnzf1m.png" group-title="",Condavisión (720p) [Not 24/7] +http://145.239.141.154:1935/live/uSCQc5ky/playlist.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 1 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso1_1@71529/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 2 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso2_1@72033/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 3 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso3_1@72034/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados4.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 4 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso4_1@53937/master.m3u8 +#EXTINF:-1 tvg-id="CongresodelosDiputados5.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2LAzcH8.jpg" group-title="Legislative",Congreso de los Diputados 5 (360p) +https://congresodirecto-f.akamaihd.net/i/congreso5_1@51923/master.m3u8 +#EXTINF:-1 tvg-id="CosmoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://www.cosmopolitantv.es/img/logorrss.png" group-title="",Cosmo TV (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/str15live/str15live/playlist.m3u8 +#EXTINF:-1 tvg-id="CosmoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://www.cosmopolitantv.es/img/logorrss.png" group-title="",Cosmo TV (720p) [Timeout] +http://91.126.141.201:1935/live/cosmoHD/playlist.m3u8 +#EXTINF:-1 tvg-id="CostaNoroesteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Costa Noroeste TV (720p) [Not 24/7] +https://limited31.todostreaming.es/live/noroestetv-livestream.m3u8 +#EXTINF:-1 tvg-id="Cuatro4TVVallUxa.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcReUVLq8nJbqLUY6jVbJvX0VMaoj1HVYu-OKg&usqp=CAU" group-title="",Cuatro 4 TV Vall Uxa (1080p) [Not 24/7] +https://limited09.todostreaming.es/live/tarson-livestream.m3u8 +#EXTINF:-1 tvg-id="DejatedeHistoriasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Déjate de Historias TV (1080p) [Offline] +https://cdn01.yowi.tv/GGGGGGGGGG/master.m3u8 +#EXTINF:-1 tvg-id="DiezTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/5KXkBbs.jpg" group-title="",Diez TV (1080p) +https://streaming.cloud.innovasur.es/mmj/index.m3u8 +#EXTINF:-1 tvg-id="DistritoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/V04dJhe.jpg" group-title="Local",Distrito TV (1080p) [Not 24/7] +https://cdn01.yowi.tv/KQRSDA7GDB/master.m3u8 +#EXTINF:-1 tvg-id="DurangaldekoTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Durangaldeko TV (404p) [Not 24/7] +https://cdn01.yowi.tv/AAAAAAAAAA/master.m3u8 +#EXTINF:-1 tvg-id="EITB.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BU8zXRW.jpg" group-title="Local",EITB (480p) +https://etbvnogeo-lh.akamaihd.net/i/ETBEITBEUS_1@300391/master.m3u8 +#EXTINF:-1 tvg-id="EiTB2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mrGvcPV.png" group-title="",EiTB 2 (720p) +https://etbvnogeo-lh.akamaihd.net/i/ETBSTR2_1@595582/master.m3u8 +#EXTINF:-1 tvg-id="El33.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Canal33/picture?width=320&height=320" group-title="",El 33 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:c33_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="ElFuturoentumano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Religious",El Futuro en tu mano (720p) +https://limited24.todostreaming.es/live/renjillo-livestream.m3u8 +#EXTINF:-1 tvg-id="ElFuturoentumano.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Religious",El Futuro en tu mano (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZSw3jfFZo_8I9BHSMlT2Fg/live +#EXTINF:-1 tvg-id="ElToroTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",El Toro TV (720p) [Not 24/7] +https://live1-eltorotv.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Elche7TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zeC5t44.png" group-title="",Elche 7 TV (1080p) [Not 24/7] +https://streaming.elche7tv.es/hls/canal2.m3u8 +#EXTINF:-1 tvg-id="ESNETV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/VbxfLY5.png" group-title="Religious",ESNE TV (1080p) +https://zypelive-lh.akamaihd.net/i/default_1@710948/master.m3u8 +#EXTINF:-1 tvg-id="Esport3.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Esport3/picture?width=320&height=320" group-title="Sports",Esport3 (1080p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist.m3u8 +#EXTINF:-1 tvg-id="Esport3.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Esport3/picture?width=320&height=320" group-title="Sports",Esport3 (576p) [Not 24/7] +https://directes-tv-int.ccma.cat/int/ngrp:es3_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="EsteponaTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rMAB720.png" group-title="",Estepona Televisión (720p) [Offline] +https://5b38ce71f1f00.streamlock.net/8122/8122/playlist.m3u8 +#EXTINF:-1 tvg-id="ETB1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KeBXBJE.png" group-title="Local",ETB 1 (720p) +https://etbvnogeo-lh.akamaihd.net/i/ETBSTR1_1@595581/master.m3u8 +#EXTINF:-1 tvg-id="ETBEventos1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",ETB Eventos 1 (720p) +https://etbvnogeo-lh.akamaihd.net/i/OCA1HD_1@748519/master.m3u8 +#EXTINF:-1 tvg-id="EuropaPressTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/europapress.es/picture?width=320&height=320" group-title="",EuropaPress TV [Offline] +https://cdnlive.shooowit.net/europapresslive/ep.smil/master.m3u8 +#EXTINF:-1 tvg-id="FactoriadeFiccion.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://programacion-tv.elpais.com/imagenes/canales/506.jpg" group-title="",Factoría de Ficción (720p) [Timeout] +http://91.126.141.201:1935/live/smil:fdf.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FibracatTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Fibracat TV (1080p) [Not 24/7] +https://cdn02.fibracat.cat/fibracattv/index.m3u8 +#EXTINF:-1 tvg-id="Fibwi.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Fibwi (1080p) [Geo-blocked] +http://109.232.71.249/fibwiLIVE_movil/index.m3u8 +#EXTINF:-1 tvg-id="FionTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lOkkf0D.png" group-title="",Fion TV (720p) [Timeout] +http://stream.fion.es:1936/live/smil:fion.smil/master.m3u8 +#EXTINF:-1 tvg-id="GCMTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",GCM TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/tbmadrid/tbmadrid.m3u8 +#EXTINF:-1 tvg-id="GoienaEus.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Goiena Eus (720p) [Not 24/7] +https://zuzenean.goienamedia.eus:8443/goiena-telebista.m3u8 +#EXTINF:-1 tvg-id="GOL.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",GOL (720p) [Offline] +https://api.goltelevision.com/api/v1/stream/live/stream.m3u8 +#EXTINF:-1 tvg-id="GuadaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Guada TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/guadatv/guadatv.m3u8 +#EXTINF:-1 tvg-id="HamaikaTelebista.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HR3G3Ie.png" group-title="",Hamaika Telebista (1080p) [Not 24/7] +https://wowzaprod130-i.akamaihd.net/hls/live/570468/275f3ea5/playlist.m3u8 +#EXTINF:-1 tvg-id="HermesTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Hermes TV (720p) [Offline] +https://cdn01.yowi.tv/1H23S04G4M/master.m3u8 +#EXTINF:-1 tvg-id="HQMArabic.es" tvg-country="ES" tvg-language="Arabic" tvg-logo="https://hqm.es/wp-content/uploads/arabic-hqm-logo.png" group-title="Music",HQM Arabic (1080p) [Timeout] +https://livelist01.yowi.tv/lista/39596c72840d27b213caf4e58c39599a6f2ed203/master.m3u8 +#EXTINF:-1 tvg-id="HQMBaladas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/baladas-hqm-logo.png" group-title="Music",HQM Baladas (1080p) [Timeout] +https://livelist01.yowi.tv/lista/5d7d2c21e0ec7a8a99fd1fdbc52cbdc0782f77fc/master.m3u8 +#EXTINF:-1 tvg-id="HQMBlues.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/relax-hqm-logo.png" group-title="Music",HQM Blues (1080p) [Timeout] +https://livelist01.yowi.tv/lista/81c601f370e44dc566113fd752204be5f5f53b61/master.m3u8 +#EXTINF:-1 tvg-id="HQMChillOut.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/chillout-hqm-logo.png" group-title="Music",HQM Chill Out (1080p) [Timeout] +https://livelist01.yowi.tv/lista/183a351ddb0e57af6d735256226e6033c32219ab/master.m3u8 +#EXTINF:-1 tvg-id="HQMClassic.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/classic-hqm-logo.png" group-title="Music",HQM Classic (1080p) [Timeout] +https://livelist01.yowi.tv/lista/f04129475945936b248aa723de56519ea2ff10fc/master.m3u8 +#EXTINF:-1 tvg-id="HQMDance.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/dance-hqm-logo.png" group-title="Music",HQM Dance (1080p) [Timeout] +https://livelist01.yowi.tv/lista/57cf2f51b07ff21988a7a6f0270a66d41086d4a4/master.m3u8 +#EXTINF:-1 tvg-id="HQMFolk.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/folk-hqm-logo.png" group-title="Music",HQM Folk (1080p) [Timeout] +https://livelist01.yowi.tv/lista/9f5310c179e8e840188d183be235f755b18cf703/master.m3u8 +#EXTINF:-1 tvg-id="HQMGym.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/gym-hqm-logo.png" group-title="Music",HQM Gym (1080p) [Timeout] +https://livelist01.yowi.tv/lista/abb87f329d0ed03072b1930e9636a53e8076c8d5/master.m3u8 +#EXTINF:-1 tvg-id="HQMHipHop.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/hiphop-hqm-logo.png" group-title="Music",HQM Hip Hop (1080p) [Timeout] +https://livelist01.yowi.tv/lista/8327abc87895df4c76db1155435fdca6a3607bbd/master.m3u8 +#EXTINF:-1 tvg-id="HQMHits.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/hits-hqm-logo.png" group-title="Music",HQM Hits (1080p) [Timeout] +https://livelist01.yowi.tv/lista/5e2db2017a8fd03f73b40ede363d1a586db4e9a6/master.m3u8 +#EXTINF:-1 tvg-id="HQMJazz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/jazz-hqm-logo.png" group-title="Music",HQM Jazz (1080p) [Timeout] +https://livelist01.yowi.tv/lista/f204aa5b3f0691e69851b54b7746ef09ede26f6a/master.m3u8 +#EXTINF:-1 tvg-id="HQMKids.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/kids-hqm-logo.png" group-title="Music",HQM Kids (1080p) [Timeout] +https://livelist01.yowi.tv/lista/e4bc12dafe33c3ceb3e382e3acc0ec2c012cf7fd/master.m3u8 +#EXTINF:-1 tvg-id="HQMLatin.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/latin-hqm-logo.png" group-title="Music",HQM Latin (1080p) [Timeout] +https://livelist01.yowi.tv/lista/9a4da7871ec57b4b63ed49597a13d09869172be0/master.m3u8 +#EXTINF:-1 tvg-id="HQMPop.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/rock-hqm-logo.png" group-title="Music",HQM Pop (1080p) [Timeout] +https://livelist01.yowi.tv/lista/eb2fa68a058a701fa5bd2c80f6c8a6075896f71d/master.m3u8 +#EXTINF:-1 tvg-id="HQMRelax.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/relax-hqm-logo.png" group-title="Music",HQM Relax (1080p) [Timeout] +https://livelist01.yowi.tv/lista/dc1b71c6fda2e687050facaa7242062cbf5a7f2a/master.m3u8 +#EXTINF:-1 tvg-id="HQMRemember.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/remember-hqm-logo.png" group-title="Music",HQM Remember (1080p) [Timeout] +https://livelist01.yowi.tv/lista/57c98e2e295a0b69b52dc5f84edc4b1b68783ba2/master.m3u8 +#EXTINF:-1 tvg-id="HQMRock.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/rock-hqm-logo.png" group-title="Music",HQM Rock (1080p) [Timeout] +https://livelist01.yowi.tv/lista/0d6c7ccfac89946bfd41ae34c527e8d94734065c/master.m3u8 +#EXTINF:-1 tvg-id="HQMSpanish.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://hqm.es/wp-content/uploads/spanish-hqm-logo.png" group-title="Music",HQM Spanish (1080p) [Timeout] +https://livelist01.yowi.tv/lista/8635ae40f8d1a32eccd63d1f58b55662c9c98f9f/master.m3u8 +#EXTINF:-1 tvg-id="HuescaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hmYDqGV.png" group-title="",Huesca TV (240p) [Not 24/7] +https://streaming2.radiohuesca.com/hls-live/livepkgr/_definst_/huescatv/huescatv.m3u8 +#EXTINF:-1 tvg-id="IB3Global.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",IB3 Global (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCff_CBVJDTHP4wOHPjP5BMg/live +#EXTINF:-1 tvg-id="IbizaGlobalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Ibiza Global TV (720p) [Not 24/7] +https://ibgrtv.streaming-pro.com/hls/ibgrlive.m3u8 +#EXTINF:-1 tvg-id="ImasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/a9hgTmM.png" group-title="",Imás TV (1080p) [Not 24/7] +https://secure3.todostreaming.es/live/imastv-livestream.m3u8 +#EXTINF:-1 tvg-id="InteralmeriaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/u0lyhFX.png" group-title="",Interalmeria TV (1080p) +https://interalmeria.tv/directo/live.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (576p) [Not 24/7] +https://str.intercomarcal.com/hls/tvisd.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (288p) [Not 24/7] +http://78.41.83.88:8880/hls/tvixa.m3u8 +#EXTINF:-1 tvg-id="IntercomarcalTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Intercomarcal.Television/picture?width=320&height=320" group-title="",Intercomarcal TV (288p) [Not 24/7] +https://str.intercomarcal.com/hls/tvixa.m3u8 +#EXTINF:-1 tvg-id="Islatel.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Islatel (404p) [Not 24/7] +https://zone.controlstreams.com:5443/LiveApp/streams/islatel.m3u8 +#EXTINF:-1 tvg-id="JuntaCastillayLeon.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Junta Castilla y León (1080p) [Not 24/7] +https://16escalones-live2.flumotion.com/chunks.m3u8 +#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] +https://hlsliveamdgl7-lh.akamaihd.net/i/hlsdvrlive_1@583042/master.m3u8 +#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/la1_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="La1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 (720p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/1688877.m3u8 +#EXTINF:-1 tvg-id="La1Canarias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Canarias (576p) [Geo-blocked] +https://hlsliveamdgl7-lh.akamaihd.net/i/hlslive_1@134665/master.m3u8 +#EXTINF:-1 tvg-id="La1Canarias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Canarias (576p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/5190066.m3u8 +#EXTINF:-1 tvg-id="La1Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Catalunya (576p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/cat/la1_cat_main_dvr.m3u8 +#EXTINF:-1 tvg-id="La1Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 1 Catalunya (576p) [Geo-blocked] +https://ztnr.rtve.es/ztnr/3293681.m3u8 +#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (720p) +https://hlsliveamdgl0-lh.akamaihd.net/i/hlsdvrlive_1@60531/master.m3u8 +#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (1080p) [Timeout] +https://rtvelivestreamv3.akamaized.net/rtvesec/la2_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="La2.es" tvg-country="ES;AD" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1168862725369413632/pogqv5Ob_400x400.png" group-title="Documentary",La 2 (1080p) [Timeout] +https://ztnr.rtve.es/ztnr/1688885.m3u8 +#EXTINF:-1 tvg-id="La8Avila.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Avila (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8avilalive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Bierzo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Bierzo (720p) +https://cdnlive.shooowit.net/la8bierzolive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Burgos.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Burgos (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8burgoslive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Leon.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Leon (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8leonlive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Mediterraneo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Mediterráneo (1080p) [Not 24/7] +https://play.cdn.enetres.net/489DDF7FE98241D19D8970314BC9D3EF021/0226/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Palencia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Palencia (404p) [Not 24/7] +https://cdnlive.shooowit.net/la8palencialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Salamanca.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Salamanca (720p) +https://cdnlive.shooowit.net/la8salamancalive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Segovia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Segovia (720p) +https://cdnlive.shooowit.net/la8segovialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Soria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Soria (720p) [Not 24/7] +https://cdnlive.shooowit.net/la8sorialive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Valladolid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Valladolid (720p) +https://cdnlive.shooowit.net/la8valladolidlive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="La8Zamora.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La 8 Zamora (720p) +https://cdnlive.shooowit.net/la8zamoralive/smil:streamswitchingchannel.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LaUrbanTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",La Urban TV (1080p) [Not 24/7] +https://urbanrevolution.es:8443/live/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="LaVoz24h.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Vp26cr1.jpg" group-title="Entertainment",La Voz 24h (720p) +https://pull12.atresmedia.com/lavoz/master.m3u8 +#EXTINF:-1 tvg-id="LA7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rtvcyl/picture?width=320&height=320" group-title="",LA7 (720p) +https://cdnlive.shooowit.net/la7live/smil:channel1.smil/master.m3u8 +#EXTINF:-1 tvg-id="LancelotTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GIldurl.jpg" group-title="",Lancelot TV (576p) [Not 24/7] +https://cdn01.yowi.tv/I7V5TFE97R/master.m3u8 +#EXTINF:-1 tvg-id="LaOtra.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/laotra-mediano.png" group-title="",LaOtra (720p) +https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/laotra_1/index.m3u8 +#EXTINF:-1 tvg-id="LebrijaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oe66woA.png" group-title="",Lebrija TV (360p) [Not 24/7] +http://212.104.160.156:1935/live/lebrijatv2/playlist3.m3u8 +#EXTINF:-1 tvg-id="LevanteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/levantetv/picture?width=320&height=320" group-title="",Levante TV (320p) [Not 24/7] +https://play.cdn.enetres.net/C2F6CBB67E5B4D08A16CE5FE67ABCEC9023/029/playlist.m3u8 +#EXTINF:-1 tvg-id="LleidaTelevisio.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6qZNM6E.png" group-title="",Lleida Televisio (720p) [Not 24/7] +https://cdn01.yowi.tv/lleida/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://proyectoesperanza.es/wp-content/uploads/2017/02/logos-logo-big.png" group-title="",Logos TV (1080p) [Not 24/7] +http://streamer1.streamhost.org/salive/logosH/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://proyectoesperanza.es/wp-content/uploads/2017/02/logos-logo-big.png" group-title="",Logos TV (1080p) [Not 24/7] +https://streamer1.streamhost.org/salive/logosH/master.m3u8 +#EXTINF:-1 tvg-id="M95TelevisionMarbella.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/m95tvmarbella/picture?width=320&height=320" group-title="Local",M95 Televisión Marbella (576p) [Not 24/7] +https://limited2.todostreaming.es/live/m95-livestream.m3u8 +#EXTINF:-1 tvg-id="MaestratTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Maestrat TV (1080p) [Not 24/7] +https://stream.maestrat.tv/hls/stream.m3u8 +#EXTINF:-1 tvg-id="MarTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/W1yuLKu.jpg" group-title="",Mar TV (1080p) [Not 24/7] +http://iptv.btpba1.es.network.do:8080/martv-web/video.m3u8 +#EXTINF:-1 tvg-id="MirameTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Mírame TV (360p) [Not 24/7] +https://bit.controlstreams.com:5443/LiveApp/streams/mirametv.m3u8 +#EXTINF:-1 tvg-id="NavarraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Navarra TV (576p) [Not 24/7] +https://pc-sumandocomunicacion-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NegociosTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Negocios TV (720p) [Offline] +https://play.gooru.live/playnegocios/5646-1603313320000/master.m3u8 +#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (720p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/01.m3u8 +#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (576p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/03.m3u8 +#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (576p) +https://mdslivehlsb-i.akamaihd.net/hls/live/875601/niusdiario/03.m3u8 +#EXTINF:-1 tvg-id="NIUS.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NiusDiario/picture?width=320&height=320" group-title="",NIUS (720p) [Geo-blocked] +https://mdslivehlsb-i.akamaihd.net/hls/live/875601-b/niusdiario/01.m3u8 +#EXTINF:-1 tvg-id="NoroesteTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Noroeste TV (720p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8032/index.m3u8 +#EXTINF:-1 tvg-id="OizmendiTelebista.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/oizmenditelebista/picture?width=320&height=320" group-title="",Oizmendi Telebista (404p) [Not 24/7] +https://5940924978228.streamlock.net/8161/8161/master.m3u8 +#EXTINF:-1 tvg-id="OlympicsChannel.es" tvg-country="ES" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7olympics.png" group-title="",Olympics Channel (1080p) [Geo-blocked] +https://iptv-all.lanesh4d0w.repl.co/special/olympics +#EXTINF:-1 tvg-id="OndaCadiz.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Onda Cádiz (1080p) +https://adc-hls.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="OndaMadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ondamadridradio/picture?width=320&height=320" group-title="",Onda Madrid (360p) [Offline] +http://ondamadridhls-live.hls.adaptive.level3.net/telemadrid/ondamadrid1/index.m3u8 +#EXTINF:-1 tvg-id="OndaMadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/BA6HVt3.png" group-title="",Onda Madrid (360p) [Offline] +http://telemadridhls-live.hls.adaptive.level3.net/telemadrid/tvradio/index.m3u8 +#EXTINF:-1 tvg-id="OndaMezquita7TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",OndaMezquita 7 TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/mezquita/mezquita.m3u8 +#EXTINF:-1 tvg-id="Pequeradio.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://static.wixstatic.com/media/76b12f_c9171baf0d3145ea986102ebda0042e5~mv2.png" group-title="",Pequeradio (720p) [Not 24/7] +https://canadaremar2.todostreaming.es/live/peque-pequetv.m3u8 +#EXTINF:-1 tvg-id="PlatziTV.es" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/s-live-5b9076d18ef7b22560354649.png?184" group-title="Education",Platzi TV (1080p) +https://mdstrm.com/live-stream-playlist/5b9076d18ef7b22560354649.m3u8 +#EXTINF:-1 tvg-id="PopularTVCantabria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="",Popular TV Cantabria (576p) [Not 24/7] +https://limited12.todostreaming.es/live/ptvcantabria-livestream.m3u8 +#EXTINF:-1 tvg-id="PopularTVMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="Local",Popular TV Melilla (720p) [Not 24/7] +http://5940924978228.streamlock.net:1935/8009/8009/playlist.m3u8 +#EXTINF:-1 tvg-id="PopularTVMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwlTrtF.png" group-title="Local",Popular TV Melilla (720p) [Not 24/7] +https://5940924978228.streamlock.net/8009/8009/master.m3u8 +#EXTINF:-1 tvg-id="PopularTVMurcia.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Popular TV Murcia (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/populartvrm/populartvrm.m3u8 +#EXTINF:-1 tvg-id="Punt3VallUixo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Punt 3 Vall Uixó (1080p) +https://bit.controlstreams.com:5443/LiveApp/streams/punt3.m3u8 +#EXTINF:-1 tvg-id="RadioRutasdelPerú.es" tvg-country="ES;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1121106071333048/picture?width=320&height=320" group-title="Travel",Radio Rutas del Perú (360p) [Not 24/7] +https://tv.portalexpress.es:3731/stream/play.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMarbella.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RTVMarbella/picture?width=320&height=320" group-title="",Radio Televisión Marbella [Not 24/7] +https://cloudtv.provideo.es/live/marbellatv-livestream.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMelilla.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TelevisionMelilla/picture?width=320&height=320" group-title="",Radio Televisión Melilla (720p) [Not 24/7] +https://tvmelilla-hls-rm-lw.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTelevisionMogan.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotelevisionmogan/picture?width=320&height=320" group-title="",Radio Televisión Mogán (1080p) [Offline] +https://5b38ce71f1f00.streamlock.net/8162/8162/playlist.m3u8 +#EXTINF:-1 tvg-id="RealMadridTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Sports",Real Madrid TV (404p) [Geo-blocked] +https://rmtvlive-lh.akamaihd.net/i/rmtv_1@154306/master.m3u8 +#EXTINF:-1 tvg-id="RT.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RT (720p) [Offline] +https://rt-esp-gd.secure2.footprint.net/1102.m3u8 +#EXTINF:-1 tvg-id="RTVVida.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RTV Vida (1080p) +https://vidartv2.todostreaming.es/live/radiovida-emisiontvhd.m3u8 +#EXTINF:-1 tvg-id="RTVC.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Logo_del_Ente_P%C3%BAblico_Radio_Televisi%C3%B3n_Canaria.svg/1920px-Logo_del_Ente_P%C3%BAblico_Radio_Televisi%C3%B3n_Canaria.svg.png" group-title="General",RTVC (Radio Televisión Canaria) (720p) +https://rtvc-live1-rm.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVE.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",RTVE (576p) [Geo-blocked] +http://hlsliveamdgl8-lh.akamaihd.net/i/hlsdvrlive_1@583030/index_1500_av-b.m3u8 +#EXTINF:-1 tvg-id="SalTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7ewYJ4Y.jpg" group-title="",Sal Televisión (720p) [Not 24/7] +https://www.tdtchannels.com/stream/saltv.m3u8 +#EXTINF:-1 tvg-id="SevillaFCTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/yujGVbm.png" group-title="",Sevilla FC TV (360p) [Not 24/7] +https://open.http.mp.streamamg.com/p/3001314/sp/300131400/playManifest/entryId/0_ye0b8tc0/format/applehttp/protocol/https/uiConfId/30026292/a.m3u8 +#EXTINF:-1 tvg-id="SolidariaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2018/02/solidaria-tv.png" group-title="",Solidaria TV (720p) +https://canadaremar2.todostreaming.es/live/solidariatv-webhd.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/RPXusvS.png" group-title="",Sophia TV (720p) +https://www.onairport.live/sophiatv-es-live/livestream/master.m3u8 +#EXTINF:-1 tvg-id="TAC12.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TAC 12 (720p) [Not 24/7] +https://nodo01-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 +#EXTINF:-1 tvg-id="TAC12.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TAC 12 (720p) [Not 24/7] +https://nodo02-cloud01.streaming-pro.com/tac12tv/hls/tac12_2.m3u8 +#EXTINF:-1 tvg-id="Taroteame.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OgEeQzl.jpg" group-title="Religious",Tarotéame (576p) [Not 24/7] +http://93.93.67.117:1935/taroteame/tarot_web/playlist.m3u8 +#EXTINF:-1 tvg-id="Tarotvision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tarotvision (576p) [Not 24/7] +http://149.12.64.81:8080/hls/tarotvision.m3u8 +#EXTINF:-1 tvg-id="TEF.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TEF (432p) [Not 24/7] +https://cdn01.yowi.tv/36MLCJRAR2/master.m3u8 +#EXTINF:-1 tvg-id="TeleSafor.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Tele7Safor/picture?width=320&height=320" group-title="",Tele Safor (720p) [Not 24/7] +https://video.telesafor.com/hls/video.m3u8 +#EXTINF:-1 tvg-id="TeleSagunto.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tele Sagunto [Offline] +https://5940924978228.streamlock.net/Directo1_1/smil:Directo1_1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Tdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Tve_teledeporte.png/800px-Tve_teledeporte.png" group-title="",Teledeporte (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/rtvesec/tdp_bkp_dvr.m3u8 +#EXTINF:-1 tvg-id="Tdp.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Tve_teledeporte.png/800px-Tve_teledeporte.png" group-title="",Teledeporte (1080p) [Geo-blocked] +https://rtvelivestreamv3.akamaized.net/tdp/tdp_main_dvr.m3u8 +#EXTINF:-1 tvg-id="TeleGilena.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleGilena (360p) [Not 24/7] +https://5940924978228.streamlock.net/Directo1/Directo1/master.m3u8 +#EXTINF:-1 tvg-id="Telemadrid.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/telemadrid-mediano.png" group-title="",Telemadrid (720p) +https://telemadridhls2-live-hls.secure2.footprint.net/egress/chandler/telemadrid/telemadrid_1/index.m3u8 +#EXTINF:-1 tvg-id="TeleRibera.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/780539549239902208/g2MfVVuY_400x400.jpg" group-title="",TeleRibera (720p) [Not 24/7] +http://37.187.7.106/teleribera/live.m3u8 +#EXTINF:-1 tvg-id="TeleToledo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleToledo (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/teletoledo/teletoledo.m3u8 +#EXTINF:-1 tvg-id="TeleVigo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TeleVigo (1080p) [Not 24/7] +https://cloud.streamingconnect.tv:455/televigo/televigo.m3u8 +#EXTINF:-1 tvg-id="TelevisionAranda.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FwIIdKG.png" group-title="Local",Televisión Aranda (720p) [Offline] +https://cdn01.yowi.tv/BBBBBBBBBB/master.m3u8 +#EXTINF:-1 tvg-id="TENTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="http://tentv.es/wp-content/uploads/2016/05/ten.png" group-title="",TEN TV (720p) [Timeout] +http://91.126.141.201:1935/live/smil:ten.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="tevecat.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",teve.cat (1080p) +https://limited35.todostreaming.es/live/mitjans-livestream.m3u8 +#EXTINF:-1 tvg-id="TevequatreTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Tevequatre TV (576p) [Not 24/7] +https://cdn01.yowi.tv/5RO3JQE6LN/master.m3u8 +#EXTINF:-1 tvg-id="TrebujenaTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://bopiweb.com/imagenes/2580/tomo.1.M-3503739-3.jpg" group-title="Local",Trebujena TV (360p) [Not 24/7] +http://212.104.160.156:1935/live/trebujenatv2/master.m3u8 +#EXTINF:-1 tvg-id="TreceTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Trece.svg/320px-Trece.svg.png" group-title="",Trece TV (576p) +https://live-edge-bhs-1.cdn.enetres.net/091DB7AFBD77442B9BA2F141DCC182F5021/playlist.m3u8 +#EXTINF:-1 tvg-id="TuyaLaJandaTelevision.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/8lajanda/picture?width=320&height=320" group-title="",Tuya La Janda Televisión (1080p) +http://185.210.20.13:8080/0.m3u8 +#EXTINF:-1 tvg-id="TVArtequatre.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Artequatre (576p) [Not 24/7] +https://streaming01.gestec-video.com/hls/artequatreTVA.m3u8 +#EXTINF:-1 tvg-id="TVCanaria.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/television_canaria-mediano.png" group-title="",TV Canaria (576p) [Offline] +https://rtvc-live1.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVExtremena.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Extremeña (720p) [Not 24/7] +https://cdn01.yowi.tv/43J82FST7L/master.m3u8 +#EXTINF:-1 tvg-id="TVGirona.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/khRXhT1.png" group-title="Local",TV Girona (720p) +http://ventdelnord.tv:8080/girona/directe.m3u8 +#EXTINF:-1 tvg-id="TVVegaBaja.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",TV Vega Baja (576p) +http://185.29.68.24/tvb.m3u8 +#EXTINF:-1 tvg-id="TV3Catalunya.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QCKNWMJ.jpg" group-title="",TV3 Catalunya (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist.m3u8 +#EXTINF:-1 tvg-id="TV3CAT.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tv3/picture?width=320&height=320" group-title="",TV3CAT (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tv3_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="TV3CAT.es" tvg-country="ES" tvg-language="Catalan" tvg-logo="https://i.imgur.com/QCKNWMJ.jpg" group-title="",TV3CAT (1080p) +https://directes-tv-int.ccma.cat/int/ngrp:tvi_web/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="TV5Limares.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1192795318749945858/o-jIBTK-_400x400.jpg" group-title="",TV5 Limares (720p) [Not 24/7] +https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5Limares.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1192795318749945858/o-jIBTK-_400x400.jpg" group-title="",TV5 Limares (720p) [Not 24/7] +https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGAmerica.es" tvg-country="HISPAM;ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/1Z6svKc.jpg" group-title="General",TVG América (720p) +https://america-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGCultural.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Cultural (720p) +https://cultural-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEuropa.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/media/D2lBaVIX0AISqxR.jpg" group-title="",TVG Europa (720p) +https://europa-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEvento1.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Evento 1 (720p) [Not 24/7] +https://events1-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGEvento5.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CRTVG/picture?width=320&height=320" group-title="Local",TVG Evento 5 (720p) [Not 24/7] +https://amodino-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGInfantil.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Infantil (720p) [Not 24/7] +https://infantil-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGMomento.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/QkhxAuY.png" group-title="Local",TVG Momento (720p) [Not 24/7] +https://momentog-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVGMusigal.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/KgbNv4G.png" group-title="Local",TVG Musigal (360p) [Not 24/7] +https://musigal-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="tvG2.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/YAnSTc6.jpg" group-title="Local",tvG2 (720p) [Not 24/7] +https://events2-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="tvG2.es" tvg-country="ES" tvg-language="Galician" tvg-logo="https://i.imgur.com/YAnSTc6.jpg" group-title="Local",tvG2 (720p) [Not 24/7] +https://events3-crtvg.flumotion.com/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVM.Cordoba/picture?width=320&height=320" group-title="",TVM Córdoba (414p) [Not 24/7] +http://teledifusion.tv/cordoba/cordobalive/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMCordoba.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVM.Cordoba/picture?width=320&height=320" group-title="",TVM Córdoba (414p) [Not 24/7] +https://5924d3ad0efcf.streamlock.net/cordoba/cordobalive/playlist.m3u8 +#EXTINF:-1 tvg-id="UDLasPalmasTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",UD Las Palmas TV [Offline] +https://cdn041.fractalmedia.es/stream/live/udtv/index.m3u8 +#EXTINF:-1 tvg-id="UneVinalopo.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/UneVinalopo/picture?width=320&height=320" group-title="",Une Vinalopó (576p) [Not 24/7] +http://78.41.83.88:8880/hls/unesd.m3u8 +#EXTINF:-1 tvg-id="VentdelnordTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Ventdelnord TV (720p) +http://ventdelnord.tv:8080/hls/directe.m3u8 +#EXTINF:-1 tvg-id="Vision6TV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TB1wMQ7.jpg" group-title="",Visión 6 TV (720p) [Not 24/7] +https://secure3.todostreaming.es/live/visionseis-livestream.m3u8 +#EXTINF:-1 tvg-id="XtraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w1Lc150.jpg" group-title="Music",Xtra TV (720p) [Offline] +https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/index.m3u8 +#EXTINF:-1 tvg-id="XtraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w1Lc150.jpg" group-title="Music",Xtra TV (720p) [Offline] +https://mccdn-hls-a01-rbx.datah0stn3t.com/live/xtra/playlist.m3u8 +#EXTINF:-1 tvg-id="ZafraTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Zafra TV (720p) [Not 24/7] +https://cloud.streamingconnect.tv:455/radiotvzafra/radiotvzafra.m3u8 diff --git a/channels/es_rakuten.m3u b/channels/es_rakuten.m3u new file mode 100644 index 000000000..3b3202ce8 --- /dev/null +++ b/channels/es_rakuten.m3u @@ -0,0 +1,135 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) +https://brat-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubbingTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/600ad8f86e1eba00081da3ce/solidLogoPNG.png" group-title="",Clubbing TV (720p) +https://clubbingtv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNInternationalEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International Europe (720p) +https://cnn-cnninternational-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) +https://comedydynamics-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DestinationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1lBeOHC.png" group-title="",Destination TV (720p) [Offline] +https://makingitmedia-destinationtv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) +https://mmm-ducktv-4-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) [Not 24/7] +https://edgesports-row-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (1080p) +https://estv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/HBksX8u.png" group-title="Lifestyle",Fashion TV (1080p) +https://fashiontv-fashiontv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] +https://spi-filmstream-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FrootTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bRaihBR.png" group-title="Lifestyle",Froot TV (720p) [Offline] +https://outtv-froottv-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-10-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (1080p) [Offline] +https://futuretoday-happykids-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-eng-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-ger-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-spa-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) +https://introuble-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-eng-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-ger-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LoneStar.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzMxMzM1NzJf/LoneStar_250x250.png" group-title="Classic",Lone Star (1080p) +https://lonestar-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6ZnRHoE.jpg" group-title="Sports",LSN (720p) [Offline] +https://asermedia-lacrossesportsnetwork-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/KMGUuAX.png" group-title="Sports",MavTV Select (720p) +https://mavtv-mavtvglobal-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphereuk-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Spain (1080p) +https://appletree-mytimespain-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Classical (720p) [Offline] +https://qwestclassic-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Jazz & Beyond (720p) [Offline] +https://qwestjazz-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.fr" tvg-country="FR" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Mix (720p) [Offline] +https://qwestmix-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 1 (720p) [Offline] +https://rakuten-actionmovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 2 (720p) [Offline] +https://rakuten-actionmovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionMovies3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Action Movies 3 (720p) [Offline] +https://rakuten-actionmovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 1 (720p) [Offline] +https://rakuten-comedymovies-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 2 (720p) [Offline] +https://rakuten-comedymovies-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 3 (720p) [Offline] +https://rakuten-comedymovies-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 6 (720p) [Offline] +https://rakuten-comedymovies-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyMovies7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy Movies 7 (720p) [Offline] +https://rakuten-comedymovies-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 1 (720p) [Offline] +https://rakuten-spotlight-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 2 (720p) [Offline] +https://rakuten-spotlight-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 3 (720p) [Offline] +https://rakuten-spotlight-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 6 (720p) [Offline] +https://rakuten-spotlight-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlight7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight 7 (720p) [Offline] +https://rakuten-spotlight-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 1 (720p) +https://rakuten-topfree-1-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 2 (720p) +https://rakuten-topfree-2-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 3 (720p) +https://rakuten-topfree-3-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 6 (720p) +https://rakuten-topfree-6-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTopFree7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Top Free 7 (720p) +https://rakuten-topfree-7-eu.rakuten.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows1.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 1 (720p) [Offline] +https://rakuten-tvshows-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows2.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 2 (720p) [Offline] +https://rakuten-tvshows-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows3.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 3 (720p) [Offline] +https://rakuten-tvshows-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows6.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 6 (720p) [Offline] +https://rakuten-tvshows-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVShows7.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten TV Shows 7 (720p) [Offline] +https://rakuten-tvshows-7-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ReutersTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/VUlZlJe.jpg" group-title="",Reuters TV (720p) [Timeout] +https://reuters-reuters-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) [Offline] +https://revry-revry-3-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RevryNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AdIThwq.png" group-title="Lifestyle",Revry News (720p) [Offline] +https://revry-revrynews-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (720p) [Offline] +https://runtime-espana-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RushStreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8wXTK2H.jpg" group-title="",Rush Street (720p) [Offline] +https://rushstreet-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (1080p) [Offline] +https://sofytv-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-6-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Europe (720p) [Offline] +https://the-pet-collective-international-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Europe (720p) [Offline] +https://jukin-weatherspy-2-eu.rakuten.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (1080p) +https://lds-wonder-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) +https://younghollywood-rakuten.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (720p) [Offline] +https://rockentertainment-zoomoo-1-eu.rakuten.wurl.com/manifest/playlist.m3u8 diff --git a/channels/es_samsung.m3u b/channels/es_samsung.m3u new file mode 100644 index 000000000..b4b9d63b1 --- /dev/null +++ b/channels/es_samsung.m3u @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ActionMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Action Movies (720p) [Offline] +https://rakuten-actionmovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BigName.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hChduSn.png" group-title="",Big Name (720p) [Offline] +https://alchimie-big-names-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ButacaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/GWnwPHp.png" group-title="Entertainment",Butaca TV (720p) [Offline] +https://veranda-butacatv-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Caillou.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4zJqmw6.png" group-title="",Caillou (720p) [Offline] +https://dhx-caillou-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCinesverdi.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Cinesverdi (720p) [Offline] +https://contracorriente-canalcinesverdi-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalFeelgood.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Canal Feel good (720p) [Offline] +https://contracorriente-canalfeelgood-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Comedy Movies (720p) [Offline] +https://rakuten-comedymovies-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) +https://mmm-ducktv-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ElPatioSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",El Patio (Spain) (720p) [Offline] +https://alchimie-elpatio-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) +https://rakuten-euronews-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FamilyMovies.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Family Movies (720p) [Offline] +https://rakuten-family-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (Spain) (1080p) +https://fashiontv-fashiontv-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-7-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNatureEspanol.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature Español (1080p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00090-blueantmedia-lnrcastilian-samsungspain/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] +https://alchimie-mmatv-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] +https://alchimie-moods-4-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] +https://alchimie-mysurf-3-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetaKids.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CMRkI5N.jpg" group-title="Kids",Planeta Kids (720p) [Offline] +https://deaplaneta-planetakidz-1-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (720p) +https://runtimeespana-samsungspain.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) +https://sofytv-samsunges.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Spotlight.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Spotlight (720p) [Offline] +https://rakuten-spotlight-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveSpain.us" tvg-country="ES" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Spain (720p) [Offline] +https://the-pet-collective-international-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TraceSportStars.fr" tvg-country="ES" tvg-language="English;Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/co_trace-sports-stars_m.png" group-title="Sports",Trace Sport Stars (1080p) [Geo-blocked] +http://tracesportstars-samsunges.amagi.tv/hls/amagi_hls_data_samsunguk-tracesport-samsungspain/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TVShows.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oMXfdkV.png" group-title="",TV Shows (720p) [Offline] +https://rakuten-tvshows-2-es.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="UnearthSpain.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",Unearth (Spain) (720p) [Offline] +https://alchimie-unearth-3-es.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/et.m3u b/channels/et.m3u new file mode 100644 index 000000000..aae2b2fa6 --- /dev/null +++ b/channels/et.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AddisTV.et" tvg-country="ET" tvg-language="Amharic" tvg-logo="https://i.imgur.com/KAg6MOI.png" group-title="",Addis TV (720p) +https://rrsatrtmp.tulix.tv/addis1/addis1multi.smil/playlist.m3u8 diff --git a/channels/fi.m3u~master b/channels/fi.m3u~master new file mode 100644 index 000000000..fd42c0d74 --- /dev/null +++ b/channels/fi.m3u~master @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlfaTV.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="" group-title="General",AlfaTV (432p) [Not 24/7] +https://alfatv.digitacdn.net/live/_definst_/alfatv/amlst:alfatv.amlst/playlist.m3u8 +#EXTINF:-1 tvg-id="HimlenTV7.fi" tvg-country="FI" tvg-language="English;Swedish" tvg-logo="https://i.imgur.com/pW6pPFF.jpg" group-title="Religious",Himlen TV7 (720p) +https://vod.tv7.fi/tv7-se/smil:tv7-se.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TaevasTV7.fi" tvg-country="FI" tvg-language="Finnish;Estonian" tvg-logo="https://i.imgur.com/FaQQdzz.png" group-title="Religious",Taevas TV7 (720p) +https://vod.tv7.fi/tv7-ee/smil:tv7-ee.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TaivasTV7.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://i.imgur.com/pIYSEUN.jpg" group-title="Religious",Taivas TV7 (720p) +https://vod.tv7.fi/tv7-fi/smil:tv7-fi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="YLETV1.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Yle_TV1_logo.svg/382px-Yle_TV1_logo.svg.png" group-title="",YLE TV 1 (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yletv1hls_1@103188/master.m3u8 +#EXTINF:-1 tvg-id="YLETV1.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Yle_TV1_logo.svg/382px-Yle_TV1_logo.svg.png" group-title="",YLE TV 1 (576p) [Not 24/7] +https://yletvhdliveworld-lh.akamaihd.net/i/yletv1hdworld_1@187592/master.m3u8 +#EXTINF:-1 tvg-id="YLETV2.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Yle_TV2_logo.svg/399px-Yle_TV2_logo.svg.png" group-title="",YLE TV 2 (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yletv2hls_1@103189/master.m3u8 +#EXTINF:-1 tvg-id="YLETV2.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Yle_TV2_logo.svg/399px-Yle_TV2_logo.svg.png" group-title="",YLE TV 2 (720p) [Not 24/7] +https://yletvhdliveworld-lh.akamaihd.net/i/yletv2hdworld_1@187593/master.m3u8 +#EXTINF:-1 tvg-id="YLETVTeemaAndFem.fi" tvg-country="FI" tvg-language="Finnish" tvg-logo="" group-title="",YLE TV Teema & Fem (720p) [Geo-blocked] +https://yletv-lh.akamaihd.net/i/yleteemafemfi_1@490775/master.m3u8 +#EXTINF:-1 tvg-id="NebesaTV7.fi" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.nebesatv7.com/wp-content/themes/tv7-theme/assets/img/logo_nebesa_short.png" group-title="Religious",Небеса ТВ7 (720p) +https://vod.tv7.fi/tv7-ru/tv7-ru.smil/playlist.m3u8 diff --git a/channels/fi_samsung.m3u b/channels/fi_samsung.m3u new file mode 100644 index 000000000..536eb8444 --- /dev/null +++ b/channels/fi_samsung.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) +https://rakuten-africanews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) +https://mmm-ducktv-4-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Finland) (720p) [Offline] +https://rakuten-comedy-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Finland) (720p) [Offline] +https://rakuten-documentaries-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Finland) (720p) [Offline] +https://rakuten-drama-12-fi.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Finland) (720p) +https://rakuten-family-12-fi.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightFinland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Finland) (720p) [Offline] +https://rakuten-spotlight-12-fi.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/fj.m3u b/channels/fj.m3u new file mode 100644 index 000000000..0740c78f8 --- /dev/null +++ b/channels/fj.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="FijiTV.fj" tvg-country="FJ" tvg-language="English" tvg-logo="https://i.imgur.com/z4AuQtX.png" group-title="",Fiji TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19514369/events/6947821/live.m3u8 +#EXTINF:-1 tvg-id="FijiTV.fj" tvg-country="FJ" tvg-language="English" tvg-logo="https://i.imgur.com/z4AuQtX.png" group-title="",Fiji TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19514369/events/fijitvstream/live.m3u8 diff --git a/channels/fo.m3u b/channels/fo.m3u new file mode 100644 index 000000000..6bab26b22 --- /dev/null +++ b/channels/fo.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KVFSjonvarp.fo" tvg-country="FO" tvg-language="Faroese" tvg-logo="https://i.imgur.com/Nb93Skv.jpg" group-title="",KVF (720p) [Not 24/7] +https://w1.kringvarp.fo/uttanlands/smil:uttanlands.smil/playlist.m3u8 diff --git a/channels/fr.m3u~master b/channels/fr.m3u~master new file mode 100644 index 000000000..271533066 --- /dev/null +++ b/channels/fr.m3u~master @@ -0,0 +1,257 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7ALimoges.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/3AelRxI.png" group-title="Local",7ALimoges (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCdFv_ZWQ3Xk_NfRiaK-ryGg/live +#EXTINF:-1 tvg-id="AlpedHuezTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/0RQvs8y.png" group-title="",Alpe d’Huez TV (720p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:adhtv/chunklist.m3u8 +#EXTINF:-1 tvg-id="Alsace20.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/S8TuhyF.png" group-title="Local",Alsace 20 (720p) +http://live.alsace20.fr/live/alsace20/ngrp:alsace20_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenneReunion.fr" tvg-country="FR;MU" tvg-language="French" tvg-logo="https://i.imgur.com/EPIMMaB.png" group-title="Local",Antenne Réunion (720p) [Not 24/7] +https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01 +#EXTINF:-1 tvg-id="ARTEDeutsch.fr" tvg-country="DE" tvg-language="German" tvg-logo="https://www.arte.tv/sites/corporate/wp-content/themes/arte-entreprise/img/arte_logo.png" group-title="Entertainment",Arte Deutsch [Geo-blocked] +https://artesimulcast.akamaized.net/hls/live/2030993/artelive_de/index.m3u8 +#EXTINF:-1 tvg-id="ARTEFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.arte.tv/sites/corporate/wp-content/themes/arte-entreprise/img/arte_logo.png" group-title="Entertainment",ARTE Français (720p) [Geo-blocked] +https://artesimulcast.akamaized.net/hls/live/2031003/artelive_fr/index.m3u8 +#EXTINF:-1 tvg-id="BeurTV.fr" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KQcT9cz.png" group-title="",Beur TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/Beur_TV/htatv/Beur_TV_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="BFMBusiness.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mihujKt.jpg" group-title="Business",BFM Business (480p) [Offline] +https://bfmbusinesshds-lh.akamaihd.net/i/BFMBUSINESS_ESYTLS@664128/master.m3u8 +#EXTINF:-1 tvg-id="BFMGrandLille.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Local",BFM Grand Lille (720p) +https://live.creacast.com/grandlilletv/smil:grandlilletv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BFMGrandLittoral.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Local",BFM Grand Littoral (720p) +https://live.creacast.com/grandlittoral/smil:grandlittoral.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BFMLyon.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.ibb.co/8Y3FB3B/LYON.png" group-title="Local",BFM Lyon (480p) +https://bfmlyon-lh.akamaihd.net/i/BFMLYON_ESYTLS@797041/master.m3u8 +#EXTINF:-1 tvg-id="BFMParis.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4buTOS3.png" group-title="Local",BFM Paris (480p) +https://bfmparishdslive-lh.akamaihd.net/i/BFMPARIS_ESYTLS@429747/master.m3u8 +#EXTINF:-1 tvg-id="BFMTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/ClMYrD0.png" group-title="News",BFMTV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xgz4t1 +#EXTINF:-1 tvg-id="BIPTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/b/b1/Bip_TV_logo.png" group-title="",BIP TV (480p) [Not 24/7] +http://biptv.tv/live/biptvstream_orig/index.m3u8 +#EXTINF:-1 tvg-id="CentralTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://pbs.twimg.com/profile_images/875664704764608512/L-8xnjNf_400x400.jpg" group-title="",Central TV (720p) [Not 24/7] +http://cdn2.ujjina.com:1935/iptvcentraltv/livecentraltvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cherie25.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/pg8hnPT.png" group-title="Entertainment",Chérie 25 (360p) [Timeout] +https://s6.tntendirect.com/cherie25/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Cnews.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/vT6GMpCV/cnews.png" group-title="News",Cnews (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3b68jn +#EXTINF:-1 tvg-id="CSTAR.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kPvRgcY.png" group-title="Entertainment",CSTAR (720p) +http://flusonic-4.platinum-tv.com/D17/tracks-v1a1/mono.m3u8?token=test +#EXTINF:-1 tvg-id="DBM.fr" tvg-country="FR" tvg-language="French" tvg-logo="http://www.dbm-tv.fr/wp-content/uploads/2017/12/logo-dbm.png" group-title="",DBM (576p) +https://edge.vedge.infomaniak.com/livecast/ik:dbmtv/manifest.m3u8 +#EXTINF:-1 tvg-id="DBMTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",DBM TV (1080p) +http://dbmtv.vedge.infomaniak.com/livecast/dbmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ElHeddafTV.fr" tvg-country="DZ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qd1sCE8.png" group-title="",El Heddaf TV [Geo-blocked] +https://cdn02.hta.dz/abr_htatv/EL_HEDDAF_TV/htatv/EL_HEDDAF_TV_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="EMCITV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/avIsx8W.png" group-title="",EMCI TV (1080p) +https://emci-fr-hls.akamaized.net/hls/live/2007265/emcifrhls/index.m3u8 +#EXTINF:-1 tvg-id="EMCITV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/avIsx8W.png" group-title="",EMCI TV Montreal (1080p) +https://emci-td-hls.akamaized.net/hls/live/2007264/emcitdhls/index.m3u8 +#EXTINF:-1 tvg-id="EuronewsAlbania.fr" tvg-country="AL" tvg-language="Albanian" tvg-logo="https://i.imgur.com/hTBah1z.jpg" group-title="News",Euronews Albania (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChR-A__NS_C5kHDWj3PeAhw/live +#EXTINF:-1 tvg-id="EuronewsenEspanol.es" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews en Español (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/euronewses/live +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews English (720p) +https://d1mpprlbe8tn2j.cloudfront.net/v1/master/7b67fbda7ab859400a821e9aa0deda20ab7ca3d2/euronewsLive/87O7AhxRUdeeIVqf/ewnsabren_eng.m3u8 +#EXTINF:-1 tvg-id="EuronewsHungary.fr" tvg-country="HR" tvg-language="Hungarian" tvg-logo="https://i.postimg.cc/X7YYFZR2/euronews.png" group-title="News",Euronews Hungary (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/euronewsHungarian/live +#EXTINF:-1 tvg-id="Euronewsporusski.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews по-русски (720p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFzJjgVicCtFxJ5B0P_ei8A/live +#EXTINF:-1 tvg-id="Euronewsporusski.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="News",Euronews по-русски (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s89/index.m3u8 +#EXTINF:-1 tvg-id="FashionTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/HBksX8u.png" group-title="Lifestyle",Fashion TV (576p) [Not 24/7] +http://entertainment.ashttp9.visionip.tv/live/visiontvuk-entertainment-edgytv-hsslive-25f-16x9-SD/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="XXX",Fashion TV Midnite Secrets (1080p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_midnite_k1y_27049_midnite_secr_108_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMidniteSecrets.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="XXX",Fashion TV Midnite Secrets (1080p) +https://fash1043.cloudycdn.services/slive/ftv_midnite_secrets_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVNewYork.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV New York (PG13) (720p) [Not 24/7] +https://fash2043.cloudycdn.services/slive/ftv_ftv_gmt_-5_qko_43090_default_1225_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVParis.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.iptv-epg.com/fr/FashionTV.fr.png" group-title="Lifestyle",Fashion TV Paris (144p) +https://fash1043.cloudycdn.services/slive/ftv_paris_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVParisMumbai.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/yvNu4Rm.png" group-title="Lifestyle",Fashion TV Paris-Mumbai (1080p) [Not 24/7] +https://fash1043.cloudycdn.services/slive/ftv_ftv_asia_gmt_vmf_43163_default_1298_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVPG13.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/n6owIqv.png" group-title="Lifestyle",Fashion TV PG13 (240p) +https://fash1043.cloudycdn.services/slive/ftv_pg13_adaptive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVPG16.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV PG16 (144p) +http://fash1043.cloudycdn.services/slive/ftv_pg16_adaptive.smil/media.m3u8 +#EXTINF:-1 tvg-id="FashionTVRussia.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fcnRf1f.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Lifestyle",Fashion TV Russia (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s30/index.m3u8 +#EXTINF:-1 tvg-id="FashionTVSingapore.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Singapore (240p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_asia_ada_xiv_42149_default_137_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVTokyo.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Tokyo (PG13) (1080p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_sam_197_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVTokyo.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/auHH1Ig.png" group-title="Lifestyle",Fashion TV Tokyo (PG13) (240p) +https://fash1043.cloudycdn.services/slive/ftv_ftv_pg13_zw9_27065_ftv_pg13_196_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVUHD.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV UHD (2160p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_4k_hevc_73d_42080_default_466_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVCzechSlovak.fr" tvg-country="CZ" tvg-language="English" tvg-logo="http://www.tvfashion.eu/wp-content/themes/Divi-child/images/logo-tvfashion-piatok.png" group-title="Lifestyle",FashionTV Czech&Slovak (450p) +http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVMumbai.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/yvNu4Rm.png" group-title="Lifestyle",FashionTV Mumbai (1080p) +https://fash2043.cloudycdn.services/slive/ftv_ftv_pg13_gmt_ess_43126_default_1262_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="France2.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/SKxgxTLz/fr2.png" group-title="General",France 2 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france2/playlist.m3u8 +#EXTINF:-1 tvg-id="France3.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/JzmT94Gx/fr3.png" group-title="General",France 3 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france3/playlist.m3u8 +#EXTINF:-1 tvg-id="France4.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/4x58Zkcg/fr4.png" group-title="Kids",France 4 (720p) [Geo-blocked] +http://edge9.iptvnetwork.net/live/france4/playlist.m3u8 +#EXTINF:-1 tvg-id="France5.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/8zjFkLJz/fr5.png" group-title="General",France 5 (720p) [Not 24/7] +http://edge9.iptvnetwork.net/live/france5/playlist.m3u8 +#EXTINF:-1 tvg-id="France24Arabic.fr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Arabic (1080p) +https://static.france24.com/live/F24_AR_HI_HLS/live_tv.m3u8 +#EXTINF:-1 tvg-id="France24Arabic.fr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Arabic (576p) +https://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24English.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 English (1080p) +http://f24hls-i.akamaihd.net/hls/live/221147/F24_EN_HI_HLS/master.m3u8 +#EXTINF:-1 tvg-id="France24English.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 English (576p) +https://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24Espanol.fr" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 Español (1080p) +http://f24hls-i.akamaihd.net/hls/live/520845/F24_ES_HI_HLS/master.m3u8 +#EXTINF:-1 tvg-id="France24Espanol.fr" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/8a/France24.png" group-title="News",France 24 Español (576p) +https://static.france24.com/live/F24_ES_LO_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="France24Francais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Français (1080p) +https://static.france24.com/live/F24_FR_HI_HLS/live_tv.m3u8 +#EXTINF:-1 tvg-id="France24Francais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/61MSiq9.png" group-title="News",France 24 Français (1080p) +https://static.france24.com/live/F24_FR_HI_HLS/live_web.m3u8 +#EXTINF:-1 tvg-id="FranceInter.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/PYqQyRv.png" group-title="General",France Inter (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCJldRgT_D7Am-ErRHQZ90uw/live +#EXTINF:-1 tvg-id="Franceinfo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://proxymedia.woopic.com/api/v1/images/553%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" group-title="News",Franceinfo (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/franceinfo/live +#EXTINF:-1 tvg-id="Francophonie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/lvrvwtm.png" group-title="",Francophonie (360p) +http://mv2.tvfrancophonie.org/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="Francophonie24.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Francophonie24_275x275.png?raw=true" group-title="",Francophonie24 (480p) +https://5421175365ea3.streamlock.net/live/smil:switch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GenerationsTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/daUGyPl.jpg" group-title="",Generations TV (576p) +https://edge.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8 +#EXTINF:-1 tvg-id="Gulli.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mMWq0Kn.png" group-title="Kids",Gulli (540p) +https://d13anarbtxy8c5.cloudfront.net/6play/short/clr/gulli/sdindex.m3u8 +#EXTINF:-1 tvg-id="Gulli.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mMWq0Kn.png" group-title="Kids",Gulli (720p) [Not 24/7] +http://flusonic-4.platinum-tv.com/Gulli/mono.m3u8?token=test +#EXTINF:-1 tvg-id="GulliBilArabi.fr" tvg-country="FR" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/gg/gulli-bil-arabie.png" group-title="Kids",Gulli Bil Arabi (1080p) +https://shls-gulli-bil-arabi-prod-dub.shahid.net/out/v1/5454d215afba410c90b233f400730958/index.m3u8 +#EXTINF:-1 tvg-id="GulliGirl.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a000001659f94a58c4010a1851980b99d4d/160x160" group-title="Kids",Gulli Girl (576p) [Not 24/7] +http://188.40.68.167/russia/gulli_girl/playlist.m3u8 +#EXTINF:-1 tvg-id="HodHodTV.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HodHod TV (720p) +http://51.210.199.12/hls/stream.m3u8 +#EXTINF:-1 tvg-id="HolyGodTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/tzurFum.png" group-title="Religious",HolyGod TV (720p) [Offline] +https://dcunilive47-lh.akamaihd.net/i/dclive_1@739146/master.m3u8 +#EXTINF:-1 tvg-id="ILTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/gGhCEmJ.jpg" group-title="",ILTV (720p) [Not 24/7] +https://str81.creacast.com/iltv/high/playlist.m3u8 +#EXTINF:-1 tvg-id="KTO.fr" tvg-country="FR;UK;PT;ES;DK;NL;BE;CH" tvg-language="French" tvg-logo="https://i.imgur.com/LvbXFUy.jpg" group-title="",KTO (404p) [Not 24/7] +https://livehdkto-lh.akamaihd.net/i/LiveStream_1@178944/master.m3u8 +#EXTINF:-1 tvg-id="LEQUIPE.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/zKWbV0W.png" group-title="",L'EQUIPE (360p) [Timeout] +https://s6.tntendirect.com/lequipe21/live/playlist.m3u8 +#EXTINF:-1 tvg-id="LaChaineNormande.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/xDLwsbY.png" group-title="Family",La Chaîne normande (LCN) (576p) [Not 24/7] +http://live.lachainenormande.fr/live/lcn/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="LCI.fr" tvg-country="FR;BE;CH;LU" tvg-language="French" tvg-logo="https://i.imgur.com/6VzdKEa.png" group-title="News",LCI (720p) [Not 24/7] +https://lci-hls-live-ssl.tf1.fr/lci/1/hls/live_2328.m3u8 +#EXTINF:-1 tvg-id="LCP.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/rwBVxjj2/lcp.png" group-title="Legislative",LCP (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xji3qy +#EXTINF:-1 tvg-id="M6.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.epg.best/fr/M6.fr.png" group-title="Entertainment",M6 (1080p) +https://shls-m6-france-prod-dub.shahid.net/out/v1/c8a9f6e000cd4ebaa4d2fc7d18c15988/index.m3u8 +#EXTINF:-1 tvg-id="M6.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://static.epg.best/fr/M6.fr.png" group-title="Entertainment",M6 (720p) [Not 24/7] +http://flusonic-4.platinum-tv.com/M6/mono.m3u8?token=test +#EXTINF:-1 tvg-id="MCMTop.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5d260d3fab701.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Music",MCM Top (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s49/index.m3u8 +#EXTINF:-1 tvg-id="MDL.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/QjjVd1M.jpg" group-title="",MDL (720p) +http://tv.mondeduloisir.fr:1935/tixtv/smil:web.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Mezzo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/mezzo-logo.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148" group-title="Music",Mezzo (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s35/index.m3u8 +#EXTINF:-1 tvg-id="NancyWebTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/W43rv1R.jpg" group-title="Local",Nancy Web TV (394p) [Not 24/7] +https://edge.vedge.infomaniak.com/livecast/ik:nancy-webtv/manifest.m3u8 +#EXTINF:-1 tvg-id="NRJ12.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/FO8XMBS.png" group-title="Entertainment",NRJ12 (720p) [Timeout] +https://s6.tntendirect.com/nrj12/live/playlist.m3u8 +#EXTINF:-1 tvg-id="P2MTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/xc8EFmb.png" group-title="",P2M TV (360p) +https://panel.streamparis.fr:3743/stream/play.m3u8 +#EXTINF:-1 tvg-id="PersianaBillboard.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Billboard (720p) [Not 24/7] +http://51.210.199.10/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaCinema.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Cinema (720p) +http://51.210.199.15/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaClassic.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Classic (720p) [Not 24/7] +http://51.210.199.26/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaComedy.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Comedy (720p) +http://51.210.199.27/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaDocumentary.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Documentary",Persiana Documentary (720p) [Not 24/7] +http://51.210.199.23/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaFamily.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Family (720p) +http://51.210.199.19/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaFamilyPlus.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Family Plus (720p) [Not 24/7] +http://51.210.199.13/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaGameTech.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Persiana Game & Tech (720p) [Not 24/7] +http://51.210.199.25/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaIranian.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Iranian (720p) [Not 24/7] +http://51.210.199.22/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaJunior.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Animation",Persiana Junior (720p) +http://51.210.199.18/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaKorea.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Korea (720p) +http://51.210.199.14/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaMusic.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Music (720p) +http://51.210.199.24/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaNostalgia.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Nostalgia (720p) +http://51.210.199.20/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaPlus.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persiana Plus (1080p) +http://51.210.199.21/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaSonati.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Persiana Sonati (576p) [Not 24/7] +http://51.210.199.59/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaVarzesh.fr" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Sports",Persiana Varzesh (720p) [Not 24/7] +http://51.210.199.16/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PokerTV.fr" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/l5fZQ3V.png" group-title="Sports",Poker TV (720p) [Not 24/7] +http://51.210.199.17/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PublicSenat.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/rpqnBjbS/public-senat.png" group-title="Legislative",Public Sénat (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/xkxbzc +#EXTINF:-1 tvg-id="RMCDecouverte.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/2pZBr1Y.jpg" group-title="Documentary",RMC Découverte (720p) [Timeout] +https://s6.tntendirect.com/rmcdecouverte/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TebeSud.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/WCjP4Wk.jpg" group-title="Local",TébéSud (1080p) [Not 24/7] +https://edge-live-ger1.ovstream.com/hls/10/source.m3u8 +#EXTINF:-1 tvg-id="TF1.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/CJAbJfM.png" group-title="Entertainment",TF1 (720p) +http://flusonic-4.platinum-tv.com/TF1/index.m3u8?token=test +#EXTINF:-1 tvg-id="TF1.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/CJAbJfM.png" group-title="Entertainment",TF1 (720p) [Geo-blocked] +http://edge9.iptvnetwork.net/live/TF1/playlist.m3u8 +#EXTINF:-1 tvg-id="TF1SeriesFilms.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/36wPVaq.jpg" group-title="Series",TF1 Séries Films (360p) [Timeout] +https://s6.tntendirect.com/hd1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TFX.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/psdzDpy.jpg" group-title="Entertainment",TFX (720p) [Timeout] +https://s6.tntendirect.com/nt1/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Tiji.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/587a64ca96e87.png" group-title="Kids",Tiji (1080p) [Offline] +https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 +#EXTINF:-1 tvg-id="TijiRussia.fr" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/tiji.png" group-title="Kids",Tiji Russia (576p) [Not 24/7] +http://188.40.68.167/russia/tiji/playlist.m3u8 +#EXTINF:-1 tvg-id="TMACaraibes.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="",TMA Caraïbes (1080p) [Not 24/7] +http://hls.tmacaraibes.com/live/index.m3u8 +#EXTINF:-1 tvg-id="TMC.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/Neh3Yhm.jpg" group-title="",TMC (720p) [Timeout] +https://s6.tntendirect.com/tmc/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5MondeEurope.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mwHtXya.jpg" group-title="General",TV5 Monde Europe (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV5MondeEurope.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mwHtXya.jpg" group-title="General",TV5 Monde Europe (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV5MondeFranciaFR.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="General",TV5Monde Francia FR (1080p) +https://tv5infohls-i.akamaihd.net/hls/live/631613/tv5infohls/index.m3u8 +#EXTINF:-1 tvg-id="TV5MondeInfo.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/AJx5Fy2.png" group-title="General",TV5Monde Info (1080p) +http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877/v3plusinfo247hls/master.m3u8 +#EXTINF:-1 tvg-id="TV7Bordeaux.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/NMrYcP8v/tv7-bordeaux.png" group-title="Local",TV7 Bordeaux (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=vGrlJbbfsE4 +#EXTINF:-1 tvg-id="TV7Colmar.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/RuFISFk.png" group-title="Local",TV7 Colmar (576p) +https://tv7.hdr-tv.com/live/tv7/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TV8MontBlanc.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/BQf9sDGK/8.png" group-title="Local",TV8 Mont-Blanc (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x71o73v +#EXTINF:-1 tvg-id="TV78.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.tv78.com/wp-content/uploads/2019/04/cropped-tv78_logo.png" group-title="Local",TV78 (720p) +https://streamtv.cdn.dvmr.fr/TV78/ngrp:tv78.stream_all/master.m3u8 +#EXTINF:-1 tvg-id="TVR.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://www.tvr.bzh/favicon-1024.png" group-title="Local",TVR (Bretagne) (720p) +https://streamtv.cdn.dvmr.fr/TVR/ngrp:tvr.stream_all/master.m3u8 +#EXTINF:-1 tvg-id="TZiK.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6Iw1YRL.png" group-title="Music",TZiK [Not 24/7] +https://54627d4fc5996.streamlock.net/tzik/tzik/chunklist.m3u8 +#EXTINF:-1 tvg-id="viaMATELE.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kmna9PU.png" group-title="",viàMATÉLÉ (540p) [Not 24/7] +https://streamer01.myvideoplace.tv/streamer02/hls/MATL_VLOC_PAD_100919_medium/index.m3u8 +#EXTINF:-1 tvg-id="viaMoselleTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/YXUMEbi.png" group-title="Local",viàMoselleTV (720p) [Not 24/7] +https://live.creacast.com/mirabelletv/smil:mirabelletv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="viaOccitanie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://viaoccitanie.tv/fileadmin/via_main/img/logos/viaOccitanie-header.png" group-title="Local",viàOccitanie (540p) [Not 24/7] +https://streamer01.myvideoplace.tv/streamer02/hls/MDS_VIA_PAD_301117.m3u8 +#EXTINF:-1 tvg-id="viaVosges.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/803evgT.png" group-title="Local",viàVosges (576p) [Not 24/7] +https://vosgestv.hdr-tv.com/live/vosgestv/livestream/master.m3u8 +#EXTINF:-1 tvg-id="W9.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/7FFFvCN.jpg" group-title="Entertainment",W9 (720p) [Not 24/7] +http://flusonic-2.platinum-tv.com/W9/mono.m3u8?token=test +#EXTINF:-1 tvg-id="WéoHautsdeFrance.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/FHjvmKYD/weo.png" group-title="Local",Wéo (Hauts-de-France) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x62islg +#EXTINF:-1 tvg-id="WéoPicardie.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/FHjvmKYD/weo.png" group-title="Local",Wéo (Picardie) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x63085w diff --git a/channels/fr_samsung.m3u b/channels/fr_samsung.m3u new file mode 100644 index 000000000..7671c349f --- /dev/null +++ b/channels/fr_samsung.m3u @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AmuseAnimation.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/H7GtB0T.jpg" group-title="",Amuse Animation (720p) [Offline] +https://amuse-amuseanimation-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Atelierdeschefs.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/laArg26.png" group-title="",Atelier des chefs (720p) [Offline] +https://alchimie-atelier-des-chefs-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Caillou.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/4zJqmw6.png" group-title="",Caillou (720p) [Offline] +https://dhx-caillou-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicalHarmony.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/JQaZblm.jpg" group-title="",Classical Harmony (720p) [Offline] +https://alchimie-classical-harmony-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) +https://rakuten-euronews-2-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] +https://alchimie-euronews-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEurope.fr" tvg-country="FR" tvg-language="English" tvg-logo="https://i.imgur.com/E38ZhCz.jpg" group-title="Lifestyle",Fashion TV L'Original (1080p) +https://fashiontv-fashiontv-loriginal-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-8-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/DFjN26b.jpg" group-title="",Humanity (720p) [Offline] +https://alchimie-humanity-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LuxeTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/8tWhfap.png" group-title="",Luxe TV (720p) [Offline] +https://alchimie-luxe-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] +https://alchimie-moods-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MotorSportTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/cVCb02R.jpg" group-title="",MotorSport.TV (720p) [Offline] +https://alchimie-motor-sport-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoviesCentral.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/dwOoEmE.jpg" group-title="Movies",Movies Central (720p) [Offline] +https://alchimie-movies-central-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] +https://alchimie-mysurf-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesFrance.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (France) (720p) [Offline] +https://rakuten-documentaries-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies France (720p) [Offline] +https://rakuten-actionmovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies France (720p) [Offline] +https://rakuten-comedymovies-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama France (720p) [Offline] +https://rakuten-tvshows-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies France (720p) [Offline] +https://rakuten-family-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightFrance.es" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Rakuten TV Spotlight France (720p) [Offline] +https://rakuten-spotlight-7-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) +https://sofytv-samsungfr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportenFrance.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6L6hQnn.png" group-title="",Sport en France (720p) [Offline] +https://alchimie-sport-en-france-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StormcastNovelasTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/WpQ3N82.png" group-title="",Stormcast Novelas TV (720p) [Offline] +https://stormcast-telenovelatv-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/kUmPbel.jpg" group-title="Kids",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-3-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Unearth.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/PUacVoP.jpg" group-title="",Unearth (720p) [Offline] +https://alchimie-unearth-1-fr.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WildsideTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.postimg.cc/mZJXXMkp/wildside.png" group-title="Movies",Wildside TV (720p) +https://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8 diff --git a/channels/ge.m3u b/channels/ge.m3u new file mode 100644 index 000000000..fca8f0391 --- /dev/null +++ b/channels/ge.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1TV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/mX080in.png" group-title="",1TV (240p) [Geo-blocked] +https://tv.cdn.xsg.ge/gpb-1tv/index.m3u8 +#EXTINF:-1 tvg-id="2TV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/VBmQCH7.png" group-title="",2TV (720p) [Not 24/7] +https://tv.cdn.xsg.ge/gpb-2tv/index.m3u8 +#EXTINF:-1 tvg-id="EnkiBenki.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/RJAT25i.jpg" group-title="Kids",Enki Benki (360p) +http://94.43.239.178:8080/CHANNEL678/BITRATE0/playlist.m3u8 +#EXTINF:-1 tvg-id="Formula.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/fsqBn8G.png" group-title="",Formula (1080p) +https://c4635.cdn.xsg.ge/c4635/TVFormula/index.m3u8 +#EXTINF:-1 tvg-id="MtavariArkhi.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/XVpqukA.png" group-title="",Mtavari Arkhi (480p) +https://bozztv.com/36bay2/mtavariarxi/playlist.m3u8 +#EXTINF:-1 tvg-id="MusicBoxGeorgia.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/ku9kLp8.png" group-title="Music",MusicBox Georgia (180p) +http://94.43.239.178:8080/CHANNEL470/BITRATE0/playlist.m3u8 +#EXTINF:-1 tvg-id="PalitraNews.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/9QVZGow.png" group-title="News",Palitra News (480p) [Not 24/7] +https://live.palitranews.ge/hls/palitratv/index.m3u8 +#EXTINF:-1 tvg-id="PalitraNews.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/AqSRphj.png" group-title="News",Palitra News (480p) [Not 24/7] +https://livestream.palitra.ge/hls/palitratv/index.m3u8 +#EXTINF:-1 tvg-id="RioniTV.ge" tvg-country="GE" tvg-language="Georgian" tvg-logo="https://i.imgur.com/9ecTETD.png" group-title="",Rioni TV (720p) [Not 24/7] +http://video.rionitv.com:9090/hls/live/rioni.m3u8 diff --git a/channels/gh.m3u b/channels/gh.m3u new file mode 100644 index 000000000..74b248826 --- /dev/null +++ b/channels/gh.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ResurrectionTV.gh" tvg-country="GH" tvg-language="Akan" tvg-logo="https://i.imgur.com/d4UOolK.jpg" group-title="",Resurrection TV (384p) +http://rtmp.ottdemo.rrsat.com/rrsatrtv1/rrsatrtvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVAfrica.gh" tvg-country="GH" tvg-language="Akan" tvg-logo="https://i.imgur.com/rTsl8XB.jpg" group-title="",TV Africa (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 diff --git a/channels/gl.m3u b/channels/gl.m3u new file mode 100644 index 000000000..f6572eb2a --- /dev/null +++ b/channels/gl.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KNR1.gl" tvg-country="GL" tvg-language="Greenlandic;Danish" tvg-logo="https://i.imgur.com/uQ50JUX.jpg" group-title="",KNR1 (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCIjOAtv53RHerlfl98fZmcQ/live +#EXTINF:-1 tvg-id="KNR2.gl" tvg-country="GL" tvg-language="Greenlandic;Danish" tvg-logo="https://i.imgur.com/uQ50JUX.jpg" group-title="",KNR2 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6D225YIMCwVBiBktEeV-vQ/live diff --git a/channels/gm.m3u b/channels/gm.m3u new file mode 100644 index 000000000..7f8177c57 --- /dev/null +++ b/channels/gm.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="QTV.gm" tvg-country="GM" tvg-language="English;Mandinka;Wolof" tvg-logo="https://i.imgur.com/K5tzOq2.png" group-title="",QTV Gambia (720p) [Not 24/7] +https://player.qtv.gm/hls/live.stream.m3u8 diff --git a/channels/gn.m3u b/channels/gn.m3u new file mode 100644 index 000000000..881d09739 --- /dev/null +++ b/channels/gn.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="RTG.gn" tvg-country="GN" tvg-language="French" tvg-logo="https://i.imgur.com/moTF5EE.jpg" group-title="",RTG (240p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@690091/master.m3u8 diff --git a/channels/gp.m3u b/channels/gp.m3u new file mode 100644 index 000000000..11d1cedde --- /dev/null +++ b/channels/gp.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TMA.gp" tvg-country="GP" tvg-language="French" tvg-logo="https://i.imgur.com/fQUzBsz.png" group-title="Music",TMA (1080p) [Timeout] +http://hls.tmacaraibes.com/live/index.m3u8 diff --git a/channels/gq.m3u b/channels/gq.m3u new file mode 100644 index 000000000..490e43273 --- /dev/null +++ b/channels/gq.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TVGE.gq" tvg-country="GQ" tvg-language="Spanish" tvg-logo="http://www.tvgelive.gq/images/logo-dark.png" group-title="",TVGE (480p) +http://rtmp.ott.mx1.com/tvge1/tvge1multi.smil/playlist.m3u8 diff --git a/channels/gr.m3u~master b/channels/gr.m3u~master new file mode 100644 index 000000000..1df98afc9 --- /dev/null +++ b/channels/gr.m3u~master @@ -0,0 +1,229 @@ +#EXTM3U +#EXTINF:-1 tvg-id="4E.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014332&t=1544180299920" group-title="",4E (720p) +http://eu2.tv4e.gr:554/live/smil:myStream.sdp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="34100TV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Fo1I0dt.jpg" group-title="",34100 TV (720p) [Geo-blocked] +https://s1.cystream.net/live/34100/playlist.m3u8 +#EXTINF:-1 tvg-id="AcheloosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://goo.gl/mNqHoo" group-title="",Acheloos TV (576p) [Not 24/7] +http://srv.viiideo.gr:1935/axeloos/live/playlist.m3u8 +#EXTINF:-1 tvg-id="AkritasTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/aYgRkkB.jpg" group-title="",Akritas TV (1080p) [Not 24/7] +http://akritastv1.flashmediacast.com:1935/akritastv1/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Alert.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alert (576p) [Not 24/7] +https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaDramas.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/39l3uRU.jpg" group-title="Movies",Alfa Dramas (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.alf/playlist.m3u8 +#EXTINF:-1 tvg-id="AliteiaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/H3xtBV3.jpg" group-title="",Aliteia TV [Offline] +https://vdo.alphaserver.gr:3989/stream/play.m3u8 +#EXTINF:-1 tvg-id="Alpha.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alpha (720p) [Offline] +https://alphalive-i.akamaihd.net/hls/live/682300/live/master.m3u8 +#EXTINF:-1 tvg-id="AlphaBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Alpha BUP [Timeout] +http://78.83.87.222:9999/play/a011/index.m3u8 +#EXTINF:-1 tvg-id="ANT1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.worldtvpc.com/onlinevideosites/img/ant1.jpg" group-title="",ANT1 (1080p) [Geo-blocked] +https://antennaamdnoenc.akamaized.net/ant1_akamai/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="APT.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",APT (480p) [Not 24/7] +http://tv3.streampulse.eu:1935/tilesport/movie2/playlist.m3u8 +#EXTINF:-1 tvg-id="ARTTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ZgKZ5u9.jpg" group-title="",ART TV (720p) [Not 24/7] +http://176.9.123.140:1935/arttv/arttv/playlist.m3u8 +#EXTINF:-1 tvg-id="AtticaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/s3qWC9W.png" group-title="",Attica TV (1080p) [Not 24/7] +https://e-e.cyou:8222/atticatv/atticatv/playlist.m3u8 +#EXTINF:-1 tvg-id="BananaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/RwETfPc.jpg" group-title="",Banana TV (360p) [Offline] +https://web.onair-radio.eu/bananachannel/bananachannel/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) +https://eco.streams.ovh/BarazaTV/BarazarazaTV/BarazaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) +https://eco.streams.ovh/BarazaTV/BarazaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BarazaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/mW6c2QR.png" group-title="Music",Baraza TV (1080p) [Geo-blocked] +https://panik.cast-control.eu:1936/Admin_1/Admin_1/playlist.m3u8 +#EXTINF:-1 tvg-id="BCI24News.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/aZpv6l9.png" group-title="Local",BCI 24 News (720p) +https://live.streams.ovh/netmedia/netmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="BestTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Best TV (720p) [Not 24/7] +https://stream.net7.gr/hls/best/index.m3u8 +#EXTINF:-1 tvg-id="CameraSmile.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/W5oLUMk.jpg" group-title="",Camera Smile (480p) [Timeout] +https://nrpus.bozztv.com/36bay2/gusa-camerasmile/index.m3u8 +#EXTINF:-1 tvg-id="CanaliTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/bGIdE9N.png" group-title="",Canali TV (720p) [Geo-blocked] +http://live.streams.ovh:1935/cannali/cannali/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/24uaLwh.png" group-title="Local",Channel 9 (720p) +http://176.9.123.140:1935/channel9/channel9/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel9.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/24uaLwh.png" group-title="Local",Channel 9 (720p) +https://e-e.cyou:8222/channel9/channel9/playlist.m3u8 +#EXTINF:-1 tvg-id="Choice.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/6Yr0Axp.png" group-title="",Choice (884p) [Not 24/7] +https://vod.streams.ovh:3528/stream/play.m3u8 +#EXTINF:-1 tvg-id="CorfuTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/G7LHkTE.jpg" group-title="",Corfu TV (576p) [Not 24/7] +https://itv.streams.ovh/corfuchannel/corfuchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="Creta.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Creta (540p) [Not 24/7] +http://live.streams.ovh:1935/tvcreta/tvcreta/playlist.m3u8 +#EXTINF:-1 tvg-id="DiavataTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/MaAys0D.png" group-title="",Diavata TV (720p) +https://video.streams.ovh:1936/DiavataTV/DiavataTV/playlist.m3u8 +#EXTINF:-1 tvg-id="Diktyo1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/0klufvz.jpg" group-title="",Diktyo1 (360p) [Offline] +https://www.hellasnet.tv/rest.live.hn/diktyo1r/playlist.m3u8 +#EXTINF:-1 tvg-id="DipsoTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/iL2o7Og.png" group-title="",Dipso TV (720p) [Not 24/7] +https://live.cast-control.eu/ekpdipso/ekpdipso/playlist.m3u8 +#EXTINF:-1 tvg-id="EllasTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/rovfMvn.jpg" group-title="",Ellas TV (1080p) +http://ellastv.gotdns.com:88/freetv/promo/index.m3u8 +#EXTINF:-1 tvg-id="EnaChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014308&t=1544180286744" group-title="Local",Ena Channel (576p) [Not 24/7] +http://176.9.123.140:1935/1c/stream/master.m3u8 +#EXTINF:-1 tvg-id="EpirusTV1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="Local",Epirus TV1 (1080p) [Not 24/7] +http://176.9.123.140:1935/radioepirus/radioepirus/playlist.m3u8 +#EXTINF:-1 tvg-id="ERT1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176518&t=1606877903341" group-title="",ERT 1 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 +#EXTINF:-1 tvg-id="ERT2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176530&t=1606877905302" group-title="",ERT 2 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_2/ert_2.m3u8 +#EXTINF:-1 tvg-id="ERT3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=96176482&t=1606877899957" group-title="",ERT 3 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_3/ert_3.m3u8 +#EXTINF:-1 tvg-id="ERTNews.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ujTPC3J.jpg" group-title="News",ERT News (720p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_news/ert_news.m3u8 +#EXTINF:-1 tvg-id="ERTSports.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/SgiGEUK.png" group-title="Sports",ERT Sports (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports/ert_sports.m3u8 +#EXTINF:-1 tvg-id="ERTSports2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zG9dFQp.jpg" group-title="Sports",ERT Sports 2 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_2/ert_sports_2.m3u8 +#EXTINF:-1 tvg-id="ERTSports3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zG9dFQp.jpg" group-title="Sports",ERT Sports 3 (1080p) [Geo-blocked] +http://ert-live-bcbs15228.siliconweb.com/media/ert_sports_3/ert_sports_3.m3u8 +#EXTINF:-1 tvg-id="ERTWorld.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=102515281&t=1612347000625" group-title="",ERT World (720p) +http://ert-live-bcbs15228.siliconweb.com/media/ert_world/ert_world.m3u8 +#EXTINF:-1 tvg-id="ERTWorld.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=102515281&t=1612347000625" group-title="",ERT World (480p) +http://wpso.com:1936/hls/wzra.m3u8 +#EXTINF:-1 tvg-id="ErtaLexTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/gGqNDZN.png" group-title="",Erta Lex TV [Offline] +https://vdo.alphaserver.gr:3203/stream/play.m3u8 +#EXTINF:-1 tvg-id="FarosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T8mB6Kg.jpg" group-title="",Faros TV (540p) [Geo-blocked] +https://s1.cystream.net/live/faros1/playlist.m3u8 +#EXTINF:-1 tvg-id="FarosTV2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T8mB6Kg.jpg" group-title="",Faros TV2 (480p) [Geo-blocked] +https://s1.cystream.net/live/faros2/playlist.m3u8 +#EXTINF:-1 tvg-id="Galaxy.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dwF0jlz.png" group-title="",Galaxy (432p) [Geo-blocked] +https://channel.streams.ovh:1936/galaxygr-1/galaxygr-1/playlist.m3u8 +#EXTINF:-1 tvg-id="GreekCinema.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/FKJ6N9p.png" group-title="",Greek Cinema (720p) [Offline] +https://vdo.alphaserver.gr:3613/stream/play.m3u8 +#EXTINF:-1 tvg-id="GreekTVLondon.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/YhwbcwE.png" group-title="",Greek TV London (1080p) [Not 24/7] +https://vdo3.alphaserver.gr:3466/stream/play.m3u8 +#EXTINF:-1 tvg-id="GreekTVLondon.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/YhwbcwE.png" group-title="",Greek TV London (720p) [Not 24/7] +https://vdo3.alphaserver.gr:3466/live/greektvlondonlive.m3u8 +#EXTINF:-1 tvg-id="GroovyTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/0iklNh2.png" group-title="Movies",Groovy TV (534p) +http://web.onair-radio.eu:1935/groovytv/groovytv/playlist.m3u8 +#EXTINF:-1 tvg-id="HellenicTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Hellenic TV (720p) [Not 24/7] +https://l5.cloudskep.com/hellenictv/htv/playlist.m3u8 +#EXTINF:-1 tvg-id="HighTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",High TV (200p) [Not 24/7] +http://live.streams.ovh:1935/hightv/hightv/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseRaces.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/cE8LuoO.png" group-title="",Horse Races (432p) [Not 24/7] +https://odiehls-i.akamaihd.net/hls/live/233406/odie3/odie.m3u8 +#EXTINF:-1 tvg-id="IonianChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ionian Channel (1080p) [Not 24/7] +http://stream.ioniantv.gr:8081/ionian/live/playlist.m3u8 +#EXTINF:-1 tvg-id="IonianChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ionian Channel (720p) [Not 24/7] +https://stream.ioniantv.gr/ionian/live_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="IridaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/gn5sdCt.png" group-title="Local",Irida TV (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.iri/playlist.m3u8 +#EXTINF:-1 tvg-id="KidsTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7sUmqv2.png" group-title="Kids",Kids TV (480p) +http://wpso.com:1936/hls/kidshd.m3u8 +#EXTINF:-1 tvg-id="KontraChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Kontra Channel (1080p) +http://flashcloud.mediacdn.com/live/kontratv/.m3u8 +#EXTINF:-1 tvg-id="KontraChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Kontra Channel (1080p) +http://kontralive.siliconweb.com/live/kontratv/playlist.m3u8 +#EXTINF:-1 tvg-id="KPHTHTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",KPHTH TV (720p) [Not 24/7] +http://live.cretetv.gr:1935/cretetv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="LiveTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Dj7YFhH.png" group-title="",Live TV (272p) [Offline] +https://vod.streams.ovh:3829/stream/play.m3u8 +#EXTINF:-1 tvg-id="MTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dh22Dj8.png" group-title="Music",M.TV [Timeout] +http://78.83.87.222:9999/play/a015/index.m3u8 +#EXTINF:-1 tvg-id="MadGreekz.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://ssl2.novago.gr/EPG/jsp/images/universal/film/logo/20190227/000100/XTV100000281/20758b1e-29fd-442c-b1a3-3a37ddf8ea03.png" group-title="Music",Mad Greekζ (480p) [Not 24/7] +http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 +#EXTINF:-1 tvg-id="MagicTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/QZQhg6C.png" group-title="Music",Magic TV (480p) +https://itv.streams.ovh/magictv/magictv/playlist.m3u8 +#EXTINF:-1 tvg-id="MaroussiotikaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/8coUyPX.png" group-title="",Maroussiotika TV (480p) [Not 24/7] +http://maroussiotika.dynu.com:8000/greektv/FZlHCCdBHL1/359142 +#EXTINF:-1 tvg-id="MesogeiosTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/OnB6n3C.jpg" group-title="",Mesogeios TV (450p) +http://176.9.123.140:1935/mesogeiostv/stream/master.m3u8 +#EXTINF:-1 tvg-id="MGRTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/zPyXLZs.jpg" group-title="",MGR TV (1080p) [Not 24/7] +https://vod.streams.ovh:3876/stream/play.m3u8 +#EXTINF:-1 tvg-id="MyRadioTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ZBIyCAl.png" group-title="",My Radio TV (360p) [Offline] +https://vdo.alphaserver.gr:3305/stream/play.m3u8 +#EXTINF:-1 tvg-id="NeaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014344&t=1544180306377" group-title="",Nea TV (720p) +https://live.neatv.gr:8888/hls/neatv.m3u8 +#EXTINF:-1 tvg-id="NetmaxTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Wad6CD4.png" group-title="",Netmax TV (720p) [Not 24/7] +http://live.netmaxtv.com:8080/live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NG.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/pK2p5ey.png" group-title="Music",NG (720p) +http://live.streams.ovh:1935/NGradio/NGradio/playlist.m3u8 +#EXTINF:-1 tvg-id="NG.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/pK2p5ey.png" group-title="Music",NG (720p) +https://live.streams.ovh/NGradio/NGradio/playlist.m3u8 +#EXTINF:-1 tvg-id="NotioiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dW1bcD2.jpg" group-title="",Notioi TV (1080p) +https://live.streams.ovh/YourStreaming/YourStreaming/playlist.m3u8 +#EXTINF:-1 tvg-id="NRG91.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/1Zl1OJ5.png" group-title="",NRG 91 (720p) [Not 24/7] +http://tv.nrg91.gr:1935/onweb/live/master.m3u8 +#EXTINF:-1 tvg-id="NRGTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/1Zl1OJ5.png" group-title="",NRG TV (720p) +https://5c389faa13be3.streamlock.net:9553/onweb/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NSTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/tZnziRp.jpg" group-title="",NS TV (480p) [Not 24/7] +http://176.9.123.140:1935/nstv1/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OpenTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/M6XG03v.png" group-title="",Open TV (576p) [Not 24/7] +https://liveopencloud.siliconweb.com/1/ZlRza2R6L2tFRnFJ/eWVLSlQx/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="OpenTVBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/c9hgL1c.jpg" group-title="",Open TV BUP [Timeout] +http://78.83.87.222:9999/play/a013/index.m3u8 +#EXTINF:-1 tvg-id="PellaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/9YFieqB.jpg" group-title="",Pella TV (576p) [Not 24/7] +https://video.streams.ovh:1936/pellatv/pellatv/master.m3u8 +#EXTINF:-1 tvg-id="PlayTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/100uuWA.png" group-title="Music",Play TV (480p) [Not 24/7] +http://web.onair-radio.eu:1935/Alpha-Host/Alpha-Host/playlist.m3u8 +#EXTINF:-1 tvg-id="PLP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/qa3Lurc.png" group-title="Local",PLP (226p) [Not 24/7] +https://www.hellasnet.tv/rest.live.hn/ws.plp/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioEpistrofi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/T0zL9ov.jpg" group-title="",Radio Epistrofi (540p) [Geo-blocked] +https://s1.cystream.net/live/epistrofi/playlist.m3u8 +#EXTINF:-1 tvg-id="ReloadPlay.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://reloadplay.com/wp-content/uploads/2017/04/logo-foto-tv.jpg" group-title="",Reload Play (720p) +http://web.onair-radio.eu:1935/video/video/playlist.m3u8 +#EXTINF:-1 tvg-id="SamiakiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Samiaki TV (540p) [Not 24/7] +http://live.cast-control.eu:1935/samiaki/samiaki/playlist.m3u8 +#EXTINF:-1 tvg-id="Sigma.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Sigma (576p) [Not 24/7] +https://sl2.sigmatv.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="Skai.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/44RsYnf.jpg" group-title="",Skai (720p) +https://skai-live-back.siliconweb.com/media/cambria4/index.m3u8 +#EXTINF:-1 tvg-id="Skai.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/xokA84y.png" group-title="",Skai (720p) +https://skai-live.siliconweb.com/media/cambria4/index.m3u8 +#EXTINF:-1 tvg-id="SkaiBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/xokA84y.png" group-title="",Skai BUP [Timeout] +http://78.83.87.222:9999/play/a016/index.m3u8 +#EXTINF:-1 tvg-id="SmileTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/DOOVBu5.png" group-title="",Smile TV (360p) [Geo-blocked] +https://s1.cystream.net/live/smile/playlist.m3u8 +#EXTINF:-1 tvg-id="Star.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/4HSJigE.png" group-title="",Star (720p) +https://livestar.siliconweb.com/media/star1/star1mediumhd.m3u8 +#EXTINF:-1 tvg-id="StarBUP.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Star BUP [Timeout] +http://78.83.87.222:9999/play/a017/index.m3u8 +#EXTINF:-1 tvg-id="SuperB.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Super B (576p) [Not 24/7] +https://til.pp.ua:3424/live/superblive.m3u8 +#EXTINF:-1 tvg-id="SuperChannel.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Super Channel (300p) [Offline] +https://vdo.alphaserver.gr:3587/stream/play.m3u8 +#EXTINF:-1 tvg-id="Tilemousiki.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/wb4pLkW.jpg" group-title="",Tilemousiki (480p) [Not 24/7] +http://wpso.com:1936/hls/music1.m3u8 +#EXTINF:-1 tvg-id="TV100.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",TV 100 (576p) [Not 24/7] +https://live.fm100.gr/hls/tv100/index.m3u8 +#EXTINF:-1 tvg-id="TVCreta.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/dUH5Mfw.jpg" group-title="Local",TV Creta (540p) [Not 24/7] +https://live.streams.ovh/tvcreta/tvcreta/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVFilopoli.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/GdgekUL.png" group-title="",TV Filopoli (360p) [Not 24/7] +http://live.streams.ovh:1935/tvfilopoli/tvfilopoli/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNotos.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/wtW3zkz.png" group-title="",TV Notos (720p) [Not 24/7] +https://eco.streams.ovh/notos/notos/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRodopi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/UZeSUN2.png" group-title="",TV Rodopi (720p) [Offline] +https://video.connect4.gr/live/tvrodopi/playlist.m3u8 +#EXTINF:-1 tvg-id="Wixlar.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/hfia0wN.png" group-title="Movies",Wixlar (720p) +http://web.onair-radio.eu:1935/wixlar/wixlar/playlist.m3u8 +#EXTINF:-1 tvg-id="XalastraTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="http://i.imgur.com/LgQBtTh.jpg" group-title="Music",Xalastra TV (360p) +https://live.cast-control.eu/xalastratv/xalastratv/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/ErFj6rR.png" group-title="",Xplore (714p) [Geo-blocked] +http://web.onair-radio.eu:1935/explorecy/explorecy/playlist.m3u8 +#EXTINF:-1 tvg-id="ZerounoTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Zerouno TV (720p) +http://5db313b643fd8.streamlock.net:1935/ZerounoTV/ZerounoTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ZouglaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/AmW9d6H.jpg" group-title="",Zougla TV (480p) +https://zouglalive-lh.akamaihd.net/i/zouglalive_1@340792/master.m3u8 +#EXTINF:-1 tvg-id="VoyliTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση (540p) +https://streamer-cache.grnet.gr/parliament/hls/webtv.m3u8 +#EXTINF:-1 tvg-id="VoyliTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση (360p) +https://streamer-cache.grnet.gr/parliament/parltv.sdp/master.m3u8 +#EXTINF:-1 tvg-id="VoyliTileorasi2.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση 2 (540p) [Not 24/7] +https://streamer-cache.grnet.gr/parliament/hls/webtv2.m3u8 +#EXTINF:-1 tvg-id="VoyliTileorasi3.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/7A86yAv.png" group-title="",Βουλή Τηλεόραση 3 (360p) +https://streamer-cache.grnet.gr/parliament/hls/webtv3.m3u8 +#EXTINF:-1 tvg-id="EgnatiaTileorasi.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/XQyysct.jpg" group-title="",Εγνατία Τηλεόραση (576p) +https://video.streams.ovh:1936/egnatiatv/egnatiatv/index.m3u8 +#EXTINF:-1 tvg-id="Ekklisia.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/nxoHQqz.png" group-title="",Εκκλησία (1080p) +https://liveopen.siliconweb.com/openTvLive/openEcclessia/playlist.m3u8 +#EXTINF:-1 tvg-id="Ilektra.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Ηλέκτρα TV (1080p) [Not 24/7] +http://167.86.89.20:5080/LiveApp/streams/064918158666216168224216.m3u8 +#EXTINF:-1 tvg-id="KritiTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/Ldt07Lh.png" group-title="",Κρήτη TV (720p) [Not 24/7] +http://live.cretetv.gr:1935/cretetv/myStream/f1tv.m3u8 +#EXTINF:-1 tvg-id="MessatidaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/y3pUxXe.png" group-title="",Μεσσάτιδα TV (720p) [Not 24/7] +https://vod.streams.ovh:3037/stream/play.m3u8 +#EXTINF:-1 tvg-id="ΡΙΚSat.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",ΡΙΚ Sat (720p) [Not 24/7] +http://l3.cloudskep.com/cybcsat/abr/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrosTV1.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="" group-title="",Σύρος TV1 (720p) [Not 24/7] +http://176.9.123.140:1935/msg116s/msg116s/playlist.m3u8 diff --git a/channels/gt.m3u b/channels/gt.m3u new file mode 100644 index 000000000..109372f4a --- /dev/null +++ b/channels/gt.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal3.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/cc/canal3_super_canal.png" group-title="",Canal 3 (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalAntigua.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uyNWESl.png" group-title="",Canal Antigua (1080p) +https://streaming.canal32hn.com/CanalAntigua/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="guatevision.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.guatevision.com/wp-content/uploads/sites/2/2019/09/logo-1.png?quality=82" group-title="",Guatevisión (720p) [Not 24/7] +https://ott.streann.com/loadbalancer/services/public/channels/5d6821172cdced7698d5a329/playlist.m3u8 +#EXTINF:-1 tvg-id="IglesiaDelCamino.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="http://www.iglesiadelcamino.org/images/logo.png" group-title="Religious",Iglesia Del Camino (480p) [Not 24/7] +http://streamingcontrol.com:1935/ectv/ectv/playlist.m3u8 +#EXTINF:-1 tvg-id="Televisiete.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/televisiete-gt.png" group-title="",Televisiete (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TN23.gt" tvg-country="GT" tvg-language="Spanish" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/tn23-gt.png" group-title="",TN 23 (480p) +https://devdbm9fvg6q0.cloudfront.net/chapintv/smil:canal23.smil/playlist.m3u8 diff --git a/channels/hk.m3u~master b/channels/hk.m3u~master new file mode 100644 index 000000000..06aea48d2 --- /dev/null +++ b/channels/hk.m3u~master @@ -0,0 +1,64 @@ +#EXTM3U +#EXTINF:-1 tvg-id="A1Tai.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16341146314628622757.png" group-title="General",A1台 (720p) [Offline] +https://jc-qlive-play.jingchangkan.cn/live/3473_200508855_xR9m.m3u8 +#EXTINF:-1 tvg-id="CelestialClassicMovies.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://1.bp.blogspot.com/-JitJUuWTMxg/VH--1LtXqGI/AAAAAAAAAo0/FL_bgsBFjeU/s1600/CELESTIAL%2BCLASSIC%2BMOVIES%2Blogo.png" group-title="Movies",Celestial Classic 天映经典 (540p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8 +#EXTINF:-1 tvg-id="CelestialMovies.hk" tvg-country="HK;SG;MY;ID;TW;BN;BD" tvg-language="Chinese" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/322_300.png" group-title="Movies",Celestial Movies (480p) [Geo-blocked] +http://210.210.155.35/qwr9ew/s/s33/index.m3u8 +#EXTINF:-1 tvg-id="CreationTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16166569352816980048.png" group-title="",Creation TV (720p) [Not 24/7] +http://al-pull2.hkatv.vip/live/CTV.m3u8 +#EXTINF:-1 tvg-id="HKSTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/a1/HKSTV_Logo.jpg" group-title="",HKSTV (香港衛視) (720p) [Not 24/7] +https://al-pull2.hkatv.vip/live/hktv20210929.m3u8 +#EXTINF:-1 tvg-id="iModeTV.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://atv-cdn.hkatv.vip/images/16092183621189118679.png" group-title="",iMode TV (1080p) [Not 24/7] +https://juyunlive.juyun.tv/live/24950198.m3u8 +#EXTINF:-1 tvg-id="Kix.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/705_300.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Entertainment",Kix (720p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://livecdn.fptplay.net/hda/kixhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Kix.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/mX1nnGy.png" group-title="Entertainment",Kix [Geo-blocked] +http://210.210.155.35/uq2663/h/h07/01.m3u8 +#EXTINF:-1 tvg-id="PhoenixChineseChannel.hk" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/3/34/Phoenix_Chinese.svg/1200px-Phoenix_Chinese.svg.png" group-title="General",Phoenix Chinese Channel (鳳凰衛視中文) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PCC.m3u8 +#EXTINF:-1 tvg-id="PhoenixHongKongChannel.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/8/8d/Phoenix_HK.svg/1280px-Phoenix_HK.svg.png" group-title="General",Phoenix Hong Kong Channel (鳳凰衛視香港) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PHK.m3u8 +#EXTINF:-1 tvg-id="PhoenixInfoNewsChannel.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/16/Phoenix_InfoNews.svg/1280px-Phoenix_InfoNews.svg.png" group-title="News",Phoenix InfoNews Channel (鳳凰衛視資訊) (1080p) [Not 24/7] +https://phoenixtv.hkatv.vip/liveott/PIN.m3u8 +#EXTINF:-1 tvg-id="RTHKGangTaiDianShi31.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="http://tv.sason.xyz/logo/rthk31.png" group-title="",RTHK (港台電視31) (720p) [Geo-blocked] +https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 +#EXTINF:-1 tvg-id="RTHKGangTaiDianShi32.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",RTHK (港台電視32) (360p) [Not 24/7] +https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 +#EXTINF:-1 tvg-id="StarSports.hk" tvg-country="SAS" tvg-language="English" tvg-logo="https://photo.sofun.tw/2013/11/STAR-SPORTS-LOGO.jpg" group-title="Sports",Star Sports [Offline] +rtmp://ivi.bupt.edu.cn:1935/livetv/starsports +#EXTINF:-1 tvg-id="Thrill.hk" tvg-country="SAS" tvg-language="English" tvg-logo="http://console.celestialtiger.com/images/upload/1f6e441382a388940977fd9e165178c42fe0c193.png" group-title="Movies",Thrill (480p) [Geo-blocked] +http://45.126.83.51/qwr9ew/s/s34/index.m3u8 +#EXTINF:-1 tvg-id="Thrill.hk" tvg-country="HK" tvg-language="English" tvg-logo="http://console.celestialtiger.com/images/upload/1f6e441382a388940977fd9e165178c42fe0c193.png" group-title="Movies",Thrill (360p) [Geo-blocked] +http://45.126.83.51/qwr9ew/s/s34/02.m3u8 +#EXTINF:-1 tvg-id="TVBJade.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",TVB Jade [Offline] +http://ubaio.chaoniu1995.top:6796/ub/cr/crtv.php?id=30 +#EXTINF:-1 tvg-id="TVBXingHe.hk" tvg-country="MY" tvg-language="Malay" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/17/TVB_Xing_He_logo_2017.png/220px-TVB_Xing_He_logo_2017.png" group-title="",TVB Xing He 星河 (720p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Xinhe/playlist.m3u8 +#EXTINF:-1 tvg-id="ViuTV.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://static.epg.best/hk/ViuTV96.hk.png" group-title="",ViuTV (720p) [Not 24/7] +https://cdn.hkdtmb.com/hls/99/index.m3u8 +#EXTINF:-1 tvg-id="ViuTVsix.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/ViuTVsix-logo.svg/1280px-ViuTVsix-logo.svg.png" group-title="",ViuTVsix [Timeout] +http://61.238.6.49:8000/bysid/96 +#EXTINF:-1 tvg-id="YaLuWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/1wbOhJV.jpg" group-title="Travel",亞旅衛視 (720p) [Not 24/7] +http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8 +#EXTINF:-1 tvg-id="XingKongWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/8/8d/Xing_Kong_Wei_Shi.jpg/250px-Xing_Kong_Wei_Shi.jpg" group-title="General",星空衛視 [Offline] +rtmp://58.200.131.2:1935/livetv/startv +#EXTINF:-1 tvg-id="GangTaiDianShi31.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/RTHK_TV_31.svg/1200px-RTHK_TV_31.svg.png" group-title="General",港台電視31 (360p) [Not 24/7] +https://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/master.m3u8 +#EXTINF:-1 tvg-id="GangTaiDianShi32.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/RTHK_TV_32.svg/1200px-RTHK_TV_32.svg.png" group-title="News",港台電視32 (480p) [Not 24/7] +https://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/master.m3u8 +#EXTINF:-1 tvg-id="FeiCuiTai81.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="http://img.tvb.com/corporate/_fck_/image/Jade_logo_L(1).jpg" group-title="",翡翠台(81) (1080p) [Timeout] +http://61.238.6.49:8000/bysid/1 +#EXTINF:-1 tvg-id="YaoCaiCaiJingTai.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://i.imgur.com/xliVoIt.jpg?1" group-title="Shop",耀才財經台 (576p) +http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8 +#EXTINF:-1 tvg-id="XiangGangKaiDianShiHKSTVHKS.hk" tvg-country="HK" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/e/ed/HK_open_tv_logo.jpg" group-title="",香港开电视 / HKSTV-HKS (720p) +http://media.fantv.hk/m3u8/archive/channel2.m3u8 +#EXTINF:-1 tvg-id="XiangGangWeiShi.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/wnQPn2d.jpg" group-title="",香港衛視 (576p) [Not 24/7] +http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8 +#EXTINF:-1 tvg-id="FengHuangWeiShiZhongWenTai.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://pbs.twimg.com/profile_images/1246604721462239232/QCKNvVux_400x400.jpg" group-title="",鳳凰衛視中文台 [Timeout] +http://221.179.217.70/PLTV/88888888/224/3221225942/1.m3u8 +#EXTINF:-1 tvg-id="FengHuangZiXun.hk" tvg-country="HK" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/1/16/Phoenix_InfoNews.svg/1200px-Phoenix_InfoNews.svg.png" group-title="News",鳳凰衛視資訊台HD (720p) [Not 24/7] +http://117.169.120.138:8080/live/fhzixun/.m3u8 +#EXTINF:-1 tvg-id="FengHuangWeiShiDianYingTai.hk" tvg-country="HK" tvg-language="Chinese" tvg-logo="https://p1.ifengimg.com/a/2018_43/45a9d426b4ae58c.jpg" group-title="",鳳凰衛視電影台 [Offline] +rtmp://ivi.bupt.edu.cn:1935/livetv/fhdy diff --git a/channels/hn.m3u~master b/channels/hn.m3u~master new file mode 100644 index 000000000..f30d7876d --- /dev/null +++ b/channels/hn.m3u~master @@ -0,0 +1,99 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlfaOmegaVision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="http://www.aovision.com/img/LogoAlfaOmegaVision.png" group-title="",Alfa & Omega Visión (360p) +https://srv.panelcast.net/aovision/aovision/playlist.m3u8 +#EXTINF:-1 tvg-id="Alsacias.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/824829587867602944/0mgz4yF1.jpg" group-title="",Alsacias TV (ATV | Canal 28) (1080p) +https://emisoras.hn:8081/atv/index.m3u8 +#EXTINF:-1 tvg-id="AvivaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Aviva TV (1080p) +https://video.misistemareseller.com/atvhonduras/atvhonduras/playlist.m3u8 +#EXTINF:-1 tvg-id="AZATV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",AZA TV (1080p) +https://stmv1.zcastbr.com/azatvhd/azatvhd/playlist.m3u8 +#EXTINF:-1 tvg-id="CampusTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="http://live.campushd.tv/wp-content/uploads/2019/05/logo-1.png" group-title="",Campus TV (360p) [Not 24/7] +http://st2.worldkast.com/8004/8004/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal5ElLider.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/5_de_honduras-mediano.png" group-title="",Canal 5 El Líder (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k5MLnPhRpeAV0Xwgt0d +#EXTINF:-1 tvg-id="canal6.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1262498886305923073/2SBUwUGY.jpg" group-title="",Canal 6 (720p) +https://ott.streann.com/loadbalancer/services/public/channels/5ba026492cdc1a7124d02fb7/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal9.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal 9 TeleDanlí (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8224/8224/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://canal11.hn/wp-content/themes/streamit/assets/images/logo.png" group-title="",Canal 11 (720p) +https://mdstrm.com/live-stream-playlist/603d4e1fb042ce07c5c8f911.m3u8 +#EXTINF:-1 tvg-id="CanalSiTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal SiTV (410p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalUnodeChuloteca.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Canal Uno de Chuloteca (720p) [Not 24/7] +https://tvdatta.com:3392/live/portaldelsurhnlive.m3u8 +#EXTINF:-1 tvg-id="Catavision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Catavisión (336p) [Not 24/7] +https://stmv1.zcastbr.com/catavision/catavision/playlist.m3u8 +#EXTINF:-1 tvg-id="CCIChannel.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://www.ccichannel.tv/wp-content/uploads/2018/01/CCICHANNELlogo.png" group-title="",CCI Channel (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x836wjl +#EXTINF:-1 tvg-id="CeibavisionCanal36.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Ceibavisión Canal 36 (1080p) [Not 24/7] +http://190.11.224.235:1935/CANAL36/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CholusatSur36.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qRHwhND.png" group-title="",Cholusat Sur 36 (214p) [Not 24/7] +http://audiotvserver.net:1935/livemedia/cholusat/playlist.m3u8 +#EXTINF:-1 tvg-id="CholutecaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Choluteca TV (1080p) +https://emisoras.hn:8081/cholutecatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CHTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://chtv.hn/wp-content/uploads/2020/01/512-1.png" group-title="Local",CHTV (Canal Hondureño de Televisión) (720p) [Offline] +https://media.streambrothers.com:1936/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="DiosTeVe.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Dios Te Ve (720p) +https://emisoras.hn:8081/diostevetv/playlist.m3u8 +#EXTINF:-1 tvg-id="DiosTeVeInfantil.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Dios Te Ve Infantil (720p) +https://emisoras.hn:8081/diostevekids/playlist.m3u8 +#EXTINF:-1 tvg-id="EbenezerTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ANW1pIH.png" group-title="",Ebenezer TV (1080p) [Not 24/7] +http://p1.worldkast.com/ebenezertv2/ngrp:ebenezertv2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EbenezerTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ANW1pIH.png" group-title="",Ebenezer TV (360p) [Not 24/7] +https://5b50404ec5e4c.streamlock.net/ebenezertv2/smil:ebenezertv2.smil/chunklist_w156791259_b850000_slen.m3u8 +#EXTINF:-1 tvg-id="EDNTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Dq9we3E.png" group-title="",EDN TV (1080p) [Not 24/7] +https://60417ddeaf0d9.streamlock.net/edntv/videoedntv/playlist.m3u8 +#EXTINF:-1 tvg-id="GloboTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UG6Tq7a.png" group-title="",Globo TV (720p) [Not 24/7] +https://panel.dattalive.com/8122/8122/playlist.m3u8 +#EXTINF:-1 tvg-id="HCH.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1443944863075028992/AM2NFj1q.jpg" group-title="",HCH (Hable Como Habla) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81za5c +#EXTINF:-1 tvg-id="Hondured13.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/470030355563810816/thlLKXjZ_400x400.jpeg" group-title="",Hondured 13 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x83axzj +#EXTINF:-1 tvg-id="JBN.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/JrlArKg.png" group-title="",JBN (480p) +https://emisoras.hn:8081/jbn/index.m3u8 +#EXTINF:-1 tvg-id="KerussoTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Kerusso TV (720p) +https://emisoras.hn:8081/kerussotv/index.m3u8 +#EXTINF:-1 tvg-id="MetroTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",La Metro TV (720p) +https://emisoras.hn:8081/metrotv/index.m3u8 +#EXTINF:-1 tvg-id="LencaTelevision.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Lenca Television (Canal 40) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv1.m3u8 +#EXTINF:-1 tvg-id="LTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/dprA1P7.png" group-title="",LTV (720p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6022/6022/playlist.m3u8 +#EXTINF:-1 tvg-id="MayaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/91/A6287BAC-05B5-4739-9415-01B08CC0DF0E.png" group-title="Local",Maya TV (360p) [Not 24/7] +https://media.streambrothers.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="MVC.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/5620HCa.jpg" group-title="",Mi Viña Canal (720p) [Not 24/7] +https://media.streambrothers.com:1936/8338/8338/master.m3u8 +#EXTINF:-1 tvg-id="OmegaTv.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Omega Tv (288p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/8142/8142/playlist.m3u8 +#EXTINF:-1 tvg-id="QhuboTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1MIXANL.jpg" group-title="",Q'hubo TV (410p) [Not 24/7] +https://5e85d90130e77.streamlock.net/6024/6024/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIdeal.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Radio Ideal 104.7 FM (La Esperanza) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv3.m3u8 +#EXTINF:-1 tvg-id="RadioImagen.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Radio Imagen 105.1 FM (La Esperanza) (720p) [Not 24/7] +http://lencatelevision.com:8080/hls/ltv2.m3u8 +#EXTINF:-1 tvg-id="RHC.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Roatán Hable Claro (RHC) (720p) +https://stmv1.zcastbr.com/roatanhableclaro/roatanhableclaro/playlist.m3u8 +#EXTINF:-1 tvg-id="SercanoTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Sercano TV (720p) +http://stream.grupoabchn.com:1935/SERCANOHD/SERCANOLive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SuyapaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1455219661927337988/0EAAn3OP.jpg" group-title="Religious",Suyapa TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x833e2b +#EXTINF:-1 tvg-id="Teleceiba.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/wIcvdMQ.jpg" group-title="",Teleceiba [Timeout] +http://190.11.224.14:8134/liveevent.m3u8 +#EXTINF:-1 tvg-id="TeleProgreso.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NKCF5qs.png" group-title="",TeleProgreso (1080p) +https://stmv1.zcastbr.com/teleprogresohn/teleprogresohn/playlist.m3u8 +#EXTINF:-1 tvg-id="TelevisionComayaguaCanal40.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",Television Comayagua Canal 40 (320p) [Not 24/7] +http://st2.worldkast.com/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="TENCanal10.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HQiKyHy.jpg" group-title="",TEN Canal 10 (720p) +http://stream.grupoabchn.com:1935/TENHD/TENLive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TENCanal10.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/HQiKyHy.jpg" group-title="",TEN Canal 10 (540p) [Not 24/7] +http://stream.grupoabchn.com:1935/TENHD/TENLIVEHD_2/playlist.m3u8 +#EXTINF:-1 tvg-id="TSi.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMx65sw0YtirOLRNPWMixClGHXr7TRCxlh-Q&usqp=CAU" group-title="",TSI (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k3q8hF4Y9tzpTgwu26R +#EXTINF:-1 tvg-id="TVCopan.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="",TV Copán (480p) [Not 24/7] +https://emisoras.hn:8081/tvcopan/index.m3u8 +#EXTINF:-1 tvg-id="UNAHUTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/De5CSD3.png" group-title="",UNAH UTV (360p) [Not 24/7] +https://live-utv.unah.edu.hn/web/salida.m3u8 +#EXTINF:-1 tvg-id="VidaTV.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="" group-title="Religious",Vida TV (720p) [Not 24/7] +http://184.173.181.2:1935/8070/8070/playlist.m3u8 +#EXTINF:-1 tvg-id="WaldivisionInternacional.hn" tvg-country="HN" tvg-language="Spanish" tvg-logo="https://i.imgur.com/o5TnL2b.png" group-title="",Waldivisión Internacional (720p) [Not 24/7] +https://tvdatta.com:3934/live/waldivisionlive.m3u8 diff --git a/channels/hr.m3u b/channels/hr.m3u new file mode 100644 index 000000000..07ac56543 --- /dev/null +++ b/channels/hr.m3u @@ -0,0 +1,42 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HRT1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/W3FBVwT.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 1 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226139/index.m3u8 +#EXTINF:-1 tvg-id="HRT1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/W3FBVwT.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 1 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.84/PLTV/88888888/224/3221226139/index.m3u8 +#EXTINF:-1 tvg-id="HRT2.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7swOkC3.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 2 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226140/index.m3u8 +#EXTINF:-1 tvg-id="HRT2.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7swOkC3.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 2 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.82/PLTV/88888888/224/3221226140/index.m3u8 +#EXTINF:-1 tvg-id="HRT3.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/0hrv92c.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 3 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226280/index.m3u8 +#EXTINF:-1 tvg-id="HRT4.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/UVFs4zA.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 4 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226281/index.m3u8 +#EXTINF:-1 tvg-id="HRT4.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/UVFs4zA.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",HRT 4 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.89/PLTV/88888888/224/3221226281/index.m3u8 +#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/RApnwWl.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",MAXtv Promo Kanal (528p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226027/index.m3u8 +#EXTINF:-1 tvg-id="MAXtvPromoKanal.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/RApnwWl.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",MAXtv Promo Kanal (528p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.84/PLTV/88888888/224/3221226027/index.m3u8 +#EXTINF:-1 tvg-id="NewsBar.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/Q8eH5zN.jpg" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="News",NewsBar (528p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.89/PLTV/88888888/224/3221226407/index.m3u8 +#EXTINF:-1 tvg-id="OTV.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://www.otv.hr/wp-content/uploads/2020/10/cropped-otv_plavi-logo_PNG_kocka-1-192x192.png" group-title="",OTV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x654gen +#EXTINF:-1 tvg-id="RadioTelevizijaBanovina.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/7q3g8AS.png" group-title="",Radio Televizija Banovina (360p) [Not 24/7] +rtmp://video.radio-banovina.hr/live/myStream +#EXTINF:-1 tvg-id="RTLHrvatska.de" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://i.imgur.com/aJGNyQn.png" user-agent="Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0" group-title="",RTL (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux i686; rv:90.0) Gecko/20100101 Firefox/90.0 +http://195.29.70.67/PLTV/88888888/224/3221226195/index.m3u8 +#EXTINF:-1 tvg-id="TVJadran.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://tvjadran.hr/wp-content/uploads/2021/02/cropped-tv_jadran_site_icon-192x192.png" group-title="",TV Jadran (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x670ug8 +#EXTINF:-1 tvg-id="TVNova.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://tvnova.hr/images/logo-tvnova.png" group-title="",TV Nova (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x694rtu diff --git a/channels/ht.m3u b/channels/ht.m3u new file mode 100644 index 000000000..bbfe3ff02 --- /dev/null +++ b/channels/ht.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HaitiViralNews.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/eaPFJJs.jpg" group-title="",Haiti Viral News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcEY2-g-EEefxyYa1gtrk4g/live +#EXTINF:-1 tvg-id="KajouTV.ht" tvg-country="US;HT" tvg-language="French" tvg-logo="https://i.imgur.com/5txJUZx.jpg" group-title="",Kajou TV (480p) [Not 24/7] +https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8 +#EXTINF:-1 tvg-id="NETALKOLETV.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/OJbRkQ6.jpg" group-title="",NETALKOLE TV (720p) [Not 24/7] +https://watch.haitilive.net/stream/netalkole/public/tv/index.m3u8 +#EXTINF:-1 tvg-id="RadioTélé4VEH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/1wuEyIF.jpg" group-title="Religious",Radio Télé 4VEH (720p) +https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTélé4VEH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/1wuEyIF.jpg" group-title="Religious",Radio Télé 4VEH (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClL_aynC_SESNLQEJHqO9MQ/live +#EXTINF:-1 tvg-id="RadioTeleAmen.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/dJvJGDg.jpg" group-title="Religious",Radio Tele Amen FM (360p) [Not 24/7] +http://184.173.179.163:1935/daniel/daniel/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTéléEclair.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/8ocCyo7.png" group-title="",Radio Télé Eclair (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOvGbDh5biuOqjx6G3CdrQg/live +#EXTINF:-1 tvg-id="RadioTelePititManmanMari.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/QaWwNvo.jpg" group-title="Religious",Radio Télé Pitit Manman Mari (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCLeNHM8XDkZmd2rhV3ZG7Vg/live +#EXTINF:-1 tvg-id="RadioTelePlanetCompas.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/ddb4lsa.png" group-title="",Radio Tele Planet Compas (720p) [Not 24/7] +https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTeleShalom.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/MSgSKym.png" group-title="",Radio Tele Shalom (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBJ9zxns1hxblYZw4urBd_w/live +#EXTINF:-1 tvg-id="RTVC.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/Jp38Rzf.png" group-title="",Radio Télévision Caraïbes (RTVC) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x81lgjh +#EXTINF:-1 tvg-id="RadioTélévisionHirondelle.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/2gVnoSX.jpg" group-title="",Radio Télévision Hirondelle (480p) [Not 24/7] +https://watch.haitilive.net/gethb/rtvh16/index.m3u8 +#EXTINF:-1 tvg-id="TCH.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/6LZVA4x.png" group-title="",Télé Conscience Haïtienne (TCH) (720p) [Not 24/7] +http://tvlakay.haitilive.net/website/tchhaiti/player/mono.m3u8 +#EXTINF:-1 tvg-id="TeleHaiti.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://www.newsfromhaiti.com/images/TeleHaiti.jpg" group-title="General",Tele Haiti (1088p) [Timeout] +http://66.175.238.147:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleLouange.ht" tvg-country="HT" tvg-language="French" tvg-logo="https://i.imgur.com/vZmlq9N.jpg" group-title="",Tele Louange (720p) +https://5790d294af2dc.streamlock.net/8124/8124/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVPanou.ht" tvg-country="US;HT" tvg-language="English" tvg-logo="https://i.imgur.com/p5GjWnu.jpg" group-title="",TV Panou (720p) [Not 24/7] +http://tvpanoucom.srfms.com:1935/tvpanoucom/livestream/playlist.m3u8 diff --git a/channels/hu.m3u~master b/channels/hu.m3u~master new file mode 100644 index 000000000..9bb59139e --- /dev/null +++ b/channels/hu.m3u~master @@ -0,0 +1,83 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1Mus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/PozF9MT.png" group-title="Music",1Mus (720p) [Not 24/7] +http://hz1.teleport.cc/HLS/HD.m3u8 +#EXTINF:-1 tvg-id="1MusicChannelHungary.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",1Music Channel Hungary (576p) +http://1music.hu/1music.m3u8 +#EXTINF:-1 tvg-id="1MusicChannelHungary.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",1Music Channel Hungary (576p) +http://www.1music.hu/1music.m3u8 +#EXTINF:-1 tvg-id="ApostolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Apostol_TV_HU_logo.png" group-title="",Apostol TV (576p) [Not 24/7] +https://live.apostoltv.hu/online/smil:gazdagret.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ovtI4G4.png" group-title="",ATV (160p) +http://streamservers.atv.hu/atvlive/atvstream_1_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ovtI4G4.png" group-title="",ATV (360p) [Not 24/7] +https://stream.atv.hu/atvlive/atvstream_2_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="BalatonTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xyG4O6F.jpg" group-title="",Balaton TV (432p) +https://stream.iptvservice.eu/hls/balatontv.m3u8 +#EXTINF:-1 tvg-id="Bonum TV-HU" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/dpGX5SH.png" group-title="Religious",Bonum TV (360p) +https://stream.y5.hu/stream/stream_bonum/stream.m3u8 +#EXTINF:-1 tvg-id="Budakalasz.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/ftmeWq2.png" group-title="",Budakalasz (1080p) [Not 24/7] +https://stream.streaming4u.hu/TVBudakalasz/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="CoolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_cooltv.png" group-title="",Cool TV (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_cool/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="CoolTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_cooltv.png" group-title="",Cool TV (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_cool/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="DTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",DTV (720p) [Not 24/7] +http://cloudfront44.lexanetwork.com:1732/hlsrelay003/hls/livestream.sdp.m3u8 +#EXTINF:-1 tvg-id="ErdelyTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xAmYapr.jpg" group-title="",Erdely TV [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$ErdelyTV/6.m3u8/Level(1677721)?end=END&start=LIVE +#EXTINF:-1 tvg-id="FEM3.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",FEM3 [Geo-blocked] +https://streaming.mytvback.com/stream/Nc8b6c6tUH4gh3GdRR-zFw/1617462698/channel016/stream.m3u8 +#EXTINF:-1 tvg-id="FilmPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Film+ (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_filmp/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="FilmPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Film+ (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_filmp/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="HTMusicChannel.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="Music",H!T Music Channel (480p) +http://hitmusic.hu/hitmusic.m3u8 +#EXTINF:-1 tvg-id="HalomTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Qykeedm.png" group-title="",Halom TV (540p) +http://stream.battanet.hu:8080/hls/livestream1/1_2/index.m3u8 +#EXTINF:-1 tvg-id="Hatoscsatorna.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/64ygAE5.png" group-title="",Hatoscsatorna (360p) [Not 24/7] +https://hatoscsatorna.hu:8082/Hatoscsatorna/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Hatoscsatorna.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/64ygAE5.png" group-title="",Hatoscsatorna (360p) [Offline] +rtmp://lpmedia.hu:1935/Hatoscsatorna/livestream +#EXTINF:-1 tvg-id="HegyvidekTvBudapest.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Hegyvidek Tv Budapest (576p) [Not 24/7] +http://tv.hegyvidek.hu/stream_mpeg.flv +#EXTINF:-1 tvg-id="IzauraTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/izaura.png" group-title="",Izaura TV [Geo-blocked] +https://streaming.mytvback.com/stream/1aMW5tqyOFpH3swBdowx9Q/1617462678/channel040/stream-br1872000.m3u8 +#EXTINF:-1 tvg-id="KecskemetiTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Kecskemeti TV (416p) [Not 24/7] +http://rtmp1.40e.hu:8000/live/ktv.m3u8 +#EXTINF:-1 tvg-id="KomlosTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/uGrWyVN.png" group-title="",Komlós TV (1080p) [Not 24/7] +https://stream.streaming4u.hu/KomlosTV/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="LifeTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/life_tv_hu_logo.png" group-title="",Life TV [Geo-blocked] +https://streaming.mytvback.com/stream/2WVTzaaqRtQ3cZ02Qd7rPA/1617462690/channel043/stream-br572000.m3u8 +#EXTINF:-1 tvg-id="Loversenykozvetites.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Q9MWqpE.png" group-title="",Lóverseny közvetítés (420p) +http://87.229.103.60:1935/liverelay/loverseny2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="M1.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/m1.png" group-title="",M1 (480p) [Offline] +https://c402-node61-cdn.connectmedia.hu/1100/52a0c3d17a5a9b5968ac73b7288a08c9/6184f343/03.m3u8 +#EXTINF:-1 tvg-id="M3.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",M3 [Geo-blocked] +https://stream9.nava.hu/m3_live_bdrm/_definst_/smil:m3_1080p_loop_nodrm.smil/chunklist_w72397576_b881072_slhun.m3u8?lb=b4bp7xeKAKovH1uDWU5XusWC/SZexs+JNLmxYvSb34kGup6SGRTTm5UkNNjfC62mmvYbuEqrt04E++Exer5ZNS/WN6JyMpY6GiuOU2osRulnM+gNsTWVD8z+LJt4imqAka++&platform=web_embed&sessid=Z4gLTQezzXGgWvNkiypb5PkmR64U1aoH3lFII14l3Mp2dZ5OtLoKQQY7XOn943ns&type=m3u8 +#EXTINF:-1 tvg-id="MUSICPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/yKJmkNk.png" group-title="Music",MUSIC + (720p) [Not 24/7] +http://s02.diazol.hu:10192/stream.m3u8 +#EXTINF:-1 tvg-id="OzdiVarosiTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/xiSeTRL.jpg" group-title="",Ózdi Városi TV (720p) [Not 24/7] +https://stream.unrealhosting.hu:7982/live.m3u8 +#EXTINF:-1 tvg-id="PannonRTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/Dl9xtgo.png" group-title="",Pannon RTV (648p) +https://stream.unrealhosting.hu:4102/live.m3u8 +#EXTINF:-1 tvg-id="RTLGold.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Gold (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlgold/stream.m3u8 +#EXTINF:-1 tvg-id="RTLII.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",RTL II (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtl2/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="RTLII.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",RTL II (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtl2/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="RTLKlub.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Klub (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlklub/hls1/stream.m3u8 +#EXTINF:-1 tvg-id="RTLKlub.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL Klub (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlklub/hls0/stream.m3u8 +#EXTINF:-1 tvg-id="RTLPlus.hu" tvg-country="DE" tvg-language="German" tvg-logo="" group-title="",RTL+ (720p) [Not 24/7] +https://stream.y5.hu/stream/stream_rtlp/stream.m3u8 +#EXTINF:-1 tvg-id="SorozatPlus.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/hu_sorozat.png" group-title="",Sorozat+ (360p) [Not 24/7] +https://stream.y5.hu/stream/stream_sorozatp/stream.m3u8 +#EXTINF:-1 tvg-id="TiszaTV.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="" group-title="",Tisza TV (576p) [Not 24/7] +https://www.tiszatv.hu/onlinetv/tiszatv_1.m3u8 +#EXTINF:-1 tvg-id="TV7Bekescsaba.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/iTUoC1v.png" group-title="",TV7 Bekescsaba (360p) +https://stream.y5.hu/stream/stream_bekescsaba/stream.m3u8 +#EXTINF:-1 tvg-id="VTVFuzesabony.hu" tvg-country="HU" tvg-language="Hungarian" tvg-logo="https://i.imgur.com/JCHEuWb.jpg" group-title="",VTV Füzesabony (720p) [Not 24/7] +https://stream.unrealhosting.hu:7962/live.m3u8 diff --git a/channels/id.m3u~master b/channels/id.m3u~master new file mode 100644 index 000000000..6e891321a --- /dev/null +++ b/channels/id.m3u~master @@ -0,0 +1,289 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BeritaSatu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu (720p) +https://b1news.beritasatumedia.com/Beritasatu/B1News_manifest.m3u8 +#EXTINF:-1 tvg-id="BeritaSatu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu (540p) +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:beritasatunewsbs/playlist.m3u8 +#EXTINF:-1 tvg-id="BeritaSatuEnglish.id" tvg-country="ID" tvg-language="English" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040323.png" group-title="News",BeritaSatu English (540p) [Not 24/7] +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsenglish/playlist.m3u8 +#EXTINF:-1 tvg-id="BeritaSatuWorld.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://i.imgur.com/GIGcX5K.png" group-title="News",BeritaSatu World (540p) [Not 24/7] +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:bsnew/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCIndonesia.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/id/3/35/CNBC_Indonesia.png" group-title="Business",CNBC Indonesia (720p) +https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/master.m3u8 +#EXTINF:-1 tvg-id="CNNIndonesia.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/CNN_Indonesia.svg/1200px-CNN_Indonesia.svg.png" group-title="News",CNN Indonesia (720p) +https://live.cnnindonesia.com/livecnn/smil:cnntv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/HsqNM8Hc/globaltv.png" group-title="General",GTV (720p) +https://vcdn2.rctiplus.id/live/eds/gtv_fta/live_fta/gtv_fta.m3u8 +#EXTINF:-1 tvg-id="HIDUPTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040378.png" group-title="",HIDUP TV (568p) [Timeout] +http://202.93.133.3:1935/SVR1/ch_hiduptv.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Hits.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="http://www.rewindnetworks.com/assets/logo_hits.png" group-title="",Hits (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/HITS/sa_dash_vmx/HITS.mpd +#EXTINF:-1 tvg-id="HitsMovies.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://movies.hitstv.com/img/hits-movies-logo.png" group-title="Movies",Hits Movies (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/HitsMovies/sa_dash_vmx/HitsMovies.mpd +#EXTINF:-1 tvg-id="IAMCHANNEL.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040337.png" group-title="Religious",I AM CHANNEL (576p) [Not 24/7] +http://iamchannel.org:1935/tes/1/playlist.m3u8 +#EXTINF:-1 tvg-id="IndonesiaChannel.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="",Indonesia Channel (720p) [Not 24/7] +http://wowzaprod236-i.akamaihd.net/hls/live/1019903/7dd4cf51/playlist.m3u8 +#EXTINF:-1 tvg-id="Indosiar.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_78.png" group-title="General",Indosiar [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/205-indosiar +#EXTINF:-1 tvg-id="iNews.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040337.png" group-title="News",iNews (720p) +https://vcdn2.rctiplus.id/live/eds/inews_fta/live_fta/inews_fta.m3u8 +#EXTINF:-1 tvg-id="KompasTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_106.png" group-title="News",Kompas TV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/874-kompas-tv +#EXTINF:-1 tvg-id="MetroTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040416.png" group-title="News",Metro TV (720p) [Not 24/7] +http://edge.metrotvnews.com:1935/live-edge/smil:metro.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MNCTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/rw8620qS/20191026-003920.png" group-title="General",MNCTV (720p) +https://vcdn2.rctiplus.id/live/eds/mnctv_fta/live_fta/mnctv_fta.m3u8 +#EXTINF:-1 tvg-id="MyTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="",MyTV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/6711-mytv +#EXTINF:-1 tvg-id="NetTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="General",Net. TV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/875-net-tv +#EXTINF:-1 tvg-id="OChannel.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="Local",O Channel [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/206-ochannel +#EXTINF:-1 tvg-id="OneTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://onetvasia.com/sites/onetvasia.com/files/logo-small_0.png" group-title="",One TV (720p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/SetOne/sa_dash_vmx/SetOne.mpd +#EXTINF:-1 tvg-id="Radio51TV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="Logo N/A" group-title="",Radio 51 TV (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="RCTI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://i.postimg.cc/13Nm4VLb/20191010-164600.png" group-title="General",RCTI (720p) +https://vcdn2.rctiplus.id/live/eds/rcti_fta/live_fta/rcti_fta.m3u8 +#EXTINF:-1 tvg-id="Reformed21.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="http://image.azuza.web.id/images/agus-1545452020.jpg" group-title="Religious",Reformed 21 (540p) +http://edge.linknetott.swiftserve.com/live/BsNew/amlst:reformedch/playlist.m3u8 +#EXTINF:-1 tvg-id="RRINet.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://pbs.twimg.com/media/DmaMDCBU8AAfd45.png" group-title="",RRI Net (720p) [Not 24/7] +http://36.89.47.217:11935/rrinet/live/index.m3u8 +#EXTINF:-1 tvg-id="RTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="" group-title="General",RTV [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.vidio.com/live/1561-rtv +#EXTINF:-1 tvg-id="SCTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_89.png" group-title="General",SCTV (480p) [Not 24/7] +https://liveanevia.mncnow.id/live/eds/SCTV/sa_dash_vmx/SCTV.mpd +#EXTINF:-1 tvg-id="TransTV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040459.png" group-title="General",Trans TV (720p) +https://video.detik.com/transtv/smil:transtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Trans7.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040404.png" group-title="General",Trans7 (720p) [Not 24/7] +https://video.detik.com/trans7/smil:trans7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKU.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92697/14040332.png" group-title="",TVKU (720p) [Not 24/7] +http://103.30.1.14:8080/hls/live.m3u8 +#EXTINF:-1 tvg-id="TVRParlemen.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanAnggaran.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Anggaran [Not 24/7] +http://103.18.181.69:1935/golive/livestreambanggar/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanLegislatif.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Legislatif (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestreambaleg/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBadanMusyawarah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Badan Musyawarah [Not 24/7] +http://103.18.181.69:1935/golive/livestreambamus/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBAKN.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen BAKN [Not 24/7] +http://103.18.181.69:1935/golive/livestreambakn/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenBKSAP.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen BKSAP [Not 24/7] +http://103.18.181.69:1935/golive/livestreambksap/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi I (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi II (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi III (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi IV (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream4/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiIX.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi IX (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream9/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiV.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi V (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream5/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VI (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream6/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VII (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream7/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiVIII.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi VIII (480p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream8/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiX.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi X (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream10/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRParlemenKomisiXI.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhlaM4KZ8xQaJpfP8GPX7Ji3tYXVnuSVfVKNV69=s900-c-k-c0x00ffffff-no-rj" group-title="Legislative",TVR Parlemen Komisi XI (720p) [Not 24/7] +http://103.18.181.69:1935/golive/livestream11/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIAceh)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIAceh.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Aceh (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIACEH)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBali)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBali.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bali (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBALI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBabel)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bangka Belitung (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBABEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIBengkulu)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIBengkulu.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Bengkulu (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIBENGKULU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIdki)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIDKIJakarta.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI DKI Jakarta (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIDKI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIGorontalo)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIGorontalo.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Gorontalo (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIGORONTALO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJambi)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJambi.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jambi (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJAMBI)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJABARBANDUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaBarat.id" tvg-country="ID" tvg-language="Indonesian;Javanese;Sundanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Barat (480p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJabarandung)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatengsemarang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTengah.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Tengah (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATENGSEMARANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIJATIMSURABAYA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIJawaTimur.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Jawa Timur (720p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIJatimsurbaya)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalbar)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Barat (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALBAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalselbanjarmsn)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Selatan (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALSELBANJARMSN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKalteng)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Tengah (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTENG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIKaltimsamarinda)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIKalimantanTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Kalimantan Timur (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIKALTIMSAMARINDA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRILampung)/index.m3u8 +#EXTINF:-1 tvg-id="TVRILampung.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Lampung (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRILAMPUNG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIMalukuambon)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIMaluku.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Maluku (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIMALUKUAMBON)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINasional)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINASIONAL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINasional.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="General",TVRI Nasional (480p) +http://202.80.222.130/000001/2/ch14041511560872104862/index.m3u8?virtualDomain=000001.live_hls.zte.com +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINtbmataram)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTBMATARAM)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRINttkupang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRINusaTenggaraTimur.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Nusa Tenggara Timur (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRINTTKUPANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIPapua)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIPapua.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Papua (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIPAPUA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] +http://118.97.50.107/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIRiau.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Riau (720p) [Not 24/7] +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIriau)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISportHD.id" tvg-country="ID" tvg-language="Indonesian;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Sports",TVRI Sport HD (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI4)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIsulbarmajene)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulselmakasar)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Selatan (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULSELMAKASAR)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultengpalu)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTengah.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tengah (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTENGPALU)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISultra)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiTenggara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Tenggara (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULTRA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISulutmanado)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISulawesiUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sulawesi Utara (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISULUTMANADO)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMBARPADANG)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraBarat.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Barat (720p) [Offline] +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumparpadang)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumsel)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraSelatan.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Selatan (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMSEL)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRISumutmedan)/index.m3u8 +#EXTINF:-1 tvg-id="TVRISumateraUtara.id" tvg-country="ID" tvg-language="Indonesian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Sumatera Utara (480p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRISUMUTMEDAN)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIWorld.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI World (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRI3)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) +http://118.97.50.107/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) +http://ott.tvri.co.id/Content/HLS/Live/Channel(TVRIYogyakarta)/index.m3u8 +#EXTINF:-1 tvg-id="TVRIYogyakarta.id" tvg-country="ID" tvg-language="Indonesian;Javanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/TVRILogo2019.svg/320px-TVRILogo2019.svg.png" group-title="Local",TVRI Yogyakarta (720p) +http://wpc.d1627.nucdn.net/80D1627/o-tvri/Content/HLS/Live/Channel(TVRIYOGYAKARTA)/index.m3u8 diff --git a/channels/ie.m3u b/channels/ie.m3u new file mode 100644 index 000000000..913559710 --- /dev/null +++ b/channels/ie.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="OireachtasTV.ie" tvg-country="IE" tvg-language="English" tvg-logo="http://upload.wikimedia.org/wikipedia/commons/7/75/Official_Houses_of_the_Oireachtas_Logo.jpg" group-title="Legislative",Oireachtas TV (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/oirtv/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom1.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/JLYqKC0.jpg" group-title="Legislative",Oireachtas TV Committee Room 1 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr1/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom2.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/2Wxx2jK.jpg" group-title="Legislative",Oireachtas TV Committee Room 2 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr2/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom3.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/EoAQeg5.jpg" group-title="Legislative",Oireachtas TV Committee Room 3 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr3/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVCommitteeRoom4.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/U9U4rgs.jpg" group-title="Legislative",Oireachtas TV Committee Room 4 (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/cr4/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVDailEireann.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/mexKiS0.jpg" group-title="Legislative",Oireachtas TV Dáil Éireann (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/dail/hls.m3u8 +#EXTINF:-1 tvg-id="OireachtasTVSeanadEireann.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/c5TI2DT.jpg" group-title="Legislative",Oireachtas TV Seanad Éireann (720p) +https://d33zah5htxvoxb.cloudfront.net/el/live/seanad/hls.m3u8 +#EXTINF:-1 tvg-id="RTENews.ie" tvg-country="IE" tvg-language="English" tvg-logo="https://i.imgur.com/OisW3m0.png" group-title="News",RTÉ News (1080p) [Geo-blocked] +https://live.rte.ie/live/a/channel3/news.isml/.m3u8 diff --git a/channels/ie_samsung.m3u b/channels/ie_samsung.m3u new file mode 100644 index 000000000..010f602c9 --- /dev/null +++ b/channels/ie_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) +https://rakuten-africanews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-ie.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-ie.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/il.m3u~master b/channels/il.m3u~master new file mode 100644 index 000000000..df8c41e46 --- /dev/null +++ b/channels/il.m3u~master @@ -0,0 +1,55 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AsaChild.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/Vs55QWR.png" group-title="",As a Child (576p) +https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoppingIL21TV.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://upload.wikimedia.org/wikipedia/he/b/b9/סמליל_ערוץ_הקניות.jpg" group-title="Shop",ch 21 ערוץ הקניות (360p) [Timeout] +http://82.80.192.30/shoppingil_ShoppingIL21TVRepeat/smil:ShoppingIL21TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel2News.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/NmnXn2z.jpg" group-title="News",Channel 2 News (432p) +https://keshethlslive-lh.akamaihd.net/i/c2n_1@195269/master.m3u8 +#EXTINF:-1 tvg-id="Channel9.il" tvg-country="IL" tvg-language="Russian" tvg-logo="" group-title="",Channel 9 (540p) [Not 24/7] +http://50.7.231.221:8081/185/index.m3u8?wmsAuthSign=okad +#EXTINF:-1 tvg-id="Channel12.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="General",Channel 12 (576p) [Offline] +http://93.152.174.144:4000/play/ch12/index.m3u8 +#EXTINF:-1 tvg-id="Channel13.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="General",Channel 13 (576p) [Offline] +http://93.152.174.144:4000/play/ch13/index.m3u8 +#EXTINF:-1 tvg-id="Channel24.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/2RC8nh6.jpg" group-title="Music",Channel 24 (720p) +https://keshethlslive-lh.akamaihd.net/i/24live_1@195271/index_2200_av-b.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (1080p) [Not 24/7] +https://live1.panet.co.il/edge_abr/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (1080p) [Not 24/7] +https://live2.panet.co.il/edge_abr/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HalaTV.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OzjftEl.png" group-title="",Hala TV (576p) [Not 24/7] +https://gstream4.panet.co.il/edge/halaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) +https://stream5.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) +https://stream72.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HidabrootChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/wKi97Pg.png" group-title="Religious",Hidabroot (576p) [Not 24/7] +https://stream71.shidur.net/htvlive2/smil:live2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IsraelParsTV.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Israel Pars TV (540p) +https://live.pars-israel.com/iptv/stream.m3u8 +#EXTINF:-1 tvg-id="KabbalahforthePeopleIsrael.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/8R1UWRw.jpg" group-title="",Kabbalah for the People (Israel) (504p) [Not 24/7] +https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8 +#EXTINF:-1 tvg-id="KAN11Israel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/SBeqbv0.png" group-title="",KAN 11 Israel (432p) [Geo-blocked] +https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8 +#EXTINF:-1 tvg-id="KAN11Israel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://i.imgur.com/SBeqbv0.png" group-title="",KAN 11 Israel (720p) [Offline] +http://93.152.174.144:4000/play/kan11/index.m3u8 +#EXTINF:-1 tvg-id="Keshet12.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Keshet 12 (720p) [Not 24/7] +https://iptv--iptv.repl.co/Hebrew/keshet_12 +#EXTINF:-1 tvg-id="KnessetChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnihI34u_uI888nfYeu5QIgZDdyqEGdiQ6gW6PNU3A=s900-c-k-c0x00ffffff-no-rj" group-title="",Knesset Channel (480p) [Not 24/7] +https://contact.gostreaming.tv/Knesset/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Makan33.il" tvg-country="IL" tvg-language="Arabic" tvg-logo="https://www.makan.org.il/images/logo_livemenu_34logo_livemenu_33.png" group-title="",Makan 33 (576p) [Geo-blocked] +https://kanlivep2event-i.akamaihd.net/hls/live/747613/747613/master.m3u8 +#EXTINF:-1 tvg-id="MusayofIsrael.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Musayof (Israel) (240p) [Not 24/7] +http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Reshet13.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="http://thumbs2.imagebam.com/bc/ad/be/19f5c9784877383.jpg" group-title="",Reshet 13 (720p) +https://d18b0e6mopany4.cloudfront.net/out/v1/08bc71cf0a0f4712b6b03c732b0e6d25/index.m3u8 +#EXTINF:-1 tvg-id="Sport2.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 2 (720p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport2/index.m3u8 +#EXTINF:-1 tvg-id="Sport3.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 3 (1080p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport3/index.m3u8 +#EXTINF:-1 tvg-id="Sport4.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sport 4 (1080p) [Not 24/7] +http://93.152.174.144:4000/play/hotsport4/index.m3u8 +#EXTINF:-1 tvg-id="SportsChannel.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="Sports",Sports Channel (720p) [Not 24/7] +http://93.152.174.144:4000/play/s5plus/index.m3u8 +#EXTINF:-1 tvg-id="YnetLive.il" tvg-country="IL" tvg-language="Hebrew" tvg-logo="" group-title="",Ynet Live (1080p) +https://ynet-lh.akamaihd.net/i/ynet_1@123290/master.m3u8 diff --git a/channels/in.m3u~master b/channels/in.m3u~master new file mode 100644 index 000000000..c78e17a57 --- /dev/null +++ b/channels/in.m3u~master @@ -0,0 +1,843 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AndFlix.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.epg.best/in/AndFlix.in.png" group-title="Movies",&Flix (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_2105335046 +#EXTINF:-1 tvg-id="AndPictures.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndPictures.in.png" group-title="Movies",&Pictures (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-tvpictureshd +#EXTINF:-1 tvg-id="AndPriveHD.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndPrive.in.png" group-title="Movies",&privé HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-privéhd +#EXTINF:-1 tvg-id="AndTVHD.in" tvg-country="SAS" tvg-language="Pashto" tvg-logo="https://static.epg.best/in/AndTV.in.png" group-title="Movies",&TV HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-tvhd_0 +#EXTINF:-1 tvg-id="3TamilTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/WfAU7pB.png" group-title="Entertainment",3 Tamil TV (720p) [Not 24/7] +https://6n3yogbnd9ok-hls-live.5centscdn.com/threetamil/d0dbe915091d400bd8ee7f27f0791303.sdp/index.m3u8 +#EXTINF:-1 tvg-id="7SMusic.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/P5EXpPy.jpg" group-title="Music",7S Music (576p) [Not 24/7] +http://103.199.161.254/Content/7smusic/Live/Channel(7smusic)/index.m3u8 +#EXTINF:-1 tvg-id="9XJalwa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6h83JRO.png" group-title="Music",9X Jalwa (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nc/index.m3u8 +#EXTINF:-1 tvg-id="9XJhakaas.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/aZ0f85I.png" group-title="Music",9X Jhakaas (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0mx/index.m3u8 +#EXTINF:-1 tvg-id="9XM.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/fD7wLka.jpg" group-title="Music",9XM (480p) +https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/9XM/9XM.isml/index.m3u8 +#EXTINF:-1 tvg-id="ANEWSdonsTVBhangraFlava.in" tvg-country="IN" tvg-language="Punjabi" tvg-logo="" group-title="Music",A NEWSDONs TV- SWAG SADDA VAKRAA (720p) [Not 24/7] +http://newsjatt.camdvr.org:1935/newsjatt/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="AajTak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/x1Y2P21.png" group-title="News",Aaj Tak (360p) [Geo-blocked] +https://lmil.live-s.cdn.bitgravity.com/cdn-live/_definst_/lmil/live/aajtak_app.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AathavanTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/IgwQ7o5.png" group-title="Entertainment",Aathavan TV (720p) [Not 24/7] +http://45.77.66.224:1935/athavantv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ABPAnanda.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://tv.releasemyad.com/images/logo/20160108044853abp-ananada.jpg" group-title="News",ABP Ananda (720p) +https://abp-i.akamaihd.net/hls/live/765530/abpananda/master.m3u8 +#EXTINF:-1 tvg-id="ABPAsmita.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/XIkRbG7f.png" group-title="News",ABP Asmita (720p) +https://abp-i.akamaihd.net/hls/live/765532/abpasmita/master.m3u8 +#EXTINF:-1 tvg-id="ABPAsmita.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/XIkRbG7f.png" group-title="News",ABP Asmita (324p) +http://abpasmita-lh.akamaihd.net/i/abpasmita_1@77821/master.m3u8 +#EXTINF:-1 tvg-id="ABPHindi.in" tvg-country="IN" tvg-language="English" tvg-logo="https://static.abplive.in/wp-content/themes/abp-hindi/images/logo/hindiLogoD.png" group-title="News",ABP Hindi (720p) +https://abp-i.akamaihd.net/hls/live/765529/abphindi/master.m3u8 +#EXTINF:-1 tvg-id="ABPHindi.in" tvg-country="IN" tvg-language="English" tvg-logo="https://static.abplive.in/wp-content/themes/abp-hindi/images/logo/hindiLogoD.png" group-title="News",ABP Hindi (324p) +http://hindiabp-lh.akamaihd.net/i/hindiabp1new_1@192103/master.m3u8 +#EXTINF:-1 tvg-id="ABPMajha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/GteRQ6A.png" group-title="News",ABP Majha (720p) +https://abp-i.akamaihd.net/hls/live/765531/abpmajha/master.m3u8 +#EXTINF:-1 tvg-id="ACV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/FNBkLUA.jpg" group-title="",ACV [Offline] +https://acv.asianetmobiletvplus.com/webstreams/8f8e72769cb3e3a6e27c220e1e3887b8.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVJukebox.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/tYPn1lW.png" user-agent="AsianetMobileTVPlus" group-title="Music",ACV JukeBox (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/acvjukebox_awannbgiynqynhufohawnvbmlgglfpuc/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/fP0g1np.jpg" user-agent="AsianetMobileTVPlus" group-title="News",ACV News (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/acvnews_3e85eb4c12bd2110d3f495676205d50a/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVPlus.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/DjtPQeg.jpg" user-agent="AsianetMobileTVPlus" group-title="",ACV Plus (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/acvplus_ef22daf97d61acb4bf52376c4105ad02/playlist.m3u8 +#EXTINF:-1 tvg-id="ACVUtsav.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LLN585Y.png" user-agent="AsianetMobileTVPlus" group-title="",ACV Utsav (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/acvutsav_021c9292219a98f899a7b74f0f34baa7/playlist.m3u8 +#EXTINF:-1 tvg-id="ADNGold.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/UzPPjoH.jpg" user-agent="AsianetMobileTVPlus" group-title="",ADN Gold (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/adngold_dibbcspwxywdcuwawgrvurjwitwbiksl/playlist.m3u8 +#EXTINF:-1 tvg-id="AkaramKidz.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/hAgaVPa.jpg" group-title="Kids",Akaram Kidz (720p) [Not 24/7] +http://akaram.zecast.net/akaram-live/akaramkidz/index.m3u8 +#EXTINF:-1 tvg-id="AKDCalcuttaNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://calcuttanews.tv/images/cnwotag.png" group-title="News",AKD Calcutta News (540p) [Geo-blocked] +https://d39iawgzv3h0yo.cloudfront.net/out/v1/1ef4344a3b4a41908915d58ac7bd5e23/index.m3u8 +#EXTINF:-1 tvg-id="AmarUjala.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Amar Ujala (360p) [Not 24/7] +https://streamcdn.amarujala.com/live/smil:stream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AmritaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xxWaGyn.jpg" group-title="Entertainment",Amrita TV (576p) +http://103.199.161.254/Content/amrita/Live/Channel(Amrita)/index.m3u8 +#EXTINF:-1 tvg-id="Anjan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Anjan (720p) [Not 24/7] +https://f3.vstream.online:7443/bstb/ngrp:anjan_hdall/playlist.m3u8 +#EXTINF:-1 tvg-id="ApnaPunjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Apna Punjab (720p) +http://cdn5.live247stream.com/apnapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ArtistAloud.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Artist Aloud (1080p) [Not 24/7] +https://live.hungama.com/linear/artist-aloud/playlist.m3u8 +#EXTINF:-1 tvg-id="AshrafiChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Ashrafi Channel (484p) [Not 24/7] +http://ashrafichannel.livebox.co.in/ashrafivhannelhls/live.m3u8 +#EXTINF:-1 tvg-id="AsianetMiddleEast.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/du9iZ0s.png" group-title="Entertainment",Asianet Middle East (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0k6/index.m3u8 +#EXTINF:-1 tvg-id="AsianetNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/89LBgkl.png" group-title="News",Asianet News (576p) +http://103.199.161.254/Content/asianetnews/Live/Channel(Asianetnews)/index.m3u8 +#EXTINF:-1 tvg-id="AsianetNews.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/89LBgkl.png" group-title="News",Asianet News (720p) [Not 24/7] +https://vidcdn.vidgyor.com/asianet-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.asianetnews.com/v1/images/bangla_logo.png" group-title="News",Asianet News Bangla (360p) [Not 24/7] +https://vidcdn.vidgyor.com/rplus-origin/rplusasianetlive/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsKannada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.asianetnews.com/v1/images/asianet_suvarna_news.png" group-title="News",Asianet News Kannada (360p) [Not 24/7] +https://vidcdn.vidgyor.com/suvarna-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="AsianetNewsTamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.asianetnews.com/v1/images/tamil_logo.png" group-title="News",Asianet News Tamil (360p) [Not 24/7] +https://vidcdn.vidgyor.com/ptm-origin/aslive/playlist.m3u8 +#EXTINF:-1 tvg-id="AssamTalks.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/GmXawATX.png" group-title="",Assam Talks (240p) [Not 24/7] +http://vidnetcdn.vidgyor.com/assamtalks-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="ATNBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",ATN Bangla (1080p) [Offline] +http://103.81.104.118/hls/stream17.m3u8 +#EXTINF:-1 tvg-id="AyushTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PWzvp0B.png" group-title="Lifestyle",Ayush TV (360p) [Not 24/7] +https://95eryw39dwn4-hls-live.wmncdn.net/Ayushu/271ddf829afeece44d8732757fba1a66.sdp/index.m3u8 +#EXTINF:-1 tvg-id="B4UBhojpuri.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/FizAx6D.png" group-title="Movies",B4U Bhojpuri (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nq/index.m3u8 +#EXTINF:-1 tvg-id="B4UHitz.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",B4U Hitz (720p) [Not 24/7] +http://14.199.164.20:4001/play/a0wh/index.m3u8 +#EXTINF:-1 tvg-id="B4UKadak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/vwkjtRT.png" group-title="Movies",B4U Kadak (576p) [Not 24/7] +http://103.199.160.85/Content/moviehouse/Live/Channel(MovieHouse)/index.m3u8 +#EXTINF:-1 tvg-id="B4UMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FiIewq2.png" group-title="Movies",B4U movies (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0wj/index.m3u8 +#EXTINF:-1 tvg-id="B4UMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/LZxPgLh.png" group-title="Music",B4U Music (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0wk/index.m3u8 +#EXTINF:-1 tvg-id="B4UPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SsooYqR.png" group-title="Movies",B4U Plus (720p) [Not 24/7] +http://14.199.164.20:4001/play/a0wi/index.m3u8 +#EXTINF:-1 tvg-id="BflixMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/z3ALZQQ.jpg" group-title="Movies",Bflix Movies (480p) +https://m-c036-j2apps.s.llnwi.net/hls/5045.BFlixMovies.in.m3u8 +#EXTINF:-1 tvg-id="BhojpuriCinema.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/ABxIO7r.jpg" group-title="Movies",Bhojpuri Cinema (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0rj/index.m3u8 +#EXTINF:-1 tvg-id="Bollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Bollywood (480p) [Offline] +https://m-c09-j2apps.s.llnwi.net/hls/8001.Bollywood.in.m3u8 +#EXTINF:-1 tvg-id="BollywoodClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://iptv.live/images/logo/channel/smalls/4b865f70179ee2a8bebc3260a0315f67.png" group-title="Classic",Bollywood Classic [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodClassic/6.m3u8/Level(1677721)?end=END&start=LIVE +#EXTINF:-1 tvg-id="BollyWoodHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",BollyWood HD [Offline] +http://telekomtv-ro.akamaized.net/shls/LIVE$BollywoodHD/247.m3u8/Level(3670016)?end=END&start=LIVE +#EXTINF:-1 tvg-id="BoogleBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://booglebollywood.com/wp-content/uploads/2018/02/boogle-bollywood-final_2-300x96.png" group-title="",Boogle Bollywood [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-165 +#EXTINF:-1 tvg-id="BoogleBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://booglebollywood.com/wp-content/uploads/2018/02/boogle-bollywood-final_2-300x96.png" group-title="",Boogle Bollywood (1080p) [Not 24/7] +http://live.agmediachandigarh.com/booglebollywood/774e3ea9f3fa9bcdac47f445b83b6653.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BoxCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/LGJlmtp.png" group-title="Movies",Box Cinema (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0su/index.m3u8 +#EXTINF:-1 tvg-id="CaptainNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/e/e6/Captain_News.jpg/revision/latest/scale-to-width-down/200?cb=20191224082105" group-title="News",Captain News (480p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=Xy1avvmtmRk +#EXTINF:-1 tvg-id="CaptainTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/UXg6sac.png" group-title="Entertainment",Captain TV (576p) [Not 24/7] +http://103.199.160.85/Content/captain/Live/Channel(Captain)/index.m3u8 +#EXTINF:-1 tvg-id="Channel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://static.epg.best/in/ChannelV.in.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Channel (720p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://livecdn.fptplay.net/foxlive/channelvhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelDivya.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/fYgExotG.png" group-title="",Channel Divya (360p) [Not 24/7] +http://edge-ind.inapcdn.in:1935/berry1/latest.stream_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelWin.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Channel Win (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/channelwinlive/channelwinlive/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelY.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Channel Y (720p) [Not 24/7] +http://cdn19.live247stream.com/channely/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCAwaaz.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Business",CNBC Awaaz (504p) [Not 24/7] +https://cnbcawaaz-lh.akamaihd.net/i/cnbcawaaz_1@174872/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNBCBajar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",CNBC Bajar (504p) [Geo-blocked] +https://cnbcbazar-lh.akamaihd.net/i/cnbcbajar_1@178933/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNBCTV18.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/3yumcV3.jpg" group-title="Business",CNBC TV18 (504p) +https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="Colors.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/54bd3c3a5a59d.png" group-title="",Colors (720p) [Not 24/7] +http://master.beeiptv.com:8081/colors/colorsbdtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ColorsBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/wdSDF2V.png" group-title="",Colors Bangla (1080p) [Offline] +http://tvflix03.ddns.net/ColorsBangla_ENC/video.m3u8 +#EXTINF:-1 tvg-id="Dabangg.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/hpizqP6.png" group-title="Entertainment",Dabangg (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nb/index.m3u8 +#EXTINF:-1 tvg-id="DarshanaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://www.tvchannelpricelist.com/wp-content/uploads/channels-logo-300/darshana-tv-channel-logo-300x300.jpg" group-title="Entertainment",Darshana TV (360p) [Not 24/7] +https://live.neestream.net/neestream_01/darshanatv/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="DDBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Entertainment",DD Bangla (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-ddbangla +#EXTINF:-1 tvg-id="DDMalayalam.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/9HfMVKs.jpg" group-title="Entertainment",DD Malayalam (576p) +http://103.199.161.254/Content/ddmalayalam/Live/Channel(DDMalayalam)/index.m3u8 +#EXTINF:-1 tvg-id="DDNational.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/MohlE5B.png" group-title="Entertainment",DD National (576p) +http://103.199.161.254/Content/ddnational/Live/Channel(DDNational)/index.m3u8 +#EXTINF:-1 tvg-id="DDNational.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/MohlE5B.png" group-title="Entertainment",DD National (480p) [Not 24/7] +https://m-c036-j2apps.s.llnwi.net/hls/0098.DDNational.in.m3u8 +#EXTINF:-1 tvg-id="DDNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9ozOypJ.png" group-title="News",DD News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCKwucPzHZ7zCUIf7If-Wo1g/live +#EXTINF:-1 tvg-id="DDPunjabi.in" tvg-country="IN" tvg-language="Punjabi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/vPCWBEFx.png" group-title="News",DD Punjabi (576p) [Offline] +https://hls.media.nic.in/live/ddpunjabi1/index.m3u8 +#EXTINF:-1 tvg-id="DDSports.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PEEELsL.png" group-title="Sports",DD Sports (576p) +http://103.199.161.254/Content/ddsports/Live/Channel(DDSPORTS)/index.m3u8 +#EXTINF:-1 tvg-id="DesiBeatsHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Desi Beats HD (720p) +http://cdn7.live247stream.com/desibeats/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DesiChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Desi Channel (720p) +https://live.wmncdn.net/desichannel/7e2dd0aed46b70a5c77f4affdb702e4b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DesiPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Desi Plus (720p) +http://cdn2.live247stream.com/desiplus/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Dhamaal.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Dhamaal (1080p) [Not 24/7] +https://live.hungama.com/linear/dhamaal/playlist.m3u8 +#EXTINF:-1 tvg-id="Dhinchaak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/T2c6PjU.jpg" group-title="Movies",Dhinchaak (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0o5/index.m3u8 +#EXTINF:-1 tvg-id="Dhinchaak2.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/AC4ze9o.jpg" group-title="Movies",Dhinchaak 2 (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0tm/index.m3u8 +#EXTINF:-1 tvg-id="DighvijayNews24x7.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/wdE7gxU.png" group-title="News",Dighvijay (240p) [Not 24/7] +https://vidcdn.vidgyor.com/dighvijay-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="DilSe.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Dil Se (480p) [Not 24/7] +https://live.hungama.com/linear/dil-se/playlist.m3u8 +#EXTINF:-1 tvg-id="DishaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Disha TV (360p) [Not 24/7] +http://xlbor3aadvaj-hls-live.wmncdn.net/disha/stream.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Dishum.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/k4j2QJX.png" group-title="Entertainment",Dishum [Geo-blocked] +https://m-c29-j2apps.s.llnwi.net/hls/5332.Dishum.in.m3u8 +#EXTINF:-1 tvg-id="Dishum.in" tvg-country="IN" tvg-language="Bhojpuri" tvg-logo="https://i.imgur.com/k4j2QJX.png" group-title="Entertainment",Dishum (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pe/index.m3u8 +#EXTINF:-1 tvg-id="DivyaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Divya TV [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-divyatv +#EXTINF:-1 tvg-id="DocuBayTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://od.lk/s/MF8yMzAxMjQ1MzBf/Docubay_750x750.png" group-title="Entertainment",DocuBay TV (1080p) [Not 24/7] +https://docubayvh.s.llnwi.net/526a07ab-6ae7-4b6c-84a1-159791416484_1000004372_HLS/manifest.m3u8 +#EXTINF:-1 tvg-id="DreamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/VdcG0i6.png" group-title="Entertainment",Dream TV (720p) [Not 24/7] +https://cloudflare-cdn301.ottpro.in/dream_media/reedeem/playlist.m3u8 +#EXTINF:-1 tvg-id="DreamzTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yXHmKtT.png" group-title="Entertainment",Dreamz TV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/DREAMHD/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="DumTVKannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/e43ysdo.png" group-title="Entertainment",Dum TV Kannada (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0sq/index.m3u8 +#EXTINF:-1 tvg-id="E24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/VBu7r0A.png" group-title="Entertainment",E24 (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pc/index.m3u8 +#EXTINF:-1 tvg-id="EETTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/f7J37yv.png" group-title="Entertainment",EET TV (1080p) [Not 24/7] +https://live.streamjo.com/eetlive/eettv.m3u8 +#EXTINF:-1 tvg-id="Enter10Bangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/fkOxQtS.png" group-title="Entertainment",Enter10 Bangla (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0j5/index.m3u8 +#EXTINF:-1 tvg-id="Enter10Rangeela.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/419CJW8.png" group-title="Entertainment",Enter10 Rangeela (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0tp/index.m3u8 +#EXTINF:-1 tvg-id="EpicTV.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/XsRrnc5.png" group-title="",Epic TV [Geo-blocked] +https://m-c03-j2apps.s.llnwi.net/hls/2639.Epic.in.m3u8 +#EXTINF:-1 tvg-id="ETNow.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/rhkI95a.png" group-title="Business",ET Now (576p) +https://etnowweblive-lh.akamaihd.net/i/ETN_1@348070/master.m3u8 +#EXTINF:-1 tvg-id="ETVAndhraPradesh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FfiMH8z.jpg" group-title="News",ETV Andhra Pradesh (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCSbwShxZsBiqqWwtUidmS6g/live +#EXTINF:-1 tvg-id="ETVChattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",ETV Chattisgarh [Offline] +https://etv-mp.akamaized.net/i/etv_mp_hls_1@175737/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="ETVTelangana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/lQBs2Cs.jpg" group-title="News",ETV Telangana (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC6ickpgDIsltU_-8CbZaksQ/live +#EXTINF:-1 tvg-id="ETVUttarakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",ETV Uttarakhand [Offline] +https://etv-up.akamaized.net/i/etv_up_hls_1@175735/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="FaktMarathi.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/y0VS4QN.png" group-title="Entertainment",Fakt Marathi (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0q8/index.m3u8 +#EXTINF:-1 tvg-id="FaktMarathi.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="https://i.imgur.com/y0VS4QN.png" group-title="Entertainment",Fakt Marathi (480p) [Offline] +https://m-c036-j2apps.s.llnwi.net/hls/3200.FaktMarathi.in.m3u8 +#EXTINF:-1 tvg-id="FASTWAYNEWS.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",FASTWAY NEWS (720p) [Not 24/7] +http://163.47.214.155:1935/fwnews/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Filmeraa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Filmeraa (720p) +https://a.jsrdn.com/broadcast/7ef91d3d7a/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FlowersTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://www.flowerstv.in/wp-content/uploads/2017/12/Flowers-Logo-alpha-1.png" group-title="Entertainment",Flowers TV (576p) +http://103.199.161.254/Content/flowers/Live/Channel(Flowers)/index.m3u8 +#EXTINF:-1 tvg-id="FoodFood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/J930pA1.png" group-title="Entertainment",Food Food (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0qx/index.m3u8 +#EXTINF:-1 tvg-id="GabruuTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/k9kHJv9.jpg" group-title="Music",Gabruu TV [Offline] +http://104.237.60.234/live/gabruutv.m3u8 +#EXTINF:-1 tvg-id="GaundaPunjabTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/J74dCx6.png" group-title="",Gaunda Punjab TV (720p) [Not 24/7] +http://start.agmediachandigarh.com/gaundapunjab/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GDNSLudhiana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",GDNS Ludhiana (1080p) [Not 24/7] +http://akalmultimedia.net:1935/gdnslive/gdns-live/chunklist.m3u8 +#EXTINF:-1 tvg-id="GlobalPunjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6GcaSUS.jpg" group-title="News",Global Punjab (720p) [Not 24/7] +https://media.streambrothers.com:1936/8522/8522/playlist.m3u8 +#EXTINF:-1 tvg-id="GSTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/zCIK5Ze.png" group-title="",GSTV (720p) [Not 24/7] +https://1-213-10546-44.b.cdn13.com/388656798579293628302251.m3u8 +#EXTINF:-1 tvg-id="HiDosti.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/C7XN3JP.png" group-title="",Hi Dosti (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0rg/index.m3u8 +#EXTINF:-1 tvg-id="HiruTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/1/15/Hiru_TV-Logo.png/220px-Hiru_TV-Logo.png" group-title="",Hiru TV (360p) [Not 24/7] +http://cdncities.com/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="HulchulTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Hulchul TV (720p) [Not 24/7] +http://cdn12.henico.net:8080/live/jbani/index.m3u8 +#EXTINF:-1 tvg-id="HungamaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/ctjMaOW.png" group-title="Kids",Hungama TV (576p) [Offline] +http://103.153.39.34:8000/play/a04l/index.m3u8 +#EXTINF:-1 tvg-id="ILove.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/u191zfh.png" group-title="Music",I Love (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0p3/index.m3u8 +#EXTINF:-1 tvg-id="Imayam.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/CzdM0pg.png" group-title="Entertainment",Imayam (480p) [Not 24/7] +https://idvd.multitvsolution.com/idvo/imayamtv.m3u8 +#EXTINF:-1 tvg-id="IndiaNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/IB1ycQJs.png" group-title="News",India News (480p) +https://m-c036-j2apps.s.llnwi.net/hls/0442.IndiaNews.in.m3u8 +#EXTINF:-1 tvg-id="IndiaToday.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://akm-img-a-in.tosshub.com/sites/all/themes/itg/logo.png" group-title="News",India Today (360p) [Not 24/7] +https://indiatodaylive.akamaized.net/hls/live/2014320/indiatoday/indiatodaylive/playlist.m3u8 +#EXTINF:-1 tvg-id="IndiaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/IYXrLPs.png" group-title="",India TV (480p) [Not 24/7] +https://live-indiatvnews.akamaized.net/indiatv-origin/ITV_1_1@199237/playlist.m3u8 +#EXTINF:-1 tvg-id="IndiaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/IYXrLPs.png" group-title="",India TV (480p) [Not 24/7] +https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="IsaiAruvi.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/radWIeb.png" group-title="Music",Isai Aruvi (576p) +http://103.199.161.254/Content/isaiaruvi/Live/Channel(IsaiAruvi)/index.m3u8 +#EXTINF:-1 tvg-id="JaihindTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Jw0M6Kp.jpg" group-title="Entertainment",Jaihind TV (576p) +http://103.199.161.254/Content/jaihind/Live/Channel(Jaihind)/index.m3u8 +#EXTINF:-1 tvg-id="JanTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/0qNJuVP.jpg" group-title="News",Jan TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.youtube.com/channel/UCjmnq35TvJ1J8JZS49OPg-Q/live +#EXTINF:-1 tvg-id="JanTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/0qNJuVP.jpg" group-title="News",Jan TV (360p) [Not 24/7] +http://jantvstream.in:1935/edge1/sc1jantv.stream_aac/playlist.m3u8 +#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (720p) +https://vidcdn.vidgyor.com/janamtv-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCNVkxRPqsBNejO6B9thG9Xw/live +#EXTINF:-1 tvg-id="JanamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LWUpmDm.png" group-title="News",Janam TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ja/index.m3u8 +#EXTINF:-1 tvg-id="JanapriyamTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/rbn6YSb.png" group-title="Entertainment",Janapriyam TV [Offline] +https://jio.instream.ml/jio.php?c=Janapriyam_News&e=.m3u8&q=400 +#EXTINF:-1 tvg-id="JanataaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Janataa TV [Not 24/7] +http://mydreams.livebox.co.in/Janataatvhls/Janataatv.m3u8 +#EXTINF:-1 tvg-id="JantaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Janta TV (360p) [Not 24/7] +https://live.wmncdn.net/jantatv/live.stream/index.m3u8 +#EXTINF:-1 tvg-id="JayaPlus.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/7/7b/Jaya_Plus.jpeg/revision/latest/scale-to-width-down/250?cb=20191224113458" group-title="News",Jaya Plus (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=eWNFGCYl7Y8 +#EXTINF:-1 tvg-id="JeevanTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/PYs1W1Y.png" group-title="",Jeevan TV (576p) +http://103.199.161.254/Content/jeevan/Live/Channel(Jeevan)/index.m3u8 +#EXTINF:-1 tvg-id="JhanjarMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/gIYOu4i.jpg" group-title="Music",Jhanjar Music (1080p) [Not 24/7] +http://159.203.9.134/hls/jhanjar_music/jhanjar_music.m3u8 +#EXTINF:-1 tvg-id="JonackTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Jonack TV (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/jonakk/jonakk/playlist.m3u8 +#EXTINF:-1 tvg-id="KadakHits.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Kadak Hits (480p) [Not 24/7] +https://live.hungama.com/linear/kadak-hits/playlist.m3u8 +#EXTINF:-1 tvg-id="KairaliArabia.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/dp6BvWJ.png" group-title="Entertainment",Kairali Arabia (480p) [Not 24/7] +https://idvd.multitvsolution.com/idvo/kairaliarabia_540p/index.m3u8 +#EXTINF:-1 tvg-id="KairaliNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hXsVrIh.jpg" group-title="News",Kairali News (576p) +http://103.199.161.254/Content/people/Live/Channel(People)/index.m3u8 +#EXTINF:-1 tvg-id="KairaliNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hXsVrIh.jpg" group-title="News",Kairali News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCkCWitaToNG1_lR-Si1oMrg/live +#EXTINF:-1 tvg-id="KairaliTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/8Di4h6t.png" group-title="Entertainment",Kairali TV (480p) +http://103.199.161.254/Content/kairali/Live/Channel(Kairali)/index.m3u8 +#EXTINF:-1 tvg-id="KairaliWe.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Z626hKz.jpg" group-title="Entertainment",Kairali We (576p) +http://103.199.161.254/Content/we/Live/Channel(We)/index.m3u8 +#EXTINF:-1 tvg-id="KalaiIsai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Music",Kalai Isai (1080p) [Not 24/7] +http://singamcloud.in:1935/kalai/kalaiisai/playlist.m3u8 +#EXTINF:-1 tvg-id="Kalaignar.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://upload.wikimedia.org/wikipedia/en/3/3a/Kalaignar_logo.jpg" group-title="",Kalaignar (576p) +http://103.199.161.254/Content/kalaignartv/Live/Channel(KalaignarTV)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarMurasu.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/ZDXVWVQ.png" group-title="Music",Kalaignar Murasu (576p) [Not 24/7] +http://103.199.160.85/Content/kalaignarmurasu/Live/Channel(KalaignarMurasu)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarSeithikal.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/qWOnWhQ.png" group-title="News",Kalaignar Seithikal (576p) [Not 24/7] +http://103.199.160.85/Content/kalaignarseithikal/Live/Channel(KalaignarSeithikal)/index.m3u8 +#EXTINF:-1 tvg-id="KalaignarSeithikal.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/d/dc/Seithigal.jpeg/revision/latest/scale-to-width-down/260?cb=20191224114931" group-title="News",Kalaignar Seithikal (1080p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=taLsR3aC2vw +#EXTINF:-1 tvg-id="KalaignarSirippoli.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/bqXRXaZ.png" group-title="Comedy",Kalaignar Sirippoli (576p) +http://103.199.161.254/Content/kalaignarsirippoli/Live/Channel(Kalaignarsirippoli)/index.m3u8 +#EXTINF:-1 tvg-id="KalingaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/e1HGzSqS.png" group-title="",Kalinga TV (864p) [Not 24/7] +https://live.mycast.in/kalingatv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KanakNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/4ZNf4dH3.png" group-title="News",Kanak News (720p) [Not 24/7] +https://live.kanaknews.com:4443/live/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KannurOne.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/hytRL90.png" group-title="",Kannur One (720p) [Not 24/7] +https://bnwdplewrp3a-hls-live.wmncdn.net/kannur1/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KannurVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/Zo6TFvK.png" group-title="",Kannur Vision (360p) [Not 24/7] +https://stream.ufworldind.in/live/kvision/playlist.m3u8 +#EXTINF:-1 tvg-id="KappaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/MkfPo1V.jpg" group-title="Lifestyle",Kappa TV (360p) +http://103.199.161.254/Content/kappa/Live/Channel(Kappa)/index.m3u8 +#EXTINF:-1 tvg-id="KasthuriTV.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://upload.wikimedia.org/wikipedia/en/7/78/Kasthuri-TV-logo.jpg" group-title="Entertainment",Kasthuri (576p) +http://103.199.161.254/Content/kasthuritv/Live/Channel(KasthuriTV)/index.m3u8 +#EXTINF:-1 tvg-id="KaumudyTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://kaumudy.tv/images/logo.jpg" group-title="Entertainment",Kaumudy TV (720p) [Offline] +https://live.wmncdn.net/kaumuditv1/live.stream/index.m3u8 +#EXTINF:-1 tvg-id="KCLTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/bkp9dIm.png" group-title="Entertainment",KCL TV (720p) [Not 24/7] +http://kcltv.livebox.co.in/kclhls/live.m3u8 +#EXTINF:-1 tvg-id="KCV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/9YD8u4H.png" group-title="Entertainment",KCV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/KCVTV/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="KCVMovies.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/NY94lnZ.png" group-title="Movies",KCV Movies (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/KCVMOVIE/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="Kentv.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/OnYOCmw.jpg" group-title="",Ken TV (360p) +https://stream.ufworldind.in/kentvlive/smil:kentv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KeralaVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/0XF3nLw.png" group-title="Entertainment",Kerala Vision (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ni/index.m3u8 +#EXTINF:-1 tvg-id="KeralaVisionNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://nettv4u.com/uploads/23-07-2020/kerala-vision.png" group-title="News",Kerala Vision News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtSeMwydGw6mDSZaIUaJ5bw/live +#EXTINF:-1 tvg-id="KhabrainAbhiTak.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Khabrain Abhi Tak (480p) +https://vidcdn.vidgyor.com/kat-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="KITEVicters.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/RvZxSkx.png" group-title="Education",KITE Victers (Kerala) (720p) [Not 24/7] +https://932y4x26ljv8-hls-live.5centscdn.com/victers/tv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KrishnaVani.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Krishna Vani (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-166 +#EXTINF:-1 tvg-id="LifePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Life Punjabi (720p) [Not 24/7] +http://live.agmediachandigarh.com/lifepunjabi/e27b5c8d89b83882ca3b018eeed14888.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="LifeTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Life TV (480p) [Not 24/7] +http://59c3ec70cfde0.streamlock.net/channel_6/channel6/playlist.m3u8 +#EXTINF:-1 tvg-id="LokSabhaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/WRaWgBYY.png" group-title="",Lok Sabha TV (576p) [Not 24/7] +https://nicls1-lh.akamaihd.net/i/lst_1@26969/master.m3u8 +#EXTINF:-1 tvg-id="MahaMovie.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/hpShFDL.png" group-title="Movies",Maha Movie (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0q7/index.m3u8 +#EXTINF:-1 tvg-id="MahaMovie.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/hpShFDL.png" group-title="Movies",Maha Movie (480p) [Not 24/7] +https://m-c036-j2apps.s.llnwi.net/hls/2820.MahaMovie.in.m3u8 +#EXTINF:-1 tvg-id="MakkalTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/Sv4bLGX.png" group-title="General",Makkal TV [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-makkaltv +#EXTINF:-1 tvg-id="MakkalTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/Sv4bLGX.png" group-title="General",Makkal TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0l1/index.m3u8 +#EXTINF:-1 tvg-id="MalabarNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yJWfyfM.png" group-title="News",Malabar News (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/live/malabarnews/playlist.m3u8 +#EXTINF:-1 tvg-id="MalabarVision.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ZNbdouM.jpg" group-title="News",Malabar Vision (720p) +http://cdn1.logicwebs.in:1935/malabar/malabar/playlist.m3u8 +#EXTINF:-1 tvg-id="Malaimurasu.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/uFiHtQX.png" group-title="News",Malaimurasu (480p) [Not 24/7] +https://malaimurasucdn.purplestream.com/malaimurasu/49992ade0624eda468a31e137996d044.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="MalppuramChannel.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/X2aZBiz.png" group-title="News",Malappuram Channel (720p) [Not 24/7] +http://103.78.18.137:1935/live/mlpchannel/chunklist.m3u8 +#EXTINF:-1 tvg-id="Mangalam.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/V5nQl9m.png" group-title="News",Mangalam (576p) [Not 24/7] +http://103.199.160.85/Content/mangalam/Live/Channel(Mangalam)/index.m3u8 +#EXTINF:-1 tvg-id="ManoramaNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/QWHbIYt.png" group-title="News",Manorama News (576p) +http://103.199.161.254/Content/manoramanews/Live/Channel(ManoramaNews)/index.m3u8 +#EXTINF:-1 tvg-id="ManoranjanGrand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/2BSvBGG.png" group-title="Movies",Manoranjan Grand (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0m2/index.m3u8 +#EXTINF:-1 tvg-id="ManoranjanMovies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7uHOyA.png" group-title="Movies",Manoranjan Movies (240p) +https://m-c036-j2apps.s.llnwi.net/hls/2172.ManoranjanMovies.in.m3u8 +#EXTINF:-1 tvg-id="MarutamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/cFNw4Af.png" group-title="Entertainment",Marutam TV (720p) [Not 24/7] +http://mntv.livebox.co.in/mntvhls/mntv.m3u8 +#EXTINF:-1 tvg-id="Mastiii.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/iDDExsO.png" group-title="Music",Mastiii (576p) [Not 24/7] +http://103.199.160.85/Content/masthi/Live/Channel(Masthi)/index.m3u8 +#EXTINF:-1 tvg-id="MathrubhumiNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xlGIEnZ.png" group-title="News",Mathrubhumi News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCwXrBBZnIh2ER4lal6WbAHw/live +#EXTINF:-1 tvg-id="MathrubhumiNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xlGIEnZ.png" group-title="News",Mathrubhumi News (576p) [Not 24/7] +http://103.199.161.254/Content/mathrubhuminews/Live/Channel(Mathrubhuminews)/index.m3u8 +#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0kd/index.m3u8 +#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0pa/index.m3u8 +#EXTINF:-1 tvg-id="MazhavilManorama.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" user-agent="stream" group-title="Entertainment",Mazhavil Manorama (404p) [Offline] +#EXTVLCOPT:http-user-agent=stream +http://cdn.asianetmobiletvplus.com/channels/mazhavil_wxjylngynrbeykzthdrhawtunzcuowsr/playlist.m3u8 +#EXTINF:-1 tvg-id="MazhavilManoramaHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/xCHQrH0.png" group-title="Entertainment",Mazhavil Manorama HD (1080p) [Not 24/7] +http://14.199.164.20:4001/play/a0p9/index.m3u8 +#EXTINF:-1 tvg-id="MediaOne.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/tQvdxWo.jpg" group-title="News",Media One (576p) +http://103.199.161.254/Content/mediaone/Live/Channel(MediaOne)/index.m3u8 +#EXTINF:-1 tvg-id="MH1Music.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/mCsYdYS.png" group-title="Music",MH1 Music (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhonemusic/mhonemusic/playlist.m3u8 +#EXTINF:-1 tvg-id="MH1Prime.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/UdoA8f7.png" group-title="",MH1 Prime (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhonenews/mhonenews/playlist.m3u8 +#EXTINF:-1 tvg-id="MirrorNow.in" tvg-country="IN" tvg-language="English" tvg-logo="https://yt3.ggpht.com/-XmvqPl571Ak/AAAAAAAAAAI/AAAAAAAAAAA/mMm0Tpd90kU/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="",Mirror Now (576p) +https://mbnowweb-lh.akamaihd.net/i/MRN_1@346545/master.m3u8 +#EXTINF:-1 tvg-id="MKSix.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/FAytBoW.png" group-title="",MK Six (576p) [Not 24/7] +http://103.199.160.85/Content/mktv6/Live/Channel(MKTV6)/index.m3u8 +#EXTINF:-1 tvg-id="MKTunes.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/m8DPQd6.png" group-title="Music",MK Tunes (576p) [Not 24/7] +http://103.199.160.85/Content/mktunes/Live/Channel(MKTunes)/index.m3u8 +#EXTINF:-1 tvg-id="MKTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/UxxbaR3.png" group-title="Entertainment",MK TV (576p) [Not 24/7] +http://103.199.160.85/Content/mktv/Live/Channel(MKTV)/index.m3u8 +#EXTINF:-1 tvg-id="MSignMedia.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://expressott.in/uploads/tv_image/m-sign-media.PNG" group-title="Entertainment",Msign Media (576p) [Not 24/7] +http://cloud.logicwebs.in:1935/msign/msignmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="MtunesPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/Rt7k6E3.png" group-title="Music",Mtunes Plus (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0p2/index.m3u8 +#EXTINF:-1 tvg-id="MusicIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7tPCwh.png" group-title="Music",Music India (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0mt/index.m3u8 +#EXTINF:-1 tvg-id="MusicIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/F7tPCwh.png" group-title="Music",Music India (576p) [Not 24/7] +http://103.199.160.85/Content/musicindia/Live/Channel(MusicIndia)/index.m3u8 +#EXTINF:-1 tvg-id="Naaptol.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://pbs.twimg.com/profile_images/897059156556783616/BUbUxAuW.jpg" group-title="",Naaptol (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0n1/index.m3u8 +#EXTINF:-1 tvg-id="Namdhari.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Namdhari (404p) [Not 24/7] +https://namdhari.tv/live/sbs1.m3u8 +#EXTINF:-1 tvg-id="NandighoshaTv.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Nandighosha Tv (720p) [Not 24/7] +https://live.mycast.in/ngtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NaxtraNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Naxtra News (720p) [Not 24/7] +http://wearelive.livebox.co.in/naxatratvhls/Naxatratv.m3u8 +#EXTINF:-1 tvg-id="Nazrana.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Nazrana (360p) +https://live.hungama.com/linear/nazrana/playlist.m3u8 +#EXTINF:-1 tvg-id="NCV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ltdtvL3.png" group-title="Entertainment",NCV (720p) [Not 24/7] +http://103.146.174.60:1935/NCV/ncvstream/master.m3u8 +#EXTINF:-1 tvg-id="NDTV24X7.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://jiotv.catchup.cdn.jio.com/dare_images/images/NDTV_24x7.png" group-title="News",NDTV 24X7 (480p) [Not 24/7] +https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/master.m3u8 +#EXTINF:-1 tvg-id="NDTVIndia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/tcLeUEuX.png" group-title="",NDTV India (480p) [Not 24/7] +https://ndtvindiaelemarchana.akamaized.net/hls/live/2003679/ndtvindia/master.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://bsmedia.business-standard.com/_media/bs/img/article/2017-06/01/full/1496330873-5363.jpg" group-title="Business",NDTV Profit (480p) +https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680-b/ndtvprofit/master.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://bsmedia.business-standard.com/_media/bs/img/article/2017-06/01/full/1496330873-5363.jpg" group-title="Business",NDTV Profit [Geo-blocked] +https://ndtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/ndtv/live/ndtv_profit.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NDTVProfit.in" tvg-country="IN" tvg-language="English" tvg-logo="http://jiotv.catchup.cdn.jio.com/dare_images/images/NDTV_Profit.png" group-title="Business",NDTV Profit (480p) [Not 24/7] +https://ndtvprofitelemarchana.akamaized.net/hls/live/2003680/ndtvprofit/master.m3u8 +#EXTINF:-1 tvg-id="NeeCinema.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/vYme2fs.png" group-title="Movies",Nee Cinema (576p) [Not 24/7] +https://live.neestream.com/neestream_01/nee_cinema/playlist.m3u8 +#EXTINF:-1 tvg-id="NethraTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://srilankanews.wpengine.netdna-cdn.com/wp-content/uploads/2015/09/nethra.png" group-title="News",Nethra TV (480p) [Not 24/7] +https://dammikartmp.tulix.tv/slrc3/slrc3/playlist.m3u8 +#EXTINF:-1 tvg-id="News7Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/oBjgUTc.png" group-title="News",News 7 Tamil (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2f4w_ppqHplvjiNaoTAK9w/live +#EXTINF:-1 tvg-id="News7Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/oBjgUTc.png" group-title="News",News 7 Tamil (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0kp/index.m3u8 +#EXTINF:-1 tvg-id="News18Assam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Assam (360p) [Not 24/7] +https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Bengali.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/ApY5STle.png" group-title="News",News 18 Bengali (360p) [Not 24/7] +https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Chhattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Chhattisgarh (360p) +https://news18mp-lh.akamaihd.net/i/n18mpcg_1@175737/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Gujarati.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VOLZkULy.png" group-title="News",News 18 Gujarati (360p) +https://news18gujarati-lh.akamaihd.net/i/n18gujarat_1@370955/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Hindi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Hindi (360p) +https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Jharkhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Jharkhand (360p) +https://news18bihar-lh.akamaihd.net/i/n18biharjh_1@175736/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Kannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://static.kannada.news18.com/kannada/uploads/2020/03/Kannada1.png" group-title="News",News 18 Kannada (360p) +https://news18kannada-lh.akamaihd.net/i/n18kannada_1@372918/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Lokmat.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VxKW2nPp.png" group-title="News",News 18 Lokmat (504p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/india/news18-lokmat.m3u8 +#EXTINF:-1 tvg-id="News18Malayalam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/D9lMLmX.png" group-title="News",News 18 Malayalam (360p) +https://news18kerala-lh.akamaihd.net/i/n18kerala_1@526583/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Odia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/dcTmJMZm.png" group-title="News",News 18 Odia (360p) +https://etv-oriya.akamaized.net/i/n18odia_1@179753/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Punjab.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Punjab (360p) +https://news18haryana-lh.akamaihd.net/i/n18punjabhimhar_1@349009/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Rajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/PrWKRDQT.png" group-title="News",News 18 Rajasthan (360p) +https://news18rajasthan-lh.akamaihd.net/i/n18raj_1@175738/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a8/News18_Tamilnadu.jpeg/revision/latest?cb=20191220041122" group-title="News",News 18 Tamil (360p) +https://news18tamil-lh.akamaihd.net/i/n18tamil_1@526595/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Tamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a8/News18_Tamilnadu.jpeg/revision/latest?cb=20191220041122" group-title="News",News 18 Tamil (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=EZy0RAxG8OI +#EXTINF:-1 tvg-id="News18Urdu.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/w7PiYyrx.png" group-title="News",News 18 Urdu (360p) +https://news18urdu-lh.akamaihd.net/i/n18urdu_1@373059/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News18Uttarakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News 18 Uttarakhand (360p) +https://news18up-lh.akamaihd.net/i/n18upuk_1@175735/index_4_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="News24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/wmsT3xGI.png" group-title="News",News 24 (480p) [Not 24/7] +https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="News24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/wmsT3xGI.png" group-title="News",News 24 (360p) [Not 24/7] +https://vidcdn.vidgyor.com/news24-origin/liveabr/news24-origin/live2/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsJ.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/7/7e/News_J.jpeg/revision/latest?cb=20191226093118" group-title="News",News J (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=QH4zszwdIKE +#EXTINF:-1 tvg-id="News18Assam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News18 Assam (504p) [Not 24/7] +https://news18assam-lh.akamaihd.net/i/n18assamne_1@526575/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="News18Bangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",News18 Bangla (360p) [Not 24/7] +https://news18bangla-lh.akamaihd.net/i/n18bangla_1@2289/index_4_av-p.m3u8 +#EXTINF:-1 tvg-id="News18India.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/hqclXeVK.png" group-title="News",News18 India (504p) +https://news18india-lh.akamaihd.net/i/news18india_1@174951/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="NextTVMalabar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.statically.io/img/nexttv.in/f=auto,w=160/assets/images/toplogo-2.png?v=1" group-title="Local",Next TV Malabar (720p) [Not 24/7] +https://6zklxbgpdw9b-hls-live.5centscdn.com/next/c9a1fdac6e082dd89e7173244f34d7b3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OdishaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/8ZmnDAS3.png" group-title="",Odisha TV (480p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/otvnewmbr/otvnewmbr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OneTv.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ssMOeaj.png" group-title="Entertainment",One TV (720p) +http://137.59.86.218:1935/live/onetv/playlist.m3u8 +#EXTINF:-1 tvg-id="Peppers.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/xgEQiso.png" group-title="Music",Peppers (576p) [Not 24/7] +http://103.199.160.85/Content/peppers/Live/Channel(Peppers)/index.m3u8 +#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (720p) [Geo-blocked] +https://versewsa.pc.cdn.bitgravity.com/versewsa/live/polimernews.smil/chunklist_b1800000.m3u8 +#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Z-VjXBtDJTvq6aqkIskPg/live +#EXTINF:-1 tvg-id="PolimerNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://india.mom-rsf.org/typo3temp/_processed_/d/c/csm_16526-1592_import_d84315ad22.png" group-title="News",Polimer News (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0lg/index.m3u8 +#EXTINF:-1 tvg-id="PolimerTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/FeLT0mK.jpg" user-agent="AsianetMobileTVPlus" group-title="Entertainment",Polimer TV (404p) [Not 24/7] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/polimertv_rpvpvdefkpxbafsouzockpitjldtogrr/chunks.m3u8 +#EXTINF:-1 tvg-id="PopPataka.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Music",Pop Pataka (480p) [Not 24/7] +https://live.hungama.com/linear/pop-pataka/playlist.m3u8 +#EXTINF:-1 tvg-id="PopularScience.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="Science",Popular Science (720p) [Offline] +https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 +#EXTINF:-1 tvg-id="PramayaNews7.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",Pramaya News7 (576p) [Not 24/7] +https://live.mycast.in/encode/ee0c5a36ff5a7083ee044991974ad3ba.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PratidinTime.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/QYfhpkre.png" group-title="News",Pratidin Time (360p) [Not 24/7] +https://rtmp.smartstream.video/pratidintime/pratidintime/playlist.m3u8 +#EXTINF:-1 tvg-id="Pravasi.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/DtXRfBj.png" group-title="",Pravasi (1080p) [Not 24/7] +https://5ee50688d7b5d.streamlock.net:444/live/pravasi/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimeCanadaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Entertainment",Prime Canada TV (720p) [Not 24/7] +http://cdn27.live247stream.com/primecanada/247/primecanada/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="PublicMovies.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/GpAvaCx.png" group-title="Movies",Public Movies (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ll/index.m3u8 +#EXTINF:-1 tvg-id="PublicMusic.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://upload.wikimedia.org/wikipedia/en/3/35/Public_Music_Kannada_Channel_Logo.jpg" group-title="Music",Public Music (576p) [Not 24/7] +http://103.199.161.254/Content/publicmusic/Live/Channel(PublicMusic)/index.m3u8 +#EXTINF:-1 tvg-id="PublicTV.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://i.imgur.com/tmXFHhk.png" group-title="Entertainment",Public TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ld/index.m3u8 +#EXTINF:-1 tvg-id="PulariTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/v5urG30.png" group-title="",Pulari TV (720p) [Not 24/7] +https://royalstarindia.co.in/pularitv_hls/pularitv.m3u8 +#EXTINF:-1 tvg-id="PUNJABTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",PUNJAB TV (720p) [Not 24/7] +http://158.69.124.9:1935/5aabtv/5aabtv/playlist.m3u8 +#EXTINF:-1 tvg-id="PunjabiZindabad.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Punjabi Zindabad (720p) [Not 24/7] +http://stream.pztv.online/pztv/playlist.m3u8 +#EXTINF:-1 tvg-id="PuthiyaThalaimurai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/f/f3/Puthiya_Thalaimurai.jpeg/revision/latest?cb=20191224103436" group-title="News",Puthiya Thalaimurai (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCmyKnNRH0wH-r8I-ceP-dsg/live +#EXTINF:-1 tvg-id="PuthuyugamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/1q1LQQ9.png" group-title="",Puthuyugam TV (576p) [Not 24/7] +http://103.199.160.85/Content/puthuyugam/Live/Channel(Puthuyugam)/index.m3u8 +#EXTINF:-1 tvg-id="RPlusNews.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="News",R Plus News (360p) [Not 24/7] +https://cdn.smartstream.video/smartstream-us/rplus/rplus/playlist.m3u8 +#EXTINF:-1 tvg-id="RajDigitalPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Raj Digital Plus (404p) [Offline] +http://acv.asianetmobiletvplus.com/channels/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_hls/rajdigital_htfuqchouekpefzxodtbzaojtryxpqkx_master.m3u8 +#EXTINF:-1 tvg-id="RajNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b6/Raj_News_Tamil.jpeg/revision/latest/scale-to-width-down/250?cb=20191226054121" group-title="News",Raj News (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_MT_gzdPiTg +#EXTINF:-1 tvg-id="RealNewsKerala.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/EmBpOWM.png" group-title="News",Real News Kerala (1080p) [Not 24/7] +https://bk7l298nyx53-hls-live.5centscdn.com/realnews/e7dee419f91aa9e65939d3677fb9c4f5.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="RealTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="http://expressott.in/uploads/tv_image/real-tv.jpg" group-title="Music",Real TV (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/realtv/realtv1/playlist.m3u8 +#EXTINF:-1 tvg-id="RelaxTV" tvg-country="IN" tvg-language="Tamil" tvg-logo="http://expressott.in/uploads/tv_image/relax-tv.png" group-title="Music",Relax TV (576p) [Not 24/7] +http://198.144.149.82:8080/NOTV/RELAXTV/index.m3u8?token=GTR +#EXTINF:-1 tvg-id="ReporterTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/a80vdrp.jpg" group-title="News",Reporter TV (576p) +http://103.199.161.254/Content/reporter/Live/Channel(Reporter)/index.m3u8 +#EXTINF:-1 tvg-id="RepublicBharatin.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BG1aZ6V.jpg" group-title="",Republic Bharat (360p) [Geo-blocked] +https://republic.pc.cdn.bitgravity.com/live/bharat_hls/master.m3u8 +#EXTINF:-1 tvg-id="RepublicTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PvI2PCX.png" group-title="",Republic TV [Geo-blocked] +https://weblive.republicworld.com/liveorigin/republictv/playlist.m3u8 +#EXTINF:-1 tvg-id="RepublicTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/PvI2PCX.png" group-title="",Republic TV [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_1422341819 +#EXTINF:-1 tvg-id="Rosebowl.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LBQSALM.png" user-agent="AsianetMobileTVPlus" group-title="Music",Rosebowl (404p) [Offline] +#EXTVLCOPT:http-user-agent=AsianetMobileTVPlus +http://cdn.asianetmobiletvplus.com/channels/rosebowl_7eb4dc1f3240c8eb776d41b95bd1d197/playlist.m3u8 +#EXTINF:-1 tvg-id="RSTVRajyaSabha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9NsI8zT.jpg" group-title="",RSTV RajyaSabha (1080p) [Not 24/7] +https://nicls2-lh.akamaihd.net/i/rstv_1@26970/master.m3u8 +#EXTINF:-1 tvg-id="SachinMusic.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Music",Sachin Music (576p) [Not 24/7] +http://singamcloud.in:1935/sachinmusichd/sachinmusichd/playlist.m3u8 +#EXTINF:-1 tvg-id="SadaTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sada TV (1080p) [Not 24/7] +http://cdn12.henico.net:8080/live/sadatv/index.m3u8 +#EXTINF:-1 tvg-id="Sadhna.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/C2cltDo.png" group-title="",Sadhna (360p) [Offline] +http://cdn.clive.in:1935/sadhnabhakti/sadhnabhakti.stream_HDp/playlist.m3u8 +#EXTINF:-1 tvg-id="SadhnaPlus.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/5WqCCMt.png" group-title="",Sadhna Plus (360p) [Offline] +http://cdn.clive.in:1935/sadhnaplus/sadhnaplus.stream_HDp/media.m3u8 +#EXTINF:-1 tvg-id="SafariTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/LOepeP3.jpg" group-title="",Safari TV (720p) [Not 24/7] +https://j78dp346yq5r-hls-live.5centscdn.com/safari/live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SanaPlus.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/cA7PpJG.jpg" group-title="Music",Sana Plus (720p) [Not 24/7] +http://media.7starcloud.com:1935/live/sanatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="SanaTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/D03gyp2.png" group-title="Entertainment",Sana TV (576p) [Not 24/7] +http://hdserver.7starcloud.com:1935/sanatv/sanatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Sanskaar.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sanskaar (1080p) [Not 24/7] +https://sanskarlive.sanskargroup.in/sanskartvlive.m3u8 +#EXTINF:-1 tvg-id="SanthoraShortFlim.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/kKFfLMd.jpg" group-title="Movies",Santhora Short Flim (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/LsacUVi.png" group-title="",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/LsacUVi.png" group-title="",Santhora TV (720p) +http://santhoratv.zecast.net/santhoratv/santhoratv/index.m3u8 +#EXTINF:-1 tvg-id="SardariTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/6Q844bs.jpg" group-title="",Sardari TV (1080p) [Not 24/7] +http://158.69.124.9:1935/sardaritv/sardaritv/playlist.m3u8 +#EXTINF:-1 tvg-id="SathiyamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c9/SathiyamFinallogo.png/revision/latest/scale-to-width-down/180?cb=20191225174913" group-title="News",Sathiyam TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip==https://www.youtube.com/channel/UC2ziCMHFPWkFHjocUMXT__Q/live +#EXTINF:-1 tvg-id="Satsang.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Satsang (1080p) [Not 24/7] +https://satsangtv.sanskargroup.in/satsangtvlive.m3u8 +#EXTINF:-1 tvg-id="ServeurTV.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",Serveur TV (720p) [Offline] +https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ShekinahTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/6hTshsG.png" group-title="",Shekinah TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCHtYUfPnQci6GoUpPlWfrOg/live +#EXTINF:-1 tvg-id="ShekinahTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/6hTshsG.png" group-title="",Shekinah TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0ok/index.m3u8 +#EXTINF:-1 tvg-id="ShemarooTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/UNNcOef.png" group-title="Entertainment",Shemaroo TV (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nh/index.m3u8 +#EXTINF:-1 tvg-id="ShirdiLive.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Shirdi Live (720p) [Offline] +https://cam.live-s.cdn.bitgravity.com/cdn-live/_definst_/cam/live/secure/saibaba/playlist.m3u8?e=0&h=2598445340a35f63eb211f81940d2525 +#EXTINF:-1 tvg-id="ShowBox.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/m9UFtTM.png" group-title="Music",Show Box (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0o8/index.m3u8 +#EXTINF:-1 tvg-id="Shraddha.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Shraddha (360p) [Not 24/7] +http://rtmp.smartstream.video:1935/mhoneshradha/mhoneshradha/playlist.m3u8 +#EXTINF:-1 tvg-id="Shubhsandesh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/ibnqDAD.png" group-title="Religious",Shubhsandesh (720p) [Not 24/7] +https://6284rn2xr7xv-hls-live.wmncdn.net/shubhsandeshtv1/live123.stream/index.m3u8 +#EXTINF:-1 tvg-id="SikhChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/3TZPKGL.png" group-title="",Sikh Channel (576p) [Offline] +http://fastway.ddns.net:6421/fastway/live8/index.m3u8?token=fastwaytvstreams +#EXTINF:-1 tvg-id="SonyBBCEarthHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/cmRNiA3.png" group-title="",Sony BBC Earth HD (1080p) [Offline] +http://103.81.104.118/hls/stream5.m3u8 +#EXTINF:-1 tvg-id="SonyMAX2.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony MAX 2 [Offline] +http://208.115.215.42/Sony_Max_HD_02/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyMAXHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony MAX HD [Offline] +http://208.115.215.42/Sony_Max_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySabHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jo0o7op.png" user-agent="stream" group-title="Entertainment",Sony Sab HD (1080p) [Not 24/7] +#EXTVLCOPT:http-user-agent=stream +http://indo51.gcdn.co/hindi-SONYSABHD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySabHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jo0o7op.png" group-title="Entertainment",Sony Sab HD [Offline] +http://208.115.215.42/Sony_Sab_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="SonySix.in" tvg-country="IN" tvg-language="English" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/tJzfDMRk.png" group-title="",Sony Six (1080p) [Not 24/7] +http://137.59.155.77:8088/hls/05sonysix.m3u8 +#EXTINF:-1 tvg-id="SonySixHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" user-agent="stream" group-title="",Sony Six HD (1080p) [Offline] +#EXTVLCOPT:http-user-agent=stream +http://103.81.104.118/hls/stream10.m3u8 +#EXTINF:-1 tvg-id="SonyWAH.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Sony WAH (404p) [Offline] +https://d2gowxuvx77j6q.cloudfront.net/WAH.m3u8 +#EXTINF:-1 tvg-id="SonyYAY.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/aoOD9XQ.jpg" group-title="Kids",Sony YAY (404p) [Offline] +https://d20fdzcwhk7szz.cloudfront.net/SONY_YAY.m3u8 +#EXTINF:-1 tvg-id="SriSankara.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Religious",Sri Sankara (360p) [Not 24/7] +https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="StarCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Movies",Star Cinema (576p) +http://c0.cdn.trinity-tv.net/stream/nh9u54a7sfnc2hwzxr2zwykwkqm43bgyyzsm68ybbbnjei8kytwcgs3zm5gnw5c6efa5gr3fadzqe686w8gj2eaehrj89wvujvqza3kez78dtknwbbmnqf79yygmqqg7e9pnc3i3bpywjkiqrwke94yf.m3u8 +#EXTINF:-1 tvg-id="StarFamily.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="Family",Star Family (576p) +http://c0.cdn.trinity-tv.net/stream/zfmjgma9zn46fa797ez9fgkw7msh9mj4tppspg23gey6mmx5fqiy7ky3jqx4uhgsfsrd8r76si8ykb2anw9442g4qkq5fzpdvwdqf5te24ixu9zrx3aesm9fzt59q5y2s8qwgbqhvf6d3z5bjy3qb2t4.m3u8 +#EXTINF:-1 tvg-id="StarGoldHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" user-agent="stream" group-title="",Star Gold HD (1080p) [Offline] +#EXTVLCOPT:http-user-agent=stream +http://103.81.104.118/hls/stream19.m3u8 +#EXTINF:-1 tvg-id="StarMaa.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/oBXBjk6.png" group-title="Entertainment",Star Maa [Geo-blocked] +http://maatv-i.akamaihd.net/hls/live/569930/maatv/master_2000.m3u8 +#EXTINF:-1 tvg-id="StarPlusHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/Hgl0JGO.png" user-agent="stream" group-title="",Star Plus HD (720p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=stream +http://208.115.215.42/Utsav_Plus_HD/playlist.m3u8 +#EXTINF:-1 tvg-id="StarUtsav.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Star Utsav [Offline] +https://dolv5imquuojb.cloudfront.net/ST_UTSAV.m3u8 +#EXTINF:-1 tvg-id="SteelbirdMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/5r4gCMh.jpg" group-title="Music",Steelbird Music (720p) [Not 24/7] +http://cdn25.live247stream.com/steelbirdmusic/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StudioOnePlus.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/DBbajAs.jpg" group-title="Movies",Studio One Plus (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCEoaVUxpFlmCxwRBy9yhb1Q/live +#EXTINF:-1 tvg-id="StudioOnePlus.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/DBbajAs.jpg" group-title="Movies",Studio One Plus (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0oh/index.m3u8 +#EXTINF:-1 tvg-id="StudioOneYuva.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/nACKF3x.jpg" group-title="Movies",Studio One Yuva (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqR2tCs8ufgAjRd6rn4a2wg/live +#EXTINF:-1 tvg-id="StudioOneYuva.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://i.imgur.com/nACKF3x.jpg" group-title="Movies",Studio One Yuva (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0sr/index.m3u8 +#EXTINF:-1 tvg-id="SunNews.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/mQWpBdv.png" group-title="News",Sun News (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_fR9xWEOa7Q +#EXTINF:-1 tvg-id="SunTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/U30x7Y4.jpg" user-agent="stream" group-title="",Sun TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=stream +http://uk4.zecast.com:1935/star-live/suntv.stream/index.m3u8 +#EXTINF:-1 tvg-id="SuryaMusic.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/jsC8FC7.png" group-title="Music",Surya Music (480p) [Not 24/7] +https://indo51.gcdn.co/MALYLAM-SuryaMusic/index.m3u8 +#EXTINF:-1 tvg-id="SuryaTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/ENrptYg.png" group-title="Entertainment",Surya TV (720p) [Not 24/7] +https://indo51.gcdn.co/MALYLAM-SuryaHD/index.m3u8 +#EXTINF:-1 tvg-id="Swantham.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/oodBB6x.png" group-title="Entertainment",Swantham (720p) [Not 24/7] +http://cdn1.logicwebs.in:1935/SWANTHAM/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SwarajExpress.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Swaraj Express (720p) [Not 24/7] +https://live.wmncdn.net/highnews/swaraj.stream/index.m3u8 +#EXTINF:-1 tvg-id="TehelkaTV.in" tvg-country="IN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/15/Sangsad_Television_Logo.jpg" group-title="General",Tehelka TV (480p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/tehelkatv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ThanthiTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://images-eu.ssl-images-amazon.com/images/I/71QprgRT4rL.png" group-title="News",Thanthi TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=wc3Y6vI-poI +#EXTINF:-1 tvg-id="ThanthiTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://images-eu.ssl-images-amazon.com/images/I/71QprgRT4rL.png" group-title="News",Thanthi TV (720p) [Not 24/7] +https://vidcdn.vidgyor.com/thanthi-origin/liveabr/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeTV.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/K5rlUey.png" group-title="News",Time TV (360p) [Not 24/7] +https://cloudflare-cdn301.ottpro.in/live/timetv/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeVisionNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/YSQVbIm.png" group-title="News",Time Vision News (720p) [Not 24/7] +http://cloud.logicwebs.in:1935/timevision/timevision/playlist.m3u8 +#EXTINF:-1 tvg-id="TimesNow.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/aa/Times_Now_2010.png" group-title="News",Times Now (480p) [Geo-blocked] +https://timesnow-lh.akamaihd.net/i/TNHD_1@129288/master.m3u8 +#EXTINF:-1 tvg-id="Tunes6.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/ClpXKNR.png" group-title="Music",Tunes 6 [Geo-blocked] +https://m-c18-j2apps.s.llnwi.net/hls/3731.Tunes6.in.m3u8 +#EXTINF:-1 tvg-id="TV9Kannada.in" tvg-country="IN" tvg-language="Kannada" tvg-logo="https://d2jo35ozacw6sq.cloudfront.net/wp-content/themes/tv9kannada/images/Tv9-Kannada-57x57.png" group-title="News",TV9 Kannada (720p) [Not 24/7] +https://vidcdn.vidgyor.com/tv9kannada-origin/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TV9News.in" tvg-country="IN" tvg-language="Telugu" tvg-logo="https://www.lyngsat-logo.com/logo/tv/tt/tv-9-telugu-in.png" group-title="News",TV9 News (720p) +https://vidcdn.vidgyor.com/tv9telugu-origin/live/tv9telugu-origin/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="TwentyFourNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/eS2fVDh.png" group-title="News",Twenty Four News (576p) [Not 24/7] +http://103.199.160.85/Content/24news/Live/Channel(24news)/index.m3u8 +#EXTINF:-1 tvg-id="UBLHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/pt7gl1T.png" group-title="",UBL HD (1080p) [Not 24/7] +https://cdn.logicwebs.in/hls/ublhdkey.m3u8 +#EXTINF:-1 tvg-id="UthradamMovies.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/KdsS0g5.png" group-title="Movies",Uthradam Movies (576p) [Not 24/7] +http://185.105.4.245:1935/livesp/uthradam/playlist.m3u8 +#EXTINF:-1 tvg-id="UtsavGold.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/FYym7gH.png" group-title="Movies",Utsav Gold (720p) [Geo-blocked] +http://208.115.215.42/Utsav_Gold_HD/index.m3u8 +#EXTINF:-1 tvg-id="Vaanavil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/etr1k08.png" group-title="Music",Vaanvavil (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0nx/index.m3u8 +#EXTINF:-1 tvg-id="VasanthTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="Entertainment",Vasanth TV [Offline] +http://vasanth.live.cdn.bitgravity.com/vasanth/secure/live/feed03?bgsecuredir=1&e=0&h=a9be0836bc39f96d0a9a958a659dfc1d +#EXTINF:-1 tvg-id="VathanamTV.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="" group-title="",Vathanam TV [Timeout] +http://95.216.167.183:5080/LiveApp/streams/443106610169904881506470.m3u8 +#EXTINF:-1 tvg-id="Velicham.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/YeR3mm9.png" group-title="Entertainment",Velicham (360p) [Not 24/7] +https://rtmp.smartstream.video/velichamtv/velichamtv/playlist.m3u8 +#EXTINF:-1 tvg-id="VismayaNews.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/TIj6xBg.png" group-title="",Vismaya News (720p) [Not 24/7] +http://live.singamcloud.in:1935/vismayanews/vismayanews/playlist.m3u8 +#EXTINF:-1 tvg-id="Wion.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",Wion (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-wion +#EXTINF:-1 tvg-id="WowCinemaOne.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/s690F67.png" group-title="Movies",Wow Cinema One (576p) [Not 24/7] +http://14.199.164.20:4001/play/a0n3/index.m3u8 +#EXTINF:-1 tvg-id="XploreChannel.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Xplore Channel (720p) +http://cdn18.live247stream.com/ndachannel/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Yolo.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/kzudV52.jpg" group-title="Entertainment",Yolo (410p) [Not 24/7] +http://cdn.logicwebs.in/hls/yolo.m3u8 +#EXTINF:-1 tvg-id="YuppThirai.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="https://i.imgur.com/6E8SbCf.png" group-title="Movies",Yupp Thirai (270p) +http://119.81.82.28/encoded/yuppthirai_800/playlist.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zlivingusa_r/index.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r_prod/playlist.m3u8 +#EXTINF:-1 tvg-id="ZLivingUSA.in" tvg-country="US;IN" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ZLiving_512x512.png?raw=true" group-title="",Z Living USA (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zlivingusa_r/index.m3u8 +#EXTINF:-1 tvg-id="Zee24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/kalak/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee24.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/kalak/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee24Ghanta.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/OrhmAikO.png" group-title="",Zee 24 Ghanta (576p) [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-24ghantatv +#EXTINF:-1 tvg-id="Zee24MadyaPradeshChhattisgarh.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee 24 Madhya Pradesh Chhattisgarh [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeemadhyapradeshchat +#EXTINF:-1 tvg-id="Zee24Taas.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oSPJiEzV.png" group-title="",Zee 24 Taas (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zee24taas +#EXTINF:-1 tvg-id="ZeeAction.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BvAXCNf.png" group-title="Movies",Zee Action (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/action/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAction.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/BvAXCNf.png" group-title="Movies",Zee Action (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/action/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAnmolCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oRDt6fY8.png" group-title="",Zee Anmol Cinema (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeAnmolCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/oRDt6fY8.png" group-title="",Zee Anmol Cinema (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zanmolcnm/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeBangla.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/USKY2MD6.png" group-title="Movies",Zee Bangla (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebangla +#EXTINF:-1 tvg-id="ZeeBanglaCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/QFqJax5.png" group-title="Movies",Zee Bangla Cinema (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebanglacinema +#EXTINF:-1 tvg-id="ZeeBiharJharkhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/JdOC9ieM.png" group-title="",Zee Bihar Jharkhand (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebiharjharkhand +#EXTINF:-1 tvg-id="ZeeBioskop.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/CdXieB6.png" group-title="",Zee Bioskop (360p) [Geo-blocked] +http://210.210.155.35/qwr9ew/s/s32/index.m3u8 +#EXTINF:-1 tvg-id="ZeeBollywood.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/gq8mpPvf.png" group-title="Movies",Zee Bollywood (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeeclassic +#EXTINF:-1 tvg-id="ZeeBusiness.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/vExrDK9r.png" group-title="Business",Zee Business [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeebusiness +#EXTINF:-1 tvg-id="ZeeCafe.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/YIRC9m5.png" group-title="",Zee Cafe (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecafehd +#EXTINF:-1 tvg-id="ZeeCinema.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecinema +#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinema Middle East (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zeecinemame/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinema Middle East (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zeecinemame/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUK.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema UK (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/cinemauk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUK.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.meo.pt/PublishingImages/canais/zee-cinema.png" group-title="",Zee Cinema UK (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/cinemauk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-cinema.png" group-title="",Zee Cinema USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/cinemausa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeCinemaluHD.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Cinemalu HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeecinemalu +#EXTINF:-1 tvg-id="ZeeClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VAG3BbPb.png" group-title="",Zee Classic (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/classic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeClassic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VAG3BbPb.png" group-title="",Zee Classic (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/classic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeHindustan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Hindustan (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeehindustan +#EXTINF:-1 tvg-id="ZeeKeralamHD.in" tvg-country="IN" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/mM0KQj7.png" group-title="",Zee Keralam HD (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zkeralamhd/index.m3u8 +#EXTINF:-1 tvg-id="ZeeMarathiHD.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi HD (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeemarathi +#EXTINF:-1 tvg-id="ZeeMarathiUSA.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/marathiusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMarathiUSA.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="" group-title="",Zee Marathi USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/marathiusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMundo.in" tvg-country="IN" tvg-language="Spanish" tvg-logo="https://zeemundo.com/wp-content/uploads/2018/06/logo-120.png" group-title="Movies",Zee Mundo (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/mundohd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMundo.in" tvg-country="IN" tvg-language="Spanish" tvg-logo="https://zeemundo.com/wp-content/uploads/2018/06/logo-120.png" group-title="Movies",Zee Mundo (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/mundohd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Music (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/magic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeMusic.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Music (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/magic/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNews.in" tvg-country="IN" tvg-language="Marathi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/T4jA4k1h.png" group-title="",Zee News [Offline] +https://sneh-z5api.herokuapp.com/?c=0-9-zeenews +#EXTINF:-1 tvg-id="ZeeNewsMPCG.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News MPCG (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/newsmpcg/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNewsMPCG.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News MPCG (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/newsmpcg/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeNewsUttarPradeshUttrakhand.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee News Uttar Pradesh Uttrakhand [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-channel_265145625 +#EXTINF:-1 tvg-id="ZeePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-punjabi-logo.png" group-title="",Zee Punjabi (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/punjabi/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeePunjabi.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zee-punjabi-logo.png" group-title="",Zee Punjabi (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/punjabi/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeRajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/qt5hnBfe.png" group-title="",Zee Rajasthan (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zinguk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeRajasthan.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/qt5hnBfe.png" group-title="",Zee Rajasthan (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zinguk/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeSalaam.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/2rykW8Xa.png" group-title="",Zee Salaam (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeesalaam +#EXTINF:-1 tvg-id="ZeeSmileUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Smile USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/smileusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeSmileUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee Smile USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/smileusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTalkies.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/fh6tPTh6.png" group-title="",Zee Talkies (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeetalkies +#EXTINF:-1 tvg-id="ZeeTamil.in" tvg-country="IN" tvg-language="Tamil" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/HgMdBRk5.png" group-title="",Zee Tamil (720p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-zeetamil +#EXTINF:-1 tvg-id="ZeeTV.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV (480p) [Timeout] +https://d2q8p4pe5spbak.cloudfront.net/bpk-tv/ZEETV/ZEETV.isml/index.m3u8 +#EXTINF:-1 tvg-id="ZeeTVAPAC.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV APAC (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/apacsea/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVAPAC.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV APAC (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/apacsea/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVCanada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV Canada (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/canadahd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVCanada.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV Canada (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/canadahd/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV Middle East (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/ztvme/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVMiddleEast.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee TV Middle East (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/ztvme/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVRussia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000160028ee79cb039d83f096f593bb8/160x120" group-title="",Zee TV Russia (720p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/russia/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVRussia.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000160028ee79cb039d83f096f593bb8/160x120" group-title="",Zee TV Russia (720p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/russia/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV USA (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeTVUSA.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/zeetv_canada.png" group-title="",Zee TV USA (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/ztvsdusa/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeVajwa.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/FBCchEhm.png" group-title="",Zee Vajwa (576p) [Geo-blocked] +https://sneh-z5api.herokuapp.com/?c=0-9-353 +#EXTINF:-1 tvg-id="ZeeWorld.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/07/DStv_ZeeWorld_4-3_001_xlrg.png" group-title="",Zee World (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/world/playlist.m3u8 +#EXTINF:-1 tvg-id="ZeeWorld.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://rndcdn.dstv.com/dstvcms/2017/11/07/DStv_ZeeWorld_4-3_001_xlrg.png" group-title="",Zee World (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/world/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Originals.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Originals (1080p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zee5_originals/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Originals.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Originals (1080p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zee5_originals/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Romance.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Romance (1080p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zee5_romance/playlist.m3u8 +#EXTINF:-1 tvg-id="Zee5Romance.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="" group-title="",Zee5 Romance (1080p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zee5_romance/playlist.m3u8 +#EXTINF:-1 tvg-id="Zing.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SUWblss.png" group-title="",Zing (576p) [Geo-blocked] +https://f8e7y4c6.ssl.hwcdn.net/zing/playlist.m3u8 +#EXTINF:-1 tvg-id="Zing.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SUWblss.png" group-title="",Zing (576p) [Geo-blocked] +https://y5w8j4a9.ssl.hwcdn.net/zing/playlist.m3u8 +#EXTINF:-1 tvg-id="Zoom.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/rjKh2jqQ.png" group-title="",Zoom (1080p) [Offline] +http://103.81.104.118/hls/stream8.m3u8 diff --git a/channels/in_samsung.m3u b/channels/in_samsung.m3u new file mode 100644 index 000000000..a68207276 --- /dev/null +++ b/channels/in_samsung.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +http://failarmy-international-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] +https://spi-filmstream-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-12-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GoUSAIndia.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KhdR4wa.jpg" group-title="",Go USA (India) (720p) [Offline] +https://brandusa-gousa-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] +https://gustotv-samsung-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InshortIndia.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Inshort (India) (720p) +https://inshort-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) +https://introuble-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) +https://inwild-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsungindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVIndia.us" tvg-country="IN" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV India (720p) [Offline] +http://mavtv-mavtvglobal-1-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeIndia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome India (720p) [Offline] +https://jukin-peopleareawesome-2-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveIndia.us" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective India (720p) [Offline] +https://the-pet-collective-international-in.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy India (720p) [Offline] +https://jukin-weatherspy-2-in.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/iq.m3u~master b/channels/iq.m3u~master new file mode 100644 index 000000000..a719dbe1c --- /dev/null +++ b/channels/iq.m3u~master @@ -0,0 +1,121 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABNsat.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="http://vidmgr.abnvideos.com/images/playlists/phpENpJQS.jpeg" group-title="Religious",ABNsat (720p) +http://rtmp1.abnsat.com/hls/arabic.m3u8 +#EXTINF:-1 tvg-id="AfarinTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/Uw4DX17.png" group-title="Kids",Afarin TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/afarinTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHurra.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/8EmVL2d.jpg" group-title="News",Al Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 +#EXTINF:-1 tvg-id="AlHurra.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/8EmVL2d.jpg" group-title="News",Al Hurra (486p) [Not 24/7] +https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 +#EXTINF:-1 tvg-id="AlIraqiyaAl3ama.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://imn.iq/wp-content/uploads/2018/03/Logo.jpg" group-title="General",Al Iraqiya Al 3ama (720p) [Not 24/7] +https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8 +#EXTINF:-1 tvg-id="AlIraqiyaNews.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://imn.iq/wp-content/uploads/2018/03/Logo.jpg" group-title="News",Al Iraqiya News (720p) [Not 24/7] +https://cdn.catiacast.video/abr/78054972db7708422595bc96c6e024ac/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRafidain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x5buqzt.jpg" group-title="News",Al Rafidain (1024p) [Not 24/7] +http://149.202.79.190:8081/arrafidaintv/publish/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRafidain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x5buqzt.jpg" group-title="News",Al Rafidain (1024p) [Not 24/7] +https://cdg8.edge.technocdn.com/arrafidaintv/abr_live/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRasheed.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alrasheedmedia.com/wp-content/themes/alrasheedv4/alr-logo.png" group-title="General",Al Rasheed (408p) [Not 24/7] +https://media1.livaat.com/AL-RASHEED-HD/index.m3u8 +#EXTINF:-1 tvg-id="AlSharqiya.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="" group-title="General",Al Sharqiya (1080p) [Not 24/7] +http://ns8.indexforce.com:1935/home/mystream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSharqiyaNews.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qNi4rwG.jpg" group-title="News",Al Sharqiya News (1080p) +http://ns8.indexforce.com:1935/alsharqiyalive/mystream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSumaria.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.alsumaria.tv/uploadImages/ProgramsImages/Channels-LW-1-636916940695846700.png" group-title="General",Al Sumaria (1080p) [Not 24/7] +http://iptv.repl.co/Arabic/Al_summaria +#EXTINF:-1 tvg-id="AlEtejah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/jFKKRjP.png" group-title="News",Al-Etejah (576p) [Not 24/7] +https://streaming.aletejahtv.iq:1937/etejah-live/smil:etejah.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlJawadain.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tLekUZU.png" group-title="Religious",Al-Jawadain TV (1080p) [Not 24/7] +https://live.aljawadain.org/live/aljawadaintv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlGhadeer.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/U1TEfvn.png" group-title="News",AlGhadeer (720p) [Not 24/7] +https://asdiuhiu12.myvodu.app:3356/live/Alghadeer/index.m3u8 +#EXTINF:-1 tvg-id="AlkafeelBetweenthetwoholyshrines.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: Between the two holy shrines (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot4/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelTheentranceoftheholysanctuary.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The entrance of the holy sanctuary (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot3/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelTheHolyTomb.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The Holy Tomb (360p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot2/manifest.m3u8 +#EXTINF:-1 tvg-id="AlkafeelThewindowofAlKafeel.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://alkafeel.net/src/svg/logo_stripped.svg" group-title="Religious",Alkafeel: The window of Al-Kafeel (720p) [Not 24/7] +https://stream.alkafeel.net/live/alkafeel/rAa5PGot1/manifest.m3u8 +#EXTINF:-1 tvg-id="AmozhgaryTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/SRotZrm.png" group-title="Religious",Amozhgary TV (1080p) +https://media.streambrothers.com:1936/8248/8248/playlist.m3u8 +#EXTINF:-1 tvg-id="AssyrianANB.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/way7KwN.jpg" group-title="General",Assyrian ANB (720p) [Offline] +https://597f64b67707a.streamlock.net/anbsat.com/anb2/playlist.m3u8 +#EXTINF:-1 tvg-id="AvaEntertainment.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/me5igxY.jpg" group-title="",Ava Entertainment (720p) [Not 24/7] +https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/playlist.m3u8 +#EXTINF:-1 tvg-id="BabylonTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://babylontv.net/wp-content/themes/babylontv/images/logo.png" group-title="General",Babylon TV (720p) [Offline] +https://iqlivestream.com/live/babylontv.flv +#EXTINF:-1 tvg-id="CihanTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/FoDSbvF.png" group-title="General",Cihan TV (576p) [Not 24/7] +http://cdn.liveshell.net:1935/live/cihann/playlist.m3u8 +#EXTINF:-1 tvg-id="Dijlah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/logo-new1.png" group-title="News",Dijlah (1080p) +http://91.134.145.75:10001/Dijlah/index.m3u8 +#EXTINF:-1 tvg-id="Dijlah.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/logo-new1.png" group-title="News",Dijlah (1080p) +https://ghaasiflu.online/Dijlah/index.m3u8 +#EXTINF:-1 tvg-id="DijlahTarab.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.dijlah.tv/templates/default-2/live-page/images/tarab-logo.png" group-title="Music",Dijlah Tarab (576p) [Not 24/7] +https://ghaasiflu.online/tarab/index.m3u8 +#EXTINF:-1 tvg-id="DuaTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/nntvc3o.png" group-title="Religious",Dua TV (720p) [Not 24/7] +https://live.ishiacloud.com/W67H7ddMzVHyXPrG.m3u8 +#EXTINF:-1 tvg-id="GaliKurdistan.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/t2qyVmX.png" group-title="",Gali Kurdistan (760p) [Not 24/7] +http://51.75.66.91:8080/gksat.mp4 +#EXTINF:-1 tvg-id="ImamHusseinTV1Farsi.iq" tvg-country="IQ" tvg-language="Persian" tvg-logo="https://ihttps://www.dijlah.tv/templates/default-2/images/dlogo.png.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 1 Farsi (360p) +https://live.imamhossaintv.com/live/ih1.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 2 Arabic (360p) +https://ar.imamhusseintv.com/live/ih201/index.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV2Arabic.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 2 Arabic (360p) +https://live.imamhossaintv.com/live/ih2.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV3English.iq" tvg-country="IQ" tvg-language="English" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 3 English (360p) +https://live.imamhossaintv.com/live/ih3.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq" tvg-country="IQ" tvg-language="Urdu" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 4 Urdu (720p) +https://ur.imamhusseintv.com/live/ih4.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV4Urdu.iq" tvg-country="IQ" tvg-language="Urdu" tvg-logo="https://i.imgur.com/ocyh4DD.jpg" group-title="Religious",Imam Hussein TV 4 Urdu (360p) +https://live.imamhossaintv.com/live/ih4.m3u8 +#EXTINF:-1 tvg-id="iNEWS.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PeuBkaH.png" group-title="News",iNEWS (1080p) [Not 24/7] +https://svs.itworkscdn.net/inewsiqlive/inewsiq.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Iraq24.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dsLW8ex.png" group-title="News",Iraq 24 (1080p) [Not 24/7] +https://113483.global.ssl.fastly.net/edge-en/ngrp:live_31b220e0e20611eab1b9cfce247e5d5f_all/index.m3u8 +#EXTINF:-1 tvg-id="IraqFuture.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Z7woTe5.png" group-title="General",Iraq Future (576p) [Offline] +https://streaming.viewmedia.tv/viewsatstream40/viewsatstream40.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IraqiaSport.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zL78RX9.png" group-title="Sports",Iraqia Sport (1080p) [Geo-blocked] +https://au7live.tooliserver.com/live/149075_0.m3u8?session= +#EXTINF:-1 tvg-id="IshtarTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="http://live.ishtartv.com/files/ishtar_animated.gif" group-title="General",Ishtar TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://vimeo.com/event/1243782 +#EXTINF:-1 tvg-id="KarbalaTV.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/63/Karbala_tv.jpg" group-title="Religious",Karbala TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/karbalaatv/live +#EXTINF:-1 tvg-id="KirkukTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Kirkuk TV (576p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/IHTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Kurdistan24.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Kurdistan 24 (720p) +https://d1x82nydcxndze.cloudfront.net/live/index.m3u8 +#EXTINF:-1 tvg-id="KurdistanTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/GLfhYSH.png" group-title="General",Kurdistan TV (720p) [Not 24/7] +https://5a3ed7a72ed4b.streamlock.net/live/SMIL:myStream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxSorani.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/%D9%A1_1.png" group-title="",KurdMax (1080p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxMusic.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/music_2.png" group-title="Music",KurdMax Music (720p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/music/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxShow.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/show_2.png" group-title="",KurdMax Show (720p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:SHOW1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdMaxKurmanci.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/%D9%A1_1.png" group-title="",KurdMax Sorani (1080p) [Not 24/7] +https://5aa8c7549bfa9.streamlock.net/liveTrans/ngrp:myStream2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdSat.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://kurdmaxcms.com/asset/image/footer_logo/show_2.png" group-title="",KurdSat (720p) +http://ikomg2.s.llnwi.net/kurdsathd/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdSatNews.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/c5ACcvv.jpg" group-title="News",KurdSat News (720p) +http://ikomg2.s.llnwi.net/kurdsatnewshd/playlist.m3u8 +#EXTINF:-1 tvg-id="KurdSatNews.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/c5ACcvv.jpg" group-title="News",KurdSat News (1080p) [Not 24/7] +https://ikomg2.mmdlive.lldns.net/ikomg2/107b7df8f5444d778f349100739a09cd/manifest.m3u8 +#EXTINF:-1 tvg-id="NetTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/CKY1SD8.png" group-title="",Net TV (1080p) [Not 24/7] +http://nettvstreampaid.flashmediacast.com:1935/nettvstreampaid/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NetTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/CKY1SD8.png" group-title="",Net TV (480p) [Not 24/7] +https://live.karwan.tv/karwan.tv/net-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NRTTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/4li5hRA.png" group-title="",NRT TV (720p) [Not 24/7] +https://media.streambrothers.com:1936/8226/8226/playlist.m3u8 +#EXTINF:-1 tvg-id="PayamTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="" group-title="",Payam TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/PayamTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RudawTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/5ZQ4GTu.jpg" group-title="News",Rudaw TV (1080p) +https://svs.itworkscdn.net/rudawlive/rudawlive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SpedaTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/va3TVSd.jpg" group-title="",Speda TV (720p) [Not 24/7] +http://liveshell.net:1935/live/speda084k/playlist.m3u8 +#EXTINF:-1 tvg-id="SterkTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/IbvZcPc.png" group-title="",SterkTV (720p) [Not 24/7] +https://602ccc850c9bb.streamlock.net/sterktv/smil:sterk.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WAARTV.iq" tvg-country="IQ" tvg-language="Kurdish" tvg-logo="https://i.imgur.com/ebX8IFk.png" group-title="General",WAAR TV (720p) [Not 24/7] +https://live.karwan.tv/karwan.tv/waar-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Zagros.iq" tvg-country="IQ" tvg-language="Arabic" tvg-logo="https://www.zagrosnews.net/sites/default/files/zagros-logo-01_1.png" group-title="General",Zagros (720p) [Not 24/7] +https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8 diff --git a/channels/ir.m3u~master b/channels/ir.m3u~master new file mode 100644 index 000000000..3a318fc61 --- /dev/null +++ b/channels/ir.m3u~master @@ -0,0 +1,253 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1TvPersian.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",1TvPersian (720p) [Not 24/7] +https://1-215-11778-1.b.cdn13.com/onetvpersia001.m3u8 +#EXTINF:-1 tvg-id="4UTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Icob3E3.jpg" group-title="Entertainment",4U TV (720p) [Not 24/7] +http://116.202.255.113:1935/4utv/livehd/playlist.m3u8 +#EXTINF:-1 tvg-id="4UTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Icob3E3.jpg" group-title="Entertainment",4U TV (480p) [Not 24/7] +http://116.202.255.113:1935/4utv/livesd/playlist.m3u8 +#EXTINF:-1 tvg-id="AFNTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",AFN TV (720p) [Not 24/7] +https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8 +#EXTINF:-1 tvg-id="AlAlam.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/jY1u1zz.png" group-title="News",Al Alam (360p) [Not 24/7] +https://live2.alalam.ir/alalam.m3u8 +#EXTINF:-1 tvg-id="AlKawtharTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Al Kawthar TV (240p) [Not 24/7] +http://178.252.143.156:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="AlWilayah.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/OI1HQv5.png" group-title="Religious",Al Wilayah (720p) [Not 24/7] +https://nl.livekadeh.com/hls2/alwilayah.tv.m3u8 +#EXTINF:-1 tvg-id="AlZahraTV.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ffFbUmd.jpg" group-title="",Al Zahra TV (720p) [Not 24/7] +https://live.al-zahratv.com/live/playlist2/index.m3u8 +#EXTINF:-1 tvg-id="AVAFamily.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Family",AVA Family (720p) [Not 24/7] +http://51.210.199.5/hls/stream.m3u8 +#EXTINF:-1 tvg-id="AVASeries.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Series",AVA Series (720p) +http://51.210.199.4/hls/stream.m3u8 +#EXTINF:-1 tvg-id="AyenehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.ayeneh.org/wp-content/uploads/2016/04/Ayeneh-TV-April-16-400x223.png" group-title="",Ayeneh TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BeitolAbbasTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",BeitolAbbas TV (720p) [Not 24/7] +http://live.beitolabbas.tv/live/beitolabbastv.m3u8 +#EXTINF:-1 tvg-id="CaltexTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Caltex TV (720p) [Not 24/7] +https://vid1.caltexmusic.com/hls/caltextv.m3u8 +#EXTINF:-1 tvg-id="CanadaStarTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="http://canadastartv.com/resimler/sistem/logo.png" group-title="",Canada Star TV (360p) [Offline] +https://live.livestreamtv.ca/canadastartv/smil:canadastartv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Legislative",Channel 1 (480p) [Not 24/7] +https://2nbyjjx7y53k-hls-live.5centscdn.com/cls040317/0070c5b7ef083bdc8de09065c61a34d8.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DiyarTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Diyar TV (720p) [Not 24/7] +http://51.210.199.28/hls/stream.m3u8 +#EXTINF:-1 tvg-id="EBC1TV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.livefarsi.com/uploads/tv_image/ebc1-tv.jpg" group-title="Music",EBC1 TV (720p) [Geo-blocked] +https://vsn1-cdn-phx.icastcenter.com/EBC1/EBC1/playlist.m3u8 +#EXTINF:-1 tvg-id="EcranTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Ecran TV (720p) [Not 24/7] +http://51.210.199.40/hls/stream.m3u8 +#EXTINF:-1 tvg-id="EkranMovie.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Ekran Movie (720p) [Offline] +http://159.69.58.154/ekran/ekrantv.m3u8 +#EXTINF:-1 tvg-id="FarazTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Faraz TV (720p) [Not 24/7] +https://faraztv.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:fars/playlist.m3u8 +#EXTINF:-1 tvg-id="Film1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Film 1 (720p) [Offline] +http://159.69.58.154/film1/film1tv.m3u8 +#EXTINF:-1 tvg-id="GEM24b.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/24b.png" group-title="Music",GEM 24b (1080p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=24b +https://d2e40kvaojifd6.cloudfront.net/stream/24b/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMAcademy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemusa.png" group-title="Movies",GEM Academy (540p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemusa +https://d2e40kvaojifd6.cloudfront.net/stream/gem_usa/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMArabia.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_arabia.png" group-title="Music",GEM Arabia (576p) [Not 24/7] +http://216.66.42.47:7777/GemArabia_HD.m3u8 +#EXTINF:-1 tvg-id="GEMAZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_az.png" group-title="Music",GEM AZ (576p) [Not 24/7] +http://216.66.42.47:7777/GemAZ_HD.m3u8 +#EXTINF:-1 tvg-id="GEMBollywood.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gembollywood.png" group-title="Movies",GEM Bollywood (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gembollywood +https://stream-cdn.gemonline.tv/live/gembollywood/index.m3u8 +#EXTINF:-1 tvg-id="GEMClassic.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_az.png?14" group-title="Classic",GEM Classic (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemclassic +https://stream-cdn.gemonline.tv/live/gemclassic/index.m3u8 +#EXTINF:-1 tvg-id="GEMComedy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_comedy.png" group-title="Movies",GEM Comedy (576p) [Not 24/7] +http://216.66.42.47:7777/GemComedy_HD.m3u8 +#EXTINF:-1 tvg-id="GEMCrypto.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/Pt59QNN.png" group-title="",GEM Crypto (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_crypto +https://stream-cdn.gemonline.tv/live/gemcrypto/index.m3u8 +#EXTINF:-1 tvg-id="GEMDrama.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemdrama.png" group-title="Movies",GEM Drama (360p) [Timeout] +http://65.21.196.79/gem_drama/master.m3u8 +#EXTINF:-1 tvg-id="GEMFilm.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_film.png?14" group-title="Movies",GEM Film (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_film +https://stream-cdn.gemonline.tv/live/gemfilm/index.m3u8 +#EXTINF:-1 tvg-id="GEMFit.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.net/Assets/channels-box/gem_fit.png?14" group-title="Sports",GEM Fit (360p) [Timeout] +http://65.21.196.79/30tv/master.m3u8 +#EXTINF:-1 tvg-id="GEMFood.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_food.png?14" group-title="Cooking",GEM Food (360p) [Timeout] +http://65.21.196.79/gem_food/master.m3u8 +#EXTINF:-1 tvg-id="GEMJunior.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemjunior.png" group-title="Kids",GEM Junior (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemjunior +https://stream-cdn.gemonline.tv/live/gemjunior/index.m3u8 +#EXTINF:-1 tvg-id="GEMKids.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemkids.png" group-title="Kids",GEM Kids (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemkids +https://stream-cdn.gemonline.tv/live/gemkids/index.m3u8 +#EXTINF:-1 tvg-id="GEMLatino.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.net/Assets/channels-box/gem_latino.png?14" group-title="Music",GEM Latino (540p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_latino +https://d2e40kvaojifd6.cloudfront.net/stream/gem_latino/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMLifeTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_life.png?14" group-title="Music",GEM Life (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_life +https://stream-cdn.gemonline.tv/live/gemlife/index.m3u8 +#EXTINF:-1 tvg-id="GEMMaxx.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/maxx.png?14" group-title="Entertainment",GEM Maxx (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=maxx +https://stream-cdn.gemonline.tv/live/gemmaxx/index.m3u8 +#EXTINF:-1 tvg-id="GEMMifa.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/mifa.png" group-title="Music",GEM Mifa (360p) [Timeout] +http://65.21.196.79/mifa/master.m3u8 +#EXTINF:-1 tvg-id="GEMModernEconomy.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/modern_economy.png" group-title="Documentary",GEM Modern Economy (540p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=modern_economy +https://d2e40kvaojifd6.cloudfront.net/stream/modern_economy/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMNature.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_nature.png" group-title="Entertainment",GEM Nature (360p) [Timeout] +http://65.21.196.79/gem_nature/master.m3u8 +#EXTINF:-1 tvg-id="GEMOnyx.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/onyx.png" group-title="Movies",GEM Onyx (1080p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=onyx +https://d2e40kvaojifd6.cloudfront.net/stream/onyx/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMProperty.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_property.png?14" group-title="",GEM Property (540p) [Geo-blocked] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_property +https://d2e40kvaojifd6.cloudfront.net/stream/gem_property/playlist.m3u8 +#EXTINF:-1 tvg-id="GEMRiver.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/river.png?14" group-title="Entertainment",GEM River (360p) [Timeout] +http://65.21.196.79/gem_river/master.m3u8 +#EXTINF:-1 tvg-id="GEMRubix.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/rubix.png?14" group-title="Movies",GEM Rubix (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=rubix +https://stream-cdn.gemonline.tv/live/rubix/index.m3u8 +#EXTINF:-1 tvg-id="GEMSeries.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemseries.png" group-title="Movies",GEM Series (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemseries +http://65.21.196.79/gem_series/master.m3u8 +#EXTINF:-1 tvg-id="GEMTravel.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gem_travel.png" group-title="Entertainment",GEM Travel (576p) [Offline] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gem_travel +https://stream-cdn.gemonline.tv/live/gemtravel/index.m3u8 +#EXTINF:-1 tvg-id="GEMTv.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.gemonline.tv/Assets/channels-box/gemtv.png" group-title="Movies",GEM Tv (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://www.gemonline.tv/en-US/Live/Index?channelname=gemtv +http://65.21.196.79/gem_tv/master.m3u8 +#EXTINF:-1 tvg-id="GOLESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",GOLESTAN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:golestan/playlist.m3u8 +#EXTINF:-1 tvg-id="HastiTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Hasti TV (1080p) +https://live.hastitv.com/hls/livetv.m3u8 +#EXTINF:-1 tvg-id="Hispantv.ir" tvg-country="IR;ES;HISPAM" tvg-language="Spanish" tvg-logo="https://en.wikipedia.org/wiki/File:HispanTv_logo.svg" group-title="News",HispanTV (480p) +https://live.presstv.ir/live/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Hispantv.ir" tvg-country="IR;ES;HISPAM" tvg-language="Spanish" tvg-logo="https://en.wikipedia.org/wiki/File:HispanTv_logo.svg" group-title="News",HispanTV (480p) +https://live1.presstv.ir/live/hispan.m3u8 +#EXTINF:-1 tvg-id="HodHodTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/TMxCgX1.jpg" group-title="",HodHod TV (720p) +http://51.210.199.12/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IcnetTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Icnet TV (720p) [Not 24/7] +http://51.210.199.7/hls/stream.m3u8 +#EXTINF:-1 tvg-id="iFILM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/ir-ifilm-4421.jpg" group-title="",iFILM (720p) [Not 24/7] +https://live.presstv.ir/ifilmlive/smil:ifilmtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="iFILMArabic.ir" tvg-country="IR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RPwKZUD.jpg" group-title="Movies",iFILM Arabic (720p) +https://live.presstv.ir/ifilmlive/smil:ifilmar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="iFILMEnglish.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/GgmXZRU.png" group-title="Movies",iFILM English (480p) [Geo-blocked] +https://live1.presstv.ir/live/ifilmen.m3u8 +#EXTINF:-1 tvg-id="iFILMPersian2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://fa2.ifilmtv.com/img/test-final02.png" group-title="Movies",iFILM Persian 2 (480p) [Not 24/7] +https://live1.presstv.ir/live/ifilm2.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/FPfq4O5.png" group-title="Religious",Imam Hussein TV (720p) +https://fa.imamhusseintv.com/live/ih1.m3u8 +#EXTINF:-1 tvg-id="ImamHusseinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/FPfq4O5.png" group-title="Religious",Imam Hussein TV 1 (360p) +https://live.imamhossaintv.com/live/ih103/index.m3u8 +#EXTINF:-1 tvg-id="INTVSimayeAzadi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/CTIINTk.png" group-title="",INTV Simaye Azadi (1080p) +https://sima-i.akamaihd.net/hls/live/624111/sima/index.m3u8 +#EXTINF:-1 tvg-id="IranBeauty.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/e8vc8vh.jpg" group-title="",Iran Beauty (720p) [Not 24/7] +http://51.210.199.57/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IraneAryaee.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Legislative",Irane Aryaee (480p) [Offline] +http://159.69.58.154/irane_arya/irane_arya.m3u8 +#EXTINF:-1 tvg-id="ITN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",ITN (720p) [Not 24/7] +http://51.210.199.31/hls/stream.m3u8 +#EXTINF:-1 tvg-id="iToon.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/2HoOHwF.png" group-title="Kids",iToon (360p) [Offline] +http://159.69.58.154/itoon/master.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/HQjLbwm.png" group-title="Religious",Kalemeh TV (1080p) [Not 24/7] +https://live.kalemehtv.tv/live/ngrp:kalemeh_all/playlist.m3u8 +#EXTINF:-1 tvg-id="KhaterehTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Khatereh TV (368p) [Geo-blocked] +https://5caf24a595d94.streamlock.net:1937/8130/8130/playlist.m3u8 +#EXTINF:-1 tvg-id="Manoto.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://dwphh95xlnw84.cloudfront.net/images/static/placeholder/manotologo.png" group-title="Entertainment",Manoto TV (1080p) +https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 +#EXTINF:-1 tvg-id="Marjaeyat.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Marjaeyat (1080p) [Not 24/7] +https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8 +#EXTINF:-1 tvg-id="MihanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="http://mihantv.com/wp-content/themes/mihantv/images/logo.png" group-title="News",Mihan TV (360p) [Not 24/7] +https://iptv.mihantv.com/live/playlist1/index.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/espyPNl.png" group-title="Religious",Mohabat TV (540p) +http://204.11.235.251:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/r1VblfT.png" group-title="Religious",Mohabat TV (540p) +https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MonoTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Sports",Mono TV (720p) [Offline] +http://51.210.227.137/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Music1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",Music 1 [Offline] +http://159.69.58.154/music1/music1_tv.m3u8 +#EXTINF:-1 tvg-id="NAVAHANG.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",NAVAHANG (720p) +http://51.210.227.130/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Nour.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Nour (720p) [Not 24/7] +https://cdn.videoevent.live:19360/elfaro4/elfaro4.m3u8 +#EXTINF:-1 tvg-id="OmideIran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Omide Iran (720p) [Not 24/7] +http://51.210.199.38/hls/stream.m3u8 +#EXTINF:-1 tvg-id="OXIRTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/q3cxxW3.jpg" group-title="",OXIR TV (720p) [Offline] +http://51.210.199.36/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ParnianTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/ca-parnian-tv-9509.jpg" group-title="",Parnian TV (1080p) [Not 24/7] +https://live2.parnian.tv/hls/live/play.m3u8 +#EXTINF:-1 tvg-id="ParsTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/EKS7sPr.png" group-title="",Pars TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls032817/18e2bf34e2035dbabf48ee2db66405ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="Parsiland.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Parsiland (540p) [Not 24/7] +http://vps.parsiland.net/hls/ParsiLand.m3u8 +#EXTINF:-1 tvg-id="PayamJavanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://payamjavan.com/wp-content/uploads/2019/05/logo-Payam-Javan.png" group-title="Entertainment",Payam Javan TV (720p) [Not 24/7] +https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="PayvandTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="http://nebula.wsimg.com/e903234fabf798439adab0207277eb7b?AccessKeyId=2686ECEA8341253D570E&disposition=0&alloworigin=1" group-title="Religious",Payvand TV (720p) [Not 24/7] +https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8 +#EXTINF:-1 tvg-id="PBCTapeshTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/J0Oj78g.jpg" group-title="",PBC Tapesh TV (360p) [Not 24/7] +http://iptv.tapesh.tv/tapesh/playlist.m3u8 +#EXTINF:-1 tvg-id="PersianBazar.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Shop",Persian Bazar (720p) [Not 24/7] +https://stream.persiantv1.com/ptv1/playlist1/index.m3u8 +#EXTINF:-1 tvg-id="PersianFilm.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Persian Film (720p) [Not 24/7] +http://51.210.227.135/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PMC.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/srVaOna.png" group-title="Music",PMC (1080p) +https://hls.pmchd.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PMCRoyale.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/srVaOna.png" group-title="Music",PMC Royale (720p) [Not 24/7] +http://51.210.199.29/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PressTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/TNQKahI.png" group-title="News",Press TV English (720p) +https://live.presstv.ir/liveprs/smil:liveprs/playlist.m3u8 +#EXTINF:-1 tvg-id="PressTV.ir" tvg-country="IR" tvg-language="English" tvg-logo="https://i.imgur.com/TNQKahI.png" group-title="News",Press TV French (1080p) [Not 24/7] +https://live1.presstv.ir/live/presstvfr/index.m3u8 +#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFarda.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/NqTGH0Q.png" group-title="",Radio Farda (576p) [Not 24/7] +https://rfe-lh.akamaihd.net/i/rfe_tvmc1@383622/master.m3u8 +#EXTINF:-1 tvg-id="RadioJavanTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/4XTyMST.jpg" group-title="Music",Radio Javan TV (1080p) [Not 24/7] +https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RangarangTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/s5yF9aU.jpg" group-title="",Rangarang TV (720p) [Not 24/7] +https://iptv.rangarang.us/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (240p) +http://cdn1.live.irib.ir:1935/epg-live/smil:sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="Sahar.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Sahar (480p) +http://cdnlive.irib.ir/live-channels/smil:sahar3/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHARKURDI.ir" tvg-country="IR" tvg-language="Kurdish" tvg-logo="" group-title="",SAHAR KURDI (576p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/56 +#EXTINF:-1 tvg-id="SalamTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Salam TV (720p) +https://iptv.salaamtv.org/salaam/playlist.m3u8 +#EXTINF:-1 tvg-id="SepanjTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Sepanj TV (720p) [Not 24/7] +http://51.210.199.30/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SL1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/n9cuM2W.jpg" group-title="Movies",SL 1 (720p) +http://51.210.199.3/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SL2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/BVuUx5R.jpg" group-title="Movies",SL 2 (720p) +http://51.210.199.2/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SNN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/SNN_Logo.svg/320px-SNN_Logo.svg.png" group-title="Entertainment",SNN TV (720p) [Not 24/7] +https://live.snn.ir/hls/snn/index.m3u8 +#EXTINF:-1 tvg-id="T2TV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/BwyQR6n.png" group-title="Music",T2 TV (720p) [Not 24/7] +http://208.113.204.104:8123/live/tapesh-live-stream/index.m3u8 +#EXTINF:-1 tvg-id="Tapesh2Movies.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Tapesh 2 Movies (720p) [Not 24/7] +http://159.69.58.154/t2_movies/master.m3u8 +#EXTINF:-1 tvg-id="TBNNejatTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://nejattv.org/assets/img/tbn-nejat-logo.png" group-title="",TBN Nejat TV (540p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266913/live.m3u8 +#EXTINF:-1 tvg-id="TehranTV24.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",TehranTV 24 (720p) +http://51.210.227.132/hls/stream.m3u8 +#EXTINF:-1 tvg-id="TinTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Tin TV (720p) [Not 24/7] +https://bozztv.com/1gbw5/tintv/tintv/playlist.m3u8 +#EXTINF:-1 tvg-id="Toonix.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Kids",Toonix (720p) [Not 24/7] +http://51.210.227.134/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Valiasr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Valiasr (480p) [Offline] +https://ir13.livekadeh.com/hls2/valiasr.m3u8 +#EXTINF:-1 tvg-id="Varzesh.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Varzesh (1080p) +http://cdn1.live.irib.ir:1935/channel-live/smil:varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (1080p) +http://cdn1.live.irib.ir:1935/live-channels/smil:varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="VarzeshTVFarsi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/ADQM8Pk.png" group-title="",Varzesh TV Farsi (720p) [Not 24/7] +http://51.210.199.16/hls/stream.m3u8 +#EXTINF:-1 tvg-id="VOX1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/OFuIRFI.jpg" group-title="",VOX1 (720p) [Not 24/7] +http://51.210.199.8/hls/stream.m3u8 +#EXTINF:-1 tvg-id="VOX2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/DN5wvFg.jpg" group-title="",VOX2 (720p) [Not 24/7] +http://51.210.199.9/hls/stream.m3u8 +#EXTINF:-1 tvg-id="YourTimeTV.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://yourtime.tv/img/utv-logo.png" group-title="Entertainment",YourTime TV (720p) [Not 24/7] +https://hls.yourtime.live/hls/stream.m3u8 diff --git a/channels/ir_telewebion.m3u~master b/channels/ir_telewebion.m3u~master new file mode 100644 index 000000000..24add295f --- /dev/null +++ b/channels/ir_telewebion.m3u~master @@ -0,0 +1,207 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABADAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ABADAN (576p) +https://sdm.telewebion.com/live/abadan/playlist.m3u8 +#EXTINF:-1 tvg-id="ABADAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ABADAN (576p) +https://sdw.telewebion.com/live/abadan/playlist.m3u8 +#EXTINF:-1 tvg-id="AFLAK.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFLAK (576p) +https://sdm.telewebion.com/live/aflak/playlist.m3u8 +#EXTINF:-1 tvg-id="AFLAK.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFLAK (576p) +https://sdw.telewebion.com/live/aflak/playlist.m3u8 +#EXTINF:-1 tvg-id="AFTAB.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFTAB (576p) +https://sdm.telewebion.com/live/aftab/playlist.m3u8 +#EXTINF:-1 tvg-id="AFTAB.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AFTAB (576p) +https://sdw.telewebion.com/live/aftab/playlist.m3u8 +#EXTINF:-1 tvg-id="ALBORZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ALBORZ (576p) +https://sdm.telewebion.com/live/alborz/playlist.m3u8 +#EXTINF:-1 tvg-id="ALBORZ.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ALBORZ (576p) +https://sdw.telewebion.com/live/alborz/playlist.m3u8 +#EXTINF:-1 tvg-id="AMOOZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AMOOZESH (576p) +https://sdm.telewebion.com/live/amouzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="AMOOZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",AMOOZESH (576p) +https://sdw.telewebion.com/live/amouzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Azarbayjan Gharbi (576p) +https://sdm.telewebion.com/live/azarbayjangharbi/playlist.m3u8 +#EXTINF:-1 tvg-id="AzarbayjanGharbi.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Azarbayjan Gharbi (576p) +https://sdw.telewebion.com/live/azarbayjangharbi/playlist.m3u8 +#EXTINF:-1 tvg-id="Baran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Baran (576p) +https://sdm.telewebion.com/live/baran/playlist.m3u8 +#EXTINF:-1 tvg-id="Baran.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Baran (576p) +https://sdw.telewebion.com/live/baran/playlist.m3u8 +#EXTINF:-1 tvg-id="Bushehr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Bushehr (576p) [Not 24/7] +https://sdm.telewebion.com/live/bushehr/playlist.m3u8 +#EXTINF:-1 tvg-id="Bushehr.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Bushehr (576p) [Not 24/7] +https://sdw.telewebion.com/live/bushehr/playlist.m3u8 +#EXTINF:-1 tvg-id="Dena.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Dena (576p) +https://sdm.telewebion.com/live/dena/playlist.m3u8 +#EXTINF:-1 tvg-id="Dena.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Dena (576p) [Timeout] +https://sdw.telewebion.com/live/dena/playlist.m3u8 +#EXTINF:-1 tvg-id="ESFAHAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESFAHAN (576p) +https://sdm.telewebion.com/live/esfahan/playlist.m3u8 +#EXTINF:-1 tvg-id="ESFAHAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESFAHAN (576p) +https://sdw.telewebion.com/live/esfahan/playlist.m3u8 +#EXTINF:-1 tvg-id="ESHRAGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESHRAGH (576p) +https://sdw.telewebion.com/live/eshragh/playlist.m3u8 +#EXTINF:-1 tvg-id="ESHRAGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ESHRAGH (576p) [Timeout] +https://sdm.telewebion.com/live/eshragh/playlist.m3u8 +#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (576p) +https://sdm.telewebion.com/live/fars/playlist.m3u8 +#EXTINF:-1 tvg-id="FARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",FARS (576p) +https://sdw.telewebion.com/live/fars/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMEDAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMEDAN (576p) +https://sdm.telewebion.com/live/sina/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMEDAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMEDAN (576p) +https://sdw.telewebion.com/live/sina/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMOON.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMOON (576p) +https://sdm.telewebion.com/live/hamoon/playlist.m3u8 +#EXTINF:-1 tvg-id="HAMOON.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",HAMOON (576p) +https://sdw.telewebion.com/live/hamoon/playlist.m3u8 +#EXTINF:-1 tvg-id="ILAM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ILAM (576p) +https://sdm.telewebion.com/live/ilam/playlist.m3u8 +#EXTINF:-1 tvg-id="ILAM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",ILAM (576p) +https://sdw.telewebion.com/live/ilam/playlist.m3u8 +#EXTINF:-1 tvg-id="IRANKALA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",IRANKALA (576p) +https://sdm.telewebion.com/live/irankala/playlist.m3u8 +#EXTINF:-1 tvg-id="IRANKALA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",IRANKALA (576p) [Not 24/7] +https://sdw.telewebion.com/live/irankala/playlist.m3u8 +#EXTINF:-1 tvg-id="IRINN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://s3.ott.tva.tv/rosing-tva-production/44d0105b6c9ec94b5c3e_512x512c.png" group-title="",IRINN (1080p) [Not 24/7] +https://sdm.telewebion.com/live/irinn/playlist.m3u8 +#EXTINF:-1 tvg-id="IRINN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://s3.ott.tva.tv/rosing-tva-production/44d0105b6c9ec94b5c3e_512x512c.png" group-title="",IRINN (1080p) [Timeout] +https://sdw.telewebion.com/live/irinn/playlist.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (576p) +https://sdm.telewebion.com/live/jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="JAHANBIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",JAHANBIN (576p) +https://sdw.telewebion.com/live/jahanbin/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMAN (576p) +https://sdm.telewebion.com/live/kerman/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMAN (576p) +https://sdw.telewebion.com/live/kerman/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMANSHAH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMANSHAH (576p) +https://sdm.telewebion.com/live/zagros/playlist.m3u8 +#EXTINF:-1 tvg-id="KERMANSHAH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KERMANSHAH (576p) +https://sdw.telewebion.com/live/zagros/playlist.m3u8 +#EXTINF:-1 tvg-id="KHJONOOBI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.JONOOBI (576p) +https://sdm.telewebion.com/live/khavaran/playlist.m3u8 +#EXTINF:-1 tvg-id="KHJONOOBI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.JONOOBI (576p) +https://sdw.telewebion.com/live/khavaran/playlist.m3u8 +#EXTINF:-1 tvg-id="KHRAZAVI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.RAZAVI (576p) [Not 24/7] +https://sdw.telewebion.com/live/khorasanrazavi/playlist.m3u8 +#EXTINF:-1 tvg-id="KHRAZAVI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.RAZAVI (576p) [Timeout] +https://sdm.telewebion.com/live/khorasanrazavi/playlist.m3u8 +#EXTINF:-1 tvg-id="KHSHOMALI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.SHOMALI (576p) [Not 24/7] +https://sdm.telewebion.com/live/atrak/playlist.m3u8 +#EXTINF:-1 tvg-id="KHSHOMALI.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KH.SHOMALI (576p) [Timeout] +https://sdw.telewebion.com/live/atrak/playlist.m3u8 +#EXTINF:-1 tvg-id="KHALIJEFARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHALIJEFARS (576p) [Not 24/7] +https://sdm.telewebion.com/live/khalijefars/playlist.m3u8 +#EXTINF:-1 tvg-id="KHALIJEFARS.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHALIJEFARS (576p) [Not 24/7] +https://sdw.telewebion.com/live/khalijefars/playlist.m3u8 +#EXTINF:-1 tvg-id="KHOOZESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHOOZESTAN (576p) +https://sdm.telewebion.com/live/khoozestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KHOOZESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KHOOZESTAN (576p) [Not 24/7] +https://sdw.telewebion.com/live/khoozestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KISH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KISH (576p) +https://sdw.telewebion.com/live/kish/playlist.m3u8 +#EXTINF:-1 tvg-id="KISH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KISH (240p) [Timeout] +https://sdm.telewebion.com/live/kish/playlist.m3u8 +#EXTINF:-1 tvg-id="KORDESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KORDESTAN (576p) +https://sdm.telewebion.com/live/kordestan/playlist.m3u8 +#EXTINF:-1 tvg-id="KORDESTAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",KORDESTAN (576p) [Timeout] +https://sdw.telewebion.com/live/kordestan/playlist.m3u8 +#EXTINF:-1 tvg-id="MAHABAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAHABAD (576p) +https://sdm.telewebion.com/live/mahabad/playlist.m3u8 +#EXTINF:-1 tvg-id="MAHABAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAHABAD (576p) +https://sdw.telewebion.com/live/mahabad/playlist.m3u8 +#EXTINF:-1 tvg-id="MAZANDARAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAZANDARAN (576p) +https://sdm.telewebion.com/live/tabarestan/playlist.m3u8 +#EXTINF:-1 tvg-id="MAZANDARAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MAZANDARAN (576p) [Timeout] +https://sdw.telewebion.com/live/tabarestan/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSTANAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MOSTANAD (1080p) [Timeout] +https://sdw.telewebion.com/live/mostanad/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSTANAD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",MOSTANAD (480p) [Timeout] +https://sdm.telewebion.com/live/mostanad/playlist.m3u8 +#EXTINF:-1 tvg-id="NAMAYESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NAMAYESH (1080p) [Timeout] +https://sdm.telewebion.com/live/namayesh/playlist.m3u8 +#EXTINF:-1 tvg-id="NAMAYESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NAMAYESH (1080p) [Timeout] +https://sdw.telewebion.com/live/namayesh/playlist.m3u8 +#EXTINF:-1 tvg-id="NASIM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NASIM (1080p) [Timeout] +https://sdm.telewebion.com/live/nasim/playlist.m3u8 +#EXTINF:-1 tvg-id="NASIM.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",NASIM (1080p) [Timeout] +https://sdw.telewebion.com/live/nasim/playlist.m3u8 +#EXTINF:-1 tvg-id="Noor.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Noor (576p) +https://sdm.telewebion.com/live/noor/playlist.m3u8 +#EXTINF:-1 tvg-id="Noor.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Noor (576p) +https://sdw.telewebion.com/live/noor/playlist.m3u8 +#EXTINF:-1 tvg-id="OFOGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OFOGH (1080p) [Not 24/7] +https://sdm.telewebion.com/live/ofogh/playlist.m3u8 +#EXTINF:-1 tvg-id="OFOGH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OFOGH (1080p) [Not 24/7] +https://sdw.telewebion.com/live/ofogh/playlist.m3u8 +#EXTINF:-1 tvg-id="OMID.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OMID (576p) +https://sdw.telewebion.com/live/omid/playlist.m3u8 +#EXTINF:-1 tvg-id="OMID.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",OMID (240p) [Timeout] +https://sdm.telewebion.com/live/omid/playlist.m3u8 +#EXTINF:-1 tvg-id="POUYA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",POUYA (240p) +https://sdw.telewebion.com/live/pooya/playlist.m3u8 +#EXTINF:-1 tvg-id="POUYA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",POUYA (1080p) [Timeout] +https://sdm.telewebion.com/live/pooya/playlist.m3u8 +#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (576p) +https://sdm.telewebion.com/live/qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="QAZVIN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QAZVIN (576p) +https://sdw.telewebion.com/live/qazvin/playlist.m3u8 +#EXTINF:-1 tvg-id="QURAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QURAN (576p) +https://sdm.telewebion.com/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="QURAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",QURAN (576p) +https://sdw.telewebion.com/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="SABALAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SABALAN (576p) [Timeout] +https://sdm.telewebion.com/live/sabalan/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (576p) +https://sdm.telewebion.com/live/sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="SAHAND.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SAHAND (576p) +https://sdw.telewebion.com/live/sahand/playlist.m3u8 +#EXTINF:-1 tvg-id="SALAMAT.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SALAMAT (576p) +https://sdm.telewebion.com/live/salamat/playlist.m3u8 +#EXTINF:-1 tvg-id="SALAMAT.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SALAMAT (576p) +https://sdw.telewebion.com/live/salamat/playlist.m3u8 +#EXTINF:-1 tvg-id="SEMNAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEMNAN (576p) +https://sdm.telewebion.com/live/semnan/playlist.m3u8 +#EXTINF:-1 tvg-id="SEMNAN.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEMNAN (576p) +https://sdw.telewebion.com/live/semnan/playlist.m3u8 +#EXTINF:-1 tvg-id="SEPEHR.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEPEHR (576p) +https://sdm.telewebion.com/live/sepehr/playlist.m3u8 +#EXTINF:-1 tvg-id="SEPEHR.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SEPEHR (576p) +https://sdw.telewebion.com/live/sepehr/playlist.m3u8 +#EXTINF:-1 tvg-id="SHOMA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SHOMA (576p) +https://sdm.telewebion.com/live/shoma/playlist.m3u8 +#EXTINF:-1 tvg-id="SHOMA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",SHOMA (576p) +https://sdw.telewebion.com/live/shoma/playlist.m3u8 +#EXTINF:-1 tvg-id="TAMASHA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TAMASHA (1080p) +https://sdm.telewebion.com/live/hdtest/playlist.m3u8 +#EXTINF:-1 tvg-id="TAMASHA.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TAMASHA (1080p) +https://sdw.telewebion.com/live/hdtest/playlist.m3u8 +#EXTINF:-1 tvg-id="TV1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV1 (1080p) +https://sdw.telewebion.com/live/tv1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV1.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV1 (1080p) [Not 24/7] +https://sdm.telewebion.com/live/tv1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV2 (576p) +https://sdw.telewebion.com/live/tv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV2 (240p) +https://sdm.telewebion.com/live/tv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TV3.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV3 (1080p) [Not 24/7] +https://sdw.telewebion.com/live/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TV3.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV3 (360p) [Not 24/7] +https://sdm.telewebion.com/live/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TV4.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV4 (576p) +https://sdm.telewebion.com/live/tv4/playlist.m3u8 +#EXTINF:-1 tvg-id="TV4.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV4 (576p) [Timeout] +https://sdw.telewebion.com/live/tv4/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV5 (576p) +https://sdm.telewebion.com/live/tehran/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",TV5 (240p) +https://sdw.telewebion.com/live/tehran/playlist.m3u8 +#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (240p) [Not 24/7] +https://sdw.telewebion.com/live/varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="VARZESH.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",VARZESH (1080p) [Timeout] +https://sdm.telewebion.com/live/varzesh/playlist.m3u8 +#EXTINF:-1 tvg-id="YAZD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",YAZD (576p) +https://sdm.telewebion.com/live/taban/playlist.m3u8 +#EXTINF:-1 tvg-id="YAZD.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",YAZD (576p) [Not 24/7] +https://sdw.telewebion.com/live/taban/playlist.m3u8 diff --git a/channels/is.m3u b/channels/is.m3u new file mode 100644 index 000000000..eff15744a --- /dev/null +++ b/channels/is.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="N4.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/bLA64K0.png" group-title="",N4 (720p) +https://live.tv.c.is/n4/index.m3u8 +#EXTINF:-1 tvg-id="RUV.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/mtMIIT0.png" group-title="",RÚV (360p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/iceland/ruv +#EXTINF:-1 tvg-id="RUV2.is" tvg-country="IS" tvg-language="Icelandic" tvg-logo="https://i.imgur.com/mtMIIT0.png" group-title="",RÚV 2 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/iceland/ruv2 diff --git a/channels/it.m3u~master b/channels/it.m3u~master new file mode 100644 index 000000000..2e77d13a6 --- /dev/null +++ b/channels/it.m3u~master @@ -0,0 +1,492 @@ +#EXTM3U +#EXTINF:-1 tvg-id="12TVParma.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.12tvparma.it/static/img/12tvparma.png" group-title="General",12 TV Parma (540p) [Not 24/7] +https://5929b138b139d.streamlock.net/12TVParma/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="20Mediaset.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/e/e4/20_Mediaset_-_Logo_2018.svg" group-title="",20 Mediaset [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(lb)/index.m3u8 +#EXTINF:-1 tvg-id="51RadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://i65.tinypic.com/wmf409.jpg" group-title="",51 Radio TV (480p) [Geo-blocked] +http://wms.shared.streamshow.it/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="A2itv.it" tvg-country="IT" tvg-language="English;French" tvg-logo="" group-title="",A2itv (1080p) [Not 24/7] +https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="ABChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/y5564NI.png" group-title="",AB Channel (720p) [Not 24/7] +https://tsw.streamingwebtv24.it:1936/abchanneltv/abchanneltv/playlist.m3u8 +#EXTINF:-1 tvg-id="ABChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/d/d4/Ab_channel_i_logo.png" group-title="",AB Channel (768p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/abchannel/abchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Gfy3pb1.jpg" group-title="",Alma TV (576p) [Timeout] +http://151.0.207.99:1935/AlmaTv/AlmaTv/playlist.m3u8 +#EXTINF:-1 tvg-id="AltoAdigeTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Alto Adige TV (720p) +https://5f204aff97bee.streamlock.net/AltoAdigeTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="AntennaTreVeneto.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Antenna Tre Veneto (480p) [Geo-blocked] +https://59d8c0cee6f3d.streamlock.net/antennatreveneto/antennatreveneto.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AuroraArte.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Y1Yq3iV.png" group-title="",Aurora Arte (480p) +https://59d7d6f47d7fc.streamlock.net/auroraarte/auroraarte/playlist.m3u8 +#EXTINF:-1 tvg-id="AzzurraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.vcoazzurratv.it/images/1_tg_loghi/logo_vcoazzurratv_old_03.png" group-title="",Azzurra TV (576p) [Not 24/7] +https://sb.top-ix.org/avtvlive/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="Bike.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/wZh7aI8.png" group-title="",Bike (720p) [Timeout] +http://backup.superstreaming.inaria.me/BikeSmartMobilityDTT/playlist.m3u8 +#EXTINF:-1 tvg-id="BoingFrance.it" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/mIbmYs1.png" group-title="Kids",Boing France (720p) [Not 24/7] +http://flusonic-1.platinum-tv.com/boing/index.m3u8?token=test +#EXTINF:-1 tvg-id="BoingSpain.it" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mIbmYs1.png" group-title="Kids",Boing Spain [Offline] +http://149.62.177.157:8000/play/a010 +#EXTINF:-1 tvg-id="CafeTV24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Ta05IbG.jpg" group-title="",CafeTV24 (720p) +https://srvx1.selftv.video/cafe/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CafeTV24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.jennigandolfi.com/wp-content/uploads/2018/04/LOGO-CAFETV24-2018_01_12-15_26_50-UTC.png" group-title="",CafèTV24 (720p) +http://srv3.meway.tv:1957/cafe/live/playlist.m3u8 +#EXTINF:-1 tvg-id="CameradeiDeputativiaRR.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Camera dei Deputati (via RR) (240p) +https://video-ar.radioradicale.it/diretta/camera2/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale2Altamura.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/uh4R5Ih.png" group-title="",Canale 2 Altamura (576p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/canale2/canale2/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/02/Canale_5_-_2018_logo.svg" group-title="",Canale 5 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(C5)/index.m3u8 +#EXTINF:-1 tvg-id="Canale7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://canale7.tv/assets/front/img/fb_logo.jpg" group-title="",Canale 7 (480p) +http://wms.shared.streamshow.it/canale7/canale7/playlist.m3u8 +#EXTINF:-1 tvg-id="CANALE7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",CANALE 7 (480p) +http://wms.shared.streamshow.it/canale7/mp4:canale7/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale8.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/c/cc/LogoCanale8.jpg" group-title="",Canale 8 (480p) +http://wms.shared.streamshow.it/canale8/canale8/playlist.m3u8 +#EXTINF:-1 tvg-id="CANALE8.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",CANALE 8 (480p) +http://wms.shared.streamshow.it/canale8/mp4:canale8/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale10.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://pbs.twimg.com/profile_images/942825876533727234/P7MmeqqD_400x400.jpg" group-title="",Canale 10 (540p) [Not 24/7] +http://37.187.142.147:1935/ch10live/high.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Canale10Ostia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/v9q5LKw.png" group-title="",Canale 10 Ostia (540p) [Not 24/7] +http://canale10.cloud:1935/ch10live/high.stream/master.m3u8 +#EXTINF:-1 tvg-id="Canale21Lazio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/mU6Cq89.png" group-title="",Canale 21 Lazio (480p) [Not 24/7] +https://stream.mariatvcdn.com/canaleventuno/f5d2060b3682e0dfffd5b2f18e935ad3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CanaleItalia83.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9VY1Kor.jpg" group-title="",Canale Italia 83 (576p) [Not 24/7] +http://ovp-live.akamaized.net/ac024_live/video1/playlist.m3u8 +#EXTINF:-1 tvg-id="CarinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.altrostudio.tv/images/portfolio/carinatv.jpg" group-title="",Carina TV (720p) +http://wms.shared.streamshow.it/carinatv/carinatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CarinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.altrostudio.tv/images/portfolio/carinatv.jpg" group-title="",Carina TV (720p) +http://wms.shared.streamshow.it/carinatv/mp4:carinatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cine34.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d7/Cine34_logo.svg" group-title="",Cine 34 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(b6)/index.m3u8 +#EXTINF:-1 tvg-id="ClassCNBC.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Business",Class CNBC (576p) +https://streamcdnb10-859c1818ed614cc5b0047439470927b0.msvdn.net/live/S76890577/tDoFkZD3T1Lw/playlist.m3u8 +#EXTINF:-1 tvg-id="CompanyTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Music",Company TV (720p) +http://wma10.fluidstream.net/CompanyTV/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CompanyTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Music",Company TV (720p) +https://5929b138b139d.streamlock.net/CompanyTV/smil:CompanyTV.smil/master.m3u8 +#EXTINF:-1 tvg-id="CusanoItaliaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Cusano Italia TV (720p) [Not 24/7] +https://stream9.xdevel.com/video0s975363-691/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DeeJayTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/9/93/Logo_Deejay.svg/1024px-Logo_Deejay.svg.png" group-title="Music",DeeJay TV (360p) +https://deejay_tv-lh.akamaihd.net/i/DeejayTv_1@129866/master.m3u8 +#EXTINF:-1 tvg-id="DonnaShopping.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Shop",Donna Shopping (1080p) [Not 24/7] +https://media.streambrothers.com:1936/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="EliveTVBrescia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.elivebrescia.tv/wp-content/uploads/2018/09/Logo_nuovo_CLAIM.png" group-title="",Elive TV Brescia (720p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/elivebresciatv/elivebresciatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EntellaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Entella TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/EntellaTV/EntellaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/81/ESPERIATV18_verde.png" group-title="",Esperia TV (480p) +http://wms.shared.streamshow.it/esperiatv/esperiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/81/ESPERIATV18_verde.png" group-title="",Esperia TV (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/esperiatv/esperiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroIndieMusicChartTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/UDFBYpN.png" group-title="Music",Euro Indie Music Chart TV (360p) +http://178.33.224.197:1935/euroindiemusic/euroindiemusic/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/zTYnT18.png" group-title="",Euro TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/eurotv/eurotv/playlist.m3u8 +#EXTINF:-1 tvg-id="FMITALIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/EroYlvc.jpg" group-title="",FM ITALIA (404p) [Not 24/7] +https://stream7.xdevel.com/video0s975817-411/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Gold78.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Gold 78 (1080p) +https://stream2.xdevel.com/video1s86-22/stream/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="GoldTVItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/7a/LOGO-GOLD-TV.png" group-title="",Gold TV Italia (576p) [Timeout] +http://151.0.207.99:1935/GoldTV/GOLD_17/playlist.m3u8 +#EXTINF:-1 tvg-id="HalowKidsHD.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Halow Kids HD (480p) [Offline] +http://halowtv.online:8080/HalowTV/FSyzHfEhvb/139 +#EXTINF:-1 tvg-id="HilandoFino.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Hilando Fino (1080p) [Not 24/7] +http://4k-server-mia.2cdn.eu/HilandoFinoTV/ngrp:HilandoFinoTV_all/playlist.m3u8 +#EXTINF:-1 tvg-id="HistoryLab.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9D754nx.png" group-title="",History Lab (270p) [Not 24/7] +https://5929b138b139d.streamlock.net/HistoryLab/livestream/playlis.m3u8 +#EXTINF:-1 tvg-id="IcaroTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/nWBWzNy.png" group-title="",Icaro TV (720p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/icarotv/icarotv/playlist.m3u8 +#EXTINF:-1 tvg-id="Iris.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/iris.png" group-title="",Iris [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ki)/index.m3u8 +#EXTINF:-1 tvg-id="Italia1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/italia1-logo.png" group-title="",Italia 1 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i1)/index.m3u8 +#EXTINF:-1 tvg-id="Italia2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/italia2.png" group-title="",Italia 2 (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/italia2/italia2/playlist.m3u8 +#EXTINF:-1 tvg-id="Italia2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/italia2.png" group-title="",Italia 2 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(i2)/index.m3u8 +#EXTINF:-1 tvg-id="Italia2TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/TDSgG28.png" group-title="",Italia 2 TV (480p) [Geo-blocked] +http://wms.shared.streamshow.it/italia2/mp4:italia2/playlist.m3u8 +#EXTINF:-1 tvg-id="Italia7.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/PIeNjOA.jpg" group-title="",Italia 7 (576p) [Timeout] +http://151.0.207.99:1935/italia7/italia7/playlist.m3u8 +#EXTINF:-1 tvg-id="IuniorTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/FBOJnfT.png" group-title="",Iunior TV (720p) [Not 24/7] +https://5f22d76e220e1.streamlock.net/iuniortv/iuniortv/playlist.m3u8 +#EXTINF:-1 tvg-id="JuweloItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Juwelo Italia (480p) +https://sdn-global-live-streaming-packager-cache.3qsdn.com/7841/7841_264_live.m3u8 +#EXTINF:-1 tvg-id="KissKissNapoliTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Qawc6g8.jpg" group-title="",Kiss Kiss Napoli TV (720p) +https://58f12ffd2447a.streamlock.net/KKTVNapoli/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="KissKissTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/pETXOU7.jpg" group-title="",Kiss Kiss TV (1080p) +https://58f12ffd2447a.streamlock.net/KKMulti/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioKissKissItalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://kisskissitalia.it/wp-content/uploads/2021/07/cropped-logo-kisskissitalia.png" group-title="",Kiss Kiss TV (720p) +https://58f12ffd2447a.streamlock.net/KKTV01/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="KissKissTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/pETXOU7.jpg" group-title="",Kiss Kiss TV (720p) +https://59253971be783.streamlock.net/KissKissTV/KissKissTV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="La5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/la5.png" group-title="",La 5 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ka)/index.m3u8 +#EXTINF:-1 tvg-id="LaCTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/123hRnI.png" group-title="",La C TV (720p) [Not 24/7] +http://streamcdng3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 +#EXTINF:-1 tvg-id="LaCTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.lactv.it/wp-content/uploads/2017/12/lactv-new-2.png" group-title="",La CTV (720p) [Not 24/7] +http://streamcdnc3.mainstreaming.tv/cdn/live/100197/SOrBDPy/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTr3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.tvdream.net/immagini/latr3.jpg" group-title="",La Tr3 (720p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/eslife/eslife/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTR3Marsala.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/IFPpG7X.png" group-title="",La TR3 Marsala (720p) +https://tsw.streamingwebtv24.it:1936/eslife1/eslife1/playlist.m3u8 +#EXTINF:-1 tvg-id="LazioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/CaKRuRT.png" group-title="",Lazio TV (576p) [Timeout] +http://151.0.207.99:1935/live/LAZIOTV12/playlist.m3u8 +#EXTINF:-1 tvg-id="LiraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/sC9ELuY.jpg" group-title="",Lira TV (720p) [Not 24/7] +https://5d79ae45bc63b.streamlock.net/Liratv/Liratv/playlist.m3u8 +#EXTINF:-1 tvg-id="LucaniaChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/4RKmGcr.png" group-title="",Lucania Channel (480p) [Not 24/7] +http://wms.shared.streamshow.it/lucaniatv/mp4:lucaniatv/playlist.m3u8 +#EXTINF:-1 tvg-id="m2oTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Radio_m2o_-_Logo_2019.svg/936px-Radio_m2o_-_Logo_2019.svg.png" group-title="Music",m2o TV (360p) [Not 24/7] +https://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/master.m3u8 +#EXTINF:-1 tvg-id="MediasetExtra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/mediasetextra.png" group-title="",Mediaset Extra [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kq)/index.m3u8 +#EXTINF:-1 tvg-id="NSL.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/WmnmG2D.jpeg" group-title="",NSL (1080p) +https://streannunsec-lh.akamaihd.net/i/tv_1@868496/master.m3u8 +#EXTINF:-1 tvg-id="OndaNovaraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Onda Novara TV (720p) [Not 24/7] +https://585b674743bbb.streamlock.net/9006/9006/master.m3u8 +#EXTINF:-1 tvg-id="OrlerTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Ia7iULa.png" group-title="",Orler TV (420p) [Not 24/7] +https://w1.mediastreaming.it/orlertv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="OttoFMTV.ch" tvg-country="CH" tvg-language="German" tvg-logo="https://i.imgur.com/2jE6ItV.png" group-title="",Otto FM TV (576p) +http://streaming.bitonlive.net:8080/hls/ottofm2/index.m3u8 +#EXTINF:-1 tvg-id="PadrePioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/7/78/Tele_Radio_Padre_Pio.png" group-title="",Padre Pio TV (330p) [Offline] +https://56972e8bd3345.streamlock.net/TRPP_live/smil:bcffcc98-ac2f-4b73-b0a5-ad1bfb96d845_all.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ParadiseTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/OKhpyWr.png" group-title="",Paradise TV (720p) [Offline] +https://59ef7ad665d1d.streamlock.net:1443/paradisetv/paradisetv/playlist.m3u8 +#EXTINF:-1 tvg-id="ParolediVita.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Parole di Vita (720p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Paroledivita/Paroledivita/playlist.m3u8 +#EXTINF:-1 tvg-id="PrimaTivvu.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/WBYb7DV.jpg" group-title="",Prima Tivvu (272p) [Offline] +https://celinel.akamaized.net/hls/live/2032089/2032089/primativvu/primativvu/playlist.m3u8 +#EXTINF:-1 tvg-id="Primocanale.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ltoMTJV.png" group-title="",Primocanale (1080p) [Not 24/7] +https://msh0203.stream.seeweb.it/live/flv:stream2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="R101ItaliaIT.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",R 101 Italia IT (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(er)/index.m3u8 +#EXTINF:-1 tvg-id="R101.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/R101_-_Logo_2015.svg/1010px-R101_-_Logo_2015.svg.png" group-title="",R101 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(er)/index.m3u8 +#EXTINF:-1 tvg-id="Radio24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio 24 (1080p) [Not 24/7] +http://radio24-lh.akamaihd.net/i/radio24video_1@379914/master.m3u8 +#EXTINF:-1 tvg-id="Radio51.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://mytuner.global.ssl.fastly.net/media/tvos_radios/dr4z3umuxbjr.png" group-title="",Radio 51 (480p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio51TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio 51 TV (480p) [Geo-blocked] +http://178.32.140.155/canale51/canale51/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio101.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.105.net/images/logos/3/logo_colored.jpg" group-title="",Radio 101 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ER)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.105.net/images/logos/3/logo_colored.jpg" group-title="",Radio 105 (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(EC)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/0/01/105.png" group-title="",Radio 105 TV (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 +#EXTINF:-1 tvg-id="Radio105TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/0/01/105.png" group-title="",Radio 105 TV (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(ec)/index.m3u8 +#EXTINF:-1 tvg-id="RadioBirikinaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kzvsNo2.png" group-title="",Radio Birikina TV (720p) [Not 24/7] +https://56b50ada2d659.streamlock.net/RadioBirikinaTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioCapitalTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/0bv1gID.png" group-title="Music",Radio Capital TV (360p) +http://capital-live-tv-01-hls.akamai.media.kataweb.it/i/CapitalTv_1@183098/master.m3u8 +#EXTINF:-1 tvg-id="RadioCapitalTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/3/38/Radio_Capital_logo_%282020%29.svg/1280px-Radio_Capital_logo_%282020%29.svg.png" group-title="Music",Radio Capital TV (224p) +https://capital_tv-lh.akamaihd.net/i/CapitalTv_1@183098/master.m3u8 +#EXTINF:-1 tvg-id="RADIOFRECCIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/O8ByUjT.png" group-title="",RADIO FRECCIA (360p) [Offline] +https://rtl-video2-stream.thron.com/live-video/video2/ngrp:video2/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIbizaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/sH8FGqv.png" group-title="",Radio Ibiza TV (720p) [Not 24/7] +https://5929b138b139d.streamlock.net/RadioIbizaTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIglesias.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://static.radio.net/images/broadcasts/3e/ec/29681/c175.png" group-title="",Radio Iglesias (576p) [Geo-blocked] +http://wms.shared.streamshow.it/visualradio/mp4:visualradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioIglesiasSardegna.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/KDtVpLl.png" group-title="",Radio Iglesias Sardegna (576p) [Geo-blocked] +https://59d7d6f47d7fc.streamlock.net/visualradio/visualradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioItaliaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://api.superguidatv.it/v1/channels/165/logo?width=120&theme=light" group-title="Music",Radio Italia TV (320p) +https://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/master.m3u8 +#EXTINF:-1 tvg-id="RadioLombardiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.nododigordio.org/assets/uploads/2018/10/RL_06-300x168.png" group-title="",Radio Lombardia TV (720p) +https://flash7.xdevel.com/radiolombardiatv/radiolombardiatv/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioMontecarlo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.radiomontecarlo.net/images/logos/1/logo_white.jpg" group-title="",Radio Montecarlo (576p) [Offline] +https://live3-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(bb)/index.m3u8 +#EXTINF:-1 tvg-id="RadioNumberOne.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/8cpuaG5.png" group-title="",Radio Number One (720p) +https://56b50ada2d659.streamlock.net/RN1TV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioPiterPanTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/DfugVgy.png" group-title="Music",Radio Piter Pan TV (720p) [Not 24/7] +https://58d921499d3d3.streamlock.net/RadioPiterpanTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRadicaleTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio Radicale TV (240p) [Not 24/7] +https://video-ar.radioradicale.it/diretta/padtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Radio Radio TV (720p) +http://api.new.livestream.com/accounts/11463451/events/3679884/live.m3u8 +#EXTINF:-1 tvg-id="RadioStudioDeltaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ISk4odR.jpg" group-title="",Radio Studio Delta TV (1080p) [Not 24/7] +https://5ce9406b73c33.streamlock.net/RSD/ngrp:livestream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTaorminaSicilia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/SrhtocV.png" group-title="",Radio Taormina Sicilia (720p) [Not 24/7] +https://stream2.xdevel.com/video1s3-7/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZeta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Radio_Zeta_-_Logo_2020.svg/1024px-Radio_Zeta_-_Logo_2020.svg.png" group-title="",Radio Zeta (432p) [Offline] +https://rtl-video3-stream.thron.com/live-video/video3/ngrp:video3/playlist.m3u8 +#EXTINF:-1 tvg-id="radionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",radionorba TV (404p) [Offline] +http://46.165.210.112/radionorbatv/norbatv_source.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RadionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://guidatv.sky.it/app/guidatv/images/epgimages/channels/home/25780_home.png" group-title="Music",Radionorba TV (404p) [Offline] +http://flash2.xdevel.com/norbatv/smil:norbatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadionorbaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://guidatv.sky.it/app/guidatv/images/epgimages/channels/home/25780_home.png" group-title="Music",Radionorba TV (404p) [Offline] +http://flash5.streaming.xdevel.com/radionorbatv/smil:radionorbatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioZeta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Radio_Zeta_-_Logo_2020.svg/1024px-Radio_Zeta_-_Logo_2020.svg.png" group-title="",RadioZeta (480p) [Timeout] +https://unlimited1-cl.dps.live/radioztv/radioztv.smil/radioztv/livestream2/chunks.m3u8 +#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Rai 1 (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s29/04.m3u8 +#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" group-title="",Rai 1 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2606803 +#EXTINF:-1 tvg-id="Rai1.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Rai_1_-_Logo_2016.svg/1280px-Rai_1_-_Logo_2016.svg.png" group-title="",Rai 1 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai1Geo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 1 (Geo) (576p) +http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=2606803 +#EXTINF:-1 tvg-id="Rai2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.ipko.com/epg/logo/rai2.png" group-title="",Rai 2 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308718 +#EXTINF:-1 tvg-id="Rai2.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.ipko.com/epg/logo/rai2.png" group-title="",Rai 2 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=308709 +#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (432p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (720p) [Not 24/7] +http://wzstreaming.rai.it/TVlive/liveStream/chunklist_w823540263.m3u8 +#EXTINF:-1 tvg-id="Rai3.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/Rai_3_-_Logo_2016.svg/1280px-Rai_3_-_Logo_2016.svg.png" group-title="",Rai 3 (720p) [Not 24/7] +http://wzstreaming.rai.it/TVlive/liveStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (576p) +http://mediapolisevent.rai.it/relinker/relinkerServlet.htm?cont=746966 +#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746966 +#EXTINF:-1 tvg-id="Rai4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai 4 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Rai5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/rai5.png" group-title="",Rai 5 (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=395276 +#EXTINF:-1 tvg-id="Rai5.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/rai5.png" group-title="",Rai 5 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/it-rai5.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RaiGulp.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/anMBVB2.png" group-title="",Rai Gulp (576p) +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746953 +#EXTINF:-1 tvg-id="RaiMovie.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/raimovie.png" group-title="",Rai Movie (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747002 +#EXTINF:-1 tvg-id="RaiNews24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Rai_News_24.svg/1920px-Rai_News_24.svg.png" group-title="News",Rai News 24 (720p) +https://rainews1-live.akamaized.net/hls/live/598326/rainews1/rainews1/playlist.m3u8 +#EXTINF:-1 tvg-id="RaiPremium.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/raipremium.png" group-title="",Rai Premium (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746992 +#EXTINF:-1 tvg-id="RaiScuola.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/rovwgYW.png" group-title="",Rai Scuola (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=747011 +#EXTINF:-1 tvg-id="RaiSport.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Lqtz4tS.jpg" group-title="",Rai Sport [Geo-blocked] +http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=179975 +#EXTINF:-1 tvg-id="RaiSport.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Lqtz4tS.jpg" group-title="",Rai Sport (404p) [Offline] +https://everyrai-lh.akamaihd.net/i/raisportjolly1_1@177967/master.m3u8 +#EXTINF:-1 tvg-id="RaiSportPlus.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai Sport+ [Geo-blocked] +http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=4145 +#EXTINF:-1 tvg-id="RaiSportPlus.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Rai Sport+ [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=358025 +#EXTINF:-1 tvg-id="RaiStoria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/xKt2SJw.png" group-title="",Rai Storia (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746990 +#EXTINF:-1 tvg-id="RaiYoYo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Elw5ZtU.png" group-title="",Rai YoYo (576p) [Geo-blocked] +https://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=746899 +#EXTINF:-1 tvg-id="RDSSocialTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://image.winudf.com/v2/image/aXQucmRzLnR2LnJkc3NvY2lhbHR2X3NjcmVlbl8wXzE1MjU0MzE0MzlfMDY2/screen-0.jpg?h=355&fakeurl=1&type=.jpg" group-title="",RDS Social TV (720p) +https://stream.rdstv.radio/out/v1/ec85f72b87f04555aa41d616d5be41dc/index.m3u8 +#EXTINF:-1 tvg-id="ReggioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/60/Reggio_TV_logo.png" group-title="",ReggioTV (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/reggiotv/reggiotv/playlist.m3u8 +#EXTINF:-1 tvg-id="Rete4.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/rete4-logo.png" group-title="",Rete 4 [Geo-blocked] +https://live3-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(r4)/index.m3u8 +#EXTINF:-1 tvg-id="Rete55.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/z6SjRc2.jpg" group-title="",Rete 55 (720p) [Not 24/7] +https://stream.internet.one/Rete55_Live/index.m3u8 +#EXTINF:-1 tvg-id="ReteBiellaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/CzjqIz8.png" group-title="",Rete Biella TV (720p) [Not 24/7] +https://sb.top-ix.org/retebiella/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="ReteOro.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/rHLJNLR.jpg" group-title="",Rete Oro (720p) [Not 24/7] +https://5926fc9c7c5b2.streamlock.net/9094/9094/playlist.m3u8 +#EXTINF:-1 tvg-id="Retemia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/3M5wGVg.png" group-title="",Retemia (720p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Retemia/Retemia/playlist.m3u8 +#EXTINF:-1 tvg-id="RetesoleLazio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/vvVgZN2.png" group-title="",Retesole Lazio (240p) [Geo-blocked] +http://5c389faa13be3.streamlock.net:1935/8058/8058/playlist.m3u8 +#EXTINF:-1 tvg-id="Reteveneta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/d/df/Logo_Rete_Veneta.png" group-title="",Reteveneta (480p) +https://59d7d6f47d7fc.streamlock.net/reteveneta/reteveneta/playlist.m3u8 +#EXTINF:-1 tvg-id="RMKTVSciacca.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Pk5flAT.png" group-title="",RMK TV Sciacca (720p) [Not 24/7] +http://vod1.kronopress.com:1935/tmk_live/5123-CA5C-9EBE-428A/playlist.m3u8 +#EXTINF:-1 tvg-id="RTCTelecalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.telecalabria.it/logoRTCnew.jpg" group-title="",RTC Telecalabria (720p) [Not 24/7] +http://fl1.mediastreaming.it:1935/calabriachannel/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTCTelecalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/IZtIFM2.png" group-title="",RTC Telecalabria (720p) [Not 24/7] +https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL1025.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/7Ep1zt8.jpg" group-title="Music",RTL 102.5 (432p) [Offline] +https://rtl-video1-stream.thron.com/live-video/video1/ngrp:video1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL1025BEST.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/E4G6PiA.png" group-title="",RTL 102.5 BEST (432p) [Offline] +https://rtl-video4-stream.thron.com/live-video/video4/ngrp:video4/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/8/86/Logo_Radio_Televisione_Peloritana.svg/1200px-Logo_Radio_Televisione_Peloritana.svg.png" group-title="",RTP (404p) +https://flash2.xdevel.com/rtptv/rtptv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTTRTrento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9houwTS.png" group-title="",RTTR Trento (720p) +https://5f204aff97bee.streamlock.net/RTTRlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="SardegnaUno.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.sardegna1.tv/wp-content/uploads/2015/07/logo.png" group-title="",Sardegna Uno (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/sardegnauno/sardegnauno/playlist.m3u8 +#EXTINF:-1 tvg-id="SenatoTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/u7wlwXg.png" group-title="",Senato TV (1080p) +https://senato-live.morescreens.com/SENATO_1_001/playlist.m3u8 +#EXTINF:-1 tvg-id="SophiaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/RPXusvS.png" group-title="",Sophia TV (720p) +https://www.onairport.live/sophiatv-it-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Sportitalia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sportitaliahd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Sportitalia24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia 24 (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:silive24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SportitaliaMotori.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia Motori (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:simotori.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SportitaliaSolocalcio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hu56Ya5.png" group-title="",Sportitalia Solocalcio (720p) [Geo-blocked] +https://di-yx2saj20.vo.lswcdn.net/sportitalia/smil:sisolocalcio.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Stereo5TV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/HnrRo2k.jpg" group-title="",Stereo 5 TV (720p) +https://stream1.aswifi.it/stereo5/live/index.m3u8 +#EXTINF:-1 tvg-id="Studio100Puglia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Logoicona.png/200px-Logoicona.png" group-title="",Studio 100 Puglia (480p) +http://wms.shared.streamshow.it:1935/studio100ta/studio100ta/playlist.m3u8 +#EXTINF:-1 tvg-id="Super.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Live-TV_Blue.png?raw=true" group-title="",Super (480p) [Not 24/7] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@357018/master.m3u8 +#EXTINF:-1 tvg-id="SuperJTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super J TV (720p) [Timeout] +https://54627d4fc5996.streamlock.net/SuperJtv/SuperJtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperJTVTeramo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/H3uItqg.png" group-title="",Super J TV Teramo (720p) [Not 24/7] +http://uk4.streamingpulse.com:1935/SuperJtv/SuperJtv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV (720p) +http://wms.shared.streamshow.it/supertv/mp4:supertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV Brescia (720p) +http://wms.shared.streamshow.it:1935/supertv/supertv/live.m3u8 +#EXTINF:-1 tvg-id="SuperTVOristano.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Super TV Oristano (720p) [Not 24/7] +http://193.70.81.40:1935/supertvoristano/supertvoristano/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperSixLombardia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",SuperSix Lombardia (720p) +https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleAbruzzo.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/XymK2PR.png" group-title="",Tele Abruzzo (480p) +http://uk4.streamingpulse.com:1935/TeleabruzzoTV/TeleabruzzoTV/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleLiguriaSud.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Liguria Sud (224p) [Not 24/7] +https://live.teleliguriasud.it/hls/tls/index.m3u8 +#EXTINF:-1 tvg-id="TelePavia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/3oWB2li.jpg" group-title="",Tele Pavia (720p) +http://wms.shared.streamshow.it/telepavia/telepavia/playlist.m3u8 +#EXTINF:-1 tvg-id="TelePegasoCatania.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/alKlcEp.png" group-title="",Tele Pegaso Catania (404p) [Not 24/7] +https://flash2.xdevel.com/telepegasocanale812/telepegasocanale812/playlist.m3u8 +#EXTINF:-1 tvg-id="TelePordenone.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Pordenone (576p) [Not 24/7] +http://213.187.12.18/telepn/telepn.m3u8 +#EXTINF:-1 tvg-id="TeleQuattro.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.saladellamemoriaheysel.it/IMMAGINI/Logo_Tele_Quattro.png" group-title="",Tele Quattro (480p) [Not 24/7] +http://wms.shared.streamshow.it/telequattro/telequattro/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleRadioSciacca.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Tele Radio Sciacca (240p) [Not 24/7] +http://5cbd3bc28341f.streamlock.net:1935/trs_live/teleradiosciacca-tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSondrioNews.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",Tele Sondrio News (480p) [Not 24/7] +https://59d8c0cee6f3d.streamlock.net/tsn/tsn_mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleArena.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleArena (480p) +http://5ce9406b73c33.streamlock.net/TeleArena/TeleArena.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Telebelluno.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telebelluno (720p) +https://live.mariatvcdn.com/telebelluno/a3b80388da9801906adf885282e73bc3.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="TeleBoario.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleBoario (720p) [Not 24/7] +http://flash7.streaming.xdevel.com/teleboario/teleboario/playlist.m3u8 +#EXTINF:-1 tvg-id="Telechiara.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telechiara (720p) +http://fms.tvavicenza.it:1935/telechiara/diretta/playlist.m3u8 +#EXTINF:-1 tvg-id="TelecolorLombardia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.postimg.cc/G2s6Zncv/telecolor.png" group-title="",Telecolor Lombardia (1080p) [Not 24/7] +https://1aadf145546f475282c5b4e658c0ac4b.msvdn.net/live/324149/hlbAWtl/playlist.m3u8 +#EXTINF:-1 tvg-id="Telecupole.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telecupole (540p) [Offline] +https://live.livevideosolution.it/telecupole/dd6d85e5b7452f7b85a099509292b421.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefoggia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ImvO2rV.png" group-title="",Telefoggia (480p) [Not 24/7] +http://wms.shared.streamshow.it/telefoggia/mp4:telefoggia/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefoggia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ImvO2rV.png" group-title="",Telefoggia (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/telefoggia/telefoggia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleFormula.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/jR6taXt.png" group-title="",TeleFormula (720p) [Not 24/7] +https://wms60.tecnoxia.com/radiof/abr_radioftele/playlist.m3u8 +#EXTINF:-1 tvg-id="Telefriuli.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://beyondprod.it/images/telefriuli_positivo.jpg" group-title="",Telefriuli (720p) [Not 24/7] +https://streamtechglobal.akamaized.net/hls/live/2024685/telefriuli/Group01/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleGenova.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleGenova (404p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Telegenova/Telegenova/playlist.m3u8 +#EXTINF:-1 tvg-id="Telegranda.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telegranda (720p) [Not 24/7] +http://live.sloode.com:1935/telegranda_live/C2AD-0664-DC75-4744/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleliberta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Teleliberta (720p) [Not 24/7] +http://api.new.livestream.com/accounts/17114188/events/4902226/live.m3u8 +#EXTINF:-1 tvg-id="TeleMia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://1.bp.blogspot.com/-8gAN3pOqt7M/UK8We1rH1yI/AAAAAAAADjU/bya6H2ZbcJk/s1600/logo-telemia.png" group-title="",TeleMia (576p) +https://playerssl.telemia.tv/fileadmin/hls/TelemiaHD/telemia85_mediachunks.m3u8 +#EXTINF:-1 tvg-id="TeleMiaExtra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleMia Extra (720p) [Not 24/7] +https://playerssl.telemia.tv/fileadmin/hls/TelemiaExtra/stream.m3u8 +#EXTINF:-1 tvg-id="Telemolise.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/aTs88Es.png" group-title="",Telemolise (1080p) +http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Telemolise.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/aTs88Es.png" group-title="",Telemolise (406p) [Offline] +http://185.202.128.1:1935/TelemoliseStream/telemoliseTV.stream_tlm/playlist.m3u8 +#EXTINF:-1 tvg-id="teleMonteneve.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.osm1816.it/site/wp-content/uploads/2015/05/Logo_09_teleMonteneve1.jpg" group-title="",teleMonteneve (480p) [Not 24/7] +http://wms.shared.streamshow.it:1935/telemonteneve/telemonteneve/live.m3u8 +#EXTINF:-1 tvg-id="Telenord.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://telenord.it/assets/images/logo.png" group-title="",Telenord (576p) [Not 24/7] +https://5db313b643fd8.streamlock.net/Telenord/Telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] +https://59d8c0cee6f3d.streamlock.net/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleNordest.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Woq6TJo.png" group-title="",TeleNordest (480p) [Not 24/7] +https://wms.shared.streamshow.it/telenord/telenord/playlist.m3u8 +#EXTINF:-1 tvg-id="telePAVIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/66/LOGO_telePAVIA.png" group-title="",telePAVIA (720p) +http://wms.shared.streamshow.it:1935/telepavia/telepavia/live.m3u8 +#EXTINF:-1 tvg-id="telePAVIA.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/66/LOGO_telePAVIA.png" group-title="",telePAVIA (720p) +http://wms.shared.streamshow.it/telepavia/mp4:telepavia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleRent7Gold.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TeleRent 7Gold (720p) [Offline] +https://stream2.xdevel.com/video0s86-21/stream/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="TelesudTrapani.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telesud Trapani (720p) [Not 24/7] +http://5cbd3bc28341f.streamlock.net:1935/telesud/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TelesudTrapani.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Telesud Trapani (720p) [Not 24/7] +https://5cbd3bc28341f.streamlock.net:444/telesud/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTerni.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/U1BjkEl.png" group-title="",TeleTerni (720p) [Not 24/7] +https://diretta.teleterni.it/live/stream_src.m3u8 +#EXTINF:-1 tvg-id="Teletricolore.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.teletricolore.it/wp-content/uploads/2018/02/logo.png" group-title="",Teletricolore (480p) [Not 24/7] +https://59d7d6f47d7fc.streamlock.net/rs2/rs2/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleTusciaSabina2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/K6tTjJC.png" group-title="",TeleTusciaSabina 2000 (576p) [Not 24/7] +http://ts2000tv.streaming.nextware.it:8081/ts2000tv/ts2000tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleVenezia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/RG4o4Ni.png" group-title="",TeleVenezia (576p) +https://59d8c0cee6f3d.streamlock.net/televenezia/televenezia/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleVideoAgrigento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/crMQmn4.png" group-title="",TeleVideo Agrigento (480p) +https://59d7d6f47d7fc.streamlock.net/tva/tva/playlist.m3u8 +#EXTINF:-1 tvg-id="TevereTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.teveretv.it/Images/Icone/logo.png" group-title="",Tevere TV (576p) [Not 24/7] +https://5926fc9c7c5b2.streamlock.net/9098/9098/playlist.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) +http://flash5.streaming.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) +https://flash2.xdevel.com/tgnorba_24/tgnorba_24_source.stream/index.m3u8 +#EXTINF:-1 tvg-id="TGNorba24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/15/Tg_norba24.png" group-title="",TG Norba 24 (360p) +https://flash5.xdevel.com/tgnorba_24/smil:tgnorba_24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGCom24.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/tgcom24-logo.png" group-title="News",TGCom 24 [Geo-blocked] +https://live2-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(kf)/index.m3u8 +#EXTINF:-1 tvg-id="TLNTeleLazioNord.it" tvg-country="IT" tvg-language="Italian" tvg-logo="http://www.telelazionord.it/wp-content/uploads/2019/02/TLN.png" group-title="",TLN Tele Lazio Nord (720p) [Not 24/7] +http://tln.srfms.com:1935/TLN/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TopCrime.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://latina.biz/wp-content/uploads/2020/04/top-crime.jpg" group-title="",Top Crime [Geo-blocked] +https://live3-mediaset-it.akamaized.net/content/hls_h0_clr_vos/live/channel(lt)/index.m3u8 +#EXTINF:-1 tvg-id="TrentinoTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/2paGMKT.jpg" group-title="",Trentino TV (720p) [Not 24/7] +https://5e73cf528f404.streamlock.net/TrentinoTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TRMh24Basilicata.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/JEw9RCq.png" group-title="",TRM h24 Basilicata (480p) [Not 24/7] +http://w1.streamingmedia.it:1935/trmh24/live/playlist.m3u8 +#EXTINF:-1 tvg-id="TSNTeleSondrioNews.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",TSN Tele Sondrio News (480p) [Not 24/7] +http://wms.shared.streamshow.it/tsn/tsn_mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV 2000 (360p) [Not 24/7] +http://cld04wz.tv2000.it/tv2000_main.m3u8 +#EXTINF:-1 tvg-id="TV2000.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV 2000 (540p) [Offline] +http://mi1.wz.tv2000.it/mirror/High/playlist.m3u8 +#EXTINF:-1 tvg-id="TVQuiModena.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/154AQjl.png" group-title="",TV Qui (Modena) (480p) +https://59d7d6f47d7fc.streamlock.net/tvqui/tvqui/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSei.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV Sei (576p) [Not 24/7] +http://185.202.128.1:1935/Tv6Stream/tv6TV.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSei.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV Sei (406p) [Not 24/7] +http://185.202.128.1:1935/Tv6Stream/tv6TV.stream_tlm/playlist.m3u8 +#EXTINF:-1 tvg-id="TVUNO.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV UNO (240p) +http://ftp.tiscali.it/francescovernata/TVUNO/monoscopioTvUNOint-1.wmv +#EXTINF:-1 tvg-id="TV7Azzurra.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",TV7 Azzurra (270p) [Not 24/7] +http://217.61.26.46:8080/hls/azzurra.m3u8 +#EXTINF:-1 tvg-id="TV7Benevento.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.neikos.it/wp-content/uploads/2014/04/logo_tvsette.png" group-title="",TV7 Benevento (288p) [Not 24/7] +http://streaming.senecadot.com/live/flv:tv7.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7News.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="News",TV7 News (270p) [Not 24/7] +http://217.61.26.46:8080/hls/news.m3u8 +#EXTINF:-1 tvg-id="TV7Triveneta.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/ndFoo4V.png" group-title="",TV7 Triveneta (270p) [Not 24/7] +http://217.61.26.46:8080/hls/triveneta.m3u8 +#EXTINF:-1 tvg-id="TVAVicenza.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0f/TVA_Vicenza_-_Logo_2018.svg/675px-TVA_Vicenza_-_Logo_2018.svg.png" group-title="",TVA (Vicenza) (720p) +http://fms.tvavicenza.it:1935/live/diretta_1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVL.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.tvl.it/photos/big-thumbs/logo-tvl.png" group-title="",TVL (720p) [Not 24/7] +https://live.mariatvcdn.com/mariatvcdn/70564e1c6884c007c76f0c128d679eed.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRS.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://cdn.firstonetv.eu/images/logos/it/TVRS.png" group-title="",TVRS (576p) [Not 24/7] +http://wms.shared.streamshow.it:1935/tvrs/tvrs/live.m3u8 +#EXTINF:-1 tvg-id="UmbriaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Umbria TV (576p) [Not 24/7] +https://umbriatv.stream.rubidia.it:8083/live/umbriatv/playlist.m3u8 +#EXTINF:-1 tvg-id="VeraTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Vera TV (1080p) [Not 24/7] +http://wms.shared.streamshow.it/veratv/mp4:veratv/playlist.m3u8 +#EXTINF:-1 tvg-id="VeraTVMarche.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kXDdx0h.png" group-title="",Vera TV (Marche) (1080p) [Not 24/7] +http://wms.shared.streamshow.it/veratv/veratv/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoBresciaTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Video Brescia TV (720p) [Not 24/7] +http://wms.shared.streamshow.it/videobrescia/videobrescia/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoCalabria.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/QPISrvr.png" group-title="",Video Calabria (480p) [Not 24/7] +http://wms.shared.streamshow.it/videocalabria/videocalabria/playlist.m3u8 +#EXTINF:-1 tvg-id="VideoRola.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/MWBk2hQ.jpg" group-title="Music",Video Rola (1080p) +https://d3b2epqdk0p7vd.cloudfront.net/out/v1/8a448b5e16384af4a3c8146a7b049c32/index.m3u8 +#EXTINF:-1 tvg-id="VideolinaSardegna.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://www.dinamobasket.com/sites/default/files/videolina2012_tr.png" group-title="",Videolina (Sardegna) (404p) [Not 24/7] +http://livestreaming.videolina.it/live/Videolina/playlist.m3u8 +#EXTINF:-1 tvg-id="Videonovara.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/AJAYgyN.png" group-title="",Videonovara (576p) [Not 24/7] +https://sb.top-ix.org/avtv04/streaming/playlist.m3u8 +#EXTINF:-1 tvg-id="VideostarCanale193.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/kuisqG7.jpg" group-title="",Videostar Canale 193 (480p) [Not 24/7] +https://5cbd3bc28341f.streamlock.net:444/videostar_live/videostar/playlist.m3u8 +#EXTINF:-1 tvg-id="VirginRadioTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Virgin Radio TV (576p) [Not 24/7] +https://live2-radio-mediaset-it.akamaized.net/Content/hls_h0_clr_vos/live/channel(ew)/index.m3u8 +#EXTINF:-1 tvg-id="VisualRadio.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Visual Radio (576p) [Not 24/7] +http://wms.shared.streamshow.it:1935/visualradio/visualradio/live.m3u8 +#EXTINF:-1 tvg-id="Vuemme.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Vuemme (480p) +https://5db313b643fd8.streamlock.net/Vuemme/Vuemme/playlist.m3u8 +#EXTINF:-1 tvg-id="WineChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Live-TV_Blue.png?raw=true" group-title="",Wine Channel (720p) [Offline] +http://212.43.97.35:1935/winechannel/winechannel/playlist.m3u8 +#EXTINF:-1 tvg-id="YviiTVSicilia.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/NaEgFUJ.png" group-title="",Yvii TV Sicilia (1080p) [Not 24/7] +https://yviistreamer.kernel.online/hls/yviitv.m3u8 diff --git a/channels/it_samsung.m3u b/channels/it_samsung.m3u new file mode 100644 index 000000000..14c8459fc --- /dev/null +++ b/channels/it_samsung.m3u @@ -0,0 +1,69 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AmuseAnimation.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/H7GtB0T.jpg" group-title="",Amuse Animation (720p) [Offline] +https://amuse-amuseanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AtresSeries.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/g5iBSq4.png" group-title="",Atres Series (720p) [Offline] +https://atresmedia-atreseries-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BigName.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hChduSn.png" group-title="",Big Name (720p) [Offline] +https://alchimie-big-names-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BizzarroMovies.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/W9zQhyr.jpg" group-title="Movies",Bizzarro Movies (720p) [Offline] +https://minerva-bizzarromovies-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe UHD (2160p) +https://bloomberg-bloombergtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BrindiamoChannel.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/9eJ3dVa.jpg" group-title="",Brindiamo Channel (720p) [Offline] +https://okproductions-brindiamochannel-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CanaleEuropa.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Canale Europa (720p) +https://canaleeuropa-canaleeuropa-1-it.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CGEntertainment.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/HB0LSjW.jpg" group-title="",CG Entertainment (720p) [Offline] +https://cgentertainment-cgtv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CinemaSegreto.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/E9PCiwM.png" group-title="",Cinema Segreto (720p) [Offline] +https://minerva-cinemasegreto-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicalHarmony.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/JQaZblm.jpg" group-title="",Classical Harmony (720p) [Offline] +https://alchimie-classical-harmony-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) +https://mmm-ducktv-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsItaliano.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Italiano (720p) +https://rakuten-euronews-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsItalianoviaAlchimie.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Italiano via Alchimie (720p) [Offline] +https://alchimie-euronews-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVItaly.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (Italy) (1080p) +https://fashiontv-fashiontv-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/DFjN26b.jpg" group-title="",Humanity (720p) [Offline] +https://alchimie-humanity-3-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] +https://alchimie-mmatv-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MondoKids.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/AeHlXnK.jpg" group-title="Kids",Mondo Kids (720p) [Offline] +https://mondotv-mondotvkids-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Moods.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/zSdsBGc.jpg" group-title="",Moods (720p) [Offline] +https://alchimie-moods-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MotorTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/muS5HF5.jpg" group-title="",Motor TV (720p) [Offline] +https://motorsportnetwork-motor1tv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MySurfTV.fr" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/byD2nrE.png" group-title="",My Surf TV (720p) [Offline] +https://alchimie-mysurf-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesItaly.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Italy) (720p) [Offline] +https://rakuten-documentaries-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies Italy (720p) [Offline] +https://rakuten-actionmovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/o1qKoje.jpg" group-title="Movies",Rakuten TV Comedy Movies Italy (720p) [Offline] +https://rakuten-comedymovies-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/oMXfdkV.png" group-title="Movies",Rakuten TV Drama Italy (720p) [Offline] +https://rakuten-tvshows-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies Italy (720p) [Offline] +https://rakuten-family-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightItaly.es" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/TUDZvHw.jpg" group-title="",Rakuten TV Spotlight Italy (720p) [Offline] +https://rakuten-spotlight-6-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) +https://sofytv-samsungit.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportOutdoortv.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="Outdoor",SportOutdoor.tv (720p) [Offline] +https://gto2000-sportoutdoortv-1-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SupertoonsTV.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/35BpWJh.jpg" group-title="Kids",Supertoons TV (720p) [Offline] +https://kedoo-supertoonstv-4-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.it" tvg-country="IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (720p) [Offline] +https://dhx-teletubbies-2-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveItaly.us" tvg-country="IT" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Italy (720p) [Offline] +https://the-pet-collective-international-it.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="YamatoAnimation.it" tvg-country="IT" tvg-language="Italian" tvg-logo="" group-title="",Yamato Animation (720p) [Offline] +https://yamatovideo-yamatoanimation-1-it.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/jm.m3u b/channels/jm.m3u new file mode 100644 index 000000000..994e5dfef --- /dev/null +++ b/channels/jm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="JamaicaTV.jm" tvg-country="JM" tvg-language="English" tvg-logo="" group-title="",Jamaica Online TV (1080p) [Not 24/7] +https://vse2-sa-all4.secdn.net/tvstartup11-channel/live/mp4:jotvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsMax.jm" tvg-country="JM" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/49559/s49559_h3_aa.png" group-title="Sports",SportsMax (720p) [Timeout] +http://cdn.tvmatic.net/sport.m3u8 diff --git a/channels/jo.m3u~master b/channels/jo.m3u~master new file mode 100644 index 000000000..dc17aeccb --- /dev/null +++ b/channels/jo.m3u~master @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlMamlakaTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6njRt6c.png" group-title="General",Al Mamlaka TV (1080p) +https://almamlka-live.ercdn.net/almamlka/almamlka.m3u8 +#EXTINF:-1 tvg-id="AmmanTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vkqYIO4.jpg" group-title="General",Amman TV (720p) +https://ammantv.c.s73cdn.net/23153d43-375a-472a-bc5f-9827582b5d22/elemental/live/master.m3u8 +#EXTINF:-1 tvg-id="FajerTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="",Fajer TV (720p) +http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="JawharaFM.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://www.jawharafm.net/ar/static/fr/image/png/logo-jfm.png" group-title="Music",Jawhara FM (720p) [Not 24/7] +http://streaming.toutech.net:1935/live/mp4:jawharafm.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="JordanSport.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://static.jrtv.gov.jo/resize-width/380/content/y/B5/2/Poster.png" group-title="Sports",Jordan Sport [Offline] +https://jrtv-live.ercdn.net/jordansporthd/jordansporthd.m3u8 +#EXTINF:-1 tvg-id="Jordan TV" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://static.jrtv.gov.jo/resize-width/380/content/x/Mp/1/Poster.png" group-title="General",Jordan TV (1080p) +https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8 +#EXTINF:-1 tvg-id="MelodyFM.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://melody-fm.com/img/Logo.png" group-title="Music",Melody FM Jordan (720p) [Not 24/7] +https://cdn3.wowza.com/1/ZFBldUlPNjRBRDZM/ZW90V2ZW/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="NojoumTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6ttWNu0.jpg" group-title="Music",Nojoum TV (720p) +https://nojoumhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/RadioFann/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: Control Studio (220p) [Not 24/7] +http://188.247.86.66/RadioFann/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioFannJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Radio Fann Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/RadioFann/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/MixFM/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: Control Studio (180p) [Not 24/7] +http://188.247.86.66/MixFM/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioYaqeenJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Religious",Radio Yaqeen Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/MixFM/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/RotanaRadio/CityView1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: Control Studio (180p) +http://188.247.86.66/RotanaRadio/ControlStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaRadioJordanStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="http://service.mobile.rotanaradio.jo/sites/default/files/studio.png" group-title="Music",Rotana Radio Jordan: Studio (180p) [Not 24/7] +http://188.247.86.66/RotanaRadio/OnAirStudio1/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaTarabJordanCityView.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Rotana Tarab Jordan: City View (180p) [Not 24/7] +http://188.247.86.66/RadioFann/Audio32/playlist.m3u8 +#EXTINF:-1 tvg-id="RotanaTarabJordanControlStudio.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="" group-title="Music",Rotana Tarab Jordan: Control Studio (180p) [Not 24/7] +http://188.247.86.66/RotanaRadio/Audio32/playlist.m3u8 +#EXTINF:-1 tvg-id="RoyaTV.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Sa2nBTP.png" group-title="General",Roya TV (720p) [Not 24/7] +https://weyyak-live.akamaized.net/weyyak_roya/index.m3u8 +#EXTINF:-1 tvg-id="ToyorAlJannah.jo" tvg-country="JO" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/bNTHzP5g/toyor-al-janah.png" group-title="Kids",Toyor Al-Jannah (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/toyorlive/live diff --git a/channels/jp.m3u~master b/channels/jp.m3u~master new file mode 100644 index 000000000..b5e3bc8d8 --- /dev/null +++ b/channels/jp.m3u~master @@ -0,0 +1,201 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (720p) +http://51.79.193.108:8080/hls/j00026/index.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00026/index.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Indonesian" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h02/01.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Indonesian" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Indonesian Subs) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h144/01.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Thai" tvg-logo="https://i.imgur.com/zpi6mQ3.png" group-title="Animation",Animax Japan (Thai Subs) [Offline] +http://27.254.130.62/feed/LC38/playlist.m3u8 +#EXTINF:-1 tvg-id="AnimaxJapan.jp" tvg-country="JP" tvg-language="Japanese;Vietnamese" tvg-logo="https://i.imgur.com/zpi6mQ3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Animation",Animax Japan (Vietnamese Subs) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://livecdn.fptplay.net/hda3/animaxport_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (720p) [Not 24/7] +https://sub2.neetball.net/live/neet.m3u8 +#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (540p) [Not 24/7] +http://51.79.193.108:8080/hls/j00052/index.m3u8 +#EXTINF:-1 tvg-id="ATX.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.at-x.com/favicon_android.png" group-title="Animation",AT-X (540p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00052/index.m3u8 +#EXTINF:-1 tvg-id="BSAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Asahi (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00048/index.m3u8 +#EXTINF:-1 tvg-id="BSAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Asahi (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00048/index.m3u8 +#EXTINF:-1 tvg-id="BSFujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Fuji TV (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00049/index.m3u8 +#EXTINF:-1 tvg-id="BSFujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Fuji TV (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00049/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00047/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00047/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (540p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00005/index.m3u8 +#EXTINF:-1 tvg-id="BSNipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS Nippon TV (540p) [Offline] +http://51.79.193.108:8080/hls/j00005/index.m3u8 +#EXTINF:-1 tvg-id="BSTVTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS TV Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00050/index.m3u8 +#EXTINF:-1 tvg-id="BSTVTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS TV Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00050/index.m3u8 +#EXTINF:-1 tvg-id="BSTBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS-TBS (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00051/index.m3u8 +#EXTINF:-1 tvg-id="BSTBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",BS-TBS (720p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00051/index.m3u8 +#EXTINF:-1 tvg-id="CGNTVJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/rXrSsiI.jpg" group-title="Religious",CGNTV Japan (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_jp/playlist.m3u8 +#EXTINF:-1 tvg-id="FamilyGekijo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] +http://51.79.193.108:8080/hls/j00011/index.m3u8 +#EXTINF:-1 tvg-id="FamilyGekijo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Family Gekijo (Japanese Subs) (540p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00011/index.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00010/index.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (720p) [Not 24/7] +http://51.79.193.108:8080:8880/hlsok/j00010/index.m3u8 +#EXTINF:-1 tvg-id="FujiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Fuji TV (540p) [Not 24/7] +https://fujitv1.mov3.co/hls/fujitv.m3u8 +#EXTINF:-1 tvg-id="GAORA.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",GAORA (540p) [Not 24/7] +http://50.7.74.29:8880/hls/j00045/index.m3u8 +#EXTINF:-1 tvg-id="GAORA.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",GAORA (540p) [Not 24/7] +http://50.7.74.29:8880/hlsok/j00045/index.m3u8 +#EXTINF:-1 tvg-id="GSTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/8AM9fC8.jpg" group-title="Shop",GSTV (720p) +https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GTNTyphome.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/gFKvgAd.jpg" group-title="",GTN Typhome (English Subs) (720p) [Not 24/7] +https://hamada.gaki-no-tsukai.eu:2087/hls/test.m3u8 +#EXTINF:-1 tvg-id="GunmaTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Gtv_logo_ja_01.svg/800px-Gtv_logo_ja_01.svg.png" group-title="Local",Gunma TV (720p) +https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8 +#EXTINF:-1 tvg-id="HiroshimaWeatherInformation.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/ZoYNgdd.png" group-title="Weather",Hiroshima Weather Information [Offline] +https://hiroshima-tv-live.hls.wselive.stream.ne.jp/hiroshima-tv-live/live/playlist.m3u8 +#EXTINF:-1 tvg-id="JSports1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 1 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00042/index.m3u8 +#EXTINF:-1 tvg-id="JSports1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 1 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00042/index.m3u8 +#EXTINF:-1 tvg-id="JSports2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 2 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00041/index.m3u8 +#EXTINF:-1 tvg-id="JSports2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 2 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00041/index.m3u8 +#EXTINF:-1 tvg-id="JSports3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 3 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00040/index.m3u8 +#EXTINF:-1 tvg-id="JSports3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 3 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00040/index.m3u8 +#EXTINF:-1 tvg-id="JSports4.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 4 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00039/index.m3u8 +#EXTINF:-1 tvg-id="JSports4.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Sports",J Sports 4 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00039/index.m3u8 +#EXTINF:-1 tvg-id="KansaiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",Kansai TV (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00006/index.m3u8 +#EXTINF:-1 tvg-id="KansaiTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",Kansai TV (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00006/index.m3u8 +#EXTINF:-1 tvg-id="MBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00038/index.m3u8 +#EXTINF:-1 tvg-id="MBS.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",MBS (Mainichi Broadcasting System) (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00038/index.m3u8 +#EXTINF:-1 tvg-id="NewJapanProWrestlingWorld.jp" tvg-country="JP" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/1/1c/New_Japan_Pro_Wrestling_Logo_2.svg/480px-New_Japan_Pro_Wrestling_Logo_2.svg.png" group-title="Sports",New Japan Pro Wrestling World (540p) +https://aka-amd-njpwworld-hls-enlive.akamaized.net/hls/video/njpw_en/njpw_en_channel01_3/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK + NHE (Sub Audio) (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhkg2.m3u8 +#EXTINF:-1 tvg-id="NHKEducational.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK + NHKE (540p) [Not 24/7] +http://iptv.tvfix.org/hls/nhke.m3u8 +#EXTINF:-1 tvg-id="NHKEducational.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK + NHKE (Sub Audio) (540p) [Not 24/7] +http://iptv.tvfix.org/hls/nhke2.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK + NHKG (2160p) [Not 24/7] +http://iptv.tvfix.org/hls/nhkg.m3u8 +#EXTINF:-1 tvg-id="NHKBS1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BS1 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00037/index.m3u8 +#EXTINF:-1 tvg-id="NHKBS1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BS1 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00037/index.m3u8 +#EXTINF:-1 tvg-id="NHKBSPremium.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BSP (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00036/index.m3u8 +#EXTINF:-1 tvg-id="NHKBSPremium.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK BSP (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00036/index.m3u8 +#EXTINF:-1 tvg-id="NHKChineseVision.jp" tvg-country="JP" tvg-language="Chinese" tvg-logo="https://i.imgur.com/4yRulEZ.png" group-title="News",NHK Chinese Vision (720p) +https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKChineseVision.jp" tvg-country="JP" tvg-language="Chinese" tvg-logo="https://i.imgur.com/4yRulEZ.png" group-title="News",NHK Chinese Vision (720p) +https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00034/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00035/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00034/index.m3u8 +#EXTINF:-1 tvg-id="NHKEducationalTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Education",NHK E (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00035/index.m3u8 +#EXTINF:-1 tvg-id="NHKGOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Osaka (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00032/index.m3u8 +#EXTINF:-1 tvg-id="NHKGOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Osaka (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00032/index.m3u8 +#EXTINF:-1 tvg-id="NHKGTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00033/index.m3u8 +#EXTINF:-1 tvg-id="NHKGTokyo.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK G Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00033/index.m3u8 +#EXTINF:-1 tvg-id="NHKGeneralTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="General",NHK General TV (540p) [Not 24/7] +https://nhk1.mov3.co/hls/nhk.m3u8 +#EXTINF:-1 tvg-id="NHKWorld.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www3.nhk.or.jp/nhkworld/common/site_images/nw_webapp_1500x1500.png" group-title="",NHK World (720p) +https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/sycc-live/zh/playlist.m3u8 +#EXTINF:-1 tvg-id="NHKWorldJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/SQISXoD.jpg" group-title="News",NHK World Japan (1080p) +https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index.m3u8 +#EXTINF:-1 tvg-id="NHKWorldJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/SQISXoD.jpg" group-title="News",NHK World Japan (720p) [Not 24/7] +https://b-nhkwlive-xjp.webcdn.stream.ne.jp/hls/live/2003458-b/nhkwlive-xjp-en/index.m3u8 +#EXTINF:-1 tvg-id="NHKHuaYuShiJie.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="http://www.tvyan.com/uploads/dianshi/nhkhuayu.jpg" group-title="",NHK华语视界 (720p) +https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00004/index.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00004/index.m3u8 +#EXTINF:-1 tvg-id="NipponTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/202.png" group-title="",Nippon TV (540p) [Not 24/7] +https://ntv1.mov3.co/hls/ntv.m3u8 +#EXTINF:-1 tvg-id="NTVNews24.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/Ya4yHpC.jpg" group-title="News",NTV News24 (480p) +https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 +#EXTINF:-1 tvg-id="ShopChannel.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/3K36JEA.jpg" group-title="Shop",Shop Channel (1080p) [Not 24/7] +https://stream3.shopch.jp/HLS/master.m3u8 +#EXTINF:-1 tvg-id="Star1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 1 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00019/index.m3u8 +#EXTINF:-1 tvg-id="Star1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 1 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00019/index.m3u8 +#EXTINF:-1 tvg-id="Star2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 2 (540p) [Not 24/7] +http://51.79.193.108:8080/hls/j00018/index.m3u8 +#EXTINF:-1 tvg-id="Star2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 2 (540p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00018/index.m3u8 +#EXTINF:-1 tvg-id="Star3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 3 (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00017/index.m3u8 +#EXTINF:-1 tvg-id="Star3.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Star 3 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00017/index.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00031/index.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00031/index.m3u8 +#EXTINF:-1 tvg-id="JORXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",TBS (540p) [Not 24/7] +https://tbs.mov3.co/hls/tbs.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) +https://movie.mcas.jp/mcas/mx_live_2/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) +https://movie.mcas.jp/mcas/mx1_2/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX1.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (360p) +https://movie.mcas.jp/mcas/smil:mx1_prod.smil/master.m3u8 +#EXTINF:-1 tvg-id="JOMXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) [Not 24/7] +http://51.79.193.108:8080hls/j00030/index.m3u8 +#EXTINF:-1 tvg-id="JOMXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX1 (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00030/index.m3u8 +#EXTINF:-1 tvg-id="TokyoMX2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX2 (720p) +https://movie.mcas.jp/mcas/mx2_2/master.m3u8 +#EXTINF:-1 tvg-id="TokyoMX2.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Tokyo_metropolitan_television_logo_%28rainbow%29.svg/800px-Tokyo_metropolitan_television_logo_%28rainbow%29.svg.png" group-title="Local",Tokyo MX2 (360p) +https://movie.mcas.jp/mcas/smil:mx2_prod.smil/master.m3u8 +#EXTINF:-1 tvg-id="TVAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Asahi (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00014/index.m3u8 +#EXTINF:-1 tvg-id="TVAsahi.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Asahi (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00014/index.m3u8 +#EXTINF:-1 tvg-id="TVOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Osaka (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00013/index.m3u8 +#EXTINF:-1 tvg-id="TVOsaka.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="Local",TV Osaka (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00013/index.m3u8 +#EXTINF:-1 tvg-id="JOTXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/vgEnHX6.png" group-title="Local",TV Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hls/j00012/index.m3u8 +#EXTINF:-1 tvg-id="JOAXDTV.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/vgEnHX6.png" group-title="Local",TV Tokyo (720p) [Not 24/7] +http://51.79.193.108:8080/hlsok/j00012/index.m3u8 +#EXTINF:-1 tvg-id="WakuWakuJapan.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://www.dialog.lk/dialogdocroot/content/images/channel-highlights/waku-waku-large.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36" group-title="",WakuWaku Japan [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36 +https://liveanevia.mncnow.id/live/eds/WakuWakuJapan/sa_dash_vmx/WakuWakuJapan.mpd +#EXTINF:-1 tvg-id="WeatherChanneluezaniyusuBSWNI.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="" group-title="",Weather Channel (ウェザーニュース) (BS | WNI) (720p) +http://movie.mcas.jp/mcas/wn1_2/master.m3u8 +#EXTINF:-1 tvg-id="WeatherNews.jp" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://dbbovgtu2bg0x.cloudfront.net/uploads/program/main_image/749853303/app_app_wether_news.png" group-title="Weather",Weather News (720p) +https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8 diff --git a/channels/ke.m3u~master b/channels/ke.m3u~master new file mode 100644 index 000000000..14be2bf3d --- /dev/null +++ b/channels/ke.m3u~master @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CitizenTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/05/Webp.net-resizeimage.png" group-title="General",Citizen TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/kenyacitizentv/live +#EXTINF:-1 tvg-id="EbruTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/download-1.jpg" group-title="General",Ebru TV (360p) [Not 24/7] +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn/tvsn.m3u8 +#EXTINF:-1 tvg-id="GBSTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/GBS-TV-1.jpg" group-title="General",GBS TV (720p) [Not 24/7] +https://goliveafrica.media:9998/live/6045ccbac3484/index.m3u8 +#EXTINF:-1 tvg-id="K24.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/K24-1.jpg" group-title="General",K24 (480p) [Not 24/7] +https://5f4db0f94b000.streamlock.net/k24/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="KamemeTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/ke-kameme-tv-1383.jpg" group-title="General",Kameme TV (184p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6ol8sj +#EXTINF:-1 tvg-id="KassTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/kasstvlogo.png" group-title="General",Kass TV (540p) [Not 24/7] +https://goliveafrica.media:9998/live/60755313b36db/index.m3u8 +#EXTINF:-1 tvg-id="KBC.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/KBC-1.jpg" group-title="General",KBC (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x74211t +#EXTINF:-1 tvg-id="KTNNews.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2020/11/unnamed.jpg" group-title="News",KTN News (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/standardgroupkenya/live +#EXTINF:-1 tvg-id="NTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/NTV-1.jpg" group-title="General",NTV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x6shkab +#EXTINF:-1 tvg-id="SwitchTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/Switch-TV-1.jpg" group-title="General",Switch TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://dai.ly/x7sxle3 +#EXTINF:-1 tvg-id="TV47.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://tv47.co.ke/wp-content/uploads/2020/10/tv-47-logo-600-e1617870103726.png" group-title="General",TV47 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tv47kenya/ +#EXTINF:-1 tvg-id="UTV.ke" tvg-country="KE" tvg-language="English" tvg-logo="https://kenyatv.tech/wp-content/uploads/2021/04/UTV-1.jpg" group-title="General",UTV (480p) [Not 24/7] +https://goliveafrica.media:9998/live/6049f726546e1/index.m3u8 diff --git a/channels/kg.m3u b/channels/kg.m3u new file mode 100644 index 000000000..20b3aef72 --- /dev/null +++ b/channels/kg.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV1KG.kg" tvg-country="KG" tvg-language="Russian" tvg-logo="" group-title="",TV1 KG (1080p) +http://212.2.225.30:1935/live/site.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Balastan.kg" tvg-country="KG" tvg-language="Kyrgyz;Russian" tvg-logo="http://www.ktrk.kg/images/channels/balastan_white_notext.png" group-title="Kids",Баластан (576p) [Not 24/7] +http://onlinetv.ktrk.kg:1935/live/myStream6/playlist.m3u8 +#EXTINF:-1 tvg-id="LyubimyyHDTNT4.kg" tvg-country="KG" tvg-language="Russian" tvg-logo="" group-title="",Любимый HD/ТНТ4 (576p) +http://92.245.103.126:1935/live/live.stream/playlist.m3u8 diff --git a/channels/kh.m3u b/channels/kh.m3u new file mode 100644 index 000000000..df51eaaed --- /dev/null +++ b/channels/kh.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BayonTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/2jbulL2.jpg" group-title="News",Bayon TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/bayontv_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BayonTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/2jbulL2.jpg" group-title="News",Bayon TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/bayontv1_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FreshNews.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="News",Fresh News (720p) +http://167.99.65.12:1935/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="FreshNewsTV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/6p0TK7e.png" group-title="News",Fresh News TV (720p) +http://167.99.65.12:1935/live/ngrp:myStream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="PNN.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/1xZmAvQ.jpg" group-title="",PNN (360p) [Not 24/7] +http://203.176.130.123:8989/live/pnn_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SEATV.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",SEA TV (360p) [Not 24/7] +http://203.176.130.123:8989/live/seatv_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TV9.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="https://i.imgur.com/KGbDcg1.jpg" group-title="",TV9 (360p) [Not 24/7] +http://203.176.130.123:8989/live/ctv9_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVK.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK (360p) [Not 24/7] +http://203.176.130.123:8989/live/tvk_480k.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKCamboya.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK Camboya (720p) +https://livefta.malimarcdn.com/tvkedge/tvk2.stream/master.m3u8 +#EXTINF:-1 tvg-id="TVKCamboya.kh" tvg-country="KH" tvg-language="Khmer" tvg-logo="" group-title="",TVK Camboya (720p) +https://livefta.malimarcdn.com/tvkedge/tvkhd.stream/master.m3u8 diff --git a/channels/kp.m3u b/channels/kp.m3u new file mode 100644 index 000000000..8a2ddc48d --- /dev/null +++ b/channels/kp.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KCTV.kp" tvg-country="KP" tvg-language="Korean" tvg-logo="https://i.imgur.com/rEn31ub.png" group-title="",Korean Central Television (KCTV) (576p) +https://tv.nknews.org/tvdash/stream.mpd +#EXTINF:-1 tvg-id="KCTV.kp" tvg-country="KP" tvg-language="Korean" tvg-logo="https://i.imgur.com/rEn31ub.png" group-title="",Korean Central Television (KCTV) (810p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/kctv_elufa diff --git a/channels/kr.m3u~master b/channels/kr.m3u~master new file mode 100644 index 000000000..786a939b7 --- /dev/null +++ b/channels/kr.m3u~master @@ -0,0 +1,117 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AniPlus.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",AniPlus (Malay subtitles) (576p) [Geo-blocked] +http://210.210.155.35/dr9445/h/h02/01.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) +http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) +http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) +http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (720p) +http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/.m3u8 +#EXTINF:-1 tvg-id="Arirang.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://m3u-editor.com/storage/channel-logos/07cd9d90-3cc5-11ea-9aa8-0b5bd3ba261d/92706/14090001.png" group-title="",Arirang (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/arirang_edge/index.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) +http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) +http://amdlive-ch02.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) +http://amdlive-ch03.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",Arirang Radio (720p) [Not 24/7] +http://amdlive.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/.m3u8 +#EXTINF:-1 tvg-id="BBSBuddhistBroadcasting.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/i7uUG2m.png" group-title="",BBS Buddhist Broadcasting (1080p) [Not 24/7] +http://bbstv.clouducs.com:1935/bbstv-live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="CBS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/Iy0yBaM.jpg" group-title="General",CBS (1080p) +http://cbs-live.gscdn.com/cbs-live/cbs-live.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CGNTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/SQI9PAz.png" group-title="Religious",CGNTV (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_kr01/playlist.m3u8 +#EXTINF:-1 tvg-id="CGNTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/SQI9PAz.png" group-title="Religious",CGNTV (720p) [Timeout] +http://cgntv-glive.ofsdelivery.net/live/cgntv_kr02/playlist.m3u8 +#EXTINF:-1 tvg-id="CJBceongjubangsongSBSQingZhou.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.cjb.co.kr/home/images/layout/f_logo.gif" group-title="",CJB청주방송 (SBS 淸州) (540p) [Not 24/7] +http://1.222.207.80:1935/live/cjbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="CTSgidoggyoTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.bbsi.co.kr/HOME/img/common/imgLogo.png" group-title="",CTS기독교TV (720p) +https://d34t5yjz1ooymj.cloudfront.net/out/v1/875039d5eba0478fa8375a06b3aa5a37/index.m3u8 +#EXTINF:-1 tvg-id="EBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://global.ebs.co.kr/global/img/sub/Channels_ebs1.png" group-title="",EBS 1 (400p) +http://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/s1y2zoe.png" group-title="",EBS 1 (400p) +http://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBS2.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS 2 (400p) +http://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSe.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS e (400p) +http://ebsonair.ebs.co.kr/plus3familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSKIDS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://global.ebs.co.kr/global/img/sub/Channels_IPTV_04.png" group-title="Kids",EBS KIDS (400p) +http://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSPlus1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS+ 1 (400p) +http://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EBSPlus2.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/7K7zmoE.png" group-title="",EBS+ 2 (400p) +http://ebsonair.ebs.co.kr/plus2familypc/familypc1m/playlist.m3u8 +#EXTINF:-1 tvg-id="EdailyTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/UvRoc22.png" group-title="",Edaily TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC8Sv6O3Ux8ePVqorx8aOBMg/live +#EXTINF:-1 tvg-id="GCN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFb1QuujJWU3nuUMCNPhNiA/live +#EXTINF:-1 tvg-id="GCN24English.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 English (720p) [Not 24/7] +http://liveen24-manminglobal3.ktcdn.co.kr/liveen24/gcnus_high/playlist.m3u8 +#EXTINF:-1 tvg-id="GCN24Korean.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 Korean (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCqGxkgVnPc7arUR7MdCi99g/live +#EXTINF:-1 tvg-id="GCN24Korean.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QUxuHA1.png" group-title="",GCN24 Korean (480p) [Not 24/7] +http://liveko24-manminglobal3.ktcdn.co.kr/liveko24/gcnko_high/playlist.m3u8 +#EXTINF:-1 tvg-id="GugbangTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/f1tz5fg.png" group-title="",Gugbang TV (1080p) [Not 24/7] +http://mediaworks.dema.mil.kr:1935/live_edge/cudo.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="JIBSSBS.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://jibs.co.kr/resources/common/img/bottom_logo.png" group-title="",JIBS SBS (720p) [Not 24/7] +http://123.140.197.22/stream/1/play.m3u8 +#EXTINF:-1 tvg-id="KPlus.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/4DEUpdm.jpg" group-title="",K+ (576p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h08/index.m3u8 +#EXTINF:-1 tvg-id="KBCgwangjubangsongSBSGuangZhou.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.cjb.co.kr/home/images/layout/f_logo.gif" group-title="",KBC 광주방송 (SBS 光州) (1080p) +http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KBS1.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/KBS_1_logo.svg/langfr-220px-KBS_1_logo.svg.png" group-title="",KBS 1 (1080p) [Not 24/7] +http://121.130.210.101:9981/stream/channelid/637185705 +#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/b7uMB9T.png" group-title="",KBS LiveCam DokDo (540p) +http://kbs-dokdo.gscdn.com/dokdo_300/dokdo_300.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/b7uMB9T.png" group-title="",KBS LiveCam DokDo (540p) [Offline] +http://kbs-dokdo.gscdn.com/sec_kbshomepage_300/sec_kbshomepage_300.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSWorld.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/KBS.png" group-title="",KBS World (720p) +https://livecdn.fptplay.net/sdb/kbs_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KCTVgwangjuCH05.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.kctv.co.kr/img/index/top_logo.png" group-title="",KCTV 광주 CH05 (720p) [Not 24/7] +http://119.77.96.184:1935/chn05/chn05/playlist.m3u8 +#EXTINF:-1 tvg-id="MBC.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/672.png" group-title="",MBC (1080p) +http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCYeosu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/672.png" group-title="",MBC Yeosu (720p) [Not 24/7] +https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="MTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QMDDHd1.gif" group-title="",MTN (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClErHbdZKUnD1NyIUeQWvuQ/live +#EXTINF:-1 tvg-id="MTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/QMDDHd1.gif" group-title="",MTN (720p) [Not 24/7] +http://183.110.27.87/mtnlive/720/playlist.m3u8 +#EXTINF:-1 tvg-id="NBSKoreaAgriculturalBroadcasting.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/loWf3B5.jpg" group-title="",NBS Korea Agricultural Broadcasting (720p) +https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="One.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="" group-title="",One (Indonesian Sub) (360p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h143/02.m3u8 +#EXTINF:-1 tvg-id="SBSKNN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/KNN_logo.svg/120px-KNN_logo.svg.png" group-title="",SBS KNN (450p) [Not 24/7] +http://211.220.195.200:1935/live/mp4:KnnTV.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TBCdaeguSBSDaQiu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.tbc.co.kr/tbc_common/images/sm12_ci.png" group-title="",TBC 대구 (SBS 大邱) (540p) [Geo-blocked] +http://221.157.125.239:1935/live/psike/playlist.m3u8 +#EXTINF:-1 tvg-id="TBSSeoul.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/wqlTcbI.png" group-title="",TBS Seoul (720p) +https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TJBdaejeonbangsongSBSDaTian.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://upload.wikimedia.org/wikipedia/ko/8/8b/TJB_Logo.jpg" group-title="",TJB 대전방송 (SBS 大田) (720p) [Not 24/7] +http://1.245.74.5:1935/live/tv/.m3u8 +#EXTINF:-1 tvg-id="TVWorkNet.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/xLL7Sxm.png" group-title="",TVWorkNet (480p) +http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="YTN.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://static.epg.best/kr/YTN.kr.png" group-title="",YTN (1080p) [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UChlgI3UHCOnwUGzWzbJ3H5w/live +#EXTINF:-1 tvg-id="YTNDMB.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/fdFQonN.jpg" group-title="",YTN DMB [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC38IlqMxZ_YtFg3eSGmmJnQ/live +#EXTINF:-1 tvg-id="YTNSCIENCE.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/FIzME5L.jpg" group-title="Science",YTN SCIENCE (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCZdBJIbJz0P9xyFipgOj1fA/live +#EXTINF:-1 tvg-id="gayoTV.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://gayotv.co.kr/image/logo.jpg" group-title="",가요TV (1080p) [Not 24/7] +http://gayotv.net:1935/live/gayotv/playlist.m3u8 +#EXTINF:-1 tvg-id="gugagbangsong.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://www.futurekorea.co.kr/news/photo/202001/127326_129561_5346.jpg" group-title="News",국악방송 (1080p) +http://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCDaegu.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://dg.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2019/12/0df66e127a9d1c68d0d56dd7567a5b52943a71122c8fc5aecf792ff11fba3d93bb1cd98f1d1c9e2fd83a294d26e2d5f270b705711cc20b5bdaf39ed2188c5075.png" group-title="",대구 MBC (MBC Daegu) (480p) [Not 24/7] +https://5e04aba713813.streamlock.net/live/livetv/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCDaejeon.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://busan.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2018/12/6e1a8d912bd32dca479bbf74667f7caf0716dd4e358e61136cecb8ca29b5b99a46b47b1d42b4a487d582c6ad6132929ff20a4cb41b344da26694ca115f5ee90a.png" group-title="",대전MBC (MBC Daejeon) (720p) [Not 24/7] +https://5c482867a8b63.streamlock.net/live/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCJeju.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://jeju.cdn.a04f922e9e85c8d25ebfeae3dfd22a67.com/2019/06/2a42c0e8f353c0d091bd145d7384670af46a6cdf647b0d0be45f76a8faccf7ad0b144cbb6fe11b0ff81bd830478e8e5e8dc43ec1ce76bfead41eac377fcfbdc0.png" group-title="",제주 MBC (MBC Jeju) (352p) [Not 24/7] +https://5cf58a556f9b2.streamlock.net/live/tv_jejumbc/playlist.m3u8 +#EXTINF:-1 tvg-id="MBCChuncheon.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://data1.chmbc.co.kr/2018/12/d0fba52ecd26cdc49a893b9af6d468561f88e70c58accae0c6e1718bd112efc69511ffd56f9c167d6e1b215c065f844f250b1fa6df470afb30abf5cdd0153016.png" group-title="",춘천MBC (MBC Chuncheon) (1080p) [Not 24/7] +https://5c74939c891dc.streamlock.net/live/TV/playlist.m3u8 +#EXTINF:-1 tvg-id="hangugseongeobangsong.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="http://www.etv.go.kr/images/newimg/logo.png" group-title="",한국선거방송 (720p) +http://necgokr2-724.acs.wecandeo.com/ms/2528/724/index_1.m3u8 diff --git a/channels/kw.m3u~master b/channels/kw.m3u~master new file mode 100644 index 000000000..04ee907be --- /dev/null +++ b/channels/kw.m3u~master @@ -0,0 +1,41 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlMaaliTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/l7zer94.png" group-title="Religious",Al Maali TV (450p) +https://video1.getstreamhosting.com:1936/8484_1/8484_1/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMaaref.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://almaaref.ch/wp-content/uploads/2018/10/almaaref-logo-2.png" group-title="Religious",Al Maaref (350p) [Timeout] +https://5e74a9d684b2e.streamlock.net/liveTrans/ngrp:channel23_all/playlist.m3u8 +#EXTINF:-1 tvg-id="ALRAI.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="" group-title="",Al Rai (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8779mb +#EXTINF:-1 tvg-id="AlSabah.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kKPppEz.png" group-title="News",Al Sabah (360p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/live/Al-Sabah_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="AlBawadi.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://ewsat.com/img/AL_BAWADI.png" group-title="",Al-Bawadi (360p) +https://gulfsat.cdn.easybroadcast.fr/live/Al-Bawadi_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="AlShahed.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://alshahed.tv/wp-content/themes/twentyfifteen/asset/img/logo.png" group-title="",Al-Shahed (720p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/abr_live/Al-Shahed/playlist.m3u8 +#EXTINF:-1 tvg-id="AlraiTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/eqCEXk6.png" group-title="Entertainment",Alrai TV (720p) +https://media.streambrothers.com:1936/8724/8724/playlist.m3u8 +#EXTINF:-1 tvg-id="ATV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.atvkuwait.com/img/logo/atv_logo.png" group-title="",ATV (360p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/live/Aladalah_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Ch4Teen.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i.imgur.com/JeG9K1y.png" group-title="Religious",Ch4Teen (480p) [Not 24/7] +https://dcunilive93-lh.akamaihd.net/i/dclive_1@835787/master.m3u8 +#EXTINF:-1 tvg-id="Funoon.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="" group-title="Entertainment",Funoon (360p) +https://gulfsat.cdn.easybroadcast.fr/live/FunoonHd_abr/playlist.m3u8 +#EXTINF:-1 tvg-id="KTV1.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/03_logo/KTV1_Kuwait.jpg" group-title="",KTV 1 (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtv1.m3u8 +#EXTINF:-1 tvg-id="KTV2.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/03_logo/ktv2_Kuwait.jpg" group-title="",KTV 2 (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtv2.m3u8 +#EXTINF:-1 tvg-id="KTVAlMajlis.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i4.yhk0.net/cha/kw/almajlis-95x41.gif" group-title="",KTV Al Majlis (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvmajlis.m3u8 +#EXTINF:-1 tvg-id="KTVAlQurain.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i5.satexpat.com/cha/kw/ktvQuran-95x88.gif" group-title="",KTV Al Qurain (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvqurain.m3u8 +#EXTINF:-1 tvg-id="KTVArabe.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://content.osn.com/bob/745x419/KTA.jpg" group-title="",KTV Arabe (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvarabi.m3u8 +#EXTINF:-1 tvg-id="KTVEthraa.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://i5.satexpat.com/cha/kw/ktv_ethra_95x94.gif" group-title="",KTV Ethraa (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvethraa.m3u8 +#EXTINF:-1 tvg-id="KTVKhallikBilbait.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://i5.satexpat.com/cha/kw/khallikBilbait-95x73.gif" group-title="",KTV Khallik Bilbait (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvkids.m3u8 +#EXTINF:-1 tvg-id="KTVSport.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.goalzz.com/images/logo_sport/kuwaitsport.jpg" group-title="Sports",KTV Sport (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsports.m3u8 +#EXTINF:-1 tvg-id="KTVSportPlus.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="http://www.1arablive.com/livetv/assets/images/1536610958.png" group-title="",KTV Sport Plus (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/kwmedia-kwtvsportsplus.m3u8 +#EXTINF:-1 tvg-id="MarinaTV.kw" tvg-country="KW" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/MRN.png" group-title="",Marina TV (720p) [Not 24/7] +https://gulfsat.cdn.easybroadcast.fr/abr_live/MarinaTv/playlist.m3u8 diff --git a/channels/kz.m3u b/channels/kz.m3u new file mode 100644 index 000000000..d0756e9a2 --- /dev/null +++ b/channels/kz.m3u @@ -0,0 +1,47 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7kanal.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",7 канал (576p) [Not 24/7] +https://sc.id-tv.kz/7_kanal.m3u8 +#EXTINF:-1 tvg-id="31kanal.kz" tvg-country="KZ" tvg-language="Russian" tvg-logo="" group-title="",31 канал (576p) [Not 24/7] +https://sc.id-tv.kz/31Kanal.m3u8 +#EXTINF:-1 tvg-id="AsylArnaAsylarna.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Asyl Arna (Асыл арна) (432p) [Not 24/7] +https://sc.id-tv.kz/AsylArna.m3u8 +#EXTINF:-1 tvg-id="AtamekenBusiness.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001662eb7cce159eda2661b206fb448/z" group-title="Business",Atameken Business (1080p) [Not 24/7] +http://live-atameken.cdnvideo.ru/atameken/atameken.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AtamekenBusiness.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001662eb7cce159eda2661b206fb448/z" group-title="Business",Atameken Business (576p) [Not 24/7] +https://sc.id-tv.kz/Atameken.m3u8 +#EXTINF:-1 tvg-id="CaspianNews.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="News",Caspian News (576p) [Not 24/7] +https://sc.id-tv.kz/CaspianNews.m3u8 +#EXTINF:-1 tvg-id="DombyraTV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Dombyra TV (576p) [Not 24/7] +https://sc.id-tv.kz/Dombyra.m3u8 +#EXTINF:-1 tvg-id="Gakku.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Gakku (576p) [Not 24/7] +https://sc.id-tv.kz/Gakku.m3u8 +#EXTINF:-1 tvg-id="HitTV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Hit TV (576p) [Not 24/7] +https://sc.id-tv.kz/HitTV.m3u8 +#EXTINF:-1 tvg-id="Almaty.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://i.imgur.com/GXlYCXz.jpg" group-title="",Алматы (720p) [Not 24/7] +http://live-almatytv.cdnvideo.ru/almatytv/almatytv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Almaty.kz" tvg-country="KZ" tvg-language="Kazakh;Russian" tvg-logo="https://i.imgur.com/GXlYCXz.jpg" group-title="",Алматы (576p) [Not 24/7] +https://sc.id-tv.kz/Almaty.m3u8 +#EXTINF:-1 tvg-id="Astana.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",Астана (576p) [Not 24/7] +https://sc.id-tv.kz/Astana.m3u8 +#EXTINF:-1 tvg-id="ElArna.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="Movies",Ел Арна (576p) [Not 24/7] +https://sc.id-tv.kz/ElArna.m3u8 +#EXTINF:-1 tvg-id="KMA.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="" group-title="",КМА (1080p) [Not 24/7] +https://sc.id-tv.kz/KMA.m3u8 +#EXTINF:-1 tvg-id="KTK.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/BGy7EMr.png" group-title="",КТК (576p) [Not 24/7] +https://sc.id-tv.kz/KTK.m3u8 +#EXTINF:-1 tvg-id="KTK.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/BGy7EMr.png" group-title="",КТК (360p) [Not 24/7] +http://89.218.30.37/ktklive/live.hq/playlist.m3u8 +#EXTINF:-1 tvg-id="MTRK.kz" tvg-country="KZ" tvg-language="Russian" tvg-logo="https://i.imgur.com/XMyRwDk.png" group-title="",МТРК (576p) [Not 24/7] +https://tvcdn01.oktv.kz/tv/mtrk/playlist.m3u8 +#EXTINF:-1 tvg-id="Novoetelevidenie.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/HLiv5Hq.jpg" group-title="",Новое телевидение (576p) [Not 24/7] +http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="STV.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://avatars.mds.yandex.net/get-tv-shows/30293/2a0000015185958d1c16e063f32ce0de9e49/orig" group-title="",СТВ (576p) [Not 24/7] +https://sc.id-tv.kz/STV.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://24.kz/media/k2/items/cache/55a9ec53054b140fa3784d6b9508fcf5_L.jpg" group-title="",Хабар 24 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnAFKvDuqBGkIfV8Vn0J_CQ/live +#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (720p) [Not 24/7] +http://serv30.vintera.tv:8081/habar/habar24/playlist.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (720p) [Not 24/7] +https://live-24kz.cdnvideo.ru/24kz/24kz.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Habar24.kz" tvg-country="KZ" tvg-language="Kazakh" tvg-logo="https://i.imgur.com/tEH4vmX.png" group-title="",Хабар 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar_24.m3u8 diff --git a/channels/la.m3u b/channels/la.m3u new file mode 100644 index 000000000..d6d5271a8 --- /dev/null +++ b/channels/la.m3u @@ -0,0 +1,63 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AirTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Air TV (720p) +https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="BrianTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Brian TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DaoLaneXang.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Dao Lane Xang (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DhammasaphaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Dhammasapha TV (1080p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="GoodIdeaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Good Idea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongStarTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Hmong Star TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongUSATV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",HmongUSA TV (360p) +https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HoungFa.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Houng Fa (720p) +https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",ISTV (480p) +https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KhomsanhTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Khomsanh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://i.malimarcdn.com/laochampatvHD.jpg" group-title="",Lao Champa TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV2.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://i.malimarcdn.com/laochampatv2HD.jpg" group-title="",Lao Champa TV 2 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV3.la" tvg-country="LA" tvg-language="Lao" tvg-logo="https://aetlive.s3-us-west-2.amazonaws.com/assets/img/2018/03/03231638/newLaoChampa3.jpg" group-title="",Lao Champa TV 3 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Heritage Foundation TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoMuslimTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Muslim TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoNetTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Net TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoSVTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao SV TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaosPlanetTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Laos Planet TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LookThoongTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Look Thoong TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LSTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",LS TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NATTV.vn" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",NAT TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NingTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Ning TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OhMuangLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Oh Muang Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OyLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Oy Lao TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PNTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",PNTV (720p) +https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Tea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV2.la" tvg-country="LA" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Tea TV 2 (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="UniquelyThai.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Uniquely Thai (720p) +https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VajtswvTxojlus.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vajtswv Txojlus (720p) +https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VanphenhTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vanphenh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VatiLaoTV.la" tvg-country="LA" tvg-language="Vietnamese" tvg-logo="" group-title="",Vati Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 diff --git a/channels/lb.m3u~master b/channels/lb.m3u~master new file mode 100644 index 000000000..93f865a88 --- /dev/null +++ b/channels/lb.m3u~master @@ -0,0 +1,62 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AghaniAghani.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://aghaniaghani.com/images/logo.png" group-title="Music",Aghani Aghani (1080p) [Not 24/7] +https://svs.itworkscdn.net/aghanilive/aghanilive/playlist.m3u8 +#EXTINF:-1 tvg-id="AlIttihad.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://alittihad.tv/assets/images/logo.png" group-title="General",Al Ittihad (552p) [Not 24/7] +https://live.alittihad.tv/ittihad/index.m3u8 +#EXTINF:-1 tvg-id="AljadeedTv.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qtQQJQc.png" group-title="General",Al Jadeed (480p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7ztkw7 +#EXTINF:-1 tvg-id="AlManar.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dmDzNQO.png" group-title="News",Al Manar (576p) [Not 24/7] +https://manar.live/iptv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlManar.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/dmDzNQO.png" group-title="News",Al Manar (576p) [Not 24/7] +https://manar.live/x.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMayadeen.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://media.almayadeen.tv/uploads/archive/web-logo.png" group-title="News",Al Mayadeen (576p) +https://lmdstrm.cdn.octivid.com/mayadeen-live/smil:mayadeen.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlhayatTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://www.alhayat.tv/images/logo/main.34f5c635.png" group-title="General",Alhayat TV (720p) [Not 24/7] +https://wowzaprod140-i.akamaihd.net/hls/live/750788/7552102e/playlist.m3u8 +#EXTINF:-1 tvg-id="AlimanTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/817xRPg.png" group-title="Religious",Aliman TV (240p) [Not 24/7] +https://svs.itworkscdn.net/alimanlive/imantv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ArabicaMusic.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://arabicagroup.tv/images/app1.png" group-title="Music",Arabica TV (720p) +http://istream.binarywaves.com:8081/hls/arabica/playlist.m3u8 +#EXTINF:-1 tvg-id="CharityTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://kreim-storage.fra1.digitaloceanspaces.com/APP%20Logo%20PNG.png" group-title="Religious",CharityTV (1080p) [Not 24/7] +http://185.105.4.236:1935/live/ngrp:livestream_all/live.m3u8 +#EXTINF:-1 tvg-id="FutureTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://futuretvnetwork.com/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="General",Future TV (576p) [Not 24/7] +#EXTVLCOPT:http-referrer=http://azrotv.com/ +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://teledunet.com:8080/live/azrotv/azrotv2021/10007.m3u8 +#EXTINF:-1 tvg-id="LBCInternational.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/YPR45yP.png" group-title="General",LBC International (1080p) [Geo-blocked] +https://shls-lbci-prod-dub.shahid.net/out/v1/d8cce30036e743318a7f338539689968/index.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] +http://31.14.40.237:1935/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] +http://31.14.40.238:1935/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NabaaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://nabaa.tv/wp-content/uploads/2018/07/nabaa-logo-66x116.png" group-title="News",Nabaa TV (720p) [Not 24/7] +https://5dc7d824154d0.streamlock.net/live/Nabaa/playlist.m3u8 +#EXTINF:-1 tvg-id="NBN.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="" group-title="",NBN (720p) [Not 24/7] +https://nbntv.me:8443/nbntv/index.m3u8 +#EXTINF:-1 tvg-id="Newvision.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.newvision.tv/wp-content/uploads/2020/05/Logo.jpg" group-title="News",Newvision (480p) [Not 24/7] +https://master.starmena-cloud.com/hls/newv.m3u8 +#EXTINF:-1 tvg-id="NourAlKoddas.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5VvPLEl.jpg" group-title="Religious",Nour Al Koddas (406p) [Not 24/7] +https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NourAlSharq.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/hiAwky4.jpg" group-title="Religious",Nour Al Sharq (576p) +https://svs.itworkscdn.net/nour8satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NourMariam.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Ow5Lqh6.jpg" group-title="Religious",Nour Mariam (576p) +https://svs.itworkscdn.net/nour9satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NourSAT.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/QrwZu4W.png" group-title="Religious",NourSAT (576p) +https://svs.itworkscdn.net/nour4satlive/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" group-title="General",OTV (1080p) [Geo-blocked] +https://iptv-all.lanesh4d0w.repl.co/lebanon/otv +#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" group-title="General",OTV (720p) [Not 24/7] +http://62.182.82.104/OTV/index.m3u8?token=test +#EXTINF:-1 tvg-id="OTVLebanon.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://bookback.co/wp-content/uploads/2018/12/OTV-1.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="General",OTV (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=http://azrotv.com/ +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +http://teledunet.com:8080/live/azrotv/azrotv2021/10015.m3u8 +#EXTINF:-1 tvg-id="SawtElMada.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.sawtelmada.com/assets/themes/sawt%20al%20mada/images/logo.png" group-title="",Sawt El Mada (460p) [Not 24/7] +https://svs.itworkscdn.net/madalive/mada/playlist.m3u8 +#EXTINF:-1 tvg-id="TahaTV.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://tahatv.com/images/menue%20bar/77_46.png" group-title="Kids",Taha TV (360p) [Not 24/7] +https://media2.livaat.com/TAHA-TV/index.m3u8 +#EXTINF:-1 tvg-id="TeleLiban.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="http://www.teleliban.com.lb/images/telelogo.png" group-title="General",Tele Liban (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://www.teleliban.com.lb/live +https://cdn.catiacast.video/abr/ed8f807e2548db4507d2a6f4ba0c4a06/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSeventeen.lb" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://www.tvseventeen.com/img/logo.png" group-title="News",TV Seventeen (1080p) +https://cdn.tvseventeen.com/test_tv_seventeen/index.m3u8 diff --git a/channels/li.m3u b/channels/li.m3u new file mode 100644 index 000000000..aa52d2663 --- /dev/null +++ b/channels/li.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KommuTV.li" tvg-country="LI" tvg-language="German" tvg-logo="https://i.imgur.com/hNA8pC9.png" group-title="",Kommu TV (720p) [Not 24/7] +http://31.10.19.12:8066/live/999/0.m3u8 +#EXTINF:-1 tvg-id="MediashopTV.li" tvg-country="LI" tvg-language="German" tvg-logo="https://i.imgur.com/Drxu8Du.png" group-title="Shop",Mediashop TV (576p) +https://mediashop.akamaized.net/hls/live/2032402/Meine_Einkaufswelt/1.m3u8 diff --git a/channels/lk.m3u b/channels/lk.m3u new file mode 100644 index 000000000..0cecc9185 --- /dev/null +++ b/channels/lk.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="athavantv.com" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/U4RQ4pT.png" group-title="",Athavan TV (720p) [Not 24/7] +http://45.77.66.224:1935/athavantv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="channeleye.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/dDCHZwA.png" group-title="",Channel Eye (480p) [Geo-blocked] +http://dammikartmp.tulix.tv/slrc2/slrc2/playlist.m3u8 +#EXTINF:-1 tvg-id="HiruTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/u4et3kY.png" group-title="",Hiru TV (360p) [Not 24/7] +http://cdncities.com/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="hirutv.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/u4et3kY.png" group-title="",Hiru TV (360p) [Not 24/7] +https://eu10b.serverse.com:1936/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="rupavahini.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/3krjTFe.png" group-title="",Rupavahini (480p) [Not 24/7] +http://dammikartmp.tulix.tv/slrc1/slrc1/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/yJs9KYP.png" group-title="",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhora/santhorashortfilm/playlist.m3u8 +#EXTINF:-1 tvg-id="SanthoraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/yJs9KYP.png" group-title="",Santhora TV (720p) +http://rtmp.santhoratv.zecast.net/santhoratv/santhoratv/playlist.m3u8 +#EXTINF:-1 tvg-id="SooriyanTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/nqAvA6W.png" group-title="",Sooriyan TV (810p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/Sooriyantv/Sooriyantv/playlist.m3u8 +#EXTINF:-1 tvg-id="SriSankaraTV.lk" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/1QrwZKp.png" group-title="",Sri Sankara TV (360p) [Not 24/7] +https://8noro432dm6g-hls-live.wmncdn.net/Sri/a5518065f47332dad6b509920c827474.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VerbumTV.com" tvg-country="LK" tvg-language="Sinhala" tvg-logo="https://i.imgur.com/BzaJlR9.jpg" group-title="",VerbumTV (414p) [Not 24/7] +https://verbumtv.livebox.co.in/verbumtvhls/live.m3u8 diff --git a/channels/lt.m3u b/channels/lt.m3u new file mode 100644 index 000000000..5ddb87ed0 --- /dev/null +++ b/channels/lt.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KOKFights.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",KOK Fights (720p) [Not 24/7] +https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LRTLituanica.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",LRT Lituanica (720p) +https://lituanica-dvr.lrt.lt/lrt-ndvr/hls/lituanica_720p/index.m3u8 +#EXTINF:-1 tvg-id="M1.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="" group-title="",M-1 (480p) +http://m-1.data.lt/m-1/smil:m-1.smil/chunklist_b1000000.m3u8 +#EXTINF:-1 tvg-id="tv3.lt" tvg-country="LT" tvg-language="Lithuanian" tvg-logo="https://i.imgur.com/X5ulUxA.jpg" group-title="",Power Hit Radio (720p) [Not 24/7] +https://baltlive.tv3.lt/studija/smil:studija.smil/playlist.m3u8 diff --git a/channels/lu.m3u b/channels/lu.m3u new file mode 100644 index 000000000..6b759f6fd --- /dev/null +++ b/channels/lu.m3u @@ -0,0 +1,15 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChamberTV.lu" tvg-country="LU" tvg-language="Luxembourgish" tvg-logo="https://i.imgur.com/YldMnap.jpg" group-title="",Chamber TV (1080p) +https://media02.webtvlive.eu/chd-edge/smil:chamber_tv_hd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="eldoTV.lu" tvg-country="LU" tvg-language="Luxembourgish" tvg-logo="https://i.imgur.com/4ntor8S.png" group-title="",eldo.TV (1080p) +https://eldo-streaming.eldo.lu/eldotv/smil:eldotv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JasminTV.lu" tvg-country="LU" tvg-language="English" tvg-logo="https://www.parsatv.com/index_files/channels/jasmintv.png" group-title="XXX",Jasmin TV (720p) +http://109.71.162.112/live/hd.jasminchannel.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JasminTV.lu" tvg-country="LU" tvg-language="English" tvg-logo="https://www.parsatv.com/index_files/channels/jasmintv.png" group-title="XXX",Jasmin TV (720p) +http://109.71.162.112/live/sd.jasminchannel.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL.lu" tvg-country="LU" tvg-language="French" tvg-logo="https://i.imgur.com/bJrUjIC.png" group-title="",RTL (1080p) +https://live-edge.rtl.lu/channel1/smil:channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL.lu" tvg-country="LU" tvg-language="French" tvg-logo="https://i.imgur.com/bJrUjIC.png" group-title="",RTL (1080p) +https://rtlradio-streaming.rtl.lu/rtlradiowebtv/smil:rtlradiowebtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTL2.lu" tvg-country="LU" tvg-language="French" tvg-logo="" group-title="",RTL2 (1080p) +https://live-edge.rtl.lu/channel2/smil:channel2/playlist.m3u8 diff --git a/channels/lu_samsung.m3u b/channels/lu_samsung.m3u new file mode 100644 index 000000000..440209ba8 --- /dev/null +++ b/channels/lu_samsung.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="French" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews Français (720p) +https://rakuten-africanews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-lu.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsFrancais.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Français (720p) [Offline] +https://rakuten-euronews-2-lu.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/lv.m3u b/channels/lv.m3u new file mode 100644 index 000000000..aba209909 --- /dev/null +++ b/channels/lv.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChauTV.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/W9RtBZN.jpg" group-title="",Chau TV [Offline] +https://video.chaula.tv/hls/live/high/playlist_high.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio1.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/hsspORI.png" group-title="",Latvijas Radio 1 (360p) [Not 24/7] +https://5a44e5b800a41.streamlock.net/liveVLR1/mp4:LR1/playlist.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio2.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/hsspORI.png" group-title="",Latvijas Radio 2 (240p) +https://5a44e5b800a41.streamlock.net/liveVLR2/mp4:LR2/playlist.m3u8 +#EXTINF:-1 tvg-id="LatvijasRadio3Klasika.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/4npOpPj.png" group-title="",Latvijas Radio 3 Klasika (240p) +https://5a44e5b800a41.streamlock.net/liveVLR3/mp4:Klasika/playlist.m3u8 +#EXTINF:-1 tvg-id="TVNET.lv" tvg-country="LV" tvg-language="Latvian" tvg-logo="https://i.imgur.com/r4rlHUt.png" group-title="",TVNET (360p) +https://player.tvnet.lv/stream/amlst:61659/playlist.m3u8 diff --git a/channels/ly.m3u b/channels/ly.m3u new file mode 100644 index 000000000..3cc235ef2 --- /dev/null +++ b/channels/ly.m3u @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlwasatTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://alwasat.ly/themes/default/assets/images/logo.png" group-title="",Alwasat TV (1080p) [Not 24/7] +https://hiplayer.hibridcdn.net/t/alwasattv-live.m3u8 +#EXTINF:-1 tvg-id="FebruaryTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://www.februarychannel.com/webroot/theam/images/feb-logo-1.png" group-title="",February TV [Offline] +https://linkastream.co/headless?url=https://www.youtube.com/c/FebruaryTv/live +#EXTINF:-1 tvg-id="JamahiriaTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://www.ljbctv.tv/logo.png" group-title="News",Jamahiria TV (480p) [Not 24/7] +https://master.starmena-cloud.com/hls/jam.m3u8 +#EXTINF:-1 tvg-id="Libya218.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/N9dO8AE.png" group-title="News",Libya 218 (1080p) [Not 24/7] +https://stream.218tv.net/libya218TV/playlist.m3u8 +#EXTINF:-1 tvg-id="Libya218News.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mzwdt39.jpg" group-title="News",Libya 218 News (1080p) [Not 24/7] +http://95.85.47.43/libya218news/playlist.m3u8 +#EXTINF:-1 tvg-id="Libya218News.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mzwdt39.jpg" group-title="News",Libya 218 News (1080p) [Not 24/7] +https://stream.218tv.net/libya218news/playlist.m3u8 +#EXTINF:-1 tvg-id="LibyaAlAhrarTV.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://pbs.twimg.com/profile_images/953959542928412673/wYWx5MRY.jpg" group-title="News",Libya Al Ahrar TV (720p) [Not 24/7] +https://video.zidivo.com/live983/GrtjM_FNGC/playlist.m3u8 +#EXTINF:-1 tvg-id="LibyaAlHadath.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://www.elahmad.com/tv/images/libyaalhadath.jpg" group-title="News",Libya Al Hadath (576p) [Not 24/7] +https://master.starmena-cloud.com/hls/hd.m3u8 +#EXTINF:-1 tvg-id="LibyaChannel.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="http://www.1arablive.com/livetv/assets/images/1524006480.jpg" group-title="News",Libya Channel (576p) [Not 24/7] +https://master.starmena-cloud.com/hls/libyas.m3u8 +#EXTINF:-1 tvg-id="Tanasuh.ly" tvg-country="LY" tvg-language="Arabic" tvg-logo="https://tanasuh.tv/wp-content/uploads/2018/01/Website-LOGO-01.png" group-title="",Tanasuh (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRaoHR6b3zViY9QxfgFNntQ/live diff --git a/channels/ma.m3u~master b/channels/ma.m3u~master new file mode 100644 index 000000000..c2ffbe77d --- /dev/null +++ b/channels/ma.m3u~master @@ -0,0 +1,47 @@ +#EXTM3U +#EXTINF:-1 tvg-id="2MMonde.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/CwwRn4b.png" group-title="General",2M Monde (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/2m_monde/hls_video_ts_hy217612tge1f21j83/2m_monde.m3u8 +#EXTINF:-1 tvg-id="AlAoula.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoula.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_inter/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula Laayoune (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlAoulaLaayoune.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZFHjIVU.png" group-title="General",Al Aoula Laayoune (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_aoula_laayoune/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlMaghribia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZlmQSBl.png" group-title="General",Al Maghribia (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="AlMaghribia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ZlmQSBl.png" group-title="General",Al Maghribia (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/al_maghribia_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arrabiaa.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/FvgdLdG.png" group-title="General",Arrabiaa (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arrabiaa.ma" tvg-country="MA" tvg-language="Arabic;French" tvg-logo="https://i.imgur.com/FvgdLdG.png" group-title="General",Arrabiaa (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arrabiaa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arryadia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/liFebM9.png" group-title="Sports",Arryadia (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/arriadia/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Arryadia.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/liFebM9.png" group-title="Sports",Arryadia (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/arriadia/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Assadissa.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Assadissa (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/assadissa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Assadissa.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Assadissa (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/assadissa/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="CanalAtlasFight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VQUrMjE.png" group-title="General",Canal Atlas Fight (616p) [Offline] +https://edge.vedge.infomaniak.com/livecast/ik:atlasfight/manifest.m3u8 +#EXTINF:-1 tvg-id="M24TV.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J7GdM3L.png" group-title="News",M24 TV (720p) [Not 24/7] +http://79.137.106.241/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="M24TV.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/J7GdM3L.png" group-title="News",M24 TV (720p) [Not 24/7] +https://www.m24tv.ma/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MaghrebArabePress.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="" group-title="",Maghreb Arabe Press (720p) [Not 24/7] +https://www.maptvnews.ma/live/smil:OutStream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVAfrique.ma" tvg-country="MA" tvg-language="French" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Afrique (1080p) [Not 24/7] +http://streaming2.medi1tv.com/live/smil:medi1fr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVArabic.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Arabic (1080p) [Not 24/7] +http://5f72f3a9b06b7.streamlock.net/live/smil:medi1ar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Medi1TVMaghreb.ma" tvg-country="MA" tvg-language="French;Arabic" tvg-logo="https://i.imgur.com/MosTwQW.png" group-title="News",Medi 1 TV Maghreb (1080p) [Not 24/7] +http://streaming1.medi1tv.com/live/smil:medi1tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Tamazight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uC6IF9P.png" group-title="General",Tamazight (360p) [Geo-blocked] +http://cdn-hls.globecast.tv/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="Tamazight.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uC6IF9P.png" group-title="General",Tamazight (360p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/tamazight_tv8_snrt/hls_snrt/index.m3u8 +#EXTINF:-1 tvg-id="TeleMaroc.ma" tvg-country="MA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7sibv0t.png" group-title="General",Télé Maroc (1080p) +https://api.new.livestream.com/accounts/27130247/events/8196478/live.m3u8 diff --git a/channels/mc.m3u b/channels/mc.m3u new file mode 100644 index 000000000..71d6c316d --- /dev/null +++ b/channels/mc.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MonacoInfo.mc" tvg-country="MC" tvg-language="French" tvg-logo="" group-title="",Monaco Info (720p) [Not 24/7] +https://webtvmonacoinfo.mc/live/prod_720/index.m3u8 diff --git a/channels/md.m3u b/channels/md.m3u new file mode 100644 index 000000000..935c3cfdf --- /dev/null +++ b/channels/md.m3u @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AcasaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/k1bTMPT.png" group-title="",Acasa TV (576p) +http://hls.protv.md/acasatv/acasatv.m3u8 +#EXTINF:-1 tvg-id="BaltiTV.md" tvg-country="MD" tvg-language="Russian" tvg-logo="" group-title="",Bălţi TV (1080p) [Geo-blocked] +http://77.89.199.174:8000/play/1024/index.m3u8 +#EXTINF:-1 tvg-id="CanalRegional.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/ZiwyCkA.png" group-title="",Canal Regional (576p) [Not 24/7] +https://canalregional.md/tv/live/canalregional.m3u8 +#EXTINF:-1 tvg-id="Drochia.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Drochia (1080p) [Not 24/7] +https://hls.drochia.tv/tv/web.m3u8 +#EXTINF:-1 tvg-id="ElitaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Z27Eyqv.jpg" group-title="",Elita TV (576p) [Timeout] +http://46.55.111.242:8080/Rezina.m3u8 +#EXTINF:-1 tvg-id="Moldova1.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Moldova1 (1080p) [Offline] +http://212.0.209.209:1935/live/M1Mlive/playlist.m3u8 +#EXTINF:-1 tvg-id="Moldova2.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Moldova2 (1080p) [Offline] +http://212.0.209.209:1935/live/M2Mlive/playlist.m3u8 +#EXTINF:-1 tvg-id="NorocTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/39qL2Ht.png" group-title="",Noroc TV (576p) +http://live.noroc.tv/hls/noroctv_chisinau.m3u8 +#EXTINF:-1 tvg-id="PublikaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Hquii9k.jpg" group-title="News",Publika TV (720p) +http://livebeta.publika.md/LIVE/P/6810.m3u8 +#EXTINF:-1 tvg-id="PublikaTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Hquii9k.jpg" group-title="News",Publika TV (540p) +https://livebeta.publika.md/LIVE/P/1500.m3u8 +#EXTINF:-1 tvg-id="TeleM.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://i.imgur.com/FVldFIy.jpg" group-title="",Tele M [Offline] +http://webmobile.xdev.ro:81/tv16/playlist.m3u8 +#EXTINF:-1 tvg-id="VoceaBasarabieiTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",Vocea Basarabiei TV (406p) [Not 24/7] +http://hls.voceabasarabiei.md/hls/vocea_basarabiei.m3u8 +#EXTINF:-1 tvg-id="ТНТExclusivTV.md" tvg-country="MD" tvg-language="Romanian" tvg-logo="" group-title="",ТНТ Exclusiv TV (576p) +http://89.28.25.122/hls/tnt_md.m3u8 diff --git a/channels/me.m3u b/channels/me.m3u new file mode 100644 index 000000000..eac7ea5b2 --- /dev/null +++ b/channels/me.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TelevizijaTV7.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/vAzXsBM.jpg" group-title="",Televizija TV7 (480p) [Timeout] +http://109.123.70.27:1935/tehnikatv777/tehnikatv777/index.m3u8 +#EXTINF:-1 tvg-id="TelevizijaTV7.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/IKlrt7F.jpg" group-title="",Televizija TV7 (480p) [Timeout] +http://109.123.70.27:1935/tehnikatv777/tehnikatv777/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCG1.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="" group-title="",TVCG 1 (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cg1/smil:cg1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCG2.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="" group-title="",TVCG 2 (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cg2/smil:cg2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) +http://rtcg3.videostreaming.rs:1935/rtcg/smil:rtcg.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] +http://cdn3.bcdn.rs:1935/cgsat/smil:cgsat.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] +http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.1.stream/index.m3u8 +#EXTINF:-1 tvg-id="TVCGSat.me" tvg-country="ME" tvg-language="Serbian" tvg-logo="https://i.imgur.com/jozQP6Z.png" group-title="",TVCG Sat (720p) [Not 24/7] +http://rtcg2.videostreaming.rs:1935/rtcg/rtcg.2.stream/playlist.m3u8 diff --git a/channels/mk.m3u b/channels/mk.m3u new file mode 100644 index 000000000..5645d637d --- /dev/null +++ b/channels/mk.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KohaTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/AJ472ot.png" group-title="",Koha TV (720p) [Offline] +rtmp://live.tvkoha.tv:1935/live/koha/livestream +#EXTINF:-1 tvg-id="LiveTVHD.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="" group-title="Music",LiveTV HD [Offline] +rtmp://live.livetvhd.cf/live/livetvhd +#EXTINF:-1 tvg-id="SkyFolkTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/8JY3Tcj.jpg" group-title="Music",Sky Folk TV (720p) [Not 24/7] +https://eu.live.skyfolk.mk/live.m3u8 +#EXTINF:-1 tvg-id="SkyFolkTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/8JY3Tcj.jpg" group-title="Music",Sky Folk TV (720p) [Not 24/7] +https://skyfolk.mk/live.m3u8 +#EXTINF:-1 tvg-id="TVPlus.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://i.imgur.com/C67vLVL.jpg" group-title="",TVPlus [Timeout] +http://141.136.14.18/kanal1/kanal1.m3u8 diff --git a/channels/ml.m3u b/channels/ml.m3u new file mode 100644 index 000000000..5290a8a80 --- /dev/null +++ b/channels/ml.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ORTM1.ml" tvg-country="ML" tvg-language="French" tvg-logo="" group-title="",ORTM1 (576p) [Not 24/7] +http://51.210.1.13:18000/ortm/hls/playlist.m3u8 diff --git a/channels/mm.m3u~master b/channels/mm.m3u~master new file mode 100644 index 000000000..0a4c4a48e --- /dev/null +++ b/channels/mm.m3u~master @@ -0,0 +1,24 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChannelK.mm" tvg-country="MM" tvg-language="Burmese" tvg-logo="http://www.myanmartvchannel.com/assets/images/channel/channelk.jpg" group-title="",Channel K [Offline] +https://d3cs5y5559s57s.cloudfront.net/live/channelk.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsportshd.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsporthd_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports1.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports1.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 1 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport1_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports2.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 2 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport2_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports3.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 3 (480p Scaled) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport3_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports4.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 4 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport4_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports5.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports5.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 5 (480p Scaled) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport5_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SkyNetSports6.mm" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/sd-skynetsports6.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",Sky Net Sports 6 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/03_skynetsport6_480p/chunklist.m3u8 diff --git a/channels/mn.m3u b/channels/mn.m3u new file mode 100644 index 000000000..a72082bde --- /dev/null +++ b/channels/mn.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MongolynMedee.mn" tvg-country="MN" tvg-language="Mongolian" tvg-logo="http://www.mnb.mn/images/mini/mnews.png" group-title="News",Монголын Мэдээ (576p) [Offline] +http://103.14.38.107:1935/live/mn2.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="MUONT1.mn" tvg-country="MN" tvg-language="Mongolian" tvg-logo="http://www.mnb.mn/images/mini/tv.png" group-title="",МҮОНТ-1 (576p) [Offline] +http://103.14.38.107:1935/live/mnb.stream/chunklist.m3u8 diff --git a/channels/mo.m3u b/channels/mo.m3u new file mode 100644 index 000000000..fdf58de2f --- /dev/null +++ b/channels/mo.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalMacau.mo" tvg-country="MO" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/0eGv67Q.png" group-title="General",Canal Macau (720p) [Not 24/7] +http://live4.tdm.com.mo/ch2/_definst_/ch2.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMInfoMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="",TDM Info. Macau (720p) [Not 24/7] +http://live4.tdm.com.mo/ch5/_definst_/info_ch5.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="",TDM Macau (720p) +http://live4.tdm.com.mo/ch1/_definst_/ch1.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMMacauSatelite.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/59lAsao.png" group-title="",TDM Macau Satelite (720p) +http://live4.tdm.com.mo/ch3/_definst_/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="TDMSportsMacau.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="https://i.imgur.com/5FTCFRj.png" group-title="Sports",TDM Sports Macau (720p) +http://live4.tdm.com.mo/ch4/_definst_/sport_ch4.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoShiAoMen.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmaomen.jpg" group-title="",澳视澳门 (720p) +http://live3.tdm.com.mo:1935/ch1/ch1.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoMenZongYi.mo" tvg-country="MO" tvg-language="Chinese;Yue Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/TDM_Entertainment.png/640px-TDM_Entertainment.png" group-title="",澳門綜藝 (720p) +http://live4.tdm.com.mo/ch6/_definst_/hd_ch6.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoMenTiYu.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmty.jpg" group-title="",澳门体育 (720p) +http://live3.tdm.com.mo:1935/ch4/sport_ch4.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoMenWeiXing.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/aomen-macau.jpg" group-title="",澳门卫星 (720p) +http://live3.tdm.com.mo:1935/ch3/ch3.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoMenZongYi.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmgq.jpg" group-title="",澳门综艺 (720p) [Not 24/7] +http://live2.tdm.com.mo:1935/ch6/hd_ch6.live/playlist.m3u8 +#EXTINF:-1 tvg-id="AoMenZiXun.mo" tvg-country="MO" tvg-language="Chinese" tvg-logo="http://www.tvyan.com/uploads/dianshi/tdmzxt.jpg" group-title="",澳门资讯 (720p) +http://live3.tdm.com.mo:1935/ch5/info_ch5.live/playlist.m3u8 diff --git a/channels/mq.m3u b/channels/mq.m3u new file mode 100644 index 000000000..d72aab168 --- /dev/null +++ b/channels/mq.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EsperanceTV.mq" tvg-country="MQ" tvg-language="French" tvg-logo="https://i.imgur.com/wnz50vR.png" group-title="Religious",Espérance TV (720p) [Not 24/7] +https://hcinteram.mmdlive.lldns.net/hcinteram/5fb30e8b271544039e79f93d4d496b25/manifest.m3u8 +#EXTINF:-1 tvg-id="Martiniquela1ère.mq" tvg-country="MQ" tvg-language="French" tvg-logo="https://i.imgur.com/z3AeEbJ.png" group-title="General",Martinique la 1ère (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgA9V57lQlZFXkDfhVGTWSg/live diff --git a/channels/mt.m3u b/channels/mt.m3u new file mode 100644 index 000000000..8f2f3b7a5 --- /dev/null +++ b/channels/mt.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ONE.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://www.one.com.mt/assets/img/design/logos/menu_one_grey.png" group-title="",One (720p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_124/201830-1293592-1/playlist.m3u8 +#EXTINF:-1 tvg-id="SmashTV.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://i.imgur.com/abqTjYB.png" group-title="",Smash TV (720p) [Not 24/7] +http://s3.smashmalta.com/hls/smash/smash.m3u8 +#EXTINF:-1 tvg-id="TVM.mt" tvg-country="MT" tvg-language="Maltese" tvg-logo="https://www.tvm.com.mt/en/wp-content/themes/tvm/dist/images/tvm-logo.svg" group-title="",TVM (360p) [Not 24/7] +https://iptv--iptv.repl.co/Maltese/TVM diff --git a/channels/mv.m3u b/channels/mv.m3u new file mode 100644 index 000000000..fa3868dc2 --- /dev/null +++ b/channels/mv.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="VTV.mv" tvg-country="MV" tvg-language="Dhivehi" tvg-logo="" group-title="",VTV (1080p) +http://vtvstreaming.myvnc.com:1935/vtvlive/vmedia/chunklist.m3u8 diff --git a/channels/mw.m3u b/channels/mw.m3u new file mode 100644 index 000000000..cd776ede6 --- /dev/null +++ b/channels/mw.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="MBC.mw" tvg-country="MW" tvg-language="Chichewa;English" tvg-logo="http://mbc.globemw.net/img/home_logo.png" group-title="General",MBC (614p) [Not 24/7] +http://41.216.229.205:8080/live/livestream/index.m3u8 diff --git a/channels/mx.m3u~master b/channels/mx.m3u~master new file mode 100644 index 000000000..3f7fff5ad --- /dev/null +++ b/channels/mx.m3u~master @@ -0,0 +1,203 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ADN40.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x8lwsjM.png" group-title="",ADN 40 (480p) +https://mdstrm.com/live-stream-playlist/60b578b060947317de7b57ac.m3u8 +#EXTINF:-1 tvg-id="ADN40.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x8lwsjM.png" group-title="",ADN 40 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC7k--FhnJzhPTrbtldMSoQQ/live +#EXTINF:-1 tvg-id="AlcarriaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9Xn7ZEZ.jpg" group-title="",Alcarria TV (576p) [Not 24/7] +http://217.182.77.27/live/alcarriatv-livestream.m3u8 +#EXTINF:-1 tvg-id="AMXNoticias.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/snIU1UA.jpg" group-title="News",AMX Noticias (720p) [Not 24/7] +https://5e50264bd6766.streamlock.net/mexiquense2/videomexiquense2/playlist.m3u8 +#EXTINF:-1 tvg-id="Azcorazon.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Azcorazon (480p) [Offline] +http://181.115.72.65:8099/play/a016/index.m3u8 +#EXTINF:-1 tvg-id="Azmundo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Azmundo (480p) [Offline] +http://181.115.72.65:8099/play/a025/index.m3u8 +#EXTINF:-1 tvg-id="XHJKTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/1.1.png" group-title="Local",Azteca Uno (XHJK-TDT) (480p) [Not 24/7] +http://190.122.96.187:8888/http/002 +#EXTINF:-1 tvg-id="Canal5.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/5_de_mexico-mediano.png" group-title="",Canal 5 (480p) [Offline] +http://45.174.77.243:8000/play/a0fl/index.m3u8 +#EXTINF:-1 tvg-id="Canal8CostaRica.mx" tvg-country="CR" tvg-language="Spanish" tvg-logo="https://www.telediario.cr/bundles/appcamusassets/images/logo-canal8.svg" group-title="",Canal 8 Costa Rica (720p) +https://mdstrm.com/live-stream-playlist/5a7b1e63a8da282c34d65445.m3u8 +#EXTINF:-1 tvg-id="Canal10Cancun.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://s3-us-west-1.amazonaws.com/canal10/photos/96800/original.jpg" group-title="Local",Canal 10 Cancún (720p) [Not 24/7] +http://stream2.dynalias.com:1935/live/tvlive1/playlist.m3u8 +#EXTINF:-1 tvg-id="XEWTTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/12.1.png" group-title="Local",Canal 12 (XETW-TDT) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjwXjnO3BGePtB7gSKEpoqA/live +#EXTINF:-1 tvg-id="Canal28.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lr4MZFg.png" group-title="",Canal 28 (720p) [Not 24/7] +https://api.new.livestream.com/accounts/3789491/events/8003011/live.m3u8 +#EXTINF:-1 tvg-id="Canal44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YDp8MlN.png" group-title="",Canal 44 Chihuahua (720p) [Not 24/7] +https://5e50264bd6766.streamlock.net/canal442/videocanal442/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/YDp8MlN.png" group-title="",Canal 44 Ciudad Juárez (720p) [Geo-blocked] +https://5e50264bd6766.streamlock.net/canal44/videocanal44/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalCatorce.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canalcatorcemx/picture?width=200&height=200" group-title="Local",Canal Catorce (720p) +https://d3nljkrx6mjqra.cloudfront.net/out/v1/1b9d9efd27814b3b8dc570113ae54409/index.m3u8 +#EXTINF:-1 tvg-id="CanaldelasEstrellas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.lasestrellas.tv/assets/08680ecc38e44f53/images/icn_lasestrellas_512x512.png" group-title="Local",Canal de Las Estrellas (480p) [Offline] +http://170.83.242.153:8000/play/a012 +#EXTINF:-1 tvg-id="CanalMundoPlus.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9BtSyV2.png" group-title="",Canal Mundo+ (560p) [Not 24/7] +http://vcp1.myplaytv.com:1935/mundomas/mundomas/playlist.m3u8 +#EXTINF:-1 tvg-id="Capital21.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/P1pHy3j.jpg" group-title="Local",Capital 21 (720p) [Not 24/7] +https://video.cdmx.gob.mx/livestream/stream.m3u8 +#EXTINF:-1 tvg-id="ClaroCinema.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Movies",Claro Cinema (480p) [Offline] +http://170.83.242.153:8000/play/a00d +#EXTINF:-1 tvg-id="ClaroSinLimites.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Music",Claro Sin Limites (480p) [Offline] +http://170.83.242.153:8000/play/a01k +#EXTINF:-1 tvg-id="ClaroSports.mx" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Sports",Claro Sports (480p) +http://45.179.140.242:8000/play/a0ht +#EXTINF:-1 tvg-id="ConectaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9TGQZzk.png" group-title="Music",Conecta TV (720p) +http://204.12.211.210:1935/conectatv/conectatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CortTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/g6ABkaV.png" group-title="",CorTV (800p) +https://stream.oursnetworktv.com/latin/encoder29/playlist.m3u8 +#EXTINF:-1 tvg-id="EnergíaMusical.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Energía Musical TV (360p) [Not 24/7] +https://ss2.domint.net:3224/emtv_str/energiamusical/playlist.m3u8 +#EXTINF:-1 tvg-id="Forotv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uNQVYem.png" group-title="News",ForoTV (720p) [Geo-blocked] +https://live-streams-notusa.televisa.com/channel02-b/index.m3u8 +#EXTINF:-1 tvg-id="GenesisTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hMtKE60.png" group-title="",Genesis TV (720p) [Not 24/7] +http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GoldenLatinoamerica.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://imagenes.gatotv.com/logos/canales/oscuros/golden-mediano.png" group-title="Movies",Golden Latinoamérica (720p) [Not 24/7] +https://cloud2.streaminglivehd.com:1936/8026/8026/playlist.m3u8 +#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.hipodromo.com.mx/desktop/images/LOGO_HIPODROMO_bco.png" group-title="",Hipodromo de las Americas (360p) [Not 24/7] +http://wms10.tecnoxia.com/soelvi/slv423/playlist.m3u8 +#EXTINF:-1 tvg-id="HipodromodelasAmericas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://www.hipodromo.com.mx/desktop/images/LOGO_HIPODROMO_bco.png" group-title="",Hipódromo de las Américas (480p) [Geo-blocked] +http://wms.tecnoxia.com:1935/8158/8158/playlist.m3u8 +#EXTINF:-1 tvg-id="IcrtvColima.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Dru29kQ.png" group-title="",Icrtv Colima (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal11/videocanal11/playlist.m3u8 +#EXTINF:-1 tvg-id="ImagenMulticast.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KDZ50eC.jpg" group-title="Local",Imagen Multicast (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UClqo4ZAAZ01HQdCTlovCgkA/live +#EXTINF:-1 tvg-id="ImagenRadio.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SINYy29.png" group-title="",Imagen Radio (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCB0BUmdBOrH9mYU2ebs1eWA/live +#EXTINF:-1 tvg-id="Imagentv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mRGetOJ.png" group-title="",Imagen TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x82z4if +#EXTINF:-1 tvg-id="JaliscoTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/N4meE8I.png" group-title="",Jalisco TV (720p) [Geo-blocked] +https://5fa5de1a545ae.streamlock.net/sisjalisciense/sisjalisciense/playlist.m3u8 +#EXTINF:-1 tvg-id="LaOctava.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qQjenrC.png" group-title="",La Octava TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x80mow9 +#EXTINF:-1 tvg-id="MariaVisionMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bLSCeSB.png" group-title="Religious",María Visión Mexico (360p) [Not 24/7] +https://1601580044.rsc.cdn77.org/live/_jcn_/amlst:Mariavision/master.m3u8 +#EXTINF:-1 tvg-id="MexicoTravelChannel.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/TnHaCDB.png" group-title="",México Travel Channel (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7v76vf +#EXTINF:-1 tvg-id="MexiquenseTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IjE1ORI.png" group-title="",Mexiquense TV (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/mexiquense/videomexiquense/playlist.m3u8 +#EXTINF:-1 tvg-id="Milenio.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d4/Milenio_Television.png" group-title="",Milenio Televisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCFxHplbcoJK9m70c4VyTIxg/live +#EXTINF:-1 tvg-id="MonteMaria.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OzVUVoX.jpg" group-title="Religious",Monte Maria (720p) [Timeout] +https://rbaca.livestreamingcdn.com/envivo3/smil:live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MultimediosGuadalajara.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0bznKvP.jpg" group-title="",Multimedios Guadalajara (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5c54d38ca392a5119bb0aa0d.m3u8 +#EXTINF:-1 tvg-id="MultimediosLaguna.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Zj8mOEo.png" group-title="",Multimedios Laguna (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/57bf686a61ff39e1085d43e1.m3u8 +#EXTINF:-1 tvg-id="MultimediosMonterrey.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7OHMuRl.png" group-title="",Multimedios Monterrey (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/57b4dbf5dbbfc8f16bb63ce1.m3u8 +#EXTINF:-1 tvg-id="Multipremier.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="Movies",Multipremier (480p) [Timeout] +http://201.168.205.12:8000/play/a0cp/index.m3u8 +#EXTINF:-1 tvg-id="MVMNoticias.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/AdP9s9a.png" group-title="News",MVM Noticias (Oaxaca) (400p) [Not 24/7] +https://dcunilive21-lh.akamaihd.net/i/dclive_1@59479/master.m3u8 +#EXTINF:-1 tvg-id="NoticiasCanal10.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/y4akKrD.png" group-title="",Noticias Canal 10 (360p) [Not 24/7] +https://canal10.mediaflix.istream.mx/wza_live/live/movil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceInternacional.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Internacional [Offline] +http://live.canaloncelive.tv:1935/livepkgr2/smil:internacional.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Mexico (720p) [Not 24/7] +http://live.canaloncelive.tv/livepkgr/smil:nacional.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OnceMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NAgRCyY.png" group-title="",Once Mexico (720p) [Not 24/7] +https://live2.canaloncelive.tv/livepkgr3/cepro/playlist.m3u8 +#EXTINF:-1 tvg-id="XHTJBTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/20551-80512.png" group-title="Local",Once Niñas y Niños (XHTJB-TDT) (432p) [Offline] +https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt2.m3u8 +#EXTINF:-1 tvg-id="XHTJBTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://media.localbtv.com/images/sandiegobtv/logos/20551-48379.png" group-title="Local",Once TV (XHTJB-TDT) (1080p) [Offline] +https://streams.the6tv.duckdns.org:2443/locals/SanDiego/xhtjb-tdt.m3u8 +#EXTINF:-1 tvg-id="POPTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcShLhiaq_qKJnVjmogg7QWaHm1cOyXpuo8Y2A&usqp=CAU" group-title="",POP TV (542p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico3/smil:obregon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="QuieroTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/k0XbBp8.png" group-title="",Quiero TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x8452uw +#EXTINF:-1 tvg-id="RCGTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/1qrh5SC.png" group-title="",RCG TV (1080p) +https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV2.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hzJu6QT.png" group-title="",RCG TV 2 (360p) [Not 24/7] +http://wowzacontrol.com:1936/stream23/stream23/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV2.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NIlUdoZ.jpg" group-title="",RCG TV 2 (360p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/stream23/stream23/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV3.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hzJu6QT.png" group-title="",RCG TV 3 (360p) [Not 24/7] +http://wowzacontrol.com:1936/stream56/stream56/playlist.m3u8 +#EXTINF:-1 tvg-id="RCGTV3.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/beUQopw.jpg" group-title="",RCG TV 3 (360p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/stream56/stream56/playlist.m3u8 +#EXTINF:-1 tvg-id="RTQQueretaro.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/H1AFRJh.png" group-title="",RTQ Queretaro (360p) [Not 24/7] +http://wms.tecnoxia.com:1935/rytqrolive/rytqrolive/master.m3u8 +#EXTINF:-1 tvg-id="SetPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/osgOMAu.png" group-title="Local",SET Televisión Canal 26.1 (720p) [Not 24/7] +http://189.240.210.28:1935/envivo/puecom/playlist.m3u8 +#EXTINF:-1 tvg-id="SetPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/osgOMAu.png" group-title="Local",SET Televisión Canal 26.2 (720p) [Not 24/7] +http://189.240.210.28:1935/live/setpuebla/playlist.m3u8 +#EXTINF:-1 tvg-id="sintesistv.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FJPDf2K.png" group-title="General",SintesisTV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/sintesistv +#EXTINF:-1 tvg-id="TELESISTEMACANAL9.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="http://mastelevisioncr.com/wp-content/uploads/2020/08/WhatsApp-Image-2020-08-02-at-12.42.47-300x300.jpeg" group-title="",TELE SISTEMA CANAL 9 (486p) [Geo-blocked] +http://k4.usastreams.com/ARBtv/ARBtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleformula.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/aH9uKk0.jpg" group-title="",Telefórmula (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7u0spq +#EXTINF:-1 tvg-id="TelemarCampeche.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ysowtzb.png" group-title="",Telemar Campeche (480p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/8410/8410/playlist.m3u8 +#EXTINF:-1 tvg-id="XEWHTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/bjGgLrA.jpg" group-title="",Telemax (XEWH-TDT) (720p) +http://s5.mexside.net:1935/telemax/telemax/playlist.m3u8 +#EXTINF:-1 tvg-id="Teleritmo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/teleritmo-logo.png" group-title="",Teleritmo (720p) [Geo-blocked] +http://mdstrm.com/live-stream-playlist/57b4dc126338448314449d0c.m3u8 +#EXTINF:-1 tvg-id="TelevisaAguascalientes.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iVF17fh.png" group-title="Local",Televisa Aguascalientes (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5ZtV3bu3bjSuOLoA6oCFIg/live +#EXTINF:-1 tvg-id="TelevisaChihuahua.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CAuAu0Z.png" group-title="Local",Televisa Chihuahua (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjfxDe7In59Jbfw2HmIh_Vg/live +#EXTINF:-1 tvg-id="TelevisaCiudadJuarez.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4vEFJxf.png" group-title="Local",Televisa Ciudad Juarez (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCot4t8PVKz8TT5xVM8Eb00w/live +#EXTINF:-1 tvg-id="TelevisaDelBajio" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LkeCdc5.png" group-title="Local",Televisa Del Bajio [Offline] +http://viptv-query/?streaming-ip=https://www.youtube.com/channel/UC-uYy4_jIvDoJ4wigEv1S5A/live +#EXTINF:-1 tvg-id="TelevisaDelGolfo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/35fsRTS.jpg" group-title="Local",Televisa Del Golfo [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQ08tNTPiBn44c975S81ftg/live +#EXTINF:-1 tvg-id="TelevisaEstado.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/gyZCypH.png" group-title="Local",Televisa Estado (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9DH82HVSf4katwMeUpY80w +#EXTINF:-1 tvg-id="TelevisaGuadalajara.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Vp4B0BM.jpg" group-title="Local",Televisa Guadalajara (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCRujF_YxVVFmTRWURQH-Cww/live +#EXTINF:-1 tvg-id="TelevisaGuerrero.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/lOAnjFs.png" group-title="Local",Televisa Guerrero (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnxTRk2K1iNsQkgpWXxyj4w/live +#EXTINF:-1 tvg-id="TelevisaLaguna.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/L4GDHQm.png" group-title="Local",Televisa Laguna (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC_mwCcsKDJLSWjply5s0h8w/live +#EXTINF:-1 tvg-id="TelevisaMexicali.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/NIEWc2s.jpg" group-title="Local",Televisa Mexicali (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcmuFsMIIIHO3LBqeBVfm8Q/live +#EXTINF:-1 tvg-id="TelevisaMonterrey.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ierlYM1.jpg" group-title="Local",Televisa Monterrey (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCGDJLLphnP0zQQaE3kgo5Wg/live +#EXTINF:-1 tvg-id="TelevisaMorelos.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/QiJoBVs.png" group-title="Local",Televisa Morelos [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcC9ykApQrgl4UxbKg2U4zw/live +#EXTINF:-1 tvg-id="TelevisaNewsMexico.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KVc1hqI.png" group-title="News",Televisa News Mexico (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCUsm-fannqOY02PNN67C0KA/live +#EXTINF:-1 tvg-id="TelevisaNoreste.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/rHCKwYB.jpg" group-title="Local",Televisa Noreste (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC752DYv5vPlTSMrvEjfZXcw/live +#EXTINF:-1 tvg-id="TelevisaPiedrasNegras.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/fEtvxpz.jpg" group-title="Local",Televisa Piedras Negras (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCxK8C1E8UZ5RipNXIBYEvTA/live +#EXTINF:-1 tvg-id="TelevisaPuebla.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2dqF5S8.jpg" group-title="Local",Televisa Puebla [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC-HNztluSQSffhIWJTL-LUw/live +#EXTINF:-1 tvg-id="TelevisaQueretaro.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/47c1AIS.png" group-title="Local",Televisa Queretaro [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC9QNz6VS3gGz55dzxAQtgtA/live +#EXTINF:-1 tvg-id="TelevisaSanLuisPotosí.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/oxt91dr.jpg" group-title="Local",Televisa San Luis Potosí (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCaRuyaHshLdq462E9_pLzdA/live +#EXTINF:-1 tvg-id="TelevisaSinaloa.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/nZ9HE94.png" group-title="Local",Televisa Sinaloa [Timeout] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCtm1LvYEIQ_NrfOUVJ08YhQ/live +#EXTINF:-1 tvg-id="TelevisaSonora.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3FjHKAC.jpg" group-title="Local",Televisa Sonora (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCyzWMHGS7bs0sot6KZk5EZg/live +#EXTINF:-1 tvg-id="TelevisaVeracruz.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4hPbfbg.png" group-title="Local",Televisa Veracruz (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5EnLdE7ASjYzWt7wvT-QSg/live +#EXTINF:-1 tvg-id="TelevisaZacatecas.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/vsbl0u6.png" group-title="Local",Televisa Zacatecas (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQb3i7gu9J8A4zzQU7j6C1Q/live +#EXTINF:-1 tvg-id="TlaxcalaTelevisión.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/6YKFW2G.png" group-title="",Tlaxcala Televisión (360p) [Not 24/7] +https://vid.mega00.com:5443/LiveApp/streams/928111829917388844551988/928111829917388844551988.m3u8?token=null +#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kpffqTI.png" group-title="",Transmedia Televisión Morelia (614p) [Not 24/7] +http://streamingcws20.com:1935/tmtv/videotmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TransmediaTelevisionMorelia.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/kpffqTI.png" group-title="",Transmedia Televisión Morelia (614p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/tmtv/videotmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVLobo.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/XZ8GmZW.png" group-title="",TV Lobo (720p) [Not 24/7] +http://streamingcws20.com:1935/lobodurango/videolobodurango/playlist.m3u8 +#EXTINF:-1 tvg-id="TV.Unam.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/OxxROZI.png" group-title="",TV Unam (720p) +https://5ca3e84a76d30.streamlock.net/tvunam/videotvunam/playlist.m3u8?DVR= +#EXTINF:-1 tvg-id="XHGVTDT.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/15kcNRb.png" group-title="",TVMÁS (XHGV-TDT) (360p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/rtv/videortv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVP.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico4/smil:mazatlan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPCuliacán.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/iuaYGK2.png" group-title="",TVP Culiacán (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico1/smil:gpculiacan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPLosMochis.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP Los Mochis (720p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico2/mochis.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPObregon.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mw4992J.png" group-title="",TVP Obregón (542p) [Not 24/7] +https://5ca3e84a76d30.streamlock.net/gpacifico3/obregon.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UDG44.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/UDGTV44/picture?width=320&height=320" group-title="General",UDG44 TV (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x3m1xfy +#EXTINF:-1 tvg-id="UnoTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="" group-title="",Uno TV (720p) [Not 24/7] +https://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8 diff --git a/channels/mx_samsung.m3u b/channels/mx_samsung.m3u new file mode 100644 index 000000000..7085d836c --- /dev/null +++ b/channels/mx_samsung.m3u @@ -0,0 +1,31 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArcadeCloudMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXOuzsx.png" group-title="",Arcade Cloud (Mexico) (720p) [Offline] +https://arcade-cloud-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-5-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DemandAfricaMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (Mexico) (1080p) +https://demandafrica-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) +https://euronews-euronews-spanish-2-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-11-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetworkMexico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network Mexico (720p) +https://appletree-mytime-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Mexico (720p) [Offline] +https://jukin-peopleareawesome-2-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Mexico) (1080p) +https://runtimemx-samsungmx.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/lu8bFhZ.jpg" group-title="Music",Stingray Naturescape (1080p) [Not 24/7] +https://samsung-mx.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) +https://tastemadees16intl-samsungmexico.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveMexico.us" tvg-country="MX" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Mexico (720p) [Offline] +https://the-pet-collective-international-mx.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpyMexico.us" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy Mexico (720p) [Offline] +https://jukin-weatherspy-2-mx.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/my.m3u~master b/channels/my.m3u~master new file mode 100644 index 000000000..2c8b4934f --- /dev/null +++ b/channels/my.m3u~master @@ -0,0 +1,39 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AstroAwani.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/dLzgBUj.png" group-title="",Astro Awani (720p) [Not 24/7] +https://awanitv.akamaized.net/hls/live/2017836/LiveTV1/index.m3u8 +#EXTINF:-1 tvg-id="AstroVaanavil.my" tvg-country="MY" tvg-language="Tamil" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/397_144.png" group-title="",Astro Vaanavil [Geo-blocked] +https://agsplayback01.astro.com.my/CH3/master_VAANGOSHOP5.m3u8 +#EXTINF:-1 tvg-id="BeritaRTM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/Berita-NEW-PlayerLogo.jpg" group-title="",Berita RTM (1080p) +https://rtmlive03tv.secureswiftcontent.com/rtmchannel/03-manifest.mpd +#EXTINF:-1 tvg-id="BernamaTV.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/502_300.png" group-title="",Bernama TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCcZg5r9hBqK_VPUT2I7eYVw/live +#EXTINF:-1 tvg-id="CinemaWorld.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/gHCOcuF.png" group-title="",CinemaWorld (576p) [Geo-blocked] +http://210.210.155.35/uq2663/h/h04/index.m3u8 +#EXTINF:-1 tvg-id="DramaSangat.my" tvg-country="MY" tvg-language="Malay" tvg-logo="" group-title="",Drama Sangat (720p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/Drama_Sangat.m3u8 +#EXTINF:-1 tvg-id="Hello.my" tvg-country="MY" tvg-language="English" tvg-logo="https://astrocontent.s3.amazonaws.com/Images/ChannelLogo/Pos/702_300.png" group-title="",Hello [Geo-blocked] +https://agsplayback01.astro.com.my/CH1/master_HELLOGOSHOP6.m3u8 +#EXTINF:-1 tvg-id="MaahTV.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/MRWFcox.jpg" group-title="",Maah TV (720p) [Not 24/7] +http://51.210.199.33/hls/stream.m3u8 +#EXTINF:-1 tvg-id="NTV7.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/ntv7.png" group-title="",NTV 7 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/DidikTVKPM.m3u8 +#EXTINF:-1 tvg-id="OKEY.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/TVlogotvokay.jpg" group-title="",OKEY (1080p) +https://rtmlive02tv.secureswiftcontent.com/rtmchannel/02-manifest.mpd +#EXTINF:-1 tvg-id="SukanRTM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/tvSUKANlogo_NEW.jpg" group-title="",Sukan RTM (1080p) +https://rtmlive06tv.secureswiftcontent.com/rtmchannel/06-manifest.mpd +#EXTINF:-1 tvg-id="TV1.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/Logo-TV1-May21-JPG.jpg" group-title="",TV1 (1080p) +https://rtmlive01tv.secureswiftcontent.com/rtmchannel/01-manifest.mpd +#EXTINF:-1 tvg-id="TV2.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://tv2.rtm.gov.my/assets/img/TV2.png" group-title="",TV2 (1080p) +https://rtmlive05tv.secureswiftcontent.com/rtmchannel/05-manifest.mpd +#EXTINF:-1 tvg-id="TV3.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv3.png" group-title="",TV3 (720p) [Timeout] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV3.m3u8 +#EXTINF:-1 tvg-id="TV6.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://myklikstatic.secureswiftcontent.com/image/TV6-PlayerLogo-JPG.jpg" group-title="",TV6 (1080p) +https://rtmlive07tv.secureswiftcontent.com/rtmchannel/07-manifest.mpd +#EXTINF:-1 tvg-id="TV8.my" tvg-country="MY" tvg-language="Chinese" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv8.png" group-title="",TV8 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/8TV.m3u8 +#EXTINF:-1 tvg-id="TV9.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://www.xtra.com.my/wp-content/themes/xtra_revamp/assets/img/tv9.png" group-title="",TV9 (480p) [Not 24/7] +https://raw.githubusercontent.com/samleong123/tonton_dailymotion_php/main/m3u8/TV9.m3u8 +#EXTINF:-1 tvg-id="TVIKIM.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://i.imgur.com/Z0dyJK7.jpg" group-title="",TVIKIM (720p) [Not 24/7] +http://edge.vediostream.com/abr/tvikim/playlist.m3u8 +#EXTINF:-1 tvg-id="TVS.my" tvg-country="MY" tvg-language="Malay" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/429_144.png" group-title="",TVS (576p) [Geo-blocked] +https://agsplayback01.astro.com.my/CH1/master_AGS_TVS.m3u8 diff --git a/channels/mz.m3u b/channels/mz.m3u new file mode 100644 index 000000000..52442c6e3 --- /dev/null +++ b/channels/mz.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TVManaMocambique.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/5UIy5tD.png" group-title="Religious",TV Maná Moçambique (576p) [Not 24/7] +http://c3.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_5.png" group-title="General",TVM (480p) +http://196.28.226.121:1935/live/smil:Channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVM.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_5.png" group-title="General",TVM (480p) [Not 24/7] +http://online.tvm.co.mz:1935/live/smil:Channel1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMInternacional.mz" tvg-country="MZ" tvg-language="Portuguese" tvg-logo="http://online.tvm.co.mz/site/public/images/flat_1.png" group-title="General",TVM Internacional (480p) [Not 24/7] +http://online.tvm.co.mz:1935/live/smil:Channel2.smil/playlist.m3u8 diff --git a/channels/ne.m3u b/channels/ne.m3u new file mode 100644 index 000000000..abafade9d --- /dev/null +++ b/channels/ne.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TeleSahel.ne" tvg-country="NE" tvg-language="French" tvg-logo="" group-title="",Télé Sahel (480p) [Geo-blocked] +https://iptv--iptv.repl.co/French/tele_sahel diff --git a/channels/ng.m3u~master b/channels/ng.m3u~master new file mode 100644 index 000000000..7ad5ed47a --- /dev/null +++ b/channels/ng.m3u~master @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AfricaTV1.ng" tvg-country="NG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vn9jvdV.png" group-title="",Africa TV1 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv/playlist.m3u8 +#EXTINF:-1 tvg-id="AfricaTV2.ng" tvg-country="NG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/vn9jvdV.png" group-title="",Africa TV2 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="AfricaTV3.ng" tvg-country="NG" tvg-language="English" tvg-logo="http://www.africagroup.tv/img/logo-h-tv3.png" group-title="",Africa TV3 (720p) [Not 24/7] +http://africatv.live.net.sa:1935/live/africatv3/playlist.m3u8 +#EXTINF:-1 tvg-id="Channels24.ng" tvg-country="NG" tvg-language="English" tvg-logo="" group-title="",Channels 24 [Offline] +http://93.152.174.144:4000/play/ch24ng/index.m3u8 +#EXTINF:-1 tvg-id="ComedyChannel.ng" tvg-country="NG" tvg-language="English" tvg-logo="" group-title="",Comedy Channel [Offline] +http://93.152.174.144:4000/play/comedych/index.m3u8 +#EXTINF:-1 tvg-id="EMTV.ng" tvg-country="NG" tvg-language="English;French" tvg-logo="" group-title="",EM.tv [Offline] +http://93.152.174.144:4000/play/kingsword/index.m3u8 +#EXTINF:-1 tvg-id="EmmanuelTV.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/pjoBzRS.jpg" group-title="",Emmanuel TV (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/23202872/events/7200883/live.m3u8 +#EXTINF:-1 tvg-id="LagosTelevision.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/rjLxSfx.png" group-title="",Lagos Television (360p) [Not 24/7] +http://185.105.4.193:1935/ltv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="NTAInternational.ng" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/FlqaUpt.png" group-title="",NTA International (384p) [Not 24/7] +https://api.visionip.tv/live/ASHTTP/visiontvuk-entertainment-ntai-hsslive-25f-4x3-MB/playlist.m3u8 diff --git a/channels/ni.m3u b/channels/ni.m3u new file mode 100644 index 000000000..204415cd6 --- /dev/null +++ b/channels/ni.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal6.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/a/ac/Canal_6_Nicaraguense.png" group-title="Local",Canal 6 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/canal6nicaraguaoficial +#EXTINF:-1 tvg-id="Canal9.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/1f/Canal_9_Nicaragua_nuevo.png" group-title="Local",Canal 9 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH09-HD-CVS/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal10.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/4/4f/Canal_10_Nicaragua.png" group-title="Local",Canal 10 (576p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH10-SD-ZUK/playlist.m3u8 +#EXTINF:-1 tvg-id="jbn.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://www.jbn39.com/wp-content/uploads/2019/02/logo-01-1.png" group-title="Religious",JBN (720p) [Not 24/7] +https://inliveserver.com:1936/17510/17510/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/6/6a/Nicavision1993.png/revision/latest?cb=20180426154048" group-title="Local",Nicavisión Canal 12 (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal12/videocanal12/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal8.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/e/e0/Tn8_logotipo_2021.png" group-title="Local",Telenica Canal 8 (tn8) (720p) [Not 24/7] +https://60417ddeaf0d9.streamlock.net/tn8/videotn8/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal2.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/28/Canal_2_%28Nicaragua%29_logo.png" group-title="Local",Televicentro Canal 2 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH02-HD-YON/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b4/Canal_11_Nicaragua_2010_3.png" group-title="Local",TV RED Canal 11 (480p) [Timeout] +https://cootv.cootel.com.ni/streams/d/SSLCH11-SD-GZN/playlist.m3u8 +#EXTINF:-1 tvg-id="VivaNicaraguaCanal13.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/97/VivaCanal13current.png" group-title="Local",Viva Nicaragua Canal 13 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vivanicaragua13 +#EXTINF:-1 tvg-id="vostv.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/8/86/VosTV_2010.png" group-title="Local",Vos Tv (720p) [Not 24/7] +http://ott.streann.com:8080/loadbalancer/services/public/channels/59e60c4997381ef50d15c041/playlist.m3u8 +#EXTINF:-1 tvg-id="wtv.ni" tvg-country="NI" tvg-language="Spanish" tvg-logo="https://wmediosnicaragua.com/img/LOGO-CANAL.png" group-title="Entertainment",WTV Canal 20 (720p) +https://cloudvideo.servers10.com:8081/8130/index.m3u8 diff --git a/channels/nl.m3u~master b/channels/nl.m3u~master new file mode 100644 index 000000000..736df2c4f --- /dev/null +++ b/channels/nl.m3u~master @@ -0,0 +1,217 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BazmeAsheghan.nl" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Movies",Bazme Asheghan (720p) [Offline] +https://5dc143936e9ae.streamlock.net/saeed_nl/saeed_nl/chunklist.m3u8 +#EXTINF:-1 tvg-id="BNRNieuwsradio.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wYbO6ch.jpg" group-title="",BNR Nieuwsradio (720p) [Geo-blocked] +https://bnr-cache-cdp.triple-it.nl/studio/index.m3u8 +#EXTINF:-1 tvg-id="BR6TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3155_1_5fb76467cc1520.28496650.svg" group-title="Local",BR6 TV (720p) +https://58c04fb1d143f.streamlock.net/slob/slob/playlist.m3u8 +#EXTINF:-1 tvg-id="DenHaagTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/gkzlRED.jpg" group-title="",Den Haag TV (1080p) [Not 24/7] +http://wowza5.video-streams.nl:1935/denhaag/denhaag/playlist.m3u8 +#EXTINF:-1 tvg-id="EDETV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",EDE TV (480p) [Not 24/7] +https://ms7.mx-cd.net/tv/113-474263/EdeTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FeelGoodTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Feelgood.svg" group-title="Local",Feel Good TV (720p) [Not 24/7] +https://58c04fb1d143f.streamlock.net/feel_good_radio_1/feel_good_radio_1/playlist.m3u8 +#EXTINF:-1 tvg-id="GigantFM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/7AC8etU.png" group-title="",Gigant FM (720p) [Timeout] +https://streams.uitzending.tv/gigantfm/gigantfm/playlist.m3u8 +#EXTINF:-1 tvg-id="GORTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/zAFt893.png" group-title="Music",GO-RTV (720p) +http://593aed234297b.streamlock.net:1935/gotvsjoerd/gotvsjoerd/playlist.m3u8 +#EXTINF:-1 tvg-id="Groningen1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Groningen1 (1080p) [Not 24/7] +http://59132e529e3d1.streamlock.net/Groningen1/Groningen1/playlist.m3u8 +#EXTINF:-1 tvg-id="HK13TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",HK13 TV (1080p) [Not 24/7] +http://mtxstr001.matrixdata.nl/live/hk13/playlist.m3u8 +#EXTINF:-1 tvg-id="IdeaalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Ideaal%20TV.svg" group-title="Local",Ideaal TV (480p) +https://ms2.mx-cd.net/dtv-09/236-2051366/Ideaal_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JenZ.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/jenztv.svg" group-title="Local",JenZ (1080p) +https://ms2.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JENZ.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/R1UP2cj.png" group-title="Music",JENZ (1080p) +https://ms7.mx-cd.net/tv/192-840604/Jenz_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) +https://live.jintv.org:12443/medialive/jintv.m3u8 +#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/27 +#EXTINF:-1 tvg-id="JINTV.nl" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",JIN TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/27.m3u8 +#EXTINF:-1 tvg-id="L1 TV NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/8bqkwkG.png" group-title="",L1mburg (720p) [Not 24/7] +https://d34pj260kw1xmk.cloudfront.net/live/l1/tv/index.m3u8 +#EXTINF:-1 tvg-id="LansingerlandTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Lansingerland%20TV.svg" group-title="Local",Lansingerland TV (1080p) +https://streaming-outbound-video-02.rtvlansingerland.nl/hls/livetv/index.m3u8 +#EXTINF:-1 tvg-id="LOETV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3188_1_60059b84b6b032.35066844.svg" group-title="Local",LOE TV (720p) +https://58c04fb1d143f.streamlock.net/loemedia/loemedia/playlist.m3u8 +#EXTINF:-1 tvg-id="LONTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/LON%20TV.svg" group-title="Local",LON TV (720p) [Timeout] +https://streamingserver01.omroepnuenen.nl/lon/lonweb_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MeerTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/hG2k4QL.png" group-title="",Meer TV (720p) [Not 24/7] +https://593aed234297b.streamlock.net/meervandaag/meervandaag/playlist.m3u8 +#EXTINF:-1 tvg-id="ML5TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/ML5%20TV.svg" group-title="Local",ML5 TV (480p) +https://ms2.mx-cd.net/dtv-02/204-1147034/3ML_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-1.png" group-title="",NPO 1 (1080p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-1.png" group-title="",NPO 1 (342p) [Geo-blocked] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo1/npo1.isml/.m3u8 +#EXTINF:-1 tvg-id="NPO2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-2.png" group-title="",NPO 2 (342p) +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo2/npo2.isml/.m3u8 +#EXTINF:-1 tvg-id="NPO2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-2.png" group-title="",NPO 2 (302p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-3.png" group-title="",NPO 3 (1080p) [Geo-blocked] +http://stream.tvtap.net:8081/live/nl-npo3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NPO3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://over.npo.nl/images/zenders/npo-3.png" group-title="",NPO 3 (342p) [Not 24/7] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/tvlive/npo3/npo3.isml/.m3u8 +#EXTINF:-1 tvg-id="NPONieuws.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/nponieuws.svg" group-title="News",NPO Nieuws (576p) [Offline] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/journaal24/journaal24.isml/.m3u8 +#EXTINF:-1 tvg-id="NPOPolitiek.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/npopolitiek.svg" group-title="",NPO Politiek (576p) [Offline] +http://resolver.streaming.api.nos.nl/livestream?url=/live/npo/thematv/politiek24/politiek24.isml/.m3u8 +#EXTINF:-1 tvg-id="OmroepBrabant.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KLYsKKC.png" group-title="",Omroep Brabant (1080p) +https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/tv/index.m3u8 +#EXTINF:-1 tvg-id="OmroepBrabantRadio.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KLYsKKC.png" group-title="",Omroep Brabant Radio (1080p) +https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/visualradio/index.m3u8 +#EXTINF:-1 tvg-id="OmroepCentraalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="Local",Omroep Centraal TV (480p) +https://ms7.mx-cd.net/tv/208-1258878/Omroep_Centraal_GB.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepFlevoland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/b6eHPxa.jpg" group-title="",Omroep Flevoland (720p) [Not 24/7] +https://d5ms27yy6exnf.cloudfront.net/live/omroepflevoland/tv/index.m3u8 +#EXTINF:-1 tvg-id="TV Gelderland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2LZJo7k.png" group-title="",Omroep Gelderland (720p) [Not 24/7] +https://web.omroepgelderland.nl/live/livetv.m3u8 +#EXTINF:-1 tvg-id="TV Gelderland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2LZJo7k.png" group-title="",Omroep Gelderland (1080p) [Timeout] +https://rrr.sz.xlcdn.com/?account=omroepgelderland&file=livetv&output=playlist.m3u8&protocol=http&service=wowza&type=live +#EXTINF:-1 tvg-id="OmroepHulstTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/omroephulsttv.svg" group-title="Local",Omroep Hulst TV (720p) [Not 24/7] +https://stream.iconbroadcastgroup.com:1443/OH-Playout/smil:OH-Playout.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepOnsWestBrabant.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Omroep Ons West Brabant (480p) +https://ms2.mx-cd.net/tv/177-710139/Ons_West_Brabant_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepPM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/1uxxeWX.png" group-title="",Omroep P&M (480p) [Offline] +https://ms7.mx-cd.net/tv/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepPMTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.omroeppenm.nl/views/peelmaas/images/logo.png" group-title="Local",Omroep P&M TV (1080p) +https://ms7.mx-cd.net/dtv-10/153-840564/Omroep_Peel_en_Maas_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepTilburg.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/rhazkU7.png" group-title="",Omroep Tilburg (480p) +https://ms2.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmroepTilburgTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Omroep%20Tilburg%20TV.svg" group-title="Local",Omroep Tilburg TV (480p) +https://ms7.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV West NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/2YELwRl.jpg" group-title="",Omroep West (1080p) [Not 24/7] +https://d2dslh4sd7yvc1.cloudfront.net/live/omroepwest/ngrp:tv-feed_all/playlist.m3u8 +#EXTINF:-1 tvg-id="Omroep Zeeland NL" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/3c3QUSn.png" group-title="",Omroep Zeeland (1080p) +https://d3isaxd2t6q8zm.cloudfront.net/live/omroepzeeland/tv/index.m3u8 +#EXTINF:-1 tvg-id="OmropFryslan.nl" tvg-country="NL" tvg-language="Dutch;Western Frisian" tvg-logo="https://www.omropfryslan.nl/data/omrop/favicon/favicon-96x96.png" group-title="",Omrop Fryslân (1080p) [Not 24/7] +https://d3pvma9xb2775h.cloudfront.net/live/omropfryslan/stream04/index.m3u8 +#EXTINF:-1 tvg-id="OpenRotterdam.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="http://www.juliette-events.nl/wp-content/uploads/2014/09/Logo-OPEN-Rotterdam-november-20131.png" group-title="",Open Rotterdam (480p) [Not 24/7] +http://ms2.mx-cd.net/tv/141-573555/OPEN_Rotterdam.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ORTS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",ORTS (480p) +http://ms7.mx-cd.net/tv/200-1006554/ORTS_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PodiumTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC1&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="PodiumTV2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV 2 (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC2&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="PodiumTV3.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bAhMhuz.jpg" group-title="",Podium.TV 3 (1080p) [Not 24/7] +http://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC3&output=playlist.m3u8&service=wowza&type=live +#EXTINF:-1 tvg-id="Qmusic.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/P8cVMle.jpg" group-title="Music",Qmusic (720p) +https://dpp-qmusicnl-live.akamaized.net/streamx/QmusicNL.m3u8 +#EXTINF:-1 tvg-id="Radio10.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wDB4Gd2.png" group-title="",Radio 10 (720p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/698637/VR-Radio10-1/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio350.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio 350 (360p) [Not 24/7] +https://stream.radio350.nl/hls/radio350.m3u8 +#EXTINF:-1 tvg-id="Radio538.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/sd7BX9H.png" group-title="",Radio 538 (270p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/624107/VR-Radio538-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioA1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio A1 (1080p) [Not 24/7] +http://stream.a1mediagroep.eu/hls/a1studio.m3u8 +#EXTINF:-1 tvg-id="RadioAalsmeerTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/radioaalsmeer.svg" group-title="Local",Radio Aalsmeer TV (720p) [Not 24/7] +https://radioaalsmeer.nl:4443/live/tv.m3u8 +#EXTINF:-1 tvg-id="RadioNL.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio NL (1080p) [Not 24/7] +http://558bd16067b67.streamlock.net:1935/radionl/radionl/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRN7.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio RN7 (576p) [Geo-blocked] +http://streaming.rn7.nl/rn7tv/live_576/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioVeronica.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/OTyX1vp.png" group-title="",Radio Veronica (270p) [Offline] +https://talparadiohls-i.akamaihd.net/hls/live/585615/VR-Veronica-1/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioVOSFM.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Radio VOS FM (720p) [Not 24/7] +http://593aed234297b.streamlock.net:1935/henrymeeuws/henrymeeuws/playlist.m3u8 +#EXTINF:-1 tvg-id="RegioTVNieuws.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/PIUI2zZ.png" group-title="",Regio TV Nieuws (1080p) [Not 24/7] +http://highvolume04.streampartner.nl/regiomedia/regiomedia/playlist.m3u8 +#EXTINF:-1 tvg-id="Regio8TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Regio%208%20TV.svg" group-title="Local",Regio8 TV (1080p) +https://ms7.mx-cd.net/tv/71-475821/Regio8TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Regio90TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/regio90tv.svg" group-title="Local",Regio90 TV (480p) +https://ms7.mx-cd.net/MC-Monitoring/260-2403096/90TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RN7TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/RN7_Logo.jpg/32px-RN7_Logo.jpg" group-title="",RN 7 TV (1080p) [Geo-blocked] +https://streaming.rn7.nl/rn7live_abr/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVAmstelveen.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://d3kle7qwymxpcy.cloudfront.net/images/broadcasts/51/71/17115/1/c175.png" group-title="",RTV Amstelveen (720p) [Not 24/7] +https://live.rtva.nl/live/zender.m3u8 +#EXTINF:-1 tvg-id="RTVArnhem.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xqBGPA1.png" group-title="",RTV Arnhem (480p) +https://ms2.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVConnectTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.rtvconnect.nl/templates/localgrid/omroep/rtvconnect/images/rtvconnect.png" group-title="Local",RTV Connect TV (480p) +https://ms7.mx-cd.net/tv/163-669433/RTV_Arnhem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDordrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/vryzDJk.jpg" group-title="",RTV Dordrecht (480p) +https://ms2.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDordrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/vryzDJk.jpg" group-title="",RTV Dordrecht (480p) +https://ms7.mx-cd.net/dtv-02/107-475823/RTV_Dordrecht.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVDrenthe.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/DsD7Tsu.png" group-title="",RTV Drenthe (1080p) +https://cdn.rtvdrenthe.nl/live/rtvdrenthe/tv/index.m3u8 +#EXTINF:-1 tvg-id="RTVGO.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV GO! (1080p) [Not 24/7] +http://59132e529e3d1.streamlock.net:1935/Groningen1/Groningen1/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVMaastricht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/5m3d7cP.jpg" group-title="",RTV Maastricht (720p) [Not 24/7] +http://stream.rtvmaastricht.nl:8081/rtvm_live/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNOF1.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV NOF 1 (720p) +http://593aed234297b.streamlock.net:1935/rtvnof/rtvnof/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNOF2.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV NOF 2 (720p) [Not 24/7] +http://593aed234297b.streamlock.net:1935/rtvnof2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNoord.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/yZEsfsv.png" group-title="",RTV Noord (1080p) [Not 24/7] +https://media.rtvnoord.nl/live/rtvnoord/tv/index.m3u8 +#EXTINF:-1 tvg-id="RTVNoordExtra.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/yZEsfsv.png" group-title="",RTV Noord Extra (1080p) [Not 24/7] +https://media.rtvnoord.nl/live/rtvnoord/extra/index.m3u8 +#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xC9hOVK.png" group-title="",RTV Noordoost Friesland (720p) +https://593aed234297b.streamlock.net/rtvnof/rtvnof/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVNoordoostFriesland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/xC9hOVK.png" group-title="",RTV Noordoost Friesland (720p) [Not 24/7] +http://cdn15.streampartner.nl:1935/rtvnof2/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVOost.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",RTV Oost (720p) [Offline] +https://mediacdn.rtvoost.nl/live/rtvoost/tv-oost/index.m3u8 +#EXTINF:-1 tvg-id="RTVPurmerend.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_10018_1_6156d066d31357.29556375.svg" group-title="Local",RTV Purmerend (720p) +https://ms2.mx-cd.net/dtv-10/268-2641474/RTV_Purmerend_TV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVRijnmond.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/TYsLlr0.png" group-title="",RTV Rijnmond (1080p) +https://d3r4bk4fg0k2xi.cloudfront.net/rijnmondTv/index.m3u8 +#EXTINF:-1 tvg-id="RTVRijnstreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/RTV%20Rijnstreek%20TV.svg" group-title="Local",RTV Rijnstreek TV (720p) [Not 24/7] +https://vdo.verrips.email:3789/live/televisielive.m3u8 +#EXTINF:-1 tvg-id="RTVSlingeland.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/slingelandtv.svg" group-title="",RTV Slingeland (1080p) [Not 24/7] +https://ms7.mx-cd.net/dtv-10/105-475831/RTV_Slingeland.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVUtrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/5cVkPR3.png" group-title="",RTV Utrecht (1080p) +https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/rtvutrecht/index.m3u8 +#EXTINF:-1 tvg-id="RTVWesterwolde.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/86oiZRV.jpg" group-title="",RTV Westerwolde (432p) [Offline] +http://59132e529e3d1.streamlock.net:1935/westerwolde/westerwolde/playlist.m3u8 +#EXTINF:-1 tvg-id="RTVWesterwolde.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/86oiZRV.jpg" group-title="",RTV Westerwolde (432p) [Offline] +https://59132e529e3d1.streamlock.net/westerwolde/westerwolde/playlist.m3u8 +#EXTINF:-1 tvg-id="rtvutrecht.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",rtvutrecht (1080p) +http://media.rtvutrecht.nl/live/rtvutrecht/rtvutrecht/index.m3u8 +#EXTINF:-1 tvg-id="Salto4.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="",Salto 4 (1080p) [Offline] +https://salto-streams.nl/hls/sotv2_high.m3u8 +#EXTINF:-1 tvg-id="SaltoADE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="",Salto ADE (1080p) +https://live.salto.nl/hls/at5_high.m3u8 +#EXTINF:-1 tvg-id="SaltoBrasaMusic.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.vimeocdn.com/portrait/31947989_640x640" group-title="Music",Salto Brasa Music (1080p) +https://salto-streams.nl/hls/sotv1_high.m3u8 +#EXTINF:-1 tvg-id="Samen1TV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/RTV Apeldoorn TV.svg" group-title="Local",Samen1 TV (720p) +https://server-67.stream-server.nl:1936/Samen1TV/Samen1TV/playlist.m3u8 +#EXTINF:-1 tvg-id="SilenceTV.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/826gz7r.jpg" group-title="",Silence TV (720p) [Not 24/7] +http://93.190.140.42:8081/SilenceTV/live/playlist.m3u8 +#EXTINF:-1 tvg-id="SirisTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_10010_1_6034f690b98141.63824269.svg" group-title="Local",Siris TV (720p) [Not 24/7] +https://videostream.siris.nl/hls/playoutweb/index.m3u8 +#EXTINF:-1 tvg-id="StreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/streektvdewolden.svg" group-title="",Streek TV (720p) [Not 24/7] +http://cdn22.streampartner.nl/streektv/streektv/playlist.m3u8 +#EXTINF:-1 tvg-id="StreekTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/streektvdewolden.svg" group-title="",Streek TV (720p) [Not 24/7] +https://58e4d59f4ba2c.streamlock.net/streektv/streektv/playlist.m3u8 +#EXTINF:-1 tvg-id="TommyTeleshopping.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/cNgwmz3.jpg" group-title="Shop",Tommy Teleshopping (480p) +http://ms7.mx-cd.net/tv/71-1356094/Tommy_Teleshopping.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEllef.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/4kURvuH.png" group-title="",TV Ellef (540p) [Not 24/7] +https://58e4d59f4ba2c.streamlock.net/tvellef/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVValkenburg.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/bpqkkX7.jpg" group-title="",TV Valkenburg (720p) [Not 24/7] +https://livestream.tvvalkenburg.tv/hls/tv-valkenburg/tv-valkenburg.m3u8 +#EXTINF:-1 tvg-id="UStad.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://www.ustad.nl/inc/css/images/logo-rtvutrecht.png" group-title="",UStad (1080p) +https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/ustad/index.m3u8 +#EXTINF:-1 tvg-id="VechtdalTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/vechtdalleefttv.svg" group-title="",Vechtdal TV (480p) +https://ms2.mx-cd.net/tv/81-334271/VechtdalTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VisitXTV.nl" tvg-country="INT" tvg-language="Dutch" tvg-logo="https://i.imgur.com/RJ9wbNF.jpg" group-title="XXX",Visit-X TV (720p) [Not 24/7] +https://stream.visit-x.tv/vxtv/ngrp:live_all/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) +https://ms2.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) +https://ms7.mx-cd.net/dtv-11/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WOS.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/UtOWySG.jpg" group-title="",WOS TV (1080p) +https://ms7.mx-cd.net/tv/99-660295/WOS.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="XITE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/xite.png" group-title="",XITE (720p) [Not 24/7] +https://ms2.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="XITEBE.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/wvo2EYr.jpg" group-title="Music",XITE (BE) (720p) [Not 24/7] +https://ms7.mx-cd.net/tv/226-1855782/XITE_NL.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ZO34.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://i.imgur.com/KrEBHLw.jpg" group-title="",ZO!34 (720p) [Timeout] +https://streams.uitzending.tv/zo34/zo34/playlist.m3u8 +#EXTINF:-1 tvg-id="ZuidWestTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="hhttps://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/channel/delta/Zuidwesttv.svg" group-title="Local",ZuidWest TV (1080p) +https://live.zuidwesttv.nl/live/zwtv.m3u8 diff --git a/channels/nl_samsung.m3u b/channels/nl_samsung.m3u new file mode 100644 index 000000000..110a305fc --- /dev/null +++ b/channels/nl_samsung.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) [Not 24/7] +http://fueltv-fueltv-14-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeNetherlands.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Netherlands (720p) [Not 24/7] +https://jukin-peopleareawesome-2-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionNetherland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Netherland) (720p) [Offline] +https://rakuten-action-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Netherlands) (720p) [Offline] +https://rakuten-comedy-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesNetherland.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Netherland) (720p) [Offline] +https://rakuten-documentaries-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Netherlands) (720p) [Offline] +https://rakuten-drama-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Netherlands) (720p) [Offline] +https://rakuten-family-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightNetherlands.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Netherlands) (720p) [Offline] +https://rakuten-spotlight-8-nl.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKarokeNetherland.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karoke (Netherland) (1080p) +https://stingray-karaoke-4-nl.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/no.m3u b/channels/no.m3u new file mode 100644 index 000000000..adcc93d1f --- /dev/null +++ b/channels/no.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CanalMotor.no" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/BHm0wem.png" group-title="Sports",Canal Motor (720p) +http://digicom.hls.iptvdc.com/canalmotor/index.m3u8 +#EXTINF:-1 tvg-id="CanalMotor.no" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/BHm0wem.png" group-title="Sports",Canal Motor (720p) +https://digicom.hls.iptvdc.com/motorstv/index.m3u8 +#EXTINF:-1 tvg-id="FatstoneTV.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.vimeocdn.com/video/438638085_780x439.jpg" group-title="",Fatstone TV [Offline] +http://bgo1.cdn.s3m.no/fs/live/ngrp:live_all/chunklist_b5196000.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Frikanalen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/6pHnO2r.png" group-title="",Frikanalen (720p) +https://frikanalen.no/stream/index.m3u8 +#EXTINF:-1 tvg-id="Kanal10Asia.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="" group-title="",Kanal 10 Asia (540p) +http://cdn-kanal10.crossnet.net:1935/kanal10/kanal10asia/playlist.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) +http://194.132.85.39/19333-live0/_definst_/push-stortinget_1/chunklist_w1136072204.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) [Not 24/7] +https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetHS1.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS1 (576p) [Not 24/7] +https://25480cc657998e13839139df392b46eb-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal1_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetHS2.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS2 (576p) +https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetHS2.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget HS2 (576p) [Not 24/7] +https://bbe19a83414b545d91f32f94316aab71-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal2_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetN202.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget N-202 (576p) [Not 24/7] +https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="StortingetN202.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget N-202 (576p) [Not 24/7] +https://98d91ca32ff6fbca255f6ec9f29fc4d0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-sal3_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetNettTV.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/3U1p695.png" group-title="",Stortinget Nett-TV (576p) +http://flash0.19333-live0.dna.qbrick.com:1935/19333-live0/push-stortinget_1/playlist.m3u8 +#EXTINF:-1 tvg-id="StortingetStortingssalen.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget Stortingssalen (576p) +https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="StortingetStortingssalen.no" tvg-country="NO" tvg-language="Norwegian" tvg-logo="https://i.imgur.com/tg1YbfY.png" group-title="",Stortinget Stortingssalen (576p) [Not 24/7] +https://bf75c7afaa4f8698042ab38336a843a0-httpcache0-19333-cachelive0.dna.ip-only.net/19333-cachelive0/smil:push-stortinget_1/chunklist_b1264000_DVR_t64MTI2NCBrYnBz.m3u8 +#EXTINF:-1 tvg-id="TV2Sporten.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/SCeh3KR.png" group-title="Sports",TV 2 Sporten (720p) +https://ws31-hls-live.akamaized.net/out/u/1416253.m3u8 +#EXTINF:-1 tvg-id="TVHaugaland.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/lHDz1bm.png" group-title="",TV Haugaland (720p) [Not 24/7] +https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.ip-only.net/90216-cachelive0/smil:APPLETV/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHaugaland.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/lHDz1bm.png" group-title="",TV Haugaland (720p) [Not 24/7] +https://900c544ac47302fffd7d3f12b4c745fd-httpcache0-90216-cachelive0.dna.qbrick.com/90216-cachelive0/smil:APPLETV/playlist.m3u8 +#EXTINF:-1 tvg-id="TV2 Nyhetsstrommen.no" tvg-country="NO" tvg-language="Norwegian Bokmål" tvg-logo="https://i.imgur.com/horCLMX.jpg" group-title="",TV2 Nyhetsstrømmen (720p) +https://ws15-hls-live.akamaized.net/out/u/1153546.m3u8 diff --git a/channels/no_samsung.m3u b/channels/no_samsung.m3u new file mode 100644 index 000000000..2c5cf54ff --- /dev/null +++ b/channels/no_samsung.m3u @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Africanews.cg" tvg-country="CG" tvg-language="English" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/5e7b5a7adf3e8.png" group-title="News",AfricaNews English (720p) +https://rakuten-africanews-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DuckTV.sk" tvg-country="SK" tvg-language="English" tvg-logo="https://i.imgur.com/Qw8x6Os.png" group-title="Kids",Duck TV (720p) +https://mmm-ducktv-4-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavtVNorway.us" tvg-country="NO" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV Norway (720p) [Offline] +https://mavtv-mavtvglobal-1-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Norway) (720p) [Offline] +https://rakuten-action-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedyNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Norway) (720p) [Offline] +https://rakuten-comedy-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Norway) (720p) [Offline] +https://rakuten-documentaries-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Norway) (720p) [Offline] +https://rakuten-drama-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilyNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Norway) (720p) [Offline] +https://rakuten-family-11-no.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightNorway.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Norway) (720p) [Offline] +https://rakuten-spotlight-11-no.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/np.m3u b/channels/np.m3u new file mode 100644 index 000000000..98c8d991c --- /dev/null +++ b/channels/np.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AvenuesKhabar.np" tvg-country="NP" tvg-language="Nepali" tvg-logo="https://i.imgur.com/GDetViR.jpg" group-title="News",Avenues Khabar (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCMDzPE_7fcZSRJgpwIVor_A/live +#EXTINF:-1 tvg-id="KantipurTV.np" tvg-country="NP" tvg-language="Nepali" tvg-logo="http://jcss-cdn.ekantipur.com//kantipur-tv/images/ktv-hd.png" group-title="Entertainment",Kantipur TV (1080p) +https://ktvhdnpicc.ekantipur.com/ktv_desktop_02347834/hd/kantipurtv/hd_1080/chunks.m3u8 diff --git a/channels/nz.m3u~master b/channels/nz.m3u~master new file mode 100644 index 000000000..efd5f68b5 --- /dev/null +++ b/channels/nz.m3u~master @@ -0,0 +1,31 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BreezeTV.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/3dpH9XF.jpg" group-title="Music",Breeze TV (720p) +https://livestreamdirect-breezetv.mediaworks.nz/breezetv.m3u8 +#EXTINF:-1 tvg-id="Firstlight.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/2TKL6BX.png" group-title="",Firstlight (576p) +https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JuiceTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.mjh.nz/.images/tv.juice.png" group-title="",Juice TV (1080p) [Not 24/7] +https://juicex.nz/hls/mystream.m3u8 +#EXTINF:-1 tvg-id="KordiaTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/7FCjq7C.png" group-title="",Kordia TV (1080p) +https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8 +#EXTINF:-1 tvg-id="MaoriTV.nz" tvg-country="NZ" tvg-language="Maori" tvg-logo="https://freeviewnz.tv/nonumbracoimages/ChannelsOpg/freeview-channel-logos-38.png" group-title="",Maori TV (1080p) +https://bcsecurelivehls-i.akamaihd.net/hls/live/720612/1614493167001_1/master.m3u8 +#EXTINF:-1 tvg-id="parliament.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/BsHt9f2.png" group-title="Legislative",Parliament TV (1080p) +https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8 +#EXTINF:-1 tvg-id="TeReo.nz" tvg-country="NZ" tvg-language="Maori" tvg-logo="http://www.freeviewnz.tv/nonumbracoimages/ChannelsOpg/te-reo.png" group-title="",Te Reo (1080p) [Offline] +https://bcsecurelivehls-i.akamaihd.net/hls/live/720613/1614493167001_2/master.m3u8 +#EXTINF:-1 tvg-id="TheEdge.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/ZHJVvOj.png" group-title="Music",The Edge (720p) +https://livestreamdirect-edgetv.mediaworks.nz/edgetv.m3u8 +#EXTINF:-1 tvg-id="Three.nz" tvg-country="NZ" tvg-language="English" tvg-logo="" group-title="General",Three [Geo-blocked] +https://livestreamdirect-three.mediaworks.nz/three.m3u8 +#EXTINF:-1 tvg-id="TVNZ1.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/58puzcK.png" group-title="General",TVNZ 1 [Geo-blocked] +https://d2ce82tpc3p734.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_1/master.m3u8 +#EXTINF:-1 tvg-id="TVNZ2.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/7W7J7CN.png" group-title="General",TVNZ 2 [Geo-blocked] +https://duoak7vltfob0.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_2/master.m3u8 +#EXTINF:-1 tvg-id="TVNZDuke.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/EVvp5nh.png" group-title="General",TVNZ Duke [Geo-blocked] +https://dayqb844napyo.cloudfront.net/v1/master/b1f4432f8f95be9e629d97baabfed15b8cacd1f8/TVNZ_Duke/master.m3u8 +#EXTINF:-1 tvg-id="tv.45" tvg-country="NZ" tvg-language="English" tvg-logo="http://iptv.matthuisman.nz/nz/images/freeviewnz.45.png" group-title="Shop",TVSN Shopping (360p) +https://tvsn-i.akamaihd.net/hls/live/261837/tvsn_nz/tvsn_nz_750.m3u8 +#EXTINF:-1 tvg-id="WairarapaTV.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://www.freeviewnz.tv/nonumbracoimages/ChannelsOpg/LogoforFreeviewWebsite.png" group-title="",Wairarapa TV (1080p) [Not 24/7] +https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8 +#EXTINF:-1 tvg-id="WairarapaTV.nz" tvg-country="NZ;AU" tvg-language="English" tvg-logo="https://i.imgur.com/qwGFZKE.png" group-title="",Wairarapa TV (360p) [Not 24/7] +http://stream.wairarapatv.co.nz/Cellular_High/playlist.m3u8 diff --git a/channels/om.m3u~master b/channels/om.m3u~master new file mode 100644 index 000000000..bbe8943a4 --- /dev/null +++ b/channels/om.m3u~master @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlIstiqamaTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H7D7dmK.png" group-title="Religious",Al Istiqama TV (576p) +https://jmc-live.ercdn.net/alistiqama/alistiqama.m3u8 +#EXTINF:-1 tvg-id="OmanAlthakafia.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="" group-title="",Oman Althakafia (1080p) +https://partwo.cdn.mangomolo.com/omcultural/smil:omcultural.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanLive.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="" group-title="",Oman Live (1080p) +https://partwo.cdn.mangomolo.com/omlive/smil:omlive.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanSportsTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="http://part.gov.om/part/images/oman_sport.png" group-title="Sports",Oman Sports TV (1080p) [Not 24/7] +https://partne.cdn.mangomolo.com/omsport/smil:omsport.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C7kfubs.png" group-title="General",Oman TV (1080p) +https://partne.cdn.mangomolo.com/omantv/smil:omantv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OmanTV.om" tvg-country="OM" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C7kfubs.png" group-title="General",Oman TV (272p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/oman_tv/hls1/oman_tv.m3u8 diff --git a/channels/pa.m3u~master b/channels/pa.m3u~master new file mode 100644 index 000000000..82ff8fb3a --- /dev/null +++ b/channels/pa.m3u~master @@ -0,0 +1,27 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ASondeSalsa.pa" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/asondesalsa/picture?width=320&height=320" group-title="Music",A Son de Salsa (720p) [Not 24/7] +https://stmv1.panelzcast.com/asondesalsa/asondesalsa/playlist.m3u8 +#EXTINF:-1 tvg-id="BTVPanama.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://static-cdn.jtvnw.net/jtv_user_pictures/dfa1f6bf-3760-4b79-8f4e-2fcf956444c6-profile_image-300x300.png" group-title="",BTV Panamá (480p) [Offline] +https://stream.oursnetworktv.com/latin/btvp/playlist.m3u8 +#EXTINF:-1 tvg-id="CabinaRPCRadio.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2017_01/RPC_(2010).png.4630b569f7c275038611229447482050.png" group-title="",Cabina RPC Radio (480p) +https://mdstrm.com/live-stream-playlist/5d976689ab55a60f94ec98e8.m3u8 +#EXTINF:-1 tvg-id="CabinaTelemetroRadio.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://platform-static.cdn.mdstrm.com/player/logo/s-live-5d97ca5673de440761ff194e.png" group-title="",Cabina Telemetro Radio (480p) +https://mdstrm.com/live-stream-playlist/5d97ca5673de440761ff194e.m3u8 +#EXTINF:-1 tvg-id="DreikoTv.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/dreikoartsstudio/picture?width=320&height=320" group-title="Animation",DreikoTv (480p) [Not 24/7] +https://stmv3.voxtvhd.com.br/reikotv/reikotv/playlist.m3u8 +#EXTINF:-1 tvg-id="HosannaVision.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tUHkolc.png" group-title="Religious",Hosanna Vision (480p) [Not 24/7] +https://1206618505.rsc.cdn77.org/LS-ATL-59020-1/playlist.m3u8 +#EXTINF:-1 tvg-id="NexTV.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="" group-title="",Nex TV (Canal 21) [Timeout] +http://209.91.213.10:8088/play/a01o +#EXTINF:-1 tvg-id="OyeTV.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IqLT2CC.png" group-title="Music",Oye TV (480p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88df173853e7072f3f953f.m3u8 +#EXTINF:-1 tvg-id="RPC.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2017_01/RPC_(2010).png.4630b569f7c275038611229447482050.png" group-title="",RPC (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88d659120a717cf93ce620.m3u8 +#EXTINF:-1 tvg-id="Teleclásicos.pa" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/109037038122033/picture?width=320&height=320" group-title="",Teleclásicos (464p) [Not 24/7] +https://tvdatta.com:3484/stream/play.m3u8 +#EXTINF:-1 tvg-id="Telemetro.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/e/e0/Telemetro_2010_logo.png/revision/latest?cb=20181013042937&path-prefix=es" group-title="",Telemetro (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5d88dd2229b0890723df2165.m3u8 +#EXTINF:-1 tvg-id="Telemetro.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://vignette.wikia.nocookie.net/logopedia/images/e/e0/Telemetro_2010_logo.png/revision/latest?cb=20181013042937&path-prefix=es" group-title="",Telemetro (480p) [Timeout] +http://209.91.213.10:8088/play/a00h +#EXTINF:-1 tvg-id="TVN.pa" tvg-country="PA" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-e1scDLqFQd8/Vx4ithci-rI/AAAAAAAACYk/Qds1kNnpYT8WnBgoJnx7jnS197He2QLngCLcB/s1600/logo-tvn.png" group-title="",TVN (720p) +https://bcovlive-a.akamaihd.net/2f670e324b9b46bba7582e919ed90924/us-east-1/6058004209001/playlist.m3u8 diff --git a/channels/pe.m3u~master b/channels/pe.m3u~master new file mode 100644 index 000000000..ef9bd852c --- /dev/null +++ b/channels/pe.m3u~master @@ -0,0 +1,423 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AndesTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CsW4Op8.png" group-title="Local",Andes Televisión (Sicusani) (720p) [Not 24/7] +https://stmv1.voxhdnet.com/tvsicuani/tvsicuani/playlist.m3u8 +#EXTINF:-1 tvg-id="AntaresTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/antaresTvRadioOficial/picture?width=320&height=320" group-title="Local",Antares Televisión (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvantares/liveantarestv/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiritv.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Asiritv/picture?width=320&height=320" group-title="Local",AsiriTV (Lima) (720p) [Not 24/7] +https://video2.lhdserver.es/asiritv/live.m3u8 +#EXTINF:-1 tvg-id="ATMTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ATMTelevisionApurimac/picture?width=320&height=320" group-title="Local",ATM Televisión (Apurimac) (720p) [Not 24/7] +https://v4.tustreaming.cl/atmtv/index.m3u8 +#EXTINF:-1 tvg-id="ATV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ATV.pe/picture?width=320&height=320" group-title="General",ATV (480p) [Not 24/7] +https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ATVPlus.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/atvmasnoticias/picture?width=320&height=320" group-title="News",ATV+ Noticias (480p) [Not 24/7] +https://d2tr4gdfol9ja.cloudfront.net/atv/smil:atv-mas.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AuténticaTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Autenticatelevision/picture?width=320&height=320" group-title="Local",Auténtica Televisión (720p) [Not 24/7] +https://live.obslivestream.com/autenticatvmux/index.m3u8 +#EXTINF:-1 tvg-id="BellaAbanquinaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/2135035553436599/picture?width=320&height=320" group-title="Local",Bella Abanquina TV (Apurimac) (720p) [Not 24/7] +https://v4.tustreaming.cl/bellatv/index.m3u8 +#EXTINF:-1 tvg-id="BellaAsuncionTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Bella Asuncion TV (544p) [Not 24/7] +https://tvdatta.com:3602/stream/play.m3u8 +#EXTINF:-1 tvg-id="BestCableMasCumbia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableMusicCanal97/picture?width=320&height=320" group-title="Music",Best Cable Más Cumbia (720p) [Not 24/7] +https://ca.inka.net.pe/mascumbiatvonline/mascumbiatvonline/index.m3u8 +#EXTINF:-1 tvg-id="BestCableMusic.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableMusicCanal97/picture?width=320&height=320" group-title="Music",Best Cable Music (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablemusic/bestcablemusic/index.m3u8 +#EXTINF:-1 tvg-id="BestCablePeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableTvCanal3/picture?width=320&height=320" group-title="General",Best Cable Perú (720p) [Not 24/7] +https://ca.inka.net.pe/bestcable/bestcable/index.m3u8 +#EXTINF:-1 tvg-id="BestCableSportsPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BestCableSportsCanal6/picture?width=320&height=320" group-title="Sports",Best Cable Sports Perú (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablesports/bestcablesports/index.m3u8 +#EXTINF:-1 tvg-id="BethelTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/hn_bethel_m.png" group-title="Religious",Bethel TV (720p) [Not 24/7] +https://ott.streann.com/loadbalancer/services/public/channels/5e0689c82cdcb4fdbcd79151/playlist.m3u8 +#EXTINF:-1 tvg-id="BeXtremeTVLima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/d9n0sOZ.png" group-title="Local",BeXtreme TV (Lima) (1080p) [Geo-blocked] +https://video1.getstreamhosting.com:1936/8106/8106/playlist.m3u8 +#EXTINF:-1 tvg-id="BHTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7hP4nps.png" group-title="General",BHTV (720p) [Not 24/7] +http://cdn1.ujjina.com:1935/iptvbhtv/livebhtvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBellezaAndina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/bellezandina/picture?width=320&height=320" group-title="Music",Cable Netword Belleza Andina TV (720p) [Not 24/7] +https://ca.inka.net.pe/bellezaandina/index.m3u8 +#EXTINF:-1 tvg-id="CNCumbia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limanortenoticias3/picture?width=320&height=320" group-title="Music",Cable Netword Cumbia TV (720p) [Not 24/7] +https://ca.inka.net.pe/cumbiatv/index.m3u8 +#EXTINF:-1 tvg-id="CNTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limanortenoticias3/picture?width=320&height=320" group-title="Local",Cable Netword TV (480p) [Not 24/7] +https://ca.inka.net.pe/cntv/index.m3u8 +#EXTINF:-1 tvg-id="CadenaTVHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/https://www.facebook.com/CadenaTVHuancayo//picture?width=320&height=320" group-title="Local",Cadena TV Huancayo (720p) [Not 24/7] +https://tvdatta.com:3262/live/cadenatvlive.m3u8 +#EXTINF:-1 tvg-id="CajamarcaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CajamarcaTV/picture?width=320&height=320" group-title="Local",Cajamarca TV (480p) [Not 24/7] +https://ca.inka.net.pe/cajamarcatv/cajamarcatv/index.m3u8 +#EXTINF:-1 tvg-id="Canal8Catacaos.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canal8catacaos/picture?width=320&height=320" group-title="Local",Canal 8 (Catacaos) (360p) [Not 24/7] +https://tvdatta.com:3838/live/canalcatacaoslive.m3u8 +#EXTINF:-1 tvg-id="Canal43Sudamericana.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Canal43Sudamericana/picture?width=320&height=320" group-title="Local",Canal 43 Sudamericana (Ica) (360p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8014/index.m3u8 +#EXTINF:-1 tvg-id="CanalEvelyn.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cableEvelynsac/picture?width=320&height=320" group-title="Local",Canal E (Evelyn) (Altomayo) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/8006/index.m3u8 +#EXTINF:-1 tvg-id="CanalEvelyn.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cableEvelynsac/picture?width=320&height=320" group-title="Local",Canal E (Evelyn) (Nororiente) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/8004/index.m3u8 +#EXTINF:-1 tvg-id="CANALIPE.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Identidad_Peruana_ipe_2020.png/1200px-Identidad_Peruana_ipe_2020.png" group-title="Family",CANAL IPE (1080p) [Not 24/7] +https://cdnh8.iblups.com/hls/OVJNKV4pSr.m3u8 +#EXTINF:-1 tvg-id="CanalB.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://canalb.pe/assets/uploads/images/digital-tv-mundo-vivo.svg" group-title="News",CanalB (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/alfonsobaella/live +#EXTINF:-1 tvg-id="CaribeTelevisionOtuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CaribeTvcanal25/picture?width=320&height=320" group-title="Local",Caribe Televisión (Otuzco) (1080p) [Not 24/7] +http://191.97.56.183:1935/caribetv/caribetv/playlist.m3u8 +#EXTINF:-1 tvg-id="CentralTVChosica.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CentralTVperuLima/picture?width=320&height=320" group-title="Local",Central TV (Chosica) (614p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvcentraltv/livecentraltvtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ChicosIPe.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/FI1Hd4E.png" group-title="Family",Chicos IPe (1080p) [Not 24/7] +http://cdnh4.iblups.com/hls/OVJNKV4pSr.m3u8 +#EXTINF:-1 tvg-id="ClipsTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/clipstv/picture?width=320&height=320" group-title="Local",ClipsTV (Ica) (360p) [Not 24/7] +https://7.innovatestream.pe:19360/clipstv/clipstv.m3u8 +#EXTINF:-1 tvg-id="CNCCajamarca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cncsenaldigital/picture?width=320&height=320" group-title="Local",CNC (Cajamarca) (720p) [Offline] +https://7.innovatestream.pe:19360/cnctv/cnctv.m3u8 +#EXTINF:-1 tvg-id="CNCDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/cnc.digital.pe/picture?width=320&height=320" group-title="Local",CNC Digital (Iquitos) (480p) [Not 24/7] +https://cloudvideo.servers10.com:8081/8150/index.m3u8 +#EXTINF:-1 tvg-id="Conecta2TV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioConecta2/picture?width=320&height=320" group-title="Local",Conecta2TV (Lima) (720p) [Not 24/7] +https://servilive.com:3528/live/conect2tvlive.m3u8 +#EXTINF:-1 tvg-id="CongresoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CongresoPeru/picture?width=320&height=320" group-title="Legislative",Congreso TV (Perú) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/congresodelarepublicadelperútvenvivo/live +#EXTINF:-1 tvg-id="ContactoDeportivo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/contactodeportivomoyobamba/picture?width=320&height=320" group-title="Sports",Contacto Deportivo (720p) [Not 24/7] +https://live.obslivestream.com/cdeportivomux/index.m3u8 +#EXTINF:-1 tvg-id="ControversiaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ControversiaMoyobamba/picture?width=320&height=320" group-title="Local",Controversia TV (Moyobamba) (720p) [Not 24/7] +https://live.obslivestream.com/controversiamux/index.m3u8 +#EXTINF:-1 tvg-id="CRTelevisionMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/crtvmoyobamba/picture?width=320&height=320" group-title="Local",CR Television (Moyobamba) (720p) [Not 24/7] +https://live.obslivestream.com/crtvmux/index.m3u8 +#EXTINF:-1 tvg-id="CreoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/CanalCreoTv/picture?width=320&height=320" group-title="Local",CreoTV (Cajamarca) (720p) [Not 24/7] +https://srv1.mediastreamperu.com:8081/creotv/index.m3u8 +#EXTINF:-1 tvg-id="CTC.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Local",CTC (720p) +http://190.108.83.142:8000/play/a007/index.m3u8 +#EXTINF:-1 tvg-id="Cultura24tv.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/2mSwwpH.png" group-title="Culture",Cultura 24 (360p) [Not 24/7] +https://vs8.live.opencaster.com/cultura24/smil:cultura24/playlist.m3u8 +#EXTINF:-1 tvg-id="CVMTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/174810627418446/picture?width=320&height=320" group-title="Music",CVM TV Digital (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/cvmtv/cvmtv/playlist.m3u8 +#EXTINF:-1 tvg-id="DeltaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/DELTATVPACAYZAPA/picture?width=320&height=320" group-title="Local",DeltaTV (Pacayzapa | San Martín) (480p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8038/index.m3u8 +#EXTINF:-1 tvg-id="DiarioHechiceraTumbes.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/diariohechicera/picture?width=320&height=320" group-title="Local",Diario Hechicera (Tumbes) (720p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/8108/8108/playlist.m3u8 +#EXTINF:-1 tvg-id="DMJ.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1169958533100680/picture?width=320&height=320" group-title="Local",DMJ (Cuzco) (720p) [Not 24/7] +https://v4.tustreaming.cl/s1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/DTVtelevisiondigital/picture?width=320&height=320" group-title="Local",DTV (Junin) [Not 24/7] +https://ed5ov.live.opencaster.com/ArEetgEqqozh/index.m3u8 +#EXTINF:-1 tvg-id="ExitosaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Exitosanoticias/picture?width=320&height=320" group-title="News",Exitosa TV (720p) +https://cu.onliv3.com/livevd1/user2.m3u8 +#EXTINF:-1 tvg-id="Expresion.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Expresión (Tacna) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/radioilo.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/FUEGOTVLIMA/picture?width=320&height=320" group-title="Local",FuegoTV (Lima) (720p) [Not 24/7] +http://190.108.83.142:8000/play/a003/index.m3u8 +#EXTINF:-1 tvg-id="FuegoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/FUEGOTVLIMA/picture?width=320&height=320" group-title="Local",FuegoTV (Lima) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/8038/8038/playlist.m3u8 +#EXTINF:-1 tvg-id="FullTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/106695150818425/picture?width=320&height=320" group-title="Local",FullTV (Lima) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/8018/8018/playlist.m3u8 +#EXTINF:-1 tvg-id="GacetaUcayalina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/GacetaUcayalinaTelevision/picture?width=320&height=320" group-title="News",Gaceta Ucayalina (720p) [Not 24/7] +https://tvsource.gacetaucayalina.com/hls/prueba.m3u8 +#EXTINF:-1 tvg-id="GalacticaTVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RCGalacticatv/picture?width=320&height=320" group-title="Music",Galáctica TV (Peru) (720p) [Not 24/7] +https://pacific.direcnode.com:3715/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="GeniosTVMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/geniostvmoyobamba/picture?width=320&height=320" group-title="Local",Genios TV (Moyobamba) (720p) [Not 24/7] +https://live.obslivestream.com/geniostvmux/index.m3u8 +#EXTINF:-1 tvg-id="GoldValleyTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Goldvalleytvcasma/picture?width=320&height=320" group-title="Local",Gold Valley TV (Casma) (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/gold/gold/playlist.m3u8 +#EXTINF:-1 tvg-id="GORESAMTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/regionsanmartin/picture?width=320&height=320" group-title="Local",GORESAM TV [Not 24/7] +https://video.obslivestream.com/gtv/index.m3u8 +#EXTINF:-1 tvg-id="HatunTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhI0HKESXrVQ8-ktPCeRap6-cP_4upPtEpAlwPa=s88-c-k-c0x00ffffff-no-rj" group-title="Music",Hatun TV (720p) [Not 24/7] +https://ca.inka.net.pe/bestcablehatuntv/bestcablehatuntv/index.m3u8 +#EXTINF:-1 tvg-id="Hoynet.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Hoynet (540p) [Not 24/7] +https://tv.portalexpress.es:3641/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="HuachoPeruTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huachotvperu/picture?width=320&height=320" group-title="Local",Huacho Perú TV (720p) [Not 24/7] +https://tv.portalexpress.es:3124/live/hchoperutvlive.m3u8 +#EXTINF:-1 tvg-id="HuachoPeruTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huachotvperu/picture?width=320&height=320" group-title="Local",Huacho Perú TV (720p) [Offline] +https://tv.portalexpress.es:3124/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="HuantaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/HuantaTV/picture?width=320&height=320" group-title="Local",Huanta TV (288p) [Not 24/7] +https://inliveserver.com:1936/19002/19002/playlist.m3u8 +#EXTINF:-1 tvg-id="HuanucoenVivo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/huanucoenvivo/picture?width=320&height=320" group-title="Local",Huánuco en Vivo (480p) [Not 24/7] +https://cp.sradiotv.com:1936/8006/8006/playlist.m3u8 +#EXTINF:-1 tvg-id="IdentidadTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/IDENTIDADTVOFICIAL/picture?width=320&height=320" group-title="News",Identidad TV (1080p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvrci/livercitv/playlist.m3u8 +#EXTINF:-1 tvg-id="ImagenTelevisionRioja.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104338684346756/picture?width=320&height=320" group-title="Local",Imagen Televisión (Rioja) (720p) [Not 24/7] +http://191.97.56.183:1935/imagentv/imagentv/playlist.m3u8 +#EXTINF:-1 tvg-id="ImpactoTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WWW.RADIOIMPACTODECAJAMARCA.COM.PE/picture?width=320&height=320" group-title="Local",Impacto Televisión (Cajamarca) (360p) +https://eu1.servers10.com:8081/impactotv/index.m3u8 +#EXTINF:-1 tvg-id="ImperialTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radioimperialtv/picture?width=320&height=320" group-title="Local",Imperial Televisión (Huancayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/imperu/imperu/playlist.m3u8 +#EXTINF:-1 tvg-id="Inkavision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Inkavisionoficial/picture?width=320&height=320" group-title="Local",Inkavisión (Cuzco) [Offline] +https://7.innovatestream.pe:19360/inkavision/inkavision.m3u8 +#EXTINF:-1 tvg-id="Innovafm.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioInnovaSeSiente/picture?width=320&height=320" group-title="Local",Innova FM (Bagua Grande) (288p) [Not 24/7] +https://live.tvcontrolcp.com:1936/8170/8170/playlist.m3u8 +#EXTINF:-1 tvg-id="JN19.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canaljn19tv/picture?width=320&height=320" group-title="Religious",JN19 (720p) [Not 24/7] +https://servilive.com:3149/live/jn19tvlive.m3u8 +#EXTINF:-1 tvg-id="JNETV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/JNE.Peru/picture?width=320&height=320" group-title="Legislative",JNE TV (720p) [Not 24/7] +https://dc1.webstream.eu/hls/hls/jnetvhdstreaming_high/index.m3u8 +#EXTINF:-1 tvg-id="Kachorro.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Local",Kachorro (Super TV | Amazonas) (720p) [Not 24/7] +https://tvdatta.com:3517/live/kachorrotvlive.m3u8 +#EXTINF:-1 tvg-id="Karibena.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaKaribena/picture?width=320&height=320" group-title="Music",Karibeña (720p) [Not 24/7] +https://cu.onliv3.com/livevd/user1.m3u8 +#EXTINF:-1 tvg-id="KBOQuillabamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OficialKBO/picture?width=320&height=320" group-title="Local",KBO Quillabamba (1080p) [Not 24/7] +https://cdnhd.iblups.com/hls/YGpW43RUOD.m3u8 +#EXTINF:-1 tvg-id="KeBuenaBarranca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/kebuena91.1fm/picture?width=320&height=320" group-title="Local",KeBuena (Barranca) (480p) [Not 24/7] +https://inliveserver.com:1936/18016/18016/playlist.m3u8 +#EXTINF:-1 tvg-id="KoraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/JJRODRIGUEZKORARTV/picture?width=320&height=320" group-title="Entertainment",Kora TV (360p) [Not 24/7] +https://megastreamm.com:3129/live/koratvlive.m3u8 +#EXTINF:-1 tvg-id="LaAbeja.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/laabeja.pe/picture?width=320&height=320" group-title="News",La Abeja (720p) [Not 24/7] +http://cdnhd.iblups.com/hls/F87ppt1YAT.m3u8 +#EXTINF:-1 tvg-id="LaLuzTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaLuzTv/picture?width=320&height=320" group-title="Religious",La Luz TV (720p) [Not 24/7] +http://ott.streann.com:8080/loadbalancer/services/public/channels/59ce7f292cdc7ba015a93b82/playlist.m3u8 +#EXTINF:-1 tvg-id="RTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/larepublicape/picture?width=320&height=320" group-title="News",La República TV (RTV) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RTVLaRepública/live +#EXTINF:-1 tvg-id="LaRiberena.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/lariberenapucallpa/picture?width=320&height=320" group-title="Local",La Ribereña (Pucallpa) (480p) [Not 24/7] +https://inliveserver.com:1936/19020/19020/playlist.m3u8 +#EXTINF:-1 tvg-id="Latina.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Latina.pe/picture?width=320&height=320" group-title="General",Latina (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/5ce7109c7398b977dc0744cd.m3u8 +#EXTINF:-1 tvg-id="LimaLive.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/GrupoLimaLive/picture?width=320&height=320" group-title="Local",LimaLive (536p) [Not 24/7] +https://stmv.panel.grupolimalive.com/limalive/limalive/playlist.m3u8 +#EXTINF:-1 tvg-id="LotPlusTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Lotplustv2021/picture?width=320&height=320" group-title="Local",LotPlus TV (Chiclayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/lotplustv/lotplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="MasterTVTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/169404973238869/picture?width=320&height=320" group-title="Local",Master TV (Tarapoto) (480p) [Not 24/7] +https://tv.oyotunstream.com:1936/master/master/playlist.m3u8 +#EXTINF:-1 tvg-id="MaticesTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/aldiaconmatices/picture?width=320&height=320" group-title="Local",MaticesTV (Cañete) (720p) [Not 24/7] +http://v4.tustreaming.cl/matices/index.m3u8 +#EXTINF:-1 tvg-id="MegaTVAQP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MTVAQP/picture?width=320&height=320" group-title="Local",Mega TV (Arequipa) (360p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8008/index.m3u8 +#EXTINF:-1 tvg-id="MegaTVJaen.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatvjaen/picture?width=320&height=320" group-title="Local",Mega TV (Jaen) (720p) [Not 24/7] +https://tv.portalexpress.es:3399/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="MegaTVTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/megatvtarapotooficial/picture?width=320&height=320" group-title="Local",Mega TV (Tarapoto) (480p) [Not 24/7] +https://tv.portalexpress.es:3870/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="MetropolitanadelCuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/113907773339257/picture?width=320&height=320" group-title="Music",Metropolitana del Cuzco (CCTVRadio) (576p) [Not 24/7] +https://video1.earthcam.com/myearthcam/075ff02f78c35af55564cf3af3b3f750.flv/playlist.m3u8 +#EXTINF:-1 tvg-id="Millenium49TVPucallpa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zYpMHhQ.png" group-title="Local",Millenium 49 TV (Pucallpa) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/milleniuntv/milleniuntv/playlist.m3u8 +#EXTINF:-1 tvg-id="Millenium109FM.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/milleniumradiotv/picture?width=320&height=320" group-title="Local",Millenium 109 FM (Lamas) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/millenium/millenium/playlist.m3u8 +#EXTINF:-1 tvg-id="MINEDUiptv1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mineduperu/picture?width=320&height=320" group-title="Education",MINEDU IPTV 1 (320p) [Not 24/7] +http://iptv.perueduca.pe:1935/canal1/canal11/playlist.m3u8 +#EXTINF:-1 tvg-id="MINEDUiptv2.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mineduperu/picture?width=320&height=320" group-title="Education",MINEDU IPTV 2 (320p) [Not 24/7] +http://iptv.perueduca.pe:1935/canal2/canal22/playlist.m3u8 +#EXTINF:-1 tvg-id="MitosTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/w4ISMBI.png" group-title="Local",MitosTV (Mitos de la Selva | Pucallpa) (480p) [Not 24/7] +https://inliveserver.com:1936/19018/19018/playlist.m3u8 +#EXTINF:-1 tvg-id="ModaHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ModaHuancayoTv/picture?width=320&height=320" group-title="Local",Moda Huancayo TV [Offline] +https://tvdatta.com:3383/live/huancayotvlive.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (1080p) [Not 24/7] +http://vs8.live.opencaster.com/20100152275/jcpstream/playlist.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (1080p) [Not 24/7] +https://ed1ov.live.opencaster.com/jcpstream_hd720/index.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (360p) [Not 24/7] +https://ed1ov.live.opencaster.com/jcpstream_mid/index.m3u8 +#EXTINF:-1 tvg-id="MonterricoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/ytc/AAUvwnhD4JjitkowIeOGRlCsK-kmDk1T3lXgqklUjSv5KA=s320-c-k-c0x00ffffff-no-rj" group-title="Sports",Monterrico TV (360p) [Not 24/7] +https://www.opencaster.com/resources/hls_stream/hipodromojcp2.m3u8 +#EXTINF:-1 tvg-id="MTVMasAncash.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/MtvMasTelevision/picture?width=320&height=320" group-title="Local",MTV Más (Ancash) (720p) [Not 24/7] +https://mediacp.hostradios.com.ar:19360/8044/8044.m3u8 +#EXTINF:-1 tvg-id="NacionalTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NacionalTVComunicaciones/picture?width=320&height=320" group-title="General",NacionalTV (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/nacionaltv/nacionaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="NazarenasTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/nazarenastv/picture?width=320&height=320" group-title="Religious",Nazarenas TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvnazarenas/livenazarenastv/playlist.m3u8 +#EXTINF:-1 tvg-id="NorSelvaRTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/norselva.peru/picture?width=320&height=320" group-title="Local",NorSelva RTV (Rioja) (288p) [Not 24/7] +https://live.tvcontrolcp.com:1936/8140/8140/playlist.m3u8 +#EXTINF:-1 tvg-id="NuestraTVLima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/NUESTRATVPERU/picture?width=320&height=320" group-title="Local",Nuestra TV (Lima) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/nuestratvlima +#EXTINF:-1 tvg-id="OasisRTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Oasisrtv/picture?width=320&height=320" group-title="Local",Oasis RTV (Trujillo) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/oasisrtv/oasisrtv.m3u8 +#EXTINF:-1 tvg-id="OKTeVe.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OKTelevision.pe/picture?width=320&height=320" group-title="Local",OK TeVe (Yurimaguas) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/wesdey3/wesdey3/playlist.m3u8 +#EXTINF:-1 tvg-id="OmegaTVYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/omegatvyurimaguas/picture?width=320&height=320" group-title="Local",Omega TV (Yurimaguas) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/omega/omega.m3u8 +#EXTINF:-1 tvg-id="OndaDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3R2emx7.jpg" group-title="General",Onda Digital (720p) [Not 24/7] +https://ed1ov.live.opencaster.com/CwCfFGFdtebB/index.m3u8 +#EXTINF:-1 tvg-id="OndaDigital.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/3R2emx7.jpg" group-title="General",Onda Digital (720p) [Not 24/7] +https://tv.ondadigital.pe:1936/ondatv2/ondatv2/playlist.m3u8 +#EXTINF:-1 tvg-id="OrientalTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/OrientalTV.pe/picture?width=320&height=320" group-title="Local",Oriental TV 21 (Pucallpa) (480p) [Not 24/7] +https://stmv.panel.grupolimalive.com/orientaltv/orientaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="OvacionTV.pe" tvg-country="PE;UY" tvg-language="Spanish" tvg-logo="https://ovacion.pe/sites/default/files/logo-ovacion.png" group-title="Sports",Ovacion TV (720p) [Not 24/7] +http://cdn2.ujjina.com:1935/iptvovacion1/liveovacion1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OvacionTV.pe" tvg-country="PE;UY" tvg-language="Spanish" tvg-logo="https://ovacion.pe/sites/default/files/logo-ovacion.png" group-title="Sports",Ovación TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvovacion1/liveovacion1tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PanamericanaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uQhEDES.png" group-title="General",Panamericana TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/PanamericanaPTV +#EXTINF:-1 tvg-id="PanamericanaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/uQhEDES.png" group-title="General",Panamericana TV (298p) [Not 24/7] +https://cdnhd.iblups.com/hls/ptv2.m3u8 +#EXTINF:-1 tvg-id="PaxTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/B89KuHO.png" group-title="Religious",Pax TV (480p) [Not 24/7] +https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PBO.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/PBOPeru/picture?width=320&height=320" group-title="News",PBO Digital (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCgR0st4ZLABi-LQcWNu3wnQ/live +#EXTINF:-1 tvg-id="PeruMagico.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/263.png" group-title="General",Peru Magico (480p) [Not 24/7] +http://38.131.11.9:1080/play/a0dh +#EXTINF:-1 tvg-id="PeruvianRadioTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://peruvianradiotv.pe/wp-content/uploads/2021/03/Logo-Peruvian-6.png" group-title="Local",PeruvianRadio TV (268p) [Not 24/7] +https://stmv.panel.grupolimalive.com/peruviantv/peruviantv/playlist.m3u8 +#EXTINF:-1 tvg-id="PiuraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/piuratvcanal/picture?width=320&height=320" group-title="Local",PiuraTV (720p) [Not 24/7] +http://190.108.83.142:8000/play/a00d/index.m3u8 +#EXTINF:-1 tvg-id="PlanetaTVBagua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/planeatvperu/picture?width=320&height=320" group-title="Local",Planeta TV Bagua (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/planeatv/planeatv/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetaTVMoyobamba.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/PlanetaTeleInformativo/picture?width=320&height=320" group-title="Local",Planeta TV Moyobamba (720p) [Not 24/7] +https://live.obslivestream.com/planetatvmux/index.m3u8 +#EXTINF:-1 tvg-id="Primavera15RadiotelevisionMoquegua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radioprimaveramoquegua/picture?width=320&height=320" group-title="Local",Primavera 15 Radiotelevisión (Moquegua) (720p) [Not 24/7] +https://tv.portalexpress.es:3270/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="ProyectaTelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/101589915090069/picture?width=320&height=320" group-title="Local",Proyecta Televisión (Huacho) (720p) [Not 24/7] +https://servilive.com:3194/live/proyectatvlive.m3u8 +#EXTINF:-1 tvg-id="PucallpaTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/pucallpatelevision/picture?width=320&height=320" group-title="Local",Pucallpa Televisión (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/pucallpatv/pucallpatv/playlist.m3u8 +#EXTINF:-1 tvg-id="PymeTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Pyme.tv.pe/picture?width=320&height=320" group-title="Business",PymeTV [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/PymeTV/live +#EXTINF:-1 tvg-id="QTTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/QTTelevision/picture?width=320&height=320" group-title="Local",QT Televisión (Cuzco) (720p) [Not 24/7] +https://servilive.com:3753/live/qosqotimeslive.m3u8 +#EXTINF:-1 tvg-id="QuattroTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/572791252093919232/DKxHh5Oj_200x200.png" group-title="Local",Quattro TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/quatrotvgo +#EXTINF:-1 tvg-id="Quillavision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/459651607763457/picture?width=320&height=320" group-title="Local",Quillavision (Cuzco) (720p) [Not 24/7] +http://v4.tustreaming.cl/quillavision/index.m3u8 +#EXTINF:-1 tvg-id="RadioCalorHuancayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioCalorHuancayo/picture?width=320&height=320" group-title="Local",Radio Calor (Huancayo) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/calortv +#EXTINF:-1 tvg-id="RadioChalaca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiochalacafm/picture?width=320&height=320" group-title="Music",Radio Chalaca (720p) [Not 24/7] +https://servilive.com:3162/multi_web/play.m3u8 +#EXTINF:-1 tvg-id="RadioDigital941TV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotvdigitalcampanilla/picture?width=320&height=320" group-title="Local",Radio Digital 94.1 TV (Juanjui) (240p) [Not 24/7] +https://media2.cdnlayer.biz:8081/8018/index.m3u8 +#EXTINF:-1 tvg-id="RadioInkaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Radio Inka TV (480p) [Not 24/7] +https://tv.portalexpress.es:3175/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="RadioLibertadArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiolibertadarequipa/picture?width=320&height=320" group-title="Local",Radio Libertad (Arequipa) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/radiolibertadarequipa +#EXTINF:-1 tvg-id="RadioPachatusan.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/1260738527355956/picture?width=320&height=320" group-title="Local",Radio Pachatusan (Cuzco) (720p) [Not 24/7] +https://tvdatta.com:3413/live/pachatusanlive.m3u8 +#EXTINF:-1 tvg-id="RadioSanBorjaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiosanborja/picture?width=320&height=320" group-title="Music",Radio San Borja TV (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvsanborja/livesanborjatv/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTropicalTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/1331243814548287489/RCVGVH6L_400x400.jpg" group-title="Local",Radio Tropical Tarapoto (480p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/raditropical/raditropical/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVBinacional.pe" tvg-country="BO;PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/BinacionaltvGo/picture?width=320&height=320" group-title="Local",Radio TV Binacional (Desaguadero) (720p) [Not 24/7] +https://cp.sradiotv.com:1936/binacional/binacional/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioTVCharles.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiocharles.bambamarca/picture?width=320&height=320" group-title="Local",Radio TV Charles (Bambamarca) [Not 24/7] +https://media2.cdnlayer.biz:8081/8032/index.m3u8 +#EXTINF:-1 tvg-id="RadioTVJuanjui.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/74HCPRODUCCIONES/picture?width=320&height=320" group-title="Local",Radio TV Juanjui (720p) [Not 24/7] +https://tv.portalexpress.es:3611/live/radiotvjuanjuilive.m3u8 +#EXTINF:-1 tvg-id="RadioUnoTacna.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiouno.pe/picture?width=320&height=320" group-title="Local",Radio Uno (Tacna) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCK0lpuL9PQb3I5CDcu7Y7bA/live +#EXTINF:-1 tvg-id="RadioVictoria780AM.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/108571667620282/picture?width=320&height=320" group-title="Religious",Radio Victoria 780 AM (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC2pEdgRlAdGozFhlEb73PKA/live +#EXTINF:-1 tvg-id="RadioXtrema.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Music",Radio Xtrema (360p) [Not 24/7] +https://tv.portalexpress.es:3090/stream/play.m3u8 +#EXTINF:-1 tvg-id="RadioyTvFiladelfia.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/iglesiafiladelfialadp/picture?width=320&height=320" group-title="Religious",Radio y Tv Filadelfia (720p) [Not 24/7] +https://streamlive7.hearthis.at/hls/9355343.m3u8 +#EXTINF:-1 tvg-id="RadioInka.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/104110050971073/picture?width=320&height=320" group-title="Local",RadioInka (Abancay) (480p) [Not 24/7] +https://tv.portalexpress.es:3175/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="RadioTVOrienteYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/www.roriente.org/picture?width=320&height=320" group-title="Local",RadioTV Oriente (Yurimaguas) (1080p) [Not 24/7] +https://stmv.panel.grupolimalive.com/orientetv/orientetv/playlist.m3u8 +#EXTINF:-1 tvg-id="RCR.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rcrradiotv/picture?width=320&height=320" group-title="Local",Red de Comunicación Regional (RCR) (720p) [Not 24/7] +https://5c3fb01839654.streamlock.net:1963/iptvrcrperu/livercrperutv/playlist.m3u8 +#EXTINF:-1 tvg-id="RegionTVCallao.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/regiontv/picture?width=320&height=320" group-title="Local",Región TV (Callao) (480p) [Not 24/7] +https://servilive.com:3757/live/regiontvlive.m3u8 +#EXTINF:-1 tvg-id="RiberenaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/lariberenabellavista/picture?width=320&height=320" group-title="Local",Ribereña TV (Bellavista) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/riberenatv/riberenatv.m3u8 +#EXTINF:-1 tvg-id="RNTelevisionYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rnyurimaguas/picture?width=320&height=320" group-title="Local",RN Televisión (Yurimaguas) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/rntelevision/rntelevision/playlist.m3u8 +#EXTINF:-1 tvg-id="RPP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="News",RPP (480p) [Not 24/7] +http://38.131.11.9:1080/play/a0d8 +#EXTINF:-1 tvg-id="RSelvaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://radioselvatv.pe/wp-content/uploads/2020/12/favicon.png" group-title="News",RSelvaTV (Tarapoto) (720p) [Not 24/7] +https://live.obslivestream.com/selvatvmux/index.m3u8 +#EXTINF:-1 tvg-id="RTVTotalYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rtvtotal/picture?width=320&height=320" group-title="News",RTV Total (Yurimaguas) (480p) [Not 24/7] +https://7.innovatestream.pe:19360/rtvtotal/rtvtotal.m3u8 +#EXTINF:-1 tvg-id="RumbaMixTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/109388704194807/picture?width=320&height=320" group-title="Music",RumbaMix TV (860p) [Not 24/7] +https://tvdatta.com:3344/live/rumbamixlive.m3u8 +#EXTINF:-1 tvg-id="RWTelevisionTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/rwtelevision/picture?width=320&height=320" group-title="Local",RW Televisión (Tarapoto) [Not 24/7] +https://tvdatta.com:3952/live/rwtelevisionlive.m3u8 +#EXTINF:-1 tvg-id="SalgalúTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/salgalucomunicacionquenosacerca/picture?width=320&height=320" group-title="Culture",Salgalú TV [Not 24/7] +https://6075e60da1f27.streamlock.net/live/wowza/playlist.m3u8 +#EXTINF:-1 tvg-id="SanjuaneraTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Sanjuaneratv/picture?width=320&height=320" group-title="Music",SanjuaneraTV (720p) [Not 24/7] +https://live.obslivestream.com/sanjuaneramux/playlist.m3u8 +#EXTINF:-1 tvg-id="SatelTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/SatelPeru/picture?width=320&height=320" group-title="Local",SatelTV (Puno) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/satel/satel.m3u8 +#EXTINF:-1 tvg-id="SelvaMiaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/103910101231367/picture?width=320&height=320" group-title="Local",SelvaMía TV (Aguaytía) (360p) [Not 24/7] +https://inliveserver.com:1936/18022/18022/playlist.m3u8 +#EXTINF:-1 tvg-id="Sistema1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sistema1tv/picture?width=320&height=320" group-title="Local",Sistema 1 (Huaraz) (720p) [Not 24/7] +https://tv.portalexpress.es:3839/hybrid/play.m3u8 +#EXTINF:-1 tvg-id="Sistema1.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sistema1tv/picture?width=320&height=320" group-title="Local",Sistema 1 (Huaraz) (720p) [Not 24/7] +https://tv.portalexpress.es:3839/live/sistema1tvlive.m3u8 +#EXTINF:-1 tvg-id="SolStereoTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/solstereotvcasma/picture?width=320&height=320" group-title="Local",Sol Stereo TV (Casma) (360p) [Not 24/7] +https://stmv.panel.grupolimalive.com/solstereotv/solstereotv/playlist.m3u8 +#EXTINF:-1 tvg-id="SoriTVPicota.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/2290376027898746/picture?width=320&height=320" group-title="Local",SoriTV (Picota) (720p) [Not 24/7] +https://lamasremixes.com/hls/cadenasurrtv/index.m3u8 +#EXTINF:-1 tvg-id="StereoTVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/StereotvOficial/picture?width=320&height=320" group-title="Music",Stereo TV (Peru) (720p) [Not 24/7] +https://servers.amelbasoluciones.co:19360/5medialive/5medialive.m3u8 +#EXTINF:-1 tvg-id="SumacTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/sumac2021/picture?width=320&height=320" group-title="Local",Sumac TV (Lima) (480p) [Not 24/7] +https://vps1.lnx.pe/sumactv-web/envivo/index.m3u8 +#EXTINF:-1 tvg-id="SuperCanalYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/supercanalyuri/picture?width=320&height=320" group-title="Local",Super Canal (Yurimaguas) (720p) [Not 24/7] +https://7.innovatestream.pe:19360/supercanal/supercanal.m3u8 +#EXTINF:-1 tvg-id="SurTVIlo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/surtvilo/picture?width=320&height=320" group-title="Local",SurTV (Ilo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/surtv/surtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele2000.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Tele2000oficial/picture?width=320&height=320" group-title="Local",Tele2000 (Ayacucho) (720p) [Not 24/7] +https://servilive.com:3126/live/tele2000live.m3u8 +#EXTINF:-1 tvg-id="TelesurCamana.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Camana) (480p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/camana.m3u8 +#EXTINF:-1 tvg-id="TelesurIlo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Ilo) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/ilo.m3u8 +#EXTINF:-1 tvg-id="TelesurMollendo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Mollendo) (240p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/mollendo.m3u8 +#EXTINF:-1 tvg-id="TelesurMoquegua.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Moquegua) (360p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/moquegua.m3u8 +#EXTINF:-1 tvg-id="TelesurTacna.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/telesurexpresion/picture?width=320&height=320" group-title="Local",Telesur (Tacna) (720p) [Not 24/7] +https://qlobbidev.s.llnwi.net/telesur3/hls/tacna.m3u8 +#EXTINF:-1 tvg-id="TelevisionTarapoto.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/televisiontarapoto/picture?width=320&height=320" group-title="Local",Televisión Tarapoto (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/televisiontpp/televisiontpp/playlist.m3u8 +#EXTINF:-1 tvg-id="TelSatelCineTVArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="Movies",TelSatel Cine TV (Arequipa) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/cinperu/cinperu/playlist.m3u8 +#EXTINF:-1 tvg-id="TopFMTVAtalaya.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotopf/picture?width=320&height=320" group-title="Local",Top FM TV (Atalaya) (240p) [Not 24/7] +https://tvdatta.com:3084/live/toptvaguaytialive.m3u8 +#EXTINF:-1 tvg-id="TopLatino.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/toplatinotv/picture?width=320&height=320" group-title="Music",Top Latino TV (404p) [Not 24/7] +https://5cefcbf58ba2e.streamlock.net/tltvweb/tvweb.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TPTO.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TPTOCHANNEL/picture?width=320&height=320" group-title="Local",TPTO TV (Tarapoto) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/tptotv/tptotv/playlist.m3u8 +#EXTINF:-1 tvg-id="TropicalTVPuertoMaldonado.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiotropical105.7fm/picture?width=320&height=320" group-title="Local",Tropical TV (Puerto Maldonado) (720p) [Not 24/7] +https://tv.oyotunstream.com:1936/tropicaltv/tropicaltv/playlist.m3u8 +#EXTINF:-1 tvg-id="TumpisTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tumpisperu/picture?width=320&height=320" group-title="Local",Tumpis TV (Tumbes) (720p) [Not 24/7] +https://servilive.com:3531/live/tumpistvlive.m3u8 +#EXTINF:-1 tvg-id="TurboMixRadioTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/235129376518344/picture?width=320&height=320" group-title="Music",Turbo Mix Radio TV (360p) [Not 24/7] +https://7.innovatestream.pe:19360/turbomixoficial/turbomixoficial.m3u8 +#EXTINF:-1 tvg-id="TVAndahuaylas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/panoramanoticiasandahuaylas/picture?width=320&height=320" group-title="Local",TV Andahuaylas [Not 24/7] +https://pe-lim01-live-us01.cdnlayer.biz/panoramatv/index.m3u8 +#EXTINF:-1 tvg-id="TVCosmos.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://tvcosmos.pe/includes/iso-cosmos.png" group-title="General",TV Cosmos (720p) [Not 24/7] +https://5790d294af2dc.streamlock.net/8134/8134/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHuarmey.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TV6Huarmey/picture?width=320&height=320" group-title="Local",TV Huarmey (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/tvhuarmey +#EXTINF:-1 tvg-id="TVMundoArequipa.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tvmundo.pe/picture?width=320&height=320" group-title="Local",TV Mundo (Arequipa) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCQH-6sv6ovHg4Nx-niZ_C1g/live +#EXTINF:-1 tvg-id="TVNorteChiclayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tvnorte7/picture?width=320&height=320" group-title="Local",TV Norte (Chiclayo) (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/TVNORTEHD +#EXTINF:-1 tvg-id="TVNoticias73.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://yt3.ggpht.com/-TT4fesr5OEU/AAAAAAAAAAI/AAAAAAAAAAA/bcrXYkOAjdA/s900-c-k-no-mo-rj-c0xffffff/photo.jpg" group-title="News",TV Noticias 7.3 (768p) +http://cdnh4.iblups.com/hls/RMuwrdk7M9.m3u8 +#EXTINF:-1 tvg-id="TVPalmeras.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Noticias.TvPalmeras/picture?width=320&height=320" group-title="General",TV Palmeras (1080p) [Not 24/7] +https://srv.panelcast.net/palmerastv/palmerastv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPeru.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_PLAY.png" group-title="General",TV Perú (450p) [Not 24/7] +https://cdnh8.iblups.com/hls/R9WtilpKKB.m3u8 +#EXTINF:-1 tvg-id="TVPeruInternacional.pe" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_PLAY.png" group-title="General",TV Perú Internacional (460p) [Not 24/7] +http://cdnh4.iblups.com/hls/irtp.m3u8 +#EXTINF:-1 tvg-id="TVPeruNoticias.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://www.tvperu.gob.pe/sites/all/themes/stability/images/logo_TVPE_NOTICIAS_PLAY.png" group-title="News",TV Perú Noticias (768p) [Not 24/7] +https://cdnh8.iblups.com/hls/RMuwrdk7M9.m3u8 +#EXTINF:-1 tvg-id="TVPeruanisima.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/HenryAyalaProductions/picture?width=320&height=320" group-title="Music",TV Peruanísima (720p) [Not 24/7] +http://k4.usastreams.com/TVperuanisima/TVperuanisima/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSensacion.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/492483611619635/picture?width=320&height=320" group-title="Local",TV Sensación (Tacna) (1080p) [Not 24/7] +https://ca.inka.net.pe/tvsensacion/tvsensacion/index.m3u8 +#EXTINF:-1 tvg-id="TVSistemasCuzco.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVSISTEMASCUSCOPERU/picture?width=320&height=320" group-title="Local",TV Sistemas Cuzco (Cuzco) (720p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/kdlrqjcp/kdlrqjcp/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/499987990368435/picture?width=320&height=320" group-title="Local",TV5 Soritor (720p) [Not 24/7] +https://live.obslivestream.com/tv5soritormux/index.m3u8 +#EXTINF:-1 tvg-id="TVenLinea.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TVenLineaCanalDigital/picture?width=320&height=320" group-title="Local",TVenLinea (Cuzco) (720p) [Not 24/7] +https://s1.tvdatta.com:3883/live/tvenlinealive.m3u8 +#EXTINF:-1 tvg-id="TvfacesOnline.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/110490054146572/picture?width=320&height=320" group-title="Entertainment",Tvfaces Online (360p) [Not 24/7] +https://tvdatta.com:3211/stream/play.m3u8 +#EXTINF:-1 tvg-id="UCI.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/uncanalinteligente/picture?width=320&height=320" group-title="General",UCI (720p) [Not 24/7] +https://servilive.com:3449/live/mlecaroslive.m3u8 +#EXTINF:-1 tvg-id="Unitel.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/Unitelperu/picture?width=320&height=320" group-title="Local",Unitel (Huancayo) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/uniteltv/uniteltv/playlist.m3u8 +#EXTINF:-1 tvg-id="UniversitariaTVChanchamayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/universitariatvchanchamayo/picture?width=320&height=320" group-title="Local",Universitaria TV (Chanchamayo) (480p) [Not 24/7] +https://tvdatta.com:3670/live/universitariatvlive.m3u8 +#EXTINF:-1 tvg-id="UranioTVYurimaguas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/uraniotv/picture?width=320&height=320" group-title="Local",Uranio TV (Yurimaguas) (720p) [Not 24/7] +https://live.obslivestream.com/uraniomux/index.m3u8 +#EXTINF:-1 tvg-id="USILTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/usiltv/picture?width=320&height=320" group-title="General",USIL TV (720p) [Not 24/7] +https://video.produccionesmagicorp.com/redes/video.m3u8 +#EXTINF:-1 tvg-id="USMPTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/USMPTV/picture?width=320&height=320" group-title="Culture",USMPTV (720p) [Not 24/7] +https://streamusmptv.ddns.net/dash/stream.mpd +#EXTINF:-1 tvg-id="VamisaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/RadioVamisaTelevision/picture?width=320&height=320" group-title="Local",VamisaTV (Lima) (480p) [Not 24/7] +https://vps1.lnx.pe/vamisa/envivo/index.m3u8 +#EXTINF:-1 tvg-id="ViaAltomayo.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/viaaltomayo/picture?width=320&height=320" group-title="Local",Vía Altomayo (720p) [Not 24/7] +https://live.obslivestream.com/viaaltomayomux/index.m3u8 +#EXTINF:-1 tvg-id="VIATelevisión.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/viatelevisionperu/picture?width=320&height=320" group-title="Local",Vía Televisión (Tarapoto) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/viatv2021/viatv2021/playlist.m3u8 +#EXTINF:-1 tvg-id="VirgendeNatividadParuro.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/danzasvirgendenatividadparuro/picture?width=320&height=320" group-title="Religious",Virgen de Natividad de Paruro [Not 24/7] +https://srv6.zcast.com.br/virgennatividad/virgennatividad/playlist.m3u8 +#EXTINF:-1 tvg-id="VisionNoticiasPeruVNP.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vnptv.pe/picture?width=320&height=320" group-title="News",Visión Noticias Perú (VNP) (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/visionnoticias/visionnoticias/playlist.m3u8 +#EXTINF:-1 tvg-id="VisionTVMusica.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/visiontvmusica/picture?width=320&height=320" group-title="Music",Visión TV Musica (720p) [Not 24/7] +https://5ee0faac3bbae.streamlock.net/visionmusica/visionmusica/playlist.m3u8 +#EXTINF:-1 tvg-id="WillaxTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/willaxtv/picture?width=320&height=320" group-title="General",Willax (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/WillaxTV +#EXTINF:-1 tvg-id="WtvBambamarca.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/WtvCanal19Bambamarca/picture?width=320&height=320" group-title="Local",Wtv (Bambamarca) (480p) [Not 24/7] +https://ca.inka.net.pe/wtv/wtv/index.m3u8 +#EXTINF:-1 tvg-id="WtvChincha.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://1.bp.blogspot.com/-u2cQaqrC-MM/XtMgGoEPjuI/AAAAAAAAAi0/MdatufRBFL8tzM7UQ-W6QlN4EwCrwBprgCLcBGAsYHQ/s400/71062193_108412730561392_4146096209032904704_o.png" group-title="Local",Wtv (La Verdad y Punto) (Chincha) (720p) [Not 24/7] +https://v4.tustreaming.cl/wtv/index.m3u8 +#EXTINF:-1 tvg-id="XTVChachapoyas.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/canalxtvperu/picture?width=320&height=320" group-title="Local",X TV (Chachapoyas) (720p) [Not 24/7] +https://stmv.panel.grupolimalive.com/xtv/xtv/playlist.m3u8 diff --git a/channels/pf.m3u b/channels/pf.m3u new file mode 100644 index 000000000..15f6ae0cb --- /dev/null +++ b/channels/pf.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TNTV.pf" tvg-country="PF" tvg-language="French" tvg-logo="https://i.imgur.com/NzDscwm.png" group-title="General",TNTV (720p) [Not 24/7] +https://bcovlive-a.akamaihd.net/304fe71ee59a4d9692c5fa03548aa91a/us-west-2/5816339219001/playlist.m3u8 diff --git a/channels/ph.m3u b/channels/ph.m3u new file mode 100644 index 000000000..cf90c495d --- /dev/null +++ b/channels/ph.m3u @@ -0,0 +1,37 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CCTN47.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",CCTN 47 (1080p) [Not 24/7] +http://122.55.252.134:8443/live/bba5b536faeacb9b56a3239f1ee8e3b3/1.m3u8 +#EXTINF:-1 tvg-id="DepEdTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",DepEd TV (480p) [Geo-blocked] +https://d3cbe0gidjd4k2.cloudfront.net/channel_7/channel7/playlist.m3u8 +#EXTINF:-1 tvg-id="DZRHNewsTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/qr0w2eZ.jpg" group-title="News",DZRH News TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/DZRHNewsTelevision/live +#EXTINF:-1 tvg-id="GMAPinoyTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/gmapinoy.png" group-title="",GMA Pinoy TV (360p) [Offline] +http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Philippines/cd1b220644affbb.m3u8 +#EXTINF:-1 tvg-id="GreatCommissionTVGCTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",Great Commission TV (GCTV) (360p) [Not 24/7] +http://45.32.115.103/live/livestream/index.m3u8 +#EXTINF:-1 tvg-id="INCTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/FcLAaMT.png" group-title="",INC TV (1080p) +http://churchrus2-lh.akamaihd.net/i/coctesting_1@57550/master.m3u8 +#EXTINF:-1 tvg-id="KapamilyaChannel.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",Kapamilya Channel [Offline] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCstEtN0pgOmCf02EdXsGChw/live +#EXTINF:-1 tvg-id="LifeTVAsia.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/nqwE9ij.jpg" group-title="",Life TV Asia (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_6/channel6/playlist.m3u8 +#EXTINF:-1 tvg-id="NET25.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",NET 25 (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/Net25Tv/live +#EXTINF:-1 tvg-id="PEPTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/BhTSFnR.png" group-title="",PEP TV [Not 24/7] +https://iptv--iptv.repl.co/streamlink?url=https://www.twitch.tv/communitytv3/ +#EXTINF:-1 tvg-id="PilipinasHD.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/Wis8fVO.jpg" group-title="",Pilipinas HD (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_5/channel5/playlist.m3u8 +#EXTINF:-1 tvg-id="PilipinasHD.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/Wis8fVO.jpg" group-title="",Pilipinas HD (360p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_5/smil:channel_5.smil/chunklist_w1281634943_b300000_sleng.m3u8 +#EXTINF:-1 tvg-id="PTV4.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/EPnbcPp.png" group-title="News",PTV 4 (480p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x5cr6b9 +#EXTINF:-1 tvg-id="ShopTV.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/RUQASCU.png" group-title="Shop",Shop TV (480p) [Not 24/7] +https://d3cbe0gidjd4k2.cloudfront.net/channel_1/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="SMNI.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="https://i.imgur.com/l2JSQme.png" group-title="",SMNI (720p) [Not 24/7] +https://api.new.livestream.com/accounts/19079954/events/7831871/live.m3u8 +#EXTINF:-1 tvg-id="SuperRadyoDZBB.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",Super Radyo DZBB (720p) [Not 24/7] +http://stream.gmanews.tv/ioslive/livestream/chunklist.m3u8?wowzasessionid=693701106 +#EXTINF:-1 tvg-id="TVMaria.ph" tvg-country="PH" tvg-language="English" tvg-logo="" group-title="",TV Maria [Offline] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/c/TVMariaLIVE/live +#EXTINF:-1 tvg-id="UNTV.ph" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/CAlBD49.png" group-title="",UNTV (1080p) [Timeout] +https://cdn.untvweb.com/live-stream/untvweb.m3u8 diff --git a/channels/pk.m3u b/channels/pk.m3u new file mode 100644 index 000000000..4fd4cb920 --- /dev/null +++ b/channels/pk.m3u @@ -0,0 +1,68 @@ +#EXTM3U +#EXTINF:-1 tvg-id="92News.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/OifwcrE.png" group-title="News",92 News (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsgC5cbz3DE2Shh34gNKiog/live +#EXTINF:-1 tvg-id="92NewsUK.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/SzaGz3D.jpg" group-title="Local",92 News UK (576p) +https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-92_news-hsslive-25f-16x9-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="ARYDigital.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/TVP7g03.png" group-title="",ARY Digital (1080p) [Offline] +#EXTVLCOPT:http-referrer=https://live.arydigital.tv/ +https://6zklx4wryw9b-hls-live.5centscdn.com/arydigital/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ARYDigitalUsa.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/TVP7g03.png" group-title="",ARY Digital Usa (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://live.arydigital.tv/ +https://6zklx4wryw9b-hls-live.5centscdn.com/arydigitalusa/498f1704b692c3ad4dbfdf5ba5d04536.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ARYNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/R4KtTbJ.jpg" group-title="News",ARY News (720p) [Offline] +#EXTVLCOPT:http-referrer=https://live.arynews.tv/ +https://6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AVTKhyber.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/uh8HAPY.jpg" group-title="",AVT Khyber (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/index_150_av-p.m3u8 +#EXTINF:-1 tvg-id="AVTKhyber.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/uh8HAPY.jpg" group-title="",AVT Khyber (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692670/master.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCnMBV5Iw4WqKILKue1nP6Hg/live +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (480p) [Not 24/7] +https://imob.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (360p) [Not 24/7] +https://imob.dunyanews.tv/live/_definst_/ngrp:dunyalive_1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (INT Feed) (480p) [Not 24/7] +https://intl.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/playlist.m3u8?dvr= +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu;English" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (UK Feed) (360p) [Not 24/7] +https://ukintl.dunyanews.tv/liveuk/ngrp:dunyalive_all/playlist.m3u8 +#EXTINF:-1 tvg-id="DunyaNews.pk" tvg-country="PK" tvg-language="Urdu;English" tvg-logo="https://i.imgur.com/wAdf3tG.jpg" group-title="News",Dunya News (USA Feed) (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCpgLvM8Oor7kZHU6HHfwWVQ/live +#EXTINF:-1 tvg-id="ExpressNewsPakistan.pk" tvg-country="PK" tvg-language="English" tvg-logo="" group-title="News",Express News Pakistan (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/expressdigital1/livestream/master.m3u8 +#EXTINF:-1 tvg-id="GeoNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="" group-title="News",Geo News (576p) [Not 24/7] +https://jk3lz82elw79-hls-live.5centscdn.com/Geo/eae835e83c0494a376229f254f7d3392.sdp/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Kay2TV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/Hw94SaM.jpg" group-title="",Kay2 TV (404p) [Not 24/7] +https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/index_150_av-p.m3u8 +#EXTINF:-1 tvg-id="Kay2TV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/Hw94SaM.jpg" group-title="",Kay2 TV (404p) [Not 24/7] +https://dcunilive36-lh.akamaihd.net/i/dclive_1@662109/master.m3u8 +#EXTINF:-1 tvg-id="KhyberMiddleEastTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/mqFWpXX.png" group-title="",Khyber Middle East TV (720p) [Not 24/7] +https://dcunilive83-lh.akamaihd.net/i/dclive_1@16122/master.m3u8 +#EXTINF:-1 tvg-id="KhyberNewsTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/NL1cqS2.png" group-title="News",Khyber News TV (404p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692677/master.m3u8 +#EXTINF:-1 tvg-id="LahoreNews.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://lahorenews.tv/images_new/lahorenews-logo-footer.png.pagespeed.ce.a6y3_7cI59.png" group-title="News",Lahore News (720p) [Not 24/7] +http://mlive.lahorenews.tv/lahorelive/lnews_1/chunklist_DVR.m3u8 +#EXTINF:-1 tvg-id="LahoreNews.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://lahorenews.tv/images_new/lahorenews-logo-footer.png.pagespeed.ce.a6y3_7cI59.png" group-title="News",Lahore News (720p) [Not 24/7] +https://vcdn.dunyanews.tv/lahorelive/_definst_/ngrp:lnews_1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelBangla.pk" tvg-country="PK" tvg-language="Bengali" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Bangla (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/madanitvbangla.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelBangla.pk" tvg-country="PK" tvg-language="Bengali" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Bangla (1080p) [Offline] +https://madnitv.vdn.dstreamone.net/madnitvbangla/madnibanglaabr/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelEnglish.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel English (1080p) [Offline] +https://madnitv.vdn.dstreamone.net/madnitvenglish/madnienglishabr/playlist.m3u8 +#EXTINF:-1 tvg-id="MadaniChannelUrdu.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://madanichannel.tv/img/madani-channel-logo.png" group-title="Religious",Madani Channel Urdu (1080p) [Geo-blocked] +https://madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8 +#EXTINF:-1 tvg-id="OneGolf.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://i.imgur.com/CKnSeT7.png" group-title="Sports",One Golf (720p) +http://162.250.201.58:6211/pk/ONEGOLF/index.m3u8 +#EXTINF:-1 tvg-id="PTVHome.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/mJxpdBU.png" group-title="",PTV Home (238p) [Not 24/7] +https://live.ptv.com.pk/live/stream/ptvhome/playlist.m3u8 +#EXTINF:-1 tvg-id="PTVNews.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/LyqGxwv.jpg" group-title="News",PTV News (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA/live +#EXTINF:-1 tvg-id="PTVSports.pk" tvg-country="PK" tvg-language="English" tvg-logo="https://i.imgur.com/MWm7yEa.png" group-title="",PTV Sports (1080p) [Offline] +http://103.81.104.118/hls/stream11.m3u8 +#EXTINF:-1 tvg-id="PTVWorld.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/eeDFRgN.png" group-title="",PTV World (360p) [Not 24/7] +https://live.ptv.com.pk/live/ptvworld/playlist.m3u8 +#EXTINF:-1 tvg-id="SuchTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/WlxWJm1.png" group-title="News",Such TV (720p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x72hrde +#EXTINF:-1 tvg-id="ZindagiTV.pk" tvg-country="PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/RtHeRwp.png" group-title="",Zindagi TV (576p) [Not 24/7] +https://5ad386ff92705.streamlock.net/live_transcoder/ngrp:zindagitv.stream_all/chunklist.m3u8 diff --git a/channels/pl.m3u b/channels/pl.m3u new file mode 100644 index 000000000..9e407a5ef --- /dev/null +++ b/channels/pl.m3u @@ -0,0 +1,83 @@ +#EXTM3U +#EXTINF:-1 tvg-id="4FUNTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",4FUN TV (576p) [Not 24/7] +https://stream.4fun.tv:8888/hls/4f_high/index.m3u8 +#EXTINF:-1 tvg-id="dlaCiebietv.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/N318K6a.jpg" group-title="",dlaCiebie.tv (1080p) [Not 24/7] +http://94.246.128.53:1935/tv/dlaCiebieTv/playlist.m3u8 +#EXTINF:-1 tvg-id="Echo24.tv" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/a5DX4nh.jpg" group-title="",Echo24 (720p) [Not 24/7] +https://live-insysgo.cf.insyscd.net/echo24.720.smil/manifest.mpd +#EXTINF:-1 tvg-id="EzoTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/hJAoLIq.png" group-title="",Ezo TV (576p) [Not 24/7] +http://live.ezotv.pl:1935/live/EZOTV/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioCzworka.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Radio Czworka (1080p) +http://stream14.polskieradio.pl:1935/pr4_video/video_pr4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SferaTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/kgE2maL.jpg" group-title="",Sfera TV (480p) [Not 24/7] +http://stream.sferatv.pl:1935/sferalive/smil:sferalive.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TelewizjaPograniczeGlubczyce.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/ilGvIug.jpeg" group-title="",Telewizja Pogranicze (Głubczyce) (720p) [Not 24/7] +http://95.160.28.218:1935/pogranicze/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TelewizjaTorun.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Telewizja Toruń (1080p) [Not 24/7] +http://217.173.176.107:1935/live/ngrp:tvk.stream_mobile/chunks.m3u8 +#EXTINF:-1 tvg-id="TrwamTV.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",Trwam TV (480p) +http://trwamtv.live.e57-po.insyscd.net/cl01/out/u/trwam_3.m3u8 +#EXTINF:-1 tvg-id="TVKujawy.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/tgLWe9o.jpg" group-title="",TV Kujawy (576p) [Not 24/7] +http://stream.tvkujawy.pl:8080/live/broadcast.m3u8 +#EXTINF:-1 tvg-id="TVRegionalnaLubin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/l8tRJVW.jpg" group-title="",TV Regionalna (Lubin) (576p) [Not 24/7] +https://tvreg.klemit.net/regionalna/stream/index.m3u8 +#EXTINF:-1 tvg-id="TVRepublika.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/VaiHvZ3.jpg" group-title="",TV Republika (1080p) +https://ec08.luz1.cache.orange.pl/jupiter/o2-cl7/live/tvrepublika/live.m3u8 +#EXTINF:-1 tvg-id="TVRepublika.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/VaiHvZ3.jpg" group-title="",TV Republika (540p) [Not 24/7] +http://m1-tvrepublika.4vod.tv/smil:premium_abr.ism/playlist.m3u8 +#EXTINF:-1 tvg-id="TVREPUBLIKA.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",TV REPUBLIKA (1080p) [Offline] +http://188.47.212.71/jupiter/o1-cl1/live/tvrepublika/live.m3u8 +#EXTINF:-1 tvg-id="TVTorun.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/GdbkqCM.png" group-title="",TV Toruń (1080p) +http://217.173.176.107:1935/live/tvk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTrwam.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/k6zdLLu.jpg" group-title="",TV Trwam (480p) +https://trwamtv.live.e59-po.insyscd.net/cl01/out/u/trwam_3.m3u8 +#EXTINF:-1 tvg-id="TVP1.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/TVP1.png" group-title="",TVP 1 (720p) [Offline] +http://207.110.52.61:8080/s/hls/5/9584/tvp1_276/1/1/index.m3u8 +#EXTINF:-1 tvg-id="TVP3Bialystok.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/zPSpvss.jpg" group-title="",TVP 3 Białystok (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbialystok +#EXTINF:-1 tvg-id="TVP3Bydgoszcz.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/b0Xevsc.jpg" group-title="",TVP 3 Bydgoszcz (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpbydgoszcz +#EXTINF:-1 tvg-id="TVP3Gdansk.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/wGZCj7G.jpg" group-title="",TVP 3 Gdańsk (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgdansk +#EXTINF:-1 tvg-id="TVP3GorzowWielkopolski.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/H3jtBQm.jpg" group-title="",TVP 3 Gorzów Wielkopolski (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpgorzow +#EXTINF:-1 tvg-id="TVP3Katowice.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/burRKHa.jpg" group-title="",TVP 3 Katowice (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkatowice +#EXTINF:-1 tvg-id="TVP3Kielce.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/YcQxM94.jpg" group-title="",TVP 3 Kielce (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkielce +#EXTINF:-1 tvg-id="TVP3Krakow.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/MbAKxD1.jpg" group-title="",TVP 3 Kraków (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpkrakow +#EXTINF:-1 tvg-id="TVP3Lodz.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/r5wxdkB.jpg" group-title="",TVP 3 Łódź (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplodz +#EXTINF:-1 tvg-id="TVP3Lublin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/h7oq2yg.jpg" group-title="",TVP 3 Lublin (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvplublin +#EXTINF:-1 tvg-id="TVP3Olsztyn.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/Aa0HedU.jpg" group-title="",TVP 3 Olsztyn (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpolsztyn +#EXTINF:-1 tvg-id="TVP3Opole.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/dYRtDRA.jpg" group-title="",TVP 3 Opole (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpopole +#EXTINF:-1 tvg-id="TVP3Poznan.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/mTnjVGQ.jpg" group-title="",TVP 3 Poznań (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvppoznan +#EXTINF:-1 tvg-id="TVP3Rzeszow.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/6jGX6Xy.jpg" group-title="",TVP 3 Rzeszów (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvprzeszow +#EXTINF:-1 tvg-id="TVP3Szczecin.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/NRb6S8z.jpg" group-title="",TVP 3 Szczecin (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpszczecin +#EXTINF:-1 tvg-id="TVP3Warszawa.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/AfZOO8U.jpg" group-title="",TVP 3 Warszawa (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwarszawa +#EXTINF:-1 tvg-id="TVP3Wroclaw.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/0em2QIh.jpg" group-title="",TVP 3 Wrocław (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpwroclaw +#EXTINF:-1 tvg-id="TVPInfo.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/idt6Zz3.jpg" group-title="",TVP Info (404p) +http://hbbtvlive.v3.tvp.pl/hbbtvlive/livestream.php?app_id=tvpinfo +#EXTINF:-1 tvg-id="TVPParlament1.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Parlament (kanał 1) (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal1 +#EXTINF:-1 tvg-id="TVPParlament2.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Parlament (kanał 2) (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=kanal2 +#EXTINF:-1 tvg-id="TVPSejm.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Sejm (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=sejm +#EXTINF:-1 tvg-id="TVPSenat.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/CpgzCZq.jpg" group-title="",TVP Senat (404p) [Timeout] +http://hbbtvlive3.v3.tvp.pl/hbbtvlive/livestream.php?app_id=senat +#EXTINF:-1 tvg-id="TVT.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="" group-title="",TVT (720p) [Not 24/7] +http://176.107.129.219/media/tvt/index.m3u8 +#EXTINF:-1 tvg-id="TVTZgorzelec.pl" tvg-country="PL" tvg-language="Polish" tvg-logo="https://i.imgur.com/zhzVpgf.jpg" group-title="",TVT Zgorzelec (576p) [Not 24/7] +http://gargoyle.tomkow.pl/hls/tvt.m3u8 +#EXTINF:-1 tvg-id="BelsatTV.pl" tvg-country="BY" tvg-language="Belarusian" tvg-logo="https://belsat.eu/wp-content/themes/bel-cms/assets/images/belsat_logo.png" group-title="General",Белсат ТВ (1080p) +http://f1.stream.devkom.pro:1063/ramowka/video.m3u8 diff --git a/channels/pr.m3u~master b/channels/pr.m3u~master new file mode 100644 index 000000000..910c45aad --- /dev/null +++ b/channels/pr.m3u~master @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CDMInternational.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i.imgur.com/KlJnXF3.jpg" group-title="",CDM International (480p) [Not 24/7] +https://59825a54e4454.streamlock.net:8443/marcos536/marcos536/playlist.m3u8 +#EXTINF:-1 tvg-id="CDMTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",CDM TV (480p) [Not 24/7] +http://205.164.56.130:1935/marcos536/marcos536/playlist.m3u8 +#EXTINF:-1 tvg-id="ConectateTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/conectatetvpr/picture?width=320&height=320" group-title="",Conéctate TV (ACS Network) (480p) [Not 24/7] +https://play.amelbasoluciones.co:3257/live/acsnetworklive.m3u8 +#EXTINF:-1 tvg-id="CTNiChristianTelevisionNetworkInternational.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="http://directostv.teleame.com/wp-content/uploads/2018/07/CTNi.png" group-title="Religious",CTNi (Christian Television Network International) (480p) [Not 24/7] +https://584097344c1f0.streamlock.net/48/smil:48.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MasTV.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",Mas TV (1080p) +https://video1.getstreamhosting.com:1936/8212/8212/playlist.m3u8 +#EXTINF:-1 tvg-id="NotiUnoPuertoRico.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="",Noti Uno Puerto Rico (854p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/unoradio/unoradio1/playlist.m3u8 +#EXTINF:-1 tvg-id="PuraPalabra.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i1.wp.com/unored.tv/wp-content/uploads/2016/03/Pura-Palabra-TV.jpg" group-title="",Pura Palabra (718p) [Not 24/7] +https://59825a54e4454.streamlock.net:8443/william233/william233/playlist.m3u8 +#EXTINF:-1 tvg-id="WKAQNoticias.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WKAQ Noticias Puerto Rico (1080p) [Not 24/7] +https://wkaqlive-lh.akamaihd.net/i/PR_STREAM1@311877/master.m3u8 diff --git a/channels/ps.m3u b/channels/ps.m3u new file mode 100644 index 000000000..71fa2c936 --- /dev/null +++ b/channels/ps.m3u @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="7alaTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",7ala TV [Geo-blocked] +http://vstream3.hadara.ps:8081/7alafm2020/7alafm2020/playlist.m3u8 +#EXTINF:-1 tvg-id="Ajyal TV" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j1Xmygq.jpg" group-title="General",Ajyal TV (720p) [Not 24/7] +http://htvajyal.mada.ps:8888/ajyal/index.m3u8 +#EXTINF:-1 tvg-id="Ajyal TV" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j1Xmygq.jpg" group-title="General",Ajyal TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/ajyal/index.m3u8 +#EXTINF:-1 tvg-id="AlAqsaChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="http://aqsatv.ps/style/atyaf/assets/images/logo-footer.png" group-title="Religious",Al Aqsa Channel (416p) [Not 24/7] +https://live-1.linuxway.info/aqsatv/live/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfajerTV1.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H8SaZXN.png" group-title="General",Alfajer TV 1 (304p) [Not 24/7] +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="AlfajerTV2.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/H8SaZXN.png" group-title="General",Alfajer TV 2 (720p) +http://two.alfajertv.com:8081/AlfajertvHDTwo_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="Audeh.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Audeh (480p) +http://htvpalsat.mada.ps:8888/audeh/index.m3u8 +#EXTINF:-1 tvg-id="Falastini.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="http://www.falastini.tv/wp-content/uploads/2018/10/logo.png" group-title="Music",Falastini (720p) [Offline] +http://51.255.84.28:8081/palestiniantv_source/live/playlist.m3u8 +#EXTINF:-1 tvg-id="HebronTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Hebron TV (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/newhebron/newheb/playlist.m3u8 +#EXTINF:-1 tvg-id="HekayaTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Hekaya TV (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/Hekaya/hekayamix/playlist.m3u8 +#EXTINF:-1 tvg-id="MarahFM.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PeIYCXs.jpg" group-title="Music",Marah FM (720p) [Not 24/7] +http://vstream3.hadara.ps:8081/marahFM_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="Mawal.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Mawal (720p) [Not 24/7] +http://vstream3.hadara.ps:8081/MawwalHD_web/web/playlist.m3u8 +#EXTINF:-1 tvg-id="MusawaChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PEFW4Vy.png" group-title="General",MusawaChannel (404p) [Not 24/7] +http://htvpalsat.mada.ps:8888/musawa/index.m3u8 +#EXTINF:-1 tvg-id="NablusTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Nablus TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/nabluslive/index.m3u8 +#EXTINF:-1 tvg-id="PalestineMubasher.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/bYz6HUG.png" group-title="General",Palestine Mubasher (404p) +http://htvpalsat.mada.ps:8888/PBCLive/index.m3u8 +#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KcSgZg0.jpg" group-title="General",Palestine Satellite Channel (404p) +http://htvpalsat.mada.ps:8888/PBC/index.m3u8 +#EXTINF:-1 tvg-id="PalestineSatelliteChannel.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KcSgZg0.jpg" group-title="General",Palestine Satellite Channel (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/palestinian_satellite_channel/hls1/palestinian_satellite_channel.m3u8 +#EXTINF:-1 tvg-id="PalestineToday.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="https://paltoday.tv/style/assets/images/logo.png" group-title="News",Palestine Today (480p) [Geo-blocked] +https://live.paltoday.tv/paltv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="palestiniantv.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",palestiniantv (720p) +http://palestiniantv.origin.technostreaming.net:8081/palestiniantv_source/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioAlbaladTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Radio Albalad TV (1080p) [Not 24/7] +http://streaming.zaytonatube.com:8080/radioalbalad/radioalbalad/playlist.m3u8 +#EXTINF:-1 tvg-id="RajeenTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Rajeen TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/palabroad/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ShababFM.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Shabab FM (720p) [Not 24/7] +https://streaming.zaytonatube.com:8081/ShababFM/shabab/index.m3u8 +#EXTINF:-1 tvg-id="WatarTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Watar TV (720p) [Not 24/7] +http://htvint.mada.ps:8889/orient/index.m3u8 +#EXTINF:-1 tvg-id="WattanTV.ps" tvg-country="PS" tvg-language="Arabic" tvg-logo="" group-title="",Wattan TV (720p) [Not 24/7] +http://htvmada.mada.ps:8888/wattan/index.m3u8 diff --git a/channels/pt.m3u b/channels/pt.m3u new file mode 100644 index 000000000..6629f44b3 --- /dev/null +++ b/channels/pt.m3u @@ -0,0 +1,118 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Canal11.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.one.accedo.tv/files/5da5efcea0e845000ed0e5d4?sessionKey=01FNEJ1BS1DAS4AGH38M9E3DZ01A65B14752.png" group-title="Sports",Canal 11 (720p) +https://d2ve4fchffi4n1.cloudfront.net/out/v1/df356edd16f3434ab417f2c48cb1d516/index.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://canal.parlamento.pt/images/ARTV_Logo.png" group-title="Legislative",Canal Parlamento (432p) [Not 24/7] +https://playout175.livextend.cloud/livenlin4/2liveartvpub/playlist.m3u8 +#EXTINF:-1 tvg-id="IgrejaOnline.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://www.igreja-online.tv/img/logo.png" group-title="",Igreja Online (574p) [Not 24/7] +http://195.22.11.11:1935/igronline/igronline2/playlist.m3u8 +#EXTINF:-1 tvg-id="KuriakosCine.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/CZViCwB.jpg" group-title="Movies",Kuriakos Cine (1080p) [Not 24/7] +http://c2.manasat.com:1935/kcine/kcine3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosKids.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/aNVzKYJ.png" group-title="Kids",Kuriakos Kids (1080p) +http://c2.manasat.com:1935/kkids/kkids3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosMusic.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/Zl40NYi.jpg" group-title="Music",Kuriakos Music (1080p) +http://c2.manasat.com:1935/kmusic/kmusic3/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/M5i4hfh.png" group-title="Religious",Kuriakos TV (1080p) +http://195.22.11.11:1935/ktv/ktv1/master.m3u8 +#EXTINF:-1 tvg-id="KuriakosTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.teleon.tv/logo/kuriakos_tv_pt.png" group-title="Religious",Kuriakos TV (576p) +http://195.22.11.11:1935/ktv/ktv2/playlist.m3u8 +#EXTINF:-1 tvg-id="PortoCanal.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/b/ba/Logo_Porto_Canal.jpg" group-title="General",Porto Canal (360p) [Not 24/7] +https://streamer-a01.videos.sapo.pt/live/portocanal/playlist.m3u8 +#EXTINF:-1 tvg-id="PortoCanal.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/b/ba/Logo_Porto_Canal.jpg" group-title="General",Porto Canal (360p) [Not 24/7] +https://streamer-b02.videos.sapo.pt/live/portocanal/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioClubeTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/2TO0u6Z.png" group-title="General",Radio Clube TV (720p) [Not 24/7] +https://stmv1.srvsite.com/clubefmradio/clubefmradio/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAcores.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/106-563419141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Açores (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtpacoresHD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAcores.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/106-563419141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Açores (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtpacores.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPAfrica.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/27-363219141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP África (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtpafrica.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/120-344318101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Internacional (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtpi.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/120-344318101410.png" group-title="General",RTP Internacional (480p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s38/index.m3u8 +#EXTINF:-1 tvg-id="RTPMadeira.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/107-443519141305.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64)" group-title="General",RTP Madeira (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) +https://streaming-live.rtp.pt/liverepeater/smil:rtpmadeira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPMemoria.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/80-584819141705.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP Memória (360p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtpmem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPRadiozigzag.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/zigzagtv2020.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="Music",RTP Rádio Zig Zag (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:zigzagHD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTPRadiozigzag.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/zigzagtv2020.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="Music",RTP Rádio Zig Zag [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:zigzag.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/5-563718101410.png" group-title="General",RTP1 (480p) +http://162.212.178.69:41042/bysid/608 +#EXTINF:-1 tvg-id="RTP1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/5-563718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP1 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/rtpClean1HD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/3-363718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP2 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/rtpClean2HD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/3-363718101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="General",RTP2 (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/liverepeater/smil:rtp2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/64-393818101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",RTP3 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/livetvhlsDVR/rtpnHDdvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RTP3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn-images.rtp.pt/common/img/channels/logos/color/horizontal/64-393818101410.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0" group-title="News",RTP3 (504p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 +https://streaming-live.rtp.pt/livetvhlsDVR/rtpndvr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SICInternacional.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_sic_m.png" group-title="General",SIC Internacional (720p) [Offline] +http://live.impresa.pt/live/sicint/sicint.m3u8 +#EXTINF:-1 tvg-id="SICNoticias.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/a/ab/SN_300x130-escuro.png" group-title="News",SIC Noticias [Geo-blocked] +http://live.impresa.pt/live/sicnot/sicnot.m3u8 +#EXTINF:-1 tvg-id="SobrenaturalTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/jYIf7Mz.png" group-title="Religious",Sobrenatural TV (1080p) +http://213.13.26.11:1935/live/sobrenaturaltv/livestream.m3u8 +#EXTINF:-1 tvg-id="SobrenaturalTV.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/VgzVZto.png" group-title="Religious",Sobrenatural TV (360p) [Not 24/7] +http://livestreamcdn.net:1935/SobrenaturalTV/SobrenaturalTV/playlist.m3u8 +#EXTINF:-1 tvg-id="SportTV1.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv1.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 1 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV2.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 2 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV3.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 3 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportTV4.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/sport-tv4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Sport TV 4 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_SPORTTV_4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="STVNoticias.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="" group-title="News",STV Noticias (240p) [Not 24/7] +http://dcunilive36-lh.akamaihd.net/i/dclive_1@668002/master.m3u8 +#EXTINF:-1 tvg-id="TVFatima.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hCFVc5S.jpg" group-title="Religious",TV Fátima (1080p) +http://213.13.26.11:1935/live/santuario.stream/livestream.m3u8 +#EXTINF:-1 tvg-id="TVFatima.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/hCFVc5S.jpg" group-title="Religious",TV Fátima (1080p) [Not 24/7] +https://streamer-b02.videos.sapo.pt/live/santuario.stream/livestream.m3u8 +#EXTINF:-1 tvg-id="TVMANAENG.pt" tvg-country="PT" tvg-language="English" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (ENG) (484p) +http://c2.manasat.com:1935/church-online/ingles3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANAESP.pt" tvg-country="PT" tvg-language="Spanish" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (ESP) (488p) +http://c2.manasat.com:1935/iglesia-online/espanhol3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANAFR.pt" tvg-country="PT" tvg-language="French" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (FR) (484p) +http://c2.manasat.com:1935/eglise-online/frances3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANARU.pt" tvg-country="PT" tvg-language="Russian" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA (RU) (486p) +http://c2.manasat.com:1935/tserkov-online/russo3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMana1BRA.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.tvmana1.com/wp-content/uploads/2020/04/logo_tv_mana_1.png" group-title="Religious",TV Maná 1 (320p) [Not 24/7] +http://195.22.11.11:1935/tvmana/tvmana1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMana2BRA.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.tvmana1.com/wp-content/uploads/2020/04/logo_tv_mana_1.png" group-title="Religious",TV Maná 2 (576p) [Not 24/7] +http://195.22.11.11:1935/tvmana/tvmana2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVManaCordoba.pt" tvg-country="PT" tvg-language="Spanish" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV Maná Córdoba (576p) [Not 24/7] +http://csvl03.manasat.com:1935/tvar/tvmanaar2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANAMAPUTO.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA MAPUTO (576p) [Not 24/7] +http://csvl03.manasat.com:1935/tvmz/tvmz3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANAMAPUTO.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA MAPUTO (526p) [Not 24/7] +http://streamspub.manasat.com:1935/tvmz/tvmz2/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMANA1PORTUGAL.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="http://igrejamana.com/int/imagens/mana_logo_novo_lrg.png" group-title="Religious",TV MANA-1 PORTUGAL (1080p) [Not 24/7] +http://csvl04.manasat.com:1935/tvmana/tvmana3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVI.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://www.meo.pt/PublishingImages/canais/tvi.png" group-title="General",TVI (480p) +https://video-auth2.iol.pt/live_edge/tvi_abr/edge_servers/tvi-480p/chunks.m3u8 +#EXTINF:-1 tvg-id="TVIReality.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="" group-title="",TVI Reality (480p) +https://video-auth2.iol.pt/live_tvi_direct/live_tvi_direct/edge_servers/tvireality-480p/chunks.m3u8 +#EXTINF:-1 tvg-id="TVI24.pt" tvg-country="PT" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/5/50/Tvi_24.png" group-title="News",TVI24 (480p) +https://video-auth2.iol.pt/live_edge/tvi24_abr/edge_servers/tvi24-480p/chunks.m3u8 diff --git a/channels/pt_samsung.m3u b/channels/pt_samsung.m3u new file mode 100644 index 000000000..06a60a92a --- /dev/null +++ b/channels/pt_samsung.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AFVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f6cb0597d9e0745a204dc94" group-title="Comedy",AFV Family (720p) [Offline] +https://futuretoday-afv-family-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (1080p) +https://bloomberg-bloomberg-1-pt.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsPortugues.fr" tvg-country="PT;BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews Português (720p) +https://rakuten-euronews-8-pt.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/py.m3u b/channels/py.m3u new file mode 100644 index 000000000..d004547b2 --- /dev/null +++ b/channels/py.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABCTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tBdgllD.png" group-title="",ABC TV (720p) +https://d2e809bgs49c6y.cloudfront.net/live/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851/live.isml/d87c2b7b-9ecf-4e6e-b63b-b32772bd7851.m3u8 +#EXTINF:-1 tvg-id="C9N.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",C9N (1080p) [Offline] +http://170.83.242.153:8000/play/c9nhd +#EXTINF:-1 tvg-id="C9N.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",C9N (480p) [Offline] +http://170.83.242.153:8000/play/a022 +#EXTINF:-1 tvg-id="FarraPlay.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",Farra Play (720p) [Not 24/7] +http://159.203.148.226/live/farra.m3u8 +#EXTINF:-1 tvg-id="GEN.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://lanacionpy.nyc3.cdn.digitaloceanspaces.com/img/logo-gen.svg" group-title="",GEN (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/paraguay/gentv +#EXTINF:-1 tvg-id="LaTele.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",La Tele (480p) [Offline] +http://170.83.242.153:8000/play/a00j +#EXTINF:-1 tvg-id="LIMTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/limtvok/picture?width=300&height=300" group-title="",LIM TV (720p) [Not 24/7] +https://live.admefy.com/live/default/ashamed_crimson_3360d.m3u8 +#EXTINF:-1 tvg-id="MasTV.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/mastvok/picture?width=300&height=300" group-title="",Más TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/mastvonline +#EXTINF:-1 tvg-id="NPY.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",NPY (480p) [Offline] +http://170.83.242.153:8000/play/a024 +#EXTINF:-1 tvg-id="Paravision.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="Entertainment",Paravision (480p) [Offline] +http://170.83.242.153:8000/play/a021 +#EXTINF:-1 tvg-id="RadioUniverso.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://lanacionpy.nyc3.cdn.digitaloceanspaces.com/img/logo-universo.svg" group-title="",Radio Universo (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/paraguay/universo +#EXTINF:-1 tvg-id="SNT.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",SNT (480p) [Offline] +http://170.83.242.153:8000/play/a03d +#EXTINF:-1 tvg-id="SURTVItapua.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/804016687108521985/L4G3JMvc_400x400.jpg" group-title="",SUR TV Itapúa (480p) [Offline] +http://170.83.242.153:8000/play/a025 +#EXTINF:-1 tvg-id="Telefuturo.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/qZ9LcJb.jpeg" group-title="",Telefuturo (480p) [Offline] +http://170.83.242.153:8000/play/a03e +#EXTINF:-1 tvg-id="TreceParaguay.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="" group-title="",Trece Paraguay (720p) [Not 24/7] +http://174.138.118.252/live/trece.m3u8 +#EXTINF:-1 tvg-id="Unicanal.py" tvg-country="PY" tvg-language="Spanish" tvg-logo="https://i.imgur.com/cgTD2TW.png" group-title="",Unicanal (720p) [Not 24/7] +http://45.55.127.106/live/unicanal.m3u8 diff --git a/channels/qa.m3u~master b/channels/qa.m3u~master new file mode 100644 index 000000000..d70779ca0 --- /dev/null +++ b/channels/qa.m3u~master @@ -0,0 +1,32 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlJazeeraArabic.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x9TQYI3.jpg" group-title="News",Al Jazeera Arabic (1080p) +https://live-hls-web-aja.getaj.net/AJA/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraArabic.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/DBJTZaS.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Al Jazeera Arabic (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s69/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraBalkans.qa" tvg-country="BA;HR;MK;ME;RS;SI" tvg-language="Bosnian;Serbian;Croatian;Montenegrin" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Al_Jazeera_Balkans.png/220px-Al_Jazeera_Balkans.png" group-title="News",Al Jazeera Balkans (1080p) +https://live-hls-web-ajb.getaj.net/AJB/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraDocumentary.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/El2hhYb.png" group-title="Documentary",Al Jazeera Documentary (270p) [Geo-blocked] +https://live-hls-web-ajd.getaj.net/AJD/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraDocumentary.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/El2hhYb.png" group-title="Documentary",Al Jazeera Documentary (576p) [Not 24/7] +#EXTVLCOPT:http-referrer=http://azrotv.com/ +http://teledunet.com:8080/live/azrotv/azrotv2021/10040.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraEnglish.qa" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/BB93NQP.png" group-title="News",Al Jazeera English (1080p) +https://live-hls-web-aje.getaj.net/AJE/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraEnglish.qa" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/BB93NQP.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Al Jazeera English (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s23/index.m3u8 +#EXTINF:-1 tvg-id="AlJazeeraMubasher.qa" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/xx6uOhZ.png" group-title="Legislative",Al Jazeera Mubasher (1080p) +https://live-hls-web-ajm.getaj.net/AJM/index.m3u8 +#EXTINF:-1 tvg-id="AlKassFive.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="" group-title="Sports",Al Kass Five (304p) +https://www.elahmad.com/tv/m3u8/online_live_2_tv.m3u8?id=alkass5 +#EXTINF:-1 tvg-id="AlRassoul.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/pTmN1X9T/al-rassoul.png" group-title="Religious",Al Rassoul (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/AlRassoulChannel/live +#EXTINF:-1 tvg-id="AlRayyan.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/uQMoKXn.png" group-title="General",Al Rayyan (1080p) +https://svs.itworkscdn.net/alrayyanlive/alrayyan.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlRayyanAlQadeem.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/mVwHGbc.png" group-title="Classic",Al Rayyan Al Qadeem (1080p) +https://svs.itworkscdn.net/alrayyanqadeemlive/alrayyanqadeem.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="QatarTV.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="http://www.qtv.qa/assets/images/logos/qtv.png" group-title="General",Qatar TV (360p) +https://qatartv.akamaized.net/hls/live/2026573/qtv1/master.m3u8 +#EXTINF:-1 tvg-id="QatarTV2.qa" tvg-country="QA" tvg-language="Arabic" tvg-logo="http://www.qtv.qa/assets/images/logos/qtvTwo2.png" group-title="General",Qatar TV 2 (720p) +https://qatartv.akamaized.net/hls/live/2026574/qtv2/master.m3u8 diff --git a/channels/ro.m3u~master b/channels/ro.m3u~master new file mode 100644 index 000000000..350fa253e --- /dev/null +++ b/channels/ro.m3u~master @@ -0,0 +1,146 @@ +#EXTM3U +#EXTINF:-1 tvg-id="A7TV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/RmFg8BN.png" group-title="General",A7TV (720p) [Not 24/7] +https://play.streamkit.tv/content/channel/aseventv/live/aseventv.player.m3u8 +#EXTINF:-1 tvg-id="AgroTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/agro-tv.jpg" group-title="General",AgroTV (404p) [Not 24/7] +https://stream1.1616.ro:1945/agro/livestream/playlist.m3u8?wowzatokenhash=NqSD4qaHc94SbTW05NBB-lXC78ZiAOIbnbUBOHj1DAM= +#EXTINF:-1 tvg-id="AlephNews.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/MQ5PkKB.png" group-title="News",Aleph News (720p) +https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaOmegaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/StJg6Pu.png" group-title="Religious",Alfa Omega TV (540p) [Not 24/7] +http://s5.alfaomega.tv:1935/alfaomega/alfaomega1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AlfaOmegaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/StJg6Pu.png" group-title="Religious",Alfa Omega TV (540p) [Not 24/7] +http://s5.alfaomega.tv:1935/alfaomega/smil:alfaomegatv/playlist.m3u8 +#EXTINF:-1 tvg-id="Antena1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/26D3mCb.png" group-title="General",Antena 1 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/a1 +#EXTINF:-1 tvg-id="Antena3.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/91/Antena_3_%282016-present%29.png" group-title="News",Antena 3 (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/a3 +#EXTINF:-1 tvg-id="AntenaComedy.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Comedy",Antena Comedy (432p) [Not 24/7] +http://stream1.antenaplay.ro/live/smil:ComedyPlay.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaInternational.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/3/34/Antena_Interna%C8%9Bional_%282016%29.png" group-title="General",Antena International (576p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/ai +#EXTINF:-1 tvg-id="AntenaMonden.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Antena Monden (720p) [Not 24/7] +http://stream1.antenaplay.ro/live/smil:AntenaMonden.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AntenaStars.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/UnkDhbr.png" group-title="Lifestyle",Antena Stars (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/astars +#EXTINF:-1 tvg-id="AntenaSport.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/UnkDhbr.png" group-title="Sports",AntenaSport (720p) [Not 24/7] +https://stream1.antenaplay.ro/dfs/farasecrete5/playlist.m3u8 +#EXTINF:-1 tvg-id="B1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/VQqgkzw.jpg" group-title="News",B1 (272p) [Not 24/7] +https://stream.adunity.com/b1/b1.m3u8 +#EXTINF:-1 tvg-id="BucovinaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/7QHdiTO.png" group-title="",Bucovina TV (480p) +http://46.4.14.12:9999/btvsvlive/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/BxUibFh.png" group-title="Business",Canal33 (480p) [Offline] +https://fms-https1.mediadirect.ro/live3/canal33.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ColumnaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Tyrzwr2.png" group-title="Local",Columna TV (576p) [Not 24/7] +rtmp://columna1.arya.ro/live/columnatv1 +#EXTINF:-1 tvg-id="CooknPlay.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/0/08/Cook%26Play.png" group-title="Cooking",Cook&Play (480p/720p) (720p) [Not 24/7] +https://stream1.antenaplay.ro/live/smil:CookPlay.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CorneaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/cn89fLa.jpg" group-title="",Cornea TV (720p) [Not 24/7] +http://89.149.30.158:1935/CorneaTV/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CredoTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/credo.png" group-title="",Credo TV (720p) [Not 24/7] +http://cdn.credonet.tv:1935/ctv/smil:livecredo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Digi24.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/digi-24.jpg" user-agent="iPhone" group-title="",Digi 24 (720p) [Offline] +#EXTVLCOPT:http-user-agent=iPhone +https://iptv-all.lanesh4d0w.repl.co/romania/digi24 +#EXTINF:-1 tvg-id="ElitaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/Lmbmx3y.png" group-title="",Elita TV (576p) [Timeout] +http://46.55.111.242:8080/Rezina.m3u8 +#EXTINF:-1 tvg-id="EstTVNeamt.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/kQJ10r8/est-tv-ro.png" group-title="Local",Est TV (Neamt) (576p) [Not 24/7] +http://89.38.8.130:39435 +#EXTINF:-1 tvg-id="GTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/bJVG9HX/GTV.jpg" group-title="Local",GTV (576p) [Not 24/7] +rtmp://gtv1.arya.ro:1935/live/gtv1.flv +#EXTINF:-1 tvg-id="HappyChannel.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c3/Happy_Channel_%282020-present%29.png" group-title="Entertainment",Happy Channel (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/romania/happy-channel +#EXTINF:-1 tvg-id="IntermediaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/jo5fei5.png" group-title="",Intermedia TV (576p) +http://46.4.14.12:9999/intermedia1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalD.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/a/a6/Kanal_D_Romania.png" group-title="General",Kanal D (384p) [Not 24/7] +https://stream1.kanald.ro/iphone/live.m3u8 +#EXTINF:-1 tvg-id="KissTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/c/c4/Kiss_TV_%282014-present%29.png" group-title="Music",Kiss TV (576p) [Not 24/7] +https://fms-https1.mediadirect.ro/live3/_definst_/kiss.smil/playlist.m3u8?publisher=83 +#EXTINF:-1 tvg-id="LightChannel.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qskVMhF.png" group-title="",Light Channel (480p) [Not 24/7] +http://streamer1.streamhost.org:1935/salive/GMIlcbgM/playlist.m3u8 +#EXTINF:-1 tvg-id="MEDIAREGIONAL.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",MEDIA REGIONAL (576p) +http://83.103.150.198:8080 +#EXTINF:-1 tvg-id="Mireasa.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Mireasa (480p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/mireasa +#EXTINF:-1 tvg-id="MoozDance.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-dance.jpg" group-title="Music",MoozDance (576p) +#EXTVLCOPT:http-referrer=https://mooz.tv/ +https://rtmp.digitalbroadcast.ro/moozdance/moozdance.m3u8 +#EXTINF:-1 tvg-id="MoozHits.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-hits.jpg" group-title="Music",MoozHits (576p) +#EXTVLCOPT:http-referrer=https://mooz.tv/ +https://rtmp.digitalbroadcast.ro/moozhits/moozhits.m3u8 +#EXTINF:-1 tvg-id="MoozRo.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://mooz.tv/site/img/mooz-ro1.png" group-title="Music",MoozRo (576p) +#EXTVLCOPT:http-referrer=https://mooz.tv/ +https://rtmp.digitalbroadcast.ro/moozro/moozro.m3u8 +#EXTINF:-1 tvg-id="MusicChannelRomania.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/PRgvj4c.png" group-title="Music",Music Channel Romania (576p) [Offline] +https://edge126.rcs-rds.ro/utvedge/musicchannelhq.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NasulTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/nasul-tv.jpg" group-title="",Naşul TV (720p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/NasulTV/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="NovaTVBrasov.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/DYO1tVZ.png" group-title="",Nova TV Brasov (576p) [Not 24/7] +http://novapress.ro:1935/live/nova/playlist.m3u8 +#EXTINF:-1 tvg-id="PloiestiTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/2dgyYGy/Ploiesti-TV.jpg" group-title="",Ploiesti TV [Offline] +rtmp://v1.arya.ro:1935/live/ptv1.flv +#EXTINF:-1 tvg-id="PrimaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/oLuxC2P.png" group-title="General",Prima TV (404p) [Not 24/7] +https://stream1.1616.ro:1945/prima/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= +#EXTINF:-1 tvg-id="ProTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/pro-tv.jpg" group-title="",Pro TV (1080p) +https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0 +#EXTINF:-1 tvg-id="Profitro.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Profit.ro (404p) +https://stream1.1616.ro:1945/profit/livestream/playlist.m3u8?wowzatokenhash=hOdIznDoakApEuQ8FaFI3yrJuBMZHqCB7B3cWTmRWsc= +#EXTINF:-1 tvg-id="Profitro.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Profit.ro (404p) [Not 24/7] +https://stream1.profit.ro:1945/profit/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="RapsodiaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/TH1T2Y2/Rapsodia-TV.png" group-title="",Rapsodia TV (576p) [Offline] +rtmp://rapsodia1.arya.ro/live/rapsodiatv1 +#EXTINF:-1 tvg-id="RealitateaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/L0Givzu.png" group-title="",Realitatea FM (Studio) (576p) [Not 24/7] +https://live.realitatea.net/livertmp/plus/playlist.m3u8 +#EXTINF:-1 tvg-id="RealitateaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/L0Givzu.png" group-title="",Realitatea Plus (720p) [Timeout] +https://livestream.realitatea.net/livestream/liverealitatea.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RockTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/F69gAWa.png" group-title="Music",Rock TV (480p) +https://fms-https1.mediadirect.ro/live3/_definst_/rocktv.smil/master.m3u8 +#EXTINF:-1 tvg-id="SangeorzTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qFE5PUx.png" group-title="",Sangeorz TV (396p) [Not 24/7] +http://s2.streamnet.ro:8035/stream.flv +#EXTINF:-1 tvg-id="SomaxTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/3LdXQxm.png" group-title="",Somax TV [Offline] +http://webmobile.xdev.ro:81/tv12/playlist.m3u8 +#EXTINF:-1 tvg-id="SperantaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Speranta TV (720p) [Not 24/7] +http://play.streamkit.tv/content/channel/sperantatv/live/sperantatv.player.m3u8 +#EXTINF:-1 tvg-id="SperantaTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",Speranta TV (720p) [Not 24/7] +http://us200.streamkit.tv/edge/sperantatv_1200/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="",SuperTV (1080p) [Not 24/7] +http://live.supertv.ro:1935/live/smil:hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Telestar1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qSd8DTI.png" group-title="",Telestar1 (480p) [Not 24/7] +http://s1.streamnet.ro:8053/stream.flv +#EXTINF:-1 tvg-id="Telestar1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/qSd8DTI.png" group-title="",Telestar1 (576p) [Offline] +http://193.34.109.10:8090 +#EXTINF:-1 tvg-id="TravelMix.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/travel-mix.jpg" group-title="Travel",Travel Mix (1080p) [Not 24/7] +http://89.38.8.131:39520 +#EXTINF:-1 tvg-id="TVSE.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/9c/TV_Sud_Est_%282017%29.png" group-title="",TV SE (576p) [Not 24/7] +http://89.38.8.130:39419 +#EXTINF:-1 tvg-id="TVPlusSuceava.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/6T7w975.png" group-title="",TVPlus Suceava (576p) +http://85.186.146.34:8080 +#EXTINF:-1 tvg-id="TVR1.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/CKQ7mpB.png" group-title="General",TVR 1 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr1_hd_live/smil:tvr1_hd_live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR2.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/TxM5dwY.png" group-title="General",TVR 2 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr2_test/smil:tvr2_test.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVR3.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/k6Qx4vl.png" group-title="General",TVR 3 (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvr3_test/smil:tvr3_test.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRCluj.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/8DqsGHO.png" group-title="General",TVR Cluj (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrcluj_new/smil:tvrcluj_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRCraiova.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/6/67/TVR_Craiova_%282008%29.png" group-title="General",TVR Craiova (720p) [Not 24/7] +https://mn-nl.mncdn.com/tvrcraiova_new/smil:tvrcraiova_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRIasi.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/b/b7/TVR_Ia%C8%99i_%282008%29.png" group-title="General",TVR Iași (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvriasi_new/smil:tvriasi_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRInternational.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.imgur.com/AlW8jyl.png" group-title="General",TVR International (720p) [Not 24/7] +https://mn-nl.mncdn.com/tvri_test/smil:tvri_test.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVRMoldova.ro" tvg-country="MD" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/tvr-moldova.jpg" group-title="General",TVR Moldova (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrmoldova_new/smil:tvrmoldova_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRTarguMures.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/94/TVR_T%C3%AErgu_Mure%C8%99_%282008%29.png" group-title="General",TVR Târgu Mureș (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrtgmures_new/smil:tvrtgmures_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVRTimisoara.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/0/0e/TVR_Timi%C8%99oara.png" group-title="General",TVR Timișoara (720p) [Geo-blocked] +https://mn-nl.mncdn.com/tvrtimisoara_new/smil:tvrtimisoara_new.smil/index.m3u8 +#EXTINF:-1 tvg-id="TVSat.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/PFqmmSp/TVSat-RO.png" group-title="",TVSat (576p) [Not 24/7] +http://89.38.8.130:39443 +#EXTINF:-1 tvg-id="UTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://static.cinemagia.ro/img/tv_station/utv.jpg" user-agent="iPhone" group-title="Music",UTV (576p) [Offline] +#EXTVLCOPT:http-user-agent=iPhone +https://iptv-all.lanesh4d0w.repl.co/romania/utv +#EXTINF:-1 tvg-id="VPTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="https://i.ibb.co/Rb2ff23/VPTV-RO.png" group-title="",VP TV (576p) [Not 24/7] +http://89.38.8.130:39437 +#EXTINF:-1 tvg-id="ZURadioTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Music",ZU Radio TV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/zuradiotv +#EXTINF:-1 tvg-id="ZUTV.ro" tvg-country="RO" tvg-language="Romanian" tvg-logo="" group-title="Music",ZU TV (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/romania/zutv diff --git a/channels/rs.m3u b/channels/rs.m3u new file mode 100644 index 000000000..3aa2a9264 --- /dev/null +++ b/channels/rs.m3u @@ -0,0 +1,95 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdriaMusicTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Adria Music TV (1080p) +https://srv1.adriatelekom.com/AdriaMusicTV/index.m3u8 +#EXTINF:-1 tvg-id="DjakTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Djak TV (720p) +https://srv1.adriatelekom.com/DjakTV/index.m3u8 +#EXTINF:-1 tvg-id="KurirTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/oUwwB9s.png" group-title="",Kurir TV (720p) +https://kurir-tv.haste-cdn.net/providus/live2805.m3u8 +#EXTINF:-1 tvg-id="MarsTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="http://marsh.rs/wp-content/uploads/2015/09/marsh-favicon-iOS.png" group-title="",Marš TV (576p) [Not 24/7] +http://cdn.dovecher.tv:8081/live/marsh/chunks.m3u8 +#EXTINF:-1 tvg-id="MISTelevizija.rs" tvg-country="AU;NZ" tvg-language="English" tvg-logo="https://i.imgur.com/XaXRbxj.png" group-title="",MIS Televizija (720p) [Not 24/7] +https://5afd52b55ff79.streamlock.net/MISTV/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikAMVA2020.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/yRgMvpz.png" group-title="Music",Muzzik AMVA 2020 (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-8/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikCafeClubSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Cafe&Club Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-3/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikHipHopSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik HipHop Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a4/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikJekaSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Jeka Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-4/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikMediteraneoSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Mediteraneo Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a5/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikOKKSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik OKK Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikReplaySerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Replay Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a3/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikRockRollSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Rock&Roll Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-1/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikSaculatacSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Saculatac Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-a2/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikTVSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik TV Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-6/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzzikWorldwideSerbia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.muzzik.tv/wp-content/uploads/2019/05/muzzik-logo.png" group-title="Music",Muzzik Worldwide Serbia (720p) [Geo-blocked] +https://muzzik-live.morescreens.com/mts-5/playlist.m3u8 +#EXTINF:-1 tvg-id="N1.ba" tvg-country="BA" tvg-language="Bosnian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 BIH (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1bos&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.hr" tvg-country="HR" tvg-language="Croatian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 HRVATSKA (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1hrv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 RS (576p) [Not 24/7] +https://best-str.umn.cdn.united.cloud/stream?channel=n1srp&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="N1.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://www.lyngsat.com/logo/tv/nn/n1_rs.png" group-title="News",N1 SLOVENSKA (576p) +https://best-str.umn.cdn.united.cloud/stream?channel=n1slv&p=n1Sh4redSecre7iNf0&sp=n1info&stream=sp1400&u=n1info +#EXTINF:-1 tvg-id="PinkExtra.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/ec344345d2e4a7f1f73999973d81fddb.png" group-title="",Pink Extra (576p) +http://109.105.201.198/PINKEXTRA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFamily.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/f071e32f2d8372fc9c117023396132a1.png" group-title="",Pink Family (576p) +http://109.105.201.198/PINKFAMILY/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFilm.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/a7732413e1e8ba399f798707a0c63168.png" group-title="",Pink Film (576p) +http://109.105.201.198/PINKFILM/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkFolk1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="http://ottepg2.nexttv.ht.hr:33200/EPG/jsp/images/universal/film/logo/fileEntity/20200420/000200/XTV100002033/38f3e459-db42-4934-99f6-52d6450d2d4d.png" group-title="",Pink Folk 1 (576p) +http://109.105.201.198/PINKFOLK/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkKoncert.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/6e4ab583ca61bfa9941171c5892598d2.png" group-title="",Pink Koncert (576p) +http://109.105.201.198/PINKKONCERT/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkMovies.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/be0d53ad208c00beeeb1b35dafa556b7.png" group-title="",Pink Movies (576p) +http://109.105.201.198/PINKMOVIES/playlist.m3u8 +#EXTINF:-1 tvg-id="PinknRoll.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/8abb9df9cd832d2a67bf30d592c97cd5.png" group-title="",Pink n Roll (360p) +http://109.105.201.198/PINKROLL/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkPedia.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/4f2e530f631bf86047ddd4f95ad8c7f9.png" group-title="",Pink Pedia (576p) +http://109.105.201.198/PINKPEDIA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkPremium.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/d32a517e7a64059726b753c5402d8aa2.png" group-title="",Pink Premium (576p) +http://109.105.201.198/PINKPREMIUM/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkSciFiFantasy.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/e10521af711eb40cef503d8e9b49106f.png" group-title="",Pink Sci-Fi & Fantasy (576p) +http://109.105.201.198/PINKSCIFI/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkSerije.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/d31a491b8750ad7d1f4a52e5c098ffde.png" group-title="",Pink Serije (576p) +http://109.105.201.198/PINKSERIJE/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkWorld.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/4fe0cd06c858d1102b7cf75122c90e23.png" group-title="",Pink World (360p) +http://109.105.201.198/PINKWORLD/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkWorldCinema.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",Pink World Cinema (576p) +http://109.105.201.198/PINKWORLDCINEMA/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkZabava.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/bbeeab15f75d21f7806b36305f4f4f36.png" group-title="",Pink Zabava (360p) +http://109.105.201.198/PINKZABAVA/playlist.m3u8 +#EXTINF:-1 tvg-id="RedTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/F2Qv4Kt.png" group-title="",Red TV (720p) +https://live.rednet.rs/providus/redtv_multi.m3u8 +#EXTINF:-1 tvg-id="RTV1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 1 (576p) [Not 24/7] +mmsh://212.200.255.151/rtv1 +#EXTINF:-1 tvg-id="RTV1.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 1 (576p) [Offline] +rtsp://212.200.255.151/rtv1 +#EXTINF:-1 tvg-id="RTV2.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 2 (576p) [Not 24/7] +mmsh://212.200.255.151/rtv2 +#EXTINF:-1 tvg-id="RTV2.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://static.rtv.rs/assets/repository/2017/img/header/logo-rtv_sr_ci.png" group-title="",RTV 2 (576p) [Not 24/7] +rtsp://212.200.255.151/rtv2 +#EXTINF:-1 tvg-id="RTVAS.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/wcXNcP6.png" group-title="",RTV AS (576p) +https://srv1.adriatelekom.com/TVAS/index.m3u8 +#EXTINF:-1 tvg-id="RTVCityUb.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/Sz4G9ns.png" group-title="",RTV City Ub (576p) [Not 24/7] +http://167.172.39.13/hls/tvcityub.m3u8 +#EXTINF:-1 tvg-id="RTVNoviPazar.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/eNspJAS.png" group-title="",RTV Novi Pazar (576p) +https://rtvnp.rs/hls/rtvnp.m3u8 +#EXTINF:-1 tvg-id="SuperSatTVHD.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="" group-title="",SuperSat TV HD (1080p) [Not 24/7] +https://srv1.adriatelekom.com/SuperSatTV/index.m3u8 +#EXTINF:-1 tvg-id="belami.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/UAlVp6G.jpg" group-title="",TV Belle Amie (540p) [Not 24/7] +http://92.60.238.10:1935/live/belleamie/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDugaPlus.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/0RcNFXt.jpg" group-title="Music",TV Duga Plus (480p) [Not 24/7] +http://109.92.29.10:1935/tvduga/tvduga/playlist.m3u8 +#EXTINF:-1 tvg-id="TVHram.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/Msxeu2S.png" group-title="",TV Hram (576p) [Not 24/7] +https://vod1.laki.eu/live/hram/index.m3u8 +#EXTINF:-1 tvg-id="TVPiCanal.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://i.imgur.com/0kTq4Rj.jpg" group-title="",TV Pi Canal Pirot (576p) [Not 24/7] +http://stream.pikanal.rs/pikanal/pgm.m3u8 diff --git a/channels/ru.m3u~master b/channels/ru.m3u~master new file mode 100644 index 000000000..d19682812 --- /dev/null +++ b/channels/ru.m3u~master @@ -0,0 +1,811 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1HDMusicTelevision.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.lyngsat.com/logo/tv/num/1hd-music-tv-ru.png" group-title="Music",1HD Music Television (1080p) [Not 24/7] +http://1hdru-hls-otcnet.cdnvideo.ru/onehdmusic/tracks-v1a1/index.m3u8 +#EXTINF:-1 tvg-id="1HDMusicTelevision.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.lyngsat.com/logo/tv/num/1hd-music-tv-ru.png" group-title="Music",1HD Music Television (404p) [Not 24/7] +https://sc.id-tv.kz/1hd.m3u8 +#EXTINF:-1 tvg-id="2x2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.ibb.co/DrvTgDc/2x2.png" group-title="Entertainment",2x2 (576p) [Geo-blocked] +http://176.114.16.54/2x2/index.m3u8 +#EXTINF:-1 tvg-id="2x2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.ibb.co/DrvTgDc/2x2.png" group-title="Entertainment",2x2 (720p) [Not 24/7] +https://bl.uma.media/live/317805/HLS/4614144_3,2883584_2,1153024_1/1613019214/3754dbee773afc02014172ca26d3bb79/playlist.m3u8 +#EXTINF:-1 tvg-id="8KanalKrym.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Family",8 канал Крым (576p) +http://176.99.110.252/stream8/playlist.m3u8 +#EXTINF:-1 tvg-id="9Volna.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000016fe6167945ca56e4f444cb0015ad/z" group-title="Entertainment",9 Волна (720p) [Geo-blocked] +https://strm.yandex.ru/kal/acb/acb0.m3u8 +#EXTINF:-1 tvg-id="9Volna.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000016fe6167945ca56e4f444cb0015ad/z" group-title="Entertainment",9 Волна (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/9volna/playlist.m3u8 +#EXTINF:-1 tvg-id="43kanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",43 канал (720p) +http://sochinskayatrk.ru/hdtv/hls/43Channel_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (720p) +https://video1.in-news.ru/360/index.m3u8 +#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (1080p) [Not 24/7] +https://edge2-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/index.m3u8 +#EXTINF:-1 tvg-id="360deg.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://gl.weburg.net/00/tv/channels/1/491/bigposter/7459394.png" group-title="General",360° (576p) [Offline] +https://strm.yandex.ru/kal/360tv/360tv0.m3u8 +#EXTINF:-1 tvg-id="360degNovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",360° Новости (1080p) [Offline] +https://edge2-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/index.m3u8 +#EXTINF:-1 tvg-id="A1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lXlwfyw.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Series",A1 (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s45/index.m3u8 +#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Series",A2 (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s33/index.m3u8 +#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" group-title="Series",A2 (576p) [Not 24/7] +https://sc.id-tv.kz/A2.m3u8 +#EXTINF:-1 tvg-id="AkudjiTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Akudji TV (720p) [Offline] +https://hls.goodgame.ru/hls/5346.m3u8 +#EXTINF:-1 tvg-id="AmediaHit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016653697bea0c072bf5c5bc1c11ec/260x160" group-title="Movies",Amedia Hit (1080p) [Not 24/7] +https://sc.id-tv.kz/amedia_hit_hd.m3u8 +#EXTINF:-1 tvg-id="AmediaPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/UHo6cwX.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Amedia Premium (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s64/index.m3u8 +#EXTINF:-1 tvg-id="BackusTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YTcmkfW.png" group-title="Movies",Backus TV (720p) [Not 24/7] +http://stream.backustv.ru/live/btv/index.m3u8 +#EXTINF:-1 tvg-id="BackusTVStrashnoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GGX4vDW.png" group-title="Movies",Backus TV Страшное (720p) [Not 24/7] +http://stream.backustv.ru/live/btv2/index.m3u8 +#EXTINF:-1 tvg-id="BollywoodHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://ocdn.eu/ptv2-images-transforms/1/MU_kr5sb2dvLW1pZ3JhdGVkL2JvbGx5d29vZC1oZC5qcGeSlQJkAMLDlQIAKMLD" group-title="Movies",Bollywood HD (1080p) [Not 24/7] +https://sc.id-tv.kz/bollywood_hd.m3u8 +#EXTINF:-1 tvg-id="BridgeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/L71iY9t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Bridge TV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s34/index.m3u8 +#EXTINF:-1 tvg-id="BridgeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/L71iY9t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Bridge TV (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s78/index.m3u8 +#EXTINF:-1 tvg-id="Cinema.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.magticom.ge/images/channels/MjAxOC8wOS8xMC84YTkyNTgwNC00NDUzLTQ0YTYtYmI4NS1jYzkwZTIzNGQwZGMuanBn.jpg" group-title="Movies",Cinema (576p) [Not 24/7] +https://sc.id-tv.kz/Cinema.m3u8 +#EXTINF:-1 tvg-id="FAN.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Animation",FAN (576p) [Not 24/7] +http://194.9.27.164:8103/play/FAN/index.m3u8 +#EXTINF:-1 tvg-id="FreshTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Ju3mLgq.png" group-title="Music",FreshTV (720p) [Geo-blocked] +https://strm.yandex.ru/kal/fresh/fresh0.m3u8 +#EXTINF:-1 tvg-id="GlobalStarTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BJJN5Zp.jpg" group-title="",Global Star TV (720p) [Timeout] +http://stream2.hardlife.tv:8134/hls-live/hlsGS/_definst_/liveevent/gs.m3u8 +#EXTINF:-1 tvg-id="HDlife.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",HD life (1080p) [Not 24/7] +http://37.193.6.155:34040/udp/239.1.9.2:1234 +#EXTINF:-1 tvg-id="HDMedia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/hd-media.png" group-title="Entertainment",HD Медиа (720p) [Geo-blocked] +https://strm.yandex.ru/kal/hdmedia/hdmedia0.m3u8 +#EXTINF:-1 tvg-id="HDL.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000165a45450d78511a9a90be1b893e7/160x160" group-title="Documentary",HDL (404p) [Not 24/7] +https://sc.id-tv.kz/hdl.m3u8 +#EXTINF:-1 tvg-id="HITV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000015a657a4a9a5bdf7861005eb28a46/z" group-title="Music",HITV (1080p) [Offline] +https://strm.yandex.ru/kal/hittv/hittv0.m3u8 +#EXTINF:-1 tvg-id="Leomax24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Leomax 24 (1080p) +https://tvshops.bonus-tv.ru/cdn/shop24/playlist.m3u8 +#EXTINF:-1 tvg-id="LeomaxPlus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Leomax Plus (576p) +https://tvshops.bonus-tv.ru/cdn/discount/playlist.m3u8 +#EXTINF:-1 tvg-id="Luxury.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/luxury.png" group-title="Shop",Luxury (1080p) +http://nano.teleservice.su:8080/hls/luxury.m3u8 +#EXTINF:-1 tvg-id="MilleniumTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Millenium TV (1080p) +http://tv1.mmg.ooo/live/hd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MilleniumTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Millenium TV (540p) [Offline] +http://tv1.mmg.ooo/live/sd.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MOSOBRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/WInGwXw.png" group-title="",MOSOBR.TV (720p) +http://retj.educom.ru/mosobrtv/tv1/index.m3u8 +#EXTINF:-1 tvg-id="MOSOBRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/WInGwXw.png" group-title="",MOSOBR.TV (720p) [Not 24/7] +http://retc.educom.ru/mosobrtv/tv1/index.m3u8 +#EXTINF:-1 tvg-id="MTVmix.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",MTVmix (Уфа) (384p) [Timeout] +http://81.30.182.82:18092/hls/live.m3u8 +#EXTINF:-1 tvg-id="MusicBoxRussia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/russian_musicbox.jpg" group-title="Music",Music Box Russia (1080p) [Offline] +https://strm.yandex.ru/kal/rmbox/rmbox0.m3u8 +#EXTINF:-1 tvg-id="Olala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="XXX",O-la-la (576p) [Not 24/7] +http://194.9.27.164:8103/play/O_la_la/index.m3u8 +#EXTINF:-1 tvg-id="OceanTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a00000169818d10b7d02c8149dccf3ddbbf/368x280" group-title="",Ocean TV (576p) [Offline] +http://91.192.168.242:9091 +#EXTINF:-1 tvg-id="RadostMoya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a000001704427a91257203d4045e4fd2f2e/170x100" group-title="Kids",Radost Moya (576p) [Geo-blocked] +https://cdn-01.bonus-tv.ru/radostmoya_edge/index.m3u8 +#EXTINF:-1 tvg-id="RTAmerica.ru" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",RT America (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s96/index.m3u8 +#EXTINF:-1 tvg-id="RTAmerica.ru" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" group-title="News",RT America (1080p) [Not 24/7] +https://rt-usa.gcdn.co/live/rtusa/playlist.m3u8 +#EXTINF:-1 tvg-id="RTArabic.ru" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/RUS.png" group-title="News",RT Arabic (1080p) +https://rt-arb.gcdn.co/live/rtarab/playlist.m3u8 +#EXTINF:-1 tvg-id="RTArabic.ru" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://content.osn.com/logo/channel/cropped/RUS.png" group-title="News",RT Arabic (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCsP3Clx2qtH2mNZ6KolVoZQ/live +#EXTINF:-1 tvg-id="RTDocumentary.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/XJGki3v.png" group-title="Documentary",RT Documentary (1080p) +https://rt-rtd.gcdn.co/live/rtdoc/playlist.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) +https://hls.rt.com/hls/rtdru.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) +https://rtmp.api.rt.com/hls/rtdru.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Documentary",RT Documentary Russian (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s93/index.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) [Not 24/7] +http://uiptv.do.am/1ufc/300663722/playlist.m3u8 +#EXTINF:-1 tvg-id="RTDoc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/C6fylkt.png" group-title="Documentary",RT Documentary Russian (1080p) [Not 24/7] +https://strm.yandex.ru/kal/rtd_hd/rtd_hd0.m3u8 +#EXTINF:-1 tvg-id="RTenEspanol.ru" tvg-country="HISPAM;ES" tvg-language="Spanish" tvg-logo="" group-title="News",RT en Español (1080p) [Not 24/7] +https://rt-esp.gcdn.co/live/rtesp/playlist.m3u8 +#EXTINF:-1 tvg-id="RTFrance.ru" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/gVedXRh.png" group-title="News",RT France (1080p) +https://rt-fra.gcdn.co/live/rtfrance/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNews.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/tyXIHlj.png" group-title="News",RT News (1080p) [Not 24/7] +https://rt-glb.gcdn.co/live/rtnews/playlist.m3u8 +#EXTINF:-1 tvg-id="RTNews.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/XYJEasM.png" group-title="News",RT News (1080p) [Timeout] +https://strm.yandex.ru/kal/rt_hd/rt_hd0.m3u8 +#EXTINF:-1 tvg-id="RTUK.ru" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/zdTA0ha.png" group-title="News",RT UK (1080p) +https://rt-uk.gcdn.co/live/rtuk/playlist.m3u8 +#EXTINF:-1 tvg-id="RTGTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/x3IE7sE.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",RTG (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s80/index.m3u8 +#EXTINF:-1 tvg-id="RTGHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NymtU1E.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",RTG HD (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s63/index.m3u8 +#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (1080p) [Offline] +https://rutv.gcdn.co/streams/1410_95/playlist.m3u8 +#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (1080p) [Offline] +https://strm.yandex.ru/kal/rutv_cv/rutv_cv0.m3u8 +#EXTINF:-1 tvg-id="RUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.parsatv.com/index_files/channels/rutv.png" group-title="Music",RU.TV (360p) [Offline] +https://rut-v.gcdn.co/streams/1410_95/playlist.m3u8 +#EXTINF:-1 tvg-id="SGDF24RU.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://lime-tv.ru/uploads/posts/2018-06/thumbs/1529009151_sgdf24.png" group-title="Local",SGDF24.RU (Свердлов) (720p) [Not 24/7] +http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoppingLive.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Shop",Shopping Live (576p) [Not 24/7] +http://serv30.vintera.tv:8081/shoppinglive/shoppinglive_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ShotTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000017218405591631a616f60e82872eb/170x100" group-title="Movies",Shot TV [Not 24/7] +http://cdn.tvmatic.net/shot.m3u8 +#EXTINF:-1 tvg-id="SochiLiveHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Sochi Live HD (720p) [Not 24/7] +http://serv30.vintera.tv:8081/sochi/sochi_stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TRK555.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",TRK 555 (720p) +http://trk555.tv:8888/live +#EXTINF:-1 tvg-id="TVBRICSChinese.ru" tvg-country="CN" tvg-language="Chinese" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Chinese (1080p) [Not 24/7] +https://brics.bonus-tv.ru/cdn/brics/chinese/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSEnglish.ru" tvg-country="IN;ZA" tvg-language="English" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS English (1080p) +https://brics.bonus-tv.ru/cdn/brics/english/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSPortuguese.ru" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Portuguese (1080p) +https://brics.bonus-tv.ru/cdn/brics/portuguese/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBRICSRussian.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/vLpm8tN.png" group-title="General",TV BRICS Russian (1080p) +https://brics.bonus-tv.ru/cdn/brics/russian/playlist.m3u8 +#EXTINF:-1 tvg-id="TVPRO.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",TV PRO (576p) [Not 24/7] +http://rtmp.tvpro-online.ru/hls/ch1.m3u8 +#EXTINF:-1 tvg-id="TVGuberniya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/54380/2a00000152365a4eef84a2834ed51cf5645c/z" group-title="Local",TV Губерния (Воронеж) (720p) +https://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMChannel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001600303993465ba81955db7454887/160x120" group-title="",TVMChannel (720p) [Geo-blocked] +https://strm.yandex.ru/kal/tvm_supres/tvm_supres0.m3u8 +#EXTINF:-1 tvg-id="TVMChannel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001600303993465ba81955db7454887/160x120" group-title="",TVMChannel (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/tvm_edge/playlist.m3u8 +#EXTINF:-1 tvg-id="UniverTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Univer TV (1080p) +https://cdn.universmotri.ru/live/smil:univer.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UniverTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Univer TV (1080p) [Not 24/7] +https://cdn.universmotri.ru/live/smil:mbr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VIVARussia.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/VIVA_2011_logo.svg/1280px-VIVA_2011_logo.svg.png" group-title="Music",VIVA Russia (1080p) [Not 24/7] +https://live.prd.dlive.tv/hls/live/viva-russia.m3u8 +#EXTINF:-1 tvg-id="WorldFashionChannel.ru" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/JyslMHb.jpg" group-title="Lifestyle",World Fashion Channel (1080p) +https://wfcint.mediacdn.ru/cdn/wfcintweb/playlist.m3u8 +#EXTINF:-1 tvg-id="AbazaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Абаза ТВ (576p) [Offline] +http://watcher-node5.apsny.camera/tv_abaza_tv/index.m3u8 +#EXTINF:-1 tvg-id="Avto24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.magticom.ge/images/channels/MjAxOC8wOS8xMC9kYWM5NzU5YS1jNzNhLTRlMmYtYmQzOS1kZDUxZmM0OThhYjAuanBn.jpg" group-title="",Авто 24 (576p) [Geo-blocked] +http://185.52.77.67:8080/Avto24/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="Aris24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Арис 24 (720p) [Not 24/7] +http://serv25.vintera.tv:8081/test/aris/playlist.m3u8 +#EXTINF:-1 tvg-id="Arsenal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Арсенал (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s68/index.m3u8 +#EXTINF:-1 tvg-id="Arhyz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/LOGO_ARKHYZ24.tif/lossy-page1-1200px-LOGO_ARKHYZ24.tif.jpg" group-title="Local",Архыз 24 (1080p) +https://live.mediacdn.ru/sr1/arhis24/playlist.m3u8 +#EXTINF:-1 tvg-id="Arhyz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/LOGO_ARKHYZ24.tif/lossy-page1-1200px-LOGO_ARKHYZ24.tif.jpg" group-title="Local",Архыз 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/arhyz24/arhyz240.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) +https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/astrahan24/astrahan240.m3u8 +#EXTINF:-1 tvg-id="Astrahan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Астрахань 24 (720p) [Not 24/7] +http://83.234.104.142/astrakhan24hd/playlist.m3u8 +#EXTINF:-1 tvg-id="AstrahanRuSport.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Sports",Астрахань.Ru Sport (360p) +https://streaming.astrakhan.ru/astrakhanrusporthd/playlist.m3u8 +#EXTINF:-1 tvg-id="AstrahanRuTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Астрахань.Ru TV (1080p) +https://streaming.astrakhan.ru/astrakhanrulivehd/playlist.m3u8 +#EXTINF:-1 tvg-id="Afontovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Афонтово (Красноярск) (1080p) [Geo-blocked] +http://xstream.afontovo.ru/afontovo_ya.m3u8 +#EXTINF:-1 tvg-id="Bashkortostan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Башкортостан 24 (1080p) +http://live.gtrk.tv/hls/b24-hls.m3u8 +#EXTINF:-1 tvg-id="Bashkortostan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Башкортостан 24 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/bashkortostan24/bashkortostan240.m3u8 +#EXTINF:-1 tvg-id="Belgorod24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Белгород 24 (1080p) +http://belnovosti.cdn.easyhoster.ru:8080/stream.m3u8 +#EXTINF:-1 tvg-id="BelRos.ru" tvg-country="BY;RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Emss0Lk.png" group-title="",БелРос (576p) +http://live2.mediacdn.ru/sr1/tro/playlist.m3u8 +#EXTINF:-1 tvg-id="Bober.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001760a042565fb0b5528e2362a8c08/184x140" group-title="",Бобер (576p) [Not 24/7] +https://sc.id-tv.kz/bober.m3u8 +#EXTINF:-1 tvg-id="BolshayaAziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/bolshaya-azia.png" group-title="",Большая Азия (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/bigasia/bigasia0.m3u8 +#EXTINF:-1 tvg-id="BST.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/rxwTjuT.jpg" group-title="",БСТ (Башкирское спутниковое телевидение) (576p) +https://bsttv.bonus-tv.ru/cdn/bst/playlist.m3u8 +#EXTINF:-1 tvg-id="Vera24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Вера 24 (720p) [Timeout] +http://62.32.67.187:1935/WEB_Vera24/Vera24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VestnikNadymaPlus2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Вестник Надыма +2 (720p) [Not 24/7] +http://live-trknadym.cdnvideo.ru/trknadym-pub/trknadym.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Vetta24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a00000158de05f9d1b65984a0e705878a69/160x120" group-title="Local",Ветта 24 (Пермь) (576p) [Not 24/7] +http://serv24.vintera.tv:8081/vetta/vetta_office/playlist.m3u8 +#EXTINF:-1 tvg-id="VechernyayaMoskva.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/hLD874K.jpg" group-title="Local",Вечерняя Москва (1080p) [Not 24/7] +https://vmvideo.gcdn.co/streams/1503_161/playlist.m3u8 +#EXTINF:-1 tvg-id="VmesteRF.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a000001703efa3b743e4fd720ec96375736/170x100" group-title="",Вместе-РФ (1080p) [Geo-blocked] +http://cdn-01.bonus-tv.ru:8080/vmesterf/index.m3u8 +#EXTINF:-1 tvg-id="VmesteRF.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a000001703efa3b743e4fd720ec96375736/170x100" group-title="",Вместе-РФ (1080p) [Geo-blocked] +http://uiptv.do.am/1ufc/118056781/playlist.m3u8 +#EXTINF:-1 tvg-id="Volgograd1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Волгоград 1 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/volgograd1/volgograd10.m3u8 +#EXTINF:-1 tvg-id="Volgograd1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Волгоград 1 (576p) [Offline] +http://213.234.30.38/Live/1000k/stream.m3u8 +#EXTINF:-1 tvg-id="Vremya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001760a065ea1993452925ecf9814b5/184x140" group-title="",Время (576p) +http://91.185.3.218:4000/play/607 +#EXTINF:-1 tvg-id="VTVPlyusHerson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ВТВ Плюс (Херсон) (576p) +http://193.107.128.8:8552/play/a007 +#EXTINF:-1 tvg-id="VTVPlyusHerson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ВТВ Плюс (Херсон) (576p) +http://iptv.rubintele.com:8552/play/a007 +#EXTINF:-1 tvg-id="GALTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ГАЛ ТВ (576p) [Offline] +http://watcher-node5.apsny.camera/tv_gal_tv_hd_online/index.m3u8 +#EXTINF:-1 tvg-id="GorodskoytelekanalYaroslavl.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Городской телеканал (Ярославль) (576p) +http://www.gtk.tv/hls/gtyar.m3u8 +#EXTINF:-1 tvg-id="GuberniyaSamara.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.guberniatv.ru/img/logo.png" group-title="",Губерния (Самара) (576p) +http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Guberniya33.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Губерния 33 (Владимир) (360p) +https://live-trc33.cdnvideo.ru/trc33/trc33.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Dagestan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Дагестан (1080p) +https://dagestan.mediacdn.ru/cdn/dagestan/playlist.m3u8 +#EXTINF:-1 tvg-id="DayvingTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Outdoor",Дайвинг.TV (720p) [Geo-blocked] +https://strm.yandex.ru/kal/diving/diving0.m3u8 +#EXTINF:-1 tvg-id="Dialogiorybalke.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Диалоги о рыбалке (1080p) [Offline] +http://strm.yandex.ru/kal/dialogi/dialogi0.m3u8 +#EXTINF:-1 tvg-id="Dozhd.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000017b735a0205a0c9947555ae175d64/340x200" group-title="",Дождь (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/tvrain/tvrain0.m3u8 +#EXTINF:-1 tvg-id="Doktor.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Доктор (720p) [Not 24/7] +http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/512/index.m3u8 +#EXTINF:-1 tvg-id="Domkino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Дом кино (576p) +http://91.185.3.218:4000/play/606 +#EXTINF:-1 tvg-id="DomKinoPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.domkino-premium.tv/im/logo3d.png" group-title="Movies",Дом Кино Премиум (1080p) [Not 24/7] +https://sc.id-tv.kz/domkino_hd.m3u8 +#EXTINF:-1 tvg-id="DomkinoPremium.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.domkino-premium.tv/im/logo3d.png" group-title="Movies",Дом кино Премиум (1080p) [Offline] +http://87.247.44.26/btv/SWM/Dom_kino_Prem/Dom_kino_Prem.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",Домашний (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s88/index.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" group-title="Entertainment",Домашний (576p) [Timeout] +http://31.128.159.41:8080/domashniy/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="Dorama.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lHn6OlM.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Movies",Дорама (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s95/index.m3u8 +#EXTINF:-1 tvg-id="Dorama.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lHn6OlM.png" group-title="Movies",Дорама (1080p) [Not 24/7] +https://sc.id-tv.kz/dorama_hd.m3u8 +#EXTINF:-1 tvg-id="Evraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://eurasia.orsk.ru/images/bg.jpg" group-title="Local",Евразия (Орск) (720p) +http://infochhdcdn.trkeurasia.ru/orsk-infochhd/infochhd/playlist.m3u8 +#EXTINF:-1 tvg-id="Evraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://eurasia.orsk.ru/images/bg.jpg" group-title="Local",Евразия (Орск) (720p) +https://infochh.trkeurasia.ru/hlsinfoch/infochhd.m3u8 +#EXTINF:-1 tvg-id="Evronovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Евроновости (540p) +http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist.m3u8 +#EXTINF:-1 tvg-id="Evronovosti.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Евроновости (720p) [Offline] +https://strm.yandex.ru/kal/euronews_supres/euronews_supres0.m3u8 +#EXTINF:-1 tvg-id="Enisey.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Енисей (1080p) [Not 24/7] +http://hls-eniseytv.cdnvideo.ru/eniseytv/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="ZharPtica.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zhar-ptica.tv/sites/default/files/logo.png" group-title="Music",Жар Птица (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/firebird/firebird0.m3u8 +#EXTINF:-1 tvg-id="ZharPtica.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zhar-ptica.tv/sites/default/files/logo.png" group-title="Music",Жар Птица (404p) [Geo-blocked] +http://streamer.rtcommufa.ru:1935/ptica/ptica1/playlist.m3u8 +#EXTINF:-1 tvg-id="Zhara.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Жара (576p) [Not 24/7] +http://185.161.224.216/dash/JaraTv_SD.ism/playlist.mpd +#EXTINF:-1 tvg-id="Zagorodnyy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/RAfV5p7.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Загородный (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s31/index.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Звезда (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s85/index.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" group-title="General",Звезда (1080p) [Not 24/7] +https://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/yy0YpWT.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Зоо ТВ (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s92/index.m3u8 +#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (1080p) +http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8 +#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (720p) +https://hls-igi.cdnvideo.ru/igi/igi_sq/playlist.m3u8 +#EXTINF:-1 tvg-id="Indiyskoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Индийское кино (576p) [Not 24/7] +https://sc.id-tv.kz/Indiiskoe_kino.m3u8 +#EXTINF:-1 tvg-id="Istoriya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/7fZXK7y.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",История (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s40/index.m3u8 +#EXTINF:-1 tvg-id="K16Sarov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",К16 (Саров) (406p) [Not 24/7] +http://serv25.vintera.tv:8081/test/k16/playlist.m3u8 +#EXTINF:-1 tvg-id="KabbalaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://kab.tv/static/images/kab_tv_rus.gif" group-title="Religious",Каббала ТВ (360p) [Not 24/7] +https://edge2.uk.kab.tv/live/tvrus-rus-medium/playlist.m3u8 +#EXTINF:-1 tvg-id="Kavkaz24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Кавказ 24 (720p) [Geo-blocked] +https://strm.yandex.ru/kal/kavkaz24_supres/kavkaz24_supres0.m3u8 +#EXTINF:-1 tvg-id="KarapuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Карапуз ТВ (1080p) [Offline] +https://karapuztv.fenixplustv.xyz/content/33418/index.m3u8 +#EXTINF:-1 tvg-id="Karusel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a0000017019a2436d387c572a4650c86f92/160x120" group-title="Kids",Карусель (576p) +http://91.185.3.218:4000/play/604 +#EXTINF:-1 tvg-id="Kinokomediya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Comedy",Кинокомедия (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinokomediya_hd.m3u8 +#EXTINF:-1 tvg-id="Kinomiks.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/27485/2a0000015bb472ae3ff1dedcb38b4b362388/160x160" group-title="Movies",Киномикс (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinomix_hd.m3u8 +#EXTINF:-1 tvg-id="Kinopremera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Кинопремьера (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinopremiera_hd.m3u8 +#EXTINF:-1 tvg-id="Kinosvidanie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015bb474d235c58fbb8b79da50b038/160x120" group-title="Movies",Киносвидание (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinosvidanie_hd.m3u8 +#EXTINF:-1 tvg-id="Kinosemya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Киносемья (1080p) [Not 24/7] +https://sc.id-tv.kz/Kinosemiya_hd.m3u8 +#EXTINF:-1 tvg-id="Kinohit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000015bb478064785642d83eab5025536/160x160" group-title="Movies",Кинохит (404p) [Not 24/7] +https://sc.id-tv.kz/Kinohit_hd.m3u8 +#EXTINF:-1 tvg-id="KlassikaKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Классика Кино (720p) [Geo-blocked] +https://strm.yandex.ru/kal/kinoclassic/kinoclassic0.m3u8 +#EXTINF:-1 tvg-id="Komediynoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016929eb3477b344281e4cc3d0850b/170x100" group-title="",Комедийное (540p) [Timeout] +http://185.97.150.19:8082/2402 +#EXTINF:-1 tvg-id="Komediya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Comedy",Комедия (576p) [Not 24/7] +http://188.40.68.167/russia/komediya/playlist.m3u8 +#EXTINF:-1 tvg-id="KonnyyMir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Конный Мир (576p) [Geo-blocked] +http://cdn-01.bonus-tv.ru/konnyimir/playlist.m3u8 +#EXTINF:-1 tvg-id="Krasnayaliniya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Красная линия (480p) +https://kprf-htlive.cdn.ngenix.net/live/stream_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KrasnogorskTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Красногорск ТВ (480p) [Not 24/7] +http://live-krtv.cdnvideo.ru/krtv/krtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KrikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://ricekb.ru/img/logo.png" group-title="",Крик-ТВ (576p) [Geo-blocked] +https://strm.yandex.ru/kal/krik_tv/krik_tv0.m3u8 +#EXTINF:-1 tvg-id="Krym24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://1tvcrimea.ru/assets/images/live_crimea24.png" group-title="",Крым 24 (540p) [Not 24/7] +http://mr2live.1tvcrimea.ru:8080/24tvcrimea.m3u8 +#EXTINF:-1 tvg-id="Kuban24Orbita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a00000179f0403b82971b0d6690045629c4/428x280" group-title="",Кубань 24 Орбита (576p) +https://stream.kuban24.tv:1500/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Kuzbass1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Кузбасс 1 (1080p) [Not 24/7] +https://www.10kanal.ru:1443/10kanal/k24/playlist.m3u8 +#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Culture",Культура (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s16/index.m3u8 +#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" user-agent="Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.84 Safari/537.36 CrKey/1.21a.76178" group-title="Culture",Культура (1920p) [Geo-blocked] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.84 Safari/537.36 CrKey/1.21a.76178 +https://zabava-htlive.cdn.ngenix.net/hls/CH_RUSSIAK/variant.m3u8 +#EXTINF:-1 tvg-id="Kultura.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/jzhrYJq.png" group-title="Culture",Культура (576p) [Timeout] +http://uiptv.do.am/1ufc/000000005/playlist.m3u8 +#EXTINF:-1 tvg-id="Kuray.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/AxgNvdp.png" group-title="",Курай (576p) +https://bsttv.bonus-tv.ru/cdn/kurai/playlist.m3u8 +#EXTINF:-1 tvg-id="KFUTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",КФУ ТВ (1080p) [Not 24/7] +https://cdn.universmotri.ru/live/kfu.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (1080p) +http://46.46.143.222:1935/live/mp4:ldpr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (720p) +http://46.46.143.222:1935/live/mp4:ldpr.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="LDPRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/ldpr-tv.png" group-title="General",ЛДПР ТВ (480p) +http://46.46.143.222:1935/live/mp4:ldpr.stream_480p/playlist.m3u8 +#EXTINF:-1 tvg-id="Lipeckoevremya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Липецкое время (576p) [Not 24/7] +http://serv25.vintera.tv:8081/liptime/liptime/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVProza.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Проза (720p) +http://hls-rossp.cdnvideo.ru/hls/5ace67f0dc96bf0a90d8a2b7/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVSlovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Слово (720p) +http://hls-rossp.cdnvideo.ru/hls/5ace6814e563f22e4ddc1f44/playlist.m3u8 +#EXTINF:-1 tvg-id="LitKlubTVStihi.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Culture",ЛитКлуб ТВ Стихи (720p) +http://hls-rossp.cdnvideo.ru/hls/5aac88ffdc96bf05a7f78899/playlist.m3u8 +#EXTINF:-1 tvg-id="LuchPurovsk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://trk-luch.ru.opt-images.1c-bitrix-cdn.ru/bitrix/templates/.default/static/images/logo.png" group-title="Local",Луч (Пуровск) (720p) [Not 24/7] +https://live.trk-luch.ru/hls/live.m3u8 +#EXTINF:-1 tvg-id="LyubimoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Любимое.ТВ (720p) [Geo-blocked] +https://strm.yandex.ru/kal/lovedtv/lovedtv0.m3u8 +#EXTINF:-1 tvg-id="MirPlus3.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мir +3 (576p) [Not 24/7] +https://sc.id-tv.kz/Mir.m3u8 +#EXTINF:-1 tvg-id="MaturTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Матур ТВ (1080p) +https://public.streaming.matur-tv.ru/hls/h264_aac/stream.m3u8 +#EXTINF:-1 tvg-id="MezhduNetMezhdurechensk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Между.Net (Междуреченск) (720p) [Not 24/7] +http://212.77.128.179:8089/www_mezhdunet/mezhdunet/playlist.m3u8 +#EXTINF:-1 tvg-id="Millet.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Миллет (540p) [Not 24/7] +http://live.trkmillet.ru/millet/index.m3u8 +#EXTINF:-1 tvg-id="Ministerstvoidey.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Министерство идей (720p) +http://live-minidey.cdnvideo.ru/minidey/minidey.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (1080p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (1080p) [Not 24/7] +http://uiptv.do.am/1ufc/113500247/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мир +2 (540p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv2_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus4.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CrFWXTD.png" group-title="",Мир +4 (540p) [Not 24/7] +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv3_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="MirPlus7.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мир +7 (540p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv7_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) +http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mir24_2500/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (1080p) [Not 24/7] +http://188.40.68.167/russia/mir24/playlist.m3u8 +#EXTINF:-1 tvg-id="Mir24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_24_ru.jpg" group-title="News",Мир 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Mir24.m3u8 +#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир/0белогорья_логотип.jpg" group-title="Local",Мир Белагорья (720p) [Geo-blocked] +http://mirbelogorya.ru:8080/mirbelogorya/index.m3u8 +#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир/0белогорья_логотип.jpg" group-title="Local",Мир Белогорья (720p) [Geo-blocked] +http://live-mirbelogorya.cdnvideo.ru/mirbelogorya/mirbelogorya1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="MirBelogorya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://mirbelogorya.ru/images/stories/news/2014/08/мир%20белогорья_логотип.jpg" group-title="Local",Мир Белогорья (720p) [Geo-blocked] +http://stream.tvbelgorod.ru:8080/mirbelogorya/index.m3u8 +#EXTINF:-1 tvg-id="MirSeriala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-shows/30293/2a0000015185955d7731ca25c05f77b58880/orig" group-title="",Мир Сериала (576p) [Not 24/7] +http://185.161.224.216/dash/Mir_seriala_SD.ism/playlist.mpd +#EXTINF:-1 tvg-id="Mirseriala.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Мир сериала (576p) [Not 24/7] +http://188.40.68.167/russia/mir_seriala/playlist.m3u8 +#EXTINF:-1 tvg-id="Mistoplyus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мисто плюс (720p) [Timeout] +http://93.78.206.172:8080/stream5/stream.m3u8 +#EXTINF:-1 tvg-id="Mistoplyus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мисто плюс (480p) [Timeout] +http://93.78.206.172:8080/stream4/stream.m3u8 +#EXTINF:-1 tvg-id="Mordoviya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Мордовия 24 (360p) [Not 24/7] +https://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8 +#EXTINF:-1 tvg-id="Morskoy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Морской (720p) [Not 24/7] +http://88b9da48.kazmazpaz.ru/iptv/D7M94NBVB5DLFS/742/index.m3u8 +#EXTINF:-1 tvg-id="Moskva24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BOry400.png" group-title="Local",Москва 24 (720p) [Offline] +https://strm.yandex.ru/kal/msk24_supres/msk24_supres0.m3u8 +#EXTINF:-1 tvg-id="Moskva24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BOry400.png" group-title="Local",Москва 24 (576p) [Offline] +https://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist.m3u8 +#EXTINF:-1 tvg-id="Moyaplaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://digitalrussia.tv/upload/files/mp.png" group-title="",Моя планета (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/master.m3u8 +#EXTINF:-1 tvg-id="MoyaPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70263/2a00000164125e2a9c190a856c5f1c67d358/260x160" group-title="",Моя Планета (576p) [Offline] +https://a3569456481-s26881.cdn.ngenix.net/live/smil:mplan.smil/index.m3u8 +#EXTINF:-1 tvg-id="MTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://xn--b1ats.xn--80asehdb/img/logo.png" group-title="Local",МТВ (Волгоград) (720p) [Not 24/7] +http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Muzhskoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Мужское кино (1080p) [Not 24/7] +https://sc.id-tv.kz/Mujskoe_kino_hd.m3u8 +#EXTINF:-1 tvg-id="Muzsoyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Муз союз (576p) +http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Муз-ТВ (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s28/index.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" group-title="Music",Муз-ТВ (720p) [Offline] +https://strm.yandex.ru/kal/muztv_supres/muztv_supres0.m3u8 +#EXTINF:-1 tvg-id="MuzSoyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a0000016585fe3d303aaed2be3e04b85166/170x100" group-title="",МузСоюз (576p) +http://hls.tvsoyuz.cdnvideo.ru/tvsoyuz2/muzsoyuz.6fw0-58xp-acts-esy0/playlist.m3u8 +#EXTINF:-1 tvg-id="MuzikaPervogo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/muz1.png" group-title="Music",Музыка Первого (576p) +http://91.185.3.218:4000/play/608 +#EXTINF:-1 tvg-id="Multilandiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/OwA1zSH.png" group-title="Kids",Мультиландия (576p) [Geo-blocked] +http://serv30.vintera.tv:8081/detskiy/multimania20/playlist.m3u8 +#EXTINF:-1 tvg-id="Nadezhda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://hopetv.ru/wp-content/themes/hope.ua/public/img/header-hopeLogo.png" group-title="Religious",Надежда (720p) +https://live-tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Nadezhda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://hopetv.ru/wp-content/themes/hope.ua/public/img/header-hopeLogo.png" group-title="Religious",Надежда (720p) +https://tvhope.cdnvideo.ru/tvhope-pull/tvhope_1/playlist.m3u8 +#EXTINF:-1 tvg-id="Nano.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Нано (540p) +http://nano.teleservice.su:8080/hls/nano.m3u8 +#EXTINF:-1 tvg-id="Nauka.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/1656757/2a0000017014a842438531fe936e01c14776/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Наука (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s98/index.m3u8 +#EXTINF:-1 tvg-id="Nashdom.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://pp.userapi.com/c5200/g33405934/a_1fa4a8a6.jpg" group-title="",Наш дом [Not 24/7] +http://85.234.33.60/stream/c11.m3u8 +#EXTINF:-1 tvg-id="NashaSibir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/nasha-sibir.png" group-title="Travel",Наша Сибирь (1080p) [Offline] +https://strm.yandex.ru/kal/sibir/sibir0.m3u8 +#EXTINF:-1 tvg-id="NashaSibirKemerovo.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Наша Сибирь / Кемерово (480p) [Not 24/7] +https://strm.yandex.ru/kal/sibir/sibir0_169_480p.json/index-v1-a1.m3u8 +#EXTINF:-1 tvg-id="NasheKrutoeHD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Наше Крутое HD (720p) [Not 24/7] +http://ba5729d5.krasnafhg.ru/iptv/EAEWFFWBXPVVLY/915/index.m3u8 +#EXTINF:-1 tvg-id="NasheNovoeKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000015bb47bf0be402e2ca5127a767647/z" group-title="",Наше Новое Кино [Not 24/7] +https://s1.idata.uz/stch_temp6/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="NVKSaha.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",НВК Саха (1080p) [Not 24/7] +http://live-saha.cdnvideo.ru/saha/saha/playlist.m3u8 +#EXTINF:-1 tvg-id="NizhniyNovgorod24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Нижний Новгород 24 (720p) [Not 24/7] +https://live-vestinn.cdnvideo.ru/vestinn/nn24-khl/playlist.m3u8 +#EXTINF:-1 tvg-id="NikaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://nikatv.ru/public/img/logo2.png" group-title="",Ника ТВ (576p) [Not 24/7] +https://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Novoeradio.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Новое радио (1080p) +https://hls-video01.cdnvideo.ru/video01/smil:video01.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новое ТВ (576p) [Not 24/7] +http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NovoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новое ТВ (404p) [Not 24/7] +https://sc.id-tv.kz/New_Television.m3u8 +#EXTINF:-1 tvg-id="NovorossiyaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новороссия ТВ (720p) +http://ott.inmart.tv:8081/19/index.m3u8 +#EXTINF:-1 tvg-id="Novyymir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Новый мир (406p) [Not 24/7] +http://stream.studio360.tv/nw/nw_576p/playlist.m3u8 +#EXTINF:-1 tvg-id="Noyabrsk24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Ноябрьск 24 (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/noyabrsk24/noyabrsk240.m3u8 +#EXTINF:-1 tvg-id="NTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/i6wrwKy.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",НТВ (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s17/index.m3u8 +#EXTINF:-1 tvg-id="NTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/i6wrwKy.png" group-title="",НТВ (576p) [Timeout] +http://31.128.159.41:8080/ntv/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="NTVStil.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",НТВ Стиль (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s77/index.m3u8 +#EXTINF:-1 tvg-id="NTM.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",НТМ (Народное телевидение Мордовии) (720p) [Not 24/7] +https://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NTSSevastopol.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",НТС (Севастополь) (1080p) [Not 24/7] +https://peqk71plnjy.a.trbcdn.net/livemaster/w4kz7pki62_nts_tv/playlist.m3u8 +#EXTINF:-1 tvg-id="O.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",О! (576p) [Not 24/7] +https://sc.id-tv.kz/o.m3u8 +#EXTINF:-1 tvg-id="O2TV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://ustanovca-tricorol-tv.ru/wp-content/uploads/2017/12/o-tv.png" group-title="",О2ТВ (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/o2/o20.m3u8 +#EXTINF:-1 tvg-id="Oplot2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Оплот 2 (1080p) +http://ott.inmart.tv:8081/17/index.m3u8 +#EXTINF:-1 tvg-id="OplotTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Оплот ТВ (1080p) +http://ott.inmart.tv:8081/54/index.m3u8 +#EXTINF:-1 tvg-id="Ostrosyuzhetnoe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Остросюжетное (540p) [Timeout] +http://185.97.150.19:8082/2235 +#EXTINF:-1 tvg-id="OTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ОТВ (Одинцово) (576p) +http://185.18.4.16/live/3m/playlist.m3u8 +#EXTINF:-1 tvg-id="OTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/otr_ru.png" group-title="General",ОТР (720p) [Offline] +https://strm.yandex.ru/kal/otr/otr0.m3u8 +#EXTINF:-1 tvg-id="OTS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ОТС (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/otstv/otstv0.m3u8 +#EXTINF:-1 tvg-id="OhotnikiRybolov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/k1Gt1Rc.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Outdoor",Охотник и Рыболов (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s62/index.m3u8 +#EXTINF:-1 tvg-id="OhotnikirybolovInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Outdoor",Охотник и рыболов International (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/ohotnik/ohotnik0.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал (576p) +http://91.185.3.218:4000/play/603 +#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="General",Первый канал (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s14/04.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал [Offline] +https://cdn1.mobiletv.bg/T5/perviy_kanal/perviy_kanal_794613_850k.m3u8 +#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Первый канал Евразия (576p) [Not 24/7] +https://sc.id-tv.kz/1KanalEvraziya.m3u8 +#EXTINF:-1 tvg-id="PervyykanalEvraziya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="General",Первый канал Евразия (396p) [Not 24/7] +http://stream.euroasia.lfstrm.tv/perviy_evrasia/1/index.m3u8 +#EXTINF:-1 tvg-id="Pervyykrymskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://1tvcrimea.ru/assets/images/live_1tvcrimea.png" group-title="",Первый крымский (540p) [Not 24/7] +http://mrlive.1tvcrimea.ru:8080/1tvcrimea.m3u8 +#EXTINF:-1 tvg-id="PervyyPskovskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый Псковский (540p) [Not 24/7] +http://194.190.78.91/pskov/rewind-10800.m3u8 +#EXTINF:-1 tvg-id="Pervyyrespublikanskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый республиканский (720p) +http://ott.inmart.tv:8081/18/index.m3u8 +#EXTINF:-1 tvg-id="PervyyTulskiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Первый Тульский (576p) [Not 24/7] +http://5.164.24.83/tula/1tv_low/index.m3u8 +#EXTINF:-1 tvg-id="Planeta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Планета [Offline] +https://cdn1.mobiletv.bg/T5/planeta/planeta_794613_850k.m3u8 +#EXTINF:-1 tvg-id="Pobeda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/DOtCK9V.png" group-title="",Победа (576p) [Not 24/7] +https://sc.id-tv.kz/Pobeda.m3u8 +#EXTINF:-1 tvg-id="Pobeda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/DOtCK9V.png" group-title="",Победа (576p) [Offline] +http://87.247.44.26/btv/SWM/Pobeda/Pobeda.m3u8 +#EXTINF:-1 tvg-id="Poehali.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/55846/2a00000176184d54b879d516f6f83670c5af/260x160" group-title="",Поехали! (576p) [Not 24/7] +https://sc.id-tv.kz/poehali.m3u8 +#EXTINF:-1 tvg-id="Prima.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Прима (1920p) +https://rt-sib-krsk-htlive.cdn.ngenix.net/hls/CH_R11_OTT_SIB_KRSK_STS/variant.m3u8 +#EXTINF:-1 tvg-id="PRNK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ПРНК (720p) [Not 24/7] +http://serv25.vintera.tv:8081/1pnk/1pnk/playlist.m3u8 +#EXTINF:-1 tvg-id="Prodvizhenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Продвижение (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/prodvizheniye/prodvizheniye0.m3u8 +#EXTINF:-1 tvg-id="Prosveshchenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Просвещение (540p) [Geo-blocked] +https://cdn-01.bonus-tv.ru/prosveschenie_edge/playlist.m3u8 +#EXTINF:-1 tvg-id="PyatnicaInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CNOYAUN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Пятница! International (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s50/index.m3u8 +#EXTINF:-1 tvg-id="Radio10.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио 10 (1024p) [Not 24/7] +http://langate.tv/acc/playlist.m3u8 +#EXTINF:-1 tvg-id="Radio1018.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио 101.8 (540p) +https://video.penzainform.ru/e/r1018.m3u8 +#EXTINF:-1 tvg-id="RadioGovoritMoskva.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Говорит Москва (404p) [Not 24/7] +http://video.govoritmoskva.ru:8080/live/rufmbk-1/index.m3u8 +#EXTINF:-1 tvg-id="RadioGovoritMoskvaVebkamera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Говорит Москва (Веб-камера) (720p) +https://video.govoritmoskva.ru/rufm/index.m3u8 +#EXTINF:-1 tvg-id="RadioPilot.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио Пилот (720p) [Not 24/7] +https://pilotfm.ru/cam/hls/pilothd.m3u8 +#EXTINF:-1 tvg-id="RadioRossiiChuvashiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Радио России (Чувашия) (720p) [Not 24/7] +https://chgtrk.ru/pl/stream/hls/RR_720p/index.m3u8 +#EXTINF:-1 tvg-id="radioHitTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",радио Хит ТВ (300p) +http://lova.me/hls/hit.m3u8 +#EXTINF:-1 tvg-id="RadioShanson.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://lion-tv.com/uploads/posts/2016-09/1472964269_178.png" group-title="Music",Радио Шансон (720p) [Not 24/7] +http://chanson-video.hostingradio.ru:8080/hls/chansonabr/live.m3u8 +#EXTINF:-1 tvg-id="RamenskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Раменское ТВ (720p) [Timeout] +https://rtv.facecast.io/rtv/0.m3u8 +#EXTINF:-1 tvg-id="Ratnik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015edc52c7dc8869cca66117c5a828/z" group-title="Entertainment",Ратник (1080p) +https://online-video.rbc.ru/online/rbctv.m3u8 +#EXTINF:-1 tvg-id="Ratnik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a0000015edc52c7dc8869cca66117c5a828/z" group-title="Entertainment",Ратник (1080p) [Geo-blocked] +http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (576p) +http://uiptv.do.am/1ufc/701293058/playlist.m3u8 +#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (560p) +http://92.50.128.180/utv/1358/index.m3u8 +#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg" group-title="Business",РБК (720p) [Geo-blocked] +https://strm.yandex.ru/kal/rbc_supres/rbc_supres0.m3u8 +#EXTINF:-1 tvg-id="RBK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/AGj8EJF.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Business",РБК (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s36/index.m3u8 +#EXTINF:-1 tvg-id="Region29.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Регион 29 (Архангельск) (720p) [Geo-blocked] +http://live-atkmedia.cdnvideo.ru/atkmedia/atkmedia/playlist.m3u8 +#EXTINF:-1 tvg-id="RENTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016e89588796d4590c9dd4dda32ffc/170x100" group-title="General",РЕН ТВ (576p) +http://ad-hls-rentv.cdnvideo.ru/ren/smil:ren.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RENTVInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",РЕН ТВ International (576p) [Not 24/7] +https://sc.id-tv.kz/RenTV.m3u8 +#EXTINF:-1 tvg-id="RZhDTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rzd_russian_railways.jpg" group-title="",РЖД ТВ (720p) [Geo-blocked] +http://hls.tva.cdnvideo.ru/tva/tvahd.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="RZhDTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/rzd_russian_railways.jpg" group-title="",РЖД ТВ (360p) [Geo-blocked] +http://hls.tva.cdnvideo.ru/tva/tva.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Rodnoekino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Родное кино (576p) [Not 24/7] +https://sc.id-tv.kz/Rodnoe_kino.m3u8 +#EXTINF:-1 tvg-id="Rodnoykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Родной канал (720p) [Not 24/7] +https://n1.slavmir.tv/live/slavmir/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Kaluga.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="Local",Россия 1 (Калуга) (202p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/vgtrkrtmp/smil:kaluga_r1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1MariyEl.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="Local",Россия 1 (Марий Эл) (720p) [Offline] +http://gtrkmariel-live.cdnvideo.ru/gtrkmariel/gtrkmariel/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Plus6.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 +6 (360p) +https://gtrkchita.ru:8081/hls/r1-chita_360p.m3u8 +#EXTINF:-1 tvg-id="Rossiya1Plus6.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 +6 (180p) +https://gtrkchita.ru:8081/hls/r1-chita_180p.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (720p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (720p) [Not 24/7] +https://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (576p) [Not 24/7] +http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (576p) [Not 24/7] +http://uiptv.do.am/1ufc/000000006/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",Россия 24 (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s21/index.m3u8 +#EXTINF:-1 tvg-id="Rossiya24NNovgorod.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Н.Новгород) (576p) [Not 24/7] +https://live-vestinn.cdnvideo.ru/vestinn/vestinn/playlist.m3u8 +#EXTINF:-1 tvg-id="Rossiya24Chita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Чита) (576p) +https://gtrkchita.ru:8081/hls/r24-chita_576p.m3u8 +#EXTINF:-1 tvg-id="Rossiya24Chita.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="News",Россия 24 (Чита) (360p) +https://gtrkchita.ru:8081/hls/r24-chita_360p.m3u8 +#EXTINF:-1 tvg-id="RossiyaK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600801de5fbb57debf44353568ee/orig" group-title="Culture",Россия К (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist.m3u8 +#EXTINF:-1 tvg-id="RossiyaRTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Россия РТР (576p) [Not 24/7] +http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RossiyaRTR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Россия РТР [Timeout] +https://a3569455801-s26881.cdn.ngenix.net/live/smil:rtrp.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Rostovpapa.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ростов-папа (1080p) +http://live-rostovpapa.cdnvideo.ru/rostovpapa/rostovpapa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="RTRPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/5D1gwiv.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",РТР-Планета (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s15/index.m3u8 +#EXTINF:-1 tvg-id="RusskiyDetektiv.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001519d38ee83d3d076e8fb0c6d1e54/z" group-title="",Русский Детектив (576p) [Timeout] +http://78.58.133.179:28000/play/a01t/index.m3u8 +#EXTINF:-1 tvg-id="RusskiyDetektiv.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a000001519d38ee83d3d076e8fb0c6d1e54/z" group-title="",Русский Детектив (576p) [Timeout] +http://193.33.88.172/rus-detective/playlist.m3u8 +#EXTINF:-1 tvg-id="RusskiySever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Русский Север (Вологда) (1080p) +http://185.186.142.16/streams.rs.m3u8 +#EXTINF:-1 tvg-id="RusskiyEkstrim.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Русский Экстрим [Timeout] +http://vid.extremtv.ru/hls_get/cameraFeed.m3u8 +#EXTINF:-1 tvg-id="Rybolov.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70263/2a000001715ed9f583fff05677a02fd9c186/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Рыболов (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s55/index.m3u8 +#EXTINF:-1 tvg-id="Ryzhiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/QlncxbD.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Рыжий (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s57/index.m3u8 +#EXTINF:-1 tvg-id="Ryzhiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/QlncxbD.png" group-title="",Рыжий (576p) [Geo-blocked] +http://serv30.vintera.tv:8081/detskiy/ryzhiy_08/playlist.m3u8 +#EXTINF:-1 tvg-id="S1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://sitv.ru/img/stv-news/111111/S1_logo.jpg" group-title="Local",С1 (Сургут) (1080p) [Not 24/7] +https://sitv.ru/hls/stv.m3u8 +#EXTINF:-1 tvg-id="Salyam.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/thfF7IJ.jpg" group-title="",Салям (576p) +https://bsttv.bonus-tv.ru/cdn/salyam/playlist.m3u8 +#EXTINF:-1 tvg-id="SamaraGIS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Самара ГИС (1080p) [Not 24/7] +http://45.67.57.9:8080/new/new/playlist.m3u8 +#EXTINF:-1 tvg-id="Saratov24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Саратов 24 (1080p) [Not 24/7] +https://saratov24.tv/online/playlist.php +#EXTINF:-1 tvg-id="Sarafan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/AgX6qoz.png" group-title="",Сарафан (576p) [Not 24/7] +http://195.26.83.96:7024/play/82 +#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) +https://live.mediacdn.ru/sr1/sever/playlist.m3u8 +#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) +https://live2.mediacdn.ru/sr1/sever-mobile/playlist.m3u8 +#EXTINF:-1 tvg-id="Sever.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.visitnao.ru/upload/iblock/1c0/1c0bd0c468ce71c2c0deab8ee728440a.png" group-title="Local",Север (Нарьян-Мар) (1080p) +https://live2.mediacdn.ru/sr1/sever/playlist.m3u8 +#EXTINF:-1 tvg-id="SelengaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Селенга ТВ (576p) +http://90.188.37.86/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Siesta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Сиеста (720p) [Not 24/7] +https://1hdru-hls-otcnet.cdnvideo.ru/siesta/index.m3u8 +#EXTINF:-1 tvg-id="SmaylikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://smilik.tv/wp-content/uploads/2016/02/Desktop_-1.png" group-title="Kids",Смайлик ТВ (720p) [Not 24/7] +http://62.32.67.187:1935/WEB_Smilik/ngrp:Smilik.stream-adaptive/playlist.m3u8 +#EXTINF:-1 tvg-id="SmaylikTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://smilik.tv/wp-content/uploads/2016/02/Desktop_-1.png" group-title="Kids",Смайлик ТВ (720p) [Timeout] +http://62.32.67.187:1935/WEB_Smilik/Smilik.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="SolnechnogorskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://solntv.ru/images/stv-logo-hq.png" group-title="Local",Солнечногорское ТВ (360p) [Geo-blocked] +http://hls.solntv.cdnvideo.ru/solntv/solntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Soyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://tv-soyuz.ru/static/img/logo.png" group-title="Religious",Союз (576p) +http://hls-tvsoyuz.cdnvideo.ru/tvsoyuz/soyuz/playlist.m3u8 +#EXTINF:-1 tvg-id="Soyuz.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://tv-soyuz.ru/static/img/logo.png" group-title="Religious",Союз (1080p) [Geo-blocked] +https://strm.yandex.ru/kal/soyuz/soyuz0.m3u8 +#EXTINF:-1 tvg-id="Spas.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6IcWl5r.png" group-title="Religious",СПАС (576p) +http://spas.mediacdn.ru/cdn/spas/playlist.m3u8 +#EXTINF:-1 tvg-id="Start.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Sports",Старт (1080p) [Offline] +https://strm.yandex.ru/kal/start/start0.m3u8 +#EXTINF:-1 tvg-id="STVKazahstan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",СТВ Казахстан (576p) [Not 24/7] +https://sc.id-tv.kz/STV.m3u8 +#EXTINF:-1 tvg-id="StranaFM.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Music",Страна FM (720p) [Not 24/7] +http://live.stranafm.cdnvideo.ru/stranafm/stranafm_hd.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="STRK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",СТРК (720p) [Not 24/7] +http://sochinskayatrk.ru/hdtv/hls/strc_hd/playlist.m3u8 +#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Family",СТС (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s52/04.m3u8 +#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" group-title="Family",СТС (576p) [Not 24/7] +https://sc.id-tv.kz/STS.m3u8 +#EXTINF:-1 tvg-id="Surgut24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://online-red.com/images/tv/surgut-24.png" group-title="Local",Сургут 24 (720p) [Not 24/7] +https://video1.in-news.ru/c24/index.m3u8 +#EXTINF:-1 tvg-id="TaktRenTVKursk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Такт/Рен ТВ (Курск) (294p) [Not 24/7] +http://109.194.62.29:8080 +#EXTINF:-1 tvg-id="Tamyr.ru" tvg-country="RU" tvg-language="Bashkir" tvg-logo="https://i.imgur.com/ySedtZl.png" group-title="Kids",Тамыр (576p) +https://bsttv.bonus-tv.ru/cdn/tamyr/playlist.m3u8 +#EXTINF:-1 tvg-id="Tatarstan24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.zelenodolsk.ru/share/images/base/7/170_157352.jpg" group-title="Local",Татарстан24 (1080p) [Not 24/7] +http://stream.efir24.tv:1935/live/efir24tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TBN.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТБН (720p) [Timeout] +http://62.32.67.187:1935/WEB_TBN/TBN.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEvropa.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВ Европа [Offline] +https://cdn1.mobiletv.bg/T10/tvevropa/tvevropa_794613_850k.m3u8 +#EXTINF:-1 tvg-id="TVKvarc.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ТВ Кварц (576p) [Not 24/7] +https://video.quartztelecom.ru:18080/hls/2386168/71fe656b993c510f39a5/playlist.m3u8 +#EXTINF:-1 tvg-id="TVCentr.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fIkd01t.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",ТВ Центр (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s54/index.m3u8 +#EXTINF:-1 tvg-id="TVCentr.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/fIkd01t.png" group-title="",ТВ Центр (432p) +http://uiptv.do.am/1ufc/000000009/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEkstra.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВ Экстра (720p) +http://live-1.otcnet.ru/tvextra720b/index.m3u8 +#EXTINF:-1 tvg-id="TV3.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600802e79513a318979d766e2a3b/orig" group-title="",ТВ-3 (1080p) [Timeout] +http://bar-timeshift-inet.ll-bar.zsttk.ru:8080/tv3/playlist.m3u8 +#EXTINF:-1 tvg-id="TVK24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВК 24 (576p) +http://air.tvk6.ru/tvk24/playlist.m3u8 +#EXTINF:-1 tvg-id="TVR24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ТВР24 (Сергиев Посад) (1080p) [Not 24/7] +https://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTUR.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Travel",ТВТУР (720p) [Geo-blocked] +https://strm.yandex.ru/kal/tvtour/tvtour0.m3u8 +#EXTINF:-1 tvg-id="TVCMezhdunarodnyy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТВЦ (Международный) (576p) [Timeout] +http://ad-hls-tvc.cdnvideo.ru/tvc-p222/smil:tvc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TDK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/tdk.png" group-title="",ТДК (576p) [Not 24/7] +https://sc.id-tv.kz/TDK-42.m3u8 +#EXTINF:-1 tvg-id="Telekanal86.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://online-red.com/images/tv/86.png" group-title="Local",Телеканал 86 (Сургут) (1080p) [Not 24/7] +https://sitv.ru/hls/s86.m3u8 +#EXTINF:-1 tvg-id="Telecafe.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016285b7ee7ed6e5120fb155f395f6/428x280" group-title="",Телекафе (576p) +http://91.185.3.218:4000/play/605 +#EXTINF:-1 tvg-id="Teleputeshestviya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a000001662fa9eb27aefc58bb87bcf68f33/260x160" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Travel",Телепутешествия (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s71/index.m3u8 +#EXTINF:-1 tvg-id="TelestanciyaMIRNovosibirsk.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Телестанция МИР (Новосибирск) (720p) [Not 24/7] +http://serv30.vintera.tv:8081/stanciya_mir/mir/playlist.m3u8 +#EXTINF:-1 tvg-id="TelplyusTVAstrahan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Телплюс ТВ (Астрахань) (360p) [Not 24/7] +http://streaming.astrakhan.ru/telplushd/playlist.m3u8 +#EXTINF:-1 tvg-id="Tivikom.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Тивиком (Улан-Удэ) (1080p) [Not 24/7] +http://tvcom.stream.intelema.ru/tvcom/studio/playlist.m3u8 +#EXTINF:-1 tvg-id="TKAlmaznyykray.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТК Алмазный край (576p) +https://stream.almaz-media.tv:8080/hls/576.m3u8 +#EXTINF:-1 tvg-id="TKRRyazan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",ТКР (Рязань) (1080p) [Not 24/7] +http://live.tkr.cdnvideo.ru/tkr/tkr.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TNVPlaneta.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/38123/2a00000151869753910c522399c2749fd174/z" group-title="",ТНВ-Планета (576p) +http://tnv.bonus-tv.ru/cdn/tnvplanet/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTInternational.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/51763/2a00000162f2e7fc95aee02fbc1efd20c3d6/214x121" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Entertainment",ТНТ International (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s19/04.m3u8 +#EXTINF:-1 tvg-id="TNT4.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a00000160931f198cccad25e259a608ae77/160x120" group-title="",ТНТ4 (576p) [Not 24/7] +https://sc.id-tv.kz/tnt4.m3u8 +#EXTINF:-1 tvg-id="ToyDuman.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Той Думан (576p) [Not 24/7] +https://sc.id-tv.kz/ToiDuman.m3u8 +#EXTINF:-1 tvg-id="Tolyatti24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://ladamedia.ru/site/upload/lBPQBGJZ1hc.jpg" group-title="Local",Тольятти 24 (720p) +http://91.234.108.26/hls-live/livepkgr/_definst_/liveevent1/vazlivestream1.m3u8 +#EXTINF:-1 tvg-id="Tonus.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/mVhchwI.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Тонус (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s90/index.m3u8 +#EXTINF:-1 tvg-id="TriAngela.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://www.3angels.ru/assets/img/themes/logo-menu.png" group-title="",Три Ангела (720p) +https://hls.tv.3angels.ru/stream/HQ.m3u8 +#EXTINF:-1 tvg-id="TuganTel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6rbVqcY.png" group-title="",Туган Тел (576p) [Offline] +http://195.20.196.69:1935/tugantel/tugantel1/playlist.m3u8 +#EXTINF:-1 tvg-id="TuganTel.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6rbVqcY.png" group-title="",Туган Тел (576p) [Offline] +http://streamer.rtcommufa.ru:1935/tugantel/tugantel1/playlist.m3u8 +#EXTINF:-1 tvg-id="TuranTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Туран ТВ (576p) [Not 24/7] +https://sc.id-tv.kz/TuranTV.m3u8 +#EXTINF:-1 tvg-id="Udmurtiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/28884/2a0000015674c3cfa3ba882ae1a1a678797a/160x160" group-title="Local",Удмуртия (404p) [Offline] +https://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="UchalyTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Учалы ТВ (576p) [Not 24/7] +http://live-uchalytv.cdnvideo.ru/uchalytv/uchalytv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Futbol.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/g24DSFV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Футбол (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s41/index.m3u8 +#EXTINF:-1 tvg-id="Habar.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Хабар (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar.m3u8 +#EXTINF:-1 tvg-id="Habar24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Хабар 24 (576p) [Not 24/7] +https://sc.id-tv.kz/Khabar_24.m3u8 +#EXTINF:-1 tvg-id="HuzurTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.tildacdn.com/tild6230-3662-4537-a334-363564306535/Untitled-4.png" group-title="",Хузур ТВ (720p) [Not 24/7] +https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="Centralnoetelevidenie.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/2Ydfgw4.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",Центральное телевидение (ЦТВ) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s20/index.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Music",Шансон ТВ (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s43/index.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] +http://uiptv.do.am/1ufc/602079679/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (576p) [Geo-blocked] +https://hls-shansontv.cdnvideo.ru/shansontv/smil:shansontv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShansonTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/NBWyJJQ.png" group-title="Music",Шансон ТВ (512p) [Geo-blocked] +http://hls.shansontv.cdnvideo.ru/shansontv/shansontv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Shokiruyushchee.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Шокирующее (540p) [Timeout] +http://185.97.150.19:8082/2401 +#EXTINF:-1 tvg-id="ShchyolkovskoeTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://tv41.ru/images/00.png" group-title="Local",Щёлковское ТВ (576p) [Not 24/7] +http://stream0.tv41.ru/live.m3u8 +#EXTINF:-1 tvg-id="EhoTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",Эхо TV (Рязань) (576p) [Not 24/7] +https://live-echotv.cdnvideo.ru/echotv/echotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Yu.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/1j5q5Ff.png" group-title="Entertainment",Ю (576p) [Offline] +https://strm.yandex.ru/kal/utv/utv0.m3u8 +#EXTINF:-1 tvg-id="YuvelirochkaTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ювелирочка ТВ (576p) +http://live-uvelirochka.cdnvideo.ru/uvelirochka/uvelirochka_720p3/playlist.m3u8 +#EXTINF:-1 tvg-id="Yugra.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/ugra_tv.jpg" group-title="Local",Югра (576p) +http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Yurgan.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.xn--80af5aj3e.xn--p1ai/assets/images/logo.png" group-title="Local",Юрган (1080p) +http://yurgan.bonus-tv.ru/cdn/yurgan/playlist.m3u8 +#EXTINF:-1 tvg-id="YuTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Local",ЮТВ (Чебоксары) (432p) [Not 24/7] +http://serv24.vintera.tv:8081/utv/Stream/playlist.m3u8 diff --git a/channels/ru_catcast.m3u~master b/channels/ru_catcast.m3u~master new file mode 100644 index 000000000..655b26326 --- /dev/null +++ b/channels/ru_catcast.m3u~master @@ -0,0 +1,21 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Eurodance90HD.ru" tvg-country="RU" tvg-language="English" tvg-logo="" group-title="Music",Eurodance 90 HD (1080p) [Not 24/7] +https://eurodance90.catcast.tv/content/36987/index.m3u8 +#EXTINF:-1 tvg-id="KinderTV.ua" tvg-country="CIS" tvg-language="Russian" tvg-logo="https://img.catcast.tv/uploads/02062021/banners/38144-60b7e4bbc80fc.png" group-title="Family",FilmTV Kinder (400p) [Not 24/7] +https://v2.catcast.tv/content/38144/index.m3u8 +#EXTINF:-1 tvg-id="FreshTV.am" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://img.catcast.tv/uploads/09072021/logos/33718-60e8114945a4a.png" group-title="Music",Fresh TV (720p) +https://freshtv.catcast.tv/content/33718/index.m3u8 +#EXTINF:-1 tvg-id="GravityFouls.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Kids",Gravity Fouls (480p) [Not 24/7] +https://v3.catcast.tv/content/38105/index.m3u8 +#EXTINF:-1 tvg-id="MetalTV.ru" tvg-country="INT" tvg-language="Catalan;Arabic;Pashto;English;Albanian;Armenian;Portuguese;Spanish;German;Dutch;Swedish;Azerbaijani;Bosnian;Bengali;French;Bulgarian;Malay;Dzongkha;Norwegian;Belarusian;Chinese;Greek;Czech;Danish;Estonian;Tigrinya;Amharic;Finnish;Faroese;Georgian;Greenlandic;Croatian;Hungarian;Indonesian;Irish;Hebrew;Hindi;Persian;Icelandic;Italian;Japanese;Kirghiz;Khmer;Korean;Kazakh;Lao;Sinhala;Lithuanian;Latvian;Romanian;Serbian;Macedonian;Burmese;Mongolian;Maltese;Dhivehi;Nepali;Polish;Russian;Kinyarwanda;Slovenian;Slovak;Somali;Thai;Tajik;Turkmen;Turkish;Swahili;Ukrainian;Uzbek;Vietnamese;Bislama;Samoan;Afrikaans" tvg-logo="" group-title="Music",Metal TV (720p) [Not 24/7] +https://v2.catcast.tv/content/33816/index.m3u8 +#EXTINF:-1 tvg-id="KinozalVHS90s.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Кинозал (VHS 90s) (720p) [Not 24/7] +https://v2.catcast.tv/content/37925/index.m3u8 +#EXTINF:-1 tvg-id="Premera.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Премьера (304p) [Not 24/7] +https://v2.catcast.tv/content/39161/index.m3u8 +#EXTINF:-1 tvg-id="SSSRTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",СССР ТВ (520p) [Not 24/7] +https://v2.catcast.tv/content/38821/index.m3u8 +#EXTINF:-1 tvg-id="Uzhastik.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="",Ужастик (304p) [Not 24/7] +https://v2.catcast.tv/content/38896/index.m3u8 +#EXTINF:-1 tvg-id="FantastikaSciFi.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="" group-title="Movies",Фантастика Sci-Fi (324p) [Not 24/7] +https://v2.catcast.tv/content/38801/index.m3u8 diff --git a/channels/ru_okkotv.m3u b/channels/ru_okkotv.m3u new file mode 100644 index 000000000..c7c600c97 --- /dev/null +++ b/channels/ru_okkotv.m3u @@ -0,0 +1,91 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BlackRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/rzrOS3N.png" group-title="Entertainment",.black Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_Turbo.m3u8 +#EXTINF:-1 tvg-id="RedRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/xUGWmyh.png" group-title="Entertainment",.red Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_ET.m3u8 +#EXTINF:-1 tvg-id="SciFiRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/5ezLSwB.png" group-title="Science",.sci-fi Russia (480p) +https://okkotv-live.cdnvideo.ru/channel/Sony_SciFi.m3u8 +#EXTINF:-1 tvg-id="5kanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/tWULJqX.png" group-title="General",5 канал (480p) +https://okkotv-live.cdnvideo.ru/channel/5_OTT.m3u8 +#EXTINF:-1 tvg-id="A1.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/lXlwfyw.png" group-title="Series",A1 (720p) +https://okkotv-live.cdnvideo.ru/channel/A1_HD.m3u8 +#EXTINF:-1 tvg-id="A2.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GwQgT6X.png" group-title="Series",A2 (1080p) +https://okkotv-live.cdnvideo.ru/channel/A2_HD.m3u8 +#EXTINF:-1 tvg-id="AmediaHit.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a0000016653697bea0c072bf5c5bc1c11ec/260x160" group-title="Movies",Amedia Hit (1080p) +https://okkotv-live.cdnvideo.ru/channel/Amedia_Hit_HD.m3u8 +#EXTINF:-1 tvg-id="BabyTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/9sWVrgR.png" group-title="Kids",Baby TV (480p) [Not 24/7] +http://okkotv-live.cdnvideo.ru/channel/BabyTV.m3u8 +#EXTINF:-1 tvg-id="FoxLifeRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/27k3DtT.png" group-title="Series",Fox Life Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Fox_Life_HD.m3u8 +#EXTINF:-1 tvg-id="FoxRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="Movies",Fox Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Fox_HD.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeo.id.png" group-title="Documentary",National Geographic (1080p) +https://okkotv-live.cdnvideo.ru/channel/NGC_HD.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="",National Geographic Wild Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/NGC_Wild_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000ActionRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/dzOFwC0.png" group-title="Movies",TV1000 Action Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_Action_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000HDRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/7s3v0on.png" group-title="Movies",TV1000 Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_HD.m3u8 +#EXTINF:-1 tvg-id="TV1000RusskoeKino.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iCUmr4k.png" group-title="Movies",TV1000 Русское кино (1080p) +https://okkotv-live.cdnvideo.ru/channel/TV1000_Rus_Kino_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatExploreRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/CnKhbJ3.png" group-title="",Viasat Explore Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_Explore_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatHistoryRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YU2vfQX.png" group-title="Documentary",Viasat History Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_History_ad_HD.m3u8 +#EXTINF:-1 tvg-id="ViasatNatureRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/YkvX94D.png" group-title="",Viasat Nature Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/Viasat_Nature_ad_HD.m3u8 +#EXTINF:-1 tvg-id="ViPComedyRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/kHTdkiW.png" group-title="Comedy",ViP Comedy Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Comedy_HD.m3u8 +#EXTINF:-1 tvg-id="VIPMegahitRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/KIy4kdc.png" group-title="Movies",VIP Megahit Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Megahit_HD.m3u8 +#EXTINF:-1 tvg-id="VIPPremiereRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/s33q57W.png" group-title="Entertainment",VIP Premiere Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Premiere_HD.m3u8 +#EXTINF:-1 tvg-id="VIPSerialRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/qtjt9qv.png" group-title="Series",VIP Serial Russia (1080p) +https://okkotv-live.cdnvideo.ru/channel/VIP_Serial_HD.m3u8 +#EXTINF:-1 tvg-id="Dikayaohota.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/zO4fl6B.png" group-title="Outdoor",Дикая охота (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dikaya_Ohota_HD.m3u8 +#EXTINF:-1 tvg-id="Dikayarybalka.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/SdenWkP.png" group-title="Outdoor",Дикая рыбалка (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dikaya_Rybalka_HD.m3u8 +#EXTINF:-1 tvg-id="Dikiy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/s9IkQPo.png" group-title="Outdoor",Дикий (480p) +https://okkotv-live.cdnvideo.ru/channel/Dikiy.m3u8 +#EXTINF:-1 tvg-id="Domashniy.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Domashniy_tv_logo.svg/2000px-Domashniy_tv_logo.svg.png" group-title="Entertainment",Домашний (1080p) +https://okkotv-live.cdnvideo.ru/channel/Dom_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="Zvezda.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n9zLVyR.png" group-title="General",Звезда (480p) +https://okkotv-live.cdnvideo.ru/channel/Zvezda_SD.m3u8 +#EXTINF:-1 tvg-id="Izvestiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://iptvx.one/icn/izvestia.png" group-title="News",Известия (1080p) +https://okkotv-live.cdnvideo.ru/channel/Izvestiya_HD_2.m3u8 +#EXTINF:-1 tvg-id="Kaleydskop.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/sgDCVyG.png" group-title="",Калейдскоп (480p) +https://okkotv-live.cdnvideo.ru/channel/Kaleidoskop.m3u8 +#EXTINF:-1 tvg-id="KanalDisney.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Q9KoVy9.png" group-title="Kids",Канал Disney (480p) +https://okkotv-live.cdnvideo.ru/channel/Disney.m3u8 +#EXTINF:-1 tvg-id="Mir.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="http://www.tv-logo.com/pt-data/uploads/images/logo/mir_ru.jpg" group-title="General",Мир (480p) +https://okkotv-live.cdnvideo.ru/channel/Mir_OTT.m3u8 +#EXTINF:-1 tvg-id="MuzTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/n7bGFXj.png" group-title="Music",Муз-ТВ (480p) +https://okkotv-live.cdnvideo.ru/channel/MuzTV.m3u8 +#EXTINF:-1 tvg-id="Multilandiya.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/OwA1zSH.png" group-title="Kids",Мультиландия (1080p) +https://okkotv-live.cdnvideo.ru/channel/Multilandia_HD.m3u8 +#EXTINF:-1 tvg-id="Pervyykanal.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/iW5vhkb.png" group-title="General",Первый канал (1080p) +https://okkotv-live.cdnvideo.ru/channel/Pervii_Kanal_OTT_HD.m3u8 +#EXTINF:-1 tvg-id="RENTV.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/30303/2a0000016e89588796d4590c9dd4dda32ffc/170x100" group-title="General",РЕН ТВ (1080p) +https://okkotv-live.cdnvideo.ru/channel/Rentv_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="Rossiya1HD.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/BNd83AQ.png" group-title="General",Россия 1 HD (1080p) +https://okkotv-live.cdnvideo.ru/channel/Russia1HD.m3u8 +#EXTINF:-1 tvg-id="Rossiya24.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/wu7O85f.png" group-title="News",Россия 24 (480p) +https://okkotv-live.cdnvideo.ru/channel/Russia24.m3u8 +#EXTINF:-1 tvg-id="RossiyaK.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/69315/2a000001600801de5fbb57debf44353568ee/orig" group-title="Culture",Россия К (480p) +https://okkotv-live.cdnvideo.ru/channel/Russia_K_SD.m3u8 +#EXTINF:-1 tvg-id="Spas.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/6IcWl5r.png" group-title="Religious",СПАС (480p) +https://okkotv-live.cdnvideo.ru/channel/Spas.m3u8 +#EXTINF:-1 tvg-id="STS.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/pJNWVAz.png" group-title="Family",СТС (1080p) +https://okkotv-live.cdnvideo.ru/channel/CTC_HD_OTT.m3u8 +#EXTINF:-1 tvg-id="CTCKids.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/knWklye.png" group-title="Kids",СТС Kids (1080p) +https://okkotv-live.cdnvideo.ru/channel/CTC_Kids_HD.m3u8 +#EXTINF:-1 tvg-id="STSLove.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/GqaOhZp.png" group-title="Family",СТС Love (480p) +https://okkotv-live.cdnvideo.ru/channel/CTC_Love_OTT_2.m3u8 +#EXTINF:-1 tvg-id="FeniksKino.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/JHPnrqe.png" group-title="Movies",Феникс Кино (480p) +https://okkotv-live.cdnvideo.ru/channel/Phoenix.m3u8 +#EXTINF:-1 tvg-id="Che.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/nRD61Dw.png" group-title="Entertainment",Че (480p) +https://okkotv-live.cdnvideo.ru/channel/Che_OTT_2.m3u8 +#EXTINF:-1 tvg-id="Yu.ru" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/1j5q5Ff.png" group-title="Entertainment",Ю (480p) +https://okkotv-live.cdnvideo.ru/channel/Yu_OTT.m3u8 diff --git a/channels/rw.m3u b/channels/rw.m3u new file mode 100644 index 000000000..70125f22a --- /dev/null +++ b/channels/rw.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KC2.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="https://i.imgur.com/13N8UX5.jpg" group-title="",KC2 (720p) [Not 24/7] +http://197.243.19.131:1935/kc2/kc2/chunklist.m3u8 +#EXTINF:-1 tvg-id="KC2.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="https://i.imgur.com/13N8UX5.jpg" group-title="",KC2 (720p) [Not 24/7] +https://5c46fa289c89f.streamlock.net/kc2/kc2/chunklist.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (576p) [Not 24/7] +https://1600706787.rsc.cdn77.org/1600706787/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] +http://197.243.19.131:1935/rtv/rtv/chunklist_w2093872577.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] +http://197.243.19.131:1935/rtv/rtv/chunklist.m3u8 +#EXTINF:-1 tvg-id="RTVRwanda.rw" tvg-country="RW" tvg-language="Kinyarwanda" tvg-logo="http://www.rba.co.rw/IMG/rtv_logo.png" group-title="",RTV Rwanda (480p) [Not 24/7] +https://5c46fa289c89f.streamlock.net/rtv/rtv/playlist.m3u8 diff --git a/channels/sa.m3u~master b/channels/sa.m3u~master new file mode 100644 index 000000000..8eff2e57f --- /dev/null +++ b/channels/sa.m3u~master @@ -0,0 +1,123 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AhluAlQuranTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://www.ahlu.tv/uploads/logo.png" group-title="Religious",Ahlu Al Quran TV (576p) +https://ahlualquran.tv/live/ysfbfBvecZ/SaNVjgaYnE/8.m3u8 +#EXTINF:-1 tvg-id="AlEkhbariya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/NciF5rO.png" group-title="News",Al Ekhbariya (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Ekhbariyah +#EXTINF:-1 tvg-id="AlEkhbariya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/NciF5rO.png" group-title="News",Al Ekhbariya (1080p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/ekhbariyatv/live +#EXTINF:-1 tvg-id="AlEkhbariya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/NciF5rO.png" group-title="News",Al Ekhbariya (1080p) +http://www.elahmad.com/tv/m3u8/online_live_6_tv.m3u8?id=saudi_ekhbariya +#EXTINF:-1 tvg-id="ALHOKAIRGroupTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15819734874770.jpg" group-title="General",AL HOKAIR Group TV (576p) +http://82.212.74.3:8000/live/7513.m3u8 +#EXTINF:-1 tvg-id="AlKhalij.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://www.al-khalij.tv/wp-content/uploads/2015/03/logo-1.png" group-title="General",Al Khalij (720p) [Not 24/7] +https://mn-nl.mncdn.com/khalij/khalij/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/0aMNwQa.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Quran_TV +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zmVCXIK.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (720p) [Not 24/7] +http://m.live.net.sa:1935/live/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zmVCXIK.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (720p) +http://5b18be6964c2f.streamlock.net:1935/live/_definst_/quran/playlist.m3u8 +#EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/zmVCXIK.png" group-title="Religious",Al Quran Al Kareem TV (Mecca) (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_quran/hls1/saudi_quran.m3u8 +#EXTINF:-1 tvg-id="AlSaudiya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/MOiapKB.png" group-title="General",Al Saudiya (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Saudi1_TV +#EXTINF:-1 tvg-id="AlSaudiya.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/SMk1hAy.png" group-title="General",Al Saudiya (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_tv/hls1/saudi_tv.m3u8 +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://aloula.faulio.com/storage/mediagallery/33/92/small_879e557011826f507a045b4e0b4c3b57ba93edae.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Sunnah_TV +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://aloula.faulio.com/storage/mediagallery/33/92/small_879e557011826f507a045b4e0b4c3b57ba93edae.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (720p) [Not 24/7] +http://m.live.net.sa:1935/live/sunnah/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://aloula.faulio.com/storage/mediagallery/33/92/small_879e557011826f507a045b4e0b4c3b57ba93edae.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (720p) +http://5b18be6964c2f.streamlock.net:1935/live/_definst_/sunnah/playlist.m3u8 +#EXTINF:-1 tvg-id="AlSunnahAlNabawiyahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://aloula.faulio.com/storage/mediagallery/33/92/small_879e557011826f507a045b4e0b4c3b57ba93edae.png" group-title="Religious",Al Sunnah Al Nabawiyah TV (Medina) (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/saudi_sunnah/hls1/saudi_sunnah.m3u8 +#EXTINF:-1 tvg-id="AlResalah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/assets/themes/TriTheme-new/images/channels/resala.png" group-title="Religious",Al-Resalah (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-risala.m3u8 +#EXTINF:-1 tvg-id="AlResalah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/assets/themes/TriTheme-new/images/channels/resala.png" group-title="Religious",Al-Resalah (1080p) [Geo-blocked] +https://shls-rotana-alresalah-prod-dub.shahid.net/out/v1/936b89606b5e48db8ca28caa40adc886/index.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) +https://bcovlive-a.akamaihd.net/0b75ef0a49e24704a4ca023d3a82c2df/ap-south-1/6203311941001/playlist.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) +https://shls-asharq-prod-dub.shahid.net/out/v1/3b6b4902cf8747a28619411239584002/index.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (1080p) +https://svs.itworkscdn.net/bloomberarlive/bloomberg.smil/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Asharq.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://asharq.com/asharq-preview-logo.png" group-title="Business",Asharq (Portrait) (1280p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/VERTICAL_1@301860/master.m3u8 +#EXTINF:-1 tvg-id="AtfalWaMawaheb.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://atfal1.com/wp-content/uploads/2018/02/logo.png" group-title="Kids",Atfal Wa Mawaheb (1080p) +https://5d658d7e9f562.streamlock.net/atfal1.com/atfal2/playlist.m3u8 +#EXTINF:-1 tvg-id="Beity.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/7aD1yan.jpg" group-title="Outdoor",Beity [Offline] +http://82.212.74.2:8000/live/7312.m3u8 +#EXTINF:-1 tvg-id="ENTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15817550307058.png" group-title="General",EN TV [Timeout] +http://82.212.74.100:8000/live/8130.m3u8 +#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Adkar Nawn) (720p) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=_iPASlANiI8 +#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Surat Stream 1) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=hoKsZRXS7vo +#EXTINF:-1 tvg-id="EveryDaySurah.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",Every Day Surah (Surat Stream 2) [Offline] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=plqRs-gWAOk +#EXTINF:-1 tvg-id="Iqraa.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/3bug9dU.png" group-title="Religious",Iqraa (576p) [Not 24/7] +https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar1.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraaEuropeAfrica.sa" tvg-country="SA" tvg-language="English" tvg-logo="https://i.imgur.com/3bug9dU.png" group-title="Religious",Iqraa Europe Africa (576p) [Not 24/7] +https://iqraac.cdn.mangomolo.com/iqraa/smil:iqraar2.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JascoEventsTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Travel",Jasco Events TV (576p) [Offline] +http://82.212.74.100:8000/live/hls/8131.m3u8 +#EXTINF:-1 tvg-id="KaifTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/q2qHUKF.png" group-title="Religious",Kaif TV (576p) [Not 24/7] +http://82.212.74.2:8000/live/hls/7311.m3u8 +#EXTINF:-1 tvg-id="KSASports1.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",KSA Sports 1 (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport1 +#EXTINF:-1 tvg-id="KSASports2.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",KSA Sports 2 (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/saudiarabia/ksasport2 +#EXTINF:-1 tvg-id="LBC" tvg-country="LB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/YLcmYCR.png" group-title="General",LBC (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-lbc.m3u8 +#EXTINF:-1 tvg-id="MakkahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5p2yUBb.png" group-title="Religious",Makkah TV (480p) +http://makkahtv.srfms.com:1935/makkahtv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="MakkahTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5p2yUBb.png" group-title="Religious",Makkah TV (480p) [Not 24/7] +https://5ab29cc78f681.streamlock.net/makkahtv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="PanoramaFM.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Music",Panorama FM (1080p) +https://shls-panoramafm-prod-dub.shahid.net/out/v1/66262e420d824475aaae794dc2d69f14/index.m3u8 +#EXTINF:-1 tvg-id="RotanaCinema.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema-egypt.png" group-title="Movies",Rotana Cinema (1080p) +https://shls-rotanacinema-egy-prod-dub.shahid.net/out/v1/c39c0ecbcbdb46e890e91106776397a8/index.m3u8 +#EXTINF:-1 tvg-id="Rotana Cinema" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema.png" group-title="Movies",Rotana Cinema (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-cinema.m3u8 +#EXTINF:-1 tvg-id="RotanaCinemaKSA.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/cinema.png" group-title="Movies",Rotana Cinema KSA (1080p) +https://shls-rotanacinema-ksa-prod-dub.shahid.net/out/v1/6cee1c57ea7841e697eb15cefc98e0a6/index.m3u8 +#EXTINF:-1 tvg-id="Rotana Classic" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/classic.png" group-title="Classic",Rotana Classic (1080p) +https://shls-rotanaclassic-prod-dub.shahid.net/out/v1/4eebed211c8441228321b4f67a46c5a5/index.m3u8 +#EXTINF:-1 tvg-id="Rotana Classic" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/classic.png" group-title="Classic",Rotana Classic (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-classical.m3u8 +#EXTINF:-1 tvg-id="Rotana Comedy" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/comedy.png" group-title="Comedy",Rotana Comedy (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-comedy.m3u8 +#EXTINF:-1 tvg-id="Rotana Drama" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/drama.png" group-title="General",Rotana Drama (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-drama.m3u8 +#EXTINF:-1 tvg-id="Rotana Drama" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/drama.png" group-title="General",Rotana Drama (1080p) [Geo-blocked] +https://shls-rotanadrama-prod-dub.shahid.net/out/v1/20c617b40dc743589ecc9d08d9d3345d/index.m3u8 +#EXTINF:-1 tvg-id="Rotana Khalijiah" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/khalijiat.png" group-title="Music",Rotana Khalijia (1080p) +https://shls-rotanakhalijia-prod-dub.shahid.net/out/v1/a639fd49db684f1b8c063d398101a888/index.m3u8 +#EXTINF:-1 tvg-id="Rotana Khalijiah" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/khalijiat.png" group-title="Music",Rotana Khalijia (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-khaleejiya.m3u8 +#EXTINF:-1 tvg-id="RotanaKids.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/kids.png" group-title="Kids",Rotana Kids (1080p) +https://shls-rotanakids-prod-dub.shahid.net/out/v1/df6e0eb3cdc4410b98209aafc8677cef/index.m3u8 +#EXTINF:-1 tvg-id="RotanaKids.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/kids.png" group-title="Kids",Rotana Kids (1080p) [Geo-blocked] +https://hiplayer.hibridcdn.net/t/rotana-kids.m3u8 +#EXTINF:-1 tvg-id="RotanaMusic.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/music.png" group-title="Music",Rotana Music (1080p) [Offline] +https://shls-rotanamusic-prod-dub.shahid.net/out/v1/edfe0095261648908a3a931b72489f3f/index.m3u8 +#EXTINF:-1 tvg-id="RotanaPlus.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://rotana.net/triAssets/uploads/2020/11/hd.png" group-title="General",Rotana+ (1080p) +https://shls-rotanaplus-prod-dub.shahid.net/out/v1/1fc6103458be480b96e6a574b00fe1c0/index.m3u8 +#EXTINF:-1 tvg-id="SBC.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/yazkC4P.png" group-title="General",SBC (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/SBC +#EXTINF:-1 tvg-id="SBC.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/yazkC4P.png" group-title="General",SBC (1080p) +http://www.elahmad.com/tv/m3u8/online_live_6_tv.m3u8?id=sbc_tv +#EXTINF:-1 tvg-id="SSCActionWaleed.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",SSC Action Waleed (1080p) [Not 24/7] +https://shls-live-event2-prod-dub.shahid.net/out/v1/0456ede1a39145d98b3d8c8062ddc998/index.m3u8 +#EXTINF:-1 tvg-id="SSCActionWaleedExtra.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Sports",SSC Action Waleed Extra (1080p) [Not 24/7] +https://d2x08mwxhmpplo.cloudfront.net/out/v1/587631773e55495a8aa3dd4050318f6e/index.m3u8 +#EXTINF:-1 tvg-id="SSC1HD.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i5.satexpat.com/cha/sa/ssc-95x31.gif" group-title="Sports",SSC1 HD (1080p) +https://ssc-5-ak.akamaized.net/out/v1/6ae0a2ebab224c72ab9c298afeec8d91/index.m3u8 +#EXTINF:-1 tvg-id="ThikrayatTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fAkScnI.png" group-title="Classic",Thikrayat TV (1080p) [Not 24/7] +https://iptv--iptv.repl.co/Arabic/Zikrayat +#EXTINF:-1 tvg-id="ThikrayatTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/fAkScnI.png" group-title="Classic",Thikrayat TV (1080p) +http://www.elahmad.com/tv/m3u8/online_live_6_tv.m3u8?id=saudi_thikrayat +#EXTINF:-1 tvg-id="WesalTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="https://i.imgur.com/SfG32dL.png" group-title="Religious",Wesal TV [Not 24/7] +http://live.noorlive.com:1935/wesal/wesal1/playlist.m3u8 +#EXTINF:-1 tvg-id="ZADTV.sa" tvg-country="SA" tvg-language="Arabic" tvg-logo="" group-title="Religious",ZAD TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCOll3M-P7oKs5cSrQ9ytt6g/live diff --git a/channels/sd.m3u b/channels/sd.m3u new file mode 100644 index 000000000..ae0dfd7d6 --- /dev/null +++ b/channels/sd.m3u @@ -0,0 +1,7 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AlAlamiya2.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="http://jascotvstreaming.com/uploads/topics/15592492499912.jpg" group-title="",Al Alamiya 2 [Timeout] +http://82.212.74.98:8000/live/7815.m3u8 +#EXTINF:-1 tvg-id="SudanBukra.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="https://i.imgur.com/tkBFpJu.jpg" group-title="",Sudan Bukra (720p) [Offline] +http://live.ditve.tv:1935/sudanbukra/sudanbukra.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SudanTV.sd" tvg-country="SD" tvg-language="Arabic" tvg-logo="" group-title="",Sudan TV (360p) [Offline] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/sudan_tv/hls1/sudan_tv.m3u8 diff --git a/channels/se.m3u b/channels/se.m3u new file mode 100644 index 000000000..02a28c623 --- /dev/null +++ b/channels/se.m3u @@ -0,0 +1,43 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AftonbladetTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/LsAz0UW.jpg" group-title="",Aftonbladet TV (144p) +https://aftonbladetlive-lh.akamaihd.net/i/livestream01_1@182509/master.m3u8 +#EXTINF:-1 tvg-id="ATG.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/5CdW62M.png" group-title="Sports",ATG (432p) +https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free_3.m3u8 +#EXTINF:-1 tvg-id="ATG.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/8ZFQ93Z.png" group-title="Sports",ATG (432p) +https://httpcache0-00688-cacheliveedge0.dna.qbrick.com/00688-cacheliveedge0/out/u/atg_sdi_1_free.m3u8 +#EXTINF:-1 tvg-id="AzerbaijanNewsTV.se" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://www.aznews.tv/wp-content/uploads/2019/04/headerlogo.fw_.png" group-title="News",Azerbaijan News TV (720p) [Not 24/7] +https://edge1.socialsmart.tv/aznews/smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DiTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/zApTDWn.png" group-title="News",Di TV (720p) +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx4_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="ExpressenTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Kt88QxS.png" group-title="News",Expressen TV (720p) [Not 24/7] +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/chunklist_b3628000.m3u8 +#EXTINF:-1 tvg-id="ExpressenTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/wXvWBJp.png" group-title="News",Expressen TV (720p) [Offline] +https://httpcache0-03837-cachelive2.dna.qbrick.com/03837-cachelive2/smil:03837_tx2_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal10Asia.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",Kanal 10 Asia (540p) [Not 24/7] +https://cdn-kanal10.crossnet.net/kanal10/ngrp:kanal10asia_all/chunklist_w522739009_b2128000.m3u8 +#EXTINF:-1 tvg-id="MiracleChannel.se" tvg-country="SE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x3XqZxs.png" group-title="News",Miracle Channel (576p) +https://yjh3p.stream.miraclechannel.com/hls/miracle1_high/index.m3u8 +#EXTINF:-1 tvg-id="MiracleChannel.se" tvg-country="SE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/x3XqZxs.png" group-title="News",Miracle Channel (360p) +https://yjh3p.stream.miraclechannel.com/hls/miracle1_med/index.m3u8 +#EXTINF:-1 tvg-id="OppnaKanalen.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/O1wCZTZ.jpg" group-title="Local",Oppna Kanalen (540p) +https://edg03-prd-se-ixn.solidtango.com/edge/_451iw2h_/451iw2h/playlist.m3u8 +#EXTINF:-1 tvg-id="OPPNAKANALEN.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",OPPNA KANALEN (540p) [Offline] +http://83.140.64.214/edge/_451iw2h_/451iw2h/chunklist_w348058882.m3u8 +#EXTINF:-1 tvg-id="OppnaKanalen.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/O1wCZTZ.jpg" group-title="Local",Öppna Kanalen (540p) [Offline] +http://83.140.64.214/edge/_451iw2h_/451iw2h/playlist.m3u8 +#EXTINF:-1 tvg-id="SVT2Varmland.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",SVT2 Värmland [Offline] +http://51.91.73.99:25461/sweden/PM66f7Y43H/12476 +#EXTINF:-1 tvg-id="TV4.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/mvwiSqt.png" group-title="",TV4 (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791716.m3u8 +#EXTINF:-1 tvg-id="TV4.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/mvwiSqt.png" group-title="",TV4 (576p) [Offline] +https://lbs-aws-hls.tv4play.se/dailive/bbr-event1-p/master3404.m3u8 +#EXTINF:-1 tvg-id="TV4SvenskPolitik.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="" group-title="",TV4 Svensk Politik (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791553.m3u8 +#EXTINF:-1 tvg-id="TV4Nyheterna.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/psAAPIE.jpg" group-title="",TV4Nyheterna (720p) +https://csm-e-tv4se-eb.tls1.yospace.com/csm/live/142791350.m3u8 +#EXTINF:-1 tvg-id="VastmanlandsTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Mol9GKz.jpg" group-title="",Västmanlands TV (720p) +https://edg01-prd-se-dcs.solidtango.com/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 +#EXTINF:-1 tvg-id="VastmanlandsTV.se" tvg-country="SE" tvg-language="Swedish" tvg-logo="https://i.imgur.com/Mol9GKz.jpg" group-title="",Västmanlands TV (720p) [Offline] +http://83.140.64.214/edge/_lo9yf4l5_/lo9yf4l5/playlist.m3u8 +#EXTINF:-1 tvg-id="ViPComedyRussia.se" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/kHTdkiW.png" group-title="Comedy",ViP Comedy Russia (720p) [Not 24/7] +http://188.40.68.167/russia/vip_comedy/playlist.m3u8 diff --git a/channels/se_samsung.m3u b/channels/se_samsung.m3u new file mode 100644 index 000000000..3a71eae23 --- /dev/null +++ b/channels/se_samsung.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) [Not 24/7] +https://rakuten-euronews-1-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) [Offline] +https://failarmy-international-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-13-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesomeSweden.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome Sweden (720p) [Offline] +https://jukin-peopleareawesome-2-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenActionSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Action (Sweden) (720p) [Offline] +https://rakuten-action-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenComedySweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Comedy",Rakuten Comedy (Sweden) (720p) [Offline] +https://rakuten-comedy-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDocumentariesSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Documentary",Rakuten Documentaries (Sweden) (720p) [Offline] +https://rakuten-documentaries-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenDramaSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Movies",Rakuten Drama (Sweden) (720p) [Not 24/7] +https://rakuten-drama-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenFamilySweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Family",Rakuten Family (Sweden) (720p) [Offline] +https://rakuten-family-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenSpotlightSweden.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="",Rakuten Spotlight (Sweden) (720p) [Offline] +https://rakuten-spotlight-9-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraokeSweden.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="Music",Stingray Karaoke (Sweden) (1080p) +https://stingray-karaoke-3-se.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveSweden.us" tvg-country="SE" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective Sweden (720p) [Offline] +https://the-pet-collective-international-se.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/sg.m3u b/channels/sg.m3u new file mode 100644 index 000000000..0d6c5ef85 --- /dev/null +++ b/channels/sg.m3u @@ -0,0 +1,17 @@ +#EXTM3U +#EXTINF:-1 tvg-id="Channel5.sg" tvg-country="SG" tvg-language="English" tvg-logo="" group-title="",Channel 5 [Geo-blocked] +https://ddftztnzt6o79.cloudfront.net/hls/clr4ctv_okto/master.m3u8 +#EXTINF:-1 tvg-id="Channel5.sg" tvg-country="SG" tvg-language="English" tvg-logo="" group-title="",Channel 5 [Geo-blocked] +https://dlau142f16b92.cloudfront.net/hls/clr4ctv_ch5/master.m3u8 +#EXTINF:-1 tvg-id="Channel8.sg" tvg-country="SG" tvg-language="Chinese" tvg-logo="" group-title="",Channel 8 [Geo-blocked] +https://d34e90s3s13i7n.cloudfront.net/hls/clr4ctv_ch8/master.m3u8 +#EXTINF:-1 tvg-id="CNA.sg" tvg-country="SG" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/CNA_new_logo.svg/225px-CNA_new_logo.svg.png" group-title="News",CNA (1080p) +https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 +#EXTINF:-1 tvg-id="CNA.sg" tvg-country="SG" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/CNA_new_logo.svg/225px-CNA_new_logo.svg.png" group-title="News",CNA (1080p) [Geo-blocked] +https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8 +#EXTINF:-1 tvg-id="Suria.sg" tvg-country="SG" tvg-language="Malay" tvg-logo="" group-title="",Suria [Geo-blocked] +https://d11h6a6nhl9kj9.cloudfront.net/hls/clr4ctv_suria/master.m3u8 +#EXTINF:-1 tvg-id="Suria.sg" tvg-country="SG" tvg-language="Malay" tvg-logo="" group-title="",Suria (720p) [Offline] +http://50.7.161.82:8278/streams/d/Suria/playlist.m3u8 +#EXTINF:-1 tvg-id="Vasantham.sg" tvg-country="SG" tvg-language="Tamil;English" tvg-logo="" group-title="",Vasantham [Geo-blocked] +https://d39v9xz8f7n8tk.cloudfront.net/hls/clr4ctv_vsnthm/master.m3u8 diff --git a/channels/si.m3u b/channels/si.m3u new file mode 100644 index 000000000..14804d5fb --- /dev/null +++ b/channels/si.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="GTV.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="" group-title="",GTV (360p) [Not 24/7] +http://91.220.221.60/gtv_hls/gtv_03.m3u8 +#EXTINF:-1 tvg-id="MMC.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/ogq22B7.png" group-title="",MMC (720p) [Not 24/7] +https://29-rtvslo-tv-mmc-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVKOPER.si" tvg-country="SI" tvg-language="Italian" tvg-logo="https://i.imgur.com/XzkurJ3.png" group-title="",TV Koper-Capodistria (720p) +https://27-rtvslo-tv-kp-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMARIBOR.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/jnEPJoV.png" group-title="",TV MARIBOR (720p) [Not 24/7] +https://25-rtvslo-tv-mb-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSLOVENIJA1.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/3t60yS0.png" group-title="",TV SLOVENIJA 1 (1080p) +https://31-rtvslo-tv-slo1-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSLOVENIJA2.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/QweABvP.png" group-title="",TV SLOVENIJA 2 (720p) +https://21-rtvslo-tv-slo2-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSLOVENIJA3.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/uO0QUzi.png" group-title="",TV SLOVENIJA 3 (720p) +https://16-rtvslo-tv-slo3-int.cdn.eurovisioncdn.net/playlist.m3u8 +#EXTINF:-1 tvg-id="tvdx.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="" group-title="",TVDX (486p) [Not 24/7] +http://5ca49f2417d90.streamlock.net/live/dolnykubin1/playlist.m3u8 +#EXTINF:-1 tvg-id="veseljaktv.si" tvg-country="SI" tvg-language="Slovenian" tvg-logo="https://i.imgur.com/Y0EyEeU.png" group-title="",Veseljak TV (1080p) +https://stream.veseljak.tv/hls/stream.m3u8 diff --git a/channels/sk.m3u b/channels/sk.m3u new file mode 100644 index 000000000..537793e4b --- /dev/null +++ b/channels/sk.m3u @@ -0,0 +1,69 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/hgdR9cp.png" group-title="",BTV (720p) [Not 24/7] +rtmp://s1.media-planet.sk:80/live/bardejov1 +#EXTINF:-1 tvg-id="FashionTVCzechSlovak.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/hrhfs9p.png" group-title="Lifestyle",FashionTV Czech&Slovak (450p) +http://lb.streaming.sk/fashiontv/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wKJpGke.jpg" group-title="",JOJ (720p) [Not 24/7] +https://nn.geo.joj.sk/hls/joj-720.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wKJpGke.jpg" group-title="",JOJ (720p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/joj-720.m3u8 +#EXTINF:-1 tvg-id="JOJ.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="",JOJ (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/joj-540.m3u8 +#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/family-540.m3u8 +#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/family-540.m3u8 +#EXTINF:-1 tvg-id="JOJFamily.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GyoWsNb.png" group-title="Family",JOJ Family (360p) [Not 24/7] +https://nn.geo.joj.sk/hls/family-360.m3u8 +#EXTINF:-1 tvg-id="Kosicednes.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/ypZ4H5m.jpg" group-title="",Košice:dnes (450p) [Offline] +http://lb.streaming.sk/tvnasa/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Lifetv.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/Rvy8Wdu.png" group-title="",Life.tv (720p) [Timeout] +http://86.110.233.68:1935/lifetv/lifetv.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="LocAll.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/zaemQoz.png" group-title="",LocAll (406p) +http://tv.geniusnet.sk:8081/localltv/pl.m3u8 +#EXTINF:-1 tvg-id="NoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Nove Zamky (486p) +http://s1.media-planet.sk/live/novezamky/playlist.m3u8 +#EXTINF:-1 tvg-id="Plus.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/1hKwMpt.png" group-title="",Plus (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/jojplus-540.m3u8 +#EXTINF:-1 tvg-id="RajTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/GKBwOFF.jpg" group-title="",Raj TV (720p) [Not 24/7] +https://ottst05.flexitv.sk/2827-tv-pc.m3u8 +#EXTINF:-1 tvg-id="Reduta.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Reduta (486p) +http://s1.media-planet.sk/live/reduta/playlist.m3u8 +#EXTINF:-1 tvg-id="Rik.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",Rik (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/rik-540.m3u8 +#EXTINF:-1 tvg-id="SenziTV.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/3w4SA3V.jpg" group-title="",Senzi TV [Offline] +http://109.74.144.130/live/senzitest/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleviziaOSEM.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/JeiED2h.jpg" group-title="",Televizia OSEM (360p) +http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleviziaOSEM.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/JeiED2h.jpg" group-title="",Televízia OSEM (576p) +http://109.74.145.11:1935/tv8/ngrp:tv8.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDK.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",TV DK (486p) [Not 24/7] +http://80.94.54.11:1935/live/dolnykubin1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVJojko.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="Kids",TV Jojko (540p) [Offline] +https://nn.geo.joj.sk/live/rik-index.m3u8 +#EXTINF:-1 tvg-id="TVLux.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/QQK4sJs.jpg" group-title="",TV Lux (1080p) [Not 24/7] +http://live.tvlux.sk:1935/lux/lux.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMarkiza.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://static-media.streema.com/media/cache/da/4f/da4f346af8f63ae80914f9b565315cbe.jpg" group-title="",TV Markíza (720p) [Geo-blocked] +http://ntv-st01-vod01-bts10-stage.orange.sk:8000/dna-5106-tv-pc/hls/4001v102.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) +http://s1.media-planet.sk/live/novezamky/lihattv.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) [Not 24/7] +http://s1.media-planet.sk/live/novezamky/BratuMarian.m3u8 +#EXTINF:-1 tvg-id="TVNoveZamky.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/k4IK5OS.png" group-title="",TV Nové Zámky (486p) [Offline] +rtmp://s1.media-planet.sk:80/live/novezamky +#EXTINF:-1 tvg-id="TVPoprad.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="" group-title="",TV Poprad (1080p) [Not 24/7] +http://213.81.153.221:8080/poprad +#EXTINF:-1 tvg-id="TVPovazie.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/3cEG19H.jpg" group-title="",TV Povazie (400p) +http://213.181.128.248:8090/tvpovazie-h264.flv +#EXTINF:-1 tvg-id="TVReduta.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/gBMtpOS.png" group-title="",TV Reduta (486p) [Offline] +rtmp://s1.media-planet.sk:80/live/reduta +#EXTINF:-1 tvg-id="TVRuzinov.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/wmkg1FG.png" group-title="",TV Ružinov (1080p) +http://lb.streaming.sk/tvruzinov/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSeverka.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/vtI89AA.png" group-title="",TV Severka (576p) [Timeout] +http://88.212.7.11/live/test_severka_web_player/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTurzovka.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/WsDAqKc.png" group-title="",TV Turzovka (486p) [Not 24/7] +rtmp://s1.media-planet.sk:80/live/turzovka +#EXTINF:-1 tvg-id="TVWAU.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/nRDWpNs.jpg" group-title="",TV WAU (540p) [Not 24/7] +https://nn.geo.joj.sk/hls/wau-540.m3u8 +#EXTINF:-1 tvg-id="TVWAU.sk" tvg-country="SK" tvg-language="Slovak" tvg-logo="https://i.imgur.com/nRDWpNs.jpg" group-title="",TV WAU (540p) [Not 24/7] +https://nn.geo.joj.sk/live/hls/wau-540.m3u8 diff --git a/channels/sl.m3u b/channels/sl.m3u new file mode 100644 index 000000000..0bbbb65e1 --- /dev/null +++ b/channels/sl.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AYV.sl" tvg-country="SL" tvg-language="English" tvg-logo="https://i.imgur.com/rJfAEod.png" group-title="",AYV (720p) [Not 24/7] +https://1219373429.rsc.cdn77.org/live/stream-1/chunklist.m3u8 diff --git a/channels/sm.m3u b/channels/sm.m3u new file mode 100644 index 000000000..017b00023 --- /dev/null +++ b/channels/sm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="SanMarinoRTV.sm" tvg-country="SM;IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/lJpOlLv.png" group-title="",San Marino RTV (720p) +https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch01/_definst_/smil:ch-01.smil/chunklist_b1692000_slita.m3u8 +#EXTINF:-1 tvg-id="SanMarinoRTVSport.sm" tvg-country="SM;IT" tvg-language="Italian" tvg-logo="https://i.imgur.com/PGm944g.png" group-title="Sports",San Marino RTV Sport (720p) +https://d2hrvno5bw6tg2.cloudfront.net/smrtv-ch02/smil:ch-02.smil/master.m3u8 diff --git a/channels/sn.m3u b/channels/sn.m3u new file mode 100644 index 000000000..86effd28a --- /dev/null +++ b/channels/sn.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="2STV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/3mbeewx.png" group-title="",2STV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7vidbb +#EXTINF:-1 tvg-id="7TV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",7TV (720p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/7tv +#EXTINF:-1 tvg-id="A2iMusic.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="Music",A2i Music (720p) [Not 24/7] +https://stream.sen-gt.com/A2iMusic/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iNaja.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="",A2i Naja (720p) [Not 24/7] +https://stream.sen-gt.com/A2iNaija/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iReligion.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="Religious",A2i Religion (720p) [Not 24/7] +https://stream.sen-gt.com/A2iReligion/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="A2iTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tH7EZL4.jpg" group-title="",A2i TV (1080p) [Not 24/7] +https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="Africa7.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/ncOuLg6.jpg" group-title="",Africa 7 (480p) +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7xq2dw +#EXTINF:-1 tvg-id="DTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",DTV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/dtv +#EXTINF:-1 tvg-id="LabelTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",Label TV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/label-tv +#EXTINF:-1 tvg-id="RFM.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/TN9SHFj.png" group-title="",RFM (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wi5y1 +#EXTINF:-1 tvg-id="RTS1.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",RTS1 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/rts1 +#EXTINF:-1 tvg-id="RTS2.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",RTS2 (480p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/rts2 +#EXTINF:-1 tvg-id="SenTV.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="" group-title="",SenTV [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/senegal/sentv +#EXTINF:-1 tvg-id="TFM.sn" tvg-country="SN" tvg-language="Wolof;French" tvg-logo="https://i.imgur.com/tT3YSNF.png" group-title="",TFM (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7wcr45 diff --git a/channels/so.m3u b/channels/so.m3u new file mode 100644 index 000000000..ff29b9f9b --- /dev/null +++ b/channels/so.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HornCableTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://i.imgur.com/71UKcdB.png" group-title="",Horn Cable TV (720p) [Not 24/7] +http://cdn.mediavisionuae.com:1935/live/hctvlive.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="KalsanTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://www.saabtv.com/wp-content/uploads/2018/02/SaabTV_191x180transparent.png" group-title="",Kalsan TV (360p) +https://ap02.iqplay.tv:8082/iqb8002/s03btv/chunks.m3u8 +#EXTINF:-1 tvg-id="KalsanTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="http://kalsantv.com/wp-content/uploads/2017/11/new-size.png" group-title="",Kalsan TV (1080p) [Not 24/7] +http://cdn.mediavisionuae.com:1935/live/kalsantv.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="PuntlandTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://www.puntlandtvradio.net/wp-content/uploads/2016/04/cropped-puntlandtv1-1.png" group-title="",Puntland TV (360p) [Offline] +https://ap02.iqplay.tv:8082/iqb8002/p2t25/chunks.m3u8 +#EXTINF:-1 tvg-id="Somalicable.so" tvg-country="SO" tvg-language="Somali" tvg-logo="http://shaashada.com/images/somalicable.png" group-title="",Somali cable (576p) +https://ap02.iqplay.tv:8082/iqb8002/somc131/chunks.m3u8 +#EXTINF:-1 tvg-id="SomaliNationalTV.so" tvg-country="SO" tvg-language="Somali" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d6/SNTV_REBRANDED_LOGO.png" group-title="",Somali National TV (360p) +https://ap02.iqplay.tv:8082/iqb8002/s4ne/chunks.m3u8 diff --git a/channels/sv.m3u~master b/channels/sv.m3u~master new file mode 100644 index 000000000..ebd93ee6d --- /dev/null +++ b/channels/sv.m3u~master @@ -0,0 +1,34 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AgapeTVCanal8.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="" group-title="",Agape TV 8 (480p) [Offline] +https://can1.krakeniptv.com:25463/live/agape/CPLdE2EadX/1764.m3u8 +#EXTINF:-1 tvg-id="Canal10.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Iy5jUjV.png" group-title="",Canal 10 (720p) +http://streamingcws20.com:1935/tves/tves.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal11.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://sivar.tv/wp-content/uploads/2016/05/canal-11-sv.png" group-title="",Canal 11 TuTV (254p) [Not 24/7] +https://algochivo.com:1936/canal11/canal11/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal12.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.canal12.com.sv/wp-content/uploads/2020/12/logo-1.png" group-title="",Canal 12 (220p) [Not 24/7] +https://sv-canal12-canal12-live.ned.media/canal12/smil:canal12.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://canal33.tv/home/wp-content/uploads/2019/08/200.png" group-title="",Canal 33 (1080p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal33/smil:canal33.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal33.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://canal33.tv/home/wp-content/uploads/2019/08/200.png" group-title="",Canal 33 (1080p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canal33/videocanal33/playlist.m3u8 +#EXTINF:-1 tvg-id="ElimTV.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://i.imgur.com/AonXAXu.png" group-title="",Elim TV (480p) [Offline] +http://live-15.viewer.dacast.com/i/dclive_1@397642/master.m3u8 +#EXTINF:-1 tvg-id="OrbitaTVCanal25.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://3.bp.blogspot.com/-T6GUy9Xq7dk/XHqhBG7oE1I/AAAAAAAAHcI/JthcJF6_nZ8VDmiy0QGGXaVKrsgDsBvogCLcBGAs/s1600/%25C3%2593rbita%2BTV%2BCanal%2B25%2Bhd.png" group-title="",Órbita TV Canal 25 (480p) [Not 24/7] +https://5dcabf026b188.streamlock.net/orbitatv/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TCS.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/3/34/Logotipo-tcs-sv.png" group-title="",TCS (720p) +https://secure-video.tcsgo.com/tcshd/index.m3u8 +#EXTINF:-1 tvg-id="Tele1.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.tele1.sv/wp-content/uploads/2019/06/TELE1_FINAL_BLUE-1-149x84.png" group-title="",Tele1 (720p) [Not 24/7] +http://streamingcws40.com:1935/canaluno/videocanaluno/playlist.m3u8 +#EXTINF:-1 tvg-id="Tele1.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://www.tele1.sv/wp-content/uploads/2019/06/TELE1_FINAL_BLUE-1-149x84.png" group-title="",Tele1 (720p) [Not 24/7] +https://5ca9af4645e15.streamlock.net/canaluno/smil:canaluno.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TribunaTV.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://hostlagarto.com/streaming/wp-content/uploads/2019/05/TRIBUNA-TV-253x194.jpg" group-title="",TribunaTV (720p) [Not 24/7] +https://cm.hostlagarto.com:4445/TRIBUNA-TV/tribuna.myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVMElSalvador.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://tvm.com.sv/wp-content/uploads/2020/02/TVM2.png" user-agent="Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36" group-title="News",TVM El Salvador (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36 +http://168.227.22.18:1935/tvm/tvm.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVOCanal23.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/sv_23-tv-oriente_m.png" group-title="",TVO Canal 23 (720p) [Not 24/7] +https://5fc584f3f19c9.streamlock.net/tvo/smil:tvo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVX.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="https://tvx.com.sv/wp-content/uploads/2020/07/TVX-Favicon.png" group-title="",TVX (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/canaltvx +#EXTINF:-1 tvg-id="WOWTV.sv" tvg-country="SV;PE" tvg-language="Spanish" tvg-logo="https://forounivers.com/uploads/monthly_2020_05/large.wowtv2020.png.4fa9c9f8cb5ec86eb2b81a45780bdc93.png" group-title="General",WOW TV (576p) [Not 24/7] +https://cdn.elsalvadordigital.com:1936/wowtv/smil:wowtv.smil/playlist.m3u8 diff --git a/channels/sy.m3u b/channels/sy.m3u new file mode 100644 index 000000000..e764482de --- /dev/null +++ b/channels/sy.m3u @@ -0,0 +1,58 @@ +#EXTM3U +#EXTINF:-1 tvg-id="alltv.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="" group-title="Music",alltv (400p) [Timeout] +http://185.96.70.242:1935/live/alltv/playlist.m3u8 +#EXTINF:-1 tvg-id="ANN.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="http://www.freeetv.com/images/01_logo/arab_news_network.jpg" group-title="News",ANN [Not 24/7] +http://ns8.indexforce.com:1935/ann/ann/playlist.m3u8 +#EXTINF:-1 tvg-id="HalabTodayTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://halabtodaytv.net/wp-content/uploads/2020/12/%D8%AD%D9%84%D8%A8-%D8%A7%D9%84%D9%8A%D9%88%D9%85-170-01.png" group-title="News",Halab Today TV (480p) [Not 24/7] +http://streaming.tootvs.com:1935/8010/8010/playlist.m3u8 +#EXTINF:-1 tvg-id="HalabTodayTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://halabtodaytv.net/wp-content/uploads/2020/12/%D8%AD%D9%84%D8%A8-%D8%A7%D9%84%D9%8A%D9%88%D9%85-170-01.png" group-title="News",Halab Today TV (480p) [Not 24/7] +https://5caf24a595d94.streamlock.net:1937/8010/8010/playlist.m3u8 +#EXTINF:-1 tvg-id="LanaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://lanacanal.tv/lana/wp-content/uploads/2021/07/LTV-final-logo-150x150.png" group-title="General",Lana TV (720p) +https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc/master22-vod.m3u8 +#EXTINF:-1 tvg-id="LanaTVPlus.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://lanacanal.tv/LanaTVPlus/wp-content/uploads/2021/07/LTV-logo_Approved04-2-150x150.png" group-title="General",Lana TV Plus (720p) +https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc2/m3u8/sdi2-720p.m3u8 +#EXTINF:-1 tvg-id="MinbijTV.sy" tvg-country="MENA" tvg-language="Arabic" tvg-logo="" group-title="",Minbij TV (576p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/45 +#EXTINF:-1 tvg-id="NoorAlSham.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Dy2Eo33.png" group-title="Religious",Noor Al-Sham (160p) [Not 24/7] +http://82.137.248.16:1935/Nour/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="RojavaTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Rojava TV (1080p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/55 +#EXTINF:-1 tvg-id="RojavaTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Rojava TV (1080p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/55.m3u8 +#EXTINF:-1 tvg-id="RonahiTV.sy" tvg-country="SY" tvg-language="Kurdish;Arabic" tvg-logo="" group-title="",Ronahî TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/26.m3u8 +#EXTINF:-1 tvg-id="SamaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/Bg52GiG.png" group-title="General",Sama TV (540p) [Not 24/7] +http://stream5.sama-tv.net/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ShamFM.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://sham.fm/assets/img/logo.webp" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="",Sham FM (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 +https://linkastream.co/headless?url=https://ok.ru/live/1366568541799 +#EXTINF:-1 tvg-id="ShamIPTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://sham.fm/assets/img/logo.webp" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="",Sham IPTV (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 +https://linkastream.co/headless?url=https://ok.ru/live/1366902775399 +#EXTINF:-1 tvg-id="SouryanaRadio.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/j5o8ZPm.png" group-title="Music",Souryana Radio (160p) [Not 24/7] +http://82.137.248.16:1935/Souryana/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="Spacetoon.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RzPOwqI.png" group-title="Kids",Spacetoon (1080p) +https://shls-spacetoon-prod-dub.shahid.net/out/v1/6240b773a3f34cca95d119f9e76aec02/index.m3u8 +#EXTINF:-1 tvg-id="Spacetoon.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/RzPOwqI.png" group-title="Kids",Spacetoon (576p) +https://streams.spacetoon.com/live/stchannel/smil:livesmil.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SuboroTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PrNVVOu.png" group-title="Religious",Suboro TV (576p) [Not 24/7] +https://streaming.viewmedia.tv/viewsatstream12/viewsatstream12.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Syria Drama" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/5EnxvkU.png" group-title="Movies",Syria Drama (160p) [Not 24/7] +http://82.137.248.16:1935/Drama/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="Syria Satellite Channel" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ajsrKzA.png" group-title="General",Syria Satellite Channel (160p) [Not 24/7] +http://82.137.248.16:1935/Sat/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyriaTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/rKTE8Qw.png" group-title="General",Syria TV (1080p) +https://svs.itworkscdn.net/syriatvlive/syriatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianEducationTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PrXBgQG.png" group-title="Education",Syrian Education TV (160p) [Not 24/7] +http://82.137.248.16:1935/SEdu/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (360p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCjmUU7Zy3BYHGSyUdRFuFIg/live +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (160p) [Not 24/7] +http://82.137.248.16:1935/Snews/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="SyrianNewsChannel.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/6KUtkKz.png" group-title="News",Syrian News Channel (160p) [Not 24/7] +http://vod.alikhbaria.net:1935/Snews/stream19042021/playlist.m3u8 +#EXTINF:-1 tvg-id="UgaritTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4x2uwpx.png" user-agent="Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36" group-title="General",Ugarit TV (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Linux; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36 +https://linkastream.co/headless?url=https://ok.ru/live/2231907917430 +#EXTINF:-1 tvg-id="UgaritTV.sy" tvg-country="SY" tvg-language="Arabic" tvg-logo="https://i.imgur.com/4x2uwpx.png" group-title="General",Ugarit TV (160p) [Not 24/7] +http://82.137.248.16:1935/Ugarit/stream19042021/playlist.m3u8 diff --git a/channels/th.m3u~master b/channels/th.m3u~master new file mode 100644 index 000000000..a5b536a96 --- /dev/null +++ b/channels/th.m3u~master @@ -0,0 +1,96 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ALTV.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.altv.tv/_nuxt/img/84f4d59.png" group-title="",ALTV (1080p) +https://thaipbs-ujxrch.cdn.byteark.com/live/playlist_1080p/index.m3u8 +#EXTINF:-1 tvg-id="ASTVNews1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="Local",ASTV News 1 (180p) [Not 24/7] +http://news1.live14.com/stream/news1.m3u8 +#EXTINF:-1 tvg-id="Channel5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.tv5.co.th/tv5hd1-web/img/tv5hd1_logo_light.png" group-title="",Channel 5 (1080p) +http://110.170.117.27:1935/apptv5hd1live/vdo-tv5hd1/playlist.m3u8 +#EXTINF:-1 tvg-id="Channel5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.tv5.co.th/tv5hd1-web/img/tv5hd1_logo_light.png" group-title="",Channel 5 (480p) +https://tc-live1.sanook.com/live/22302_ch5.m3u8 +#EXTINF:-1 tvg-id="Channel7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/f3/BBTV_Channel_7.png" group-title="",Channel 7 (240p) +https://bcovlive-a.akamaihd.net/2d37038b355f4ea6a6b0d46993dc285c/ap-southeast-1/5282994675001/profile_0/chunklist.m3u8 +#EXTINF:-1 tvg-id="Channel8.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/hzdMjA1.jpg" group-title="",Channel 8 (720p) [Not 24/7] +http://usa.login.in.th:1935/ch8/ch8/playlist.m3u8 +#EXTINF:-1 tvg-id="DLTV1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-01.png" group-title="",DLTV 1 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv01.m3u8 +#EXTINF:-1 tvg-id="DLTV2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-02.png" group-title="",DLTV 2 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv02.m3u8 +#EXTINF:-1 tvg-id="DLTV3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-03.png" group-title="",DLTV 3 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv03.m3u8 +#EXTINF:-1 tvg-id="DLTV4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-04.png" group-title="",DLTV 4 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv04.m3u8 +#EXTINF:-1 tvg-id="DLTV5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-05.png" group-title="",DLTV 5 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv05.m3u8 +#EXTINF:-1 tvg-id="DLTV6.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-06.png" group-title="",DLTV 6 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv06.m3u8 +#EXTINF:-1 tvg-id="DLTV7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-07.png" group-title="",DLTV 7 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv07.m3u8 +#EXTINF:-1 tvg-id="DLTV8.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-08.png" group-title="",DLTV 8 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv08.m3u8 +#EXTINF:-1 tvg-id="DLTV9.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-09.png" group-title="",DLTV 9 (1080p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv09.m3u8 +#EXTINF:-1 tvg-id="DLTV10.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-10.png" group-title="",DLTV 10 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv10.m3u8 +#EXTINF:-1 tvg-id="DLTV11.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-11.png" group-title="",DLTV 11 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv11.m3u8 +#EXTINF:-1 tvg-id="DLTV12.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-12.png" group-title="",DLTV 12 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv12.m3u8 +#EXTINF:-1 tvg-id="DLTV13.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-13.png" group-title="",DLTV 13 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv13.m3u8 +#EXTINF:-1 tvg-id="DLTV14.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-14.png" group-title="",DLTV 14 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv14.m3u8 +#EXTINF:-1 tvg-id="DLTV15.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.dltv.ac.th/themes/default/assets/images/DLTV/logo-channel-15.png" group-title="",DLTV 15 (720p) [Not 24/7] +https://dltv-live-edge.catcdn.cloud/dltv15.m3u8 +#EXTINF:-1 tvg-id="GolfChannelThailand.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-golf.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",Golf Channel Thailand (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_golfhd_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="Mono29.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/d/d5/Mono_29_Logo.png" group-title="",Mono 29 (1080p) [Geo-blocked] +https://edge2-bkk.3bb.co.th:9443/MONO29_HLS_1080P/mono29hls_1080TH.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NBTBangkok.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",NBT Bangkok (1080p) [Not 24/7] +http://live.prd.go.th:1935/live/ch1_L.sdp/chunklist.m3u8 +#EXTINF:-1 tvg-id="ThaiPBSOpt4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",Thai PBS (Opt-4) (1080p) [Not 24/7] +https://thaipbs-live.cdn.byteark.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="ThairathTV32.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/0AiJcrC.png" group-title="",Thairath TV 32 (720p) +https://live.thairath.co.th/trtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="TPTV.th" tvg-country="TH" tvg-language="Thai" tvg-logo="http://live.parliament.go.th/images/coronationceremony/logo.png" group-title="",TPTV (286p) [Not 24/7] +https://cdn-edge.i-iptv.com/live3/91b1-ff25-f5ee-c27f-283a/playlist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl1.png" user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 1 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_PremierHD1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 2 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_PremierHD2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl3.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 3 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_PremierHD3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl4.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 4 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_PremierHD4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TruePremierFootballHD5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/doomovie-epl5.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Premier Football HD 5 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_PremierHD5_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSport5.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/c275f890-f972-11e9-a1fc-5dda12c8d080_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport 5 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_sport5_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSport7.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/e52c8980-f972-11e9-a1fc-5dda12c8d080_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport 7 (480p Scaled) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_sport7_480p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD1.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/feddd690-f972-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 1 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_2sporthd1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD2.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/1e8bbb60-f973-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 2 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_2sporthd2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD3.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/2dc8f250-f973-11e9-86dd-238985cbbd60_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 3 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_2sporthd3_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueSportHD4.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://cms.dmpcdn.com/livetv/2019/10/28/3f554960-f973-11e9-91cd-2f79be09d2b3_320.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Sport HD 4 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_2sporthd4_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TrueTennisHD.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-tennis.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36" group-title="Sports",True Tennis HD (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/96.0.3809.25 Safari/537.36 +https://smart-tv.livedoomovie.com:4431/02_TennisHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVMuslim.th" tvg-country="TH" tvg-language="Thai" tvg-logo="" group-title="",TV Muslim (1080p) [Not 24/7] +http://vip2.liveanywhere.asia:1935/tvmuslim/tvmuslim/playlist.m3u8 +#EXTINF:-1 tvg-id="WhiteChannel.th" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/lK52fpm.png" group-title="",White Channel (1080p) +http://symc-cdn.violin.co.th:1935/tndedge/whitechannel/chunklist.m3u8 diff --git a/channels/tj.m3u b/channels/tj.m3u new file mode 100644 index 000000000..7c98f1cab --- /dev/null +++ b/channels/tj.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="HuzurTV.tj" tvg-country="TJ" tvg-language="Russian" tvg-logo="https://i.imgur.com/Abg1fct.png" group-title="",Хузур ТВ (720p) [Not 24/7] +https://hls-mycdn08724960135.cdnvideo.ru/mycdn08724960135/stream1/playlist.m3u8 diff --git a/channels/tm.m3u~master b/channels/tm.m3u~master new file mode 100644 index 000000000..5313d7296 --- /dev/null +++ b/channels/tm.m3u~master @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AltynAsyr.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/altyn.png" group-title="",Altyn Asyr (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch001.m3u8 +#EXTINF:-1 tvg-id="AltynAsyr.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/altyn.png" group-title="",Altyn Asyr (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch001.m3u8 +#EXTINF:-1 tvg-id="Asgabat.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/ashgabat.png" group-title="",Aşgabat (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch006.m3u8 +#EXTINF:-1 tvg-id="Asgabat.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/ashgabat.png" group-title="",Aşgabat (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch006.m3u8 +#EXTINF:-1 tvg-id="Miras.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/miras.png" group-title="",Miras (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch003.m3u8 +#EXTINF:-1 tvg-id="Miras.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/miras.png" group-title="",Miras (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch003.m3u8 +#EXTINF:-1 tvg-id="TurkmenOwazy.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/owaz.png" group-title="",Türkmen Owazy (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch005.m3u8 +#EXTINF:-1 tvg-id="TurkmenOwazy.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/owaz.png" group-title="",Türkmen Owazy (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch005.m3u8 +#EXTINF:-1 tvg-id="Turkmenistan.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://i.imgur.com/zKWfwAw.png" group-title="General",Türkmenistan (226p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch007.m3u8 +#EXTINF:-1 tvg-id="Turkmenistan.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://i.imgur.com/zKWfwAw.png" group-title="General",Türkmenistan (112p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch007.m3u8 +#EXTINF:-1 tvg-id="TurkmenistanSport.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/sport.png" group-title="Sports",Türkmenistan Sport (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch004.m3u8 +#EXTINF:-1 tvg-id="TurkmenistanSport.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/sport.png" group-title="Sports",Türkmenistan Sport (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch004.m3u8 +#EXTINF:-1 tvg-id="Yaslyk.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/yaslyk.png" group-title="",Ýaşlyk (406p) [Not 24/7] +https://alpha.tv.online.tm/hls/ch002.m3u8 +#EXTINF:-1 tvg-id="Yaslyk.tm" tvg-country="TM" tvg-language="Turkmen" tvg-logo="https://turkmentv.gov.tm/assets/img/live-imgs/yaslyk.png" group-title="",Ýaşlyk (406p) [Not 24/7] +https://alpha.tv.online.tm/legacyhls/ch002.m3u8 diff --git a/channels/tn.m3u b/channels/tn.m3u new file mode 100644 index 000000000..04e5eb70e --- /dev/null +++ b/channels/tn.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.elhiwarettounsi.com/images/news/logo.png" group-title="General",El Hiwar El Tounsi (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/k2IuM11CZakq4ZvrUkv +#EXTINF:-1 tvg-id="ElHiwarElTounsi.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.elhiwarettounsi.com/images/news/logo.png" user-agent="TNAgexpl212C" group-title="General",El Hiwar El Tounsi (400p) [Not 24/7] +#EXTVLCOPT:http-user-agent=TNAgexpl212C +http://217.182.137.206/elhiwar.m3u8 +#EXTINF:-1 tvg-id="Hannibal.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="http://www.hannibaltv.com.tn/static/fr/image/png/hannibaltv.png" user-agent="TNAgexpl212C" group-title="General",Hannibal (400p) [Offline] +#EXTVLCOPT:http-user-agent=TNAgexpl212C +http://217.182.137.206/hannibal.m3u8 +#EXTINF:-1 tvg-id="IFMTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.ifm.tn/images/logo.png" group-title="Music",IFM TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/RadioIfmTunisia/live +#EXTINF:-1 tvg-id="JawharaTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://i.postimg.cc/xT9fsvYQ/jawhara-fm-tv.jpg" group-title="Music",JAWHARA TV (720p) +https://streaming.toutech.net/live/jtv/index.m3u8 +#EXTINF:-1 tvg-id="MosaiqueFM.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.mosaiquefm.net/images/front2020/logoar.png" group-title="Music",Mosaïque FM (480p) [Not 24/7] +https://webcam.mosaiquefm.net:1936/mosatv/studio/playlist.m3u8 +#EXTINF:-1 tvg-id="Nessma.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://www.nessma.tv/images/logonessmamenu.png" group-title="Entertainment",Nessma (720p) [Offline] +https://query-streamlink-us.herokuapp.com/iptv-query?streaming-ip=https://www.dailymotion.com/video/x7lmd4f +#EXTINF:-1 tvg-id="SahelTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://saheltv.tn/wp-content/uploads/2018/03/saheltv_logox2.png" group-title="Local",Sahel TV (720p) [Not 24/7] +http://142.44.214.231:1935/saheltv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TunisieImmobilierTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://i.imgur.com/cZM2t0P.png" group-title="Travel",Tunisie Immobilier TV (720p) [Not 24/7] +https://5ac31d8a4c9af.streamlock.net/tunimmob/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TunisnaTV.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisie360.net/img/tv/min/tunisna-tv.png" group-title="General",Tunisna TV [Timeout] +http://streaming.tunisna.tv:1935/live/tunisna/playlist.m3u8 +#EXTINF:-1 tvg-id="Watania1.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/El_Wataniya_1_Logo.png" group-title="General",Watania 1 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/WataniaReplay/live +#EXTINF:-1 tvg-id="Watania1.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/El_Wataniya_1_Logo.png" user-agent="TNAgexpl212C" group-title="General",Watania 1 (400p) [Offline] +#EXTVLCOPT:http-user-agent=TNAgexpl212C +http://217.182.137.206/tunisie1.m3u8 +#EXTINF:-1 tvg-id="Watania2.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/Logo_Wataniya_2.png" group-title="General",Watania 2 (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/Watania2Replay/live +#EXTINF:-1 tvg-id="Watania2.tn" tvg-country="TN" tvg-language="Arabic" tvg-logo="https://tunisietv.com/wp-content/uploads/2015/05/Logo_Wataniya_2.png" user-agent="TNAgexpl212C" group-title="General",Watania 2 (400p) [Not 24/7] +#EXTVLCOPT:http-user-agent=TNAgexpl212C +http://217.182.137.206/tunisie2.m3u8 diff --git a/channels/tr.m3u~master b/channels/tr.m3u~master new file mode 100644 index 000000000..de9da0af0 --- /dev/null +++ b/channels/tr.m3u~master @@ -0,0 +1,471 @@ +#EXTM3U +#EXTINF:-1 tvg-id="24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8FO41es.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",24 TV (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/kanal24/smil:kanal24.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/8FO41es.png" group-title="",24 TV (1080p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/134.m3u8 +#EXTINF:-1 tvg-id="360TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",360 TV (720p) [Not 24/7] +https://turkmedya-live.ercdn.net/tv360/tv360.m3u8 +#EXTINF:-1 tvg-id="AALive.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",AA Live (720p) [Not 24/7] +http://mtulqxgomrllive.mediatriple.net/mtulqxgomrllive/broadcast_59f9c0c785b88.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AfyonTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/tXbD8Sz/8A1HOMZ.png" group-title="",Afyon Türk TV (720p) +https://5be5d840359c6.streamlock.net/afyonturktv/afyonturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="AkitTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/zG7NM55/Jagn7PG.png" group-title="",Akit TV (720p) +https://akittv-live.ercdn.net/akittv/akittv.m3u8 +#EXTINF:-1 tvg-id="AKSUTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",AKSU TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/aksutv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="AlZahraTVTurkic.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/1LGHMzQ/lwkowCS.png" group-title="",Al-Zahra TV Turkic (720p) [Not 24/7] +https://live.al-zahratv.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="AlanyaPostaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Alanya Posta TV (1080p) +http://win4.yayin.com.tr/postatv/postatv/playlist.m3u8 +#EXTINF:-1 tvg-id="ALTASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ALTAS TV (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/altastv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ALTASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ALTAŞ TV (720p) [Not 24/7] +https://broadcasttr.com:446/altastv/bant1/index.m3u8 +#EXTINF:-1 tvg-id="ARASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ARAS TV (576p) [Not 24/7] +http://1.rtmp.org/tv217/yayin.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ATVAlanya.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/Jo6DJUe.png" group-title="",ATV Alanya (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/alanyatv/alanyatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BENGUTURKTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",BENGÜTÜRK TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/benguturk/index.m3u8 +#EXTINF:-1 tvg-id="BeratTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Berat TV (720p) [Not 24/7] +http://cdn-berattv.yayin.com.tr/berattv/berattv/playlist.m3u8 +#EXTINF:-1 tvg-id="BesiktasWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/bRhnM6W/qti5aea.png" group-title="",Beşiktaş Web TV (360p) +https://s01.vpis.io/besiktas/besiktas.m3u8 +#EXTINF:-1 tvg-id="BeyazTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Msq17kK/beyaztv.png" group-title="",Beyaz TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/beyaztv/index.m3u8 +#EXTINF:-1 tvg-id="BeyazTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Msq17kK/beyaztv.png" group-title="",Beyaz TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/87 +#EXTINF:-1 tvg-id="BodrumBelediyesiWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Bodrum Belediyesi Web TV (720p) +https://win2.yayin.com.tr/bodrumbeltv/bodrumbeltv/playlist.m3u8 +#EXTINF:-1 tvg-id="BRTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",BRTV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/brtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaASTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Bursa AS TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/astv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9gta3PU.png" group-title="",Bursa TV (720p) [Not 24/7] +https://cdn-bursatv.yayin.com.tr/bursatv/bursatv/playlist.m3u8 +#EXTINF:-1 tvg-id="BursaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9gta3PU.png" group-title="",Bursa TV (720p) [Not 24/7] +https://win1.yayin.com.tr/bursatv/bursatv/playlist.m3u8 +#EXTINF:-1 tvg-id="CanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qdBr2fH/kgwc6oT.jpg" group-title="",Can TV (720p) +http://canbroadcast.com:7000/canlican/tv.m3u8 +#EXTINF:-1 tvg-id="CanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qdBr2fH/kgwc6oT.jpg" group-title="",Can TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/105.m3u8 +#EXTINF:-1 tvg-id="CANTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",CAN TV (720p) [Not 24/7] +http://176.10.117.18:8000/play/a004/index.m3u8 +#EXTINF:-1 tvg-id="CayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/80d40Qb/e2K5ixJ.png" group-title="",Cay TV (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/caytv/bant1/CAYTV.m3u8 +#EXTINF:-1 tvg-id="CekmekoyTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/sjAGFWu.png" group-title="",Cekmeköy TV (720p) +https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv/playlist.m3u8 +#EXTINF:-1 tvg-id="CemTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/20140406/001300/001300000008479048/646fea6f-1ac6-4ce1-9975-de445f45d28b.png" group-title="",Cem TV (576p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/104.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/ciftcitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (1080p) [Not 24/7] +http://stream.taksimbilisim.com:1935/ciftcitv/smil:ciftcitv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CiftciTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200302/20200302114910325fpj_op.png" group-title="",Çiftçi TV (720p) [Not 24/7] +https://waw1.artiyerelmedya.net/ciftcitv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="Cine5TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Cine5 TV (720p) [Geo-blocked] +https://host.onlineradyotv.net:1936/cine5/cine5/playlist.m3u8 +#EXTINF:-1 tvg-id="CRITürkBelgesel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/xXjjbq6/yhzxKnt.png" group-title="",CRI Türk Belgesel (480p) [Offline] +http://cri.aa.net.tr:1935/belgesel/belgesel/playlist.m3u8 +#EXTINF:-1 tvg-id="DehaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deha TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/dehatv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DenizPostasiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deni̇z Postasi TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/denizpostasitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DenizPostasiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Deniz Postası TV (720p) [Not 24/7] +http://waw1.artiyerelmedya.net:1935/denizpostasitv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Dersim62TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://dersim62.tv/wp-content/uploads/2016/05/3v3.jpg" group-title="",Dersim62 TV (720p) +http://live.arkumedia.com:1935/dersim62tv/dersim62tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DHA.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.dha.com.tr/15648/imgs/090720181434122198539.png" group-title="",DHA (720p) [Not 24/7] +https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8 +#EXTINF:-1 tvg-id="DIMTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",DİM TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/dimtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="DiyanetTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5c6e6779cfef0b613d9fedcd" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Diyanet TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_diyanet/smil:diyanet_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DRTTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/uOMuhrI.jpg" group-title="",DRT TV (720p) [Not 24/7] +https://broadcasttr.com:446/drt/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="EgeTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/DdJWGOk.jpg" group-title="",Ege Türk TV (360p) +https://5be5d840359c6.streamlock.net/egeaturktv/egeaturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="EgeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ege TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/egetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ElmasTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Elmas TV (720p) [Not 24/7] +https://5be5d840359c6.streamlock.net/elmas67tv/elmas67tv/chunklist.m3u8 +#EXTINF:-1 tvg-id="EmTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/pHlRi8m.jpg" group-title="",Em TV (486p) +https://cdn.yayin.com.tr/TVEM/TVEM/playlist.m3u8 +#EXTINF:-1 tvg-id="ErTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Er TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/ertv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ErtSahTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/J2OSHdh.png" group-title="",Ert Sah TV (720p) [Not 24/7] +http://win20.yayin.com.tr/ertsahtv/ertsahtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ErzurumWebTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Erzurum Web TV (720p) +https://win29.yayin.com.tr/erzurumwebtv/erzurumwebtv/playlist.m3u8 +#EXTINF:-1 tvg-id="ETVManisa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/QKXtdkz/sOd3INg.png" group-title="",ETV Manisa (1080p) [Not 24/7] +https://broadcasttr.com:446/manisaetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Euro90Channel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Euro 90 Channel (1080p) [Not 24/7] +https://ssl4.radyotvonline.com/e90tv/e90tvlive/playlist.m3u8 +#EXTINF:-1 tvg-id="EuroGenc.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/63pj9bF.jpg" group-title="",Euro Genc (1080p) [Not 24/7] +https://dcunilive258-lh.akamaihd.net/i/dclive_1@126972/master.m3u8 +#EXTINF:-1 tvg-id="FenerbahceTVFBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Fenerbahçe TV (FBTV) (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/video/x21oo10 +#EXTINF:-1 tvg-id="FinansTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/wBwmB1T/iY0osc7.png" group-title="",Finans Turk TV (720p) +http://live.arkumedia.com:1935/finansturktv/finansturktv/playlist.m3u8 +#EXTINF:-1 tvg-id="GaziantepOlayTv.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Gaziantep Olay Tv (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/olaytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GencTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Genç TV (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_genc.m3u8 +#EXTINF:-1 tvg-id="GoncaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/0N5jh8z.jpg" group-title="",Gonca TV (720p) [Not 24/7] +https://broadcasttr.com:446/tuncerciftci/smil:tuncerciftci.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GRT.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",GRT (720p) +https://waw2.artiyerelmedya.net/grt/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="GRTGaziantep.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",GRT Gaziantep (720p) [Geo-blocked] +http://yerelmedya.tv:1935/grt/_definst_/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GSTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/fC3KuwT.jpg" group-title="",GSTV [Geo-blocked] +https://owifavo5.rocketcdn.com/gstv/gstv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GunesTVKibris.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Güneş TV Kibris (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_gunes.m3u8 +#EXTINF:-1 tvg-id="GuneyTVTarsus.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://www.guneytv.com.tr/img/logo.png" group-title="",Guney TV Tarsus (270p) [Offline] +http://stream2.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GuneydoguTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/JT5pp3Y.png" group-title="",Guneydoğu TV (720p) [Not 24/7] +http://stream2.taksimbilisim.com:1935/gtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="GuneydoguTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/JT5pp3Y.png" group-title="",Guneydoğu TV (720p) [Not 24/7] +https://broadcasttr.com:446/gtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="HaberGlobal.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5f607969cfef0b1593f28f74" group-title="",Haber Global (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/haberglobal/index.m3u8 +#EXTINF:-1 tvg-id="Haber61TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/RhPIYKu.jpg" group-title="",Haber61 TV (720p) [Not 24/7] +https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8 +#EXTINF:-1 tvg-id="Haber61.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/RhPIYKu.jpg" group-title="",Haber61 TV (720p) [Not 24/7] +https://win8.yayin.com.tr/haber61tv/smil:haber61tv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HabertürkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Habertürk TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/haberturk/index.m3u8 +#EXTINF:-1 tvg-id="HabertürkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Habertürk TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/130 +#EXTINF:-1 tvg-id="HalkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/vYEnfbj.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Halk TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_halktv/smil:halktv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HunatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Hunat TV (480p) [Geo-blocked] +https://waw2.artiyerelmedya.net/hunattv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="HunatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Hunat TV (480p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/hunattv/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/aXxAz84.png" group-title="",IBB TV (1080p) +http://wowza.istweb.tv:1935/webtv/webtv_wowza1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/aXxAz84.png" group-title="",IBB TV (1080p) [Not 24/7] +https://npserver1.ibb.gov.tr/webtv/webtv_wowza1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/d0T2jfg/ibb-tv-logo-white.png" group-title="",İBB TV [Not 24/7] +rtmp://wowza.istweb.tv:1935/webtv/webtv_wowza1 +#EXTINF:-1 tvg-id="IBBTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/d0T2jfg/ibb-tv-logo-white.png" group-title="",İBB TV (720p) [Offline] +http://wowza.istweb.tv:1935/dp/istanbul2/playlist.m3u8 +#EXTINF:-1 tvg-id="IcelTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/CGwImKv.png" group-title="",Icel TV (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/iceltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="IcelTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/CGwImKv.png" group-title="",Icel TV (720p) [Not 24/7] +https://broadcasttr.com:446/iceltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Jq49Y1g/uHAGsRk.png" group-title="",Kanal 3 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/kanal3/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Jq49Y1g/uHAGsRk.png" group-title="",Kanal 3 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal3/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal7.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/439/Image/70x46.png" group-title="",Kanal 7 (1080p) +https://live.kanal7.com/live/kanal7LiveDesktop/index.m3u8 +#EXTINF:-1 tvg-id="Kanal7.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/439/Image/70x46.png" group-title="",Kanal 7 (576p) [Not 24/7] +https://live.kanal7.com/live/kanal7LiveMobile/index.m3u8 +#EXTINF:-1 tvg-id="Kanal7Avrupa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/oHq0PKQ.jpg" group-title="",Kanal 7 Avrupa (1080p) [Not 24/7] +https://live.kanal7.com/live/kanal7AvrupaLive/index.m3u8 +#EXTINF:-1 tvg-id="Kanal12.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VOpaZcu.png" group-title="",Kanal 12 (720p) [Not 24/7] +https://waw1.artiyerelmedya.net/kanal12/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal15.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jF9bf3u.png" group-title="",Kanal 15 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal15/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal23.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202003/20200327/202003270730438110om_op.png" group-title="",Kanal 23 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal23/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal26.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/w1MUkRe.png" group-title="",Kanal 26 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal26/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal32.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal 32 (480p) [Not 24/7] +https://edge1.socialsmart.tv/kanal32/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal33.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/logo/202103/20210324/16/202103241155383682ej_op.png" group-title="",Kanal 33 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/kanal33/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal34.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gFzHUE6.png" group-title="",Kanal 34 (720p) +https://5be5d840359c6.streamlock.net/kanal34tv/kanal34tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal34.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gFzHUE6.png" group-title="",Kanal 34 (720p) [Not 24/7] +http://live.arkumedia.com:1935/kanal34tv/kanal34tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal38.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal 38 (540p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/kanal38/playlist.m3u8 +#EXTINF:-1 tvg-id="KANAL58.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",KANAL 58 (720p) [Not 24/7] +https://broadcasttr.com:446/kanal58/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="Kanal68.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/gx7m6Fz.jpg" group-title="",Kanal 68 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanal68/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalAvrupa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/56/K_AVRUPA_LOGO.png" group-title="",Kanal Avrupa (1080p) [Not 24/7] +http://51.15.2.151/hls/kanalavrupa.m3u8 +#EXTINF:-1 tvg-id="KanalB.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal B (480p) [Not 24/7] +http://212.174.58.161/hls-live/livepkgr/_definst_/liveevent/kanalb.m3u8 +#EXTINF:-1 tvg-id="KanalD.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/66.m3u8 +#EXTINF:-1 tvg-id="KanalD.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D (540p) [Offline] +https://2122248074.duhnet.tv/S2/HLS_LIVE/kanaldnp/track_3_750/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalDRomania.tr" tvg-country="RO" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da806" group-title="",Kanal D Romania (384p) [Not 24/7] +https://stream1.kanald.ro/iphone/live.m3u8 +#EXTINF:-1 tvg-id="KanalFirat.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/QhfTGyS.jpg" group-title="",Kanal Firat (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanalfirat/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalT.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kanal T (720p) [Not 24/7] +http://kuzeykibris.tv/m3u8/tv_kanalt.m3u8 +#EXTINF:-1 tvg-id="KanalUrfa.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/lACpflT.png" group-title="",Kanal Urfa (576p) [Not 24/7] +https://broadcasttr.com:446/kanalurfa/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/fileEntity/20170221/001300/001300000002742527/d3cdff38-e389-49f1-a54c-63f9bf4194aa.png" group-title="",Kanal V (720p) [Not 24/7] +http://yerelmedya.tv:1935/kanalv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalZ.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/elAlSno.png" group-title="",Kanal Z (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/kanalz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KardelenTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kardelen TV [Offline] +http://cdn1.streamencoding.com:1935/kardelen_live/HD/playlist.m3u8 +#EXTINF:-1 tvg-id="KayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kay TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/kaytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Kay TV (256p) [Not 24/7] +http://yayin3.canlitv.com:1935/canlitv/kaytv/playlist.m3u8 +#EXTINF:-1 tvg-id="KentTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://yerelmedya.tv/logosTV/38kenttv.png" group-title="",Kent Türk (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/38kenttv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="KRTTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",KRT TV (1080p) [Offline] +http://live1.krttv.com.tr/show/krttv_mobil/index.m3u8 +#EXTINF:-1 tvg-id="KudusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VyTYjaH.png" group-title="",Kudüs TV (480p) [Geo-blocked] +https://yayin.kudustv.com/981680400/kudustv/playlist.m3u8 +#EXTINF:-1 tvg-id="KudusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/VyTYjaH.png" group-title="",Kudüs TV (480p) [Offline] +http://yayin10.canliyayin.org/P981680400/kudustv/playlist.m3u8 +#EXTINF:-1 tvg-id="LalegulTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Lalegül TV (720p) [Not 24/7] +http://lalegultv.netmedya.net/hls/lalegultv.m3u8 +#EXTINF:-1 tvg-id="LalegulTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Lalegül TV (720p) [Not 24/7] +http://lalegultv.netmedya.net/lalegul-tv/lalegultv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LifeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Life TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/lifetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="LineTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6GNp7f8.png" group-title="",Line TV (404p) [Not 24/7] +https://broadcasttr.com:446/linetv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="LuysTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Luys TV [Offline] +http://luyse.mediatriple.net/luystv/luystv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/KqWGaZ6.png" group-title="",Mar TV (480p) [Not 24/7] +http://marmaratv.canliyayin.org/P324353563/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="MarmaraTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Marmara TV (480p) [Geo-blocked] +https://yayin.marmaratv.com.tr/P324353563/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="MaviKaradeniz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MaviKaradeniz (720p) [Geo-blocked] +http://yerelmedya.tv:1935/mavikaradeniz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MaviKaradeniz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MaviKaradeniz (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/mavikaradeniz/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MEDMUZIK.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="" group-title="",Med Müzik TV (1080p) [Not 24/7] +http://137.74.205.201/medmuzik/MedStream/playlist.m3u8 +#EXTINF:-1 tvg-id="MEDMUZIK.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="" group-title="",Med Müzik TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/29.m3u8 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (1080p) +https://602ccc850c9bb.streamlock.net/Medya/smil:1280.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/23 +#EXTINF:-1 tvg-id="MedyaHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Medya Haber TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/23.m3u8 +#EXTINF:-1 tvg-id="Mercan TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Mercan TV (720p) [Not 24/7] +http://yerelmedya.tv:1935/mercantv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MercanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Mercan TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/mercantv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="MeteorolojiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/EXj5xpO.jpg" group-title="",Meteoroloji TV (720p) [Offline] +https://b01c02nl.mediatriple.net/videoonlylive/mtfgdbkwkjllolive/broadcast_5b1673b7c36b7.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MilyonTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/LNcC7EH.jpg" group-title="",Milyon TV (720p) [Offline] +https://milyontv-live.ercdn.net/milyontv/milyontv_720p.m3u8 +#EXTINF:-1 tvg-id="MiskFM.tr" tvg-country="TR" tvg-language="Arabic" tvg-logo="https://www.miskfm.net/wp-content/uploads/2020/07/%D9%84%D9%88%D8%AC%D9%88.png" group-title="",Misk FM (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCrvsAwtrxZ0q31yU9JEBdWA/live +#EXTINF:-1 tvg-id="MSBCKanal2000.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",MSBC Kanal 2000 (360p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/kanal-2000/playlist.m3u8 +#EXTINF:-1 tvg-id="NaturalTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/SBw828K/f460YQg.png" group-title="",Natural TV (720p) [Not 24/7] +http://broadcasttr.com:1935/naturaltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="NaturalTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://naturaltv.com.tr/sites/default/files/naturaltv-logo.png" group-title="",Natural TV (720p) [Not 24/7] +https://broadcasttr.com:446/naturaltv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="NTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/28/Image/NTV.png" group-title="",NTV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/128 +#EXTINF:-1 tvg-id="NTVSpor.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",NTV Spor [Timeout] +http://46.4.193.238:8484/hls/ntvspor/playlist.m3u8 +#EXTINF:-1 tvg-id="OgunTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ogün TV (360p) +https://s01.vpis.io/ogun/ogun.m3u8 +#EXTINF:-1 tvg-id="OlayTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Olay Türk TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/olayturk/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="OlayTurkKayseri.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",OlayTürk Kayseri (720p) [Geo-blocked] +http://waw1.artiyerelmedya.net:1935/olayturk/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="ONMedyaHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ON Medya Haber (720p) [Geo-blocked] +http://live.arkumedia.com:1935/marmaratv/marmaratv/playlist.m3u8 +#EXTINF:-1 tvg-id="On4TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/TtbYRZD/i3ua14I.jpg" group-title="",On4 TV (1080p) [Not 24/7] +http://yayin.netradyom.com:1935/live/on4/playlist.m3u8 +#EXTINF:-1 tvg-id="OncuTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/TGPNYrD.jpg" group-title="",Öncü TV (1024p) [Not 24/7] +https://broadcasttr.com:446/oncurtv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="PetraTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Petra TV (1080p) [Not 24/7] +http://tt61.mine.nu/live/PetraTV/Fw99Gpq7Gq/6478.m3u8 +#EXTINF:-1 tvg-id="PowerTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9OPoXQG.png" group-title="",Power Turk (1080p) [Not 24/7] +https://livetv.powerapp.com.tr/powerturkTV/powerturkhd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9OPoXQG.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Power Turk (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_powerturk/smil:powerturk_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/291uOcR.png" group-title="",Power TV (1080p) +https://livetv.powerapp.com.tr/powerTV/powerhd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/power_turk_tr_tv.png" group-title="",PowerTürk TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/powerturktv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="RehberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Rehber TV (720p) [Not 24/7] +http://rehbertv.canliyayin.org/P871000884/rehbertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SabanTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Şaban TV (720p) [Geo-blocked] +http://145.239.37.125:20458/sabantv3/sabantv3/playlist.m3u8 +#EXTINF:-1 tvg-id="SamsunCanliHaberTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Samsun Canli Haber TV (720p) [Not 24/7] +https://cdn-samsuncanlihabertv.yayin.com.tr/samsuncanlihabertv/samsuncanlihabertv/playlist.m3u8 +#EXTINF:-1 tvg-id="SariyerTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sarıyer TV (360p) +http://s01.vpis.io/sariyer/sariyer.m3u8 +#EXTINF:-1 tvg-id="Sat7Pars.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sat7 Pars (720p) +https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Sat7Turk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/cKQIK4i.png" group-title="",Sat7 Türk (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="SatrancTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Satranç TV (480p) [Not 24/7] +http://139.162.182.79/live/test/index.m3u8 +#EXTINF:-1 tvg-id="SemerkandTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/WD0JaKP.png" group-title="",Semerkand TV (720p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtisvwurbfcyslive/broadcast_58d915bd40efc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowTurkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Show Türk TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_showturk/showturk_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/q0jrHyZ/show.png" group-title="",Show TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/showtv/index.m3u8 +#EXTINF:-1 tvg-id="Sinema1001.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sinema 1001 (1080p) [Offline] +http://4ce5e2d62ee2c10e43c709f9b87c44d5.streamhost.cc/m3u8/Turkish/8b8823ce5525d9b.m3u8 +#EXTINF:-1 tvg-id="SinopYildizTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/qk102lK.png" group-title="",Sinop Yildiz TV (360p) +https://s01.vpis.io/sinopyildiz/sinopyildiz.m3u8 +#EXTINF:-1 tvg-id="SportsTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/tGTVcVe.jpg" group-title="Sports",Sports TV (720p) [Geo-blocked] +https://live.sportstv.com.tr/hls/low/sportstv.m3u8 +#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.startv.com.tr/assets/images/content/logo.png" group-title="",Star TV (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=http://www.dailymotion.com/video/x729whv +#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/FKfPTrd/star-tv.png" group-title="",Star TV (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/69 +#EXTINF:-1 tvg-id="StarTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/FKfPTrd/star-tv.png" group-title="",Star TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/69.m3u8 +#EXTINF:-1 tvg-id="SterkTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sterk TV (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/24.m3u8 +#EXTINF:-1 tvg-id="SunRTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Sun RTV (720p) [Not 24/7] +https://tr.socialsmart.tv/suntv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="TarsusGuneyTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Tarsus Güney TV (270p) [Offline] +http://stream.taksimbilisim.com:1935/tarsusguneytv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TayTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Tay TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_taytv/smil:taytv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="teve2.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",teve2 (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_teve2/smil:teve2_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/VvjSpv8/Tj2G5lV.png" group-title="",TGRT Belgesel TV (576p) +https://tv.ensonhaber.com/tv/tr/tgrtbelgesel/index.m3u8 +#EXTINF:-1 tvg-id="TGRTBelgeselTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/VvjSpv8/Tj2G5lV.png" group-title="",TGRT Belgesel TV (576p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe462afc6a0e.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TGRTEU.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x60/59f19761cfef0b221f7da8ee" group-title="",TGRT EU (576p) +https://tv.ensonhaber.com/tv/tr/tgrteu/index.m3u8 +#EXTINF:-1 tvg-id="TGRTHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/59f19761cfef0b221f7da8ea" group-title="News",TGRT Haber (360p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtsxxkzwwuqtglive/broadcast_5fe4598be8e5d.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ThaqalaynTV.tr" tvg-country="TR" tvg-language="Arabic" tvg-logo="https://i.imgur.com/qlfjzN1.png" group-title="Religious",Thaqalayn TV (720p) [Not 24/7] +https://live.thaqalayn.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="TonTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Ton TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/tontv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="ToprakTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Toprak TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/topraktv/playlist.m3u8 +#EXTINF:-1 tvg-id="TorbaTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Torba TV (1080p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/torbatv/playlist.m3u8 +#EXTINF:-1 tvg-id="TR24TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TR24 TV (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/24tv/index.m3u8 +#EXTINF:-1 tvg-id="TRT1.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/OoONVyI.png" group-title="",TRT 1 (720p) [Geo-blocked] +https://tv-trt1.medya.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRT1.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/OoONVyI.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TRT 1 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_trt1/smil:trt1_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRT2.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5c6fb96bcfef0b613da060f6" group-title="",TRT 2 [Geo-blocked] +https://tv-trt2.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRT3.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/r41SGOT.png" group-title="",TRT 3 (720p) [Offline] +https://tv-trt3.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTArabi.tr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.ibb.co/HTzkq9P/iJIHMq9.png" group-title="News",TRT Arabi (720p) [Not 24/7] +https://tv-trtarabi.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTArabi.tr" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.ibb.co/HTzkq9P/iJIHMq9.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="News",TRT Arabi̇ (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_trtarapca/smil:trtarapca_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTAvaz.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/56kyxmQ/05zMtgQ.png" group-title="",TRT Avaz (720p) +https://tv-trtavaz.medya.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTBelgesel.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/9lW0TV2.png" group-title="",TRT Belgesel (720p) +https://tv-trtbelgesel.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTCocuk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/c1zC46V/idYZDje.jpg" group-title="Kids",TRT Çocuk (720p) +https://tv-trtcocuk.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTDiyanet.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TRT Diyanet (1080p) +https://eustr73.mediatriple.net/videoonlylive/mtikoimxnztxlive/broadcast_5e3bf95a47e07.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTEBAIlkokul.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Ilkokul (720p) [Offline] +https://tv-e-okul00.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTEBALise.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Lise (720p) [Offline] +https://tv-e-okul02.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTEBAOrtaokul.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/IUha5eQ.jpg" group-title="",TRT EBA Ortaokul (720p) [Offline] +https://tv-e-okul01.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTHaber.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/3pKN9gx/BYsl7Nc.jpg" group-title="News",TRT Haber (720p) [Offline] +https://tv-trthaber.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTKurdi.tr" tvg-country="TR" tvg-language="Kurdish" tvg-logo="https://i.ibb.co/bB4yG1Y/cWIvunZ.png" group-title="",TRT Kurdî (720p) [Offline] +https://tv-trtkurdi.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTMuzik.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/59f19761cfef0b221f7da94b" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TRT Muzik (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_trtmuzik/smil:trtmuzik_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TRTSpor.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/N2wGZyf.png" group-title="",TRT Spor [Offline] +https://tv-trtspor1.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTTurk.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/Br1knP7/R8SJH2m.png" group-title="",TRT Türk (720p) [Offline] +https://tv-trtturk.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TRTWorld.tr" tvg-country="INT" tvg-language="English" tvg-logo="https://i.ibb.co/phw4pjP/mjTjJ1N.png" group-title="News",TRT World (720p) [Not 24/7] +https://tv-trtworld.live.trt.com.tr/master.m3u8 +#EXTINF:-1 tvg-id="TV8.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/428/Image/70x46_tv8hd.png" group-title="",TV 8 (480p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/74.m3u8 +#EXTINF:-1 tvg-id="TV85.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.dsmart.com.tr/epg/images/0x50/5924449cd6f439663be1e725" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TV 8.5 (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_tv8_5/smil:tv8_5_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV35.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/XRX9fGi.png" group-title="",TV 35 (720p) [Offline] +https://59cba4d34b678.streamlock.net/canlitv/tv35/playlist.m3u8 +#EXTINF:-1 tvg-id="TV38.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/KDBXLqn.png" group-title="",TV 38 (360p) [Not 24/7] +https://59cba4d34b678.streamlock.net/live/tv38/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Geo-blocked] +https://waw1.artiyerelmedya.net/tv41/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/bant1/TV41.m3u8 +#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV 41 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv41/smil:tv41.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV52.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jt92HbR.jpg" group-title="",TV 52 (720p) [Not 24/7] +http://stream.taksimbilisim.com:1935/tv52/smil:tv52.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV52.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/jt92HbR.jpg" group-title="",TV 52 (720p) [Not 24/7] +https://broadcasttr.com:446/tv52/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="TVDen.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/PFWOkNh.png" group-title="",TV Den (576p) [Not 24/7] +http://canli.tvden.com.tr/hls/live.m3u8 +#EXTINF:-1 tvg-id="TVEm.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV Em (486p) +http://cdn-tvem.yayin.com.tr/TVEM/TVEM/playlist.m3u8 +#EXTINF:-1 tvg-id="TVEm.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV Em (486p) +https://cdn.yayin.com.tr/TVEM/TVEM/chunklist.m3u8 +#EXTINF:-1 tvg-id="TV4.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://orsatek.tv/wp-content/uploads/2017/03/logo_tv4-1.png" group-title="",TV4 (720p) +https://turkmedya-live.ercdn.net/tv4/tv4_720p.m3u8 +#EXTINF:-1 tvg-id="TV8.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://contentlibrary.digiturk.com.tr/Channel/428/Image/70x46_tv8hd.png" group-title="",TV8 (576p) [Not 24/7] +http://62.112.9.63:88/TV8_TR/index.m3u8?token=test +#EXTINF:-1 tvg-id="TV24.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",TV24 (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_kanal24/smil:kanal24_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TV41.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",TV41 (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/tv41/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="tv100.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=8jEXHzMTR7s +#EXTINF:-1 tvg-id="tv100.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 (720p) [Not 24/7] +https://livex458745.livestreamlive.xyz/tv100.m3u8 +#EXTINF:-1 tvg-id="tv100Ekonomi.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",tv100 Ekonomi (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/watch?v=32enbX7XKnw +#EXTINF:-1 tvg-id="UcanKusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qF8Rstv/0PTAYbs.jpg" group-title="",UçanKuş TV (720p) [Timeout] +https://ucankus-live.cdnnew.com/ucankus/ucankus.m3u8 +#EXTINF:-1 tvg-id="UcanKusTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.ibb.co/qF8Rstv/0PTAYbs.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",UçanKuş TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_ucankus/ucankus_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UlkeTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://cdn-0.tvprofil.com/cdn/100x40/10/img/kanali-logo/Ulke_TV_TR_logo.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",Ülke TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://mn-nl.mncdn.com/blutv_ulketv/smil:ulketv_sd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="UniversiteTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Üniversite TV (720p) [Not 24/7] +https://5be5d840359c6.streamlock.net/unitv/unitv/playlist.m3u8 +#EXTINF:-1 tvg-id="UUTVUskudarUniversitesiTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",ÜÜ TV Üsküdar Üniversitesi TV (1080p) [Not 24/7] +http://uskudarunv.mediatriple.net/uskudarunv/uskudar2/playlist.m3u8 +#EXTINF:-1 tvg-id="Vizyon58TV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Vizyon 58 TV (720p) [Geo-blocked] +https://waw2.artiyerelmedya.net/vizyon58/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="VTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/FRripYx.png" group-title="",VTV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/kanalv/bant1/chunks.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/vuslattv/HasBahCa.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] +http://yayin3.canlitv.com:1935/live/vuslattv/playlist.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/live/vuslattv/playlist.m3u8 +#EXTINF:-1 tvg-id="VuslatTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://www.logovector.org/wp-content/uploads/logos/png/v/vuslat_tv_logo.png" group-title="",Vuslat TV (720p) [Not 24/7] +https://waw2.artiyerelmedya.net/vuslattv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="YeniMalatyasporTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Yeni Malatyaspor TV (720p) [Not 24/7] +https://592f1881b3d5f.streamlock.net:1443/santraltv_925/santraltv_925/playlist.m3u8 +#EXTINF:-1 tvg-id="YolTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="" group-title="",Yol TV (720p) [Not 24/7] +http://163.172.39.215:25461/live/line/C4@!a3a1@!w72A/107.m3u8 diff --git a/channels/tt.m3u b/channels/tt.m3u new file mode 100644 index 000000000..0a1b0e0bc --- /dev/null +++ b/channels/tt.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TheIslamicNetwork.tt" tvg-country="TT" tvg-language="English" tvg-logo="https://i.imgur.com/Z2Io8n4.png" group-title="Religious",The Islamic Network (480p) [Not 24/7] +http://daruttarbiyah.srfms.com:1935/daruttarbiyah/livestream/playlist.m3u8 diff --git a/channels/tw.m3u~master b/channels/tw.m3u~master new file mode 100644 index 000000000..d36146b7a --- /dev/null +++ b/channels/tw.m3u~master @@ -0,0 +1,149 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CTITVAsia.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://divign0fdw3sv.cloudfront.net/Images/ChannelLogo/contenthub/424_144.png" group-title="",CTI TV Asia (720p) [Geo-blocked] +http://free.fullspeed.tv/query?url=https://www.youtube.com/channel/UC5l1Yto5oOIgRXlI4p4VKbw/live +#EXTINF:-1 tvg-id="FTVNews.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://en.wikipedia.org/wiki/Formosa_Television#/media/File:FTV_Show_Group.png" group-title="News",FTV News (720p) [Offline] +http://210.61.56.23/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH1ZongHeTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/1_file.jpg" group-title="Religious",GOOD TV CH1 綜合台 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech1.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH2ZhenLiTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/2_file.jpg" group-title="Religious",GOOD TV CH2 真理台 (720p) +https://live.streamingfast.net/osmflivech2.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH3ZhenQingBuLuoGeDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/3_file.jpg" group-title="Religious",GOOD TV CH3 真情部落格 短版 (720p) +https://live.streamingfast.net/osmflivech3.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH5GongXiangGuanDianDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/5_file.jpg" group-title="Religious",GOOD TV CH5 共享觀點 短版 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech5.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH6QinJinShenShiGeYinLe.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/6_file.jpg" group-title="Religious",GOOD TV CH6 親近神 詩歌音樂 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech6.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH7DaoGaoDaJunXinXi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/7_file.jpg" group-title="Religious",GOOD TV CH7 禱告大軍 信息 (720p) +https://live.streamingfast.net/osmflivech7.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH8XingFuXueTangDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/8_file.jpg" group-title="Religious",GOOD TV CH8 幸福學堂 短版 (720p) +https://live.streamingfast.net/osmflivech8.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH9AiPlusHaoYiShengDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/9_file.jpg" group-title="Religious",GOOD TV CH9 愛+好醫生 短版 (720p) +https://live.streamingfast.net/osmflivech9.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH10KaoXiangDuShuHuiDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/10_file.jpg" group-title="Religious",GOOD TV CH10 烤箱讀書會 短版 (720p) +https://live.streamingfast.net/osmflivech10.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH12WeiTaMingShi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/12_file.jpg" group-title="Religious",GOOD TV CH12 維他命施 (720p) +https://live.streamingfast.net/osmflivech12.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH13JianKangXinZhuLiuDuanBan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/13_file.jpg" group-title="Religious",GOOD TV CH13 健康新煮流 短版 (720p) +https://live.streamingfast.net/osmflivech13.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH14ZhenQingBuLuoGe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/14_file.jpg" group-title="Religious",GOOD TV CH14 真情部落格 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech14.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH15ZhenQingZhiYe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/15_file.jpg" group-title="Religious",GOOD TV CH15 真情之夜 (720p) +https://live.streamingfast.net/osmflivech15.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH16XieGuangMing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/16_file.jpg" group-title="Religious",GOOD TV CH16 葉光明 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech16.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH17DaWeiBaoSen.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/17_file.jpg" group-title="Religious",GOOD TV CH17 大衛鮑森 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech17.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH18GuoJiJiangYuan.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/18_file.jpg" group-title="Religious",GOOD TV CH18 國際講員 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech18.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH19GongXiangGuanDian.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/19_file.jpg" group-title="Religious",GOOD TV CH19 共享觀點 (720p) +https://live.streamingfast.net/osmflivech19.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH20EnDianShiFen.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/20_file.jpg" group-title="Religious",GOOD TV CH20 恩典時分 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech20.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH21HuaYuJiangYuan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/21_file.jpg" group-title="Religious",GOOD TV CH21 華語講員 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech21.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH22ZhiChangXinShiYe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/22_file.jpg" group-title="Religious",GOOD TV CH22 職場新視野 (720p) +https://live.streamingfast.net/osmflivech22.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH23KongZhongZhuRiXueShengHuo.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/23_file.jpg" group-title="Religious",GOOD TV CH23 空中主日學 生活 (720p) [Timeout] +https://live.streamingfast.net/osmflivech23.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH24LiuSanJiangGu.tw" tvg-country="TW" tvg-language="Chinese;Min Nan Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/24_file.jpg" group-title="Religious",GOOD TV CH24 劉三講古 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech24.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH25FuQiRenSheng.tw" tvg-country="TW" tvg-language="Chinese;Min Nan Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/25_file.jpg" group-title="Religious",GOOD TV CH25 福氣人生 (720p) +https://live.streamingfast.net/osmflivech25.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH26KongZhongZhuRiXueChaJing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/26_file.jpg" group-title="Religious",GOOD TV CH26 空中主日學 查經 (720p) +https://live.streamingfast.net/osmflivech26.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH27KongZhongShengJingXueYuan.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/27_file.jpg" group-title="Religious",GOOD TV CH27 空中聖經學院 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech27.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH28XianDaiShiGe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/28_file.jpg" group-title="Religious",GOOD TV CH28 現代詩歌 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech28.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH29JingDianYinLeHe.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/29_file.jpg" group-title="Religious",GOOD TV CH29 經典音樂河 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech29.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH30TianTangJingBai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/30_file.jpg" group-title="Religious",GOOD TV CH30 天堂敬拜 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech30.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH31FuYinBuDaoYinLeHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/31_file.jpg" group-title="Religious",GOOD TV CH31 福音佈道音樂會 (720p) +https://live.streamingfast.net/osmflivech31.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH32TeHuiXiLieDaoGaoYuZhuanHua.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/32_file.jpg" group-title="Religious",GOOD TV CH32 特會系列:禱告與轉化 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech32.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH33TeHuiXiLieYanJingPeiLing.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/33_file.jpg" group-title="Religious",GOOD TV CH33 特會系列:研經培靈 (720p) +https://live.streamingfast.net/osmflivech33.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH36TeHuiXiLieChaoZiRanDaNengYiZhiShiFang.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/36_file.jpg" group-title="Religious",GOOD TV CH36 特會系列:超自然大能.醫治釋放 (720p) +https://live.streamingfast.net/osmflivech36.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH37TeHuiXiLieYiSeLieZhuanTi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/37_file.jpg" group-title="Religious",GOOD TV CH37 特會系列:以色列專題 (720p) +https://live.streamingfast.net/osmflivech37.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH38TeHuiXiLieQingNianTeHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/38_file.jpg" group-title="Religious",GOOD TV CH38 特會系列:青年特會 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech38.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH40JiaTing8DianDangZhuanZhuanFaXianAi.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/40_file.jpg" group-title="Religious",GOOD TV CH40 家庭8點檔轉轉發現愛 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech40.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH41XingFuXueTang.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/41_file.jpg" group-title="Religious",GOOD TV CH41 幸福學堂 (720p) +https://live.streamingfast.net/osmflivech41.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH44KaoXiangDuShuHui.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/44_file.jpg" group-title="Religious",GOOD TV CH44 烤箱讀書會 (720p) +https://live.streamingfast.net/osmflivech44.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH45QiaTong.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/45_file.jpg" group-title="Religious",GOOD TV CH45 卡通 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech45.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH47MuZhePinDao.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/47_file.jpg" group-title="Religious",GOOD TV CH47 牧者頻道 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech47.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH49DaoGaoPinDao.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/49_file.jpg" group-title="Religious",GOOD TV CH49 禱告頻道 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech49.m3u8 +#EXTINF:-1 tvg-id="GOODTVCH50GuoJiJiangYuanZhongWenFaYin.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://app.streamingfast.net/uploads/channel/50_file.jpg" group-title="Religious",GOOD TV CH50 國際講員 中文發音 (720p) [Not 24/7] +https://live.streamingfast.net/osmflivech50.m3u8 +#EXTINF:-1 tvg-id="GSTVXingFuKongJianJuJiaTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/g9FKTkv.png" group-title="Lifestyle",GSTV Gorgeous Space TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCoo-jAsJgM8z09ddlhcBlSA/live +#EXTINF:-1 tvg-id="IndigenousTV.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/RuAYuSM.png" group-title="",Indigenous TV (720p) +http://streamipcf.akamaized.net/live/_definst_/smil:liveabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBSXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://poster.starhubgo.com/Linear_channels2/808_1920x1080_HTV.png" group-title="News",TVBS新聞 [Geo-blocked] +http://seb.sason.top/sc/tvbsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="SanLiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/e/e1/SETN_logo.png" group-title="News",三立新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/sllive_fhd.m3u8 +#EXTINF:-1 tvg-id="ZhongTianXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://piceltaott-elta.cdn.hinet.net/upload/channel/908.png" group-title="News",中天新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/ztxw_fhd.m3u8 +#EXTINF:-1 tvg-id="ZhongShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://new.ctv.com.tw/Cms_Data/Sites/CTV3/Themes/default/images/logo_news.png" group-title="News",中視新聞 (1080p) [Geo-blocked] +http://seb.sason.top/sc/zsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="YuanZuMin.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://titv.ipcf.org.tw/images/logo.png" group-title="General",原住民電視 (720p) +http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8 +#EXTINF:-1 tvg-id="TaiShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ttv.com.tw/news/15/images/TTV-N_logo200-min.png" group-title="News",台視新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/tsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="WeiXingDianShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/weixin.png" group-title="Religious",唯心電視 (480p) +http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8 +#EXTINF:-1 tvg-id="YiDianShiXinWenTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://store-images.s-microsoft.com/image/apps.14454.9007199266706361.be7aa2de-7429-4e34-b9a4-eca9a55157c1.3eb6a511-ff23-46aa-bf3a-b8b7e7e5c808?mode=scale&q=90&h=270&w=270&background=%23FFFFFF" group-title="News",壹電視新聞台 (1080p) +http://stream.nexttv.com.tw/n001/hd/live.m3u8 +#EXTINF:-1 tvg-id="DaAi1.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="http://www.daai.tv/images/logo.png" group-title="General",大愛1 (720p) +https://pulltv1.wanfudaluye.com/live/tv1.m3u8 +#EXTINF:-1 tvg-id="DaAi2.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.cns.net.tw/web/upload/20141017171303RmzVY9Z.png" group-title="General",大愛2 (720p) +https://pulltv2.wanfudaluye.com/live/tv2.m3u8 +#EXTINF:-1 tvg-id="DaLiDianShi.tw" tvg-country="TW" tvg-language="Min Nan Chinese" tvg-logo="http://www.dalitv.com.tw/img/LOGOn.png" group-title="General",大立電視 (720p) +http://www.dalitv.com.tw:4568/live/dali/index.m3u8 +#EXTINF:-1 tvg-id="DongLingXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://img.news.ebc.net.tw/EbcNews/logoes/pc_logo.png" group-title="News",東森新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/dsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="DongLingCaiJingXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://img-fnc.ebc.net.tw/EbcFnc/logoes/pc_logo.png" group-title="News",東森財經新聞 (1080p) [Not 24/7] +http://seb.sason.top/sc/dscjxw_fhd.m3u8 +#EXTINF:-1 tvg-id="MinShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_01.png" group-title="General",民視 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=ms +#EXTINF:-1 tvg-id="MinShiTaiWan.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_03.png" group-title="News",民視台灣 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=tw +#EXTINF:-1 tvg-id="MinShiXinWenTai.tw" tvg-country="TW" tvg-language="Chinese;Mandarin Chinese" tvg-logo="https://i.imgur.com/6jbjVNy.png" group-title="News",民視新聞台 (720p) [Offline] +https://6.mms.vlog.xuite.net/hls/ftvtv/index.m3u8 +#EXTINF:-1 tvg-id="MinShiDiYi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.ftv.com.tw/images/Ch_02.png" group-title="General",民視第一 (720p) [Not 24/7] +http://seb.sason.top/ptv/ftv.php?id=dy +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJiaoTongWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播交通委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live6/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoNeiZhengWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播內政委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live7/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoSiFaJiFaZhiWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播司法及法制委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live9/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoWaiJiaoJiGuoFangWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播外交及國防委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live8/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJiaoYuJiWenHuaWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播教育及文化委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live4/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoZhaoYeXieShang.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播朝野協商 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live10/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoSheHuiFuLiJiWeiShengHuanJingWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播社會福利及衛生環境委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live3/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoJingJiWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播經濟委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live5/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoCaiZhengWeiYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播財政委員會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live2/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="LiFaYuanIVODZhiBoYuanHui.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://i.imgur.com/PxYhFpb.png" group-title="Legislative",立法院IVOD直播院會 (450p) +https://lylive-videorent.cdn.hinet.net/out/u/live/gop4/ly/ly-Live1/hls-cl-tv/index.m3u8 +#EXTINF:-1 tvg-id="HuaShiXingWen.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://upload.wikimedia.org/wikipedia/zh/thumb/2/27/Cts_news_info.png/200px-Cts_news_info.png" group-title="News",華視新聞資訊 [Geo-blocked] +http://seb.sason.top/sc/hsxw_fhd.m3u8 +#EXTINF:-1 tvg-id="HuaZhangWeiShi.tw" tvg-country="TW" tvg-language="Chinese" tvg-logo="https://www.hwazan.org/statics/images/newhztv_logo.png" group-title="Religious",華藏衛視 (1080p) [Not 24/7] +http://118.163.88.61:1935/hwazanlivetv/live.stream/playlist.m3u8 diff --git a/channels/tz.m3u b/channels/tz.m3u new file mode 100644 index 000000000..f033cf7ef --- /dev/null +++ b/channels/tz.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AzamSports1.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://azamtv.co.tz/tan/thumb/c/124/70/channels/channel_image1444752374.jpg" group-title="Sports",Azam Sports 1 (540p) [Offline] +https://1446000130.rsc.cdn77.org/1446000130/index.m3u8 +#EXTINF:-1 tvg-id="AzamSports2.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://azamtv.co.tz/tan/thumb/c/124/70/channels/channel_image1508329528.png" group-title="Sports",Azam Sports 2 (540p) [Offline] +https://1326605225.rsc.cdn77.org/1326605225/index.m3u8 +#EXTINF:-1 tvg-id="ChannelTen.tz" tvg-country="TZ" tvg-language="Swahili" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSlgi36jeSD2_aTBenoZYVRo53N_WjRVK9EcA&usqp=CAU" group-title="",Channel Ten (240p) [Not 24/7] +http://hls-pull-switchinternational.speedws.com/live/test1/playlist.m3u8 +#EXTINF:-1 tvg-id="IBNTV.tz" tvg-country="TZ" tvg-language="English" tvg-logo="https://i.imgur.com/Wf2BlTG.png" group-title="Religious",IBN TV (360p) +http://138.68.138.119:8080/low/5a8993709ea19/index.m3u8 diff --git a/channels/ua.m3u~master b/channels/ua.m3u~master new file mode 100644 index 000000000..5ea57ea96 --- /dev/null +++ b/channels/ua.m3u~master @@ -0,0 +1,271 @@ +#EXTM3U +#EXTINF:-1 tvg-id="1Plus1Sport.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/VpBVorp.png" group-title="",1+1 Спорт (720p) [Not 24/7] +https://live-k2301-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (1080p) +http://95.67.106.10/hls/nta_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (720p) +http://95.67.106.10/hls/nta_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="4kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/8k3JjOW.png" group-title="",4 канал (576p) +http://95.67.106.10/hls/nta_ua_low/index.m3u8 +#EXTINF:-1 tvg-id="7kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/nJvGdoj.jpg" group-title="",7 канал (720p) +https://cdn10.live-tv.od.ua:8083/7tvod/7tvod/playlist.m3u8 +#EXTINF:-1 tvg-id="7kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/nJvGdoj.jpg" group-title="",7 канал (Одесса) (720p) +https://cdn10.live-tv.od.ua:8083/7tvod/7tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="24Kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",24 Канал (1080p) +http://streamvideol1.luxnet.ua/news24/news24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="24Kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",24 Канал (1080p) +http://streamvideol1.luxnet.ua/news24/smil:news24.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="34kanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",34 канал (576p) [Not 24/7] +http://streamvideol.luxnet.ua/34ua/34ua.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="100News.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/11llLr1.jpg" group-title="News",100% News (576p) +http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8 +#EXTINF:-1 tvg-id="ATR.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/ysvDr1D.jpg" group-title="",ATR (504p) +http://stream.atr.ua/atr/live/index.m3u8 +#EXTINF:-1 tvg-id="BamBarBiaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LIk85IA.png" group-title="Travel",BamBarBia TV (1080p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/bbb/bbbtv-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="CNLEvropa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lozzdS7.png" group-title="Religious",CNL Европа (216p) +http://live-mobile.cdn01.net/hls-live/202E1F/default/mobile/stream_10429_3.m3u8 +#EXTINF:-1 tvg-id="DonezkTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/dHqUHfw.png" group-title="",Donezk TV (720p) [Offline] +http://stream.dn.ua/hls/stream.m3u8 +#EXTINF:-1 tvg-id="GIT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/v5J8tiS.png" group-title="",GIT (720p) +https://stream.uagit.tv/gittv.m3u8 +#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (720p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (720p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (480p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-480p/playlist.m3u8 +#EXTINF:-1 tvg-id="GTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Rc6UGkb.jpg" group-title="",GTV (224p) +https://cdn1.live-tv.od.ua:8083/a1od/gtvod-240p/playlist.m3u8 +#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LtQL1q9.jpg" group-title="Lifestyle",HDFashion & LifeStyle (1080p) +http://95.67.47.114/hls/hdfashion_ua.m3u8 +#EXTINF:-1 tvg-id="HDFashionLifeStyle.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/LtQL1q9.jpg" group-title="Lifestyle",HDFashion & LifeStyle (1080p) +http://95.67.47.115/hls/hdfashion_ua.m3u8 +#EXTINF:-1 tvg-id="IDFashion.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Y50tmIN.png" group-title="Lifestyle",ID Fashion (1080p) [Not 24/7] +https://idfashion.cdn-02.cosmonova.net.ua/hls/idfashion_ua.m3u8 +#EXTINF:-1 tvg-id="IHTEP.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/R06gbuT.png" group-title="",IHTEP (576p) +https://edge1.iptv.macc.com.ua/img/inter_3/index.m3u8 +#EXTINF:-1 tvg-id="Inter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0n7Bk5s.png" group-title="",Iнтер (576p) +https://edge3.iptv.macc.com.ua/img/inter_3/index.m3u8 +#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",K1 (512p) +https://edge2.iptv.macc.com.ua/life/k1_2/index.m3u8 +#EXTINF:-1 tvg-id="Kratu.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Kratu (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/kratu/kratu-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Kratu.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Kratu (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/kratu/kratu/playlist.m3u8 +#EXTINF:-1 tvg-id="Lale.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Kids",Lale (504p) +http://stream.atr.ua/lale/live/index.m3u8 +#EXTINF:-1 tvg-id="M1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.postimg.cc/SRCMK3vb/m1-ua.png" group-title="Music",M1 (720p) +http://live.m2.tv/hls2/stream.m3u8 +#EXTINF:-1 tvg-id="M2.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Music",M2 (540p) +http://live.m2.tv/hls3/stream.m3u8 +#EXTINF:-1 tvg-id="Micto.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/p7bzHf4.png" group-title="",Micto (360p) [Timeout] +http://93.78.206.172:8080/stream3/stream.m3u8 +#EXTINF:-1 tvg-id="MostVideoTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",MostVideo.TV (720p) [Not 24/7] +http://w4.mostvideo.tv/tv/ch1.m3u8 +#EXTINF:-1 tvg-id="OdessaFashion.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="Lifestyle",Odessa Fashion (480p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/ofod/ofod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Renome.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Uy9gD3l.jpg" group-title="",Renome (576p) +http://85.238.112.40:8810/hls_sec/online/list-renome.m3u8 +#EXTINF:-1 tvg-id="Simon.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/RaVchcn.jpg" group-title="",Simon (576p) [Not 24/7] +https://hls.simon.ua/live-HD/live/playlist.m3u8 +#EXTINF:-1 tvg-id="Skrypinua.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Skrypin.ua (1080p) [Not 24/7] +https://open-cdn.lanet.tv/live/1008.m3u8 +#EXTINF:-1 tvg-id="Sport1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wBJI5Jw.png" group-title="Sports",Sport 1 (576p) [Not 24/7] +https://95-213-224-183.livesports24.online/sport1ua.m3u8 +#EXTINF:-1 tvg-id="TravelGuideTV.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="" group-title="Travel",Travel Guide TV (720p) +https://cdn10.live-tv.od.ua:8083/leonovtv/test-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelGuideTV.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="" group-title="Travel",Travel Guide TV (720p) +https://cdn10.live-tv.od.ua:8083/leonovtv/test1/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) +https://hls.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) +https://hls.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) +https://rtsp.cdn.ua/tv5.zp.ua_live/mp4:tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV5.ua" tvg-country="UA" tvg-language="Ukrainian;Russian" tvg-logo="https://i.imgur.com/ixKcTad.png" group-title="",TV5 (Запорожье) (360p) +https://rtsp.cdn.ua/tv5.zp.ua_live/tv5/playlist.m3u8 +#EXTINF:-1 tvg-id="TV7Plus.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/5qwIslT.jpg" group-title="Local",TV7+ (Хмельницький) (576p) [Not 24/7] +https://tv7plus.com/hls/tv7.m3u8 +#EXTINF:-1 tvg-id="UAOdesa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",UA: Одеса (384p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/odtrkod/odtrkod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) +http://95.67.106.242/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) +https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (720p) +https://ua-tv-hls3.cosmonova.net.ua/hls/ua-tv_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="UATV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/lNH1pkZ.jpg" group-title="",UATV (576p) +https://ua-tv-hls2.cosmonova.net.ua/hls/ua-tv_ua_low/index.m3u8 +#EXTINF:-1 tvg-id="UkrLive.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Ukr Live (1080p) [Not 24/7] +http://95.67.12.149:9005 +#EXTINF:-1 tvg-id="Z.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/f0nOjL8.png" group-title="",Z (Запорожье) (1080p) +https://stream.ztv.zp.ua/hls/live.m3u8 +#EXTINF:-1 tvg-id="A1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0DUi5fO.jpg" group-title="",А1 (Одесса) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/a1od/a1od-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Avtoradio.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Авторадио (720p) [Not 24/7] +https://rtmp.radiogroup.com.ua:8080/live/avto/index.m3u8 +#EXTINF:-1 tvg-id="AkademiyaOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Академия (Одесса) (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/36chod/36chod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="ArhatTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Qdgntk1.jpg" group-title="",Архат ТВ (720p) +https://arhat.tv/public/720p/index.m3u8 +#EXTINF:-1 tvg-id="BaltaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Балта ТВ (768p) +http://194.50.51.34/playlist.m3u8 +#EXTINF:-1 tvg-id="VTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/JG493Vn.png" group-title="",ВТВ (576p) +http://video.vtvplus.com.ua:81/hls/online/index.m3u8 +#EXTINF:-1 tvg-id="Glas.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Глас (576p) +http://85.238.112.69:8811/hls_sec/239.0.4.18-.m3u8 +#EXTINF:-1 tvg-id="GlassRU.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="" group-title="",Гласс (RU) (576p) [Not 24/7] +https://glas.org.ua/hls/glassru.m3u8 +#EXTINF:-1 tvg-id="GlassUA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Гласс (UA) (576p) [Not 24/7] +https://glas.org.ua/hls/glassua.m3u8 +#EXTINF:-1 tvg-id="DonbasOnline.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Донбас Online (1080p) [Not 24/7] +http://176.110.1.30:1935/live/donbasonline/playlist.m3u8 +#EXTINF:-1 tvg-id="DumskayaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Думская ТВ (1080p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/dumska/dumska-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Zdorove.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Здоровье (504p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/zdorovood/zdorovo/playlist.m3u8 +#EXTINF:-1 tvg-id="IzmailTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/mpMjj7o.png" group-title="",Измаил ТВ (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/izod/izod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="IzmailTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/mpMjj7o.png" group-title="",Измаил ТВ (576p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/izod/izod/playlist.m3u8 +#EXTINF:-1 tvg-id="Inter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/0n7Bk5s.png" group-title="",Интер (512p) [Not 24/7] +http://109.68.40.67/img/inter_2/index.m3u8 +#EXTINF:-1 tvg-id="IRT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ИРТ (Днепр) (576p) [Not 24/7] +http://91.193.128.233:1935/live/irt.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="Inshiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Інший (720p) +https://cdn1.live-tv.od.ua:8083/ktkod/ktkod/playlist.m3u8 +#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",К1 (576p) +http://109.68.40.67/life/k1.m3u8 +#EXTINF:-1 tvg-id="K1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/zkGPS5w.jpg" group-title="",К1 (576p) +http://edge3.iptv.macc.com.ua/life/k1_3/index.m3u8 +#EXTINF:-1 tvg-id="Krug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/krugod/krugod/playlist.m3u8 +#EXTINF:-1 tvg-id="Krug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="LanetTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Ланет.TV (486p) +http://kiev1-cdn.lanet.tv/live/1008.m3u8 +#EXTINF:-1 tvg-id="NadiyaNovyykanal.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Надия/Новый канал (576p) [Not 24/7] +http://nadiya.home-net.com.ua/mob/mystream.m3u8 +#EXTINF:-1 tvg-id="Nadiya.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/exdDHml.png" group-title="",Надія (720p) [Not 24/7] +https://stream.hope.ua/hopeua/live_1/playlist.m3u8 +#EXTINF:-1 tvg-id="NLOTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",НЛО ТВ (576p) [Geo-blocked] +https://xx001.vivat.live/t-0301.0f6f.d/sd/00047/2m/index.m3u8 +#EXTINF:-1 tvg-id="NTK.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",НТК (1080p) [Not 24/7] +https://stream.ntktv.ua/s/ntk/ntk.m3u8 +#EXTINF:-1 tvg-id="NTN.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ntn.png" group-title="",НТН (576p) +https://edge2.iptv.macc.com.ua/img/ntn_3/index.m3u8 +#EXTINF:-1 tvg-id="NTN.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/ntn.png" group-title="",НТН (576p) [Not 24/7] +https://edge3.iptv.macc.com.ua/img/ntn_3/index.m3u8 +#EXTINF:-1 tvg-id="ObshchestvennoeNezavisimoeTelevidenie.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="http://4.bp.blogspot.com/-2jLl6rP9uB0/UWCjNwyiHqI/AAAAAAAABXA/giDBQTC3Gvw/s1600/ont3+copy.jpg" group-title="",Общественное Независимое Телевидение (576p) +http://85.238.112.40:8810/hls_sec/239.33.75.33-.m3u8 +#EXTINF:-1 tvg-id="Obektiv59.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Объектив 59 (576p) +https://hls.simon.ua/live-HD/live/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="Odessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://mediacast.tv/wp-content/uploads/2018/03/pershui-dilovyi.png" group-title="",Одесса (576p) [Geo-blocked] +https://cdn1.live-tv.od.ua:8083/riood/riood-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Odessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://mediacast.tv/wp-content/uploads/2018/03/pershui-dilovyi.png" group-title="",Одесса (576p) [Geo-blocked] +https://cdn1.live-tv.od.ua:8083/riood/riood/playlist.m3u8 +#EXTINF:-1 tvg-id="OrbitaTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Орбіта ТВ (360p) [Not 24/7] +http://ftp.orbita.dn.ua/hls/orbita.m3u8 +#EXTINF:-1 tvg-id="OTVDnepr.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ОТВ (Днепр) (576p) +http://91.193.128.233:1935/live/otv.stream_576p/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyygorodskoyKrivoyRog.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="http://big-tv.org/uploads/posts/2017-11/thumbs/1510692123_pervyy-gorodskoy-krivoy-rog.png" group-title="",Первый городской (Кривой Рог) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyGorodskoyKrivoyRog.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Кривой Рог) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/1tvkr/1tvkr/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (576p) +http://91.194.79.46:8081/stream2/channel2/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (504p) +https://cdn1.live-tv.od.ua:8083/1tvod/1tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyGorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Городской (Одесса) (504p) +https://cdn1.live-tv.od.ua:8083/1tvod/1tvod/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyygorodskoyOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://sun9-18.userapi.com/c639227/v639227583/45ae7/tw3dA0ptuXI.jpg" group-title="",Первый городской (Одесса) (1080p) [Not 24/7] +http://91.194.79.46:8081/stream1/channel1/playlist.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (720p) +http://95.67.127.156/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (720p) +http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PervyyDelovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Первый Деловой (576p) [Not 24/7] +http://pershij-dlovij-hls1.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="PershiyDiloviy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Діловий (720p) +http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PershiyDiloviy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Діловий (576p) +http://pershij-dlovij-hls3.cosmonova.net.ua/hls/pershij-dlovij_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="PershiyZahidniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Західний (Львов) (576p) +http://hls.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="PershiyZahidniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Перший Західний (Львов) (576p) +http://rtmp.cdn.ua/1zahid.com_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) +https://app.live.112.events/hls-ua/112hd_mid/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) +https://app.live.112.events/hls/112hd_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) [Not 24/7] +http://app.live.112.events/hls-ua/112hd_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pershiynezalezhniy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="News",Перший незалежний (1080p) [Timeout] +https://app.live.112.events/hls/112hd_mid/index.m3u8 +#EXTINF:-1 tvg-id="PravdaTUT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ПравдаТУТ (720p) +http://95.67.17.131/hls/pravdatytkievshina_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="PravdaTUT.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ПравдаТУТ (720p) +http://pravdatytkievshina-hls2.cosmonova.net.ua/hls/pravdatytkievshina_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (720p) +http://95.67.21.100/hls/prm_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (720p) +http://prm-hls1.cosmonova.net.ua/hls/prm_ua_hi/index.m3u8 +#EXTINF:-1 tvg-id="Pryamiy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Прямий (576p) +http://prm-hls1.cosmonova.net.ua/hls/prm_ua_mid/index.m3u8 +#EXTINF:-1 tvg-id="RadioLyuks.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.i.ua/radio/logo/1/161.jpg" group-title="",Радио Люкс (1080p) +https://stream1.luxnet.ua/luxstudio/smil:luxstudio.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Reporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Репортер (720p) [Not 24/7] +http://cdn1.live-tv.od.ua:8081/31chod/31chod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="Reporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Репортер (720p) [Not 24/7] +http://cdn1.live-tv.od.ua:8081/31chod/31chod/playlist.m3u8 +#EXTINF:-1 tvg-id="Svarozhichi.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Сварожичи (720p) +http://80.91.177.102:1935/live/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="Svarozhichi.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Сварожичи (720p) +http://tv.tv-project.com:1935/live/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (720p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (480p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt480p/playlist.m3u8 +#EXTINF:-1 tvg-id="SK1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/wr0CN1l.png" group-title="",СК 1 (256p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt240p/playlist.m3u8 +#EXTINF:-1 tvg-id="STB.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/Av0pftd.png" group-title="",СТБ [Timeout] +http://188.35.9.11:11021/j +#EXTINF:-1 tvg-id="TVDom.ua" tvg-country="UA" tvg-language="Russian" tvg-logo="" group-title="",ТВ Дом [Offline] +http://46.149.48.21:1234 +#EXTINF:-1 tvg-id="TVA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТВА (Чернiвцi) (576p) +http://hls.cdn.ua/tva.ua_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVA.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТВА (Чернiвцi) (576p) +http://rtsp.cdn.ua/tva.ua_live/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="prm.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://prm.ua/wp-content/uploads/2020/10/cropped-Favicon-1-180x180.png" group-title="",Телеканал Прямий (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCH9H_b9oJtSHBovh94yB5HA/live +#EXTINF:-1 tvg-id="TisTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Тис ТВ (480p) [Not 24/7] +https://cdn10.live-tv.od.ua:8083/riood/tisod504/playlist.m3u8 +#EXTINF:-1 tvg-id="TretiyCifrovoy.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="http://tretiy.tv/wp-content/uploads/2017/12/logo.png" group-title="",Третий Цифровой (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/3tvod/3tvod-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="TRKAleks.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Алекс (576p) +http://46.46.112.223/live/livestream1.m3u8 +#EXTINF:-1 tvg-id="TRKKrug.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Круг (576p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/krugod/krugod/playlist.m3u8 +#EXTINF:-1 tvg-id="TRKReporter.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ТРК Репортер (480p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/31chod/31chod-sub/playlist.m3u8 +#EXTINF:-1 tvg-id="TrofeyTV.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/3LSDHHJ.png" group-title="",Трофей ТВ (720p) [Offline] +https://5db1ab4f970be.streamlock.net/live/smil:trofey.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Futbol1.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/J1VuYAB.png" group-title="Sports",Футбол 1 (576p) [Not 24/7] +https://95-213-224-183.livesports24.online/uafootballua1.m3u8 +#EXTINF:-1 tvg-id="HersonPlyus.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://khersontv.com/wp-content/themes/hueman/img/logo.png" group-title="",Херсон Плюс (576p) +http://46.175.163.130/ks_plus/index.m3u8 +#EXTINF:-1 tvg-id="Cherniveckiypromin.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Чернівецький промінь (720p) [Not 24/7] +https://langate.tv/promin/live_720/index.m3u8 +#EXTINF:-1 tvg-id="ChPInfo.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ЧП Инфо (576p) +http://edge3.iptv.macc.com.ua/life/magnolia_3/index.m3u8 +#EXTINF:-1 tvg-id="ChPinfo.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://iptvx.one/icn/chpinfo.png" group-title="",ЧП.інфо (576p) +http://109.68.40.67/life/magnolia.m3u8 +#EXTINF:-1 tvg-id="YuzhnayaVolna.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Южная Волна (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/wave/wave-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="YuzhnayaVolnaTVOdessa.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",Южная Волна ТВ (Одесса) (720p) [Not 24/7] +https://cdn1.live-tv.od.ua:8083/wave/wave-720/playlist.m3u8 +#EXTINF:-1 tvg-id="YaTB.ua" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="" group-title="",ЯТБ (576p) +http://46.175.163.130/live_yatb/playlist.m3u8 diff --git a/channels/ug.m3u b/channels/ug.m3u new file mode 100644 index 000000000..ee8ad13b3 --- /dev/null +++ b/channels/ug.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArkTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="" group-title="",Ark TV (576p) +https://arktelevision.org/hlslive/test/test.m3u8 +#EXTINF:-1 tvg-id="NBSTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="https://rndcdn.dstv.com/dstvcms/2018/07/03/NBS_logo_4-3_001_xlrg.png" group-title="",NBS TV (480p) [Not 24/7] +https://vse-cdn1-readymedia.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/5-20-hls/live.m3u8 +#EXTINF:-1 tvg-id="NBSTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="https://rndcdn.dstv.com/dstvcms/2018/07/03/NBS_logo_4-3_001_xlrg.png" group-title="",NBS TV (360p) [Not 24/7] +https://cdn1.rea.cdn.moderntv.eu/readymedia/stream/NBSTV/10-hls/live-media.m3u8 +#EXTINF:-1 tvg-id="SaltTV.ug" tvg-country="UG" tvg-language="English" tvg-logo="http://thedronemedia.ug/wp-content/uploads/2017/07/salt.png" group-title="Religious",Salt TV (720p) [Not 24/7] +https://dcunilive38-lh.akamaihd.net/i/dclive_1@692676/master.m3u8 diff --git a/channels/uk.m3u~master b/channels/uk.m3u~master new file mode 100644 index 000000000..44ad7bc28 --- /dev/null +++ b/channels/uk.m3u~master @@ -0,0 +1,405 @@ +#EXTM3U +#EXTINF:-1 tvg-id="4Music.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://d126oek9ze5bb6.cloudfront.net/uploads/2018/07/4Music_primary.png" group-title="Music",4Music (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,4music-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/4music/ +#EXTINF:-1 tvg-id="Afrobeats.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Iaey8k5.jpg" group-title="Music",Afrobeats (1080p) +https://stream.ecable.tv/afrobeats/index.m3u8 +#EXTINF:-1 tvg-id="AhlulbaytTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qLqHPhK.png" group-title="Religious",Ahlulbayt TV (1080p) [Not 24/7] +http://109.123.126.14:1935/live/livestream1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="AhlulbaytTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qLqHPhK.png" group-title="Religious",Ahlulbayt TV (1080p) [Not 24/7] +https://5f3e23ac71915.streamlock.net:4434/live/livestream1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="Ahwazna.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://www.ahwazna.net/uploads/2018/04/AhwaznaLogo.png" group-title="",Ahwazna (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/ahwaznach +#EXTINF:-1 tvg-id="AkaalTV.uk" tvg-country="UK" tvg-language="Punjabi;English" tvg-logo="https://i.imgur.com/62IpVDn.png" group-title="Religious",Akaal TV (396p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/akaal_tv/hls1_smart_akaal/akaal_tv.m3u8 +#EXTINF:-1 tvg-id="AkaalTV.uk" tvg-country="UK" tvg-language="Punjabi;English" tvg-logo="https://i.imgur.com/62IpVDn.png" group-title="Religious",Akaal TV (360p) [Not 24/7] +http://akaal.zecast.net/akaal-live/smil:akaaltv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlarabyTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/LNI1HNi.png" group-title="News",Alaraby TV (1080p) +https://alaraby.cdn.octivid.com/alaraby/smil:alaraby.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlhiwarTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/ooiJwD5.png" group-title="",Alhiwar TV (1080p) [Not 24/7] +https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AnandTV.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/QMPfzzt.png" group-title="General",Anand TV (720p) +https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8 +#EXTINF:-1 tvg-id="AriseNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BlNMp0k.png" group-title="News",Arise News (576p) +https://news.ashttp9.visionip.tv/live/visiontvuk-news-arise-tv-hsslive-25f-16x9-SD/playlist.m3u8 +#EXTINF:-1 tvg-id="AriseNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BlNMp0k.png" group-title="News",Arise News (480p) +https://contributionstreams.sechls01.visionip.tv/live/visiontv-contributionstreams-arise-tv-25f-16x9-SDh/playlist.m3u8 +#EXTINF:-1 tvg-id="AwraasTV.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://www.awraas.tv/assets/img/logo.png" group-title="",Awraas TV (540p) [Not 24/7] +https://b01c02nl.mediatriple.net/videoonlylive/mtqtqloqdxtlive/broadcast_5cefc3677caee.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCAlba.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Alba (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_alba/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_dash_live.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.mpd +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (540p) +https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 +#EXTINF:-1 tvg-id="BBCArabic.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/oFGPG9Y.png" group-title="News",BBC Arabic (540p) +https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_arabic_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 +#EXTINF:-1 tvg-id="BBCEarth.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://static.epg.best/kr/BBCEarth.kr.png" group-title="",BBC Earth [Geo-blocked] +https://livecdn.fptplay.net/qnetlive/bbcearth_hls.smil/chunklist_b2500000.m3u8 +#EXTINF:-1 tvg-id="BBCFour.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/bbcfour.png" group-title="",BBC Four (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCFourHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Four HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_four_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCLifestyle.uk" tvg-country="PL" tvg-language="Polish;English" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/BBCLifestyle.png" group-title="Lifestyle",BBC Lifestyle (576p) [Geo-blocked] +https://livecdn.fptplay.net/qnetlive/bbclifestyle_2000.stream/chunklist.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Geo-blocked] +https://cdnuk001.broadcastcdn.net/KUK-BBCNEWSHD/index.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_news_channel_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eNPIQ9f.png" group-title="News",BBC News HD (720p) [Not 24/7] +http://1111296894.rsc.cdn77.org/LS-ATL-54548-6/index.m3u8 +#EXTINF:-1 tvg-id="BBCOneCambridge.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Cambridge (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_cambridge/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneChannelIslands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Channel Islands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_channel_islands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEastMidlands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East Midlands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneEastYorkshire.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One East Yorkshire (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_east_yorkshire/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneLondon.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24865/bbconelondon_colordark.png" group-title="",BBC One London (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_london/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One North East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One North West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_north_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthernIreland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Northern Ireland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneNorthernIrelandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Northern Ireland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneOxford.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Oxford (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_oxford/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24870/bbconescotlandtv.png" group-title="",BBC One Scotland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotlandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Scotland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_scotland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouth.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouthEast.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South East (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_east/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneSouthWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One South West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_south_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWales.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Wales (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWalesHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Wales HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_wales_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCOneWest.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One West (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneWestMidlands.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One West Midlands (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_west_midlands/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCOneYorks.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC One Yorks (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_one_yorks/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCParliament.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24973/bbcparliamerntchannel.png" group-title="",BBC Parliament (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_parliament/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live_http.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) +https://vs-cmaf-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_dash_live.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live_http.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (720p) +https://vs-cmaf-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.mpd +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (540p) +https://vs-hls-pushb-ww-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_akamai_hls_live.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (540p) +https://vs-hls-pushb-ww.live.cf.md.bbci.co.uk/x=3/i=urn:bbc:pips:service:bbc_persian_tv/pc_hd_abr_v2_cloudfrontms_live.m3u8 +#EXTINF:-1 tvg-id="BBCPersian.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/44/BBC_News_Persian_Logo.jpg" group-title="News",BBC Persian (360p) [Not 24/7] +http://159.69.58.154/bbc/master.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://otv-us-web.s3-us-west-2.amazonaws.com/logos/guide/2/Open/92x36_352/Source/24907/bbcredbutton_colordark.png" group-title="",BBC Red Button 1 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_01.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 2 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_02.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton3.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 3 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_03.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton4.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 4 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_04.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton5.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 5 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_05.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton6.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 6 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_06.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton7.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 7 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_07.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton8.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 8 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_08.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton9.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 9 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_09.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton10.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 10 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_10.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton11.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 11 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_11.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton12.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 12 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_12.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton13.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 13 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_13.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton14.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 14 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_14.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton15.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 15 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_15.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton16.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 16 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_16.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton17.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 17 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_17.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton18.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 18 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_18.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton19.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 19 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_19.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton20.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 20 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_20.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton21.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 21 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_21.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton22.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 22 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_22.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton23.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 23 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_23.m3u8 +#EXTINF:-1 tvg-id="BBCRedButton24.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Red Button 24 (720p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/hls/uk/abr_hdtv/ak/sport_stream_24.m3u8 +#EXTINF:-1 tvg-id="BBCScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Scotland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_scotland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCScotlandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Scotland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/content/x=3/v=pv14/b=5070016/t=3840/i=urn:bbc:pips:service:bbc_scotland_hd/main.m3u8 +#EXTINF:-1 tvg-id="BBCThree.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Three (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_three_hd/t=3840/v=pv10/b=1604032/main.m3u8 +#EXTINF:-1 tvg-id="BBCThreeHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Three HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_three_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoEngland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two England (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/mobile_wifi_main_sd_abr_v2.m3u8 +#EXTINF:-1 tvg-id="BBCTwoHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two HD (720p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoNorthenIreland.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Northen Ireland (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCTwoNorthernIrelandHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Northern Ireland HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_northern_ireland_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="BBCTwoWales.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC Two Wales (540p) [Geo-blocked] +https://vs-hls-push-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:bbc_two_wales_digital/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="BBCUHDTrial1.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 1 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_01.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 2 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_02.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial3.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 3 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_03.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial4.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 4 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_04.mpd +#EXTINF:-1 tvg-id="BBCUHDTrial5.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",BBC UHD Trial 5 (2160p) [Geo-blocked] +https://a.files.bbci.co.uk/media/live/manifesto/audio_video/webcast/dash/uk/full/ak/uhd_stream_05.mpd +#EXTINF:-1 tvg-id="BBCWorldNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/Nx0BRdV.png" group-title="News",BBC World News (576p) +http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8 +#EXTINF:-1 tvg-id="BBCWorldNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/Nx0BRdV.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="News",BBC World News (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s24/index.m3u8 +#EXTINF:-1 tvg-id="BoxHits.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://tvepg.eu/img/united_kingdom/logo/box_hits.png" group-title="Music",Box Hits (576p) +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/boxhits/ +#EXTINF:-1 tvg-id="BoxHits.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://tvepg.eu/img/united_kingdom/logo/box_hits.png" group-title="Music",Box Hits (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,boxhits-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/boxhits/ +#EXTINF:-1 tvg-id="BritAsiaLiveUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BPS22GM.png" group-title="",Brit Asia Live (US Eastern) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0500/c.m3u8 +#EXTINF:-1 tvg-id="BritAsiaLiveUSPacific.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/BPS22GM.png" group-title="",Brit Asia Live (US Pacific) (360p) [Not 24/7] +https://a.jsrdn.com/broadcast/22693_4rGhgrBU/-0800/c.m3u8 +#EXTINF:-1 tvg-id="BritishMuslimTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://www.britishmuslim.tv/images/BMTV_Identity.svg" group-title="Religious",British Muslim TV (576p) [Not 24/7] +https://api.visionip.tv/live/ASHTTP/visiontvuk-international-britishmuslimtv-hsslive-25f-16x9-MB/playlist.m3u8 +#EXTINF:-1 tvg-id="BTSport1.uk" tvg-country="UK" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",BT Sport 1 (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://sport.livedoomovie.com/02_BTSPORTHD_1_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="BTSport2.uk" tvg-country="UK" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="",BT Sport 2 (576p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://sport.livedoomovie.com/02_BTSPORTHD_2_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="CBBC.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/bbcthree.png" group-title="",CBBC (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="CBBCHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBBC HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbbc_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="CBeebies.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBeebies (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="CBeebiesHD.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",CBeebies HD (720p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:cbeebies_hd/t=3840/v=pv14/b=5070016/main.m3u8 +#EXTINF:-1 tvg-id="ChannelS.uk" tvg-country="UK;IE;BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/TjVJT22.png" group-title="Local",Channel S (720p) [Not 24/7] +https://a.jsrdn.com/r-373576a3/publish/22679_24MrQma9TX/index.m3u8 +#EXTINF:-1 tvg-id="ChannelS.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="https://www.chsuk.tv/img/cateringcircle.png" group-title="Local",Channel S (576p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/chsukoff.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelSUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hJxFLvF.png" group-title="",Channel S (US Eastern) (720p) +https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0500/c.m3u8 +#EXTINF:-1 tvg-id="ChannelSUSPacific.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hJxFLvF.png" group-title="",Channel S (US Pacific) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22679_24MrQma9TX/-0800/c.m3u8 +#EXTINF:-1 tvg-id="ChelseaTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Chelsea TV (576p) +http://c0.cdn.trinity-tv.net/stream/hujuv8xpr4gdugis2szd4rqrvpzip8iuwn2jwpt68wmvpmdz79qime8idwrxga95rnghp64hfimevyvrp6n7p3c52yg3rfsuhxe9u9az35ti8te625sxerfwaxr2cbefyau4tmfa4nwqvca6ckmtwv2=.m3u8 +#EXTINF:-1 tvg-id="CraftStoreTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://thecraftstore.com/Styles/craft_store_logo.svg" group-title="Shop",Craft Store TV (720p) +https://live-hochanda.simplestreamcdn.com/hochanda/live.m3u8 +#EXTINF:-1 tvg-id="Cruise1stTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/q50kqOG.jpg" group-title="Shop",Cruise1st TV (396p) [Geo-blocked] +https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/cruise_tv/hls_video/index.m3u8 +#EXTINF:-1 tvg-id="DeenTV.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://deentv.uk/wp-content/uploads/2021/08/cropped-DEEN-TV-LOGO-FINAL-80x80-1.png" group-title="General",Deen TV (576p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/deentv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) [Offline] +https://csm-e-stv.tls1.yospace.com/csm/live/195300285.m3u8 +#EXTINF:-1 tvg-id="EDGEsports.uk" tvg-country="US" tvg-language="English" tvg-logo="https://static1.squarespace.com/static/5a6f534f017db2d628751be1/t/5a6f5557652deada67290f54" group-title="Sports",EDGEsport (1080p) [Offline] +https://imgedge.akamaized.net/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EmanChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/NWljgKa.png" group-title="Religious",Eman Channel (576p) +https://ap02.iqplay.tv:8082/iqb8002/3m9n/playlist.m3u8 +#EXTINF:-1 tvg-id="EnglishClubTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://ocdn.eu/images/program-tv/NTU7MDA_/e7114237dc0731c7dd660c32d6822432.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="",English Club TV (480p) [Timeout] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s37/index.m3u8 +#EXTINF:-1 tvg-id="FadakTV.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/13/FadakTV.png" group-title="Religious",Fadak TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/ddrricky/live +#EXTINF:-1 tvg-id="FadakTV.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/P72KE0t.png" group-title="Religious",Fadak TV (1080p) [Not 24/7] +https://query-streamlink.herokuapp.com/iptv-query?streaming-ip=https://www.youtube.com/channel/UCBgM-sKkB4ySrdiCsk0ikUA/live +#EXTINF:-1 tvg-id="FreeSports.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/595831-freesports.jpg" group-title="Sports",FreeSports (1080p) [Not 24/7] +https://csm-e-stv.tls1.yospace.com/csm/live/203444271.m3u8 +#EXTINF:-1 tvg-id="GarshomTV.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="" group-title="",Garshom TV (360p) [Not 24/7] +http://og2qd3aal7an-hls-live.5centscdn.com/garshomtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="GBNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.gbnews.uk/view-resources/dachser2/public/gbnews/logo.svg" group-title="News",GB News (1080p) +https://live-gbnews.simplestreamcdn.com/gbnews/gbnews/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="GemsTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/9fJlCNW.png" group-title="Shop",Gems TV (360p) +http://57d6b85685bb8.streamlock.net:1935/abrgemporiaukgfx/livestream_360p/index.m3u8 +#EXTINF:-1 tvg-id="GodTVUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://ocdn.eu/program-tv-transforms/1/dXCktlEYWRtL2IzNzk5OGMwYTExODlhNWNmYzA4ZWY5OTQwNTllNTQ4N2Q3N2U2Y2RkMWVlMTIxMGU4NTRmYjdiYzllNmNmNjKSlQJkAMLDlQIAKMLD" group-title="Religious",God TV UK (720p) +https://zypelive-lh.akamaihd.net/i/default_1@745545/master.m3u8 +#EXTINF:-1 tvg-id="GodTV.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZMYRG9h.jpg" group-title="Religious",God TV US (720p) +https://zypelive-lh.akamaihd.net/i/default_1@710958/master.m3u8 +#EXTINF:-1 tvg-id="HalaLondon.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://i.imgur.com/BVJWUpc.png" group-title="",Hala London (1080p) +https://halaldn.cdn.mangomolo.com/halavd/smil:halavd.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HealthMedia.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="",Health Media (720p) [Not 24/7] +https://j78dpkrjlq5r-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseCountryTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://horseandcountry.tv/wp-content/themes/hctv/img/hc_logo_header.png" group-title="Outdoor",Horse & Country TV (1080p) +https://hnc-free-viewlift.amagi.tv/HNC_AUSTRALIA.m3u8 +#EXTINF:-1 tvg-id="IdealWorldTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.idealworld.tv/gb/common/images/Cms/Header/iw-square.jpg" group-title="Shop",Ideal World TV (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/c/IdealworldTvShopping/live +#EXTINF:-1 tvg-id="IonTV.uk" tvg-country="UK" tvg-language="Bengali" tvg-logo="http://www.iontv.co.uk/wp-content/uploads/thegem-logos/logo_5052020503c1c4324dda9918122bbb46_2x.png" group-title="General",iON TV (576p) +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/iontvuk.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraBangla.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/GK5BlnN.jpg" group-title="Religious",Iqra Bangla (576p) +https://ap02.iqplay.tv:8082/iqb8002/iq53la/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://iqra.tv/wp-content/uploads/2019/12/IQ-logo-light-120px.png" group-title="Religious",Iqra TV (576p) +https://ap02.iqplay.tv:8082/iqb8002/iq6a7k/playlist.m3u8 +#EXTINF:-1 tvg-id="IqraaTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Iqraa TV (576p) [Geo-blocked] +http://wowzaprod3-lh.akamaihd.net/i/83372732_1@141298/master.m3u8 +#EXTINF:-1 tvg-id="IranInternational.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) +https://dev-live.livetvstream.co.uk/LS-63503-4/index.m3u8 +#EXTINF:-1 tvg-id="IranInternational.uk" tvg-country="UK" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) +https://live.playstop.me/1816184091/index.m3u8 +#EXTINF:-1 tvg-id="IranInternational.ir" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/gUzGZK7.png" group-title="News",Iran International (1080p) +https://live.playstop.me/LS-63503-4/index.m3u8 +#EXTINF:-1 tvg-id="IslamChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://simplestream-portal.s3.eu-west-1.amazonaws.com/172/642f780c-islamtv.png" group-title="Religious",Islam Channel (576p) [Not 24/7] +https://live.islamchannel.tv/islamtv/islamtv_english/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="ITV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/SsgOgRF.png" group-title="",ITV (302p) [Geo-blocked] +http://31.220.41.88:8081/live/itv1.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv2.png" group-title="",ITV2 (432p) [Geo-blocked] +http://31.220.41.88:8081/live/itv2.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv2.png" group-title="",ITV2 (576p) [Not 24/7] +http://93.190.139.35:8278/streams/d/itv2_antik/playlist.m3u8 +#EXTINF:-1 tvg-id="ITV3.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv3.png" group-title="",ITV3 (432p) [Geo-blocked] +http://31.220.41.88:8081/live/itv3.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="ITV4.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/itv4.png" group-title="",ITV4 (302p) [Geo-blocked] +http://31.220.41.88:8081/live/itv4.stream/chunks.m3u8 +#EXTINF:-1 tvg-id="JewelleryMaker.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/azSptPw.png" group-title="Lifestyle",Jewelery Maker (1080p) +https://lo2-1.gemporia.com/abrjewellerymaker/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JimJamRossiya.uk" tvg-country="RU" tvg-language="Russian" tvg-logo="https://avatars.mds.yandex.net/get-tv-channel-logos/70787/2a0000016a8c5ad959476a67bab7ba71792c/160x120" group-title="Kids",JimJam Россия (576p) [Not 24/7] +http://188.40.68.167/russia/jimjam/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Religious",Kalemeh TV (576p) [Not 24/7] +http://51.210.199.37/hls/stream.m3u8 +#EXTINF:-1 tvg-id="KanshiTV.uk" tvg-country="UK" tvg-language="Hindi" tvg-logo="https://i.imgur.com/jxf9gQd.jpg" group-title="",Kanshi TV (720p) [Not 24/7] +https://live.kanshitv.co.uk/mobile/kanshitvkey.m3u8 +#EXTINF:-1 tvg-id="Kerrang.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nn2VfkP.png" group-title="",Kerrang (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kerrang/ +#EXTINF:-1 tvg-id="Kerrang.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nn2VfkP.png" group-title="",Kerrang (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,kerrang-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/kerrang/ +#EXTINF:-1 tvg-id="Kiss.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/AqVdlpz.png" group-title="",Kiss (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,kiss-inapp.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/kiss/ +#EXTINF:-1 tvg-id="kMTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.kentonline.co.uk/_assets/kmtvlogo2017_2.png" group-title="",KMTV (576p) +https://dk7psf0dh3v1r.cloudfront.net/KMTV/playlist.m3u8 +#EXTINF:-1 tvg-id="KoolLondonRadio.uk" tvg-country="UK" tvg-language="English" tvg-logo="http://undergroundbass.co.uk/image/koollondon.png" group-title="Music",Kool London Radio (720p) [Timeout] +http://w10.streamgb.com:1935/kool/kool/playlist.m3u8 +#EXTINF:-1 tvg-id="LondonLive.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/londonlive.png" group-title="",London Live (720p) [Offline] +http://bcoveliveios-i.akamaihd.net/hls/live/217434/3083279840001/master.m3u8 +#EXTINF:-1 tvg-id="Loveworld.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6orW2BN.png" group-title="Religious",Loveworld TV (1080p) [Not 24/7] +https://cdn.lwuk.live/live/smil:lwukweb.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Magic.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/HXfKkwj.png" group-title="",Magic (576p) [Offline] +http://csm-e.tm.yospace.com/csm/extlive/boxplus01,magic-desktop.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/magic/ +#EXTINF:-1 tvg-id="Magnavision.uk" tvg-country="UK" tvg-language="Malayalam" tvg-logo="https://i.imgur.com/yRdGchJ.jpg" group-title="Entertainment",Magna Vision (1080p) [Not 24/7] +https://j78dpa3edq5r-hls-live.5centscdn.com/abr/0864028584026e6ad9cdf922473177a4/playlist.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto +1 (720p) [Offline] +http://159.69.58.154/manoto_plus1/manoto_plus.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto +2 [Offline] +http://159.69.58.154/manoto_plus2/manoto2.m3u8 +#EXTINF:-1 tvg-id="ManotoTV.uk" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/dNB92lj.png" group-title="General",Manoto TV (1080p) +https://d2rwmwucnr0d10.cloudfront.net/live.m3u8 +#EXTINF:-1 tvg-id="MTA1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 (720p) [Offline] +https://cflive-emea.live-delivery.ooyala.com/out/u/3vkkbgnvsm2r5/101593/1lanVtaDE6sCK6v0vDomDayqoKeSal6G/cn/8fb839e3a82045bd99a92ecd9df257e5.m3u8 +#EXTINF:-1 tvg-id="MTA1English.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 English (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaeng_delivery@345736/master.m3u8 +#EXTINF:-1 tvg-id="MTA1Original.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 Original (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaorigin_delivery@353498/master.m3u8 +#EXTINF:-1 tvg-id="MTA1Urdu.uk" tvg-country="UK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/b3nn216.png" group-title="",MTA 1 Urdu (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaurdu_delivery@350117/master.m3u8 +#EXTINF:-1 tvg-id="MTA2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/V6uUz9l.png" group-title="",MTA 2 (720p) +https://ooyalahd2-f.akamaihd.net/i/mtach7audio_delivery@65519/master.m3u8 +#EXTINF:-1 tvg-id="MTA2Urdu.uk" tvg-country="UK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/V6uUz9l.png" group-title="",MTA 2 Urdu (720p) +https://ooyalahd2-f.akamaihd.net/i/mtageraudio_delivery@308889/master.m3u8 +#EXTINF:-1 tvg-id="MTA3.uk" tvg-country="UK" tvg-language="Arabic" tvg-logo="https://i.imgur.com/C5nT9yi.png" group-title="",MTA 3 (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtach7_delivery@348438/master.m3u8 +#EXTINF:-1 tvg-id="MTAAfrica.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/xT3X6L9.png" group-title="",MTA Africa (1080p) +https://ooyalahd2-f.akamaihd.net/i/mtaengaudio_delivery@138280/master.m3u8 +#EXTINF:-1 tvg-id="nTVUSEastern.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/l75bDTx.png" group-title="",n TV (US Eastern) (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/22680_3BR3zocwi9/-0500/c.m3u8 +#EXTINF:-1 tvg-id="NoorTV.uk" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/oeV42l0.jpg" group-title="Religious",Noor TV (480p) [Not 24/7] +https://ls1.serverdump.com/stream3.m3u8 +#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Qello Concerts by Stingray (1080p) [Not 24/7] +https://csm-e-stv.tls1.yospace.com/csm/live/211935407.m3u8 +#EXTINF:-1 tvg-id="RugbyMensSevens.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby Men's Sevens (288p) +https://esmhls1-i.akamaihd.net/hls/live/510580/hls1/playlist.m3u8 +#EXTINF:-1 tvg-id="RugbyWomensSevens.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby Women's Sevens (288p) +https://esmhls2-i.akamaihd.net/hls/live/510581/hls2/playlist.m3u8 +#EXTINF:-1 tvg-id="RugbyWorldTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Rugby World TV (720p) +https://esmhls3-i.akamaihd.net/hls/live/510582/hls3/playlist.m3u8 +#EXTINF:-1 tvg-id="S4C.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",S4C (540p) [Geo-blocked] +https://vs-hls-pushb-uk-live.akamaized.net/x=3/i=urn:bbc:pips:service:s4cpbs/mobile_wifi_main_sd_abr_v2_akamai_hls_live_http.m3u8 +#EXTINF:-1 tvg-id="SangatTelevision.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KcPEkHh.png" group-title="",Sangat Television (368p) [Not 24/7] +https://api.new.livestream.com/accounts/6986636/events/5362122/live.m3u8 +#EXTINF:-1 tvg-id="SheffieldLiveTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eUqnYU1.png" group-title="Local",Sheffield Live TV (360p) [Not 24/7] +http://tv.sheffieldlive.org/hls/main.m3u8 +#EXTINF:-1 tvg-id="SkiTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://content.weyyak.com/af0ecf95-8dc9-443d-9b4f-bc01eab7bd30/poster-image" group-title="Sports",Ski TV (1080p) [Not 24/7] +https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-Zee/193.m3u8 +#EXTINF:-1 tvg-id="SkyNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WvNd8yg.png" group-title="News",Sky News (720p) [Geo-blocked] +http://skynews-sn-cdhls.ak-cdn.skydvn.com/cdhlsskynews/1404/latest.m3u8 +#EXTINF:-1 tvg-id="SkyNews.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WvNd8yg.png" group-title="News",Sky News (576p) [Geo-blocked] +http://skydvn-sn-mobile-prod.skydvn.com/skynews/1404/latest.m3u8 +#EXTINF:-1 tvg-id="SkyNewsArabia.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kF7TvcH.png" group-title="News",Sky News Arabia (720p) [Not 24/7] +https://stream.skynewsarabia.com/hls/sna.m3u8 +#EXTINF:-1 tvg-id="SkyNewsArabia.uk" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://i.imgur.com/kF7TvcH.png" group-title="News",Sky News Arabia (Portrait) (1280p) [Not 24/7] +https://stream.skynewsarabia.com/vertical/vertical.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra1.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 1 (540p) +https://skynewsau-live.akamaized.net/hls/live/2002689/skynewsau-extra1/master.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra2.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 2 (540p) [Not 24/7] +https://skynewsau-live.akamaized.net/hls/live/2002690/skynewsau-extra2/master.m3u8 +#EXTINF:-1 tvg-id="SkyNewsExtra3.uk" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/Wl0iGsD.png" group-title="News",Sky News Extra 3 (1080p) +https://skynewsau-live.akamaized.net/hls/live/2002691/skynewsau-extra3/master.m3u8 +#EXTINF:-1 tvg-id="Spike.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Spike (480p) [Offline] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 +#EXTINF:-1 tvg-id="SportsTonight.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Nh4LyPv.png" group-title="Sports",Sports Tonight (576p) [Not 24/7] +http://sports.ashttp9.visionip.tv/live/visiontvuk-sports-sportstonightlive-hsslive-25f-4x3-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="SportyStuffTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.sportystuff.tv/src/img/logo-purple.png" group-title="Sports",Sporty Stuff TV (720p) +https://ayozat-live.secure2.footprint.net/egress/bhandler/ayozat/sportystufftv/playlist.m3u8 +#EXTINF:-1 tvg-id="SpotlightTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/axXipp8.png" group-title="",Spotlight TV (576p) +https://securecontributions.sechls01.visionip.tv/live/securecontributions-securecontributions-spotlighttv-hsslive-25f-SD/chunklist.m3u8 +#EXTINF:-1 tvg-id="STV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/617962-stv.png" group-title="",STV (1080p) [Timeout] +https://csm-e-stv.tls1.yospace.com/csm/live/139900483.m3u8 +#EXTINF:-1 tvg-id="STVPlus1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://images.stv.tv/player/master/607358-stv-1.jpg" group-title="",STV+1 (1080p) [Timeout] +https://csm-e-stv.tls1.yospace.com/csm/live/181023311.m3u8 +#EXTINF:-1 tvg-id="TheBoxUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/16/The_Box_2013.png" group-title="Music",The Box UK (576p) [Geo-blocked] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=https://boxtv.secure.footprint.net/thebox/ +#EXTINF:-1 tvg-id="TheBoxUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/1/16/The_Box_2013.png" group-title="Music",The Box UK (576p) [Not 24/7] +https://csm-e-boxplus.tls1.yospace.com/csm/extlive/boxplus01,thebox-alldev.m3u8?yo.up=http://boxtv-origin-elb.cds1.yospace.com/uploads/thebox/ +#EXTINF:-1 tvg-id="TJC.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/cFlNhjV.png" group-title="",TJC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(TJCOTT)/index.m3u8 +#EXTINF:-1 tvg-id="V2BEAT.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://graph.facebook.com/vtwobeat/picture?width=320&height=320" group-title="Music",V2BEAT (720p) [Not 24/7] +https://abr.de1se01.v2beat.live/playlist.m3u8 +#EXTINF:-1 tvg-id="V2BEAT.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Ll6GlqY.png" group-title="Music",V2BEAT (720p) [Not 24/7] +https://de1se01.v2beat.live/playlist.m3u8 +#EXTINF:-1 tvg-id="WilliamHillBTV1.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/nnX0NGt.png" group-title="",William Hill BTV 1 (720p) +https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_tklzcakd_1_1/chunklist.m3u8 +#EXTINF:-1 tvg-id="WilliamHillBTV2.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/nnX0NGt.png" group-title="",William Hill BTV 2 (720p) +https://betamg-i.akamaihd.net/hls/live/513429/willhill/0_3838s0ja_1_1/chunklist.m3u8 diff --git a/channels/uk_samsung.m3u b/channels/uk_samsung.m3u new file mode 100644 index 000000000..1f34e2fcf --- /dev/null +++ b/channels/uk_samsung.m3u @@ -0,0 +1,125 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BeanoTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XvBi1Ou.png" group-title="",Beano TV (720p) [Offline] +https://beanostudios-beanotv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ClubbingTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aqMhht6.png" group-title="",Clubbing TV (720p) +https://clubbingtv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNInternationalUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/2BXCg0x.jpg" group-title="News",CNN International UK (720p) [Not 24/7] +https://cnn-cnninternational-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyChannel.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WyHp7Wa.jpg" group-title="Comedy",Comedy Channel (1080p) +https://uksono1-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="UK" tvg-language="Spanish" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00434-tricoast-darkmatter-spanish-samsunguk/playlist.m3u8 +#EXTINF:-1 tvg-id="DiscoverFilm.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/yjIYUim.jpg" group-title="",Discover.Film (720p) [Offline] +https://discoverfilm-discoverfilm-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] +https://dust-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) +https://edgesport-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://rakuten-euronews-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglishviaAlchimie.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English via Alchimie (720p) [Offline] +https://alchimie-euronews-4-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/RIXSg4L.png" group-title="Comedy",FailArmy (720p) [Offline] +https://failarmy-international-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionTVEngland.fr" tvg-country="FR" tvg-language="French" tvg-logo="" group-title="Lifestyle",Fashion TV (England) (1080p) [Not 24/7] +https://fashiontv-fashiontv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (720p) [Offline] +https://spi-filmstream-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Filmzie.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/jUWffic.png" group-title="",Filmzie (720p) [Offline] +https://filmzie-filmzie-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FTFForthefans.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Db8nWyW.png" group-title="",FTF For the fans (720p) +https://elevensports-uk.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (1080p) +https://fueltv-fueltv-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GoUSA.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/KhdR4wa.jpg" group-title="",Go USA (720p) [Offline] +https://brandusa-gousa-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) +https://gustotv-samsung-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HorseandCountry.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FNFFhEq.png" group-title="",Horse and Country (720p) +https://hncfree-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Humanity.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XZSCpl2.jpg" group-title="",Humanity (720p) [Offline] +https://alchimie-humanity-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWild.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/VSiG39E.png" group-title="",InWild (720p) +https://inwild-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGamerTV.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dSPmDU7.png" group-title="Kids",Kid Gamer TV (1080p) [Offline] +https://studio71-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LuxeTV.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/8tWhfap.png" group-title="",Luxe TV (720p) [Offline] +https://alchimie-luxe-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV UK (720p) [Offline] +https://mavtv-mavtvglobal-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MMATV.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/MYoNHMg.png" group-title="",MMA TV (720p) [Offline] +https://alchimie-mmatv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoviesCentral.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dwOoEmE.jpg" group-title="Movies",Movies Central (720p) [Offline] +https://alchimie-movies-central-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphereuk-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J4zE5z9.jpg" group-title="General",PBS America (720p) +https://pbs-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlanetKnowledge.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/U8GADbT.jpg" group-title="",Planet Knowledge (720p) [Offline] +https://vod365-planet-knowledge-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) +https://playerstv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Pocketwatch.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/CiQdnud.png" group-title="",Pocket watch (720p) [Offline] +https://pocketwatch-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QelloConcertsbyStingray.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Qello Concerts by Stingray (1080p) +https://stingray-qelloconcerts-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVClassical.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Classical (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestclassic-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Jazz & Beyond (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestjazz-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="QwestTVMix.fr" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="Music",Qwest TV Mix (720p) [Geo-blocked] +https://cdn-ue1-prod.tsv2.amagi.tv/linear/qwestAAAA-qwestmix-uk-samsungtv/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVActionMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/uMcwx2p.jpg" group-title="Movies",Rakuten TV Action Movies UK (720p) [Offline] +https://rakuten-actionmovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVComedyMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/eQKFgpa.png" group-title="Movies",Rakuten TV Comedy Movies UK (720p) [Offline] +https://rakuten-comedymovies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVDramaUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dWNxCqp.png" group-title="Movies",Rakuten TV Drama UK (720p) [Offline] +https://rakuten-tvshows-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVFamilyMoviesUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/hboiinD.jpg" group-title="Movies",Rakuten TV Family Movies UK (720p) [Offline] +https://rakuten-family-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RakutenTVSpotlightUK.es" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vbb3bjW.png" group-title="",Rakuten TV Spotlight UK (720p) [Offline] +https://rakuten-spotlight-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/TVfuBfJ.jpg" group-title="",Real Stories (720p) +https://realstories-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SofyTV.ch" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Srxa6cR.png" group-title="",Sofy TV (720p) +https://sofytv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SparkTv.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vTGknv3.png" group-title="",Spark Tv (720p) +https://sparktv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsChannelNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ytimg.com/vi/2FtbPXeYTvo/maxresdefault.jpg" group-title="Sports",Sports Channel Network (720p) [Offline] +https://vod365-sports-channel-network-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/XkBOu3Q.jpg" group-title="",Stingray Karaoke (1080p) +https://stingray-karaoke-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Supertoons.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iVeuci8.jpg" group-title="Kids",Supertoons (720p) [Offline] +https://kedoo-supertoonstv-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/dwMUVhs.png" group-title="",Tastemade (720p) +https://tastemade-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (720p) [Offline] +https://dhx-teletubbies-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://ott-gateway.sinclairstoryline.com/optimized/90/17ec0fba-d4ec-4421-a665-c8dcab0f80ee-small3x1_TheTChannel.png" group-title="Sports",Tennis Channel (720p) +https://tennischannel-intl-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TennisChannelUK.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/WEM9B83.png" group-title="Sports",Tennis Channel (UK) (720p) +https://tennischannel-int-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollectiveEngland.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective UK (720p) [Offline] +https://the-pet-collective-international-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TimeLine.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/AzZhwWR.jpg" group-title="",Time Line (720p) +https://timeline-samsung-uk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Toongoggles.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/8PEf3Vn.jpg" group-title="Family",Toongoggles (720p) [Offline] +https://toongoggles-toongoggles-3-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelXP.in" tvg-country="IN" tvg-language="English" tvg-logo="https://i.imgur.com/6V48LwT.jpg" group-title="Travel",Travel XP (720p) [Offline] +https://travelxp-travelxp-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Truly.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/MWkm3no.png" group-title="",Truly (720p) [Offline] +https://barcroft-truly-1-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Unearth.fr" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/bMqTNs1.jpg" group-title="",Unearth (720p) [Offline] +https://alchimie-unearth-2-gb.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) [Offline] +https://venntv-samsunguk.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/450pJvs.png" group-title="",Wonder (720p) +https://wonder-samsung-uk.amagi.tv/playlist.m3u8 diff --git a/channels/uk_sportstribal.m3u b/channels/uk_sportstribal.m3u new file mode 100644 index 000000000..1b178b733 --- /dev/null +++ b/channels/uk_sportstribal.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ChannelFight.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjNf/ChannelFight_490x490.png" group-title="Sports",Channel Fight (720p) [Offline] +https://live.serverside.ai/hls/7dc5907c-6d6e-45ef-a24f-e28353aa8e98/master.m3u8?api-key=4a09ede0-52da-4cd9-aa82-3b36d8dfa59b&channel_name=Channel+Fight&channel_partner=Channel+Fight&consent=&content_genre=MMA&content_id=a2e646e0_20210305163052_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:52.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=a2e646e0_20210305163052_D0CF72b +#EXTINF:-1 tvg-id="EDGESport.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjhf/EdgeSport_400x400.png" group-title="Sports",EDGESport (1080p) +https://edgesports-sportstribal.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ForTheFans.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzNf/FTF_720x720.png" group-title="Sports",For The Fans (720p) [Offline] +https://live.serverside.ai/hls/0f7f0c30-e13d-41b6-9e15-9a9de7ef979f/master.m3u8?api-key=4c19fe78-8ce2-4f88-9a39-f202dc24236f&channel_name=For+The+Fans&channel_partner=For+The+Fans&consent=&content_genre=Sport&content_id=cf1e9700_20210305160000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:00:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=cf1e9700_20210305160000_D0CF72b +#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjRf/HardKnocks_490x490.png" group-title="Sports",Hard Knocks (1080p) [Not 24/7] +https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-SportsTribal/121.m3u8 +#EXTINF:-1 tvg-id="IGNTV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzNTVf/IGN_512x512.png" group-title="Kids",IGN TV (720p) +https://ign-sportstribal.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LaxSportsNetwork.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjZf/LSN_720x720.png" group-title="Sports",Lax Sports Network (720p) [Offline] +https://live.serverside.ai/hls/4a34ba0f-2ffd-47cf-9f8d-5e91ede78e5a/master.m3u8?api-key=50f33b8a-4a95-4f68-b83a-2f2b00c4251d&channel_name=Lacrosse+Channel&channel_partner=Lacrosse+Channel&consent=&content_genre=Lacrosse&content_id=11e1c5cf_20210305163000_D0CF72b&gdpr=1&ip=194.35.233.10&mute=false&t=2021-03-05T16:30:00.000&ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/88.0.4324.150+Safari/537.36+OPR/74.0.3911.160&vid=11e1c5cf_20210305163000_D0CF72b +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjdf/PAC12_720x720.png" group-title="Sports",Pac12 Insider (720p) +https://pac12-sportstribal.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PokerNightInAmerica.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzJf/PokerNight_720x720.png" group-title="Sports",Poker Night In America (720p) [Offline] +https://rushstreet-sportstribal.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SKITV.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMjlf/SkiTV_400x400.png" group-title="Sports",SKI TV (1080p) [Not 24/7] +https://d2xeo83q8fcni6.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/SkiTV-SportsTribal/193.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzNTZf/SportsGrid_512x512.png" group-title="Sports",SportsGrid (1080p) +https://sportsgrid-tribal.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Sports",World Poker Tour (1080p) [Not 24/7] +https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-SportsTribal/120.m3u8 diff --git a/channels/unsorted.m3u~master b/channels/unsorted.m3u~master new file mode 100644 index 000000000..b55d9330b --- /dev/null +++ b/channels/unsorted.m3u~master @@ -0,0 +1,415 @@ +#EXTM3U +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",1A Network (720p) +https://simultv.s.llnwi.net/n4s4/2ANetwork/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Adria Music RS [Timeout] +http://91.212.150.248/AdriaMusicTV/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AdriaNet +http://79.106.48.2:4578/live/adriamed/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ahi TV Kirsehir (576p) +http://yayin3.canlitv.com:1935/canlitv/ahitv/playlist.m3u8 +#EXTINF:-1 tvg-id="AkilliTV.tr" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://izmottvsc23.tvplus.com.tr:33207/CPS/images/universal/film/poster/20140406/001300/001300000008478998/8a5fe430-9a6e-4835-92fb-245947ce17fc.png" group-title="",Akilli TV [Timeout] +https://stream41.radyotelekom.com.tr/stream/m3u8/a5a7e883a71429fe9e605bb5d25d6185/chunklist_w895929071.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Hurra Iraq (720p) +https://mbningestworld-i.akamaihd.net/hls/live/644021/iraqworldsafe/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Iraqiya [Offline] +https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/imn/general2/chunks.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Rasheed (408p) +https://media1.livaat.com/AL-RASHEED-HD/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Sharqiya (1080p) +https://5d94523502c2d.streamlock.net/home/mystream/chunklist_w1408191520.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Al-Sharqiya News (1080p) +https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/chunklist_w449457930.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ALB Music (720p) [Not 24/7] +http://albmusic.dyndns.tv:1935/albuk/albmus.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AlbDreams TV (720p) +http://live.albavision.net:1123/live/albdreams.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AlbKanale Music TV +https://albportal.net/albkanalemusic.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ATN Europe [Offline] +https://d10rltuy0iweup.cloudfront.net/ATNINT/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ava Entertainment (720p) +https://wowzaprod219-i.akamaihd.net/hls/live/1003949/c9aa559e/c9aa559e_1_3310000/chunklist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",AXS TV NOW +https://dikcfc9915kp8.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Bajo Cero TV [Offline] +https://stmv.panel.mivideo.pro/bajocerotv/bajocerotv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Banovina TV +https://5b57bb229a2e6.streamlock.net/live/televizija/playlist.m3u8 +#EXTINF:-1 tvg-id="Belarus24.by" tvg-country="BY" tvg-language="Belarusian" tvg-logo="https://resizer.mail.ru/p/c3c06eec-6613-5514-91ec-b20923cdbd84/AQACWrxNebO0hItmKwDaej2ry4kAMudX6qjoQkOx_7QLCDly1v7ftHI7GZuK0lSB_-8lsAmRc_DBFCjDbWWlP2tYTUE.png" group-title="",Belarus 24 (720p) +http://serv30.vintera.tv:8081/belarus24/belarus24/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Beteve +https://cdnapisec.kaltura.com/p/2346171/sp/234617100/playManifest/entryId/1_n6442jz0/format/applehttp/protocol/https/uiConfId/42816492/a.m3u8?referrer=aHR0cHM6Ly9iZXRldmUuY2F0 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Bitlis TV (720p) [Not 24/7] +https://59cba4d34b678.streamlock.net/canlitv/bitlistv/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal26.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_26-tv_m.png" group-title="",Canal 26 (720p) +http://live-edge01.telecentro.net.ar:1935/live/26hd-720/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Acequia (432p) [Not 24/7] +https://api.new.livestream.com/accounts/6450028/events/5813077/live.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Coín +http://stream.fion.es:1936/Canal_Coin/canalcoin.stream/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canal Orbe 21 +https://cdn2.zencast.tv:30443/orbe/orbe21smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalParlamento.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://programacion-tv.elpais.com/imagenes/canales/604.jpg" group-title="",Canal Parlamento (360p) +http://congresodirecto-f.akamaihd.net/i/congreso6_1@54665/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Canalcosta TV +https://5d8d85cf2c308.streamlock.net:1936/CanalcostaTV/WXP6YT/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Carolina TV +https://unlimited1-us.dps.live/carolinatv/carolinatv.smil/carolinatv/livestream2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CBTV Now (1080p) +https://oj7lng29dg82-hls-live.5centscdn.com/lives/f7b44cfafd5c52223d5498196c8a2e7b.sdp/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cekmeköy TV +https://cdn-cekmekoybeltv.yayin.com.tr/cekmekoybeltv/cekmekoybeltv_1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CGNTV +http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Chive TV +http://a.jsrdn.com/broadcast/4df1bf71c1/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Contact Vision TV (540p) +http://contactvision.flashmediacast.com:1935/contactvision/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",CostadelSol TV +https://limited11.todostreaming.es/live/benalmadena-livestream.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cowboy Theater (720p) +https://simultv.s.llnwi.net/o054/CowboyTheater/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cut Up N Cook (720p) +https://simultv.s.llnwi.net/n4s4/CutUpNCook/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Cycle World [Offline] +http://a.jsrdn.com/broadcast/3e5befe5dd/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="Arabic" tvg-logo="http://www.daawah.tv/img/logo.png" group-title="Religious",Daawah TV +http://51.15.246.58:8081/daawahtv/daawahtv2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",DeepHouse District +https://eu-nl-012.worldcast.tv/dancetelevisiontwo/dancetelevisiontwo.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dijlah Tarab +https://ghaasiflu.online/tarab/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dijlah TV +https://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Dimensions +https://simultv.s.llnwi.net/o054/Dimensions/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Drita TV +https://nesertv.live/DRITATV-5879/playlist.m3u8 +#EXTINF:-1 tvg-id="DRTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://live-delta.ottnow.stoneroos.com/image/logo/tv.delta.nl/assets/graphics/thumbnails/operatorChannel/1/channel_3159_1_5fb764b2532f64.07272953.svg" group-title="",DRT TV (720p) +https://broadcasttr.com:446/drt/bant1/chunklist_w172830844.m3u8?hash=ff9087a17e9ff7a7a214048d240d21c0 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",EBS Kids [Offline] +rtsp://ebsonair.ebs.co.kr/ebsutablet500k/tablet500k +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Elbekanal Schönebeck +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:elbe_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ems TV Lingen (280p) +https://5889e7d0d6e28.streamlock.net/ev1tv-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ESTV +https://stream.ads.ottera.tv/playlist.m3u8?network_id=461 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Fibracat TV (1080p) +https://cdn-02.fibracat.cat/fibracattv/index.m3u8 +#EXTINF:-1 tvg-id="FightNetwork.ca" tvg-country="" tvg-language="" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/81448/s81448_h3_aa.png" group-title="",Fight Network (1080p) +https://d12a2vxqkkh1bo.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Filstalwelle Göppingen (576p) +http://62.113.210.2/filstalwelle-live/_definst_/mp4:livestream/chunklist_w660034089.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Folk TV +http://584b0aa350b92.streamlock.net:1935/folk-tv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Friesischer Rundfunk Friedeburg [Offline] +https://583548fa0d82b.streamlock.net/friesischerRundfunk-live/_definst_/mp4:friesischerrundfunk/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Fun Radio (720p) +https://livevideo.infomaniak.com/streaming/livecast/funradiovisionhd/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Funnybone (720p) +https://simultv.s.llnwi.net/o054/FunnyBone/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Glas Drine +http://glasdrine.cutuk.net:8081/433ssdsw/GlasDrineSD/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Haldensleben TV (720p) +https://578d8e1867e87.streamlock.net/medienasa-vod/_definst_/mp4:hdl_sendung_720p.mp4/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",HD 365 +https://netstreaming.eu:8080/hls/hd365.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Honor TV +https://a.jsrdn.com/broadcast/d5b48/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Hrvatski Radio Karlovac [Offline] +https://5b57bb229a2e6.streamlock.net/live/_definst_/karlovac/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",IDG (720p) +http://a.jsrdn.com/broadcast/529a360c04/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Impact Wrestling (1080p) +https://d2tuwvs0ja335j.cloudfront.net/hls/1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",India TV (480p) +https://live-indiatvnews.akamaized.net/indiatv-origin/liveabr/indiatv-origin/live2/chunks.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Iranintl.Radio +http://51.210.199.46/hls/stream.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Jesus Shelanu (720p) +https://1247634592.rsc.cdn77.org/1247634592/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kanal Alanya +https://broadcasttr.com:446/kanala/bant1/chunklist_w343770598.m3u8?hash=2ed1974639ec674a33ed440298136dcd +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kartoon Circus +https://simultv.s.llnwi.net/o062/KartoonCircus/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Kid Central (720p) +https://simultv.s.llnwi.net/o058/KidCentral/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Klan Kosova +http://93.157.62.180/KlanKosova/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Klan Plus +http://93.157.62.180/KlanPlus/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Korça + (1080p) [Not 24/7] +http://32.shqiptv.org/korca/albplus/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",KulturMD Magdeburg +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:kulturmd_high/playlist.m3u8 +#EXTINF:-1 tvg-id="KurirTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/d0dc766d74abb2a0cb1cf16ddd146701.png" group-title="",Kurir TV (720p) +http://51.15.154.138/providus/live2805_hq/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",KVF Faroe Island (360p) +https://w2.kringvarp.fo/uttanlands/_definst_/smil:uttanlands.smil/chunklist_w587901821_b772000_slfao.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",La Muscle TV (360p) +https://streamcdn.lamuscle.com/lamtv-origin/smil:monsterworkout-tricepspt1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ländle Tv (1080p) +https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Latest TV [Not 24/7] +https://5a0e89631aa14.streamlock.net/LatestTV/LatestTV/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Latvijas Radio 1 +http://5a44e5b800a41.streamlock.net:1935/liveVLR1/mp4:LR1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Lausitzwelle Fernsehen (1080p) +https://5856e1a25f71a.streamlock.net/easycast9-live/_definst_/mp4:livestreamhd10/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Lifestyle +https://simultv.s.llnwi.net/o058/Lifestyle/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MDF.1 Magdeburg +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:mdf1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Messinia TV +http://176.9.123.140:1935/messinia/messinia/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Military Home Life (720p) +https://simultv.s.llnwi.net/n4s4/MilitaryHomeLife/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Minhaj TV (720p) +https://api.new.livestream.com/accounts/547271/events/4237509/live.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MMA Junkie +http://a.jsrdn.com/broadcast/80f6ba72c8/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mola TV (720p) +http://ventdelnord.tv:8080/mola/directe.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Monarch TV (360p) +https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/low/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Motorcyclist [Offline] +http://a.jsrdn.com/broadcast/256ad9e679/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="MotorvisionTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://www.zap.co.ao/media/cache/movie_thumb/uploads/ao/channels/55802c752581d.png" group-title="",Motorvision TV (720p) +https://stream.ads.ottera.tv/playlist.m3u8?network_id=535 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Movie Kingdom TV +https://a.jsrdn.com/broadcast/e9b4093a41/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MTC +http://mellitv.tulix.tv:1935/mellitv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mundo TV +https://59f1cbe63db89.streamlock.net:1443/mundotv/_definst_/mundotv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",MUSIC + +http://s02.diazol.hu:10192/stream.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Muxx.tv (1080p) +https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Mythos +https://simultv.s.llnwi.net/o058/Mythos/interlink.m3u8 +#EXTINF:-1 tvg-id="NasaTV.mk" tvg-country="MK" tvg-language="Macedonian" tvg-logo="https://prd-static-mkt.spectar.tv/rev-1636968170/image_transform.php/transform/1/instance_id/1/video_id/54" group-title="",Naša TV (1080p) [Not 24/7] +https://stream.nasatv.com.mk/hls/nasatv_live.m3u8 +#EXTINF:-1 tvg-id="NeaTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014344&t=1544180306377" group-title="",Nea TV (720p) +https://live.neatv.gr:8888/hls/neatv_high/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Neser TV +https://nesertv.live/ntv/livestream/tracks-v1a1/index.m3u8 +#EXTINF:-1 tvg-id="NetTV.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/ar_net-tv_m.png" group-title="",NET TV (720p) +https://unlimited1-us.dps.live/nettv/nettv.smil/nettv/livestream1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",News 24 Albania +http://tv.balkanweb.com:8081/news24/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="News18Lokmat.in" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/VxKW2nPp.png" group-title="",News18 Lokmat (504p) +https://news18lokmat-lh.akamaihd.net/i/n18lokmat_1@178974/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Nisville TV RS (720p) +http://92.60.237.32:1935/live/nisville/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OF-TV Offenbach (720p) +https://5864df9ceac85.streamlock.net/germanpictures-live/_definst_/mp4:streamschedule/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Offener Kanal Fulda +https://s.ok54.de/mok-fu/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Dessau +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-dessau_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Magdeburg (1080p) +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-magdeburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Mainz +https://s.ok54.de/oktvmainz/webstream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Merseburg +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-merseburg_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Salzwedel +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:ok-salzwedel_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",OK Wernigerode +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ok-wernigerode_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",ORA News (720p) +http://93.157.62.180/OraNews/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Pardesi TV (720p) +http://stream.pardesitv.online/pardesi/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Persian Bazar +http://stream.persiantv1.com/ptv1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Popular Science TV [Offline] +http://a.jsrdn.com/broadcast/447912f76b/+0000/high/c.m3u8 +#EXTINF:-1 tvg-id="PrimeAsiaTV.ca" tvg-country="" tvg-language="" tvg-logo="" group-title="",Prime Asia TV (720p) +http://primeasia.dyndns.tv:8080/Live_web_250/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Prime Time Drama +https://simultv.s.llnwi.net/o064/PrimeTimeDrama/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Providence Christian Network +https://simultv.s.llnwi.net/n4s4/ProvidenceNetwork/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Punjabi TV +http://cdn9.live247stream.com/punjabitvcanada/tv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Punkteins +https://5852afe96c9bb.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",PunktUm Hettstedt (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:punktum_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Radio Javan TV (1080p) +https://stream.rjtv.tv/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Radio Weser TV Bremen +https://5857499ee635b.streamlock.net/radiowesertv-live/_definst_/mp4:livestreamTV/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ran1 Dessau-Roßlau (1080p) +http://62.113.210.250:1935/medienasa-live/_definst_/mp4:ran1_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RBW Bitterfeld-Wolfen (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:rbw_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Ready Set Action (720p) +https://simultv.s.llnwi.net/o059/ReadySetAction/interlink.m3u8 +#EXTINF:-1 tvg-id="RedBullTV.at" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/7NeBmWX.jpg" group-title="Sports",Red Bull TV (360p) +https://rbmn-live.akamaized.net/hls/live/622817/BoRB-US/master_928.m3u8 +#EXTINF:-1 tvg-id="RedTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mtel.ba/oec/images/tv_channels/eb36e114680b1a8a4da0438ecb670663.png" group-title="",Red TV (720p) +https://live.rednet.rs/providus/redtv_multi_hq/index.m3u8 +#EXTINF:-1 tvg-id="RedeTV.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-tv_m.png" group-title="",RedeTV! Tocantins (720p) [Not 24/7] +https://59f1cbe63db89.streamlock.net:1443/redetvro/_definst_/redetvro/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Report TV +https://deb10stream.duckdns.org/hls/stream.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Rete 7 (576p) +https://stream.ets-sistemi.it/live.rete7/rete7/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Retro Plus 2 HD +https://59f1cbe63db89.streamlock.net:1443/retroplussenal2/_definst_/retroplussenal2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Retro Plus HD +https://59f1cbe63db89.streamlock.net:1443/retroplustv/_definst_/retroplustv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RFH Harz (1080p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:RFH_high/playlist.m3u8 +#EXTINF:-1 tvg-id="RheinMainTV.de" tvg-country="DE" tvg-language="German" tvg-logo="https://cdn.hd-plus.de/senderlogos/bright-cropped/24539-1.png" group-title="",RheinMain TV (720p) [Not 24/7] +https://586fb512206e4.streamlock.net/rheinmaintv-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RMC +https://rmc2hdslive-lh.akamaihd.net/i/DVMR_RMC@167269/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 1 +http://79.106.48.2:4578/live/rtsh_1mob_pp2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 2 +http://79.106.48.2:4578/live/rtsh_2mob_p2/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 3 (270p) +http://79.106.48.2:4578/live/rtsh3mobp1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH 24 +http://79.106.48.2:4578/live/rtsh_24_mob/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Film (270p) +http://79.106.48.2:4578/live/rtsh_film_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Gjirokastra (360p) +http://79.106.48.2:4578/live/rtsh_gjirokastra_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Kids +http://79.106.48.2:4578/live/rtsh_femije_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Korça (360p) +http://79.106.48.2:4578/live/rtsh_korca_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Kukesi +http://79.106.48.2:4578/live/rtsh_kukesi_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Muzike +http://79.106.48.2:4578/live/rtsh_muzike_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Plus +http://79.106.48.2:4578/live/rtsh_plus_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Sat (360p) +http://79.106.48.2:4578/live/rtsh_sat_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Shkodra (360p) +http://79.106.48.2:4578/live/rtsh_shkodra_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTSH Shqip +http://79.106.48.2:4578/live/rtsh_shqip_mob_p1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Arberia Musik +http://rtvarberia4.flashmediacast.com:1935/RtvArberia4/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Herceg-Bosne +https://prd-hometv-live-open.spectar.tv/ERO_1_083/576p/chunklist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV Ilirida +http://uk4.streamingpulse.com:1935/rtvilirida/rtvilirida/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV MIR [Offline] +https://rtvmir.info/MIR/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",RTV USK +http://wslb.dobratv.net:8877/uzivo/usk/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Rudana +https://live.rudana.com.ua/hls/stream_FHD.m3u8 +#EXTINF:-1 tvg-id="SandzakTV.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/78b8b0fe8b35f5afd2a9971e91adb2d4.png" group-title="",Sandzak TV (576p) +https://vod1.laki.eu/sandzak/video.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sat7 Türk (720p) +https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/sat7turkpublish/sat7turk_720p/chunks_dvr.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Seenluft24 +https://5856e1a25f71a.streamlock.net/easycast7-live/_definst_/mp4:livestreamhd20/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",SimSi TV [Timeout] +https://simultv.s.llnwi.net/o060/SimSiTV/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Slap Tech +https://simultv.s.llnwi.net/o061/SlapTech/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="http://190.211.140.13/soltv/img/logomenu.png" group-title="",Sol Televisión +http://190.211.140.89:8081/SVTranscoder/SOLTVabr.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sonus FM TV [Not 24/7] +https://60015180a7f57.streamlock.net:444/public/stream_source/chunklist_w1017805699.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sophia TV (720p) +https://www.onairport.live/sophiatv-es-live/livestream_high/master.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Space Channel +https://stream.ads.ottera.tv/playlist.m3u8?network_id=565 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Spydar +https://simultv.s.llnwi.net/o062/Spydar/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Start TV +https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Studio 47 +https://5852afe96c9bb.streamlock.net/studio47-live/_definst_/mp4:livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",STV (720p) +http://89.201.163.244:8080/hls/hdmi.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Super TV Media +https://mirtv.club/live/mirtv/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Switch (720p) +https://simultv.s.llnwi.net/o062/Switch/interlink.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Sylt1 +https://5aec29c5dd23b.streamlock.net:8443/sylt1/_definst_/sylt1_high1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Syri TV (720p) +https://tv.syri.net/syrilive/webtv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Teleonuba +https://5d8d85cf2c308.streamlock.net:1936/Teleonuba/605oPXx3/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Televizija Radio Banovina [Offline] +https://5b57bb229a2e6.streamlock.net/live/smil:banovina.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",teltOwkanal +https://5856e1a25f71a.streamlock.net/easycast8-live/_definst_/mp4:livestreamhd8/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Temple TV +https://streaming.temple.edu/tutvlive/_definst_/mp4:8BRYCQMB/chunklist_w1944862924.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Tempo TV +https://waw2.artiyerelmedya.net/tempotv/bant1/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",The Archive (1080p) +https://ov.ottera.tv/live/master.m3u8?channel=mcom_ta_us +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",The Grapevine +https://ov.ottera.tv/live/master.m3u8?channel=mcom_gv_us +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Tide TV (1080p) +https://5889e7d0d6e28.streamlock.net/tide-live/_definst_/smil:livestream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Top News +http://93.157.62.180/TopNews/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TopEstrada TV +http://live.topestrada.com/live/topestrada/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Birigui (640p) +https://59f2354c05961.streamlock.net:1443/tvdigitalbirigui/_definst_/tvdigitalbirigui/chunklist_w763334596.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Brusque (720p) +https://5ad482a77183d.streamlock.net/rodrigotvbrusque.com.br/_definst_/5d880199c902eb4a1e8df00d/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Destak (360p) +https://59f2354c05961.streamlock.net:1443/pascoal/_definst_/pascoal/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Dielli (720p) +http://stream.tvdielli.com:8081/dielli/index.m3u8 +#EXTINF:-1 tvg-id="TVGazeta.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_rede-gazeta_m.png" group-title="",TV Gazeta (720p) +http://api.new.livestream.com/accounts/5381476/events/8947634/live.m3u8 +#EXTINF:-1 tvg-id="TVGuara.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tv-guara-hd_m.png" group-title="",TV Guará (720p) [Not 24/7] +https://59f2354c05961.streamlock.net:1443/tvguara/_definst_/tvguara/chunklist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Halle (720p) +https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:tvhalle_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Johaniter +https://nesertv.live/webstream/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Marajoara (720p) +https://video01.kshost.com.br:4443/tv31966/tv31966/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="Portuguese" tvg-logo="" group-title="",TV Max +https://59f1cbe63db89.streamlock.net:1443/tvmax/_definst_/tvmax/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Pai Eterno +https://59f1cbe63db89.streamlock.net:1443/teste01/_definst_/teste01/chunklist.m3u8 +#EXTINF:-1 tvg-id="TVPirot.rs" tvg-country="RS" tvg-language="Serbian" tvg-logo="https://mts.rs/oec/images/tv_channels/9532e04a1fbf22a3e3d49a3ceea71bcf.png" group-title="",TV Pirot (240p) [Not 24/7] +https://5bc45691ca49f.streamlock.net/tvpirot/uzivo/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV S1 +https://sradio.ipradio.rs/sradio/radiostv/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Sharri +http://uk4.streamingpulse.com:1935/TVSHARRI/TVSHARRI/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV Tema +http://134.209.238.38/hls/test.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV União (720p) [Not 24/7] +https://596639ebdd89b.streamlock.net/tvuniao/tvuniao/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TV2 Fyn (1080p) +https://cdnapisec.kaltura.com/p/1966291/sp/196629100/playManifest/entryId/0_vsfrv0zm/format/applehttp/protocol/https/uiConfId/30288171/a.m3u8 +#EXTINF:-1 tvg-id="TVEBahia.br" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://cdn.mitvstatic.com/channels/br_tve-bahia_m.png" group-title="",TVE RS (1080p) +http://streaming.procergs.com.br:1935/tve/stve/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TVnet +https://mn-nl.mncdn.com/tvnet/tvnet/chunklist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",TVW +https://wowzaprod13-i.akamaihd.net/hls/live/254985/29c28f19/persisTarget_9375922947_TVWAIR_247_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",Urban Revolution +https://www.urbanrevolution.es:444/live/5e6d8470a3832/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",WATAN-E-MAA +https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",WTV Wettin +http://62.113.210.250:1935/medienasa-live/ok-wettin_high/playlist.m3u8 +#EXTINF:-1 tvg-id="" tvg-country="" tvg-language="" tvg-logo="" group-title="",XZone (720p) +https://simultv.s.llnwi.net/o060/xzone/interlink.m3u8 diff --git a/channels/us.m3u~master b/channels/us.m3u~master new file mode 100644 index 000000000..250e3c90e --- /dev/null +++ b/channels/us.m3u~master @@ -0,0 +1,1953 @@ +#EXTM3U +#EXTINF:-1 tvg-id="WKYC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tjlSkyp.jpg" group-title="Local",3 Studios Cleveland OH (WKYC) (1080p) +https://livevideo01.wkyc.com/hls/live/2015504/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="3ABN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GVZuKc7.png" group-title="Religious",3ABN (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652042/secure/master.m3u8 +#EXTINF:-1 tvg-id="K17JIDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zI6jr9L.png" group-title="Religious",3ABN Dare to Dream (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652313/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNFrancais.us" tvg-country="US" tvg-language="French" tvg-logo="https://i.imgur.com/V6bL5MJ.png" group-title="Religious",3ABN Français (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652314/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vhb8zvB.png" group-title="Religious",3ABN International (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652312/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eOvzf3d.png" group-title="Religious",3ABN Kids (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652318/secure/master.m3u8 +#EXTINF:-1 tvg-id="K17JIDT4.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4ydVVIA.png" group-title="Religious",3ABN Latino (480p) +http://uni5rtmp.tulix.tv:1935/bettervida/bettervida/playlist.m3u8 +#EXTINF:-1 tvg-id="K18JLD2.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4ydVVIA.png" group-title="Religious",3ABN Latino (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652315/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNPraiseHimMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t6Ydwqg.png" group-title="Religious",3ABN Praise Him Music Channel (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/554145/secure/playlist.m3u8 +#EXTINF:-1 tvg-id="K17JIDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KiMtKUL.png" group-title="Religious",3ABN Proclaim! (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652317/secure/master.m3u8 +#EXTINF:-1 tvg-id="3ABNRussia.us" tvg-country="US" tvg-language="Russian" tvg-logo="https://i.imgur.com/8fKWpo3.png" group-title="Religious",3ABN Russia (720p) [Not 24/7] +https://moiptvhls-i.akamaihd.net/hls/live/652316/secure/master.m3u8 +#EXTINF:-1 tvg-id="WHDH.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/b5/WHDH_7_logo.png" group-title="Local",7News Boston MA (WHDH) (540p) [Timeout] +https://bcsecurelivehls-i.akamaihd.net/hls/live/598046/4744899807001_1/livestream/master.m3u8 +#EXTINF:-1 tvg-id="KBMT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/boVFg14.jpg" group-title="Local",12 News Beaumont TX (KBMT) (1080p) +https://livevideo01.12newsnow.com/hls/live/2017379/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KEROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://scripps.com/wp-content/uploads/2019/01/local_media_23_abc.png" group-title="Local",23 ABC Bakersfield CA (KERO) (720p) +https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8 +#EXTINF:-1 tvg-id="30ADarcizzleOffshore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l2O0fY1.png" group-title="Outdoor",30A Darcizzle Offshore (720p) +https://30a-tv.com/darcizzle.m3u8 +#EXTINF:-1 tvg-id="30AInvestmentPitch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CKCtZo7.png" group-title="Business",30A Investment Pitch (720p) +https://30a-tv.com/feeds/xodglobal/30atv.m3u8 +#EXTINF:-1 tvg-id="30AMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gNWg9tl.png" group-title="Music",30A Music (720p) +https://30a-tv.com/music.m3u8 +#EXTINF:-1 tvg-id="30ASidewalks.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sidewalkstv.com/wp-content/uploads/2013/10/sw-tep-large-300x125.png" group-title="Entertainment",30A Sidewalks (720p) +https://30a-tv.com/sidewalks.m3u8 +#EXTINF:-1 tvg-id="30ATheBeachShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0j5Aget.png" group-title="Local",30A The Beach Show (720p) +https://30a-tv.com/beachy.m3u8 +#EXTINF:-1 tvg-id="247RetroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/247RetroTV.png" group-title="Classic",247 Retro TV (432p) [Not 24/7] +http://hlsdpi-cdn-chqtx02.totalstream.net/dpilive/247retro/ret/dai/playlist.m3u8 +#EXTINF:-1 tvg-id="A3Bikini.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/A3Network_A3Bikini.png?raw=true" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="XXX",A3Bikini (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://vcnbikininetwork.teleosmedia.com/stream/bikininetwork/a3bikini/playlist.m3u8 +#EXTINF:-1 tvg-id="ABTV.us" tvg-country="BD" tvg-language="Bengali" tvg-logo="https://i.imgur.com/ytH4Ncu.png" group-title="General",AB TV (720p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/abtvusa.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WSBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HkY10xX.jpg" group-title="Local",ABC 2 Atlanta GA (WSB-TV) (720p) +https://d2rwx6gwduugne.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10010_183ec1c7-4183-4661-803b-3ed282ffb625_LE/in/cmg-wsbtvnow-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="WBRZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/86/WBRZ_Logo_2013.png" group-title="Local",ABC 2 Baton Rouge LA (WBRZ) (720p) [Not 24/7] +http://cms-wowza.lunabyte.io/wbrz-live-1/_definst_/smil:wbrz-live.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KIII.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/svfSv3O.jpg" group-title="Local",ABC 3 Corpus Christi TX (KIII) (1080p) +https://livevideo01.kiiitv.com/hls/live/2017378/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8vXRrRe.jpg" group-title="Local",ABC 4 Seattle WA (KOMO-TV) (720p) +https://content.uplynk.com/2c88dfe19e1447e6a6aa27e8e143a140.m3u8 +#EXTINF:-1 tvg-id="WEWSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606e0f9a9739652ec518e8c1" group-title="Local",ABC 5 Cleveland OH (WEWS-TV) (1080p) +https://wews-syndication.ewscloud.com/out/v1/72729e3f4dbe4aafbab93d6b1117e5f1/index.m3u8 +#EXTINF:-1 tvg-id="WOI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1jA3nKg.jpg" group-title="Local",ABC 5 Des Moines IA (WOI) (1080p) +https://livevideo01.weareiowa.com/hls/live/2011593/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KSTPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UZWNjGs.png" group-title="News",ABC 5 Minneapolis MN (KSTP) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/kstp-tv +#EXTINF:-1 tvg-id="KMGHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JExsI09.png" group-title="Local",ABC 7 Denver CO (KMGH) (720p) +https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8 +#EXTINF:-1 tvg-id="KABCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://imgur.com/nKAUCLF.jpg" group-title="News",ABC 7 Los Angeles CA (KABC-TV) (720p) +https://content.uplynk.com/channel/ext/2118d9222a87420ab69223af9cfa0a0f/kabc_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WJLATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LttuGfq.png" group-title="Local",ABC 7 Washington DC (WJLA) (720p) +https://content.uplynk.com/40cec2bf074c40f08932da03ab4510be.m3u8 +#EXTINF:-1 tvg-id="WFAA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0a0FVSv.jpg" group-title="Local",ABC 8 Dallas TX (WFAA) (1080p) +https://livevideo01.wfaa.com/hls/live/2014541/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WQAD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CZZBTGv.jpg" group-title="Local",ABC 8 Davenport IA (WQAD) (1080p) +https://livevideo01.wqad.com/hls/live/2011657/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WFTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://mediaweb.wftv.com/theme/images/placeholder-square.jpg" group-title="Local",ABC 9 Orlando FL (WFTV) (720p) +https://d3qm7vzp07vxse.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10070_fe1f5f6c-cd0b-4993-a4a4-6db66be4f313_LE/in/cmg-wftvtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="KXTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aqxCgyG.jpg" group-title="Local",ABC 10 Sacramento CA (KXTV) (1080p) +https://livevideo01.abc10.com/hls/live/2014547/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WHAS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ATiQ6J9.jpg" group-title="Local",ABC 11 Louisville KY (WHAS) (1080p) +https://livevideo01.whas11.com/hls/live/2016284/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WZZM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eapvJpP.jpg" group-title="Local",ABC 13 Grand Rapids MI (WZZM) (1080p) +https://livevideo01.wzzm13.com/hls/live/2016280/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KTNVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QbkW7zY.png" group-title="Local",ABC 13 Las Vegas NV (KTNV) (720p) +https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8 +#EXTINF:-1 tvg-id="WVEC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/P5PtUcR.jpg" group-title="Local",ABC 13 Norfolk VA (WVEC) (1080p) +https://livevideo01.13newsnow.com/hls/live/2014545/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KNXVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/99/KNXV_Logo.png" group-title="Local",ABC 15 Phoenix AZ (KNXV-TV) (720p) +https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8 +#EXTINF:-1 tvg-id="WNEP.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1s3Euh5.jpg" group-title="Local",ABC 16 Wilkes Barre PA (WNEP) (1080p) +https://livevideo01.wnep.com/hls/live/2011655/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KVUETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nLBEhIx.jpg" group-title="Local",ABC 24 Austin TX (KVUE) (1080p) +https://livevideo01.kvue.com/hls/live/2016282/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WATNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ukf1WZ0.jpg" group-title="Local",ABC 24 Memphis TN (WATN-TV) (1080p) +https://livevideo01.localmemphis.com/hls/live/2011654/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WKBW-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Buffalo NY (WKBW-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_ABCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Detroit MI (WXYZ-TV1) (720p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Detroit MI (WXYZ-TV1) (480p) +http://encodercdn1.frontline.ca/kamino/output/ABC_Burlington/playlist.m3u8 +#EXTINF:-1 tvg-id="ABCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="News",ABC News (720p) +https://content.uplynk.com/channel/3324f2467c414329b3b0cc5cd987b6be.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive1.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 1 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023560/abcnews1/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive2.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 2 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023561/abcnews2/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive3.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 3 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023562/abcnews3/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive4.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 4 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023563/abcnews4/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive5.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 5 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023564/abcnews5/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive6.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 6 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023565/abcnews6/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive7.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 7 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023566/abcnews7/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive8.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 8 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023567/abcnews8/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive9.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 9 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023568/abcnews9/master.m3u8 +#EXTINF:-1 tvg-id="ABCNewsLive10.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjk3NjU0OTJf/ABCNewsLive_2021_200x200.png" group-title="Local",ABC News Live 10 (720p) +https://abcnews-streams.akamaized.net/hls/live/2023569/abcnews10/master.m3u8 +#EXTINF:-1 tvg-id="WABCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="Local;News",ABC News New York NY (WABC-TV) (720p) +https://content.uplynk.com/channel/ext/72750b711f704e4a94b5cfe6dc99f5e1/wabc_24x7_news.m3u8 +#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Seattle WA (KOMO-TV1) (720p) +http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KOMOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Seattle WA (KOMO-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/yavin/output/ABC_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="KXLYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Spokane WA (KXLY-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KXLY-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Spokane WA (KXLY-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/ABC_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="WTXLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/abc-logo-2013-butterscotch-us.png" group-title="Local",ABC Tallahassee FL (WTXL-TV1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WTXLHD.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (720p) +https://a.jsrdn.com/broadcast/542cb2ce3c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="KCKSLD3.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="",Ace TV (KCKS-LD3) (480p) +https://cdn.igocast.com/channel3_hls/channel3_master.m3u8 +#EXTINF:-1 tvg-id="KCKSLD4.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="",Action (KCKS-LD4) (480p) +https://cdn.igocast.com/channel4_hls/channel4_master.m3u8 +#EXTINF:-1 tvg-id="Actionable.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Actionable (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e25a1932c8368bdbfd87d/playlist.m3u8 +#EXTINF:-1 tvg-id="ActionMaxEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Snba5W2.jpg" group-title="Movies",ActionMax East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cinemaxaction.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="AdoracionReal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/AdoracionReal1/picture?width=320&height=320" group-title="Music",Adoración Real (360p) [Not 24/7] +https://tv.tvcontrolcp.com:1936/8012/8012/playlist.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wZk4nZI.png" group-title="Sports",Adventure Sports TV (360p) [Not 24/7] +https://gizmeon.s.llnwi.net/channellivev3/live/master.m3u8?channel=275 +#EXTINF:-1 tvg-id="Akaku53.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 53 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch1.m3u8 +#EXTINF:-1 tvg-id="Akaku54.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 54 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch2.m3u8 +#EXTINF:-1 tvg-id="Akaku55.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MQET539.jpg" group-title="Local",Akaku 55 (Hawaii) (1080p) +https://akaku.vod.castus.tv/live/ch3.m3u8 +#EXTINF:-1 tvg-id="AKCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV (1080p) +https://broadcast.blivenyc.com/speed/broadcast/22/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AKCTVMeettheBreeds.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV Meet the Breeds (1080p) +https://broadcast.blivenyc.com/speed/broadcast/71/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AKCTVPuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2nzRS60.png" group-title="Outdoor",AKC TV Puppies (1080p) +https://broadcast.blivenyc.com/speed/broadcast/29/desktop-playlist.m3u8 +#EXTINF:-1 tvg-id="AlHorreyaTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VCfZB73.png" group-title="Religious",Al Horreya TV (1080p) +http://media.smc-host.com:1935/alhorreya.tv/mp4:alhorreya3/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHorreyaTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/VCfZB73.png" group-title="Religious",Al Horreya TV (720p) +http://media.smc-host.com:1935/alhorreya.tv/alhorreya.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlHurra.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GRl09vk.jpg" group-title="News",Al Hurra (720p) +https://mbningestworld-i.akamaihd.net/hls/live/586122/worldsafe/master.m3u8 +#EXTINF:-1 tvg-id="AlHurra.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/GRl09vk.jpg" group-title="News",Al Hurra (486p) [Not 24/7] +https://mbnhls-lh.akamaihd.net/i/MBN_1@118619/master.m3u8 +#EXTINF:-1 tvg-id="AlientoVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0qwmBEm.png" group-title="Religious",Aliento Vision (720p) [Not 24/7] +http://209.133.209.195:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlientoVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0qwmBEm.png" group-title="Religious",Aliento Vision (720p) [Not 24/7] +http://livestreamcdn.net:1935/AlientoSD/smil:AlientoSD.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-AU.png" group-title="Religious",Alkarma TV Australia (720p) +https://5a8308add0b31.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVAustralia.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-AU.png" group-title="Religious",Alkarma TV Australia (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaau.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVFamily.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i2.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Family.png" group-title="Religious",Alkarma TV Family (720p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmaNA2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVMiddleEast.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i2.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-ME.png" group-title="Religious",Alkarma TV Middle East (1080p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVNorthAmericaCanada.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-NA.png" group-title="Religious",Alkarma TV North America & Canada (720p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmana1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVPraise.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Praise.png" group-title="Religious",Alkarma TV Praise (720p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmapa.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVTalmazaDiscipleship.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i1.wp.com/en.alkarmatv.com/wp-content/uploads/2020/02/Logo-Talmaza.png" group-title="Religious",Alkarma TV Talmaza (Discipleship) (720p) [Not 24/7] +https://58cc65c534c67.streamlock.net/alkarmatv.com/alkarmame2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlkarmaTVYouthEnglish.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i0.wp.com/en.alkarmatv.com/wp-content/uploads/2020/11/Logo-US-1024x576-1.png" group-title="Religious",Alkarma TV Youth & English (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/alkarmatv.com/alkarmaus.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Alkerazatv.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",Alkerazatv (720p) +https://597f64b67707a.streamlock.net/alkerazatv.org/alkerazatv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AllSportsTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qHwCima.jpg" group-title="Sports",All Sports TV Network (404p) [Offline] +https://2-fss-2.streamhoster.com/pl_120/amlst:203932-1476320/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmagdTVMiddleEast.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://www.almagd.tv/en/images/logo.png" group-title="Religious",Almagd TV Middle East (1080p) +https://597f64b67707a.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlmagdTVNorthAmerica.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://www.almagd.tv/en/images/logo.png" group-title="Religious",Almagd TV North America (1080p) +https://5aafcc5de91f1.streamlock.net/almagd.tv/almagd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCLatinAmerica.us" tvg-country="US" tvg-language="English;Spanish" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="",AMC Latin America [Timeout] +http://209.91.213.10:8088/play/a013 +#EXTINF:-1 tvg-id="America.us" tvg-country="US" tvg-language="English" tvg-logo="https://s-media-cache-ak0.pinimg.com/originals/40/48/2c/40482cf6af582372c2a22072a2394a80.png" group-title="",America (720p) [Not 24/7] +http://45.6.4.154/americatuc/vivo.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) +https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8 +#EXTINF:-1 tvg-id="KCKSLD5.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="News",America's Voice (KCKS-LD5) (480p) [Not 24/7] +https://cdn.igocast.com/channel5_hls/channel5_master.m3u8 +#EXTINF:-1 tvg-id="AmericanHorrors.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JLkzt7v.jpg" group-title="Movies",American Horrors (480p) +http://170.178.189.66:1935/live/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="AMGTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://amgtv.tv/wp-content/uploads/2019/11/new_amgtv_top.png" group-title="Family",AMG TV (1080p) +https://2-fss-2.streamhoster.com/pl_138/201660-1270634-1/playlist.m3u8 +#EXTINF:-1 tvg-id="AmgaTV.us" tvg-country="AM" tvg-language="Armenian;Russian;English" tvg-logo="https://i.imgur.com/3vQVwUV.jpg" group-title="General",Amga TV (720p) [Not 24/7] +https://streamer1.connectto.com/AMGA_WEB_1202/playlist.m3u8 +#EXTINF:-1 tvg-id="ARTNTV.us" tvg-country="AM" tvg-language="Russian;Armenian" tvg-logo="https://www.artn.tv/assets/5ba5a4abe66dd.png" group-title="General",ARTN TV (1080p) [Not 24/7] +https://streamer1.connectto.com/ARTN_mobile/index.m3u8 +#EXTINF:-1 tvg-id="ATDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qZtN1WI.jpg" group-title="",ATD TV (American TV of Dardania) (1080p) +http://46.99.146.236/0.m3u8 +#EXTINF:-1 tvg-id="AtlantaChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hSYez3V.png" group-title="Local",Atlanta Channel (720p) +http://media4.tripsmarter.com:1935/LiveTV/ACVBHD/playlist.m3u8 +#EXTINF:-1 tvg-id="AtlantaChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hSYez3V.png" group-title="Local",Atlanta Channel (720p) +https://5b0f5374bdf0c.streamlock.net:444/LiveTV/ATLHD/playlist.m3u8 +#EXTINF:-1 tvg-id="AudioDungeon.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.prunderground.com/wp-content/uploads/2019/04/Audio-Dungeon-1.png" group-title="Entertainment",Audio Dungeon (720p) +https://content.uplynk.com/channel/5688add7ce704ce1a27ab62bb44044b9.m3u8 +#EXTINF:-1 tvg-id="AvangTV.us" tvg-country="IR" tvg-language="Persian" tvg-logo="https://www.lyngsat.com/logo/tv/aa/avang-tv-us.png" group-title="Music",Avang TV (1080p) [Not 24/7] +http://appavang.flashmediacast.com:1935/Appavang/livestream/palylist.m3u8 +#EXTINF:-1 tvg-id="AWEEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60482f63cfbf071d6151ca95" group-title="General",AWE Encore (720p) [Geo-blocked] +https://cdn.herringnetwork.com/80A4DFF/awee_nva/AWE_Encore.m3u8 +#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="ID;TH" tvg-language="English;Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",AXN East Asia (Thai) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_AXNHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Movies",AXN East Asia (Vietnamese) (1080p) [Offline] +http://103.81.104.118/hls/stream2.m3u8 +#EXTINF:-1 tvg-id="AXNLatinoamerica.us" tvg-country="HISPAM" tvg-language="English;Spanish" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Entertainment",AXN Latinoamérica (576p) [Timeout] +http://209.91.213.10:8088/play/a011 +#EXTINF:-1 tvg-id="AXSTVNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d1bba10396351a3042dd4" group-title="General",AXS TV Now (1080p) +https://dikcfc9915kp8.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="AyenehTV.us" tvg-country="US" tvg-language="Persian" tvg-logo="https://i.imgur.com/TpnmasZ.png" group-title="General",Ayeneh TV (720p) [Not 24/7] +https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 +#EXTINF:-1 tvg-id="BabyFirstTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/50338/s50338_h3_aa.png" group-title="Kids",BabyFirst TV (1080p) +https://babyfirst.akamaized.net/hls/live/2028842/bftvusaott/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVCSULB.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.cla.csulb.edu/departments/polisci/wp-content/uploads/2016/01/Beach-TV-Logo-300x169.jpg" group-title="Education",Beach TV CSULB (720p) [Not 24/7] +http://stream04.amp.csulb.edu:1935/Beach_TV/smil:BeachTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qjzj4TJ.png" group-title="Local",Beach TV Florida & Alabama (720p) +http://media4.tripsmarter.com:1935/LiveTV/DTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVFloridaAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qjzj4TJ.png" group-title="Local",Beach TV Florida & Alabama (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/DTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p2YKsil.png" group-title="Local",Beach TV Key West & Florida Keys (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/KTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVKeyWestFloridaKeys.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p2YKsil.png" group-title="Local",Beach TV Key West & Florida Keys (720p) [Offline] +https://media4.tripsmarter.com:1935/LiveTV/KTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LddMCWt.png" group-title="Local",Beach TV Myrtle Beach & The Grand Strand (720p) +http://media4.tripsmarter.com:1935/LiveTV/MTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVMyrtleBeachGrandStrand.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LddMCWt.png" group-title="Local",Beach TV Myrtle Beach & The Grand Strand (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/MTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVPanamaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GaUcUCZ.png" group-title="Local",Beach TV Panama City (720p) +http://media4.tripsmarter.com:1935/LiveTV/BTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeachTVPanamaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GaUcUCZ.png" group-title="Local",Beach TV Panama City (720p) +https://5ed325193d4e1.streamlock.net:444/LiveTV/BTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="BeautyIQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qtirIFA.png" group-title="Shop",Beauty IQ (1080p) +https://lsqvc4us-lh.akamaihd.net/i/lsqvc4us_01@802711/master.m3u8 +#EXTINF:-1 tvg-id="BekSportsEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/media/DfLqnf4VMAA0m27.png" group-title="Sports",Bek Sports East (720p) +https://wowzaprod188-i.akamaihd.net/hls/live/728897/54d0bcd5/playlist.m3u8 +#EXTINF:-1 tvg-id="BekSportsWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/media/DfLqnf4VMAA0m27.png" group-title="Sports",Bek Sports West (720p) +https://wowzaprod188-i.akamaihd.net/hls/live/728897/89b077e6/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterHealthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/paFX8ZJ.png" group-title="Lifestyle",Better Health TV (480p) +https://uni5rtmp.tulix.tv/betterhealth/betterhealth/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterHealthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/paFX8ZJ.png" group-title="Lifestyle",Better Health TV (480p) +https://uni10rtmp.tulix.tv/betterhealth/betterhealth.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Relax",Better Life Nature Channel (480p) +https://uni5rtmp.tulix.tv/betternature/betternature/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeNatureChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Relax",Better Life Nature Channel (480p) +https://uni10rtmp.tulix.tv/betternature/betternature.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Religious",Better Life TV (720p) +https://uni5rtmp.tulix.tv/betterlife/betterlife/playlist.m3u8 +#EXTINF:-1 tvg-id="BetterLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gmrVKEC.jpg" group-title="Religious",Better Life TV (720p) +https://uni10rtmp.tulix.tv/betterlife/betterlife.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BibleExplorations.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wwUtlBi.png" group-title="Religious",Bible Explorations (480p) [Not 24/7] +http://stream.iphonewebtown.com:1935/bibleexplorations/bexplorationsmobile.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (1080p) +https://thegateway.app/BizAndYou/BizTV/playlist.m3u8 +#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (576p) [Not 24/7] +http://gideommd.mmdlive.lldns.net/gideommd/46c072b287224782a4d4ce93c3646589/manifest.m3u8 +#EXTINF:-1 tvg-id="BizTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4pEmcFH.png" group-title="Lifestyle",Biz TV (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/m3u8/us_biztv.m3u8 +#EXTINF:-1 tvg-id="BlazeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HcRKP5P.jpg" group-title="Entertainment",Blaze TV (720p) +https://theblaze4.akamaized.net/hls/live/699982/theblaze/cm-dvr/master.m3u8 +#EXTINF:-1 tvg-id="BloombergHT.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6aarbHM.jpg" group-title="Business",Bloomberg HT (720p) [Not 24/7] +https://tv.ensonhaber.com/tv/tr/bloomberght/index.m3u8 +#EXTINF:-1 tvg-id="BloombergHT.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="https://i.imgur.com/6aarbHM.jpg" group-title="Business",Bloomberg HT (720p) [Offline] +https://ciner.daioncdn.net/bloomberght/bloomberght.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-02-oNnPi5xc6sq_live.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (720p) +https://d1g4mbj10o50ni.cloudfront.net/qt/Channel-QT-TX-AWS-virginia-2/Source-QT-10M-2-sn9jy9-BP-07-03-qPp9HnlfNtK_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAsia.us" tvg-country="APAC" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Asia (720p) +https://liveprodapnortheast.global.ssl.fastly.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAsiaLiveEvent.us" tvg-country="APAC" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Asia Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/asia-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Australia (720p) +https://liveprodapnortheast.global.ssl.fastly.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVAustralia.us" tvg-country="AU" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Australia (270p) +https://liveprodapnortheast.akamaized.net/oz1/Channel-OZTVqvs-AWS-tokyo-1/Source-OZTVqvs-440-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEMEALiveEvent.us" tvg-country="EMEA" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV EMEA Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/eu-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe (720p) +https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVEurope.us" tvg-country="EUR" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV Europe (360p) +https://liveprodeuwest.global.ssl.fastly.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) +https://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) +https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (360p) +https://liveprodapnortheast.akamaized.net/ap1/Channel-APTVqvs-AWS-tokyo-1/Source-APTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (360p) +https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (180p) +https://liveproduseast.global.ssl.fastly.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-240-1_live.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUSLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/us-event.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUSPoliticsLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US Politics Live Event (720p) +https://www.bloomberg.com/media-manifest/streams/politics.m3u8 +#EXTINF:-1 tvg-id="BluegrassMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nm3N3aw.png" group-title="Music",Bluegrass Music 4U (360p) [Not 24/7] +https://59d39900ebfb8.streamlock.net/blugrassmusic/blugrassmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="BoomerangLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Kids",Boomerang Latinoamérica [Geo-blocked] +http://45.5.8.78:8000/play/a00i +#EXTINF:-1 tvg-id="WFXTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YGdDVAQ.jpg" group-title="Local",Boston 25 News (WFXT) (360p) +https://d2dy6pkj44n6e7.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10020_27d61a9c-67b2-4d7c-9486-626a6a071467_LE/in/cmg-wftxtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="BounceEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/bounce-us.png" group-title="Entertainment",Bounce Tallahassee FL (WTXL-TV2) (480p) +https://5e6cea03e25b6.streamlock.net/live/BOUNCE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="BowieTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZgrlVYT.jpg" group-title="Local",Bowie TV (360p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/cityofbowie/G0466_001/playlist.m3u8 +#EXTINF:-1 tvg-id="BrazzersLatinoamerica.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="XXX",Brazzers Latinoamérica [Geo-blocked] +http://45.5.8.78:8000/play/a029 +#EXTINF:-1 tvg-id="bspoketv.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jsiHrMV.png" group-title="Lifestyle",bspoketv (720p) [Not 24/7] +https://bspoketv.s.llnwi.net/streams/322/master.m3u8 +#EXTINF:-1 tvg-id="BuffaloTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PD5MCbE.jpg" group-title="Local",Buffalo TV (360p) [Offline] +https://na-all15.secdn.net/pegstream3-live/play/c3e1e4c4-7f11-4a54-8b8f-c590a95b4ade/playlist.m3u8 +#EXTINF:-1 tvg-id="BusinessRockstars.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BusinessRockstars_1400x1400.png?raw=true" group-title="Business",Business Rockstars (720p) +https://content.uplynk.com/channel/7ad2b600b40b4a89933ab6981757f8b3.m3u8 +#EXTINF:-1 tvg-id="BUTV10BostonUniversity.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.butv10.com/wp-content/themes/butv10/_images/favicon.png" group-title="Local",BUTV10 (Boston University) (1080p) [Not 24/7] +http://butv10-livestream.bu.edu/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) +https://buzzrota-web.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) [Offline] +https://a.jsrdn.com/broadcast/ds80weh4/c.m3u8 +#EXTINF:-1 tvg-id="KCKSLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Buzzr (KCKS-LD1) (480p) +https://cdn.igocast.com/channel1_hls/channel1_master.m3u8 +#EXTINF:-1 tvg-id="BYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TDRDF4q.png" group-title="General",byu TV (720p) [Offline] +https://a.jsrdn.com/broadcast/d5b46/+0000/c.m3u8 +#EXTINF:-1 tvg-id="CSPAN.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.dailydot.com/wp-content/uploads/2020/08/CSpan.png" group-title="Legislative",C-SPAN (108p) +https://skystreams-lh.akamaihd.net/i/SkyC1_1@500806/master.m3u8 +#EXTINF:-1 tvg-id="CSPAN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/cspan2.png" group-title="Legislative",C-SPAN 2 (108p) +https://skystreams-lh.akamaihd.net/i/SkyC2_1@500807/master.m3u8 +#EXTINF:-1 tvg-id="CSPAN3.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/cspan3.png" group-title="Legislative",C-SPAN 3 (108p) [Not 24/7] +https://skystreams-lh.akamaihd.net/i/SkyC3_1@500808/master.m3u8 +#EXTINF:-1 tvg-id="CableHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zl7Gzwm.png" group-title="Entertainment",Cable Hits (720p) [Not 24/7] +https://bk7l2w4nlx53-hls-live.5centscdn.com/AETV/514c04b31b5f01cf00dd4965e197fdda.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://3.bp.blogspot.com/-Ngn_IHUGV-E/VoGzyGsSlkI/AAAAAAAAAjc/XTspAPwP2TE/s1600/CMC-Music-Channel.png" group-title="Music",California Music Channel (720p) [Geo-blocked] +https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMC-TV/playlist.m3u8 +#EXTINF:-1 tvg-id="CaliforniaMusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://3.bp.blogspot.com/-Ngn_IHUGV-E/VoGzyGsSlkI/AAAAAAAAAjc/XTspAPwP2TE/s1600/CMC-Music-Channel.png" group-title="Music",California Music Channel (720p) [Not 24/7] +https://cmctv.ios.internapcdn.net/cmctv_vitalstream_com/live_1/CMCU-92/playlist.m3u8 +#EXTINF:-1 tvg-id="CameraSmileTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NG9W4vU.png" group-title="Comedy",Camera Smile TV (480p) +https://playout4multirtmp.tulix.tv/live7/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="CampSpoopy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t3Jsks7.png" group-title="Kids",Camp Spoopy (720p) +https://stream.ads.ottera.tv/playlist.m3u8?network_id=269 +#EXTINF:-1 tvg-id="CanelaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/D7HC79b.png" group-title="",Canela TV (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=65 +#EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8w3N2k3.png" group-title="Local",Capital City Connection Montgomery (360p) [Offline] +https://na-us-se13.secdn.net/pegstream3-live/play/5f0d9ca5-4e85-4c01-a426-9ec8d44c2c9c/playlist.m3u8 +#EXTINF:-1 tvg-id="CaptitalOTBBetting.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.capitalotb.com/wp-content/uploads/2019/09/COTB-Logo.png" group-title="Sports",Captital OTB Betting (720p) [Not 24/7] +https://d2up1hmow19bcd.cloudfront.net/livecf/liveracing/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkArabic.us" tvg-country="MENA" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Cartoon_Network_Arabic_logo.png/693px-Cartoon_Network_Arabic_logo.png" group-title="Kids",Cartoon Network Arabic (1080p) +https://shls-cartoon-net-prod-dub.shahid.net/out/v1/dc4aa87372374325a66be458f29eab0f/index.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkAsia.us" tvg-country="ASIA" tvg-language="English" tvg-logo="https://www.mncvision.id/userfiles/image/channel/channel_47.png" group-title="Kids",Cartoon Network Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Cn/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network India (432p) [Not 24/7] +http://70.39.83.58:8278/cartoonnetworkhindikdin/playlist.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkIndia.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network India (576p) [Offline] +http://103.153.39.34:8000/play/a04k/index.m3u8 +#EXTINF:-1 tvg-id="CartoonNetworkLatinAmerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network Latin America [Timeout] +http://209.91.213.10:8088/play/a00k +#EXTINF:-1 tvg-id="CartoonNetworkVietnam.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://www.lyngsat.com/logo/tv/cc/cartoon_network_global.png" group-title="Kids",Cartoon Network Vietnam (720p) [Geo-blocked] +https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CARTOON-SD-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CatholicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RI9GbLX.jpg" group-title="Religious",Catholic TV (720p) [Not 24/7] +http://catholictvhd-lh.akamaihd.net/i/ctvhd_1@88148/master.m3u8 +#EXTINF:-1 tvg-id="CBNEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Gm4fs9W.png" group-title="Religious",CBN Español (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/iptv2_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/Gm4fs9W.png" group-title="Religious",CBN Español (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/iptv2_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="CBNFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XpS19dt.png" group-title="Religious",CBN Family (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/iptv1_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XpS19dt.png" group-title="Religious",CBN Family (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/iptv1_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] +http://bcliveuniv-lh.akamaihd.net/i/news_1@194050/master.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] +https://bcliveuniv-lh.akamaihd.net/i/news_1@194050/index_3000_av-p.m3u8 +#EXTINF:-1 tvg-id="CBNNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/cbnnews.png" group-title="Religious",CBN News (1080p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/news_1@500579/master.m3u8 +#EXTINF:-1 tvg-id="WFMY.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ps6uQSW.jpg" group-title="Local",CBS 2 Greensboro NC (WFMY) (1080p) +https://livevideo01.wfmynews2.com/hls/live/2016285/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KREM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UANdGqv.jpg" group-title="Local",CBS 2 Spokane WA (KREM) (1080p) +https://livevideo01.krem.com/hls/live/2017156/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (720p) +https://content.uplynk.com/4a09fbea28ef4f32bce095e9eae04bd8.m3u8 +#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (720p) +https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8 +#EXTINF:-1 tvg-id="WWLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BvlV1dl.jpg" group-title="Local",CBS 4 New Orleans LA (WWL-TV) (1080p) +https://livevideo01.wwltv.com/hls/live/2016516/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KFSMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/i0KCLny.jpg" group-title="Local",CBS 5 Ft Smith AR (KFSM-TV) (1080p) +https://livevideo01.5newsonline.com/hls/live/2011653/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KENS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zV8X5Fi.jpg" group-title="Local",CBS 5 San Antonio TX (KENS) (1080p) +https://livevideo01.kens5.com/hls/live/2016281/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WRGBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ByPFQGp.png" group-title="Local",CBS 6 Albany NY (WRGB) (720p) +https://content.uplynk.com/channel/bba3e7da884a49bba96341ecf5128f0f.m3u8 +#EXTINF:-1 tvg-id="WHIO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38ZKuE.png" group-title="Local",CBS 7 Dayton OH (WHIO) [Timeout] +https://svc-lvanvato-cxtv-whio.cmgvideo.com/whio/2596k/index.m3u8 +#EXTINF:-1 tvg-id="KIROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://mediaweb.kirotv.com/photo/2018/09/24/kiro7_header_logo_152x60_13118164_ver1.0.png" group-title="Local",CBS 7 Seattle WA (KIRO-TV) [Timeout] +https://svc-lvanvato-cxtv-kiro.cmgvideo.com/kiro/1864k/index.m3u8 +#EXTINF:-1 tvg-id="KFMBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QJyt4n4.jpg" group-title="Local",CBS 8 San Diego CA (KFMB-TV) (1080p) +https://livevideo01.cbs8.com/hls/live/2014967/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WUSATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ekt1an0.png" group-title="Local",CBS 9 Washington DC (WUSA) (1080p) +https://livevideo01.wusa9.com/hls/live/2015498/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WBNSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Wq4M60P.jpg" group-title="Local",CBS 10 Columbus OH (WBNS-TV) (1080p) +https://livevideo01.10tv.com/hls/live/2013836/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WTSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Plp4dZh.jpg" group-title="Local",CBS 10 Tampa FL (WTSP) (1080p) +https://livevideo01.wtsp.com/hls/live/2015503/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KHOUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aTU1n4l.jpg" group-title="Local",CBS 11 Houston TX (KHOU) (1080p) +https://livevideo01.khou.com/hls/live/2014966/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WTOL.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCpIwNs.jpg" group-title="Local",CBS 11 Toledo OH (WTOL) (1080p) +https://livevideo01.wtol.com/hls/live/2017153/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WPECTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SG7iSaA.png" group-title="Local",CBS 12 West Palm Beach FL (WPEC) (720p) +https://content.uplynk.com/channel/0123b306191a4307a31b9fb573213fd3.m3u8 +#EXTINF:-1 tvg-id="WMAZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FAqyK7J.jpg" group-title="Local",CBS 13 Macon GA (WMAZ-TV) (1080p) +https://livevideo01.13wmaz.com/hls/live/2017376/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WLTX.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nSCGzFC.jpg" group-title="Local",CBS 19 Columbia SC (WLTX) (1080p) +https://livevideo01.wltx.com/hls/live/2017152/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KYTXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DXSPhYX.jpg" group-title="Local",CBS 19 Tyler TX (KYTX) (1080p) +https://livevideo01.cbs19.tv/hls/live/2017377/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WGCLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XuzRQjy.png" group-title="Local",CBS 46 Atlanta GA (WGCL-TV) (720p) [Not 24/7] +https://live.field59.com/wgcl/ngrp:wgcl1_all/playlist.m3u8 +#EXTINF:-1 tvg-id="WJAXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LW3Dfbt.png" group-title="Local",CBS 47 Action News Jacksonville FL (WJAX-TV) (720p) +https://d2eit0bra9qkiw.cloudfront.net/v1/master/77872db67918a151b697b5fbc23151e5765767dc/cmg_PROD_cmg-tv-10050_b9ac3c93-be86-4f7e-82b8-796b7f8bfda3_LE/in/cmg-wjaxtv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="WIVB-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Buffalo NY (WIVB-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_CBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="WWJ-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Detroit MI (WWJ-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WWJ-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Detroit MI (WWJ-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/CBS_Detroit/playlist.m3u8 +#EXTINF:-1 tvg-id="CBSNewsBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",CBS News Baltimore (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsDFW.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",CBS News Dallas Ft Worth (720p) +https://cbsn-dal.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBS News Live (360p) +https://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsLA.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc481cda1d430000948a1b4/colorLogoPNG.png" group-title="Local;News",CBS News Los Angeles (720p) +https://cbsn-la.cbsnstream.cbsnews.com/out/v1/57b6c4534a164accb6b1872b501e0028/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsMiami.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",CBS News Miami (720p) +https://cbsn-mia.cbsnstream.cbsnews.com/out/v1/ac174b7938264d24ae27e56f6584bca0/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsNY.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc9b8223687ff000936ed79/colorLogoPNG.png" group-title="Local;News",CBS News New York (720p) +https://www.cbsnews.com/common/video/cbsn-ny-prod.m3u8 +#EXTINF:-1 tvg-id="KOVR.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60cb6df2b2ad610008cd5bea/colorLogoPNG.png" group-title="Local;News",CBS News Sacramento (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnsac_2/master.m3u8 +#EXTINF:-1 tvg-id="KIRO-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Seattle WA (KIRO-TV1) (480p) +http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="KIRO-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Seattle WA (KIRO-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/geonosis/output/CBS_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.nicepng.com/png/full/443-4431727_cbs-logo-png.png" group-title="Local",CBS Tallahassee FL (WCTV1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WCTVDT.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KTHVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PVINnkR.jpg" group-title="Local",CBS THV11 Little Rock AR (KTHV) (1080p) +https://livevideo01.thv11.com/hls/live/2017154/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN (720p) [Not 24/7] +https://cbsnhls-i.akamaihd.net/hls/live/264710/CBSN_mdialog/prodstream/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN (720p) [Offline] +https://cbsn-us-cedexis.cbsnstream.cbsnews.com/out/v1/55a8648e8f134e82a470f83d562deeca/master.m3u8 +#EXTINF:-1 tvg-id="WJZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",CBSN Baltimore (720p) +https://cbsnews.akamaized.net/hls/live/2020607/cbsnlineup_8/master.m3u8 +#EXTINF:-1 tvg-id="CBSNewsBoston.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",CBSN Boston (720p) +https://cbsn-bos.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 +#EXTINF:-1 tvg-id="WBZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",CBSN Boston MA (720p) [Offline] +https://cbsn-bos-cedexis.cbsnstream.cbsnews.com/out/v1/589d66ec6eb8434c96c28de0370d1326/master.m3u8 +#EXTINF:-1 tvg-id="KTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",CBSN Dallas Ft Worth TX (720p) [Offline] +https://cbsn-dal-cedexis.cbsnstream.cbsnews.com/out/v1/ffa98bbf7d2b4c038c229bd4d9122708/master.m3u8 +#EXTINF:-1 tvg-id="CBSNLiveEvent.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/06/67/USBA370000104_20200915T081312.png" group-title="News",CBSN Live Event (720p) +https://cbsnewshd-lh.akamaihd.net/i/cbsnewsLivePlayer_1@196305/master.m3u8 +#EXTINF:-1 tvg-id="CCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/feFWTb8.jpg" group-title="Local",CC-TV (720p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/charlotte/G0055_002/playlist.m3u8 +#EXTINF:-1 tvg-id="CCXMediaNorthBrooklynParkMN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EOeoqsd.jpg" group-title="Local",CCX Media North Brooklyn Park MN (1080p) +http://156.142.85.152/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="CelebritySceneTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2D1e2bH.png" group-title="",Celebrity Scene TV (720p) +https://playout4multirtmp.tulix.tv/live8/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="CerritosTV3.us" tvg-country="US" tvg-language="English" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/us-cerritos-tv3.jpg" group-title="Local",Cerritos TV3 (360p) [Offline] +https://granicusliveus4-a.akamaihd.net/cerritos/G0010_002/playlist.m3u8 +#EXTINF:-1 tvg-id="WFTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/S3fqmWY.png" group-title="Local",Channel 9 Orlando FL (WFTV) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wftve2-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="CVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VFPid91.png" group-title="Local",Channel 23 Clark Vancouver TV (CVTV) (1080p) [Not 24/7] +https://wowzaprod3-i.akamaihd.net/hls/live/252233/15b8d438/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelFight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cruTxMF.png" group-title="Sports",Channel Fight (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=68 +#EXTINF:-1 tvg-id="Charge.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fuw0hHE.png" group-title="Movies",Charge! (720p) +http://content.uplynk.com/channel/37eb732888614810b512fdd82604244e.m3u8 +#EXTINF:-1 tvg-id="ChargeEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Entertainment",Charge! Tallahassee FL (WTWC-TV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/CHARGE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://live.chdrstatic.com/cbn/index.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://live.chdrstatic.com/cbn/primary/index.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://live.chdrstatic.com/cheddar/primary/index.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) [Offline] +https://content.uplynk.com/channel/4ee18bd581dc4d3b90303e0cb9beeb0f.m3u8 +#EXTINF:-1 tvg-id="ChefChampion.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/15a9pG9.png" group-title="Cooking",Chef Champion (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-chefchampion/mono.m3u8 +#EXTINF:-1 tvg-id="ChefRocShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tn9bRD1.jpg" group-title="Cooking",Chef Roc Show (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-chefrock/mono.m3u8 +#EXTINF:-1 tvg-id="ChiveTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/a-/AN66SAz6Ssqjkt5Zn__8q2-hhZEPzoma1h3_IshrpQ=s900-mo-c-c0xffffffff-rj-k-no" group-title="Outdoor",Chive TV (720p) +https://a.jsrdn.com/broadcast/4df1bf71c1/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PfFJy5E.png" group-title="Religious",Christian Youth Channel (CYC) (1080p) +http://media.smc-host.com:1935/cycnow.com/cyc2/playlist.m3u8 +#EXTINF:-1 tvg-id="ChristianYouthChannelCYC.us" tvg-country="EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/PfFJy5E.png" group-title="Religious",Christian Youth Channel (CYC) (1080p) +http://media3.smc-host.com:1935/cycnow.com/smil:cyc.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Cinemax.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" group-title="Movies",Cinemax [Geo-blocked] +http://23.237.202.43:7283/CINEMAX-FHD/index.m3u8?sn=Ux0Oojow5FkqHQCpMmUNQKUr4Wb&tm=1626349319&un=rommel07 +#EXTINF:-1 tvg-id="CinemaxAsia.us" tvg-country="US" tvg-language="English;Vietnamese" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Movies",Cinemax Asia (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +https://livecdn.fptplay.net/hda1/cinemax_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CinemaxEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/ph/Cinemax.ph.png" group-title="Movies",Cinemax East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-cinemax.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CinePride.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://image.roku.com/developer_channels/prod/b44cdb31be546ae7551f35354772e943da2cb179c83ba910122623ffd00bd4a5.png" group-title="Lifestyle",CinePride (720p) +https://content.uplynk.com/channel/e54d7e92a0154d67ae0770c9d4210e77.m3u8 +#EXTINF:-1 tvg-id="CircleEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/circle-us.png" group-title="Entertainment",Circle Tallahassee FL (WCTV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/ION.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hNdQFtK.jpg" group-title="Legislative",City of Champaign IL (CGTV) (234p) [Offline] +https://reflect-live-champaign.cablecast.tv/live/CELL-296k-234p/CELL-296k-234p.m3u8 +#EXTINF:-1 tvg-id="Civilized.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ge5SMLV.png" group-title="Lifestyle",Civilized. (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2531932c8368bdbfd87c/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicArtsShowcase.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2LJzdu6.png" group-title="Classic",Classic Arts Showcase (720p) [Offline] +https://d3s1xaoyhrialn.cloudfront.net/CAS/index.m3u8 +#EXTINF:-1 tvg-id="ClassicCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tC4AePW.png" group-title="Classic",Classic Cinema (240p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-classiccinema/mono.m3u8 +#EXTINF:-1 tvg-id="ClassicMoviesChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pltVS6t.png" group-title="Classic",Classic Movies Channel (480p) +https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/playlist.m3u8 +#EXTINF:-1 tvg-id="ClassicTV4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU0OTVf/NostTV_ClassicTV4U.png" group-title="Classic",Classic TV 4U (480p) +https://broadcast.mytvtogo.net/classictv4u/classictv4u/playlist.m3u8 +#EXTINF:-1 tvg-id="CloudflareTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://blog-cloudflare-com-assets.storage.googleapis.com/2020/06/twitter-1-1.png" group-title="Education",Cloudflare TV (720p) +https://cloudflare.tv/hls/live.m3u8 +#EXTINF:-1 tvg-id="CNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnbc-prime-neon-us.png" group-title="News",CNBC (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/CNBC/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCArabiya.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://i.imgur.com/a6QmjRT.png" group-title="Business",CNBC Arabiya (1080p) +https://hiplayer.hibridcdn.net/t/cnbcarabia-live.m3u8 +#EXTINF:-1 tvg-id="CNBCEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/53EgUZN.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Business",CNBC Europe (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s65/index.m3u8 +#EXTINF:-1 tvg-id="CNBCIndonesia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/53EgUZN.png" group-title="Business",CNBC Indonesia (720p) +https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CNBCTV18.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="https://i.imgur.com/3yumcV3.jpg" group-title="Business",CNBC TV 18 (504p) +https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8 +#EXTINF:-1 tvg-id="CNN.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cnn.png" group-title="News",CNN (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CNN.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/cnn.png" group-title="News",CNN (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/CNN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNBrasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://i.imgur.com/JXb5l9K.png" group-title="News",CNN Brasil (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCvdwhh_fDyWccR42-rReZLw/live +#EXTINF:-1 tvg-id="CNNChile.us" tvg-country="CL" tvg-language="Spanish" tvg-logo="https://i.imgur.com/tNxumYO.png" group-title="News",CNN Chile (720p) [Timeout] +https://unlimited1-cl-movistar.dps.live/cnn/cnn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/zeg2ZGW.jpg" group-title="News",CNN en Español [Timeout] +http://209.91.213.10:8088/play/a014 +#EXTINF:-1 tvg-id="CNNPhilippines.us" tvg-country="PH" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/CNN_Philippines_Logo.svg/220px-CNN_Philippines_Logo.svg.png" group-title="News",CNN Philippines (720p) [Not 24/7] +https://streaming.cnnphilippines.com/live/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNTurk.us" tvg-country="TR" tvg-language="Turkish" tvg-logo="http://haber.sol.org.tr/sites/default/files/styles/newsimagestyle_615x410/public/20110201141238cnn_turk_logosu.png" group-title="News",CNN Türk (480p) [Not 24/7] +http://163.172.39.215:25461/line/C4@!a3a1@!w72A/129 +#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (720p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (480p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_2_1964000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] +http://stream.tvtap.live:8081/live/us-cnn.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_3_1464000.m3u8 +#EXTINF:-1 tvg-id="CNNUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/cnn-us.png" group-title="News",CNN USA (360p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586495/cnngo/cnn_slate/VIDEO_4_1064000.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) +https://comedydynamics-wurl.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Comet.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/5/53/Comet_TV_Logo.png" group-title="Entertainment",Comet (720p) +http://content.uplynk.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) +https://d2rir1vttzppfq.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="CookingPanda.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z6pDpzl.png" group-title="Cooking",Cooking Panda (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=46 +#EXTINF:-1 tvg-id="CornerstoneTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cV8FKR9.png" group-title="Religious",Cornerstone TV (640p) +http://cdn.media9.truegod.tv/ctvnlive/smil:ctvn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60526b849849524498245b78" group-title="Documentary",Court TV (1080p) +https://cdn-katz-networks-01.vos360.video/Content/HLS/Live/channel(courttv)/index.m3u8 +#EXTINF:-1 tvg-id="CourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60526b849849524498245b78" group-title="Documentary",Court TV (720p) +https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8 +#EXTINF:-1 tvg-id="CourtTVMystery.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/phillybtv/logos/20530-53728.png" group-title="General",Court TV Mystery (WTXL-TV4) (480p) +https://5e6cea03e25b6.streamlock.net/live/QVC.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimePlusInvestigationAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/CrimeInvestigation.id.png" group-title="Entertainment",Crime + Investigation Asia [Offline] +http://203.154.243.31:15001 +#EXTINF:-1 tvg-id="CSatTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cigpFzt.png" group-title="Religious",CSat TV (1080p) [Not 24/7] +http://media.smc-host.com:1935/csat.tv/smil:csat.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CTNCourtFeed.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/He6Ugfn.jpg" group-title="Local",CT-N Court Feed (360p) [Not 24/7] +http://video.ct-n.com/live/ctnSupreme/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="CTNLiveStream2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/He6Ugfn.jpg" group-title="Local",CT-N Live Stream 2 (360p) [Not 24/7] +http://video.ct-n.com/live/web2stream/playlist.m3u8 +#EXTINF:-1 tvg-id="CTNTVConneticut.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pb0TFQt.jpg" group-title="Local",CT-N TV Conneticut (720p) [Not 24/7] +http://video.ct-n.com/live/ctnstream/playlist_DVR.m3u8 +#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (404p) +http://admin.ottdemo.rrsat.com:1935/ctntv/ctntv2/playlist.m3u8 +#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (360p) +http://rtmp.ottdemo.rrsat.com/ctntv/ctntvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="CTN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bj37ZMY.png" group-title="Religious",CTN (360p) [Not 24/7] +https://rrsatrtmp.tulix.tv/ctntv/ctntvmulti.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="WFGCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UtaBUfH.png" group-title="Religious",CTN 61 Riviera Beach FL (WFGC) (720p) [Not 24/7] +http://hls1.livestreamingcdn.com:1935/livecdn631/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="CWSeed.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZrtfPb.png" group-title="Entertainment",CW Seed (432p) [Geo-blocked] +https://cwseedlive.cwtv.com/ingest/playlist.m3u8 +#EXTINF:-1 tvg-id="CycleWorld.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RZE3Pwf.png" group-title="Auto",Cycle World (720p) [Offline] +https://a.jsrdn.com/broadcast/3e5befe5dd/+0000/c.m3u8 +#EXTINF:-1 tvg-id="DanceStarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xLqyZQQ.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" group-title="Music",DanceStar TV (720p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +https://vcndstv.teleosmedia.com/stream/dstv/dstv/playlist.m3u8 +#EXTINF:-1 tvg-id="DCCouncilChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZHST0G2.png" group-title="Legislative",DC Council Channel (1080p) +https://video.oct.dc.gov/out/u/15_12.m3u8 +#EXTINF:-1 tvg-id="DCEagleCam.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VPTRThD.png" group-title="Outdoor",DC Eagle Cam (720p) +http://americaneagle-lh.akamaihd.net/i/AEF_DC1@31049/master.m3u8 +#EXTINF:-1 tvg-id="DigiTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.watchdigitv.com/themes/custom/digitheme/images/digi_assets/digitv_logo/digi-logo-header-transparent.svg" group-title="General",Digi TV (WFTY-DT6) (720p) +https://amg01443-netxholdingsllc-digitv200-ono-zzfy4.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelAsia.us" tvg-country="ASIA" tvg-language="English" tvg-logo="" group-title="Kids",Disney Channel Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Disneyxd/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelEspana.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Disney_Channel_logo_%282014%29.svg/792px-Disney_Channel_logo_%282014%29.svg.png" group-title="Kids",Disney Channel España (1080p) [Timeout] +http://5.255.90.184:2004/play/a006/index.m3u8 +#EXTINF:-1 tvg-id="DisneyChannelJapan.us" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://i.imgur.com/H2O9F2E.png" group-title="Entertainment",Disney Channel Japan (720p) [Not 24/7] +https://redlabmcdn.s.llnwi.net/jp04/bs13hd/index.mpd +#EXTINF:-1 tvg-id="DisneyChannelPortugal.es" tvg-country="PT" tvg-language="Portuguese;English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Disney_Channel_logo_%282014%29.svg/792px-Disney_Channel_logo_%282014%29.svg.png" group-title="Kids",Disney Channel Portugal [Offline] +http://185.236.229.21:9981/play/a056 +#EXTINF:-1 tvg-id="DisneyJuniorAsia.us" tvg-country="ASIA" tvg-language="Arabic" tvg-logo="" group-title="Kids",Disney Junior Asia (720p) [Timeout] +http://198.16.106.62:8278/streams/d/Disneyjr/playlist.m3u8 +#EXTINF:-1 tvg-id="DisneyJuniorLatinoamerica.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="" group-title="Kids",Disney Junior Latinoamérica [Timeout] +http://209.91.213.10:8088/play/a00n +#EXTINF:-1 tvg-id="DisneyJuniorPortugal.es" tvg-country="PT" tvg-language="Portuguese;English" tvg-logo="" group-title="Kids",Disney Junior Portugal [Offline] +http://185.236.229.21:9981/play/a03q +#EXTINF:-1 tvg-id="DistrictofColumbiaNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GcSXd5s.png" group-title="Legislative",District of Columbia Network (DCN) (1080p) +https://video.oct.dc.gov/out/u/DCN.m3u8 +#EXTINF:-1 tvg-id="DittyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p5rREUo.png" group-title="",Ditty TV (720p) [Not 24/7] +https://azroe0x-lh.akamaihd.net/i/test_1@775856/master.m3u8 +#EXTINF:-1 tvg-id="DivineVision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wjCFvLR.png" group-title="Religious",Divine Vision (480p) [Not 24/7] +https://divineplayout-us2.tulix.tv/live/Stream1/.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] +https://dovenow.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DrGeneScott.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FppLahc.jpg" group-title="Religious",Dr. Gene Scott (480p) +https://wescottcchls-lh.akamaihd.net/i/wcc_wowlivehls@24607/master.m3u8 +#EXTINF:-1 tvg-id="dreamforce.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://dreamforcebtl.online/wp-content/uploads/2021/07/dreamforce-radio-logo-final-e1625783518759-332x191.png" group-title="General",DreamforceBTL (Rhino Radio TV | RRTV) (720p) [Offline] +https://stmv1.panelzcast.com/dreamforcebtl/dreamforcebtl/playlist.m3u8 +#EXTINF:-1 tvg-id="DrinkTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZAqKTkp.png" group-title="Entertainment",Drink TV (720p) [Offline] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=62 +#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) +https://a.jsrdn.com/broadcast/e29bdbbbf3/+0000/c.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] +https://59d39900ebfb8.streamlock.net/molaughtertv/molaughtertv/playlist.m3u8 +#EXTINF:-1 tvg-id="Ecuavisa.us" tvg-country="US" tvg-language="English" tvg-logo="http://2.bp.blogspot.com/-hBXrxjYak44/UwzxFQPotaI/AAAAAAAABDU/xxrf0lEwffk/w1200-h630-p-k-no-nu/ecuavisa.png" group-title="",Ecuavisa (720p) +https://livestreamcdn.net:444/Alientoenvivo/Alientoenvivo.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElConflecto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/7mMRKee.png" group-title="Series",El Conflecto (480p) +https://content.uplynk.com/channel/c56a6c94a53843c79d3eca411d39f96f.m3u8 +#EXTINF:-1 tvg-id="ElMaqar.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",El Maqar (1080p) +http://135.181.79.179/ElmaqarTVHD/playlist.m3u8?token=mobileuser +#EXTINF:-1 tvg-id="ElMaqar.us" tvg-country="US" tvg-language="Arabic" tvg-logo="" group-title="Religious",El Maqar (1080p) [Offline] +rtmp://elmaqar.info:1935/icopts/elKarous +#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/APhSi1Y.jpg" group-title="Religious",El Sembrador Nueva Evangelización (ESNE) (720p) +https://zypelive-lh.akamaihd.net/i/default_1@44045/master.m3u8 +#EXTINF:-1 tvg-id="ElSembradorNuevaEvangelizacionESNE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/APhSi1Y.jpg" group-title="Religious",El Sembrador Nueva Evangelización (ESNE) (720p) +https://zypelive-lh.akamaihd.net/i/default_1@745572/master.m3u8 +#EXTINF:-1 tvg-id="ElbesharaGTV.us" tvg-country="US;EG" tvg-language="Arabic" tvg-logo="https://i.imgur.com/wup8DKR.jpg" group-title="Religious",Elbeshara GTV (1080p) [Not 24/7] +http://media3.smc-host.com:1935/elbesharagtv.com/gtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjgzOTI0NjRf/ElectricNow_300x300.png" group-title="Entertainment",Electric Now (1080p) [Not 24/7] +https://ov.ottera.tv/live/master.m3u8?channel=elec_en +#EXTINF:-1 tvg-id="EntertainmentTonight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TXamgdB.png" group-title="News",Entertainment Tonight (1080p) +https://etlive-mediapackage-fastly.cbsaavideo.com/dvr/manifest.m3u8 +#EXTINF:-1 tvg-id="Entrepreneur.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Wb4WPPK.jpg" group-title="Series",Entrepreneur (720p) +https://a.jsrdn.com/broadcast/7582ed85f7/+0000/c.m3u8 +#EXTINF:-1 tvg-id="EscambiaCountyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SKfoci2.png" group-title="Legislative",Escambia County TV (720p) [Offline] +https://stream.swagit.com/live-edge/escambiacountyfl/live-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="EsperanzaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/U5vTVsL.jpg" group-title="Religious",Esperanza TV (480p) [Not 24/7] +http://k3.usastreams.com:1935/etvSD/etvSD/playlist.m3u8 +#EXTINF:-1 tvg-id="ESR24x7eSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605d2f4c46818164091e1fd4" group-title="Entertainment",ESR 24x7 eSports Network (1080p) +https://eyeonesports.com/ES2RA-628g.m3u8 +#EXTINF:-1 tvg-id="EverydayHeroes.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Iam3ol3.png" group-title="",Everyday Heroes (576p) +https://a.jsrdn.com/broadcast/7b1451fa52/+0000/c.m3u8 +#EXTINF:-1 tvg-id="EWTNAfricaAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Africa-Asia (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-18/ngrp:yjnk-afxc_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNAsiaPacific.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Asia-Pacific (720p) [Not 24/7] +https://cdn3.wowza.com/1/QmVNUVhTNTZSS3Uz/YWQ0aHpi/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNAsiaPacific.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Asia-Pacific (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-12/ngrp:q6ms-g1u9_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (720p) [Not 24/7] +https://cdn3.wowza.com/1/YW5wSWZiRGd2eFlU/bGV0aVBq/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (1080p) [Offline] +https://live-c348a30.rmbl.ws/slot-34/ngrp:1d1d-wqrm_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNCanada.us" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Canada (720p) [Offline] +https://dyo5cp96eopax.cloudfront.net/p/CANE.m3u8 +#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_ewtn_m.png" group-title="Religious",EWTN el Canal Católico (720p) [Not 24/7] +https://cdn3.wowza.com/1/SmVrQmZCUXZhVDgz/b3J3MFJv/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNelCanalCatolico.us" tvg-country="ES;HISPAM" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/cl_ewtn_m.png" group-title="Religious",EWTN el Canal Católico (1080p) [Timeout] +https://live-fd164e1.rmbl.ws/slot-21/ngrp:ajdj-xq6n_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Europe (480p) [Not 24/7] +https://cdn3.wowza.com/1/T2NXeHF6UGlGbHY3/WFluRldQ/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN Europe (1080p) [Offline] +https://live-fd164e1.rmbl.ws/slot-27/ngrp:ipy0-yeb3_all/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNkatholischesTV.us" tvg-country="DE" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/ewtnkatholischestv.png" group-title="Religious",EWTN katholisches TV [Not 24/7] +https://cdn3.wowza.com/1/NWFLbEVOVjNsQWhP/YnpVbld5/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="EWTNUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQyNTQ1MzNf/EWTN_450x450.png" group-title="Religious",EWTN US (720p) [Offline] +https://d3kr0d4mfjxpbv.cloudfront.net/p/SPAS.m3u8 +#EXTINF:-1 tvg-id="ExternalOttera.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",External Ottera (720p) +https://otteravision-tg.ottera.tv/live/master.m3u8?channel=tg_tg_us +#EXTINF:-1 tvg-id="ExtremaTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.unored247.com/bill/templates/smartlinehost/html/images/extrema_client_logo.png" group-title="",Extrema TV (720p) +http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8 +#EXTINF:-1 tvg-id="EYE95America.us" tvg-country="US" tvg-language="Urdu" tvg-logo="https://i.imgur.com/0uRtaTf.jpg" group-title="News",EYE95 America (1080p) [Not 24/7] +https://cdn20.liveonlineservices.com/hls/eye95tv.m3u8 +#EXTINF:-1 tvg-id="FairfaxPublicAccess.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.fcac.org/sites/all/themes/fcac_base/images/logo-icon.png" group-title="Legislative",Fairfax Public Access (544p) [Not 24/7] +https://cs.ebmcdn.net/eastbay-live-hs-1/fairfax-pull/mp4:fairfax.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FaithLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/profile_images/1131290789/fnlLogo_400x400.png" group-title="Religious",Faith & Life TV (720p) [Offline] +https://na-all9.secdn.net/logos-channel/live/faithlifetv/playlist.m3u8 +#EXTINF:-1 tvg-id="FashionBoxHD.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/9bH6PBu.png" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Lifestyle",Fast&Fun Box (Russian) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s79/index.m3u8 +#EXTINF:-1 tvg-id="FastWay.us" tvg-country="US;IN" tvg-language="English" tvg-logo="https://i.imgur.com/cBkYHDZ.png" group-title="General",FastWay (576p) [Offline] +http://fastway.ddns.net:6421/fastway/live10/index.m3u8 +#EXTINF:-1 tvg-id="FieldStream.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9NsnVCJ.png" group-title="Outdoor",Field & Stream (720p) [Offline] +https://a.jsrdn.com/broadcast/7536b84786/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FIGHTSPORTS.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",FIGHT SPORTS (1080p) +https://shls-fight-sports-ak.akamaized.net/out/v1/ee7e6475b12e484bbfa5c31461ad4306/index.m3u8 +#EXTINF:-1 tvg-id="FightBoxHD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i0.pngocean.com/files/812/462/345/filmbox-hd-high-definition-television-set-top-box-broadcasting-fightbox.jpg" user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148" group-title="Sports",FightBox HD (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 +http://ott-cdn.ucom.am/s86/index.m3u8 +#EXTINF:-1 tvg-id="FightingSpirit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OeVsflz.png" group-title="",Fighting Spirit (720p) +https://a.jsrdn.com/broadcast/47cff5378f/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FireplaceLounge.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1VZZCZU.jpg" group-title="Relax",Fireplace Lounge (720p) +https://a.jsrdn.com/broadcast/aee08372e5/+0000/c.m3u8 +#EXTINF:-1 tvg-id="FishTank.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/L5JDAkh.png" group-title="Relax",Fish Tank (720p) +https://a.jsrdn.com/broadcast/8b43a16c1e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Fite.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/21QWq2v0DGL.png" group-title="Sports",Fite (720p) [Not 24/7] +https://cdn-cf.fite.tv/linear/fite247/playlist.m3u8 +#EXTINF:-1 tvg-id="FolkTVEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hV46zMX.png" group-title="Classic",Folk TV East (480p) [Not 24/7] +https://584b0aa350b92.streamlock.net/folk-tv/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KTVI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Hednfc9.png" group-title="Local",Fox 2 St. Louis MO (KTVI) (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/united-states/ktvi-tv +#EXTINF:-1 tvg-id="KMSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WBgiaiB.jpg" group-title="Local",Fox 9 Minneapolis-St. Paul MN (KMSP) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/fox-minneapolis +#EXTINF:-1 tvg-id="KXVATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TSTAkkq.jpg" group-title="Local",Fox 15 West Texas Abilene TX (KXVA) (1080p) +https://livevideo01.myfoxzone.com/hls/live/2017381/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KOKITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pRKEMb1.jpg" group-title="Local",Fox 23 Tulsa OK (KOKI-TV) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-kokitv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="WTGSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/99/FOX28WTGS.PNG" group-title="Local",Fox 28 Savannah GA (WTGS) (144p) +https://content.uplynk.com/channel/e56ba52a1b9d45ad8c8a033fd83fe480.m3u8 +#EXTINF:-1 tvg-id="WFLDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lf5sLNn.png" group-title="Local",Fox 32 Chicago IL (WFLD) (720p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/fox-chicago +#EXTINF:-1 tvg-id="WPMTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kRaIhOa.jpg" group-title="Local",Fox 43 Harrisburg PA (WPMT) (1080p) +https://livevideo01.fox43.com/hls/live/2011656/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WZDXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2HWx7Av.jpg" group-title="Local",Fox 54.1 Huntsville AL (WZDX) (1080p) +https://livevideo01.rocketcitynow.com/hls/live/2011659/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WTICTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6QlmS1C.jpg" group-title="Local",Fox 61 Hartford CT (WTIC-TV) (1080p) +https://livevideo01.fox61.com/hls/live/2011658/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WFXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Boston MA (WFXT1) (720p) [Not 24/7] +http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WFXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Boston MA (WFXT1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/FOX_Boston/playlist.m3u8 +#EXTINF:-1 tvg-id="WUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Buffalo NY (WUTV1) (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_FOXHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="FoxBusiness.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/61wD4dV.png" group-title="Business",Fox Business [Geo-blocked] +http://199.66.95.242/1/1172/index.m3u8?token=test +#EXTINF:-1 tvg-id="FoxCrimeAdria.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LCDcM0F.png" group-title="",Fox Crime Adria [Offline] +https://cdn1.mobiletv.bg/T10/fox_crime/fox_crime_794613_850k.m3u8 +#EXTINF:-1 tvg-id="FoxGreece.us" tvg-country="GR" tvg-language="Greek" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="General",Fox Greece (240p) [Not 24/7] +http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxMoviesAsia.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://i.imgur.com/vs51MBW.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Fox Movies Asia (Thai) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_FoxMoviesHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (720p) +http://trn03.tulix.tv/AsEAeOtIxz/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (480p) +http://encodercdn1.frontline.ca/encoder181/output/FOX_News/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/us/FoxNews.us.png" group-title="News",Fox News Channel (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/FOX_News_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsRadio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5SATrd.png" group-title="News",Fox News Radio (720p) +https://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8 +#EXTINF:-1 tvg-id="WUHF.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Rochester NY (WUHF-DT1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/FOX_Rochester_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/992gw0d.png" group-title="Movies",Fox Russia (576p) [Not 24/7] +http://188.40.68.167/russia/fox_russia_sd/playlist.m3u8 +#EXTINF:-1 tvg-id="KCPQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Seattle WA (KCPQ1) (720p) [Offline] +http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KCPQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Seattle WA (KCPQ1) (480p) [Offline] +http://encodercdn1.frontline.ca/geonosis/output/FOX_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="KAYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Spokane WA (KAYU-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KAYUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",FOX Spokane WA (KAYU-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/FOX_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="WTWC-TV2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/FOX_wordmark-red.svg/320px-FOX_wordmark-red.svg.png" group-title="Local",Fox Tallahassee FL (WTWC-TV2) (720p) +https://5e6cea03e25b6.streamlock.net/live/WTWC-FX.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxThai.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.we-play.tv//uploads/posters/-poster1602704474.jpeg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Fox Thai (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_FoxThai_TH_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) +https://247wlive.foxweather.com/stream/index.m3u8 +#EXTINF:-1 tvg-id="FreeSpeechTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ixp9SLn.png" group-title="News",Free Speech TV (480p) [Offline] +https://edge.free-speech-tv-live.top.comcast.net/out/u/fstv.m3u8 +#EXTINF:-1 tvg-id="FrightFlix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/rgNQYAl.png" group-title="Movies",FrightFlix (720p) +https://content.uplynk.com/channel/4b3fda1ff2c24556bc2c6034307d117d.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="AU" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7fueltv.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTUzMzFf/FuelTV_720x720.png" group-title="Sports",Fuel TV (1080p) [Offline] +https://stream.ads.ottera.tv/playlist.m3u8?network_id=516 +#EXTINF:-1 tvg-id="FunRoads.us" tvg-country="US" tvg-language="English" tvg-logo="https://funroads.tv/wp-content/uploads/fun-roads-header-horizontal-1.png" group-title="Travel",Fun Roads (720p) +http://104.143.4.5:2080/funroads.m3u8 +#EXTINF:-1 tvg-id="FXPeru.us" tvg-country="PE" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/E32ISMV.png" group-title="Entertainment",FX Peru [Timeout] +http://209.91.213.10:8088/play/a01z +#EXTINF:-1 tvg-id="GalvestonCountyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://img.new.livestream.com/accounts/000000000141794a/1769dc58-4a38-4815-9cb7-feb1140db5ec_170x170.png" group-title="Local",Galveston County TV (720p) [Not 24/7] +https://stream.swagit.com/live-edge/galvestontx/smil:hd-16x9-1-b/playlist.m3u8 +#EXTINF:-1 tvg-id="GalxyTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oPnzAPC.png" group-title="",Galxy TV (720p) +https://content.uplynk.com/channel/f467430e4a8e49a59ff3183cf51092b2.m3u8 +#EXTINF:-1 tvg-id="GanjeHozourTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHZGx5L.png" group-title="",Ganj e Hozour TV (720p) +http://topfi.ios.internapcdn.net/topfi/live_1/Test/Test.m3u8 +#EXTINF:-1 tvg-id="GenesisTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i2.wp.com/alfamedianetwork.com/wp-content/uploads/2018/08/genesistelevisionlogo.png" group-title="Religious",Genesis TV (720p) [Not 24/7] +http://201.144.184.98:1935/genesis/smil:television.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Glendale11AZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Zxb1Xyj.jpg" group-title="Local",Glendale 11 AZ (360p) +https://stream.swagit.com/live-edge/glendaleaz/smil:std-4x3-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="GlobalFashionChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/s4eGYEP.jpg" group-title="Lifestyle",Global Fashion Channel (1080p) +https://vcngfcssai.teleosmedia.com/linear/globalfashionchannel/globalfashionchannel/playlist.m3u8 +#EXTINF:-1 tvg-id="GoldenTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kAYiaJS.png" group-title="Classic",Golden TV (240p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-goldentv/mono.m3u8 +#EXTINF:-1 tvg-id="GoodLife45.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t9xHfSV.png" group-title="Religious",GoodLife 45 (720p) [Not 24/7] +http://1-fss29-s0.streamhoster.com/lv_goodlife45f1/broadcast1/playlist.m3u8 +#EXTINF:-1 tvg-id="GospelTruthTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7vQrPvk.png" group-title="Religious",Gospel Truth TV [Timeout] +https://bstna.tulix.tv/live/bs_2m/index.m3u8 +#EXTINF:-1 tvg-id="WZRACD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/biG4n2a.jpg" group-title="Entertainment",Greek Voice Live 48 Tampa Bay FL (WZRA-CD1) (480p) +http://wpso.com:1936/hls/wzra.m3u8 +#EXTINF:-1 tvg-id="GreenbeltTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uxUqIVT.png" group-title="",Greenbelt TV (480p) +https://t07113a-lh.akamaihd.net/i/t07113a_1@756729/master.m3u8 +#EXTINF:-1 tvg-id="GreensboroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wHb9BLd.png" group-title="Local",Greensboro TV [Offline] +https://granicusliveus4-a.akamaihd.net/greensboro/G0197_003/chunklist.m3u8 +#EXTINF:-1 tvg-id="GritEST.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.nep.net/images/channels/GRIT.png" group-title="Classic",Grit Tallahassee FL (WTXL-TV3) (480p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/GRIT.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="grvty.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/6065639a7ec4e2633f0c7d83" group-title="Sports",grvty (1080p) +https://d37j5jg7ob6kji.cloudfront.net/index.m3u8 +#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="US;AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/0lJwdDH.jpg" group-title="General",GünAz TV (720p) [Not 24/7] +http://gtv.live.cdn.bitgravity.com/gtv/live/feed03 +#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="AZ" tvg-language="Azerbaijani" tvg-logo="https://upload.wikimedia.org/wikipedia/az/a/a3/G%C3%BCnAz_TV.png" group-title="General",GünAz TV (720p) [Not 24/7] +https://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed03/playlist.m3u8 +#EXTINF:-1 tvg-id="GunAzTV.us" tvg-country="US;AZ" tvg-language="Azerbaijani" tvg-logo="https://i.imgur.com/0lJwdDH.jpg" group-title="General",GünAz TV (480p) [Offline] +rtsp://gtv.live-s.cdn.bitgravity.com/cdn-live/_definst_/gtv/live/feed02?nc=1 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (1080p) +https://d3cajslujfq92p.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] +https://a.jsrdn.com/broadcast/ebf95254ca/+0000/c.m3u8 +#EXTINF:-1 tvg-id="H2.us" tvg-country="TH" tvg-language="Thai" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-history2.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Documentary",H2 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_H2HD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Factory TV (1080p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/e529407a-cb61-45ce-a9ad-94f0ad5e0ad9.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonRacingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Racing TV (720p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/de245a96-516c-413d-81e9-419c05bbc6a7.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonRidesTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson Rides TV (1080p) [Not 24/7] +https://hdtv.prod2.ioio.tv/broker/play/d4b0111a-3dcb-46fb-b2bb-1c27eca5df35.m3u8 +#EXTINF:-1 tvg-id="HarleyDavidsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQOp8Ft.png" group-title="Auto",Harley Davidson TV (1080p) [Offline] +https://hdtv.prod2.ioio.tv/broker/play/cb4086ca-daba-42f5-8acf-27ee93fee0e8.m3u8 +#EXTINF:-1 tvg-id="WVITTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3czIO1P.png" group-title="Local",Hartford WVIT 30 News (720p) [Offline] +http://wvitlive-f.akamaihd.net/i/wvitb2_1@71164/master.m3u8 +#EXTINF:-1 tvg-id="HBOFamilyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOFamily.us.png" group-title="Family",HBO Family East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/FAMILY/index.m3u8 +#EXTINF:-1 tvg-id="HBOFamilyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOFamily.us.png" group-title="Family",HBO Family East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/FAMILY/index.m3u8 +#EXTINF:-1 tvg-id="HBOHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/HBOHits.id.png" group-title="",HBO Hits (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/HITS/index.m3u8 +#EXTINF:-1 tvg-id="HBOHits.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/HBOHits.id.png" group-title="",HBO Hits (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/HITS/index.m3u8 +#EXTINF:-1 tvg-id="HBOMalaysia.us" tvg-country="MY" tvg-language="English" tvg-logo="https://static.epg.best/us/HBO.us.png" group-title="Movies",HBO Malaysia (720p) [Offline] +http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8 +#EXTINF:-1 tvg-id="HBOSignatureEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOSignature.us.png" group-title="",HBO Signature East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/main/SIG/index.m3u8 +#EXTINF:-1 tvg-id="HBOSignatureEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/us/HBOSignature.us.png" group-title="",HBO Signature East (1080p) [Offline] +https://liveorigin01.hbogoasia.com:8443/origin/live/SIG/index.m3u8 +#EXTINF:-1 tvg-id="WTLH.us" tvg-country="US" tvg-language="English" tvg-logo="https://sc.dish.com/shared/images/station-logos/HERIC.png" group-title="Classic",Heroes & Icons Tallahassee FL (WTLH1) (720p) +https://5e6cea03e25b6.streamlock.net/live/HI.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HighTimes.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TaeeQnn.png" group-title="Entertainment",High Times (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2503932c8368bdbfd875/playlist.m3u8 +#EXTINF:-1 tvg-id="HighVision.us" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Music",High Vision (1080p) [Not 24/7] +https://streamer1.connectto.com/HIGHVISION_WEB_1205/tracks-v1a1/mono.m3u8 +#EXTINF:-1 tvg-id="History.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/history-channel-us.png" group-title="Education",History (540p) [Not 24/7] +http://s1.mysportz.tv:2082/history/playlist.m3u8 +#EXTINF:-1 tvg-id="HistoryAsia.us" tvg-country="TH" tvg-language="Thai" tvg-logo="http://i1.kym-cdn.com/entries/icons/original/000/019/322/photo.jpg" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Documentary",History Asia (Thai) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_HISTORYHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="HistoryEast.us" tvg-country="US" tvg-language="English" tvg-logo="http://i1.kym-cdn.com/entries/icons/original/000/019/322/photo.jpg" group-title="Documentary",History East (720p) [Not 24/7] +https://bk7l2w4nlx53-hls-live.5centscdn.com/HISTORY/961ac1c875f5884f31bdd177365ef1e3.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HLN.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/ia9B0dcvykqfeoPpckovKdWyc7DuwlaejOKha2f6-oNfVdUdkXw4dWBIPUArMEqNljg5uvL6AiU" group-title="News",HLN (720p) [Geo-blocked] +https://turnerlive.warnermediacdn.com/hls/live/586496/cnngo/hln/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="HmongTVNetwork.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/yfGvM3K.png" group-title="",Hmong TV Network (720p) +https://livefta.malimarcdn.com/ftaedge00/cvabroadcasting.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vcrDETL.png" group-title="Religious",Holly Wire (720p) [Offline] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=141 +#EXTINF:-1 tvg-id="HonorTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/caGRikb.png" group-title="Classic",Honor TV (720p) +https://a.jsrdn.com/broadcast/d5b48/+0000/c.m3u8 +#EXTINF:-1 tvg-id="HopeChannelAfrica.us" tvg-country="NG" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Africa [Offline] +http://93.152.174.144:4000/play/hopechannel/index.m3u8 +#EXTINF:-1 tvg-id="HopeChannelInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel International (1080p) [Geo-blocked] +https://hcintlinc.mmdlive.lldns.net/hcintlinc/60f14a7fec64454e90712421a46ac6f1/manifest.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (720p) +http://media1.adventist.no:1935/live/hope1/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (540p) +http://media1.adventist.no:1935/live/hope2/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelNorge.us" tvg-country="NO" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Norge (540p) +http://media1.adventist.no:1935/live/hope3/playlist.m3u8 +#EXTINF:-1 tvg-id="HopeChannelPhilippines.us" tvg-country="PH" tvg-language="English" tvg-logo="https://i.imgur.com/pLeCUEV.png" group-title="Religious",Hope Channel Philippines (576p) [Not 24/7] +https://hcfilipino.mmdlive.lldns.net/hcfilipino/f6e775755f2647159e0adefe01a44a0e/manifest.m3u8 +#EXTINF:-1 tvg-id="HorizonArmenian.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/GVUIJiD.png" group-title="",Horizon Armenian (1080p) +http://5.254.76.34:17070/C441/index.m3u8?token=kdsdkwy453wrRq29IIIo +#EXTINF:-1 tvg-id="HorizonArmenian.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/GVUIJiD.png" group-title="",Horizon Armenian (1080p) +http://5.254.76.34:17070/C441/mono.m3u8?token=kdsdkwy453wrRq29IIIo +#EXTINF:-1 tvg-id="HorizonSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sjOIOkK.png" group-title="Sports",Horizon Sports (720p) [Offline] +https://a.jsrdn.com/broadcast/20dc4269f3/+0000/c.m3u8 +#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) +https://html5-lh.akamaihd.net/i/html5_01@182967/master.m3u8 +#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) +https://lshsn1usott-lh.akamaihd.net/i/lshsn1usott_01@838842/master.m3u8 +#EXTINF:-1 tvg-id="HSN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://live-tv-channels.org/pt-data/uploads/logo/us-hsn-2.jpg" group-title="Shop",HSN 2 (720p) [Not 24/7] +https://hsn2html5-lh.akamaihd.net/i/hsn2html5_01@13178/master.m3u8 +#EXTINF:-1 tvg-id="HTV1HoustonTelevision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zvj1boM.jpg" group-title="Local",HTV 1 Houston Television (720p) +https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-a/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV2HoustonTelevision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zvj1boM.jpg" group-title="Local",HTV 2 Houston Television (720p) +https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-b/playlist.m3u8 +#EXTINF:-1 tvg-id="HumraazTV.us" tvg-country="US;PK" tvg-language="Urdu" tvg-logo="https://i.imgur.com/lzJ9Whg.png" group-title="News",Humraaz TV [Not 24/7] +https://cdn61.liveonlineservices.com/hls/humraaz.m3u8 +#EXTINF:-1 tvg-id="HuntChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DkvWWbE.png" group-title="Outdoor",Hunt Channel (1080p) +https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/index.m3u8 +#EXTINF:-1 tvg-id="HuntChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DkvWWbE.png" group-title="Outdoor",Hunt Channel (1080p) [Not 24/7] +https://1111296894.rsc.cdn77.org/LS-ATL-56868-1/mono.m3u8 +#EXTINF:-1 tvg-id="IDG.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/M0omWCW.jpg" group-title="News",IDG (720p) +https://a.jsrdn.com/broadcast/529a360c04/+0000/c.m3u8 +#EXTINF:-1 tvg-id="IMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/605e13c8d9eb3e1df47db303" group-title="Sports",IMPACT! Wrestling (1080p) +https://d2p372oxiwmcn1.cloudfront.net/hls/main.m3u8 +#EXTINF:-1 tvg-id="IndTVUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gWPiYH9.png" group-title="Entertainment",Ind TV USA (720p) +https://t06858-lh.akamaihd.net/i/t06858a_1@719164/master.m3u8 +#EXTINF:-1 tvg-id="InfoWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MBsQp1e.png" group-title="News",InfoWars (720p) +http://wpc.9ec1.edgecastcdn.net/249EC1/infowarshd-edgecast/hd720.m3u8 +#EXTINF:-1 tvg-id="InfoWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MBsQp1e.png" group-title="News",InfoWars (720p) +https://freespeech.akamaized.net/hls/live/2016712/live1/playlist.m3u8 +#EXTINF:-1 tvg-id="InspirationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CQnD7yU.png" group-title="Religious",Inspiration TV (360p) +https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/master.m3u8 +#EXTINF:-1 tvg-id="InspirationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CQnD7yU.png" group-title="Religious",Inspiration TV (288p) +https://inspnetworks-lh.akamaihd.net/i/insp_2@393793/index_2_av-p.m3u8 +#EXTINF:-1 tvg-id="WSVI.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gTmNrk6.png" group-title="Local",Ion 8 Christiansted VI (WSVI-TV) (300p) [Not 24/7] +https://dcunilive30-lh.akamaihd.net/i/dclive_1@534251/master.m3u8 +#EXTINF:-1 tvg-id="IraneFarda.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QlEmGaH.jpg" group-title="",Irane Farda (576p) [Not 24/7] +http://51.210.199.53/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IslandEscape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZvF6Yin.png" group-title="Relax",Island Escape (720p) +https://a.jsrdn.com/broadcast/41e3e6703e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="ISN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pmqYFk9.jpg" group-title="Religious",ISN (1080p) +https://cpdc101-lh.akamaihd.net/i/ISNCPDCMB1_1@314337/master.m3u8 +#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (404p) [Not 24/7] +http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/master.m3u8 +#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (404p) [Not 24/7] +http://uni8rtmp.tulix.tv:1935/shalomtv-pc/smil:shalomtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pHJm3I0.png" group-title="Religious",JBS (304p) [Not 24/7] +https://uni8rtmp.tulix.tv/shalomtv-pc/smil:shalomtv.smil/master.m3u8 +#EXTINF:-1 tvg-id="JewelryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1HJraea.png" group-title="Shop",Jewelry Television (720p) +https://cdn3.wowza.com/1/eUdsNEcyMmRvckor/K3pydHZw/hls/live/playlist.m3u8 +#EXTINF:-1 tvg-id="JewelryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1HJraea.png" group-title="Shop",Jewelry Television (720p) [Not 24/7] +https://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8 +#EXTINF:-1 tvg-id="KCKSLD12.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Lifestyle",Jewelry TV (KCKS-LD12) (480p) +https://cdn.igocast.com/channel12_hls/channel12_master.m3u8 +#EXTINF:-1 tvg-id="JewishLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VEoLKzb.png" group-title="Religious",Jewish Life TV (480p) [Not 24/7] +https://d3svwuchx5fp62.cloudfront.net/rtplive/smil:jltv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (432p) +https://johnnycarson-zype.amagi.tv/playlistR432p.m3u8 +#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) +http://d3lzjtrf5mvf3p.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) +https://vcnovation.teleosmedia.com/linear/ovation/journy/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (1080p) +https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8 +#EXTINF:-1 tvg-id="JudgeKarensCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/rku6tmo.png" group-title="",Judge Karen's Court (720p) +https://cb5273f195a147f2bcf23544e4495f66.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5eb1e7261474f9020c06f9ec/playlist.m3u8 +#EXTINF:-1 tvg-id="JuventudRenovadaenelEspirituSanto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9Brfh2M.png" group-title="Religious",Juventud Renovada en el Espiritu Santo (720p) [Not 24/7] +http://teleredmcp.com:1935/jrestv/jrestv/playlist.m3u8 +#EXTINF:-1 tvg-id="KalemehTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/j4VjHWN.jpg" group-title="Religious",Kalemeh TV (1080p) [Not 24/7] +http://184.75.208.98:1935/live/kalemeh/playlist.m3u8 +#EXTINF:-1 tvg-id="KartoonCircus.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/KartoonFunTime_209x209.png?raw=true" group-title="Kids",Kartoon Circus (720p) +https://simultv.s.llnwi.net/n4s4/KartoonCircus/interlink.m3u8 +#EXTINF:-1 tvg-id="KBPSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QleHNMl.png" group-title="Sports",KBP Sports (720p) [Not 24/7] +https://live-k2302-kbp.1plus1.video/sport/smil:sport.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="KBSVAssyriaSat.us" tvg-country="US" tvg-language="Assyrian Neo-Aramaic;English" tvg-logo="https://i.imgur.com/zEWSSdf.jpg" group-title="",KBSV/AssyriaSat (720p) [Not 24/7] +http://66.242.170.53/hls/live/temp/index.m3u8 +#EXTINF:-1 tvg-id="KCRTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mNK5D5k.jpg" group-title="",KCRT-TV 28 Richmond CA (KCRT) (360p) +http://granicusliveus3-a.akamaihd.net/richmond/G0034_002/playlist.m3u8 +#EXTINF:-1 tvg-id="KFSNNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KFSN News (1080p) [Not 24/7] +https://api.abcotvs.com/v3/kfsn/m3u8/url?id=432725&key=yuemix +#EXTINF:-1 tvg-id="KGOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",KGO-TV News (720p) +https://content.uplynk.com/channel/ext/4413701bf5a1488db55b767f8ae9d4fa/kgo_24x7_news.m3u8 +#EXTINF:-1 tvg-id="KidsFlix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbAVzad.png" group-title="Kids",KidsFlix (720p) [Not 24/7] +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50 +#EXTINF:-1 tvg-id="KoolTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aILvazd.jpg" group-title="Local",Kool TV (1080p) [Timeout] +http://209.182.219.50:1935/roku/roku/playlist.m3u8 +#EXTINF:-1 tvg-id="KTLATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JH99Psi.jpg" group-title="Local",KTLA 5 Los Angeles CA (144p) +https://content.uplynk.com/channel/6cbf2d32a5384dc1b787539b1102433c.m3u8 +#EXTINF:-1 tvg-id="KTRKTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KTRK TV News (720p) +https://content.uplynk.com/channel/ext/1efe3bfc4d1e4b5db5e5085a535b510b/ktrk_24x7_news.m3u8 +#EXTINF:-1 tvg-id="KVVBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FzxuNhl.png" group-title="Local",KVVB-TV 33 Victor Valley (1080p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8 +#EXTINF:-1 tvg-id="KweliTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/x9tjDhu.png" group-title="Culture",Kweli TV (720p) +https://a.jsrdn.com/broadcast/9c897f1973/+0000/c.m3u8 +#EXTINF:-1 tvg-id="LaMegaMundial.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/742490028559982592/ddFmTivZ_400x400.jpg" group-title="Music",La Mega Mundial (720p) [Not 24/7] +http://68.235.35.243:1935/lamegamundial/lamegamundial2/playlist.m3u8 +#EXTINF:-1 tvg-id="LaMegaMundial.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://pbs.twimg.com/profile_images/742490028559982592/ddFmTivZ_400x400.jpg" group-title="Music",La Mega Mundial (720p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/lamegamundial/lamegamundial2/playlist.m3u8 +#EXTINF:-1 tvg-id="LakeHavasuCity4.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/REqqKQ9.png" group-title="Local",Lake Havasu City 4 (240p) [Not 24/7] +https://granicusliveus3-a.akamaihd.net/lakehavasucity/G0643_002/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoThaiUSTV.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao-Thai US TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laothaius.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LatinosNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.revistalatinanc.com/wp-content/uploads/2019/02/3287_LatinosncTV.jpg" group-title="",Latinos NCTV (480p) [Not 24/7] +https://live.latinosnc.tv:1443/MRR/live/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) +https://lawcrime.s.llnwi.net/h72/lawcrimech2/playlist_scte.m3u8 +#EXTINF:-1 tvg-id="LaxSportsNetworkTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Lt9ZUYA.png" group-title="Sports",Lax Sports Network TV (720p) +https://1840769862.rsc.cdn77.org/FTF/LSN_SCTE.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVEducational.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Educational (720p) +http://edu.leominster.tv/Edu/smil:Edu.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVGovernment.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Government (720p) +http://gov.leominster.tv/Gov/smil:Gov.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LeominsterTVPublic.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.leominster.tv/SiteAssets/LATV%20Black%20and%20Gold.png" group-title="Local",Leominster TV Public (720p) [Not 24/7] +http://gov.leominster.tv/Pub/smil:Pub.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LevelOne.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Level One [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5af61be7d5eeee7af3d1db47/playlist.m3u8 +#EXTINF:-1 tvg-id="LexTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OyUrnuD.jpg" group-title="Local",Lex TV (720p) +https://granicusliveus2-a.akamaihd.net/lfucg/G0264_002/playlist.m3u8 +#EXTINF:-1 tvg-id="Lifestyle.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="Lifestyle",Lifestyle (720p) [Not 24/7] +https://bozztv.com/36bay2/gusa-lifestyle/index.m3u8 +#EXTINF:-1 tvg-id="LifevisionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pF6Wowj.jpg" group-title="Religious",LifevisionTV (720p) [Not 24/7] +https://uni5rtmp.tulix.tv/lifevision/lifevision.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LNKTVCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV City (1080p) +http://5tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LNKTVEducation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV Education (1080p) +http://80tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LNKTVHealth.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dGgmOY0.png" group-title="",LNKTV Health (1080p) +http://10tv.lincoln.ne.gov/live/WIFI-2096k-1080p/WIFI-2096k-1080p.m3u8 +#EXTINF:-1 tvg-id="LogosTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logostv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTVEnglish.us" tvg-country="US" tvg-language="English" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV English (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoseng/playlist.m3u8 +#EXTINF:-1 tvg-id="LogosTV.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://logoschannel.com/images/logo.png" group-title="Religious",Logos TV Mubasher (1080p) [Not 24/7] +https://5aafcc5de91f1.streamlock.net/logoschannel.com/logoshym/playlist.m3u8 +#EXTINF:-1 tvg-id="LoneStar.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzMxMzM1NzJf/LoneStar_250x250.png" group-title="Classic",Lone Star (960p) +https://a.jsrdn.com/broadcast/5oWx2VgEmK/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Loop80sWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s West (1080p) [Geo-blocked] +https://a500d902bdf94ea69ad343720add6036.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/80s_party_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="Loop90sWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K8YV2bR.png" group-title="Music",Loop 90s West (1080p) [Geo-blocked] +https://7626362bfa104137aded60d8d7e72ff5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/90s_kids_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopBeastModeWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/fb8c7ba652305a8700924347d46dcdff.jpeg" group-title="Music",Loop Beast Mode West (1080p) [Geo-blocked] +https://884a4c762d524aad88d463477402fb7d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopBedroomWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/2a347a69ef251082e125c7b15fc721a9.jpeg" group-title="Music",Loop Bedroom West (1080p) [Geo-blocked] +https://3bbe22c035b4409d80f997adc8ad33ee.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/bedroom_beats_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopElectronicaWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/d8d1f2a3ea03ed135a7873ff7c0ce161.jpeg" group-title="Music",Loop Electronica West (1080p) [Geo-blocked] +https://0bdf3efc906045538c63468aa2f86a96.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopFarOutWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/66b982a91d8b8f8383420675781139a1.jpeg" group-title="Music",Loop Far Out West (1080p) [Geo-blocked] +https://957d71ce01dc447384d3978d3cdc55d9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/that_70s_channel_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopFlashbackWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/52a174e6787a4ade949c6f5903777cff.jpeg" group-title="Music",Loop Flashback West (1080p) [Geo-blocked] +https://ea86081fb9454be9b3b50037f9117024.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/like_yesterday_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop West (1080p) [Geo-blocked] +https://e4d2547e0c8c492a883054acd48276be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopHottestEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NY9dKoR.png" group-title="Music",Loop Hottest East (1080p) [Geo-blocked] +https://2e9a0ef101a14c2ebe97c713bc5340be.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hottest_of_the_hot_v2_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopLatinWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/20b46f1a2777723aaa45db27e7389a93.jpeg" group-title="Music",Loop Latin West (1080p) [Geo-blocked] +https://c3b9df023def467086d10677827171f8.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/latin_x_pop_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopPartyWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party West (1080p) [Geo-blocked] +https://1d79349342334eb0bdeddd168b5c6e1a.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopRBWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/6edcf875ec3ba823acec994ffd051633.jpeg" group-title="Music",Loop R&B West (1080p) [Geo-blocked] +https://0cf4f660964046daa9e0b7b6467a4e84.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hot_rnb_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopSynapseWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/e21e0005af106ee7bebea46bb17b2e93.jpeg" group-title="Music",Loop Synapse West (1080p) [Geo-blocked] +https://2807722353b745629456a555257b16bc.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTexasTunesWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/c7c4962a327ba3a25ae0dcf17a3d4e06.jpeg" group-title="Music",Loop Texas Tunes West (1080p) [Geo-blocked] +https://2fb88e730c2647d69629c6f90b0b98b9.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/texas_sized_hits_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTGIFWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/2487e997c51436f8502ac737144954a7.jpeg" group-title="Music",Loop TGIF West (1080p) [Geo-blocked] +https://480e67fe68b64c35ae48b77192cb1fdf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/friday_feels_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopThatsHotWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/5e4e6c6989bea49734411e5e708f6089.jpeg" group-title="Music",Loop That's Hot West (1080p) [Geo-blocked] +https://dccd6216f2c9471399015e69d64818cd.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/thats_hot_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopTrendingWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/0c789462f6e85086d20ccc04da342567.jpeg" group-title="Music",Loop Trending West (1080p) [Geo-blocked] +https://3d26c463850c48c788975a9aad86c508.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/trending_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopUnwindWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/63d5db69985110f57bd35c4cd22ee74a.jpeg" group-title="Music",Loop Unwind West (1080p) [Geo-blocked] +https://8c455e94c5ff44d0ada529dffef58ae5.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/unwind_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="LoopYachtRockWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/43a4136e6bc3e153f68bb2dd200a6635.jpeg" group-title="Music",Loop Yacht Rock West (1080p) [Geo-blocked] +https://90a0d12cbaff4b959ea24bb8a3560adf.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/yacht_rock_littlstar/master.m3u8 +#EXTINF:-1 tvg-id="Loupe4K.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/03232021/Loupe4K_190x190.png?raw=true" group-title="",Loupe 4K (2160p) +http://d2dw21aq0j0l5c.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNature4K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature 4K [Offline] +https://d27r4t30huw0iy.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveWorldUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YnOZtNm.png" group-title="Religious",LoveWorld USA (1080p) [Offline] +https://loveworldusa-lh.akamaihd.net/i/lwusa2_1@514985/master.m3u8 +#EXTINF:-1 tvg-id="LuckyDog.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1j4gwL3.png" group-title="",Lucky Dog [Offline] +http://d1gsmhzkyjhxg4.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="MadDogandMerrill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ot9wh52.png" group-title="General",Mad Dog and Merrill (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-mwg/playlist.m3u8 +#EXTINF:-1 tvg-id="MajestadTelevision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Religious",Majestad Televisión (480p) [Not 24/7] +https://5b3050bb1b2d8.streamlock.net/majestadtv/majestadtv/playlist.m3u8 +#EXTINF:-1 tvg-id="MarvelHQ.us" tvg-country="IN" tvg-language="Hindi" tvg-logo="http://imagesdishtvd2h.whatsonindia.com/dasimages/channel/landscape/360x270/QuDem5OD.png" group-title="",Marvel HQ (1080p) [Timeout] +https://feed.play.mv/live/10005200/niZoVrR2vD/master.m3u8 +#EXTINF:-1 tvg-id="MCN6.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="",MCN6 (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MAIN.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="MCN6ArtsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="",MCN6 Arts Channel (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_COMEDY.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="MCN6MusicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KOgoXoG.png" group-title="Music",MCN6 Music Channel (1080p) [Not 24/7] +https://d18fcxaqfnwjhj.cloudfront.net/CDN_Ingest/MCN6_MUSIC.smil/Playlist.m3u8 +#EXTINF:-1 tvg-id="MeTVEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/me-tv-us.png" group-title="Classic",MeTV Tallahassee FL (WCTV2) (480p) [Offline] +https://5e6cea03e25b6.streamlock.net/live/WCTVDT2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MGMHDUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/giHZyYC.png" group-title="",MGM HD USA (576p) +http://c0.cdn.trinity-tv.net/stream/uq2t763988wmx82xs37vrzrtrvaz686y22jd9gcgvgbhu88g6dntdb82kggx9zgvpvwj5wisyi5mgwwgdqzm7d6xbf7yvctwzvhsu3t57ms3wa4qxwyeuqk3ayrdwx3k2b6cdtnrydx9qa3ezqzea===.m3u8 +#EXTINF:-1 tvg-id="MiamiCityTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HJohrzO.png" group-title="Local",Miami City TV (360p) [Not 24/7] +https://granicusliveus9-a.akamaihd.net/miamifl/G2076_003/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/miamitv/smil:miamitvWEB/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVJennyLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV Jenny Live (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/JennyLive/JennyLive/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVLatino.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV Latino (1080p) +https://5ee7c2b857b7f.streamlock.net/latino/latino/playlist.m3u8 +#EXTINF:-1 tvg-id="MiamiTVMexico.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WlrcyMe.png" group-title="XXX",Miami TV México (720p) [Not 24/7] +https://59ec5453559f0.streamlock.net/mexicotv/smil:miamitvmexicoROKU/playlist.m3u8 +#EXTINF:-1 tvg-id="MihanTV.us" tvg-country="US" tvg-language="Persian" tvg-logo="https://i.imgur.com/E6zzyqZ.jpg" group-title="News",Mihan TV (720p) [Not 24/7] +http://iptv.mihantv.com/live/playlist.m3u8 +#EXTINF:-1 tvg-id="MillenniumTV24.us" tvg-country="US" tvg-language="English" tvg-logo="https://millenniumtv24.com/wp-content/uploads/2020/07/logo-new-24-02.png" group-title="Local",Millennium TV 24 (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/mnews24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MillenniumTVUSA.us" tvg-country="US" tvg-language="English" tvg-logo="https://millenniumtv.org/wp-content/uploads/2021/06/Icon-512.png" group-title="General",Millennium TV USA (1080p) [Not 24/7] +https://cdn.appv.jagobd.com:444/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/millenniumtv-odr-up2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="MissionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1qJkLDZ.png" group-title="Religious",Mission TV (1080p) [Not 24/7] +https://6096a9cf11ae5.streamlock.net:1943/live/missiontv/playlist.m3u8 +#EXTINF:-1 tvg-id="MissionTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1qJkLDZ.png" group-title="Religious",Mission TV (720p) [Not 24/7] +http://stream.missiontv.com:1935/live/missiontv_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MLBNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oDOpMph.png" group-title="Sports",MLB Network [Offline] +https://hlslive-akc-med1.media.mlb.com/ls01/mlbnetwork/NETWORK_LINEAR_1/master_wired.m3u8 +#EXTINF:-1 tvg-id="MMAJunkie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nSUiODh.jpg" group-title="Sports",MMA Junkie (720p) +https://a.jsrdn.com/broadcast/80f6ba72c8/+0000/c.m3u8 +#EXTINF:-1 tvg-id="MohabatTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tucTC1O.jpg" group-title="",Mohabat TV (540p) +http://media.mohabat.tv:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 +#EXTINF:-1 tvg-id="MonarchChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iSqYInb.png" group-title="Documentary",Monarch Channel (720p) +https://a.jsrdn.com/broadcast/0c9a09c94c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Motorcyclist.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QIEhpPp.png" group-title="Auto",Motorcyclist (720p) [Offline] +https://a.jsrdn.com/broadcast/256ad9e679/+0000/c.m3u8 +#EXTINF:-1 tvg-id="Movee4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://mytvtogo.net/wp-content/uploads/2018/11/Network_Movee4U-196x126.jpg" group-title="Movies",Movee 4U (720p) [Not 24/7] +https://broadcast.mytvtogo.net/movee4u/movee4u/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieKingdom.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pIuJqYk.png" group-title="Movies",Movie Kingdom (600p) +https://a.jsrdn.com/broadcast/e9b4093a41/+0000/c.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/396885309/4ad7161a83db264f3ba4b62ef1ab662a?v=1" group-title="News",MSNBC (480p) +http://encodercdn1.frontline.ca/encoder182/output/MSNBC/playlist.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/msnbc-alt-us.png" group-title="News",MSNBC (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/msnbc/playlist.m3u8 +#EXTINF:-1 tvg-id="MSNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://static-s.aa-cdn.net/img/ios/396885309/4ad7161a83db264f3ba4b62ef1ab662a?v=1" group-title="News",MSNBC (720p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/MSNBC_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="MTVHitsEurope.us" tvg-country="EUR" tvg-language="Catalan" tvg-logo="https://i.imgur.com/hwaLKuJ.png" group-title="Music",MTV Hits Europe (576p) [Offline] +http://188.40.68.167/russia/mtv_hits/playlist.m3u8 +#EXTINF:-1 tvg-id="MTVHitsLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/hwaLKuJ.png" group-title="Music",MTV Hits Latinoamérica (576p) [Timeout] +http://209.91.213.10:8088/play/a00z +#EXTINF:-1 tvg-id="MTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",MTV Latinoamérica (1080p) [Timeout] +http://209.91.213.10:8088/play/a01a +#EXTINF:-1 tvg-id="WISCDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/25125/s51307_h3_aa.png" group-title="",My Madison TV (WISC-DT2) (720p) +https://ad-playlistserver.aws.syncbak.com/playlist/13613390/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkdyYXkyMDE2MDgyOSJ9.eyJtaWQiOjEzNjEzMzkwLCJtZDUiOiI2Y2M5MzczYjIxZWIwNzQ4ZDA0YTRlYzYyMjU2YjBhMiIsImlhdCI6MTQ5NzM4MTU5NywiaXNzIjoiU3luY2JhayIsInN1YiI6IkdyYXkifQ.qJPiMCbnGjAn9wgPrGjVl3M9Xfc4CVSyoZTZ5OH-1jo +#EXTINF:-1 tvg-id="Mythos.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JBEqPZP.png" group-title="Movies",Mythos (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-mythos/playlist.m3u8 +#EXTINF:-1 tvg-id="KCWXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/A43Njed.png" group-title="",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7] +http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV (720p) +http://iphone-streaming.ustream.tv/uhls/6540154/streams/live/iphone/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV (720p) [Not 24/7] +https://hls.ums.ustream.tv/playlist/directhls/channel/6540154/playlist.m3u8?sgn=31d0dfb847c358d4cedcd2256dc4e1c42a7f13a7 +#EXTINF:-1 tvg-id="NASATVISSViews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Science",NASA TV ISS Views (480p) [Not 24/7] +http://iphone-streaming.ustream.tv/uhls/9408562/streams/live/iphone/playlist.m3u8 +#EXTINF:-1 tvg-id="NASATVMedia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bKVNdeh.jpg" group-title="Education",NASA TV Media (720p) +https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master.m3u8 +#EXTINF:-1 tvg-id="NASATVPublic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CH6VcTR.jpg" group-title="Education",NASA TV Public (720p) +https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.us" tvg-country="US" tvg-language="Arabic" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Nat_geo_channel_abu_dhabi.png/220px-Nat_geo_channel_abu_dhabi.png" group-title="Documentary",National Geographic Abu Dhabi (1080p) +https://admdn2.cdn.mangomolo.com/nagtv/smil:nagtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://1000logos.net/wp-content/uploads/2017/04/Color-National-Geographic-Logo-500x250.jpg" group-title="Documentary",National Geographic East (720p) [Geo-blocked] +https://livecdn.fptplay.net/foxlive/natgeohd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicEspaña.us" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://1000logos.net/wp-content/uploads/2017/04/Color-National-Geographic-Logo-500x250.jpg" group-title="Documentary",National Geographic España [Timeout] +http://5.255.90.184:2001/play/a04i +#EXTINF:-1 tvg-id="NationalGeographicWild.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild [Offline] +https://cdn1.mobiletv.bg/T5/ng_wild_hd/ng_wild_hd_794613_850k.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildMiddleEast.us" tvg-country="ARAB" tvg-language="Arabic" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild Middle East (720p) [Not 24/7] +http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8 +#EXTINF:-1 tvg-id="NationalGeographicWildRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://static.epg.best/id/NatGeoWild.id.png" group-title="Documentary",National Geographic Wild Russia (1080p) [Not 24/7] +https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8 +#EXTINF:-1 tvg-id="NAUTVNorthernArizonaUniversity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uNKEoa4.png" group-title="",NAU-TV Northern Arizona University (720p) [Not 24/7] +http://stream.ec.nau.edu/live/amlst:channelfour/playlist.m3u8 +#EXTINF:-1 tvg-id="NBATV.us" tvg-country="TH" tvg-language="English" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-nba.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Sports",NBA TV (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_nbahd_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="WTLVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KQrtvoo.jpg" group-title="Local",NBC / ABC Jacksonville FL (WTLV) (1080p) +https://livevideo01.firstcoastnews.com/hls/live/2014550/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WGRZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/m4MZTtj.jpg" group-title="Local",NBC 2 Buffalo NY (WGRZ) (1080p) +https://livevideo01.wgrz.com/hls/live/2016286/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WRCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/0/0f/Logo_of_WRC-TV.png" group-title="Local",NBC 4 News Washington DC (WRC-TV) (720p) [Not 24/7] +https://wrclive-f.akamaihd.net/i/wrcb1_1@46880/master.m3u8 +#EXTINF:-1 tvg-id="WMAQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/a/ac/WMAQ_Logo_2012.png" group-title="Local",NBC 5 News Chicago IL (WMAQ-TV) (1080p) +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM1@22923/master.m3u8 +#EXTINF:-1 tvg-id="KINGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aDqnu8Y.jpg" group-title="Local",NBC 5 Seattle WA (KING) (1080p) +https://livevideo01.king5.com/hls/live/2006665/live/live.m3u8 +#EXTINF:-1 tvg-id="KSDKTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4zQaZBX.jpg" group-title="Local",NBC 5 St. Louis MO (KSDK) (1080p) +https://livevideo01.ksdk.com/hls/live/2014965/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KAGSLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zkkg70O.jpg" group-title="Local",NBC 6 College Station TX (KAGS) (1080p) +https://livevideo01.kagstv.com/hls/live/2016283/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KCENDT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l9T46o3.jpg" group-title="Local",NBC 6 Waco TX (KCEN) (1080p) +https://livevideo01.kcentv.com/hls/live/2017155/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KTVBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2sLPTiM.jpg" group-title="Local",NBC 7 Boise ID (KTVB) (1080p) +https://livevideo01.ktvb.com/hls/live/2014542/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KGW.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tekKgXi.jpg" group-title="Local",NBC 8 Portland OR (KGW) (1080p) +https://livevideo01.kgw.com/hls/live/2015506/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KUSATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uv82wud.jpg" group-title="Local",NBC 9 Denver CO (KUSA) (1080p) +https://livevideo01.9news.com/hls/live/2014548/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WBIRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mMQoVWG.jpg" group-title="Local",NBC 10 Knoxville TN (WBIR-TV) (1080p) +https://livevideo01.wbir.com/hls/live/2016515/newscasts/live-2000.m3u8 +#EXTINF:-1 tvg-id="WXIATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yR2o6Dw.jpg" group-title="Local",NBC 11 Alive Atlanta GA (WXIA-TV) (1080p) +https://livevideo01.11alive.com/hls/live/2015499/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KARETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyLgNR6.jpg" group-title="Local",NBC 11 Minneapolis MN (KARE) (1080p) +https://livevideo01.kare11.com/hls/live/2014544/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WPXITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iud5PUZ.png" group-title="Local",NBC 11 Pittsburgh PA (WPXI) (720p) +https://d3nzocdfkx2ybv.cloudfront.net/in/cmg-wpxitv-hls-v3/live.m3u8 +#EXTINF:-1 tvg-id="KNTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jrWg5qE.jpg" group-title="Local",NBC 11 San Jose CA (KNTV) (416p) [Offline] +https://kntvlive-f.akamaihd.net/i/kntvb1_1@15530/master.m3u8 +#EXTINF:-1 tvg-id="KPNXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/f1FiXuX.jpg" group-title="Local",NBC 12 Phoenix AZ (KPNX) (1080p) +https://livevideo01.12news.com/hls/live/2015501/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WTHRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DQK8BrE.jpg" group-title="Local",NBC 13 Indianapolis IN (WTHR) (1080p) +https://livevideo01.wthr.com/hls/live/2013835/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qOO32m6.png" group-title="Local",NBC 15 Madison WI (WMTV) (720p) +https://ad-playlistserver.aws.syncbak.com/playlist/899088/master.m3u8?access_token=eyJhbGciOiJIUzI1NiIsImtpZCI6IkdyYXkyMDE2MDgyOSIsInN1YiI6IioiLCJ0eXAiOiJKV1QifQ.eyJleHAiOjE3OTAzNjkxMDUsImlzcyI6IldMUyIsIm1kNSI6ImJhZTU4Y2ZlZWM2NmU1MjZkNmVjZmE1YmUzNTQxMzQ4IiwibWlkIjoiODk5MDg4In0.vBWkHmqS3z3dpq8UWfbk4wFd-vQlj6B0up-rpt7X_7Q +#EXTINF:-1 tvg-id="WGBATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://ewscripps.brightspotcdn.com/dims4/default/31cd86c/2147483647/strip/true/crop/600x200+0+0/resize/400x133!/quality/90/?url=https%3A%2F%2Fewscripps.brightspotcdn.com%2F09%2F30%2F6709482a41ef96f6ba6259d6ae66%2Fwgba-geographic-locator-600x200.png" group-title="Local",NBC 26 Green Bay WI (WGBA) (720p) +https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8 +#EXTINF:-1 tvg-id="WCNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2EyiCqw.jpg" group-title="Local",NBC 36 Charlotte NC (WCNC-TV) (1080p) +https://livevideo01.wcnc.com/hls/live/2015505/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="WLBZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DJrdp7S.jpg" group-title="Local",NBC 207 Bangor Portland ME (WLBZ) (1080p) +https://livevideo01.newscentermaine.com/hls/live/2014540/newscasts/live/wcsh.m3u8 +#EXTINF:-1 tvg-id="WBTS-CD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Boston MA (WBTS-CD1) (720p) +http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WBTS-CD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Boston MA (WBTS-CD1) (480p) [Not 24/7] +http://encodercdn1.frontline.ca/encoder183/output/NBC_Boston/playlist.m3u8 +#EXTINF:-1 tvg-id="WGRZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Buffalo NY (WGRZ1) (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_NBCHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="NBCGolfChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nbc-golf-3d-us.png" group-title="Sports",NBC Golf Channel (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/golf/playlist.m3u8 +#EXTINF:-1 tvg-id="WNBC.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC New York (WNBC-DT1) (720p) +http://38.91.57.12:2082/nbc/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) +http://nbcnews2.akamaized.net/hls/live/723426-b/NBCNewsPlaymaker24x7Linear99a3a827-ua/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) [Offline] +https://nbcnewshls.akamaized.net/hls/live/2011820/nnn_live1/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 1 (360p) +https://nbcnews-lh.akamaihd.net/i/nbc_live11@183427/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent2.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 2 (360p) +https://nbcnews-lh.akamaihd.net/i/nbc_live12@187393/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent3.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 3 (360p) +https://nbcnews-lh.akamaihd.net/i/nbc_live13@187394/master.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNowEvent4.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now Event 4 (360p) +https://nbcnews-lh.akamaihd.net/i/nbc_live14@187395/master.m3u8 +#EXTINF:-1 tvg-id="KWESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qshcBQk.jpg" group-title="Local",NBC NewsWest 9 Midland-Odessa TX (KWES) (1080p) +https://livevideo01.newswest9.com/hls/live/2017380/newscasts/live.m3u8 +#EXTINF:-1 tvg-id="KING-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Seattle WA (KING-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KING-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Seattle WA (KING-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/NBC_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="KHQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Spokane WA (KHQ-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KHQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Spokane WA (KHQ-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder184/output/NBC_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="WTWC-TV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/NBC_Peacock_1986.svg/320px-NBC_Peacock_1986.svg.png" group-title="Local",NBC Tallahassee FL (WTWC-TV1) (720p) +https://5e6cea03e25b6.streamlock.net/live/WTWC-NB.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WVITNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC-CT WVIT-TV News Hartford CT (1080p) +https://wvitlive-f.akamaihd.net/i/HARTFORD_STREAM1@22924/master.m3u8 +#EXTINF:-1 tvg-id="KNBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC4 KNBC-TV News (1080p) [Not 24/7] +https://knbclive-f.akamaihd.net/i/LA_STREAM1@13988/master.m3u8 +#EXTINF:-1 tvg-id="WNBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/Tapiosinn/tv-logos/raw/master/countries/united-states/us-local/nbc-4-wnbc-us.png" group-title="Local",NBC4 WNBC-TV New York News (1080p) [Not 24/7] +https://wnbclive-f.akamaihd.net/i/NY_STREAM1@13992/master.m3u8 +#EXTINF:-1 tvg-id="WRCNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC4 WRC-TV Washington News (1080p) +https://wrclive-f.akamaihd.net/i/DC_STREAM1@22925/master.m3u8 +#EXTINF:-1 tvg-id="KXASNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC5 KXAS-TV News Dallas TX (1080p) [Not 24/7] +https://kxaslive-f.akamaihd.net/i/DALLAS_STREAM5@5495/master.m3u8 +#EXTINF:-1 tvg-id="WTVJNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",NBC6 WTVJ-TV News Miami FL (1080p) [Not 24/7] +https://wtvjlive-f.akamaihd.net/i/MIAMI_STREAM1@19309/master.m3u8 +#EXTINF:-1 tvg-id="NBCLX.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JSCsJc5.png" group-title="Entertainment",NBCLX (1080p) +https://lxlive-lh.akamaihd.net/i/LX_LIVE@148206/master.m3u8 +#EXTINF:-1 tvg-id="NegahTV.us" tvg-country="IR" tvg-language="Persian" tvg-logo="" group-title="Entertainment",Negah TV (720p) [Not 24/7] +https://iptv.negahtv.com/negahtv/playlist2/index.m3u8 +#EXTINF:-1 tvg-id="NESNNational.us" tvg-country="US" tvg-language="English" tvg-logo="https://lh3.googleusercontent.com/zO2IQHNsszQEwBR_WkdlGo--3qbOfBIDTxNH4CNDpu8jtuASA6CvL7Aw_wcmPFItMSBy" group-title="Sports",NESN National (1080p) +https://bcovlive-a.akamaihd.net/bea11a7dfef34b08be06aaca4a72bcdf/us-east-1/6141518204001/playlist.m3u8 +#EXTINF:-1 tvg-id="NOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tf3KGP4.jpg" group-title="Local",New Orleans Television (NOTV) (720p) +http://media4.tripsmarter.com:1935/LiveTV/NOTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="NOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tf3KGP4.jpg" group-title="Local",New Orleans Television (NOTV) (720p) +https://5b0f5374bdf0c.streamlock.net:444/LiveTV/NOTVHD/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) +https://nmxairy.akamaized.net/hls/live/529965/Live_1/index.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (720p) [Not 24/7] +https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1311088/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (480p) [Not 24/7] +http://broadcastny.yournewsnet.com:8081/master/newsnetweb/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsNet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NewsNet.png" group-title="News",NewsNet (480p) [Offline] +https://broadcaster1.prolivestream.net:8083/onair/newsnetweb/playlist.m3u8 +#EXTINF:-1 tvg-id="KCKSLD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="News",NewsNet (KCKS-LD2) (480p) [Not 24/7] +https://cdn.igocast.com/channel2_hls/channel2_master.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) +https://547f72e6652371c3.mediapackage.us-east-1.amazonaws.com/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) +https://d3ra88okaj5j4j.cloudfront.net/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) +https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) +https://content.uplynk.com/channel/4bb4901b934c4e029fd4c1abfc766c37.m3u8 +#EXTINF:-1 tvg-id="NewsyTopStories.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy Top Stories (720p) +https://content.uplynk.com/channel/387c33ce09da4de699668c0c7d1244a8.m3u8 +#EXTINF:-1 tvg-id="NFLNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nfl-network-us.png" group-title="Sports",NFL Network (720p) [Not 24/7] +http://s1.mysportz.tv:2082/nfl/playlist.m3u8 +#EXTINF:-1 tvg-id="NFLNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nfl-network-us.png" group-title="Sports",NFL Network (720p) [Not 24/7] +http://s1.mysportz.tv:2082/nfl/playlist.m3u8 +#EXTINF:-1 tvg-id="NickJrEast.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/sa/NickJr.sa.png" group-title="Kids",Nick Jr East [Offline] +https://cdn1.mobiletv.bg/T5/bit/bit_794613_850k.m3u8 +#EXTINF:-1 tvg-id="NickJrLatinoamerica.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="" group-title="Kids",Nick Jr Latinoamérica (480p) [Timeout] +http://201.168.205.12:8000/play/a0ck/index.m3u8 +#EXTINF:-1 tvg-id="NickJrTooUK.us" tvg-country="UK;IE" tvg-language="English" tvg-logo="http://neczbm.to/images/channels/NickJrToo.png" group-title="Kids",Nick Jr Too UK (576p) [Geo-blocked] +http://212.224.98.213:2200/EX/Nick_Jr_Too-uk/index.m3u8?token= +#EXTINF:-1 tvg-id="NickelodeonAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.epg.best/au/Nickelodeon.au.png" group-title="Kids",Nickelodeon Australia (576p) +http://c0.cdn.trinity-tv.net/stream/7tsewn83ddjifz69us9je7eftbm5nuausb4dsvz9g5aydin9672n734qbb9jgcfpiqtpwudvs9dpi2udjc3eh4h462eie5azjmfbfgfjeqfuhjmmgx9zuj736ijg7nffhf8rviq5svkgxbp639y9nfgc.m3u8 +#EXTINF:-1 tvg-id="NickelodeonEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ufHOxMN.png" group-title="Kids",Nickelodeon East (360p) [Geo-blocked] +http://31.220.41.88:8081/live/us-nick.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyDivorceCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Divorce Court (720p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e76d1474f9020c06f9ee_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyJerrySpringer.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Jerry Springer [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e7f848f1ff2e1d2555a2_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyJudgeKarensCourt.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Judge Karen's Court (480p) +https://stitcheraws.unreel.me/wse-node02.powr.com/powr/ngrp:5eb1e7261474f9020c06f9ec_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseyMaury.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Maury [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e88458ad7801fa2cfc2e_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NoseySteveWilkos.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey Steve Wilkos [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/powr_480pt/ngrp:5eb1e84c95ee0253b97679d7_all/playlist.m3u8 +#EXTINF:-1 tvg-id="NothingScripted.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QSH4Z4p.png" group-title="Local",Nothing Scripted (720p) +https://30a-tv.com/NothingScripted.m3u8 +#EXTINF:-1 tvg-id="NRBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/S3Ujv10.png" group-title="Religious",NRB TV (480p) +https://uni6rtmp.tulix.tv/nrbnetwork/myStream.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NYXT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KiIzWmO.jpg" group-title="",NYXT (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/19770665/events/5522162/live.m3u8 +#EXTINF:-1 tvg-id="OANEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9S4ZbPL.jpg" group-title="News",OAN Encore (720p) [Geo-blocked] +https://cdn.herringnetwork.com/80A4DFF/oane_oregon/OAN_Encore.m3u8 +#EXTINF:-1 tvg-id="Olelo49.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z7RBRkZ.png" group-title="",Olelo 49 (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/olelo/G0125_009/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo53.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z7RBRkZ.png" group-title="",Olelo 53 (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/olelo/G0125_011/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo54.us" tvg-country="US" tvg-language="English" tvg-logo="http://olelo.org/wp-content/uploads/2017/03/cropped-site-icon-180x180.png" group-title="Local",Olelo 54 (720p) [Not 24/7] +https://granicusliveus12-a.akamaihd.net/olelo/G0125_012/playlist.m3u8 +#EXTINF:-1 tvg-id="Olelo55.us" tvg-country="US" tvg-language="English" tvg-logo="http://olelo.org/wp-content/uploads/2017/03/cropped-site-icon-180x180.png" group-title="Local",Olelo 55 (720p) [Not 24/7] +https://granicusliveus12-a.akamaihd.net/olelo/G0125_013/playlist.m3u8 +#EXTINF:-1 tvg-id="OmidJavedan.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G1tOSzq.png" group-title="",Omid Javedan (720p) [Not 24/7] +http://livestream.5centscdn.com/shaditv/23abe62a446fc05ce0a6c810f4045308.sdp/index.m3u8 +#EXTINF:-1 tvg-id="OURTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9uz9lyg.png" group-title="Lifestyle",Opportunities in Urban Renaissance Television (OURTV) (720p) +https://hls-cdn.tvstartup.net/barakyah-channel/play/mp4:ourtvedge/playlist.m3u8 +#EXTINF:-1 tvg-id="OrangeTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://lh4.ggpht.com/rTO2b4xizn7KZy6X-3RUSMWmNi86B116IuF9kgi51fyNTp8mrEhP25svcAMx5BngXwlf=w300" group-title="Local",Orange TV (720p) +http://otv3.ocfl.net:1936/OrangeTV/smil:OrangeTV.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="AU" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (720p) [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7outdoor.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (720p) [Geo-blocked] +https://livecdn.fptplay.net/world/outdoorfhd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://i.mjh.nz/.images/tv.7outdoor.png" group-title="Outdoor",Outdoor Channel (1080p) [Offline] +http://ott.watch/stream/E7Q3UVKI5H/211.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider [Geo-blocked] +https://i.mjh.nz/au/Sydney/tv.7pac12.m3u8 +#EXTINF:-1 tvg-id="KNETCD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/A3kHNyp.jpg" group-title="",Panarmenian TV (KNET-CD 25.2) (360p) [Not 24/7] +http://granicusliveus6-a.akamaihd.net/torrance/G0057_005/playlist.m3u8 +#EXTINF:-1 tvg-id="ParamountComedyRussia.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/u50d1gv.jpg" group-title="Comedy",Paramount Comedy Russia [Timeout] +http://45.145.32.11:20007/paramount_comedy/video.m3u8 +#EXTINF:-1 tvg-id="PartyTymeKaraoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Jj4zvOK.png" group-title="Entertainment",Party Tyme Karaoke (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=64 +#EXTINF:-1 tvg-id="PayameAfghanTV.us" tvg-country="AF" tvg-language="Pashto" tvg-logo="https://i.imgur.com/G7Zn0gN.png" group-title="",Payam-e-Afghan TV (480p) [Not 24/7] +http://g5nl6xx5lpq6-hls-live.5centscdn.com/live1234/2621b29e501b445fabf227b086123b70.sdp/mono.m3u8 +#EXTINF:-1 tvg-id="PayvandTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/w3LaJja.png" group-title="News",Payvand TV (720p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/ucur1/Payvand/playlist.m3u8 +#EXTINF:-1 tvg-id="PBCTapeshTV.us" tvg-country="US;IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/Yry3FXW.png" group-title="General",PBC Tapesh TV (720p) [Offline] +https://iptv.tapesh.tv/tapesh/playlist.m3u8 +#EXTINF:-1 tvg-id="WLVTTV" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS 39 Allentown PA (WLVT) (720p) +https://forerunnerrtmp.livestreamingcdn.com/output18/output18.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WPPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS 39 Extra Philadelphia PA (WPPT) (480p) +https://forerunnerrtmp.livestreamingcdn.com/output18-2/output18-2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WNED.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/pbs.png" group-title="Education;Local",PBS Buffalo NY (WNED-TV) (720p) +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="WNED.us" tvg-country="US" tvg-language="English" tvg-logo="https://myhealthhub.frontline.ca/myhealthhubtv/channellogos/pbs.png" group-title="Education;Local",PBS Buffalo NY (WNED-TV) (720p) [Offline] +http://encodercdn1.frontline.ca/vantrix/ltv/Bell_PBSHB_AtopItci_2015_01_12_HD/hls_hd.m3u8 +#EXTINF:-1 tvg-id="KLCSDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usba.mybtv.net/logos/22.2-Create.png" group-title="Education",PBS Create Los Angeles CA (KLCS-DT3) (720p) [Geo-blocked] +https://d1mxoeplf1ak5a.cloudfront.net/index.m3u8 +#EXTINF:-1 tvg-id="WFSU-TV3.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usba.mybtv.net/logos/22.2-Create.png" group-title="Education",PBS Create Tallahassee FL (WFSU-TV3) (480p) +https://5e6cea03e25b6.streamlock.net/live/CREATE.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KERATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Dallas TX (KERA) (1080p) [Geo-blocked] +https://kera-flash.streamguys1.com/live/eventStream/playlist.m3u8 +#EXTINF:-1 tvg-id="WKMJTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.pbs.org/stations/wkle-color-single-brand-logo-yJUbW1W.png" group-title="Education;Local",PBS KET Louisville KY (WKMJ-TV) (720p) +https://2-fss-1.streamhoster.com/pl_134/amlst:200914-1282960/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSKidsAKST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Alaska (1080p) +https://livestream.pbskids.org/out/v1/2963202df0c142c69b5254a546473308/akst.m3u8 +#EXTINF:-1 tvg-id="PBSKidsEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Eastern/Central (1080p) +https://livestream.pbskids.org/out/v1/1e3d77b418ad4a819b3f4c80ac0373b5/est.m3u8 +#EXTINF:-1 tvg-id="PBSKidsEST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Eastern/Central (720p) +https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8 +#EXTINF:-1 tvg-id="PBSKidsHAST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Hawaii (1080p) +https://livestream.pbskids.org/out/v1/19d1d62bf61b4aea9ec20f83b6450a4e/hast.m3u8 +#EXTINF:-1 tvg-id="PBSKidsMST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Mountain (1080p) +https://livestream.pbskids.org/out/v1/00a3b9014fa54c40bee6ca68a104a8a4/mst.m3u8 +#EXTINF:-1 tvg-id="PBSKidsPST.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ambc9le.png" group-title="Education;Kids",PBS Kids Pacific (1080p) +https://livestream.pbskids.org/out/v1/c707b9310f2848de849b336f9914adbc/pst.m3u8 +#EXTINF:-1 tvg-id="MPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kt0R7ua.jpg" group-title="Education;Local",PBS MPT Baltimore MD (WMPB) (1088p) +https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8 +#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Seattle WA (KCTS-TV1) (720p) +http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Seattle WA (KCTS-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/bespin/output/PBS_Seattle/playlist.m3u8 +#EXTINF:-1 tvg-id="KSPSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Spokane WA (KSPS-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="KSPSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Spokane WA (KSPS-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder183/output/PBS_Spokane/playlist.m3u8 +#EXTINF:-1 tvg-id="WFSU-TV1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ibb.co/2KqyGjL/PBS-logo.png" group-title="Education;Local",PBS Tallahassee FL (WFSU-TV1) (720p) +https://5e6cea03e25b6.streamlock.net/live/WFSU-PBS.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/PBSWorld_972x972.png?raw=true" group-title="Education",PBS World Channel (480p) +https://cs.ebmcdn.net/eastbay-live-hs-1/apt/mp4:apt-world/playlist.m3u8 +#EXTINF:-1 tvg-id="PCCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9PEAPwY.png" group-title="Local",PCC-TV Pinellas County FL (480p) [Not 24/7] +http://granicusliveus1-a.akamaihd.net/pinellas/G1551_004/playlist.m3u8 +#EXTINF:-1 tvg-id="Peachtree.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/b/b7/WPCH-TV_logo.svg/320px-WPCH-TV_logo.svg.png" group-title="General",Peachtree TV Atlanta GA (WPCH-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/Peachtree_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="Peachtree.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/b/b7/WPCH-TV_logo.svg/320px-WPCH-TV_logo.svg.png" group-title="General",Peachtree TV Atlanta GA (WPCH-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder181/output/Peachtree/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) +https://d1qaz9zojo1ayt.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) +https://peopletv-oo.akamaized.net/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) +https://peopletv-samsungus-ingest.akamaized.net/playlist.m3u8 +#EXTINF:-1 tvg-id="WPIXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qDLtnQ6.png" group-title="Local",PIX11 New York NY (720p) +https://content.uplynk.com/channel/98828f7707b84dc496472d5789143df2.m3u8 +#EXTINF:-1 tvg-id="PlantBasedNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iwd9Jxb.png" group-title="",Plant Based Network (1080p) [Not 24/7] +https://hls-cdn.tvstartup.net/barakyah-channel/live/pbtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Pop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tTGgNWX.png" group-title="General",Pop (1080p) [Offline] +https://live-poptv-fastly-prod.global.ssl.fastly.net/pop/master.m3u8 +#EXTINF:-1 tvg-id="PopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Entertainment",Popstar! TV (1080p) [Offline] +https://a.jsrdn.com/broadcast/wAlxn4cs/c.m3u8 +#EXTINF:-1 tvg-id="PopularScience.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nAsNU9q.png" group-title="Science",Popular Science (720p) [Offline] +https://a.jsrdn.com/broadcast/447912f76b/+0000/c.m3u8 +#EXTINF:-1 tvg-id="PositivTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ULF3iOE.png" group-title="Family",Positiv TV (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8973036/live.m3u8 +#EXTINF:-1 tvg-id="PrimeTimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K36sd0M.png" group-title="Classic",Prime Time Drama (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-ptd/playlist.m3u8 +#EXTINF:-1 tvg-id="PTLTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EhISpCd.png" group-title="Religious",PTL TV Network (720p) +https://morningside-lh.akamaihd.net/i/jblive_1@303354/master.m3u8 +#EXTINF:-1 tvg-id="PureRock.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EAkvIw8.jpg" group-title="Music",Pure Rock [Offline] +http://159.69.56.148:25461/live/PuroRock/PuroRock24-7.com/25.m3u8 +#EXTINF:-1 tvg-id="QuahzTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KAS3bJt.png" group-title="Music",Quahz TV (360p) +https://t06243a-lh.akamaihd.net/i/t06243a_1@536897/index_750_av-p.m3u8 +#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) +https://lsqvc1uscln-lh.akamaihd.net/i/lsqvc1uscln_01@809410/master.m3u8 +#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) +https://lsqvc1usott-lh.akamaihd.net/i/lsqvc1usott_01@838836/master.m3u8 +#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (German) (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVC2.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC 2 (720p) +https://lsqvc2us-lh.akamaihd.net/i/lsqvc2us_01@809440/master.m3u8 +#EXTINF:-1 tvg-id="QVC3.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC 3 (720p) +https://lsqvc3us-lh.akamaihd.net/i/lsqvc3us_01@809459/master.m3u8 +#EXTINF:-1 tvg-id="QVCBeauty.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Beauty (German) (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCItalia.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Italia (540p) +https://qrg.akamaized.net/hls/live/2017383/lsqvc1it/master.m3u8 +#EXTINF:-1 tvg-id="QVCJapan.us" tvg-country="JP" tvg-language="Japanese" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Japan (720p) +https://cdn-live1.qvc.jp/iPhone/1501/1501.m3u8 +#EXTINF:-1 tvg-id="QVCPlus.de" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvcplus.png" group-title="Shop",QVC PLUS (540p) +https://d2mn03dhv5o3g8.cloudfront.net/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCStyleDeutsch.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC Style (Deutsch) (540p) +http://live.qvcde.simplestreamcdn.com/live/qvcde_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUK.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUK.us" tvg-country="UK" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK (540p) +https://d1txbbj1u9asam.cloudfront.net/live/qvcuk_main_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK +1 (540p) +https://live-qvcuk.simplestreamcdn.com/hera/remote/qvcuk_primary_sdi1/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKBeauty.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Beauty (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_beauty_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKExtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Extra (540p) +https://live-qvcuk.simplestreamcdn.com/live/qvcuk_extra_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVCUKStyle.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC UK Style (540p) +http://live.qvcuk.simplestreamcdn.com/live/qvcuk_style_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVC2Deutsch.us" tvg-country="US" tvg-language="German" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC2 (Deutsch) (540p) +http://live.qvcde.simplestreamcdn.com/live/qvcde_plus_clean/bitrate1.isml/live.m3u8 +#EXTINF:-1 tvg-id="QVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X9LBFzK.jpg" group-title="Religious",QVTV (720p) +https://qvmstream.tulix.tv/720p/720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioInmaculada.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Religious",Radio Inmaculada (1080p) [Not 24/7] +https://tv2.fastcast4u.com:3594/live/vsojgreilive.m3u8 +#EXTINF:-1 tvg-id="RadioJavan.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oO6kxWO.png" group-title="",Radio Javan (1080p) +https://stream.rjtv.stream/live/smil:rjtv.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioRitmo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Music",Radio Ritmo (1080p) [Not 24/7] +https://59514edd5dd8e.streamlock.net/lax/lax/playlist.m3u8 +#EXTINF:-1 tvg-id="RadioUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://radiou.com/wp-content/uploads/2018/06/RadioUSiteFooterTransparent.png" group-title="Music",Radio U TV (720p) [Not 24/7] +https://cdnlive.radiou.com/LS-ATL-43240-1/index.m3u8 +#EXTINF:-1 tvg-id="RadioyTelevisionMarti.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B6C0FyM.png" group-title="Local",Radio y Televisión Martí (1080p) +https://ocb-lh.akamaihd.net/i/ocb_mpls_tvmc1@383606/master.m3u8 +#EXTINF:-1 tvg-id="RealVision.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mLUmsCt.png" group-title="Business",Real Vision (720p) +https://a.jsrdn.com/broadcast/2a755012a8/+0000/c.m3u8 +#EXTINF:-1 tvg-id="RedApple21FairfaxCountyPublicSchools.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ICcQUCH.png" group-title="Education",Red Apple 21 (Fairfax County Public Schools) (480p) [Not 24/7] +https://cs.ebmcdn.net/eastbay-live-hs-1/fcps/mp4:fcps/playlist.m3u8 +#EXTINF:-1 tvg-id="Reelz.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz (720p) [Not 24/7] +https://a.jsrdn.com/broadcast/d37066a396/+0000/c.m3u8 +#EXTINF:-1 tvg-id="RelaxingRain.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/USiqGyp.jpg" group-title="",Relaxing Rain (720p) +https://a.jsrdn.com/broadcast/76381deeda/+0000/c.m3u8 +#EXTINF:-1 tvg-id="RetroTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/retro-tv-us.png" group-title="Classic",Retro TV (720p) +https://bcovlive-a.akamaihd.net/5e531be3ed6c41229b2af2d9bffba88d/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="KCKSLD9.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/retro-tv-us.png" group-title="Classic",Retro TV (KCKS-LD9) (480p) +https://cdn.igocast.com/channel9_hls/channel9_master.m3u8 +#EXTINF:-1 tvg-id="Revn.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI1NDE5MjRf/Revn_375x375.png" group-title="",Rev'n (720p) +https://bcovlive-a.akamaihd.net/a71236fdda1747999843bd3d55bdd6fa/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="KCKSLD7.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Auto",Rev'n (KCKS-LD7) (480p) +https://cdn.igocast.com/channel7_hls/channel7_master.m3u8 +#EXTINF:-1 tvg-id="RevelationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sOVdYJZ.png" group-title="Religious",Revelation TV (576p) +https://rtv.cdn.mangomolo.com/rtv/smil:rtv.stream.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RevelationTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sOVdYJZ.png" group-title="Religious",Revelation TV (576p) +https://rtv.cdn.mangomolo.com/rtv/smil:switch.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="RevryQueer.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry Queer (720p) +https://4aafa23ec0a6477ca31466bd83a115a4.mediatailor.us-west-2.amazonaws.com/v1/master/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-GALXY/mt/galxy/43/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RoosterTeethTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3o9cG76.png" group-title="",Rooster Teeth TV (1080p) +https://d2klx6wjx7p5vm.cloudfront.net/Rooster-teeth/ngrp:Rooster-teeth_all/playlist.m3u8 +#EXTINF:-1 tvg-id="RunwayTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/RunwayTV_960x960.png?raw=true" group-title="",Runway TV (720p) [Not 24/7] +https://runway-hls.secdn.net/runway-live/play/runway/playlist.m3u8 +#EXTINF:-1 tvg-id="SafeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sDGZCpL.png" group-title="Religious",SafeTV (1080p) +http://18.191.91.130:1935/live/safetv/playlist.m3u8 +#EXTINF:-1 tvg-id="SamsungWildlife.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/x06npU2.png" group-title="",Samsung Wildlife [Offline] +https://d23gend7a1exlu.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Saveur.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Saveur (720p) [Offline] +https://a.jsrdn.com/broadcast/060753d37e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="SciFi4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU3MThf/NostTV_SciFi4U_576x576.png" group-title="Classic",Sci-Fi 4U (720p) +https://broadcast.mytvtogo.net/SciFiTV4u/SciFiTV4u/playlist.m3u8 +#EXTINF:-1 tvg-id="Screamfest.us" tvg-country="US" tvg-language="English" tvg-logo="https://app.digitickets.co.uk/userfiles/companies/screamfestlogo.300x150.png" group-title="Movies",Screamfest (720p) [Offline] +https://vcnleomarkstudios.teleosmedia.com/stream/leomarkstudios/screamfest/playlist.m3u8 +#EXTINF:-1 tvg-id="ScreenDreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6hIfTMC.jpg" group-title="Relax",Screen Dreams (720p) +https://content.uplynk.com/channel/3e4b9cada2b74cf18977298804134a36.m3u8 +#EXTINF:-1 tvg-id="SeattleChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NfE5jtp.png" group-title="Local",Seattle Channel (720p) [Not 24/7] +https://wowzaprod188-i.akamaihd.net/hls/live/730322/3fa8d5f5/playlist.m3u8 +#EXTINF:-1 tvg-id="SentTVGlobalNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ogvLLji.png" group-title="General",Sent TV Global Network (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-stgn/mono.m3u8 +#EXTINF:-1 tvg-id="SGTN49.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mJtJhjF.png" group-title="General",Sent TV Global Network Atlanta (SGTN-49) (720p) [Timeout] +http://stgn-49.tulix.tv/live19/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="Shabakeh7.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LeYSfhX.png" group-title="",Shabakeh 7 (720p) +http://rtmp.abnsat.com/hls/txministry.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IfF3zyd.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IfF3zyd.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] +http://api.new.livestream.com/accounts/25038049/events/7483919/live.m3u8 +#EXTINF:-1 tvg-id="ShalomTV.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://i3.wp.com/unored.tv/wp-content/uploads/2018/10/Shalom-TV-logo-oficial.jpg" group-title="Religious",Shalom TV (720p) [Not 24/7] +https://livestreamcdn.net:444/ShalomTV/ShalomTV/playlist.m3u8 +#EXTINF:-1 tvg-id="ShopHQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WVAQvvX.jpg" group-title="Shop",Shop HQ (720p) +https://aos01-evine.secure.footprint.net/evine/clean/appleman.m3u8 +#EXTINF:-1 tvg-id="ShopLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606f94fdf46bcb6017662744" group-title="Shop",Shop LC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/DASH_DASH/Live/channel(ott)/master.mpd +#EXTINF:-1 tvg-id="KCKSLD10.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Shop",Shop LC (KCKS-LD10) (480p) [Not 24/7] +https://cdn.igocast.com/channel10_hls/channel10_master.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) +https://shoutfactory-shoutfactory-zype.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Skwad.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sv7WkKe.png" group-title="Kids",SKWAD (360p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=71 +#EXTINF:-1 tvg-id="Slimo.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Slimo (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7e2783932c8368bdbfd8a5/playlist.m3u8 +#EXTINF:-1 tvg-id="SmartLifestyleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CxKWwjx.jpg" group-title="Lifestyle",Smart Lifestyle TV [Offline] +https://t01587-lh.akamaihd.net/i/t01587SmartLifeStyle_1@692079/master.m3u8 +#EXTINF:-1 tvg-id="Smile.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TBN_Smile_512x512.png?raw=true" group-title="",Smile (540p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266916/live.m3u8 +#EXTINF:-1 tvg-id="SoniderosTV.us" tvg-country="US;MX" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/www.sonideros.tv/picture?width=320&height=320" group-title="Music",Sonideros TV (360p) [Not 24/7] +https://tv2.fastcast4u.com:3728/live/soniderostvlive.m3u8 +#EXTINF:-1 tvg-id="SBN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting (SBN) (720p) +https://sonlife7-i.akamaihd.net/hls/live/585011/ch7/master.m3u8 +#EXTINF:-1 tvg-id="SBN.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting (SBN) (720p) [Offline] +https://sonlife5-i.akamaihd.net/hls/live/584631/ch5/master.m3u8 +#EXTINF:-1 tvg-id="SBNGlobal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/h9Gxavk.png" group-title="Religious",SonLife Broadcasting Global (SBN) (720p) [Offline] +https://sonlife10-i.akamaihd.net/hls/live/585013/ch10/master.m3u8 +#EXTINF:-1 tvg-id="SpikeItalia.us" tvg-country="IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Spike_logo_2015.svg/1280px-Spike_logo_2015.svg.png" group-title="",Spike Italia (480p) [Offline] +https://viacomitalytest-lh.akamaihd.net/i/sbshdlive_1@829515/master.m3u8 +#EXTINF:-1 tvg-id="SpiritTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jR24flK.png" group-title="Religious",Spirit TV (720p) [Not 24/7] +https://cdnlive.myspirit.tv/LS-ATL-43240-2/index.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (720p) +https://playout4multirtmp.tulix.tv/live6/Stream1/playlist.m3u8 +#EXTINF:-1 tvg-id="SportskoolTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Sportskool TV (486p) +https://a.jsrdn.com/broadcast/fabeab4b08/+0000/c.m3u8 +#EXTINF:-1 tvg-id="SpydarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NostTV_SpydarTV.png" group-title="Entertainment",Spydar TV (720p) +https://simultv.s.llnwi.net/n4s4/Spydar/interlink.m3u8 +#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Not 24/7] +https://stadiumlivein-i.akamaihd.net/hls/live/522512/mux_4/master.m3u8 +#EXTINF:-1 tvg-id="StadiumLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/Stadium.png" group-title="Sports",Stadium | Live (720p) [Offline] +https://bcovlive-a.akamaihd.net/e64d564b9275484f85981d8c146fb915/us-east-1/5994000126001/f3d8696d886f4c3b9612132643061743/playlist_ssaiM.m3u8 +#EXTINF:-1 tvg-id="STARChannel.us" tvg-country="ES" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/e4izZbC.jpg" group-title="",STAR Channel (Spain) [Offline] +http://45.179.140.242:8000/play/a0h5 +#EXTINF:-1 tvg-id="STARLife.us" tvg-country="ES" tvg-language="Spanish;English" tvg-logo="https://i.imgur.com/e4izZbC.png" group-title="",STAR Life (Spain) [Offline] +http://45.179.140.242:8000/play/a0h4 +#EXTINF:-1 tvg-id="StockchartsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d.stockcharts.com/img/scc-logo-light.png" group-title="Business",StockCharts TV (1080p) [Not 24/7] +https://iptv-all.lanesh4d0w.repl.co/united-states/stockchartstv +#EXTINF:-1 tvg-id="StreetMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DVfEmq7.png" group-title="Music",Street Music 4U (720p) +https://59d39900ebfb8.streamlock.net/streetmusic/streetmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="StreetMusic4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DVfEmq7.png" group-title="Music",Street Music 4U (720p) [Not 24/7] +https://broadcast.mytvtogo.net/streetmusic/streetmusic/playlist.m3u8 +#EXTINF:-1 tvg-id="SubRangTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/xMN1q8P.jpg" group-title="News",SubRang TV (720p) [Not 24/7] +https://cdn20.liveonlineservices.com/hls/subrang.m3u8 +#EXTINF:-1 tvg-id="SubRangTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/xMN1q8P.jpg" group-title="News",SubRang TV (720p) [Not 24/7] +https://cdn61.liveonlineservices.com/hls/subrang.m3u8 +#EXTINF:-1 tvg-id="SwordandShield.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xwHhiAc.png" group-title="Documentary",Sword and Shield (720p) +https://a.jsrdn.com/broadcast/9e63a1b236/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TAGTV.us" tvg-country="US" tvg-language="Hindi" tvg-logo="https://i.imgur.com/9vosZt4.jpg" group-title="News",TAG TV (1080p) [Not 24/7] +https://cdn30.liveonlineservices.com/hls/tagtv.m3u8 +#EXTINF:-1 tvg-id="TangoTV.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/tangotvchannel/picture?width=320&height=320" group-title="Entertainment",TangoTV (768p) [Not 24/7] +https://panel.streamingtv-mediacp.online:1936/8066/8066/playlist.m3u8 +#EXTINF:-1 tvg-id="TasteItTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Taste It TV (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5af61f59d5eeee7af3d1db8f/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) +https://tastemadessai.akamaized.net/amagi_hls_data_tastemade-tastemade/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeAustralia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Australia (1080p) +https://tastemadeintaus-smindia.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) +https://tastemadees16intl-brightcove.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es16intl-brightcove/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TBD.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fbzbq1y.png" group-title="Entertainment",TBD. (720p) +https://content.uplynk.com/channel/1831163f97674328ad9f4b4814ed39c5.m3u8 +#EXTINF:-1 tvg-id="TBNArmenia.us" tvg-country="AM" tvg-language="Armenian" tvg-logo="https://i.imgur.com/zdJeT34.jpg" group-title="Religious",TBN Armenia [Offline] +https://bogtvhdlive-f.akamaihd.net/i/tbn_armenia@198331/master.m3u8 +#EXTINF:-1 tvg-id="TBNAsia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QyMAyrs.jpg" group-title="Religious",TBN Asia (360p) [Not 24/7] +http://210.210.155.35/qwr9ew/s/s39/02.m3u8 +#EXTINF:-1 tvg-id="TBNInspire.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TBN_Hillsong_360x360.png?raw=true" group-title="Religious",TBN Inspire (720p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266909/live.m3u8 +#EXTINF:-1 tvg-id="TBNUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zlZi5RN.jpg" group-title="Religious",TBN US (1080p) [Not 24/7] +https://api.new.livestream.com/accounts/27460990/events/8266920/live.m3u8 +#EXTINF:-1 tvg-id="TBNUkraina.us" tvg-country="UA" tvg-language="Ukrainian" tvg-logo="https://i.imgur.com/DHwhdRF.png" group-title="Religious",TBN Украина (720p) [Timeout] +http://62.32.67.187:1935/WEB_Ukraine24/Ukraine24.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TBSEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/TBS_Network-logo.svg/320px-TBS_Network-logo.svg.png" group-title="General",TBS East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023172/tbseast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TBSWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/TBS_Network-logo.svg/320px-TBS_Network-logo.svg.png" group-title="General",TBS West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023174/tbswest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TCMEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sbrSfhC.jpg" group-title="Classic",TCM East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023186/tcmeast/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="TCMWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sbrSfhC.jpg" group-title="Classic",TCM West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023187/tcmwest/noslate/VIDEO_1_5128000.m3u8 +#EXTINF:-1 tvg-id="TCT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TV29g3L.png" group-title="Religious",TCT (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/tct +#EXTINF:-1 tvg-id="TCTKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YUaeJiC.png" group-title="Kids",TCT Kids (1080p) [Offline] +https://iptv-all.lanesh4d0w.repl.co/united-states/tctkids +#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TDAmeritradeNetwork_284x284.png?raw=true" group-title="Business",TD Ameritrade Network (1080p) +https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8 +#EXTINF:-1 tvg-id="TechnoWarehouseUS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GyxXMDv.png" group-title="Music",Techno Warehouse (US) (1080p) [Not 24/7] +https://eu-nl-012.worldcast.tv/dancetelevisionthree/dancetelevisionthree.m3u8 +#EXTINF:-1 tvg-id="Telemundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQezVfVamzd08ywLqOjqVqfOtEL-ZyphG2b0w&usqp=CAU" group-title="General",Telemundo (416p) [Offline] +https://wmaqlive-f.akamaihd.net/i/wmaqb1_1@24420/master.m3u8 +#EXTINF:-1 tvg-id="WZDCCD.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/G8Bk8si.png" group-title="General",Telemundo 44 Washington DC (432p) [Offline] +https://wrclive-f.akamaihd.net/i/wrcb2_1@46880/master.m3u8 +#EXTINF:-1 tvg-id="WSCVNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] +https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 +#EXTINF:-1 tvg-id="WSCVNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSCV Noticias Miami FL (1080p) [Not 24/7] +https://wscvlive-lh.akamaihd.net/i/MIAMI_STREAM6@183618/master.m3u8 +#EXTINF:-1 tvg-id="WSNSNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Local",Telemundo WSNS Noticias Chicago IL (1080p) [Not 24/7] +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 +#EXTINF:-1 tvg-id="WSNSNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Telemundo WSNS Noticias Chicago IL (720p) [Not 24/7] +https://wmaqlive-f.akamaihd.net/i/CHICAGO_STREAM4@24420/master.m3u8 +#EXTINF:-1 tvg-id="TeleRaydo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxKb7yF.jpg" group-title="",TeleRadyo (720p) +https://abscbn-ono.akamaized.net/midroll/amagi_hls_data_abscbnAAA-abscbn-teleradyo-oando/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Tempe11.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Rgy4qWN.gif" group-title="Local",Tempe 11 AZ (720p) [Not 24/7] +https://granicusliveus1-a.akamaihd.net/tempe/G0355_003/playlist.m3u8 +#EXTINF:-1 tvg-id="TGJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cZ4pGmk.png" group-title="",TG Junior (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=31 +#EXTINF:-1 tvg-id="TheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjg0MDgzNDBf/TheArchive_300x300.png" group-title="Classic",The Archive (486p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=74 +#EXTINF:-1 tvg-id="TheBeachChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.squarespace-cdn.com/content/5bbd189f840b16624eaaaa54/1564164558355-89YX9OANPEHYV71HWPT1/BC+LOGO_CH5_REVISED.png" group-title="Lifestyle",The Beach Channel (720p) +https://live.lwcdn.com/live/amlst:ALH8QFrg_all/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/14c063cc-8be5-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips +#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) [Offline] +https://a.jsrdn.com/broadcast/256ccf645e/+0000/c.m3u8 +#EXTINF:-1 tvg-id="KTLADT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="General;Local",The CW Los Angeles CA (KTLA-DT1) (720p) [Not 24/7] +http://trn03.tulix.tv/teleup-N8qwnqgUq2/playlist.m3u8 +#EXTINF:-1 tvg-id="WPIX.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="Local",The CW New York NY (WPIX1) (720p) [Offline] +http://encodercdn1.frontline.ca/kamino/output/pix11_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WTLF.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/The_CW.svg/320px-The_CW.svg.png" group-title="Local",The CW Tallahassee FL (WTLF1) (720p) [Not 24/7] +https://5e6cea03e25b6.streamlock.net/live/WTLHCW.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) [Geo-blocked] +https://a.jsrdn.com/broadcast/9Kl3dcb5l/c.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) +https://thefirst-distroscale.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="WFSU-TV2.us" tvg-country="US" tvg-language="English" tvg-logo="https://thefloridachannel.org/wp-content/uploads/logo-primary-1.png" group-title="Local",The Florida Channel Tallahassee FL (WFSU-TV2) (480p) +https://5e6cea03e25b6.streamlock.net/live/WFSU-FL.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheHeartlandNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI1NDE5MjJf/Heartland_720x720.png" group-title="",The Heartland Network (720p) +https://bcovlive-a.akamaihd.net/1ad942d15d9643bea6d199b729e79e48/us-east-1/6183977686001/playlist.m3u8 +#EXTINF:-1 tvg-id="TheLoveDestination.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eXBQfaP.png" group-title="Entertainment",The Love Destination (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=43 +#EXTINF:-1 tvg-id="TheNowNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://channels.roku.com/images/be4667a16b1e483b8c7746156192b5ba-hd.jpg" group-title="Religious",The Now Network (480p) [Not 24/7] +https://link.frontlayer.com/services/hls2/fl619843/index.m3u8 +#EXTINF:-1 tvg-id="Ohiochannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://a.thumbs.redditmedia.com/IoXfiVbzWSKlacdkf05KQbNa_4xeavHDe0QWbbgCMe8.jpg" group-title="Local",The Ohio Channel (WOSU-DT3) (720p) +https://5ebe6889de541.streamlock.net/live/stream_10/playlist.m3u8 +#EXTINF:-1 tvg-id="TheOutdoorCookingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PnBXXw4.png" group-title="Cooking",The Outdoor Cooking Channel (480p) [Offline] +http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/playlist.m3u8 +#EXTINF:-1 tvg-id="TheRetroChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t3i1HtE.jpg" group-title="Music",The Retro Channel (1080p) [Not 24/7] +https://5fd5567570c0e.streamlock.net/theretrochannel/stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TheRockvilleChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0mvGibX.jpg" group-title="",The Rockville Channel (720p) [Not 24/7] +http://granicusliveus12-a.akamaihd.net/rockvillemd/G0458_001/playlist.m3u8 +#EXTINF:-1 tvg-id="TheShoppingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn.iphoneincanada.ca/wp-content/uploads/2015/07/the-shopping-channel-logo.jpg" group-title="Shop",The Shopping Channel (720p) +https://tscstreaming-lh.akamaihd.net/i/TSCLiveStreaming_1@91031/master.m3u8 +#EXTINF:-1 tvg-id="TheSoutheasternChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AG0wZml.jpg" group-title="Local",The Southeastern Channel (540p) +http://147.174.13.196/live/WIFI-1296k-540p/WIFI-1296k-540p.m3u8 +#EXTINF:-1 tvg-id="TheTitanicChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/w0P4DRZ.jpg" group-title="Series",The Titanic Channel (720p) +https://a.jsrdn.com/broadcast/e6bdcb5ae9/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZzyXAKm.jpg" group-title="News",The Wall Street Journal Live (720p) +https://d155hi8td9k2ns.cloudfront.net/out/wapo-medialive3-rtmp/live.m3u8 +#EXTINF:-1 tvg-id="TheWallStreetJournalLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZzyXAKm.jpg" group-title="News",The Wall Street Journal Live (720p) +https://wsjlivehls-lh.akamaihd.net/i/events1_1@174990/master.m3u8 +#EXTINF:-1 tvg-id="ThisTVNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FQCVaSR.png" group-title="",This TV Network (480p) +https://cdn.igocast.com/channel11_hls/channel11_master.m3u8 +#EXTINF:-1 tvg-id="TNTEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xvL9KPI.png" group-title="General",TNT East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023168/tnteast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TNTSports2Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 2 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_02/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports3Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 3 Brasil (240p) +https://glxlmn026c.singularcdn.net.br/playout_03/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports4Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 4 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_04/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTSports5Brasil.us" tvg-country="BR" tvg-language="Portuguese" tvg-logo="https://upload.wikimedia.org/wikipedia/pt/d/dc/Logotipo_TNT_Sports.png" group-title="Sports",TNT Sports 5 Brasil (720p) [Not 24/7] +https://glxlmn026c.singularcdn.net.br/playout_05/playlist.m3u8 +#EXTINF:-1 tvg-id="TNTWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xvL9KPI.png" group-title="General",TNT West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023170/tntwest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (1080p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=36 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=37 +#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5459795fc9f133a519bc0bef/colorLogoPNG.png" group-title="News",Top Stories by Newsy (720p) +http://content.uplynk.com/channel/04cce35dcd994bbc82d61805ae67a65f.m3u8 +#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SpH5ink.png" group-title="News",Top Stories by Newsy (720p) +https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8 +#EXTINF:-1 tvg-id="TPTNow.us" tvg-country="US" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Local",TPT Now KTCA-DT5 (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://api.new.livestream.com/accounts/12638076/events/8488790/live.m3u8 +#EXTINF:-1 tvg-id="TranquilThunderstorms.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Tranquil Thunderstorms (720p) +https://a.jsrdn.com/broadcast/18b42f9aef/+0000/c.m3u8 +#EXTINF:-1 tvg-id="TrinityChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.ytimg.com/vi/_Jt1yB1y-MM/hqdefault.jpg" group-title="Religious",Trinity Channel (480p) [Not 24/7] +http://rtmp1.abnsat.com/hls/trinity.m3u8 +#EXTINF:-1 tvg-id="TruTVEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/e3KabTt.jpg" group-title="",TruTV East (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023176/trueast/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TruTVWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/e3KabTt.jpg" group-title="",TruTV West (720p) [Geo-blocked] +https://tve-live-lln.warnermediacdn.com/hls/live/2023178/truwest/slate/VIDEO_0_3564000.m3u8 +#EXTINF:-1 tvg-id="TSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IX8uInV.png" group-title="Local",TSTV (720p) +http://tstv-stream.tsm.utexas.edu/hls/livestream_hi/index.m3u8 +#EXTINF:-1 tvg-id="TulalipTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2I3OG2n.png" group-title="",Tulalip TV (720p) [Not 24/7] +https://dcunilive262-lh.akamaihd.net/i/dclive_1@303126/index_150_av-p.m3u8?rebase=on&sd=10 +#EXTINF:-1 tvg-id="TVLand.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/tv-land-us.png" group-title="Classic",TV Land (1080p) [Not 24/7] +http://s1.mysportz.tv:2082/TVLand/playlist.m3u8 +#EXTINF:-1 tvg-id="WHPSCD.us" tvg-country="US" tvg-language="English" tvg-logo="http://313watkins.com/images/logo.png" group-title="Local",TV33 Detroit Live (WHPR) (720p) [Not 24/7] +http://162.244.81.156:1935/whprtv33roku/whprtv33roku/playlist.m3u8 +#EXTINF:-1 tvg-id="TVBJ1.us" tvg-country="HK" tvg-language="Chinese" tvg-logo="" group-title="",TVB J1 (720p) [Geo-blocked] +https://bcovlive-a.akamaihd.net/f23dfe49b06b45d8878b55b4b6909595/us-west-2/5324042807001/4a3bca5b047b4564b18bb12dfa26ba62/playlist_ssaiM.m3u8 +#EXTINF:-1 tvg-id="TVS.us" tvg-country="US" tvg-language="English" tvg-logo="https://paraguaype.com/wp-content/uploads/2016/07/tvs-encarnacion-televisora-del-sur-en-vivo-online.jpg" group-title="",TVS (1080p) [Not 24/7] +https://rds3.desdeparaguay.net/tvs/tvs/playlist.m3u8 +#EXTINF:-1 tvg-id="TVSBoxing.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sal5CkX.jpg" group-title="Sports",TVS Boxing (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvsboxing/index.m3u8 +#EXTINF:-1 tvg-id="TVSCipherNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Cipher Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmystery/index.m3u8 +#EXTINF:-1 tvg-id="TVSClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VLWDHGs.png" group-title="Classic",TVS Classic Movies (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsclassicmovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSClassicSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ui099xQ.jpg" group-title="Sports",TVS Classic Sports (360p) +http://rpn1.bozztv.com/36bay2/gusa-tvs/index.m3u8 +#EXTINF:-1 tvg-id="TVSComedyNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lHvWCyV.jpg" group-title="Comedy",TVS Comedy Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-comedyclassics/index.m3u8 +#EXTINF:-1 tvg-id="TVSDriveInMovie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RhKSIGQ.jpg" group-title="Movies",TVS Drive In Movie (272p) +https://rpn1.bozztv.com/36bay2/gusa-tvsdriveinmovie/index.m3u8 +#EXTINF:-1 tvg-id="TVSFamilyChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iuQyJ7f.jpg" group-title="Family",TVS Family Channel (480p) +https://rpn1.bozztv.com/36bay2/gusa-TVSFamilyChannel/index.m3u8 +#EXTINF:-1 tvg-id="TVSFilmNoirNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Movies",TVS Film Noir Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-TVSFilmNoir/index.m3u8 +#EXTINF:-1 tvg-id="TVSFrontPageDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Front Page Detective (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsfrontpagedetective/index.m3u8 +#EXTINF:-1 tvg-id="TVSHiTops.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Kids",TVS Hi Tops (480p) +https://rpn1.bozztv.com/36bay2/gusa-hitops/index.m3u8 +#EXTINF:-1 tvg-id="TVSHollywoodHistory.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Hollywood History (464p) +https://rpn1.bozztv.com/36bay2/gusa-tvshollywoohistory/mono.m3u8 +#EXTINF:-1 tvg-id="TVSHorrorNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uNQeGHw.jpg" group-title="Classic",TVS Horror Network (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvshorror/index.m3u8 +#EXTINF:-1 tvg-id="TVSInspirationalNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Inspirational Network (360p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-TVSInspirationalNetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSMainstreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/37OGfa3.jpg" group-title="Classic",TVS Mainstreet (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmainst/index.m3u8 +#EXTINF:-1 tvg-id="TVSMusicNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Music",TVS Music Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvsmusic/index.m3u8 +#EXTINF:-1 tvg-id="TVSNostalgia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Nostalgia (720p) +https://rpn1.bozztv.com/36bay2/gusa-nostalgia/index.m3u8 +#EXTINF:-1 tvg-id="TVSNostalgiaMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5Ygj2DL.jpg" group-title="Classic",TVS Nostalgia Movies (472p) +https://rpn1.bozztv.com/36bay2/gusa-tvsNostalgiaMovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSPetParadeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Pet Parade Network (352p) +https://rpn1.bozztv.com/36bay2/gusa-petparadenetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSPinballNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Kids",TVS Pinball Network (360p) +https://rpn1.bozztv.com/36bay2/gusa-TVSCartoonNetwork/index.m3u8 +#EXTINF:-1 tvg-id="TVSQuizShowNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Classic",TVS Quiz Show Network (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvsgameshow/index.m3u8 +#EXTINF:-1 tvg-id="TVSRareCollectibles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Shop",TVS Rare Collectibles (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsrarecollectibles/index.m3u8 +#EXTINF:-1 tvg-id="TVSSelectNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="General",TVS Select Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsselect/index.m3u8 +#EXTINF:-1 tvg-id="TVSSiloDiscountNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Shop",TVS Silo Discount Network (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvssilodiscount/index.m3u8 +#EXTINF:-1 tvg-id="TVSSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OFO86K5.jpg" group-title="Sports",TVS Sports (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvssports/index.m3u8 +#EXTINF:-1 tvg-id="TVSSportsBureau.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="Sports",TVS Sports Bureau (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvssportsbureau/index.m3u8 +#EXTINF:-1 tvg-id="TVSTallyHo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/t0ly2m8.jpg" group-title="Classic",TVS Tally Ho (480p) +https://rpn1.bozztv.com/36bay2/gusa-tvstallyho/index.m3u8 +#EXTINF:-1 tvg-id="TVSTavern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5UjqDht.jpg" group-title="Classic",TVS Tavern (480p) +https://rpn1.bozztv.com/36bay2/gusa-tavern/index.m3u8 +#EXTINF:-1 tvg-id="TVSTelevisionNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="General",TVS Television Network (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvstn/index.m3u8 +#EXTINF:-1 tvg-id="TVSTodayHomeEntertainmentNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pXOyNEy.png" group-title="",TVS Today Home Entertainment Network (480p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-TVSTodayHomeEntertainment/index.m3u8 +#EXTINF:-1 tvg-id="TVSTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bgqy4fL.jpg" group-title="Travel",TVS Travel Network (720p) [Not 24/7] +https://rpn1.bozztv.com/36bay2/gusa-tvstravel/index.m3u8 +#EXTINF:-1 tvg-id="TVSTurbo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RMewTGr.jpg" group-title="Sports",TVS Turbo (720p) +https://rpn1.bozztv.com/36bay2/gusa-tvsturbo/index.m3u8 +#EXTINF:-1 tvg-id="TVSWesternMovie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UsgbmfF.png" group-title="Classic",TVS Western Movie (288p) +https://rpn1.bozztv.com/36bay2/gusa-tvswesternmovies/index.m3u8 +#EXTINF:-1 tvg-id="TVSWomenSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jQdBjyx.jpg" group-title="Sports",TVS Women Sports (360p) +https://rpn1.bozztv.com/36bay2/gusa-tvswsn/index.m3u8 +#EXTINF:-1 tvg-id="UALRTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MrLTXL1.jpg" group-title="Local",UALR TV (720p) [Offline] +https://na-all23.secdn.net/pegstream3-live/play/65ea794b-dd82-41ce-8e98-a9177289a063/master.m3u8 +#EXTINF:-1 tvg-id="UCTVUniversityofCalifornia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ehMz9T5.png" group-title="Education",UCTV University of California (720p) [Not 24/7] +https://59e8e1c60a2b2.streamlock.net/509/509.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="UNWebTV.us" tvg-country="INT" tvg-language="English" tvg-logo="https://i.imgur.com/lPyJhBN.png" group-title="News",UN Web TV (540p) [Offline] +https://bcliveunivsecure-lh.akamaihd.net/i/un150_A1_1@575439/master.m3u8 +#EXTINF:-1 tvg-id="UnbeatenCombat.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA3OTU1MDBf/UnbeatenCombat_450x450.png" group-title="Sports",Unbeaten Combat (720p) [Offline] +https://d179m5eq83yziw.cloudfront.net/live3/unbeaten_tv/bitrate1-clear.isml/manifest.m3u8 +#EXTINF:-1 tvg-id="Unidentified.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/naYszow.jpg" group-title="Documentary",Unidentified [Offline] +https://a.jsrdn.com/broadcast/4hhfi556/indexR720P.m3u8 +#EXTINF:-1 tvg-id="KCKSLD8.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM5NTI2OTZf/TV25_360x360.png" group-title="Sports",Untamed Sports TV (KCKS-LD8) (480p) [Not 24/7] +https://cdn.igocast.com/channel8_hls/channel8_master.m3u8 +#EXTINF:-1 tvg-id="UNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CzIpMK9.jpg" group-title="",UNTV News & Recue (1080p) [Timeout] +https://cdn.untvweb.com/live-stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VallenatoInternacional.us" tvg-country="US;HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/valleinalradio/picture?width=320&height=320" group-title="Music",Vallenato Internacional (720p) [Not 24/7] +https://59a564764e2b6.streamlock.net/vallenato/Vallenato2/playlist.m3u8 +#EXTINF:-1 tvg-id="VBSTV.us" tvg-country="US" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/IWpevBp.jpg" group-title="",VBS TV (480p) [Not 24/7] +http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://d80z5qf1qyhbf.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="Vevo2K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SG96HGW.jpg" group-title="Music",Vevo 2K (1080p) [Offline] +https://5fa09a21270b74000140368e-samsung.ssai.zype.com/5fa09a21270b74000140368e_samsung/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoCountry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BFdWrhQ.jpg" group-title="Music",Vevo Country (1080p) [Offline] +https://5dcc69faf960dd5dcc551818-s-2.ssai.zype.com/5dcc69faf960dd5dcc551818-s-2/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Lbc9cYw.png" group-title="Music",Vevo Hip Hop (1080p) +https://5dcc6a54d90e8c5dc4345c16-s-4.ssai.zype.com/5dcc6a54d90e8c5dc4345c16-s-4/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoHoliday.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/11162020/Vevo_Holiday_190X190.png?raw=true" group-title="",Vevo Holiday (1080p) [Offline] +https://5dcc69bb1621dc5de50b1db7-s-1.ssai.zype.com/5dcc69bb1621dc5de50b1db7-s-1/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoLatino.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/D7SwmuB.png" group-title="Music",Vevo Latino (1080p) [Not 24/7] +https://5dcc6a9f1621dc5dd511ca14-s-5.ssai.zype.com/5dcc6a9f1621dc5dd511ca14-s-5/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoPopEurope.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Me1wLzi.jpg" group-title="Music",Vevo Pop Europe (1080p) +https://5f3491c50b093e00015a3c4c-samsung.eu.ssai.zype.com/5f3491c50b093e00015a3c4c_samsung_eu/manifest.m3u8 +#EXTINF:-1 tvg-id="VevoRB.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fJFzPB7.jpg" group-title="Music",Vevo R&B (1080p) [Offline] +https://5dcc6a2840dfd15e7f8518ef-s-3.ssai.zype.com/5dcc6a2840dfd15e7f8518ef-s-3/manifest.m3u8 +#EXTINF:-1 tvg-id="VH1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/27/VH1_2020.png" group-title="Music",VH1 (1080p) +https://content.uplynk.com/channel/36953f5b6546464590d2fcd954bc89cf.m3u8 +#EXTINF:-1 tvg-id="VictorValleyMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/VictorValleyMovies_229x229.png?raw=true" group-title="Movies",Victor Valley Movies (1080p) [Not 24/7] +https://2-fss-1.streamhoster.com/pl_122/201794-1414514-1/playlist.m3u8 +#EXTINF:-1 tvg-id="VictoryTelevisionNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yqA2PJj.jpg" group-title="Religious",Victory Television Network (240p) [Timeout] +http://184.173.179.163:1935/victorytelevisionnetwork/victorytelevisionnetwork/playlist.m3u8 +#EXTINF:-1 tvg-id="WHOHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oua9m6O.jpg" group-title="Local",Village of Hastings-On-Hudson NY (WHOH-TV) (360p) +http://stream.swagit.com/live-edge/hastingsonhudsonny/smil:std-4x3-1-a/playlist.m3u8 +#EXTINF:-1 tvg-id="VoAPersian.us" tvg-country="IR" tvg-language="Persian" tvg-logo="https://i.imgur.com/7uEI6ck.png" group-title="News",VoA Persian (1080p) +https://voa-lh.akamaihd.net/i/voapnn_7@72817/master.m3u8 +#EXTINF:-1 tvg-id="VoATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9A6LZ7z.jpg" group-title="News",VoA TV (1080p) +https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/master.m3u8 +#EXTINF:-1 tvg-id="VoATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9A6LZ7z.jpg" group-title="News",VoA TV (1080p) [Not 24/7] +https://voa-lh.akamaihd.net/i/voa_mpls_tvmc3_3@320295/master.m3u8 +#EXTINF:-1 tvg-id="VSiN.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/VSiN_400x400.png?raw=true" group-title="",VSiN (720p) +https://stream.rcncdn.com/live/vsinproxy.m3u8 +#EXTINF:-1 tvg-id="WarnerTV.us" tvg-country="TH" tvg-language="Thai" tvg-logo="http://static.epg.best/fr/WarnerTV.fr.png" user-agent="Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36" group-title="Movies",Warner TV (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 Macintosh; Intel Mac OS X 10_14_5 AppleWebKit/537.36 KHTML, like Gecko Chrome/76.0.3809.25 Safari/537.36 +https://www.livedoomovie.com/02_WarnerTVHD_720p/chunklist.m3u8 +#EXTINF:-1 tvg-id="WarnerTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://static.epg.best/fr/WarnerTV.fr.png" group-title="Movies",Warner TV (720p) [Timeout] +http://203.154.243.89:11205 +#EXTINF:-1 tvg-id="WatchItKid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DAhbkLv.png" group-title="Kids",Watch It Kid (486p) +https://content.uplynk.com/channel/ce3b524c342247549e996e7d3a977157.m3u8 +#EXTINF:-1 tvg-id="WatchItScream.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ylPU4Uf.jpg" group-title="Movies",Watch It Scream! (720p) +https://content.uplynk.com/channel/29aff31fecb848ab9044369db2d61642.m3u8 +#EXTINF:-1 tvg-id="WCBI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WCBI-TV News Tupelo MS (720p) +https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 +#EXTINF:-1 tvg-id="WCBI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WCBI-TV News Tupelo MS (720p) +https://dai.google.com/linear/hls/event/qLrnhs3RQUa2zMw9UBkroQ/master.m3u8 +#EXTINF:-1 tvg-id="WCCATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://worcester.vod.castus.tv/wccalive.png" group-title="Local",WCCA 194 Worcester MA (WCCA-TV) (480p) +https://worcester.vod.castus.tv/live/ch1.m3u8 +#EXTINF:-1 tvg-id="WDAYNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDAY News Fargo ND (720p) +https://player-api.new.livestream.com/accounts/27442514/events/8305246/live.m3u8 +#EXTINF:-1 tvg-id="WDAYX.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local;Weather",WDAY-X Automatic Weather Frago ND (720p) +https://player-api.new.livestream.com/accounts/27442514/events/8331542/live.m3u8 +#EXTINF:-1 tvg-id="WDEF.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDEF-TV News Chattanooga TN (720p) +http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 +#EXTINF:-1 tvg-id="WDEF.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WDEF-TV News Chattanooga TN (720p) +http://dai.google.com/linear/hls/event/iVH_b5kWTteyRCy-YCoHOw/master.m3u8 +#EXTINF:-1 tvg-id="KCKSLD6.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",WeatherNation (KCKS-LD6) (480p) [Not 24/7] +https://cdn.igocast.com/channel6_hls/channel6_master.m3u8 +#EXTINF:-1 tvg-id="Westerns4U.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzU1NDU0OTlf/NostTV_Westerns4U.png" group-title="Classic",Westerns 4U (720p) [Not 24/7] +https://broadcast.mytvtogo.net/westerntv4u/westerntv4u/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (720p) +http://trn03.tulix.tv/teleup-mBm5MQ50rA/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (720p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/WGN_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="WGNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/wgn-america-us.png" group-title="Local",WGN Chicago IL (WGN-TV1) (480p) [Offline] +http://encodercdn1.frontline.ca/encoder182/output/WGN/playlist.m3u8 +#EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us" tvg-country="US" tvg-language="English" tvg-logo="http://wpcommunitymedia.org/images/city-of-white-plains.png" group-title="Local",White Plains Community Media (360p) +https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8 +#EXTINF:-1 tvg-id="WCAT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 3) (480p) +https://frontdoor.wcat-tv.org:8787/live/live.m3u8 +#EXTINF:-1 tvg-id="WCAT15.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 15) (360p) [Not 24/7] +https://edu-wcat.azureedge.net/live/live.m3u8 +#EXTINF:-1 tvg-id="WCAT22.us" tvg-country="US" tvg-language="English" tvg-logo="https://frontdoor.wcat-tv.org/Cablecast/WebFiles/7385/wcatlogo.png" group-title="Local",Winthrop Community Access TV (WCAT 22) (480p) +https://frontdoor.wcat-tv.org:8686/live/live.m3u8 +#EXTINF:-1 tvg-id="WLNGRadio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/11r6tgW.png" group-title="Local",WLNG Radio (410p) [Not 24/7] +http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8 +#EXTINF:-1 tvg-id="WLSTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WLS TV News (720p) +https://content.uplynk.com/channel/ext/aac37e2c66614e699fb189ab391084ff/wls_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WMFDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://wmfd.com/images/logo.png" group-title="Local",WMFD-TV 68 Mansfield OH (720p) [Not 24/7] +https://player-api.new.livestream.com/accounts/1194911/events/3466400/live.m3u8 +#EXTINF:-1 tvg-id="WMGT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WMGT-TV News Macon GA (720p) +https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 +#EXTINF:-1 tvg-id="WMGT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WMGT-TV News Macon GA (720p) +https://dai.google.com/linear/hls/event/ygKx2LkmRQCZ_orwBQhfFw/master.m3u8 +#EXTINF:-1 tvg-id="WPIX.us" tvg-country="US" tvg-language="English" tvg-logo="https://zap2it.tmsimg.com/h3/NowShowing/11462/s51306_h3_aa.png" group-title="Local",WPIX 11 (1080p) [Timeout] +http://71.187.29.220:8000/play/a08o/index.m3u8 +#EXTINF:-1 tvg-id="WPVITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WPVI-TV News (720p) +https://content.uplynk.com/channel/ext/10b98e7c615f43a98b180d51797e74aa/wpvi_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WTVDTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WTVD TV News (720p) +https://content.uplynk.com/channel/ext/f05837c508c44712aa7129d531f7dbe6/wtvd_24x7_news.m3u8 +#EXTINF:-1 tvg-id="WTVQ.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WTVQ-DT News Lexington KY (720p) +https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 +#EXTINF:-1 tvg-id="WTVQ.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WTVQ-DT News Lexington KY (720p) +https://dai.google.com/linear/hls/event/7xSxXPG1RqKkNva1wIWlVw/master.m3u8 +#EXTINF:-1 tvg-id="WuTangCollection.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jbMmsjI.png" group-title="Music",Wu Tang Collection (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=73 +#EXTINF:-1 tvg-id="WWAY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WWAY News Willmington NC (720p) +https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 +#EXTINF:-1 tvg-id="WWAY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WWAY News Willmington NC (720p) +https://dai.google.com/linear/hls/event/A7CgcBYNTuKfvFvW8rmiJA/master.m3u8 +#EXTINF:-1 tvg-id="WWENet.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",WWE Network (720p) +http://38.91.57.12:2082/wwe/playlist.m3u8 +#EXTINF:-1 tvg-id="WXXV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WXXV-TV News Biloxi MS (720p) +https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 +#EXTINF:-1 tvg-id="WXXV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Local",WXXV-TV News Biloxi MS (720p) +https://dai.google.com/linear/hls/event/cJXgmHHTQIGMhSzDk7TBsA/master.m3u8 +#EXTINF:-1 tvg-id="Xcorps.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SDKWWQu.png" group-title="Series",Xcorps (720p) [Timeout] +https://simultv.s.llnwi.net/n4s4/xcorps/interlink.m3u8 +#EXTINF:-1 tvg-id="Xcorps.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SDKWWQu.png" group-title="Series",Xcorps (720p) [Offline] +https://rpn1.bozztv.com/36bay2/gusa-xcorps/playlist.m3u8 +#EXTINF:-1 tvg-id="XploreReisen.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore Reisen (720p) [Not 24/7] +https://d46c0ebf9ef94053848fdd7b1f2f6b90.mediatailor.eu-central-1.amazonaws.com/v1/master/81bfcafb76f9c947b24574657a9ce7fe14ad75c0/live-prod/1ecb875d-8be7-11eb-a7de-bacfe1f83627/0/master.m3u8?country=DE&optout=0&uid=749544ec3d9a45d48c600d03cac91dfd&vendor=philips +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) +https://d1ewctnvcwvvvu.cloudfront.net/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://s.yimg.com/os/creatr-uploaded-images/2019-09/7ce28da0-de21-11e9-8ef3-b3d0b3dcfb8b" group-title="News",Yahoo! News (720p) +https://content.uplynk.com/channel/411ba7ca8cb6403a9e73509e49c3a77b.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) +https://a.jsrdn.com/broadcast/e0f99ab19c/+0000/c.m3u8 +#EXTINF:-1 tvg-id="YoutooAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3se2VEB.png" group-title="Entertainment",Youtoo America (1080p) +https://thegateway.app/YouToo/CueTones/playlist.m3u8 +#EXTINF:-1 tvg-id="YoutooAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3se2VEB.png" group-title="Entertainment",Youtoo America (1080p) +https://thegateway.app/YouToo/YTamerica/playlist.m3u8 +#EXTINF:-1 tvg-id="KanalDisney.us" tvg-country="RU" tvg-language="Russian" tvg-logo="https://i.imgur.com/Q9KoVy9.png" group-title="Kids",Канал Disney (576p) [Not 24/7] +http://188.40.68.167/russia/disney/playlist.m3u8 diff --git a/channels/us_adultiptv.m3u b/channels/us_adultiptv.m3u new file mode 100644 index 000000000..db43f2be3 --- /dev/null +++ b/channels/us_adultiptv.m3u @@ -0,0 +1,51 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultIPTVnetAnal.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Anal (720p) +http://cdn.adultiptv.net/anal.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetAsian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Asian (720p) +http://cdn.adultiptv.net/asian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Ass (720p) +http://cdn.adultiptv.net/bigass.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Dick (720p) +http://cdn.adultiptv.net/bigdick.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Tits (720p) +http://cdn.adultiptv.net/bigtits.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlonde.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blonde (720p) +http://cdn.adultiptv.net/blonde.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blowjob (720p) +http://cdn.adultiptv.net/blowjob.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBrunette.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Brunette (720p) +http://cdn.adultiptv.net/brunette.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCompilation.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Compilation (720p) +http://cdn.adultiptv.net/compilation.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Cuckold (720p) +http://cdn.adultiptv.net/cuckold.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Fetish (720p) +http://cdn.adultiptv.net/fetish.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gangbang (720p) +http://cdn.adultiptv.net/gangbang.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGay.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gay (720p) +http://cdn.adultiptv.net/gay.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Hardcore (720p) +http://cdn.adultiptv.net/hardcore.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Interracial (720p) +http://cdn.adultiptv.net/interracial.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Latina (720p) +http://cdn.adultiptv.net/latina.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Lesbian (720p) +http://cdn.adultiptv.net/lesbian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLiveCams.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Live Cams (720p) +http://cdn.adultiptv.net/livecams.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net MILF (720p) +http://cdn.adultiptv.net/milf.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Pornstar (720p) +http://cdn.adultiptv.net/pornstar.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net POV (720p) +http://cdn.adultiptv.net/pov.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRough.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Rough (720p) +http://cdn.adultiptv.net/rough.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Russian (720p) +http://cdn.adultiptv.net/russian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Teen (720p) +http://cdn.adultiptv.net/teen.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Threesome (720p) +http://cdn.adultiptv.net/threesome.m3u8 diff --git a/channels/us_adultswim.m3u b/channels/us_adultswim.m3u new file mode 100644 index 000000000..732df63a7 --- /dev/null +++ b/channels/us_adultswim.m3u @@ -0,0 +1,33 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultSwimAquaTeenHungerForce.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ixywxhs.jpg" group-title="Animation",Adult Swim Aqua Teen Hunger Force (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/aqua-teen/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimBlackJesus.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/2/2b/Black_Jesus_title_card.png" group-title="Series",Adult Swim Black Jesus (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/black-jesus/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimChannel5.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sCRPkPk.jpg" group-title="Entertainment",Adult Swim Channel 5 (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/channel-5/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimDreamCorpLLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jOTChgo.jpg" group-title="Comedy",Adult Swim Dream Corp LLC (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/DREAM-CORP-LLC/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimFishcam.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AdultSwim_262x262.png?raw=true" group-title="",Adult Swim Fishcam (1080p) +https://media.cdn.adultswim.com/streams/playlists/fishcam.backup.m3u8 +#EXTINF:-1 tvg-id="AdultSwimFishcam.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AdultSwim_262x262.png?raw=true" group-title="",Adult Swim Fishcam (1080p) +https://media.cdn.adultswim.com/streams/playlists/live-stream.primary.v2.m3u8 +#EXTINF:-1 tvg-id="AdultSwimInfomercials.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Adult Swim Infomercials (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/infomercials/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimLastStreamOnTheLeft.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VsAKoN6.jpg" group-title="",Adult Swim Last Stream On The Left (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/lsotl/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimMetalocalypse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/N0pMBQ7.jpg" group-title="",Adult Swim Metalocalypse (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/metalocalypse/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimOffTheAir.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tFks0c6.jpg" group-title="Relax",Adult Swim Off The Air (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/off-the-air/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimRickAndMorty.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vLzXFTa.jpg" group-title="Animation",Adult Swim Rick and Morty (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/rick-and-morty/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimRobotChicken.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bTWIjIw.jpg" group-title="Animation",Adult Swim Robot Chicken (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/robot-chicken/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimSamuraiJack.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zIjbwSa.jpg" group-title="Animation",Adult Swim Samurai Jack (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/samurai-jack/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimTheEricAndreShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tqHQy32.jpg" group-title="Series",Adult Swim The Eric Andre Show (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/eric-andre/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimTheVentureBros.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QQc2rh8.jpg" group-title="Animation",Adult Swim The Venture Bros (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/venture-bros/stream.m3u8 +#EXTINF:-1 tvg-id="AdultSwimYourPrettyFaceIsGoingToHell.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yVZAI7F.png" group-title="Series",Adult Swim Your Pretty Face Is Going To Hell (1080p) [Geo-blocked] +https://adultswim-vodlive.cdn.turner.com/live/ypf/stream.m3u8 diff --git a/channels/us_bumblebee.m3u~master b/channels/us_bumblebee.m3u~master new file mode 100644 index 000000000..f3fda6f05 --- /dev/null +++ b/channels/us_bumblebee.m3u~master @@ -0,0 +1,73 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BumblebeeTVAnimalsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YbD8uHc.png" group-title="Relax",Bumblebee TV Animals Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9537b8932c837b49397343/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVAuroraLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1WIEWK7.png" group-title="Relax",Bumblebee TV Aurora Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953819932c837b49397345/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVAutoMoto.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Se1a8Mm.png" group-title="Auto",Bumblebee TV AutoMoto (720p) +https://stitcheraws.unreel.me/wse-node01.powr.com/live/5bf220fad5eeee0f5a40941a/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVBeachesLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4rIbV7e.png" group-title="Relax",Bumblebee TV Beaches Live (1080p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95396f932c837b49397360/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVClassicsOne.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxPsj2s.png" group-title="Movies",Bumblebee TV Classics #1 (480p) +https://b83608fe932143099bb8b25a66857730.mediatailor.us-east-1.amazonaws.com/v1/manifest/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f86075a0d552957bf5aa4dd/0d14dc99-cc30-4c0e-8531-40cdfe650694/1.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVClassicsTwo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxPsj2s.png" group-title="Movies",Bumblebee TV Classics #2 (720p) +https://stitcheraws.unreel.me/wse-node05.powr.com/live/60f881602da3a5575eceb854/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCoronaVirusGov.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxq8ZsK.png" group-title="Science",Bumblebee TV CoronaVirus.Gov (720p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e7559e8a46b495a2283c5e8/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCountryBoyKidsVideo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p14DjHo.png" group-title="Kids",Bumblebee TV Country Boy Kids Video (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf225aed5eeee0f5a4094bd/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVCuteZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/unYHTWg.png" group-title="Kids",Bumblebee TV Cute Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22518d5eeee0f5a409486/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVDocsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fqxw3Mx.png" group-title="",Bumblebee TV Docs Channel (540p) +https://0813a4e76b5d404a97a4070b8e087bc4.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609d9d6344257cbfb6ee4/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVEpicM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uu19VR0.png" group-title="",Bumblebee TV Epic M (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22225d5eeee0f5a40941d/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVFGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uRess78.png" group-title="Kids",Bumblebee TV FGTV (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2624990145130f25474620/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVForestLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J84tZzN.png" group-title="Relax",Bumblebee TV Forest Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c953836932c837b49397355/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVFunZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SfJuMjV.png" group-title="Kids",Bumblebee TV Fun Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625030145130f25474622/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVGiggleZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CvbLApY.png" group-title="Kids",Bumblebee TV Giggle Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22526d5eeee0f5a4094b8/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLakeLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xAkuMa4.png" group-title="Relax",Bumblebee TV Lake Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95385c932c837b49397356/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLegoToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dxHOu8m.png" group-title="Kids",Bumblebee TV Lego Toons (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22549d5eeee0f5a4094ba/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLetsPlayMinecraft.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EqvWDU4.jpg" group-title="Kids",Bumblebee TV Lets Play Minecraft (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625700145130f25474624/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVLifeBae.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HaL9vw1.png" group-title="Lifestyle",Bumblebee TV LifeBae (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22681932c8304fc453418/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMasterBuilder.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KQsAdB4.png" group-title="Kids",Bumblebee TV Master Builder (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2256ed5eeee0f5a4094bb/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMotorCyclist.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QIEhpPp.png" group-title="Auto",Bumblebee TV MotorCyclist (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf2218bd5eeee0f5a40941b/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVMountainLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2Ipv14J.png" group-title="Relax",Bumblebee TV Mountain Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95387b932c837b49397357/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/78K3L8J.png" group-title="Education",Bumblebee TV Now You Know (720p) +https://stitcheraws.unreel.me/wse-node01.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVNowYouKnow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/78K3L8J.png" group-title="Education",Bumblebee TV Now You Know [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5b284f40d5eeee07522b775e/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVPopCornFlixAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ths3dIy.png" group-title="Movies",Bumblebee TV PopCornFlix Action (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5d4b21643f4d602ba521b06c/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVRecoilTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ACrkgIH.png" group-title="",Bumblebee TV Recoil TV (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c7dff0f932c8368bdbfd5fd/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVRiversLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ii2IDmA.png" group-title="Relax",Bumblebee TV Rivers Live (1080p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c95388f932c837b4939735a/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVShortsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TaihS36.jpg" group-title="",Bumblebee TV Shorts Channel (720p) +https://b29da26d9a17436eafe339c08e488f33.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5f8609010d552957bf5aa546/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVSmosh.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eCBYHJ4.png" group-title="",Bumblebee TV Smosh (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2625af5748670f12a3bee9/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVSunsetLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K4GaruD.png" group-title="Relax",Bumblebee TV Sunset Live (1080p) [Not 24/7] +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538a5932c837b4939735b/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/puiUDbS.png" group-title="Entertainment",Bumblebee TV Thinknoodles [Timeout] +https://stitcheraws.unreel.me/wse-node04.powr.com/live/5afc8Bumblebee+TV10e932c833522744733/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVThinknoodles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/puiUDbS.png" group-title="Entertainment",Bumblebee TV Thinknoodles (Test for Bitcentral) (720p) +https://2459f78c2f5d42c996bb24407b76877a.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_60f88620abf1e257404a9250/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVToyZone.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uRxkOD1.jpg" group-title="Kids",Bumblebee TV Toy Zone (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5bf22491932c8304fc4533e4/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVTrinityBeyond.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ugdU8wg.png" group-title="",Bumblebee TV Trinity & Beyond (720p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5e2626030145130f25474626/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVTropicsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8F9qPbt.png" group-title="Relax",Bumblebee TV Tropics Live (1080p) +https://stitcheraws.unreel.me/wse-node02.powr.com/live/5c9538b9932c837b4939735c/playlist.m3u8 +#EXTINF:-1 tvg-id="BumblebeeTVWaterfallsLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/i43l93j.png" group-title="Relax",Bumblebee TV Waterfalls Live (1080p) +https://95771f8415a84e31bd152fe9c6c9905c.mediatailor.us-east-1.amazonaws.com/v1/master/82ded7a88773aef3d6dd1fedce15ba2d57eb6bca/wse_powr_com_5c953910932c837b4939735d/playlist.m3u8 diff --git a/channels/us_distro.m3u b/channels/us_distro.m3u new file mode 100644 index 000000000..338501a6a --- /dev/null +++ b/channels/us_distro.m3u @@ -0,0 +1,19 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ClassicRerunsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://classicreruns.com/wp-content/uploads/2021/01/CRTV-1024x1024-logo-nobkg-e1629529582672.png" group-title="Entertainment",Classic Reruns TV (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/wnQPvAN9QBODw9hP-H0rZA/master.m3u8 +#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzA3OTUzMjRf?inline=1" group-title="Sports",Hard Knocks (1080p) [Not 24/7] +https://d397e8970cd346fdac04c0af81290c3a.mediatailor.us-west-2.amazonaws.com/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Hard-Knocks-DistroTV/109.m3u8 +#EXTINF:-1 tvg-id="HumorMill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lYqcF1P.png" group-title="Comedy",Humor Mill (1080p) [Not 24/7] +https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-DistroTV/152.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) +https://nmxdistro.akamaized.net/hls/live/529965/Live_1/index.m3u8 +#EXTINF:-1 tvg-id="TDAmeritradeNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/TDAmeritradeNetwork_284x284.png?raw=true" group-title="Business",TD Ameritrade Network (1080p) +https://tdameritrade-distro.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) +https://tfd-distro.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) +https://thefirst-distroscale.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://venntv-distrotv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (1080p) [Not 24/7] +https://d3w4n3hhseniak.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-DistroTV/150.m3u8 diff --git a/channels/us_filmon.m3u b/channels/us_filmon.m3u new file mode 100644 index 000000000..c078a6449 --- /dev/null +++ b/channels/us_filmon.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BBCNews.uk" tvg-country="INT" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-kingdom/bbc-news-uk.png" group-title="News",BBC News (480p) [Offline] +http://www.filmon.com/vr-streams/27.high/playlist.m3u8 +#EXTINF:-1 tvg-id="BBCOneScotland.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/c/c1/BBC_One_Scotland_2021.png" group-title="News",BBC One Scotland (480p) [Offline] +http://www.filmon.com/vr-streams/3166.high/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmonEroticSensations.us" tvg-country="INT" tvg-language="English" tvg-logo="https://koditips.com/wp-content/uploads/filmon-not-working.jpg" group-title="XXX",Filmon Erotic Sensations (480p) [Not 24/7] +https://www.filmon.com/vr-streams/6152.high/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmonFetishFactory.us" tvg-country="INT" tvg-language="English" tvg-logo="https://koditips.com/wp-content/uploads/filmon-not-working.jpg" group-title="XXX",Filmon Fetish Factory (480p) [Not 24/7] +https://www.filmon.com/vr-streams/6158.high/playlist.m3u8 diff --git a/channels/us_fubo.m3u b/channels/us_fubo.m3u new file mode 100644 index 000000000..ca15f89f3 --- /dev/null +++ b/channels/us_fubo.m3u @@ -0,0 +1,9 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FootballDailyXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VJyUVQ2.png" group-title="Sports",Football Daily (XUMO) (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-footballdaily/CDN/master.m3u8 +#EXTINF:-1 tvg-id="fuboSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cArIeKS.png" group-title="Sports",fubo Sports Network (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-fubo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="MotorvisionXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WPklHVE.jpg" group-title="Auto",Motorvision (XUMO) (720p) +https://dai2-xumo.fubo.tv/amagi_hls_data_xumo1212A-motorvisiontv/CDN/master.m3u8 diff --git a/channels/us_glewedtv.m3u b/channels/us_glewedtv.m3u new file mode 100644 index 000000000..00ab3f30c --- /dev/null +++ b/channels/us_glewedtv.m3u @@ -0,0 +1,3 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (1080p) [Not 24/7] +https://redseat-thefirst-glewedtv.amagi.tv/index.m3u8 diff --git a/channels/us_imdbtv.m3u b/channels/us_imdbtv.m3u new file mode 100644 index 000000000..66e432760 --- /dev/null +++ b/channels/us_imdbtv.m3u @@ -0,0 +1,11 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AbsoluteRealitybyWETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oOFjyYf.png" group-title="Entertainment",Absolute Reality by WE TV (1080p) +https://amc-absolutereality-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (1080p) +https://amc-amcpresents-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IFCFilmsPicks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",IFC Films Picks (1080p) +https://amc-ifc-films-picks-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RushbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",Rush by AMC (1080p) +https://amc-rushbyamc-1.imdbtv.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SlightlyOffbyIFC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",Slightly Off by IFC (1080p) +https://amc-slightly-off-by-amc-1.imdbtv.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_klowdtv.m3u b/channels/us_klowdtv.m3u new file mode 100644 index 000000000..c0ed35499 --- /dev/null +++ b/channels/us_klowdtv.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AWE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d2pggiv3o55wnc.cloudfront.net/awe/wp-content/uploads/2015/09/AWELogoBlk.jpg" group-title="",AWE (720p) +http://n1.klowdtv.net/live1/awe_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="DemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (720p) +https://demandafrica-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (720p) [Offline] +https://estv-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FidoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kvdqP3H.jpg" group-title="Entertainment",Fido TV (720p) [Not 24/7] +http://n1.klowdtv.net/live3/fido_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.gameshownetwork.com/storage/app/media/2020/Navigation/gsn_logo.jpg" group-title="Entertainment",Game Show Network East (720p) [Not 24/7] +http://n1.klowdtv.net/live2/gsn_720p/chunks.m3u8 +#EXTINF:-1 tvg-id="HNCFree.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xXr4Cnq.png" group-title="",HNC Free (720p) [Offline] +https://hncfree-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) +http://n1.klowdtv.net/live1/oan_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) [Geo-blocked] +https://cdn.klowdtv.net/803B48A/oan_aws_ms/OAN.m3u8 +#EXTINF:-1 tvg-id="PopTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://getlogo.net/wp-content/uploads/2020/10/pop-tv-logo-vector.png" group-title="Entertainment",Pop TV (720p) [Not 24/7] +http://n1.klowdtv.net/live2/pop_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="QVCLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://s3-us-west-2.amazonaws.com/klowdtvstorage/herring/images/channels/qvcLive/logo_small.png" group-title="Shop",QVC Live (720p) [Not 24/7] +http://n1.klowdtv.net/live2/qvclive_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="RedseatTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",Redseat The First (720p) +https://redseat-thefirst-klowdtv.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (720p) +https://sportsgrid-klowdtv.amagi.tv/playlist.m3u8 diff --git a/channels/us_localbtv.m3u b/channels/us_localbtv.m3u new file mode 100644 index 000000000..ae3cc70cf --- /dev/null +++ b/channels/us_localbtv.m3u @@ -0,0 +1,190 @@ +#EXTM3U +#EXTINF:-1 tvg-id="KFPHDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/d/d6/GetTV_2016_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",KFPH-DT3 (GetTV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-px.theus6tv.tk/hls/13.3/playlist.m3u8 +#EXTINF:-1 tvg-id="KYWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/9/96/KYW-TV_CBS_2013_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",KYW-DT1 (CBS 3) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/3.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WABCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/WABC_TV_New_2021.svg/1280px-WABC_TV_New_2021.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WABC-DT1 (ABC 7) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/7.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WABCDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/HSN_logo.svg/1024px-HSN_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WABC-DT4 (HSN) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/7.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.squarespace-cdn.com/content/v1/5703cb7722482eac526f8659/1459877956845-45K5TTBZ344E6IK695H4/image-asset.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT1 (TCT) (1080p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/4.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/0/00/AceTV-USA.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WACP-DT2 (AceTV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/4.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Logo_of_Liquidation_Channel.svg/1024px-Logo_of_Liquidation_Channel.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT4 (ShopLC) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/4.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/50/Jewelry_television_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WACP-DT5 (Jewelry TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/4.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WACPDT6.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/5f/The_Family_Channel_Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WACP-DT6 (The Family Channel) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/4.6/playlist.m3u8 +#EXTINF:-1 tvg-id="WCAUDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/WCAUlogo2.svg/1024px-WCAUlogo2.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WCAU-DT1 (NBC 10) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/10.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WCAUDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Cozi_TV_logo.svg/1024px-Cozi_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WCAU-DT2 (COZI TV) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/10.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WCBSDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/CBS_2.svg/1024px-CBS_2.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WCBS-DT1 (CBS 2) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/2.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WDPNDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/be/Grit_TV_Network_Logo.gif" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WDPN-DT2 (Grit) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/2.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WDPNDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/f/f6/RetroTV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WDPN-DT5 (Retro TV) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/2.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WELLLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/Daystar_TV.PNG" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WELL-LD1 (Daystar) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/45.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WFMZDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://wfmz.com/app/site/images/69_wfmz_id_logo.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WFMZ-DT1 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/69.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XHHQFAX.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT1 (PBS Philadelphia) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/12.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ULZfmVT.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT2 (Y2) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/12.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WHYYDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ImKLPYs.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WHYY-DT3 (Y Kids) (720p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/12.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Azteca_America_2015.svg/1024px-Azteca_America_2015.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WKOB-LD1 (Azteca America 42) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/Daystar_TV.PNG" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD2 (Daystar) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD5.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sonlifetv.com/images/sbnlogo.jpg" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD5 (SonLife) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD6.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/46/Estrella_TV_2020_Logo.svg/1920px-Estrella_TV_2020_Logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD6 (Estrella TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.6/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD7.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Logo_of_Liquidation_Channel.svg/1920px-Logo_of_Liquidation_Channel.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD7 (ShopLC) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.7/playlist.m3u8 +#EXTINF:-1 tvg-id="WKOBLD8.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.novelisima.com/assets/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WKOB-LD8 (Novelisima) (480p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/42.8/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/WLIW_logo_2011.svg/1024px-WLIW_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLIW-DT1 (PBS WLIW) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/21.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Create_TV_network_logo.svg/1920px-Create_TV_network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WLIW-DT2 (Create TV) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/21.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/6b/PBSworld.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WLIW-DT3 (World) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/21.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WLIWDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://d30sbyh791tgpf.cloudfront.net/wp-content/themes/all-arts/libs/images/ALL-ARTS-WNET-GROUP-lockup-2021.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLIW-DT4 (All Arts) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/21.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WLVTDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/7/74/CurrentPBS39Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WLVT-DT1 (PBS 39) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/39.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WMBQLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/e/e8/FNX_Web_Logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WMBQ-LD (FNX) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/46.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WMCNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/9/93/WMCN44.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WMCN-DT1 (ShopHQ) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/44.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNBCDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/WNBC_4_NY.svg/1024px-WNBC_4_NY.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNBC-DT1 (NBC 4) (1080p) [Not 24/7] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/4.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNBCDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Cozi_TV_logo.svg/1024px-Cozi_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNBC-DT2 (COZI TV) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/4.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNETDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/45/WNET_logo_2011.svg/1024px-WNET_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNET-DT1 (PBS THIRTEEN) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/13.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNETDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/4/45/WNET_logo_2011.svg/1024px-WNET_logo_2011.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNET-DT2 (PBS KIDS) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/13.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJSDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/b/bf/NJ_PBS_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNJS-DT1 (NJ PBS) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/23.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJSDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/NHK_World.svg/1024px-NHK_World.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNJS-DT2 (NHK WORLD) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/23.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNJUDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/56/TeleXitos_TV.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNJU-DT2 (teleXitos) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/47.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/3/3c/NYCTV_Life_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYE-DT1 (NYC Life) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/25.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT2.us" tvg-country="US" tvg-language="English" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNYE-DT2 (NYC Gov) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/25.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYEDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://tv.cuny.edu/homepage/wp-content/uploads/2017/06/cunytv-logo-w.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYE-DT3 (CUNY TV) (1080p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/25.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYJLD.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/0/0d/WNYJ66.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WNYJLD (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/28.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WNYWDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Fts-new-york-a.svg/1024px-Fts-new-york-a.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WNYW-DT1 (FOX 5) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/5.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPHLDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/95/WPHL-TV_logo.svg/1024px-WPHL-TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WPHL-DT1 (PHL17) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/17.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPHLDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/2/2c/Antenna_TV_logo.svg/800px-Antenna_TV_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPHL-DT2 (Antenna TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/17.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WPHYCD2.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.sonlifetv.com/images/logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPHY-CD2 (SonLife) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/25.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WPIXDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/f2/Rewind_TV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPIX-DT4 (Rewind TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/11.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WPPXDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/72/TrueReal_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPPX-DT4 (TrueReal) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/61.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WPPXDT5.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/1/1e/LAFF_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPPX-DT5 (Laff) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/61.5/playlist.m3u8 +#EXTINF:-1 tvg-id="WPVIDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/WPVI-TV_logos.svg/1024px-WPVI-TV_logos.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WPVI-DT1 (ABC 6) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/6.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WPXNDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/6/61/Defy_TV_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WPXN-DT4 (DEFY TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/31.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/88/WRNN-TV_RNN_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WRNN-DT1 (ShopLC) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/48.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Circle_Network_logo.svg/1920px-Circle_Network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT2 (Circle) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/48.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://universe-legacy-dacast-images.dacast.com/159745/sc-533396-5.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT3 (Canal de la Fe) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/48.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WRNNDT4.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/QVC_logo_2019.svg/1920px-QVC_logo_2019.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WRNN-DT4 (QVC) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/48.4/playlist.m3u8 +#EXTINF:-1 tvg-id="WTVEDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/85/WTVE51.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WTVE-DT1 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/51.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WTVEDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/85/WTVE51.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WTVE-DT2 (TimelessTV) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/51.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WTXFDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Fts-philadelphia-a.svg/1024px-Fts-philadelphia-a.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WTXF-DT1 (FOX 29) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/29.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WUVPDT3.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/8/8c/True_Crime_Network_logo.svg/1024px-True_Crime_Network_logo.svg.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WUVP-DT3 (True Crime Network) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/65.3/playlist.m3u8 +#EXTINF:-1 tvg-id="WWSIDT2.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/5/56/TeleXitos_TV.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WWSI-DT2 (teleXitos) (432p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-pi.theus6tv.tk/hls/62.2/playlist.m3u8 +#EXTINF:-1 tvg-id="WXTVDT1.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/e0/Univision_41_Nueva_York_logo.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",WXTV-DT1 (Univision 41) (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-ny.theus6tv.tk/hls/41.1/playlist.m3u8 +#EXTINF:-1 tvg-id="WZTSCD1.us" tvg-country="US" tvg-language="English" tvg-logo="https://wzts.tv/wp-content/uploads/2018/05/wzts-logo-tv-2-cozi-200px.png" user-agent="Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="Entertainment",WZTS-CD1 (COZI TV) (480p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://v-bluecbl.theus6tv.tk/hls/16.1/playlist.m3u8 diff --git a/channels/us_pbs.m3u b/channels/us_pbs.m3u new file mode 100644 index 000000000..9f11166bf --- /dev/null +++ b/channels/us_pbs.m3u @@ -0,0 +1,265 @@ +#EXTM3U +#EXTINF:-1 tvg-id="WMHTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Albany NY (WMHT) (1080p) [Offline] +https://wmhtdt.lls.pbs.org/out/v1/5c496bd4d16348f0bca933eca69bdd1e/index.m3u8 +#EXTINF:-1 tvg-id="KNMETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Albuquerque NM (KNME) (1080p) [Offline] +https://knmedt.lls.pbs.org/out/v1/6bb7cfa3e3c34906a80c5babc026ca92/index.m3u8 +#EXTINF:-1 tvg-id="WLVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Allentown PA (WLVT) (1080p) [Offline] +https://wlvtdt.lls.pbs.org/out/v1/92fd7dd5c56e47dfb169062a69f7a3bf/index.m3u8 +#EXTINF:-1 tvg-id="WNEO.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Alliance OH (WNEO) (1080p) [Offline] +https://wneodt.lls.pbs.org/out/v1/59487e8689f14a92a443d8fd557ac948/index.m3u8 +#EXTINF:-1 tvg-id="KAKMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Anchorage AK (KAKM) (1080p) [Offline] +https://kakmdt.lls.pbs.org/out/v1/01b38c70d1e94da78deec21bb13383ed/index.m3u8 +#EXTINF:-1 tvg-id="KWCMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Appleton MN (KWCM) (1080p) [Offline] +https://kwcmdt.lls.pbs.org/out/v1/e178660dc7cf4389bf8834e4bb10df20/index.m3u8 +#EXTINF:-1 tvg-id="WETATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Arlington DC (WETA) (1080p) [Offline] +https://wetadt5.lls.pbs.org/out/v1/616d9af7dd7641c1ba0b7be651c343a4/index.m3u8 +#EXTINF:-1 tvg-id="WGTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Athens GA (WGTV) (1080p) [Offline] +https://wgtvdt.lls.pbs.org/out/v1/1fe7fe6e36524881bd999a7003394ec7/index.m3u8 +#EXTINF:-1 tvg-id="WOUBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Athens OH (WOUB) (1080p) [Offline] +https://woubdt.lls.pbs.org/out/v1/f9f879eacf9c4b3d859b93c1f889a5e0/index.m3u8 +#EXTINF:-1 tvg-id="KLRUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Austin TX (KLRU) (1080p) [Offline] +https://klrudt.lls.pbs.org/out/v1/c5d426d04957476186321c38e943c49f/index.m3u8 +#EXTINF:-1 tvg-id="WDCQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bad Axe MI (WDCQ) (1080p) [Offline] +https://wdcqdt.lls.pbs.org/out/v1/ef33b9ec5f2f42ad831574cbb2c478f8/index.m3u8 +#EXTINF:-1 tvg-id="WLPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Baton Rouge LA (WLPB) (1080p) [Offline] +https://wlpbdt.lls.pbs.org/out/v1/3f6379f418924ca39e09415a34c92738/index.m3u8 +#EXTINF:-1 tvg-id="WSKGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Binghamton NY (WSKG) (1080p) [Offline] +https://wskgdt.lls.pbs.org/out/v1/ff443d82d55c481a9d1561c5f77a3a4b/index.m3u8 +#EXTINF:-1 tvg-id="WBIQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Birmingham AL (WBIQ) (1080p) [Offline] +https://wbiqdt.lls.pbs.org/out/v1/3d5c7da724d741da9b8e203d03b6b8c3/index.m3u8 +#EXTINF:-1 tvg-id="WTIU.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bloomington IN (WTIU) (1080p) [Offline] +https://wtiudt.lls.pbs.org/out/v1/189f0df07ad448d29880d68f295ab06e/index.m3u8 +#EXTINF:-1 tvg-id="KAIDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Boise ID (KAID) (1080p) [Offline] +https://kaiddt.lls.pbs.org/out/v1/1ba7213ff76e4f3cb73405a2108922ce/index.m3u8 +#EXTINF:-1 tvg-id="WGBHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Boston MA (WGBH) (1080p) [Offline] +https://wgbhdt.lls.pbs.org/out/v1/0e31746edf794871ab0f06cdb48c1e82/index.m3u8 +#EXTINF:-1 tvg-id="WBGUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bowling Green OH (WBGU) (1080p) [Offline] +https://wbgudt.lls.pbs.org/out/v1/6e28e12e9db04b798dc82052cc6d3375/index.m3u8 +#EXTINF:-1 tvg-id="KUSMTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Bozeman MT (KUSM) (1080p) [Offline] +https://kusmdt.lls.pbs.org/out/v1/ad7a1ac654bc4231854568d83529f893/index.m3u8 +#EXTINF:-1 tvg-id="WNEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Buffalo NY (WNED) (1080p) [Offline] +https://wneddt.lls.pbs.org/out/v1/9042ad5168e54cf8bf14b5db5582a84a/index.m3u8 +#EXTINF:-1 tvg-id="WETK.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Burlington VT (WETK) (1080p) [Offline] +https://wetkdt.lls.pbs.org/out/v1/9c3c95a5cabc4611b06086ae798b7716/index.m3u8 +#EXTINF:-1 tvg-id="WUNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chapel Hill NC (WUNC) (1080p) [Offline] +https://wuncdt.lls.pbs.org/out/v1/84bedaad5c7e4d7abd8a6b63f1b8d4c4/index.m3u8 +#EXTINF:-1 tvg-id="WEIUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Charleston IL (WEIU-TV) (1080p) [Offline] +https://weiudt.lls.pbs.org/out/v1/9f2dc5c07afb4e2a8b704e1462030872/index.m3u8 +#EXTINF:-1 tvg-id="WTVITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Charlotte NC (WTVI) (1080p) [Offline] +https://wtvidt.lls.pbs.org/out/v1/e01f07bdc0cc4375b8894f72b1f0bb40/index.m3u8 +#EXTINF:-1 tvg-id="WTCI.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chattanooga TN (WTCI) (1080p) [Offline] +https://wtcidt.lls.pbs.org/out/v1/b9b09144bbaf4c5b864711748cc32680/index.m3u8 +#EXTINF:-1 tvg-id="WTTWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Chicago IL (WTTW) (1080p) [Offline] +https://wttwdt.lls.pbs.org/out/v1/c9c6c698c02f404190e9e5a4e9f4e903/index.m3u8 +#EXTINF:-1 tvg-id="WCET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cincinnati OH (WCET) (1080p) [Offline] +https://wcetdt.lls.pbs.org/out/v1/742a384715ac468cbcd93fef92dafd9d/index.m3u8 +#EXTINF:-1 tvg-id="WPSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Clearfield PA (WPSU) (1080p) [Offline] +https://wpsudt.lls.pbs.org/out/v1/9f1d8d513dc1419fade4c3e08177a585/index.m3u8 +#EXTINF:-1 tvg-id="WVIZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cleveland OH (WVIZ) (1080p) [Offline] +https://wvizdt.lls.pbs.org/out/v1/94ec1f9fa451444789391cd8558ea5ed/index.m3u8 +#EXTINF:-1 tvg-id="KAMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS College Station TX (KAMU) (1080p) [Offline] +https://kamudt.lls.pbs.org/out/v1/60a3ebbf04084e1e851df9b22d45a5e1/index.m3u8 +#EXTINF:-1 tvg-id="WRLKTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Columbia SC (WRLK) (1080p) [Offline] +https://wrlkdt.lls.pbs.org/out/v1/ce2d1420a66b4c2a88d8a48ffecd908d/index.m3u8 +#EXTINF:-1 tvg-id="WOSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Columbus OH (WOSU) (1080p) [Offline] +https://wosudt.lls.pbs.org/out/v1/72f8d6d91e614561b97f37439cd13f81/index.m3u8 +#EXTINF:-1 tvg-id="KETSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Conway AR (KETS) (1080p) [Offline] +https://ketsdt.lls.pbs.org/out/v1/3eccbbb7a0544338b5ee13cf6d5fc1d8/index.m3u8 +#EXTINF:-1 tvg-id="WCTE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cookeville TN (WCTE) (1080p) [Offline] +https://wctedt.lls.pbs.org/out/v1/f7929641d8ae4f0296b10e77ffe6d31c/index.m3u8 +#EXTINF:-1 tvg-id="WKNOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Cordova TN (WKNO) (1080p) [Offline] +https://wknodt.lls.pbs.org/out/v1/b7065d6c2d6047c0bb5bd9e20202103c/index.m3u8 +#EXTINF:-1 tvg-id="KEDTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Corpus Christi TX (KEDT) (1080p) [Offline] +https://kedtdt.lls.pbs.org/out/v1/2955c90649c44dac83a2a77513c0b861/index.m3u8 +#EXTINF:-1 tvg-id="KERA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Dallas TX (KERA) (1080p) [Offline] +https://keradt.lls.pbs.org/out/v1/8dd50e7e0ee24d4e8a0812872f332a2c/index.m3u8 +#EXTINF:-1 tvg-id="WPTD.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Dayton OH (WPTD) (1080p) [Offline] +https://wptddt.lls.pbs.org/out/v1/f372be5c7a994b3ebeab2797323de8ee/index.m3u8 +#EXTINF:-1 tvg-id="KBDITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Denver CO (KBDI) (1080p) [Offline] +https://kbdidt.lls.pbs.org/out/v1/5a01f14ff4e4492eb7cda1a79b0ced60/index.m3u8 +#EXTINF:-1 tvg-id="KRMATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Denver CO (KRMA) (1080p) [Offline] +https://krmadt.lls.pbs.org/out/v1/45cb988e1a7440288aae1fe7fe819841/index.m3u8 +#EXTINF:-1 tvg-id="KDINTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Des Moines IA (KDIN) (1080p) [Offline] +https://kdindt.lls.pbs.org/out/v1/e41a89f5fe884dbea2c80fdc974b21c6/index.m3u8 +#EXTINF:-1 tvg-id="WGVUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Detroit MI (WTVS) (1080p) [Offline] +https://wgvudt.lls.pbs.org/out/v1/a9456b151c3e4fe490213e776735bb16/index.m3u8 +#EXTINF:-1 tvg-id="WDSE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Duluth MN (WDSE) (1080p) [Offline] +https://wdsedt.lls.pbs.org/out/v1/33c52d8e7d6e43099ff584805245b694/index.m3u8 +#EXTINF:-1 tvg-id="WENH.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Durham NH (WENH) (1080p) [Offline] +https://wenhdt.lls.pbs.org/out/v1/a1c1eea03387432086459cf0fdd96334/index.m3u8 +#EXTINF:-1 tvg-id="WKARTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS East Lansing MI (WKAR) (1080p) [Offline] +https://wkardt.lls.pbs.org/out/v1/5b13b5c72f5d4b80a6ee9140392caf74/index.m3u8 +#EXTINF:-1 tvg-id="KEET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Eureka CA (KEET) (1080p) [Offline] +https://keetdt.lls.pbs.org/out/v1/a223371529b14afa882d1e872d8acd3d/index.m3u8 +#EXTINF:-1 tvg-id="WNINTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Evansville IN (WNIN) (1080p) [Offline] +https://wnindt.lls.pbs.org/out/v1/338a207086464e179e97f83d4b1798be/index.m3u8 +#EXTINF:-1 tvg-id="KFMETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fargo ND (KFME) (1080p) [Offline] +https://kfmedt.lls.pbs.org/out/v1/25be24fcd0864ec9be6f6b60cb2be826/index.m3u8 +#EXTINF:-1 tvg-id="WGCUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fort Myers FL (WGCU) (1080p) [Offline] +https://wgcudt.lls.pbs.org/out/v1/ac57905c80c8486a8290af7ca78c5026/index.m3u8 +#EXTINF:-1 tvg-id="WFWA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Fort Wayne IN (WFWA) (1080p) [Offline] +https://wfwadt.lls.pbs.org/out/v1/8b2a780393274c2ba9b71b9168df2208/index.m3u8 +#EXTINF:-1 tvg-id="WYIN.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Gary IN (WYIN) (1080p) [Offline] +https://wyindt.lls.pbs.org/out/v1/27414b46e52d43758be8227e4a91c863/index.m3u8 +#EXTINF:-1 tvg-id="WITFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Harrisburg PA (WITF) (1080p) [Offline] +https://witfdt.lls.pbs.org/out/v1/15cd55cd6f7442c4a193a47bbfae608a/index.m3u8 +#EXTINF:-1 tvg-id="WEDHTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Hartford CT (WEDH) (1080p) [Offline] +https://wedhdt.lls.pbs.org/out/v1/04182c8d6be24c1a98de212f3c55a442/index.m3u8 +#EXTINF:-1 tvg-id="KHET.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Honolulu HI (KHET) (1080p) [Not 24/7] +https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8 +#EXTINF:-1 tvg-id="KUHT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Houston TX (KUHT) (1080p) [Offline] +https://kuhtdt.lls.pbs.org/out/v1/5b02f861c8e6453aa2b6cd8c6d26e698/index.m3u8 +#EXTINF:-1 tvg-id="WFYI.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Indianapolis IN (WFYI) (1080p) [Offline] +https://wfyidt.lls.pbs.org/out/v1/f969c8f98dc24032b3879664b622ead0/index.m3u8 +#EXTINF:-1 tvg-id="WMPN.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Jackson MS (WMPN) (1080p) [Offline] +https://wmpndt.lls.pbs.org/out/v1/d914d235ec79418a866aef53f54f2bd2/index.m3u8 +#EXTINF:-1 tvg-id="WJCTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Jacksonville FL (WJCT) (1080p) [Offline] +https://wjctdt.lls.pbs.org/out/v1/a691e1e86f77462d81a738395505e911/index.m3u8 +#EXTINF:-1 tvg-id="KCPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Kansas City MO (KCPT) (1080p) [Offline] +https://kcptdt.lls.pbs.org/out/v1/f63eb4e92e484fae845c31912340e2a2/index.m3u8 +#EXTINF:-1 tvg-id="WETPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Knoxville TN (WETP) (1080p) [Offline] +https://wetpdt.lls.pbs.org/out/v1/8eb86a48b4f54a24a31aa9cf46b02494/index.m3u8 +#EXTINF:-1 tvg-id="KAWETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lakeland MN (KAWE) (1080p) [Offline] +https://kawedt.lls.pbs.org/out/v1/b3a7b02a0d4241a193c91f1f33755c85/index.m3u8 +#EXTINF:-1 tvg-id="KRWGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Las Cruces NM (KRWG) (1080p) [Offline] +https://krwgdt.lls.pbs.org/out/v1/9cbfc7807e834ee39d2849c1bad667f2/index.m3u8 +#EXTINF:-1 tvg-id="KLVXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Las Vegas NV (KLVX) (1080p) [Offline] +https://klvxdt.lls.pbs.org/out/v1/c2d457573e4d4783b558c44e20547e21/index.m3u8 +#EXTINF:-1 tvg-id="WCBBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lewiston ME (WCBB) (1080p) [Offline] +https://wcbbdt.lls.pbs.org/out/v1/d1ca1cb603fd4da09694f0f1f6ba8db0/index.m3u8 +#EXTINF:-1 tvg-id="WKLETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lexington KY (WKLE) (1080p) [Offline] +https://wkledt.lls.pbs.org/out/v1/26354efcebc1400e8861988cd6a321ca/index.m3u8 +#EXTINF:-1 tvg-id="WLJT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lexington TN (WLJT) (1080p) [Offline] +https://wljtdt.lls.pbs.org/out/v1/1ddf810d67f64eeeab40ad9da8885945/index.m3u8 +#EXTINF:-1 tvg-id="KUONTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Lincoln NE (KUON) (1080p) [Geo-blocked] +https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8 +#EXTINF:-1 tvg-id="KLCSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Entertainment",PBS Los Angeles CA (KLCS-DT1) (1080p) [Offline] +https://klcsdt.lls.pbs.org/out/v1/6ee318cffa774733acf31f9a1af38036/index.m3u8 +#EXTINF:-1 tvg-id="KOCETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Los Angeles CA (KOCE) (1080p) [Offline] +https://kocedt.lls.pbs.org/out/v1/75f564cba25e4053a8789a1a14d13344/index.m3u8 +#EXTINF:-1 tvg-id="WPNE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Madison WI (WPNE) (1080p) [Offline] +https://wpnedt.lls.pbs.org/out/v1/12d4e3cd7f2c476ea575165bbfb5ac50/index.m3u8 +#EXTINF:-1 tvg-id="WNMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Marquette MI (WNMU) (1080p) [Offline] +https://wnmudt.lls.pbs.org/out/v1/d762d9a7dd4a46c08ca89b1a1abbc475/index.m3u8 +#EXTINF:-1 tvg-id="KSYSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Medford OR (KSYS) (1080p) [Offline] +https://ksysdt.lls.pbs.org/out/v1/aecb830f3f7146a5ab62bacbeeaff661/index.m3u8 +#EXTINF:-1 tvg-id="WLRNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Miami FL (WLRN) (1080p) [Offline] +https://wlrndt.lls.pbs.org/out/v1/9e8346f507f645259f0c6f2837fb7cbe/index.m3u8 +#EXTINF:-1 tvg-id="WPBTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Miami FL (WPBT) (1080p) [Offline] +https://wpbtdt.lls.pbs.org/out/v1/0fbd3da6bffb465ba84f94abaff14973/index.m3u8 +#EXTINF:-1 tvg-id="WMVSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Milwaukee WI (WMVS) (1080p) [Offline] +https://wmvsdt.lls.pbs.org/out/v1/654e3fa9db6d465ea578cf39818fcee6/index.m3u8 +#EXTINF:-1 tvg-id="KTCATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Minneapolis MN (KTCA) (1080p) [Offline] +https://ktcadt.lls.pbs.org/out/v1/21103812ea504393b7f0d521a8b37ab7/index.m3u8 +#EXTINF:-1 tvg-id="WQPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Moline IL (WQPT) (1080p) [Offline] +https://wqptdt.lls.pbs.org/out/v1/6ab72cd3813b469cb5f79a577d49c0b7/index.m3u8 +#EXTINF:-1 tvg-id="WCMUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Mount Pleasant MI (WCMU) (1080p) [Offline] +https://wcmudt.lls.pbs.org/out/v1/45ff0524571c41398c5f39ebab6262ef/index.m3u8 +#EXTINF:-1 tvg-id="WIPB.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Muncie IN (WIPB) (1080p) [Offline] +https://wipbdt.lls.pbs.org/out/v1/73cd2d86797b4fc6ac5b660cd5a6f9c4/index.m3u8 +#EXTINF:-1 tvg-id="WNPTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Nashville TN (WNPT) (1080p) [Offline] +https://wnptdt.lls.pbs.org/out/v1/f6bca6d722674c5cad621f54b17c217b/index.m3u8 +#EXTINF:-1 tvg-id="PBSEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education",PBS National East (1080p) [Geo-blocked] +https://pbs.lls.cdn.pbs.org/est/index.m3u8 +#EXTINF:-1 tvg-id="PBSWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education",PBS National West (1080p) [Geo-blocked] +https://pbs.lls.cdn.pbs.org/pst/index.m3u8 +#EXTINF:-1 tvg-id="WNJTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7] +https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8 +#EXTINF:-1 tvg-id="WYESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New Orleans LA (WYES) (1080p) [Offline] +https://wyesdt.lls.pbs.org/out/v1/3d4b8e15f65d475f8278fee4ff14becf/index.m3u8 +#EXTINF:-1 tvg-id="WLIWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New York NY (WLIW) (1080p) [Offline] +https://wliwdt.lls.pbs.org/out/v1/a7a2556b48d348b8931d7fc77a57401d/index.m3u8 +#EXTINF:-1 tvg-id="WNETTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS New York NY (WNET) (1080p) [Not 24/7] +https://wnetdt.lls.pbs.org/out/v1/0456457548354b88b32fc437e4e7ee01/index.m3u8 +#EXTINF:-1 tvg-id="WHROTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Norfolk VA (WHRO) (1080p) [Offline] +https://whrodt.lls.pbs.org/out/v1/3266ff3730e745eba63de795e95e3c08/index.m3u8 +#EXTINF:-1 tvg-id="KPBT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Odessa TX (KPBT) (1080p) [Offline] +https://kpbtdt.lls.pbs.org/out/v1/9b66cea20b8341b8accdb0d20a49431f/index.m3u8 +#EXTINF:-1 tvg-id="KETA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Oklahoma City OK (KETA) (1080p) [Offline] +https://ketadt.lls.pbs.org/out/v1/b718c2a2e2ab4a67a0fce0b1c3fb71a9/index.m3u8 +#EXTINF:-1 tvg-id="WUCFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Orlando FL (WUCF) (1080p) [Offline] +https://wucfdt.lls.pbs.org/out/v1/6557aa0623bc486d8fb3e54afad37307/index.m3u8 +#EXTINF:-1 tvg-id="WMPB.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Owings Mills MD (1080p) [Offline] +https://wmpbdt.lls.pbs.org/out/v1/d1dbc3dc021148fb9ba084e7a68c3739/index.m3u8 +#EXTINF:-1 tvg-id="WSRETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Pensacola FL (WSRE) (1080p) [Offline] +https://wsredt.lls.pbs.org/out/v1/d615170d96024c229c6ae2177dec84e5/index.m3u8 +#EXTINF:-1 tvg-id="WTVPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Peoria IL (WTVP) (1080p) [Offline] +https://wtvpdt.lls.pbs.org/out/v1/9e8f6bfce87a437d8a8a9aab016421e8/index.m3u8 +#EXTINF:-1 tvg-id="WHYYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Philadelphia PA (WHYY-DT1) (1080p) [Offline] +https://whyydt.lls.pbs.org/out/v1/40b7857a84ee4302be8ab755a719cc14/index.m3u8 +#EXTINF:-1 tvg-id="KAETTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Phoenix AZ (KAET) (1080p) [Offline] +https://kaetdt.lls.pbs.org/out/v1/259f25e61b3d47ce8a7e2339a00c5561/index.m3u8 +#EXTINF:-1 tvg-id="WQEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Pittsburgh PA (WQED) (1080p) [Offline] +https://wqeddt.lls.pbs.org/out/v1/1f10d52cea0f45ae88184800e9e6b79e/index.m3u8 +#EXTINF:-1 tvg-id="WCFETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Plattsburgh NY (WCFE) (1080p) [Offline] +https://wcfedt.lls.pbs.org/out/v1/9483ef28a5a8442f8ff45b26ac23a9b0/index.m3u8 +#EXTINF:-1 tvg-id="KENW.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Portales NM (KENW) (1080p) [Offline] +https://kenwdt.lls.pbs.org/out/v1/5a08bd0c12464a42959d67ad54324081/index.m3u8 +#EXTINF:-1 tvg-id="KOPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Portland OR (KOPB) (1080p) [Offline] +https://kopbdt.lls.pbs.org/out/v1/a946a78ff0304b51b4f95b40f6753f20/index.m3u8 +#EXTINF:-1 tvg-id="WSBETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Providence RI (WSBE) (1080p) [Offline] +https://hls-wsbedt.lls.pbs.org/out/v1/282a0653ed3341ebac0ff99c0f2a8137/index.m3u8 +#EXTINF:-1 tvg-id="KIXETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Redding CA (KIXE) (1080p) [Offline] +https://kixedt.lls.pbs.org/out/v1/fb0ef314bff940b18d8ff89dcfc0e395/index.m3u8 +#EXTINF:-1 tvg-id="KNPBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Reno NV (KNPB) (1080p) [Offline] +https://knpbdt.lls.pbs.org/out/v1/662db9937fe94ff997eda3af5a09ea43/index.m3u8 +#EXTINF:-1 tvg-id="WCVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Richmond VA (WCVE) (1080p) [Offline] +https://wcvedt.lls.pbs.org/out/v1/178cb4bb51c44edc9bac3365ddbc66ca/index.m3u8 +#EXTINF:-1 tvg-id="KCWCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Riverton WY (KCWC) (1080p) [Offline] +https://kcwcdt.lls.pbs.org/out/v1/2f8c171f73764e29893631dad5be2849/index.m3u8 +#EXTINF:-1 tvg-id="WBRA.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Roanoke VA (WBRA) (1080p) [Offline] +https://wbradt.lls.pbs.org/out/v1/cee6288a82584aee9e105cc7abc51da9/index.m3u8 +#EXTINF:-1 tvg-id="WXXITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Rochester NY (WXXI) (1080p) [Offline] +https://wxxidt.lls.pbs.org/out/v1/9ea6c5eb539d4545b74b67d064d12395/index.m3u8 +#EXTINF:-1 tvg-id="KRCBTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Rohnert Park CA (KRCB) (1080p) [Offline] +https://krcbdt.lls.pbs.org/out/v1/1b383c47407b41a28a57037ee7fc237c/index.m3u8 +#EXTINF:-1 tvg-id="KVIETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Sacramento CA (KVIE) (1080p) [Offline] +https://kviedt.lls.pbs.org/out/v1/034f052201e7437da6266c4679e97526/index.m3u8 +#EXTINF:-1 tvg-id="KUEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Salt Lake City UT (KUED) (1080p) [Offline] +https://kueddt.lls.pbs.org/out/v1/53400b74960e4a84bc4b945148e9e19a/index.m3u8 +#EXTINF:-1 tvg-id="KLRNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Antonio TX (KLRN) (1080p) [Offline] +https://klrndt.lls.pbs.org/out/v1/4d29690f8127489fafb33fb5ebd2cbeb/index.m3u8 +#EXTINF:-1 tvg-id="KVCR.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Bernardino CA (KVCR) (1080p) [Offline] +https://kvcrdt.lls.pbs.org/out/v1/5114aad2d1844ccba15d559173feec19/index.m3u8 +#EXTINF:-1 tvg-id="KPBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Diego CA (KPBS) (1080p) [Offline] +https://kpbsdt.lls.pbs.org/out/v1/cf509cc4289644f886f7496b7328a46b/index.m3u8 +#EXTINF:-1 tvg-id="KQEDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS San Francisco CA (KQED) (1080p) [Offline] +https://kqeddt.lls.pbs.org/out/v1/7bc5c6cfcf9b4593b7d6ad1f8b0a0138/index.m3u8 +#EXTINF:-1 tvg-id="WVIATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Scranton PA (WVIA) (1080p) [Offline] +https://wviadt.lls.pbs.org/out/v1/aa3bcde7d86a4b60b57f653c565188df/index.m3u8 +#EXTINF:-1 tvg-id="KCTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Seattle WA (KCTS) (1080p) [Offline] +https://rtmp-kctsdt.lls.cdn.pbs.org/rtmp-kctsdt/271a9ab7-e9ed-4fec-9fe9-e46c97a3f8f0/primary.m3u8 +#EXTINF:-1 tvg-id="KOODTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Smoky Hills KS (KOOD) (1080p) [Offline] +https://kooddt.lls.pbs.org/out/v1/67d31d78887e485282d135628be5489f/index.m3u8 +#EXTINF:-1 tvg-id="WNIT.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS South Bend IN (WNIT) (1080p) [Offline] +https://wnitdt.lls.pbs.org/out/v1/0eb01a8a161e4650af15b6542a20cde5/index.m3u8 +#EXTINF:-1 tvg-id="KSPS.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Spokane WA (KSPS) (1080p) [Offline] +https://kspsdt.lls.pbs.org/out/v1/cf8babf84d2b48e3876bae15e08dcdc6/index.m3u8 +#EXTINF:-1 tvg-id="KETCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS St. Louis MO (KETC) (1080p) [Offline] +https://ketcdt.lls.pbs.org/out/v1/08273a78d29c4b0abd6e0eb996b3d8cf/index.m3u8 +#EXTINF:-1 tvg-id="KBTC.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tacoma WA (KBTC) (1080p) [Offline] +https://kbtcdt.lls.pbs.org/out/v1/4f08c8e00549441b9a2acce47d112525/index.m3u8 +#EXTINF:-1 tvg-id="WFSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tallahassee FL (WFSU) (1080p) [Offline] +https://wfsudt.lls.pbs.org/out/v1/d2be172139764358a0d54352c8411845/index.m3u8 +#EXTINF:-1 tvg-id="WEDUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tampa FL (WEDU) (1080p) [Offline] +https://wedudt.lls.pbs.org/out/v1/3e147f13bc464958b6ace4e5a5b9accc/index.m3u8 +#EXTINF:-1 tvg-id="KTWUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Topeka KS (KTWU) (1080p) [Offline] +https://ktwudt.lls.pbs.org/out/v1/567e503539034dd0ab8838b7e33ba5de/index.m3u8 +#EXTINF:-1 tvg-id="KUATTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Tucson AZ (KUAT) (1080p) [Offline] +https://kuatdt.lls.pbs.org/out/v1/8d95fb8559594a7b9359077ea0a512c3/index.m3u8 +#EXTINF:-1 tvg-id="WILLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Urbana-Champaign IL (WILL) (1080p) [Offline] +https://willdt.lls.pbs.org/out/v1/15103ad003674a29b20b847deb71992b/index.m3u8 +#EXTINF:-1 tvg-id="KUSDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Vermillion SD (KUSD) (1080p) [Offline] +https://kusddt.lls.pbs.org/out/v1/38b8947635c54de8a15c5260e5cf774e/index.m3u8 +#EXTINF:-1 tvg-id="WVUTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Vincennes IN (WVUT) (1080p) [Offline] +https://wvutdt.lls.pbs.org/out/v1/6f47817ed7d54053815e35042c1f4824/index.m3u8 +#EXTINF:-1 tvg-id="KMOSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Warrensburg MO (KMOS) (1080p) [Offline] +https://hls-kmosdt.lls.pbs.org/out/v1/95689f4594814dfca261ea90892eafab/index.m3u8 +#EXTINF:-1 tvg-id="WHUTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Washington DC (WHUT) (1080p) [Offline] +https://whutdt.lls.pbs.org/out/v1/dd1102f24d7948e58517ba6a6573c928/index.m3u8 +#EXTINF:-1 tvg-id="WPBSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Watertown NY (WPBS) (1080p) [Offline] +https://wpbsdt.lls.pbs.org/out/v1/e3680a91029c4df9b7797ce13d828207/index.m3u8 +#EXTINF:-1 tvg-id="WXELTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS West Palm Beach FL (WXEL) (1080p) [Offline] +https://wxeldt.lls.pbs.org/out/v1/d4f2bc8357164a2e93d35abd2caecc4b/index.m3u8 +#EXTINF:-1 tvg-id="KPTSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d1qbemlbhjecig.cloudfront.net/prod/filer_public/pbs-digital-studios-bento-live-pbs/icons/1fcc0dd46e_PBS_favicon.png" group-title="Education;Local",PBS Wichita KS (KPTS) (1080p) [Offline] +https://kptsdt.lls.pbs.org/out/v1/1ca3404d6bc3404c9daa86c8f1ae19d0/index.m3u8 diff --git a/channels/us_plex.m3u~master b/channels/us_plex.m3u~master new file mode 100644 index 000000000..c540154b6 --- /dev/null +++ b/channels/us_plex.m3u~master @@ -0,0 +1,221 @@ +#EXTM3U +#EXTINF:-1 tvg-id="24HourFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FiTdDp1.png" group-title="Movies",24 Hour Free Movies (720p) [Not 24/7] +https://d15690s323oesy.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/UDU-Plex/158.m3u8 +#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (1080p) [Offline] +https://120sports-accdn-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AccuWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yNDUzNzc0Mjlf/AccuWeather_500x500.png" group-title="Weather",AccuWeather Now (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00684-accuweather-accuweather-plex/playlist.m3u8 +#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) +https://linear-12.frequency.stream/dist/plex/12/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f7b66af901c6845181f33d3" group-title="Comedy",AFV en Español (720p) [Not 24/7] +https://linear-46.frequency.stream/dist/plex/46/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiancrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tmtdwdU.png" group-title="Entertainment",Asiancrush (720p) [Offline] +https://ac-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Bambu.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Bambu [Offline] +https://bambu-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="KMTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/ea/KMTV3.png" group-title="Local",CBS 3 Omaha NE (KMTV-TV) (1080p) [Offline] +https://kmtvnow-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://cheddar.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Choppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c5eb78083e72bec0d0522" group-title="Auto",Choppertown (720p) [Not 24/7] +https://linear-11.frequency.stream/dist/plex/11/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) +https://comedydynamics-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) +https://contv-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://contvanime-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Crackle.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjUyNDQ4NjZf/Crackle_365x365.png" group-title="Movies",Crackle (720p) +https://crackle-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (1080p) [Offline] +https://aenetworks-crime360-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) +https://dmtv-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (1080p) [Offline] +https://endemol-dealornodeal-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) +https://docurama-plex-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] +https://dove-channel.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) +https://edgesports-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) +https://estrellanews-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) +https://estrellatv-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) +https://euronews-euronews-spanish-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) +https://euronews-euronews-world-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (1080p) [Offline] +https://failarmy-linear.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (540p) [Offline] +https://9c17e762ec814557b3516dd3e0a7ca56.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_FailArmy/ade59f27-be9b-4b71-b8dc-05928c1dfdf4/2.m3u8 +#EXTINF:-1 tvg-id="FilmStreams.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cFbzgED.jpg" group-title="",FilmStreams (1080p) [Offline] +https://spi-filmstream-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FreebieTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Freebie TV (720p) [Not 24/7] +https://d1h1d6qoy9vnra.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/Freebie-Plex/187.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network East (540p) [Offline] +https://gsn-gameshowchannnel-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GFNTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/V5CTsI0.png" group-title="",GFN TV (720p) [Not 24/7] +https://d3jxchypmk8fja.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/GFNTV-Plex/169.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (720p) [Offline] +https://glewedtv-3.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Offline] +https://gravitas-movies.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (1080p) +https://gustous-plex.amagi.tv/hls/amagi_hls_data_gustoAAAA-gustous-plex/CDN/playlist.m3u8?X-Plex-Token=MorUy57ijWhGe4ixZb_T&channelId=5f8746eabd529300418246d9&did=df8e1a36-847d-5096-86a7-3803ed330ede&dnt=0&us_privacy=1--- +#EXTINF:-1 tvg-id="HardKnocks.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/ixAkq26.png" group-title="",Hard Knocks (1080p) [Not 24/7] +https://d3uyzhwvmemdyf.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HardKnocks-PLEX/121.m3u8 +#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (1080p) +https://linear-59.frequency.stream/dist/plex/59/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="HollywoodClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/HollywoodClassics_v2_290x290.png?raw=true" group-title="Classic",Hollywood Classics (1080p) [Offline] +https://vitor-hollywoodclassics-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HumorMill.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lYqcF1P.png" group-title="Comedy",Humor Mill (1080p) [Not 24/7] +https://damkf751d85s1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/HumorMill-PLEX/152.m3u8 +#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) +https://ign-plex.amagi.tv/hls/amagi_hls_data_ignAAAAAA-ign-plexA/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) +https://ign-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/journy.png" group-title="Travel",Journy (720p) +https://vcnplex.teleosmedia.com/linear/ovation/journy/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=5f5132df62fe160040f26bc2&ptoken=PLbo_Jw_s1xgoB_1Srgg +#EXTINF:-1 tvg-id="JournysBourdainAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/cms/staging/da04b14e-5a31-4296-bf2e-bbbf0b237255/Journy_s_Bourdain_All_Day_logo_dark.png" group-title="",Journy's Bourdain All Day (1080p) +https://plexpab.teleosmedia.com/linear/ovation/journypresentsanthonybourdain/playlist.m3u8?did=62274240-07e7-5d94-8dc8-ef68cf19e175&dnt=0&pid=6182cd0df4e62961d9c2ccf6&ptoken=PLbo_Jw_s1xgoB_1Srgg +#EXTINF:-1 tvg-id="JudgeFaith.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VMJvKbC.png" group-title="Series",Judge Faith (1080p) [Offline] +https://judge-faith-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) +https://vidaprimo-plex.amagi.tv/hls/amagi_hls_data_vidaprimo-vidaprimo-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) +https://vidaprimo-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Offline] +https://lawandcrime-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LIT.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FPEisf1.png" group-title="",LIT (1080p) [Offline] +https://studio1-lit-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (1080p) [Offline] +https://aenetworks-ae-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopBeastModeWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/fb8c7ba652305a8700924347d46dcdff.jpeg" group-title="Music",Loop Beast Mode West (1080p) [Geo-blocked] +https://1f0e60dbce3043279c491fe51983361d.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/beast_mode_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopElectronicaWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.12core.net/d8d1f2a3ea03ed135a7873ff7c0ce161.jpeg" group-title="Music",Loop Electronica West (1080p) [Not 24/7] +https://57490d2f4ea646bbae56a1a816617a5f.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/electro_anthems_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop West (1080p) [Offline] +https://e20b86263a38460ba3647b18fb150000.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/hip_hop_bangers_plex/master.m3u8 +#EXTINF:-1 tvg-id="LoopPartyWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party West (1080p) [Offline] +https://0b1ea79d9170498c91073ff8c460de18.mediatailor.us-west-2.amazonaws.com/v1/master/6b8beeb9ed833d048c8c8155a25a28fe617c5474/party_plex/master.m3u8 +#EXTINF:-1 tvg-id="MagellanTVNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV Now (720p) [Offline] +https://magellantv-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) [Offline] +https://maverick-maverick-black-cinema-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjgzNzU2MTNf?inline=1" group-title="Sports",MavTV Select (1080p) [Offline] +https://mavtv-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) +https://369f2966f62841f4affe37d0b330a13c.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_MidnightPulp/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c4427&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=263&ads.wurl_name=MidnightPulp +#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphere-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MuseumTVFast.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopeu.samsungcloud.tv/platform/image/sourcelogo/vc/70/01/66/FRBA3300064WS_20211110T010724.png" group-title="Culture",Museum TV Fast (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtv-en-plex/playlist.m3u8 +#EXTINF:-1 tvg-id="NeuralFocused.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ymFMMn8.png" group-title="Music",Neural Focused [Offline] +https://1d75125ffd43490eb970a2f3f575e96c.mediatailor.us-west-2.amazonaws.com/v1/manifest/6b8beeb9ed833d048c8c8155a25a28fe617c5474/neural_focused_plex/35cba159-09d0-4e37-bf3c-99cd99ec425b/5.m3u8 +#EXTINF:-1 tvg-id="News12NewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c57ad92cd1774a1091752" group-title="Local",News 12 New York (1080p) [Offline] +https://cheddar-news12ny-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) +https://newsmax-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-newsmax-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] +https://nosey-2.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) [Not 24/7] +https://d18toqrnfyz3v1.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/OutdoorAmerica-PLEX/159.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (1080p) [Offline] +https://jukin-peopleareawesome-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://a357e37df8ec46719fdeffa29a3e8e40.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_PeopleAreAwesome/8fe64d6c-210c-42ac-8b42-8006b8721cf4/3.m3u8 +#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (1080p) +https://b12eca572da7423284734ca3a6242ea2.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_PlayWorks/playlist.m3u8?ads.app_bundle=com.plexapp.desktop&ads.app_store_url=https://app.plex.tv&ads.consent=0&ads.gdpr=1&ads.plex_id=5f0ff263d71dcb00449ec01e&ads.plex_token=MorUy57ijWhGe4ixZb_T&ads.psid=df8e1a36-847d-5096-86a7-3803ed330ede&ads.targetopt=0&ads.ua=Mozilla/5.0+(Windows+NT+6.1;+rv:83.0)+Gecko/20100101+Firefox/83.0&ads.us_privacy=1---&ads.wurl_channel=512&ads.wurl_name=PlayWorks +#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (1080p) [Offline] +https://playworksdigital-playworks-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] +https://pocketwatch.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Entertainment",Popstar! TV (1080p) [Not 24/7] +https://linear-10.frequency.stream/dist/plex/10/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="a9d5c8" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/z8O4Dl6.png" group-title="Family",Real Families (1080p) +https://lds-realfamilies-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (1080p) [Offline] +https://nosey-realnosey-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RealStories.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J6dpNiD.png" group-title="",Real Stories (1080p) +https://lds-realstories-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCrushTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) +https://45034ce1cbb7489ab1499301f6274415.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex_RetroCrush/playlist.m3u8?ads.app_bundle=&ads.app_store_url=&ads.consent=0&ads.gdpr=0&ads.plex_id=5ef4e1b40d9ad000423c442a&ads.plex_token=z1MCPUpbxYcHru-5hdyq&ads.psid=&ads.targetopt=1&ads.ua=Mozilla/5.0+(Windows+NT+10.0;+Win64;+x64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/84.0.4147.89+Safari/537.36+OPR/70.0.3728.71&ads.us_privacy=1---&ads.wurl_channel=491&ads.wurl_name=RetroCrush +#EXTINF:-1 tvg-id="RetroCrushTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) [Offline] +https://digitalmediarights-retrocrush-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Reuters.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",Reuters (1080p) +https://reuters-reutersnow-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) [Not 24/7] +https://linear-5.frequency.stream/dist/plex/5/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry2.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry 2 (720p) [Offline] +https://0bef58ceebc44ecbba8ed46a4b17de0c.mediatailor.us-west-2.amazonaws.com/v1/manifest/ba62fe743df0fe93366eba3a257d792884136c7f/LINEAR-43-REVRY2-PLEX/09eef831-6e1a-4f60-a138-77c0a1da8e06/0.m3u8 +#EXTINF:-1 tvg-id="RevryNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AdIThwq.png" group-title="Lifestyle",Revry News (720p) [Not 24/7] +https://linear-44.frequency.stream/dist/plex/44/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RunTimeFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="Movies",RunTime (1080p) +https://ammoruntime-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (1080p) +https://ammo-espanol-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RushbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sUwYQ6o.png" group-title="Movies",Rush by AMC (1080p) [Offline] +https://amc-rushbyamc-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrills.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills (1080p) [Offline] +https://aenetworks-skills-thrills-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So... Real (1080p) [Offline] +https://cinedigm-so-real-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) +https://sportsgrid-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Offline] +https://stadium-ringofhonor-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Entertainment",Tankee (720p) +https://stream-us-east-1.getpublica.com/playlist.m3u8?app_bundle=com.plexapp.desktop&app_domain=app.plex.tv&app_name=plex&content_series=5f12332eeca6a20040b328e5&content_title=MorUy57ijWhGe4ixZb_T&coppa=1&custom4=plex&device_make=Windows&device_model=Firefox&did=df8e1a36-847d-5096-86a7-3803ed330ede&gdpr=1&h=691&live=1&network_id=39&us_privacy=1---&w=1224 +#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Kids",Tankee (720p) [Offline] +https://playworksdigital-tankee-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) +https://tastemade-freetv16min-plex.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBoatShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iYDR5VS.jpg" group-title="Outdoor",The Boat Show (720p) [Offline] +https://vitor-theboatshow-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (240p) +https://cinedigm-bobross-1.plex.wurl.com/master.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) [Offline] +https://thedesignnetwork-tdn-5.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) +https://filmdetective-plex.amagi.tv/hls/amagi_hls_data_plexAAAAA-filmdetective-plex/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) +https://filmdetective-plex.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) [Offline] +https://631dd17512664bafa0f3d1bd9717d7c0.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_ThePetCollective/9a0bc894-3507-4712-ac73-40ae060ddbef/3.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) [Offline] +https://the-pet-collective-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Timeline.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J8qVUjM.png" group-title="Entertainment",Timeline (1080p) +https://lds-timeline-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TVClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/d3de398e682d6958762def3914cb211c8f062e8b24df9a2d95d5bfc0aa4b80c0.png" group-title="Classic",TV Classics (720p) +https://vitor-tvclassics-1.plex.wurl.com/manifest/4300.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://venntv-plex.amagi.tv/hls/amagi_hls_data_venntvAAA-venntv-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (360p) [Offline] +https://waypointtv-samsung.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (1080p) [Offline] +https://jukin-weatherspy-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) [Offline] +https://04799df414944908856c6c521891945f.mediatailor.us-east-1.amazonaws.com/v1/manifest/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Plex-intl_WeatherSpy/2eba863c-1452-4ea6-98b2-2b1c0c81c112/3.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] +https://whistle-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (1080p) [Offline] +https://endemol-wipeoutxtra-1.plex.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wonder.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/qTbCyOj.png" group-title="",Wonder (1080p) +https://lds-wonder-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (1080p) [Not 24/7] +https://dth07jsr8atug.cloudfront.net/v1/master/9d062541f2ff39b5c0f48b743c6411d25f62fc25/WPT-Plex/171.m3u8 +#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) +https://xplore-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) +https://yahoo-plex.amagi.tv/hls/amagi_hls_data_yahoofina-yahoofinance-plex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) +https://yahoo-plex.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YuyuTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bbvtcd7.png" group-title="",Yuyu TV (1080p) [Offline] +https://yuyu-samsung.plex.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_pluto.m3u b/channels/us_pluto.m3u new file mode 100644 index 000000000..4bd29b3e6 --- /dev/null +++ b/channels/us_pluto.m3u @@ -0,0 +1,2159 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/10272020/Americas_Test_Kitchen_190x190.png?raw=true" group-title="Cooking",America's Test Kitchen (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appVersion=5.10.0-63088da67b32904787b837429cfa9c5c605b7626&architecture=&buildVersion=&clientTime=&deviceDNT=false&deviceId=730453b0-df89-477c-a53d-9f59f9f46f37&deviceLat=37.7510&deviceLon=-97.8220&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=72.0.3815.186&includeExtendedEvents=false&marketingRegion=US&serverSideAds=true&sid=130d48cd-22f9-11eb-9bad-0242ac110002&userId= +#EXTINF:-1 tvg-id="BBCDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60dafb9a0df1ba000758d37b/colorLogoPNG.png" group-title="",BBC Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dafb9a0df1ba000758d37b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="BlazeLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e46fba0c43b0d00096e5ac1/colorLogoPNG.png" group-title="",Blaze Live (720p) [Offline] +http://plutotv.vo.llnwd.net/m/hlslive/theblaze.m3u8?chname=theblaze&pub=0 +#EXTINF:-1 tvg-id="Boblepongeplus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Teb0Ty0.png" group-title="Kids",Bob l'éponge+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/609a33d06972da0007748ecf/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc9fd0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=195dd54b-932b-4f28-be70-7e736585335a +#EXTINF:-1 tvg-id="BounceXL.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6176fd25e83a5f0007a464c9/colorLogoPNG.png" group-title="Entertainment",Bounce XL (720p) +https://siloh.pluto.tv/lilo/production/BounceXL/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVCats247.de" tvg-country="US;DE" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (DE) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a56ce10f0b0009e64037&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4f8f5d53-0580-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCats247.de" tvg-country="US;DE" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (DE) (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCats247.uk" tvg-country="US;UK" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (UK) (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db044d7846b170009215ef0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCats247.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (US) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=599375885ceaac3cabccbed7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=635&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCats247.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db044d7846b170009215ef0/colorLogoPNG.png" group-title="Series",Cats 24/7 (US) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) +http://stitcher.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 +#EXTINF:-1 tvg-id="ClubbingTV.fr" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/600ad8f86e1eba00081da3ce/solidLogoPNG.png" group-title="",Clubbing TV (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/600ad8f86e1eba00081da3ce/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ae1b0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=97358d7c-5219-43db-bcda-c5057f0bc369 +#EXTINF:-1 tvg-id="ComediaMadeinSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JcJbAQv.png" group-title="",Comedia Made in Spain (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1abce155a03d0007718834&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=505&terminate=false&userId= +#EXTINF:-1 tvg-id="ComedyCentralEast.us" tvg-country="US" tvg-language="German" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/6/60/Comedy_central.png" group-title="Comedy",Comedy Central East (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4947590ba40f75dc29c26b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=400&terminate=false&userId= +#EXTINF:-1 tvg-id="CribsMaisonsDeStar.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/602cf8963b4bc90007454541/solidLogoPNG.png" group-title="",Cribs Maisons De Star (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/602cf8963b4bc90007454541/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5043513f-eb20-46fd-8286-9e9ba240e6f9 +#EXTINF:-1 tvg-id="DallasCowboyCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Dallas%20Cowboys%20Cheer_190x190.png?raw=true" group-title="",Dallas Cowboy Cheerleaders (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="DoctorWho.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60d3574e97f10800078455de/colorLogoPNG.png" group-title="",Doctor Who (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3574e97f10800078455de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="DramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/10062020/Drama_Life_190x190.png?raw=true" group-title="Movies",Drama Life (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f06bc60e236570007793f31&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e7f6989c-0583-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f042bf0241c6f0007721021/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="InsightPlus.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="" group-title="",Insight+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b73efd87eb3a2717ccde/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d54bbd90-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f10cd89a-c878-4a4d-8b3d-f5238f421aa0&terminate=false&userId= +#EXTINF:-1 tvg-id="InstantSaga.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549e98061b5f000776866a/solidLogoPNG.png" group-title="",Instant Saga (480p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549e98061b5f000776866a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba501-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=e11c2399-2d50-4607-be2c-d35d72152bbe +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1005f9d5d3cf00074c0395&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=13e8959c-0584-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1004e0a5714d000745650d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=47a36c19-0584-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="JustepourRire.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60afa1508284e60007163c08/solidLogoPNG.png" group-title="Comedy",Juste pour Rire (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60afa1508284e60007163c08/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fcc6e0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=a8b6a6bb-4f8c-438e-a638-d4cfa72ae69a +#EXTINF:-1 tvg-id="Loupe.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/604f8d6c7877d40007791af0/solidLogoPNG.png" group-title="",Loupe (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8d6c7877d40007791af0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5b9651e5-80c9-45f6-b3a0-499e9abe049a +#EXTINF:-1 tvg-id="LoveandHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Love%20&%20Hip%20Hop_190x190.png?raw=true" group-title="",Love and Hip Hop (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="Minecraftv.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/MinecraftTV_190x190.png?raw=true" group-title="",Minecraftv (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY +#EXTINF:-1 tvg-id="MotorvisionTV.de" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60817e1aa6997500072d0d6d/solidLogoPNG.png" group-title="Sports",Motorvision TV (360p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60817e1aa6997500072d0d6d/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc51b0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ede55dfe-45a7-4aa8-a283-7b8008be8d2e +#EXTINF:-1 tvg-id="ParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/06052020/Paramount_Movie_Channel_190x190.png?raw=true" group-title="Movies",Paramount Movie Channel (684p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54169f4b9b25000994a303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=340&terminate=false&userId= +#EXTINF:-1 tvg-id="007.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.007.com/wp-content/uploads/2017/07/rgb_logo_650-1.jpg" group-title="Movies",Pluto TV 007 (720p) [Offline] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4db961034718b2f52f9e52/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4db961034718b2f52f9e52&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTV21JumpStreet.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af00df345adb154b7a1f4/colorLogoPNG.png" group-title="Series",Pluto TV 21 Jump Street (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af00df345adb154b7a1f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTV70sCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d878d3d19b30007d2e782/colorLogoPNG.png" group-title="Movies",Pluto TV 70s Cinema (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d878d3d19b30007d2e782/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTV80sRewind.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca525b650be2571e3943c63/colorLogoPNG.png" group-title="Movies",Pluto TV 80s Rewind (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTV90sThrowback.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d86f519358a00072b978e/colorLogoPNG.png" group-title="Movies",Pluto TV 90s Throwback (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d86f519358a00072b978e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTV90120.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d83e0a382c00007bc02e7/colorLogoPNG.png" group-title="Series",Pluto TV 90120 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d83e0a382c00007bc02e7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAvidamodernadeRocko.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f6df6293a12e10007017396/colorLogoPNG.png" group-title="",Pluto TV A vida moderna de Rocko (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561d7d484dc7c8770484914a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=54&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed1ff5c39700007e2204a/colorLogoPNG.png" group-title="Movies",Pluto TV Action (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfeb961b411c00090b52b3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db867744f229f0009266784&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=759&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8588734f8000823b7de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db867744f229f0009266784/colorLogoPNG.png" group-title="Sports",Pluto TV Action Sports (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAdventureTV" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5938876b78d8d9c074c3c657/colorLogoPNG.png" group-title="Travel",Pluto TV Adventure TV (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAfterSchoolCartoons.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56171fafada51f8004c4b40f/colorLogoPNG.png" group-title="Kids",Pluto TV After School Cartoons (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAFVTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82b55ad0213e00079c509f/colorLogoPNG.png" group-title="Series",Pluto TV AFV TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82b55ad0213e00079c509f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAllEliteWrestling.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d1697f10a0e000798ed8d/colorLogoPNG.png" group-title="Sports",Pluto TV All Elite Wrestling (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d1697f10a0e000798ed8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAllRealitybyWEtv.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82530945600e0007ca076c/colorLogoPNG.png" group-title="Entertainment",Pluto TV All Reality by WE tv (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e84f54a82f05300080e6746/colorLogoPNG.png" group-title="Cooking",Pluto TV America's Test Kitchen (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84f54a82f05300080e6746&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=605&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e84f54a82f05300080e6746/colorLogoPNG.png" group-title="Cooking",Pluto TV America's Test Kitchen (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815e489b315b154db2e053/colorLogoPNG.png" group-title="Series",Pluto TV American Gladiators (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815e489b315b154db2e053&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=303&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815e489b315b154db2e053/colorLogoPNG.png" group-title="Series",Pluto TV American Gladiators (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnaylos7.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acce7f17797000718f9be/colorLogoPNG.png" group-title="",Pluto TV Ana y los 7 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acce7f17797000718f9be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAndromeda.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8db96bccae160007c71eec/colorLogoPNG.png" group-title="",Pluto TV Andromeda (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8db96bccae160007c71eec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAndromeda.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acc3e061597000768d4ea/colorLogoPNG.png" group-title="",Pluto TV Andrómeda (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc3e061597000768d4ea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimakids.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimakidsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aabee6f4a2c00076a322c&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=905&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimakidsPlus.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aabee6f4a2c00076a322c/colorLogoPNG.png" group-title="Kids",Pluto TV Animakids Plus (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5a0b44cc331900075e7769/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimales.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd834c66fe2ca0009303b8d/colorLogoPNG.png" group-title="Family",Pluto TV Animales (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd834c66fe2ca0009303b8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ae7b456c8cf265ce922&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9015b970-057f-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimals.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56b27f85ff3037045055037e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=666&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimalsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf8ea0d000120009bcad83&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=550&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimalsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ae7b456c8cf265ce922&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=301&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimalsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56b27f85ff3037045055037e/colorLogoPNG.png" group-title="Family",Pluto TV Animals+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6f57ef2767e1846e59f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d548b050-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b6f8a12a-554c-4970-82ca-4dc1f84a4016&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimaux.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60925a44f0350600075a1fdc/solidLogoPNG.png" group-title="Family",Pluto TV Animaux (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60925a44f0350600075a1fdc/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c1-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5cc06a56-861b-4448-84df-34ad224ceaa7 +#EXTINF:-1 tvg-id="PlutoTVAnime.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde17bf6591d0009839e02/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnime.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde17bf6591d0009839e02/colorLogoPNG.png" group-title="Animation",Pluto TV Anime (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde17bf6591d0009839e02/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimeAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e6a4d875d7ccf0007cc2cf1/colorLogoPNG.png" group-title="Animation",Pluto TV Animé Acción (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6a4d875d7ccf0007cc2cf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5be4c6311843b56328bce619/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Ages (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5be4c6311843b56328bce619/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Ages (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b7d3249444e05d09cc49&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=830&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayFR.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed52a62fa750007733239/colorLogoPNG.png" group-title="Animation",Pluto TV Animé All Day (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayFR.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed52a62fa750007733239/colorLogoPNG.png" group-title="Animation",Pluto TV Animé All Day (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAnimeAllDayUK.us" tvg-country="UK" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b7d3249444e05d09cc49/colorLogoPNG.png" group-title="Animation",Pluto TV Anime All Day (UK) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363ac9e41be30cb6054c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAnimeClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6054acc871ec430007f54c7d/colorLogoPNG.png" group-title="Animation",Pluto TV Anime Clásico (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054acc871ec430007f54c7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce44810b421747ae467b7cd/colorLogoPNG.png" group-title="Series",Pluto TV Antiques Roadshow UK (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce44810b421747ae467b7cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=621&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce44810b421747ae467b7cd/colorLogoPNG.png" group-title="Series",Pluto TV Antiques Roadshow UK (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8c19b2678b000780d032/colorLogoPNG.png" group-title="Series",Pluto TV Archivos Forenses (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8c19b2678b000780d032/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8c19b2678b000780d032/colorLogoPNG.png" group-title="Series",Pluto TV Archivos Forenses (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984f4a09e92d0007d74647/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAsPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99aad4e82db50007fac4b2/colorLogoPNG.png" group-title="",Pluto TV As Pistas de Blue (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAsesinatosdeMidsomer.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca8310a30e00074fab92/colorLogoPNG.png" group-title="",Pluto TV Asesinatos de Midsomer (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca8310a30e00074fab92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede45d077746000072be0fe/colorLogoPNG.png" group-title="Series",Pluto TV Auction Hunters (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45d077746000072be0fe&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=58a8da20-057f-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede45d077746000072be0fe/colorLogoPNG.png" group-title="Series",Pluto TV Auction Hunters (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f760c3d41aa2d0007bfde19/colorLogoPNG.png" group-title="Sports",Pluto TV Auto Motor Sport (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f760c3d41aa2d0007bfde19&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c676a4b5-65d2-474a-b477-c04f8b88e727&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f760c3d41aa2d0007bfde19/colorLogoPNG.png" group-title="Sports",Pluto TV Auto Motor Sport (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAvatar.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/600adbdf8c554e00072125c9/colorLogoPNG.png" group-title="",Pluto TV Avatar (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600adbdf8c554e00072125c9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddc266f80e3550009136843/colorLogoPNG.png" group-title="Series",Pluto TV Aventura (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc266f80e3550009136843/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5595e43c66ace1652e63c6a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=194&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5595e43c66ace1652e63c6a2/colorLogoPNG.png" group-title="Series",Pluto TV Awesomeness TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7656a8d0438aceb41cfdef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBabar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67e20c93312100076f3ffe/colorLogoPNG.png" group-title="",Pluto TV Babar (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67e20c93312100076f3ffe/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVBabyFirst.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="Family",Pluto TV BabyFirst (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac49ce4dc8b00078b23bc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVBackcountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cabdf1437b88b26947346b2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Backcountry (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cabdf1437b88b26947346b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=755&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBackcountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cabdf1437b88b26947346b2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Backcountry (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBarney.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f29ada4bdaebd000708d49d/colorLogoPNG.png" group-title="Series",Pluto TV Barney (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f29ada4bdaebd000708d49d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVBaywatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815eb889bca2ce7b746fdd/colorLogoPNG.png" group-title="Series",Pluto TV Baywatch (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815eb889bca2ce7b746fdd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=142&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBaywatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d815eb889bca2ce7b746fdd/colorLogoPNG.png" group-title="Series",Pluto TV Baywatch (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBBCFood.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fb5844bf5514d0007945bda/colorLogoPNG.png" group-title="Cooking",Pluto TV BBC Food (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5844bf5514d0007945bda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBBCHome.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fb5836fe745b600070fc743/colorLogoPNG.png" group-title="Lifestyle",Pluto TV BBC Home (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5836fe745b600070fc743/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBeautyandtheGeek.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18c138c32460007cc6b46/colorLogoPNG.png" group-title="",Pluto TV Beauty and the Geek (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18c138c32460007cc6b46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78f4dd001977000787d7e3/colorLogoPNG.png" group-title="",Pluto TV Being Human (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e78f4dd001977000787d7e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=dd1d87dc-057f-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78f4dd001977000787d7e3/colorLogoPNG.png" group-title="",Pluto TV Being Human (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ebc8688f3697d00072f7cf8/colorLogoPNG.png" group-title="Sports",Pluto TV Bellator MMA (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ebc8688f3697d00072f7cf8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=730&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ebc8688f3697d00072f7cf8/colorLogoPNG.png" group-title="Sports",Pluto TV Bellator MMA (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBestLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5887ba337b8e94223eb121bd/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Best Life (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5887ba337b8e94223eb121bd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=630&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBestLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5887ba337b8e94223eb121bd/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Best Life (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca670f6593a5d78f0e85aed&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=174&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca670f6593a5d78f0e85aed/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150978589c0700095f97ae/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVBETClassics.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b5ba040eaa0007074d0a/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Classics (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVBETClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f92b5ba040eaa0007074d0a/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Classics (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBETHer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e6949ab8e2b35bdcaa9f/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Her (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e6949ab8e2b35bdcaa9f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=175&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBETHer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e6949ab8e2b35bdcaa9f/colorLogoPNG.png" group-title="Entertainment",Pluto TV BET Her (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db81695a95186000941ee8b/colorLogoPNG.png" group-title="Classic",Pluto TV Beverly Hillbillies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db81695a95186000941ee8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db81695a95186000941ee8b/colorLogoPNG.png" group-title="Classic",Pluto TV Beverly Hillbillies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7796e470510900070d4e3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b551ddcd25500072c4dad/colorLogoPNG.png" group-title="Kids",Pluto TV Beyblade Burst Nick (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b551ddcd25500072c4dad&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a38b88ed-0712-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b551ddcd25500072c4dad/colorLogoPNG.png" group-title="Kids",Pluto TV Beyblade Burst Nick (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59641d9173ac1fec2fc01f17/colorLogoPNG.png" group-title="Sports",Pluto TV Big Sky Conference (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59641d9173ac1fec2fc01f17&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=752&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59641d9173ac1fec2fc01f17/colorLogoPNG.png" group-title="Sports",Pluto TV Big Sky Conference (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBigTimeRush.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aa7aab66c76000790ee7e/colorLogoPNG.png" group-title="",Pluto TV Big Time Rush (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa7aab66c76000790ee7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBiography.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af2a24f1c5ab2d298776b/colorLogoPNG.png" group-title="Documentary",Pluto TV Biography (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2a24f1c5ab2d298776b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58af4c093a41ca9d4ecabe96&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=80&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58af4c093a41ca9d4ecabe96/colorLogoPNG.png" group-title="Movies",Pluto TV Black Cinema (240p) +https://stitcher.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?appVersion=2.0.0&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012 +#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e2bceca5b4b2c0e06c50/colorLogoPNG.png" group-title="Series",Pluto TV Black Ink Crew (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e2bceca5b4b2c0e06c50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=285&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e2bceca5b4b2c0e06c50/colorLogoPNG.png" group-title="Series",Pluto TV Black Ink Crew (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f1efad04320070007dbb60b/colorLogoPNG.png" group-title="News",Pluto TV Black News Channel (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1efad04320070007dbb60b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBlazeLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="",Pluto TV Blaze Live (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e46fba0c43b0d00096e5ac1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=238&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="Kids",Pluto TV Blaze Nick (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b60419becf60008c841fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ebc579c0-0712-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b60419becf60008c841fd/colorLogoPNG.png" group-title="Kids",Pluto TV Blaze Nick (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBloombergTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Business",Pluto TV Bloomberg TV (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/54ff7ba69222cb1c2624c584/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=54ff7ba69222cb1c2624c584&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=224&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b564ff59d130007363823/colorLogoPNG.png" group-title="Kids",Pluto TV Blue's Clues Nick (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b564ff59d130007363823&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=29e99f3f-0713-11eb-a59f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b564ff59d130007363823/colorLogoPNG.png" group-title="Kids",Pluto TV Blue's Clues Nick (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBobEsponja.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca0b4e448e00075e7c5e/colorLogoPNG.png" group-title="Kids",Pluto TV Bob Esponja (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca0b4e448e00075e7c5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBobEsponjaPlus.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aca0b4e448e00075e7c5e/colorLogoPNG.png" group-title="Kids",Pluto TV Bob Esponja Plus (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd87d882574170007fac022/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBobleponge.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ffc8c345822750007e167de/colorLogoPNG.png" group-title="Kids",Pluto TV Bob l'éponge (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVBobleponge.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ffc8c345822750007e167de/colorLogoPNG.png" group-title="Kids",Pluto TV Bob l'éponge (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBoxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac425f949b4600079938f3/colorLogoPNG.png" group-title="Sports",Pluto TV Boxing (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac425f949b4600079938f3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBritishTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b68a18823ecb93393cba2f1/colorLogoPNG.png" group-title="Entertainment",Pluto TV British TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBritishTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b68a18823ecb93393cba2f1/colorLogoPNG.png" group-title="Entertainment",Pluto TV British TV (240p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b68a18823ecb93393cba2f1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=154&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBritpocalypse.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e1edac394e0e80009b2416a/colorLogoPNG.png" group-title="",Pluto TV Britpocalypse (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1edac394e0e80009b2416a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5a4bb7da5c0007e5c9e9/colorLogoPNG.png" group-title="Kids",Pluto TV Bubble Guppies (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b5a4bb7da5c0007e5c9e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c631817-0713-11eb-9df2-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5a4bb7da5c0007e5c9e9/colorLogoPNG.png" group-title="Kids",Pluto TV Bubble Guppies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVBuzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Pluto TV Buzzr (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bfbe4ced4f7b601b12e6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=540&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVBuzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="",Pluto TV Buzzr (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b3a4249444e05d09cc46&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=663&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCars.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b3a4249444e05d09cc46/colorLogoPNG.png" group-title="Auto",Pluto TV Cars (720p) [Offline] +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c12ba66eae03059cbdc77f2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 +#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb66537867f0007146953/colorLogoPNG.png" group-title="",Pluto TV Catfish (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="CBSSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e9f2c05172a0f0007db4786/colorLogoPNG.png" group-title="Sports",Pluto TV CBS Sports HQ (1080p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5e9f2c05172a0f0007db4786/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCBSN2.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5a6b92f6e22a617379789618/colorLogoPNG.png" group-title="News",Pluto TV CBSN (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a6b92f6e22a617379789618/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a6b92f6e22a617379789618&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=204&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCBSNBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f75919718aed0007250d7a/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Baltimore MD (720p) [Not 24/7] +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f75919718aed0007250d7a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCBSNewsBayArea.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1afb21486df0007abc57c/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Bay Area CA (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1afb21486df0007abc57c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNewsBoston.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1af2ad345340008fccd1e/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Boston MA (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1af2ad345340008fccd1e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNewsChicago.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1aeb2fd4b8a00076c2047/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Chicago IL (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1aeb2fd4b8a00076c2047/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNDallasFortWorth.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eceb0d4065c240007688ec6/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Dallas Ft Worth TX (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5eceb0d4065c240007688ec6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCBSNewsDenver.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5eb1b12146cba40007aa7e5d/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Denver CO (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b12146cba40007aa7e5d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNewsLosAngeles.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc481cda1d430000948a1b4/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Los Angeles CA (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc481cda1d430000948a1b4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc481cda1d430000948a1b4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=207&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCBSNMinnesota.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b0bf2240d8000732a09c/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Minnesota MN (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b0bf2240d8000732a09c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNNewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc48170e280c80009a861ab/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN New York NY (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc48170e280c80009a861ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc48170e280c80009a861ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=206&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCBSNPhilly.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b05ea168cc000767ba67/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Philly PA (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b05ea168cc000767ba67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNPittsburgh.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb1b17aa5277e00083f6521/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Pittsburgh PA (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b17aa5277e00083f6521/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCBSNSacramento.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60cb6df2b2ad610008cd5bea/colorLogoPNG.png" group-title="Local;News",Pluto TV CBSN Sacramento CA (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60cb6df2b2ad610008cd5bea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCelebrity.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8bf1472907815f66a866dd/colorLogoPNG.png" group-title="",Pluto TV Celebrity (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf1472907815f66a866dd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=320&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCelebrity.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8bf1472907815f66a866dd/colorLogoPNG.png" group-title="",Pluto TV Celebrity (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVChassy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b6b285823ecb93393cbf766/colorLogoPNG.png" group-title="",Pluto TV Chassy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b6b285823ecb93393cbf766&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=687&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVChassy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b6b285823ecb93393cbf766/colorLogoPNG.png" group-title="",Pluto TV Chassy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCheddar.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV Cheddar (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812afe1d0f0b8d55dde67fa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812afe1d0f0b8d55dde67fa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=226&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCheddar.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV Cheddar (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e02c08ee5378be82db47/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVChefkoch.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8c4c3f141f350007936f7d/colorLogoPNG.png" group-title="",Pluto TV Chefkoch (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8c4c3f141f350007936f7d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8ae325bb-0580-11eb-9df2-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVChefkoch.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8c4c3f141f350007936f7d/colorLogoPNG.png" group-title="",Pluto TV Chefkoch (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCiencia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd8364ea1d6780009929902/colorLogoPNG.png" group-title="Science",Pluto TV Ciencia (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd8364ea1d6780009929902/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96b1c4f1ca3f0629f4bf0/colorLogoPNG.png" group-title="Movies",Pluto TV Cine (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b1c4f1ca3f0629f4bf0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=902&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96b1c4f1ca3f0629f4bf0/colorLogoPNG.png" group-title="Movies",Pluto TV Cine (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed0f17564a300082b676a/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCine.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed0f17564a300082b676a/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d164d92e97a5e107638d2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=904&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcb62e63d4d8f0009f36881/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1ac2591dd8880007bb7d6d/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Acción (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac2591dd8880007bb7d6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/61373bb45168fe000773eecd/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Clásico (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/61373bb45168fe000773eecd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcdde78f080d900098550e4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8099c49f600076579b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineComedia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcdde78f080d900098550e4/colorLogoPNG.png" group-title="Comedy",Pluto TV Cine Comédia (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac947dcd00d0007937c08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfcb229eff00091b6bdf/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Drama (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf968040ab7d8f181e6a68b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=901&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde437229eff00091b6c30/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde437229eff00091b6c30/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Estelar (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1f1b66c76000790ef27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineFamília" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="",Pluto TV Cine Família (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ddb30a1d8a000908ed4c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineFamília" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f171f032cd22e0007f17f3d/colorLogoPNG.png" group-title="",Pluto TV Cine Família (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineRetro.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed168f72fcd0007e56269/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné Rétro (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineRetro.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed168f72fcd0007e56269/colorLogoPNG.png" group-title="Movies",Pluto TV Ciné Rétro (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineSuspenso.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f984c1dc54853000797a5e8/colorLogoPNG.png" group-title="Culture",Pluto TV Cine Suspenso (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc4e8bcbb9010009b4e84f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d180092e97a5e107638d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=913&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddf1ed95e740009fef7ab/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCineTerror.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddf1ed95e740009fef7ab/colorLogoPNG.png" group-title="Movies",Pluto TV Cine Terror (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCinePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5ff5eb810e2996000768c0e2/solidLogoPNG.png" group-title="Movies",Pluto TV Ciné+ (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5eb810e2996000768c0e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89a930-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=d7d7d33d-5784-4dee-a799-d09bd30b065a +#EXTINF:-1 tvg-id="PlutoTVCinema.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Movies",Pluto TV Cinéma (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?appVersion=5.4.0&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe73477534 +#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5b0dada51f8004c4d855&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=106&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicMoviesEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/561c5b0dada51f8004c4d855/colorLogoPNG.png" group-title="Classic",Pluto TV Classic Movies (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d134a74ca91eedee1630faa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=903&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicNickBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Classic",Pluto TV Classic Nick (Brazil) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f12151794c1800007a8ae63&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=730&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/562ea53fa9060c5a7d463e74/colorLogoPNG.png" group-title="Kids",Pluto TV Classic Toons TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=562ea53fa9060c5a7d463e74&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=548&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/562ea53fa9060c5a7d463e74/colorLogoPNG.png" group-title="Kids",Pluto TV Classic Toons TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5e46ae801f347500099d461a/solidLogoPNG.png" group-title="Classic",Pluto TV Classic TV (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46ae801f347500099d461a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35f76fb0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=2fac39a7-56bc-492e-ae1e-3f6fb6cef1bc +#EXTINF:-1 tvg-id="PlutoTVClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e46ae801f347500099d461a/solidLogoPNG.png" group-title="Classic",Pluto TV Classic TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e32b297f96000768f928/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Comedy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e32b297f96000768f928/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Comedy (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e32b297f96000768f928&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=501&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e3cccf49290007053c67/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e3cccf49290007053c67&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=520&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e3cccf49290007053c67/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f779951372da90007fd45e8/colorLogoPNG.png" group-title="Classic",Pluto TV Classic TV Drama (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f779951372da90007fd45e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f984784ccb4de0007dfad74/colorLogoPNG.png" group-title="Music",Pluto TV Clubbing TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984784ccb4de0007dfad74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f984784ccb4de0007dfad74/colorLogoPNG.png" group-title="Music",Pluto TV Clubbing TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ad1a372e57c0007dbee5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dcc42446750e200093b15e2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=182&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVCMT.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dcc42446750e200093b15e2/colorLogoPNG.png" group-title="Music",Pluto TV CMT (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channelStore=us&channel_id=151908&content=0adc72cd87e45d3491f8e47e54bbcc98&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCMTEqualPlay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f68f53eb1e5800007390bf8/colorLogoPNG.png" group-title="Music",Pluto TV CMT Equal Play (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f68f53eb1e5800007390bf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCMTWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e94282d4ec87bdcbb87cd/colorLogoPNG.png" group-title="Movies",Pluto TV CMT Westerns (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e94282d4ec87bdcbb87cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e94282d4ec87bdcbb87cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=103&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCNET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56283c8769ba54637dea0464/colorLogoPNG.png" group-title="",Pluto TV CNET (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56283c8769ba54637dea0464&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=228&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCNET.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/56283c8769ba54637dea0464/colorLogoPNG.png" group-title="",Pluto TV CNET (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCNN.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV CNN (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5421f71da6af422839419cb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5421f71da6af422839419cb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=209&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0fbaa8742fa3093899da&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=956&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCocina.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0657444a40009cd2422/colorLogoPNG.png" group-title="Cooking",Pluto TV Cocina (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0657444a40009cd2422/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCocinaSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cocina (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdaa8ba90f0007d5e760&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=700&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cold Case Files (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Series",Pluto TV Cold Case Files (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c37d6712de254456f7ec340&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=373&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1ac3e268cae539bcedb07/colorLogoPNG.png" group-title="Sports",Pluto TV Combate World (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1ac3e268cae539bcedb07/colorLogoPNG.png" group-title="Sports",Pluto TV Combate World (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ac3e268cae539bcedb07&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=970&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComediaMadeinSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abce155a03d0007718834/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedia (Made in Spain) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedie.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb91bb9b9e7000817e67f/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédie (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVComedie.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb91bb9b9e7000817e67f/colorLogoPNG.png" group-title="Comedy",Pluto TV Comédie (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d3a00ad95e4718ae8d8db&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efd0dbbe3ba000908b639&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2ede5357-0728-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363c2411c5ca053f198f97/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a4d3a00ad95e4718ae8d8db/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4947590ba40f75dc29c26b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5ca4fefb-0728-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13bde24f4ca800093d57b5/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (240p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca671f215a62078d2ec0abf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=465&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4948418101147596fd6c5a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=91083755-0728-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany) (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermanyPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4948418101147596fd6c5a/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central (Made in Germany)+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b8923fc302800079e4f4f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b8923fc302800079e4f4f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ee59b770-663e-4463-bf9b-3f7c374fbc39&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentralPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4947590ba40f75dc29c26b/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central + (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcea6bc6fb8890009322ff3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcea6bc6fb8890009322ff3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=90d72ed4-4920-4983-a25f-2926c714e415&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentralAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f99e24636d67d0007a94e6d/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Animation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99e24636d67d0007a94e6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cf96dad1652631e36d43320/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Latino (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96dad1652631e36d43320&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=967&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96dad1652631e36d43320/colorLogoPNG.png" group-title="Comedy",Pluto TV Comedy Central Latino (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCompetencias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6d935d000120009bc1132/colorLogoPNG.png" group-title="",Pluto TV Competencias (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6d935d000120009bc1132/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVConspiracy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4ae94ef1a1bbb350ca41bb/colorLogoPNG.png" group-title="",Pluto TV Conspiracy (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVConspiracyEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4ae94ef1a1bbb350ca41bb/colorLogoPNG.png" group-title="",Pluto TV Conspiracy (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4ae94ef1a1bbb350ca41bb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCookalong.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dbc297672961b0009f12e5b/colorLogoPNG.png" group-title="Cooking",Pluto TV Cookalong (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc297672961b0009f12e5b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCops.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e1f7e089f23700009d66303/colorLogoPNG.png" group-title="Series",Pluto TV Cops (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e1f7e089f23700009d66303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=367&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCops.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e1f7e089f23700009d66303/colorLogoPNG.png" group-title="Series",Pluto TV Cops (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCourtTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Court TV (480p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0b4841a7d0000938ddbd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0b4841a7d0000938ddbd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=395&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCourtroom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6036e6e7ac69c400072afca2/colorLogoPNG.png" group-title="Entertainment",Pluto TV Courtroom (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e6e7ac69c400072afca2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b6c60fd20c50007910bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2da8f50-0581-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767790d0438aceb41d03ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed4dbf6bb0800071ffbcb/colorLogoPNG.png" group-title="Series",Pluto TV Crime (England) (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea18cd42ee5410007e349dc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=200&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f31fd1b4c510e00071c3103/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f31fd1b4c510e00071c3103/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Drama (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f31fd1b4c510e00071c3103&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=350&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18cd42ee5410007e349dc/colorLogoPNG.png" group-title="Series",Pluto TV Crime Investigation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation360.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6000a5a9e767980007b497ca/colorLogoPNG.png" group-title="Series",Pluto TV Crime Investigation 360 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a5a9e767980007b497ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c37d6712de254456f7ec340/colorLogoPNG.png" group-title="Movies",Pluto TV Crime Movies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d8594eb979c0007706de7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCrimeTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV Crime TV (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c571faeb3e2738ae27933&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCrimePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/5ffebbeabd18520007b37709/solidLogoPNG.png" group-title="",Pluto TV Crime+ (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebbeabd18520007b37709/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9391-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=fc31112d-4925-4f44-b50f-ddf0ca08e7c7 +#EXTINF:-1 tvg-id="PlutoTVCSI.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd29e4aa26700076c0d06/colorLogoPNG.png" group-title="Series",Pluto TV CSI (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd29e4aa26700076c0d06&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=355&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCSI.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd29e4aa26700076c0d06/colorLogoPNG.png" group-title="Series",Pluto TV CSI (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCuisine.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed48146ba9e00078424b6/colorLogoPNG.png" group-title="Cooking",Pluto TV Cuisine (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCuisine.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed48146ba9e00078424b6/colorLogoPNG.png" group-title="Cooking",Pluto TV Cuisine (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c665db3e6c01b72c4977bc2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=109&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c31f2f21b553c1f673fb0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCultFilms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c31f2f21b553c1f673fb0/colorLogoPNG.png" group-title="Movies",Pluto TV Cult Films (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVCurroJimenez.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acd36779de70007a680d1/colorLogoPNG.png" group-title="",Pluto TV Curro Jiménez (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acd36779de70007a680d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40855b3fb0855028c99b6f/colorLogoPNG.png" group-title="Series",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40855b3fb0855028c99b6f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=315&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40855b3fb0855028c99b6f/colorLogoPNG.png" group-title="Series",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e843d849109b700075d5ada/colorLogoPNG.png" group-title="Series",Pluto TV Dark Matter (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e843d849109b700075d5ada&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ddc64e1e-0581-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e843d849109b700075d5ada/colorLogoPNG.png" group-title="Series",Pluto TV Dark Matter (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3958c66ac540007d6e6a7/colorLogoPNG.png" group-title="Series",Pluto TV Dark Shadows (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3958c66ac540007d6e6a7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=535&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3958c66ac540007d6e6a7/colorLogoPNG.png" group-title="Series",Pluto TV Dark Shadows (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDating.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6092544e7639460007d4835e/solidLogoPNG.png" group-title="Series",Pluto TV Dating (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6092544e7639460007d4835e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5a2b1311-2550-464b-8060-15765b30c4f8 +#EXTINF:-1 tvg-id="PlutoTVDeadlyWomen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1df0d50be2571e393ad31/colorLogoPNG.png" group-title="Series",Pluto TV Deadly Women (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1df0d50be2571e393ad31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9debf8c881310007d7bde1/colorLogoPNG.png" group-title="Series",Pluto TV Deal or No Deal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9debf8c881310007d7bde1/colorLogoPNG.png" group-title="Series",Pluto TV Deal or No Deal (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9debf8c881310007d7bde1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=165&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6eeb85c05dfc257e5a50c4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=144&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDegrassi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de58ef515635d00091f605d/colorLogoPNG.png" group-title="Series",Pluto TV Degrassi (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de58ef515635d00091f605d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f061242a7951e00075d7413/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Demand Africa (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f061242a7951e00075d7413/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f061242a7951e00075d7413&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=172&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDeportes.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde07af1c85b0009b18651/colorLogoPNG.png" group-title="Sports",Pluto TV Deportes (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde07af1c85b0009b18651/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce4475cd43850831ca91ce7/colorLogoPNG.png" group-title="Classic",Pluto TV Doctor Who Classic (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce4475cd43850831ca91ce7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=532&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce4475cd43850831ca91ce7/colorLogoPNG.png" group-title="Classic",Pluto TV Doctor Who Classic (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b85a7582921777994caea63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=91&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db048f9447d6c0009b8f29d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0d94d79f-0582-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04252241007000975faac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b85a7582921777994caea63/colorLogoPNG.png" group-title="Documentary",Pluto TV Documentaries (360p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDogelcazarrecompensas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f9992c685a2a80007fa414a/colorLogoPNG.png" group-title="Series",Pluto TV Dog el cazarrecompensas (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9992c685a2a80007fa414a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bee1a7359ee03633e780238&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=381&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bee1a7359ee03633e780238/colorLogoPNG.png" group-title="Series",Pluto TV Dog the Bounty Hunter (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b535a278bfe000799484a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b329e0a7b9d8872aeb49ceb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=636&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d8dc1d8da13e15d9fce6911&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7254c815-0582-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDogs247.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b329e0a7b9d8872aeb49ceb/colorLogoPNG.png" group-title="Series",Pluto TV Dogs 24/7 (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc0740e843c7812dcb8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e43c344b54fe800093552f4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c28ebf75-0713-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fb6c84dd37df3b4290c5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=985&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDoraTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecb9524419b0007365a1c/colorLogoPNG.png" group-title="Kids",Pluto TV Dora TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8edad922b10b000753bc37/colorLogoPNG.png" group-title="Series",Pluto TV Dossiers FBI (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 +#EXTINF:-1 tvg-id="PlutoTVDrOz" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac43a40fe4ab0007f478ac/colorLogoPNG.png" group-title="Series",Pluto TV Dr. Oz (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac43a40fe4ab0007f478ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc190f7bfed110009d934c3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a1f190ec-0582-11eb-a59f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e92e4694c027be6ecece1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=60&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDramaEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91149880d60009d35d27&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=402&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDramaGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc190f7bfed110009d934c3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=200&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f24662bebe0f0000767de32/colorLogoPNG.png" group-title="Movies",Pluto TV Drama Life (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f24662bebe0f0000767de32&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=332&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDramaLife.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f24662bebe0f0000767de32/colorLogoPNG.png" group-title="Movies",Pluto TV Drama Life (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebb618f6cb4000728082c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9390-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7eed86a2-2fee-402b-9978-ecaffe0235c0 +#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed2d1c34c2300073bf02c/colorLogoPNG.png" group-title="Movies",Pluto TV Drama+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddbf866b1862a0009a0648e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ddbf866b1862a0009a0648e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3a2ed1cd-e3a3-4fa3-bdbc-94e7363ca0cf&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVDuckDynasty.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f6b54b9e67cf60007d4cef1/colorLogoPNG.png" group-title="Series",Pluto TV Duck Dynasty (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b54b9e67cf60007d4cef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVElConquistadordelFin.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f280149cec6be00072ab1fc/colorLogoPNG.png" group-title="",Pluto TV El Conquistador del Fin (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f280149cec6be00072ab1fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVElEncantadordePerros.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60e45687313c5f0007bc8e94/colorLogoPNG.png" group-title="",Pluto TV El Encantador de Perros (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60e45687313c5f0007bc8e94/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVElReinoInfantil.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d3d06fb60d8000781fce8/colorLogoPNG.png" group-title="",Pluto TV El Reino Infantil (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3d06fb60d8000781fce8/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVEmpenosalobestia.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f23102d5e239d00074b092a/colorLogoPNG.png" group-title="",Pluto TV Empeños a lo bestia (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f23102d5e239d00074b092a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Pluto TV EN DIRECTO EN VIVO (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=a6f8 +#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us" tvg-country="US" tvg-language="Spanish" tvg-logo="" group-title="",Pluto TV EN DIRECTO EN VIVO (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=9f61 +#EXTINF:-1 tvg-id="PlutoTVESR24/7.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1e0ee50be2571e393ad33/colorLogoPNG.png" group-title="Sports",Pluto TV ESR 24/7 (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e0ee50be2571e393ad33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVEstrellasdeAccion.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e972a21ad709d00074195ba/colorLogoPNG.png" group-title="",Pluto TV Estrellas de Acción (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e972a21ad709d00074195ba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVETLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc0c78281eddb0009a02d5e/colorLogoPNG.png" group-title="Entertainment",Pluto TV ET Live (1080p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc0c78281eddb0009a02d5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=190&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVETLive.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc0c78281eddb0009a02d5e/colorLogoPNG.png" group-title="Entertainment",Pluto TV ET Live (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVEuronews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60d3583ef310610007fb02b1/colorLogoPNG.png" group-title="News",Pluto TV Euronews (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3583ef310610007fb02b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVExplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad9b8551b95267e225e59c1/colorLogoPNG.png" group-title="",Pluto TV Explore (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b8551b95267e225e59c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVExtreme.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed327f9e9b0000761141e/colorLogoPNG.png" group-title="",Pluto TV Extrême (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVExtreme.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed327f9e9b0000761141e/colorLogoPNG.png" group-title="",Pluto TV Extrême (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebaccf1734aaf0007142c86/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d883e738977e2c31096b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf5fafb5ee0007d4d0ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/554158e864526b29254ff105/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7ffe738977e2c312133/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebaccf1734aaf0007142c86/colorLogoPNG.png" group-title="Comedy",Pluto TV FailArmy (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFaithTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c58a539fae3812612f33ca3/colorLogoPNG.png" group-title="Religious",Pluto TV Faith TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c58a539fae3812612f33ca3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=643&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFaithTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c58a539fae3812612f33ca3/colorLogoPNG.png" group-title="Religious",Pluto TV Faith TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc3fc6b9133f500099c7d98/colorLogoPNG.png" group-title="Family",Pluto TV Family (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc3fc6b9133f500099c7d98/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFamilyTies.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f77939a630f530007dde654/colorLogoPNG.png" group-title="Series",Pluto TV Family Ties (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77939a630f530007dde654/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFantastic.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b64a245a202b3337f09e51d/colorLogoPNG.png" group-title="Series",Pluto TV Fantastic (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b64a245a202b3337f09e51d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=66&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFashionTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60c882460ea4a200076a2a37/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashion TV (720p) +https://siloh.pluto.tv/lilo/production/FashionTV/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVFashionBox.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee8d84bfb286e0007285aad/colorLogoPNG.png" group-title="Lifestyle",Pluto TV FashionBox (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee8d84bfb286e0007285aad/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVFashionbox.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ee8d84bfb286e0007285aad/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fashionbox (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFBIFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cb6f6f9a461406ffe4022cf/colorLogoPNG.png" group-title="Series",Pluto TV FBI Files (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb6f6f9a461406ffe4022cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c362ded581a86051df509b4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=588128d17d64bc0d0f385c34&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=301&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFearFactor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/588128d17d64bc0d0f385c34/colorLogoPNG.png" group-title="Series",Pluto TV Fear Factor (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed673cad35f0007651fd4/colorLogoPNG.png" group-title="",Pluto TV Femmes de Loi (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed673cad35f0007651fd4/colorLogoPNG.png" group-title="",Pluto TV Femmes de Loi (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFifthGear.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ca1de9208ee5378be82db3b/colorLogoPNG.png" group-title="",Pluto TV Fifth Gear (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1de9208ee5378be82db3b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bda9fd87eb3a2717cce0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c2fb668-242f-4e7f-a025-087099fd0aca&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b0f2237a6ff45d16c3f9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=726&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d659fd87eb3a2717afc9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b0f2237a6ff45d16c3f9/colorLogoPNG.png" group-title="Sports",Pluto TV Fight (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f120f41b7d403000783a6d6/colorLogoPNG.png" group-title="",Pluto TV Filmes Ação (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFilmesSuspense.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f171d3442a0500007362f22/colorLogoPNG.png" group-title="",Pluto TV Filmes Suspense (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFishing.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d4af39510fd17b31a528eda/colorLogoPNG.png" group-title="Outdoor",Pluto TV Fishing (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af39510fd17b31a528eda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b0c92783b3f0007a4c7df/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fitness (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0c92783b3f0007a4c7df&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3b0b1ee4-3c26-4c24-8a7c-1b12f2e4e536&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b0c92783b3f0007a4c7df/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fitness (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFitness.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6140a074a99e79000738162a/colorLogoPNG.png" group-title="Movies",Pluto TV Fitness (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6140a074a99e79000738162a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58e55b14ad8e9c364d55f717/colorLogoPNG.png" group-title="Movies",Pluto TV Flicks of Fury (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58e55b14ad8e9c364d55f717/colorLogoPNG.png" group-title="Movies",Pluto TV Flicks of Fury (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58e55b14ad8e9c364d55f717&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=112&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFocusTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f3bd0e63f793300071574cd/colorLogoPNG.png" group-title="",Pluto TV Focus TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3bd0e63f793300071574cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=95e98e2b-3403-11eb-b13a-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFocusTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f3bd0e63f793300071574cd/colorLogoPNG.png" group-title="",Pluto TV Focus TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc280c9aa218c0009724b4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0734c282-0583-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFood.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFoodEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf930548ff9b00090d5686&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=500&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc280c9aa218c0009724b4b/colorLogoPNG.png" group-title="Cooking",Pluto TV Food TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877ac8cb791f4eb4a140d81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877ac8cb791f4eb4a140d81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=601&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +http://stitcher.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1af6a268cae539bcedb0a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=370&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files en ESP (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb1af6a268cae539bcedb0a/colorLogoPNG.png" group-title="Documentary",Pluto TV Forensic Files en ESP (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e94cd036cc69d0007e8a1ba&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=933&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a74b8e1e22a61737979c6bf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=705&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFOXSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a74b8e1e22a61737979c6bf/colorLogoPNG.png" group-title="Sports",Pluto TV FOX Sports (720p) [Not 24/7] +https://stitcher.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=3fab0050-8b86-11e8-a44b-996a399dacd8&deviceLat=38.8177&deviceLon=-77.1527&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=67.0.3396.99&serverSideAds=false&sid=3fab7580-8b86-11e8-a44b-996a399dacd8&userId= +#EXTINF:-1 tvg-id="PlutoTVFrontDoor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5938888cd045ffce74cf9048/colorLogoPNG.png" group-title="",Pluto TV FrontDoor [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938888cd045ffce74cf9048/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938888cd045ffce74cf9048&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=612&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60f1673d0e4370000784dc61/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fuel TV (720p) +https://siloh.pluto.tv/lilo/production/FuelTV/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVFuelTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60f1673d0e4370000784dc61/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Fuel TV (720p) +https://siloh.pluto.tv/lilo/production/FuelTV/SP/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVFullCustomGarage.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e78faa05a0e200007a6f487/colorLogoPNG.png" group-title="Auto",Pluto TV Full Custom Garage (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78faa05a0e200007a6f487/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/580e87ff497c73ba2f321dd3/colorLogoPNG.png" group-title="Comedy",Pluto TV Funny AF (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/580e87ff497c73ba2f321dd3/colorLogoPNG.png" group-title="Comedy",Pluto TV Funny AF (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=580e87ff497c73ba2f321dd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=450&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVFutbolParaFans.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e3ddd1a3ef73b00091d5779/colorLogoPNG.png" group-title="Sports",Pluto TV Fútbol Para Fans (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddd1a3ef73b00091d5779/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e54187aae660e00093561d6/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Show Central (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54187aae660e00093561d6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=167&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e54187aae660e00093561d6/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Show Central (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGameShows.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/6036e7c385749f00075dbd3b/colorLogoPNG.png" group-title="Entertainment",Pluto TV Game Shows (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e7c385749f00075dbd3b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVGamer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca7f16c37b88b2694731c79/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gamer (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGamer.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca7f16c37b88b2694731c79/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gamer (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca7f16c37b88b2694731c79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=801&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGameSpot.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f186626dcd00d0007936443/colorLogoPNG.png" group-title="Entertainment",Pluto TV GameSpot (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f186626dcd00d0007936443&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=806&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGameSpot.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f186626dcd00d0007936443/colorLogoPNG.png" group-title="Entertainment",Pluto TV GameSpot (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGamingTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eccd81062c300078a11df/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gaming TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGamingTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eccd81062c300078a11df/colorLogoPNG.png" group-title="Entertainment",Pluto TV Gaming TV (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVGarfield.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6054ab20a365c70007e4fd44/colorLogoPNG.png" group-title="Kids",Pluto TV Garfield (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054ab20a365c70007e4fd44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGetfactual.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2a69bc928a600093a7976/colorLogoPNG.png" group-title="",Pluto TV Get.factual (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a69bc928a600093a7976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGhostDimension.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c45f5a9d40d58066869fa60/colorLogoPNG.png" group-title="",Pluto TV Ghost Dimension (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f5a9d40d58066869fa60/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGhostHunters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f27bbe4779de70007a6d1c1/colorLogoPNG.png" group-title="",Pluto TV Ghost Hunters (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f27bbe4779de70007a6d1c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9be1be738977e2c312134&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f6e88030-d7c8-47c8-8fed-7e24dd0a038a&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5417a212ff9fba68282fbf5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=736&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d6f5e738977e2c310949/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5417a212ff9fba68282fbf5e/colorLogoPNG.png" group-title="Sports",Pluto TV Glory Kickboxing (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGoDiegoGo.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aa89d42a0500007363ea3/colorLogoPNG.png" group-title="",Pluto TV Go Diego Go! (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa89d42a0500007363ea3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e99f4423e067bd6df6903/colorLogoPNG.png" group-title="Cooking",Pluto TV Gordon Ramsay's Kitchen (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e99f4423e067bd6df6903/colorLogoPNG.png" group-title="Cooking",Pluto TV Gordon Ramsay's Kitchen (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e99f4423e067bd6df6903&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=294&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVGuíadecanales.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e793a7cfbdf780007f7eb75/colorLogoPNG.png" group-title="",Pluto TV Guía de canales (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e793a7cfbdf780007f7eb75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVGustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Gusto TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c47f3662f6b3c476fc03e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHappyDays.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7794162a4559000781fc12/colorLogoPNG.png" group-title="Series",Pluto TV Happy Days (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794162a4559000781fc12/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHealth.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2d7ae59bf23c192c411c/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Health (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2d7ae59bf23c192c411c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHeleneetlesgarcons.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/604f8de01b479400078fb1e7/solidLogoPNG.png" group-title="Series",Pluto TV Hélène et les garçons (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8de01b479400078fb1e7/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b2fd0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=65d7f2cc-e6f8-4e43-9cb5-1de8d1f71f71 +#EXTINF:-1 tvg-id="PlutoTVHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e6f38792075160007d85823/colorLogoPNG.png" group-title="Cooking",Pluto TV Hell's Kitchen (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6f38792075160007d85823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHER.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e4bf0db50560a000948ce52/colorLogoPNG.png" group-title="",Pluto TV HER (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e4bf0db50560a000948ce52/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b87428fe37d8cadba44/colorLogoPNG.png" group-title="Religious",Pluto TV Hillsong Channel (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b87428fe37d8cadba44&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=898&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b87428fe37d8cadba44/colorLogoPNG.png" group-title="Religious",Pluto TV Hillsong Channel (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHistoria.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de5758e1a30dc00094fcd6c/colorLogoPNG.png" group-title="",Pluto TV Historia (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de5758e1a30dc00094fcd6c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVHistoriasdeUltratumba.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f4d3696d938c900072679fd/colorLogoPNG.png" group-title="",Pluto TV Historias de Ultratumba (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3696d938c900072679fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d35dfa5c02e717a234f86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=651&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767b1c126c65d0a307355f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=52e8f9a9-0583-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHISTORY.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af1803e7983b391d73b13/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHISTORYGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b1c126c65d0a307355f&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=302&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHISTORYPlus.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV HISTORY+ (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6941b95267e225e59c0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b6941b95267e225e59c0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4637a2ad-1dd6-49d1-a8cc-435684c4a7ea&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHogar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6ab8056beb000091fc6b6/colorLogoPNG.png" group-title="",Pluto TV Hogar (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ab8056beb000091fc6b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5eb96303f5bb020008e7e44f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8044788b-0583-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04c9eedc89300090d2884/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db04c9eedc89300090d2884/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Home (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHomesUnderHammer.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2e9d8002db3c3e0b1c72/colorLogoPNG.png" group-title="Lifestyle",Pluto TV Homes Under Hammer (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2e9d8002db3c3e0b1c72/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=569546031a619b8f07ce6e25&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=75&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVHorror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/569546031a619b8f07ce6e25/colorLogoPNG.png" group-title="Movies",Pluto TV Horror (684p) +https://stitcher.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceLat=38.5783&deviceLon=-90.6666&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012&userId= +#EXTINF:-1 tvg-id="PlutoTVHSN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f8a02476b72230007e62b7d/colorLogoPNG.png" group-title="",Pluto TV HSN (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8a02476b72230007e62b7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVHumor.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e8397936791b30007ebb5a7/colorLogoPNG.png" group-title="",Pluto TV Humor (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8397936791b30007ebb5a7/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVHunter.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c99f5810c95814ff92512f9/colorLogoPNG.png" group-title="Outdoor",Pluto TV Hunter (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c99f5810c95814ff92512f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c53d6ac-a6d2-4c2c-9403-6101f770b205&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTViCarly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTViCarlyNickGermany.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly Nick (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=406&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5e8b580a233dc90007f0cb9d/colorLogoPNG.png" group-title="",Pluto TV iCarly+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed9ba24f6a00074a9b91/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a4570-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0432d921-f53e-4dfe-8afd-2d0b3fb750f3 +#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecc7aa44d9c00081fca29/colorLogoPNG.png" group-title="",Pluto TV iCarly+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2cb9f5b291000773807a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2cb9f5b291000773807a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c128fa6-7ec2-4a50-a81b-37f9e8c1e48f&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40f42ba7f7f5ea9518fe1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aeca4ad7-0583-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3639dd01112605397333a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIcePilots.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c3639dd01112605397333a2/colorLogoPNG.png" group-title="Series",Pluto TV Ice Pilots (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5f613286e48904fb2677&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=805&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bc207ef2767e1846e5a0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac118dd7e6000077e31af/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecee24576bc0007a13b79/colorLogoPNG.png" group-title="Entertainment",Pluto TV IGN (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d982e738977e2c3109a6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59b722526996084038c01e1b/colorLogoPNG.png" group-title="Sports",Pluto TV IMPACT Wrestling (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59b722526996084038c01e1b/colorLogoPNG.png" group-title="Sports",Pluto TV IMPACT Wrestling (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59b722526996084038c01e1b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=734&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40e59246a395e9758923e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aa724654-057a-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60cc807324d60a0007708dc8/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60cc807324d60a0007708dc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVIndies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c542e03044f5604b11cf808/colorLogoPNG.png" group-title="",Pluto TV Indies (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c542e03044f5604b11cf808/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInside.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInsideEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767857f65029ce2385b217&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=302&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVInsideGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed3892ed7bb000741a1d2/colorLogoPNG.png" group-title="Series",Pluto TV Inside (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b4889bca2ce7b73ef2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b4889bca2ce7b73ef2e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=303&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc2d1ce10f0b0009e6cf9e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=efbfa162-0713-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765786aad587cf4d0e2bf6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d765786aad587cf4d0e2bf6/colorLogoPNG.png" group-title="Series",Pluto TV Inspector Gadget (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b8f4f1ca3f0629f4bf1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=936&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInvestiga.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde27ffae9520009c0c75a/colorLogoPNG.png" group-title="Series",Pluto TV Investiga (360p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde27ffae9520009c0c75a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVInvestigacao.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f32cf37c9ff2b00082adbc8/colorLogoPNG.png" group-title="Series",Pluto TV Investigação (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 +#EXTINF:-1 tvg-id="PlutoTVInvestigation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f4b36d67d0007a91a04/colorLogoPNG.png" group-title="Series",Pluto TV Investigation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66928133461100077dfd73/colorLogoPNG.png" group-title="Classic",Pluto TV Johnny Carson TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e66928133461100077dfd73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=514&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66928133461100077dfd73/colorLogoPNG.png" group-title="Classic",Pluto TV Johnny Carson TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9decb953e157000752321c/colorLogoPNG.png" group-title="Series",Pluto TV Judge nosey (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9decb953e157000752321c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=160&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e9decb953e157000752321c/colorLogoPNG.png" group-title="Series",Pluto TV Judge nosey (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa9bcd8160700076d45d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2ac4bc6c500094ab45b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVJunior.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5dcde2ac4bc6c500094ab45b/colorLogoPNG.png" group-title="Kids",Pluto TV Junior (360p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKenanyKel.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fcea93ffcf94500071c4b2f/colorLogoPNG.png" group-title="Comedy",Pluto TV Kenan y Kel (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fcea93ffcf94500071c4b2f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5af09e645126c2157123f9eb/colorLogoPNG.png" group-title="Comedy",Pluto TV Kevin Hart LOL (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5af09e645126c2157123f9eb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=462&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5af09e645126c2157123f9eb/colorLogoPNG.png" group-title="Comedy",Pluto TV Kevin Hart LOL (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b648e738977e2c312131&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=30292edb-0714-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=51c75f7bb6f26ba1cd00002f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=989&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d54be738977e2c310940/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dae8ce788b0009eaf77b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6dae8ce788b0009eaf77b/colorLogoPNG.png" group-title="Kids",Pluto TV Kids (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aab1d29b39600073e243f&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=910&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eba14a4ffb8000764e950/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Animation (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ad56edc89300090d2ebb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=976&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b625c1ffbc0007e60c37/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Collection (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b625c1ffbc0007e60c37/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Collection (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsHalloween.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abeb21044ee0007f19d33/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Halloween (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abeb21044ee0007f19d33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVKidsSeriesPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb99ff17815000784a3b0/colorLogoPNG.png" group-title="Kids",Pluto TV Kids Séries+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ebe299d30c0007b1f12a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89d040-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=8f06f039-4f3e-499b-a415-5cf7148a64d7 +#EXTINF:-1 tvg-id="PlutoTVLaChicaInvisible.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1abe3ffcd659000770d88d/colorLogoPNG.png" group-title="Series",Pluto TV La Chica Invisible (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abe3ffcd659000770d88d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/12082020/TVLand_190x190circle.png?raw=true" group-title="",Pluto TV Land Sitcoms [Offline] +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/997452/playlist.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appName=samsungmobiletvplus&appVersion=unknown&architecture=&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsungmobiletvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&includeExtendedEvents=&paln=&serverSideAds=true&sid=SAMSUNG-TVPLUS-fcaa053c-0ece-49c6-ae1f-c3e42a7faf17&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLasPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f9996533c9de3000759ccb5/colorLogoPNG.png" group-title="Series",Pluto TV Las Pistas de Blue (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9996533c9de3000759ccb5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLasreglasdeljuego.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acb4eebe0f0000767b40f/colorLogoPNG.png" group-title="Series",Pluto TV Las reglas del juego (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acb4eebe0f0000767b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLatinAngels.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5df41355939756000921d15b/colorLogoPNG.png" group-title="Series",Pluto TV Latin Angels (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df41355939756000921d15b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLemieletlesabeilles.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549a8d8f1b53000768bc52/solidLogoPNG.png" group-title="Series",Pluto TV Le miel et les abeilles (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549a8d8f1b53000768bc52/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9dcb446c-ad5a-4171-a84f-d144607d7b33 +#EXTINF:-1 tvg-id="PlutoTVLemiracledelamour.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549c238c3f21000753d3e0/solidLogoPNG.png" group-title="Series",Pluto TV Le miracle de l'amour (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549c238c3f21000753d3e0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=af1cb1d2-a877-4020-81af-3f89e475eb94 +#EXTINF:-1 tvg-id="PlutoTVLesCordier.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed80fa09f120007c8daa5/colorLogoPNG.png" group-title="Series",Pluto TV Les Cordier (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLesCordier.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed80fa09f120007c8daa5/colorLogoPNG.png" group-title="Series",Pluto TV Les Cordier (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLesfillesdacote.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60549d97cd7b090007c73314/solidLogoPNG.png" group-title="Series",Pluto TV Les filles d'à côté (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549d97cd7b090007c73314/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba500-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0e7a9749-ec3d-4fea-9861-01e153b22e40 +#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edb6df1ebb800072edf10/colorLogoPNG.png" group-title="Series",Pluto TV Les Nouveaux Detectives (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8edb6df1ebb800072edf10/colorLogoPNG.png" group-title="Series",Pluto TV Les Nouveaux Detectives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLittleBabyBum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5eb301b7395671000780d100/colorLogoPNG.png" group-title="Series",Pluto TV Little Baby Bum (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb301b7395671000780d100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5eb301b7395671000780d100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=995&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLiveinConcert.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6080411af03506000759916e/solidLogoPNG.png" group-title="Music",Pluto TV Live in Concert (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6080411af03506000759916e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb571-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9c6d294f-660b-47ef-bc20-1961faf21c6a +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (720p) +http://stitcher.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5873fc21cad696fb37aa9054/colorLogoPNG.png" group-title="Music",Pluto TV Live Music Replay (US) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5873fc21cad696fb37aa9054&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=855&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc1cb279c91420009db261d/colorLogoPNG.png" group-title="Series",Pluto TV Lively Place (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc1cb279c91420009db261d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=615&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dc1cb279c91420009db261d/colorLogoPNG.png" group-title="Series",Pluto TV Lively Place (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db04b360fa2560009deb3de&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=84dcf52a-0584-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600acaff5f2d6e000745effb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLives.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d8beeb39b5d5d5f8c672530/colorLogoPNG.png" group-title="Series",Pluto TV Lives (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8beeb39b5d5d5f8c672530&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=276&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLogo.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce5a8954311f992edbe1da2/colorLogoPNG.png" group-title="",Pluto TV Logo (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLogo.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ce5a8954311f992edbe1da2/colorLogoPNG.png" group-title="",Pluto TV Logo (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce5a8954311f992edbe1da2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=187&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67d41b93312100076f3fca/colorLogoPNG.png" group-title="Series",Pluto TV Los archivos del FBI (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acbed25948a0007ffbe65/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e67d41b93312100076f3fca/colorLogoPNG.png" group-title="Series",Pluto TV Los archivos del FBI (432p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67d41b93312100076f3fca/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLosnuevosdetectives.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acba0d1f6340007db8843/colorLogoPNG.png" group-title="",Pluto TV Los nuevos detectives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acba0d1f6340007db8843/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed6d569d2d4000864a976/colorLogoPNG.png" group-title="",Pluto TV Louis La Brocante (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8ed6d569d2d4000864a976/colorLogoPNG.png" group-title="",Pluto TV Louis La Brocante (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLoupe.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f0cb39b4ae1f80007bad585/colorLogoPNG.png" group-title="",Pluto TV Loupe (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f0cb39b4ae1f80007bad585&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=694&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLoupe.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f0cb39b4ae1f80007bad585/colorLogoPNG.png" group-title="",Pluto TV Loupe (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51ddf0369acdb278dfb05e/colorLogoPNG.png" group-title="Series",Pluto TV Love & Hip Hop (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51ddf0369acdb278dfb05e/colorLogoPNG.png" group-title="Series",Pluto TV Love & Hip Hop (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51ddf0369acdb278dfb05e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=283&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLoveNature.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60dd6b1da79e4d0007309455/colorLogoPNG.png" group-title="Series",Pluto TV Love Nature (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dd6b1da79e4d0007309455/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLoveStories.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e181520cfa000771ce79/colorLogoPNG.png" group-title="Series",Pluto TV Love Stories (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e181520cfa000771ce79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=147&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLoveStories.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e181520cfa000771ce79/colorLogoPNG.png" group-title="Series",Pluto TV Love Stories (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c01df1759ee03633e7b272c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=971&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f99a772c54853000797bf18/colorLogoPNG.png" group-title="",Pluto TV Lucha Libre AAA (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f99a772c54853000797bf18/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb71a26ed8300076433f9/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aaefb96f755000733c11a/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aaefb96f755000733c11a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMADE.us" tvg-country="FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb71a26ed8300076433f9/colorLogoPNG.png" group-title="",Pluto TV MADE (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMADEInBritain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e14486590ba3e0009d912ff/colorLogoPNG.png" group-title="Series",Pluto TV MADE In Britain (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e14486590ba3e0009d912ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc264e0451770009ed742f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc02ece31f6050009de4b39&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ecc4d45-0714-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dc02ece31f6050009de4b39/colorLogoPNG.png" group-title="Kids",Pluto TV Mario vs Sonic (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMasterChef.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e3ddbd27091820009f86dd9/colorLogoPNG.png" group-title="",Pluto TV MasterChef (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddbd27091820009f86dd9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMcLeodsDaughters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18e5df6dd1d0007cf7bad/colorLogoPNG.png" group-title="Series",Pluto TV McLeod's Daughters (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18e5df6dd1d0007cf7bad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMidsomerMurders.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cbf6a868a1bce4a3d52a5e9/colorLogoPNG.png" group-title="Series",Pluto TV Midsomer Murders (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cbf6a868a1bce4a3d52a5e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cbf6a868a1bce4a3d52a5e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=385&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMilitary.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb3fea0f711fd76340eebff/colorLogoPNG.png" group-title="Series",Pluto TV Military (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb3fea0f711fd76340eebff&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=655&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMilitary.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5bb3fea0f711fd76340eebff/colorLogoPNG.png" group-title="Series",Pluto TV Military (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b821249444e05d09cc4c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=815&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bca67ef2767e1846e5a1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812b821249444e05d09cc4c/colorLogoPNG.png" group-title="Entertainment",Pluto TV MinecrafTV (360p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d907e738977e2c31099a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMinutoParaGanar.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e46e64dc73db400094b5f0b/colorLogoPNG.png" group-title="Series",Pluto TV Minuto Para Ganar (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46e64dc73db400094b5f0b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMissionImpossible.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f77977bd924d80007eee60c/colorLogoPNG.png" group-title="Series",Pluto TV Mission: Impossible (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77977bd924d80007eee60c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMisterios.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde2f53449c50009b2b4dc/colorLogoPNG.png" group-title="Series",Pluto TV Misterios (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2f53449c50009b2b4dc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="MisteriosMedicos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f230e416b68ff00075b0139/colorLogoPNG.png" group-title="Series",Pluto TV Misterios Medicos (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f230e416b68ff00075b0139/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMisteriossinResolver.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f610042272f68000867685b/colorLogoPNG.png" group-title="Series",Pluto TV Misterios sin Resolver (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f610042272f68000867685b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMLB.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e66968a70f34c0007d050be/colorLogoPNG.png" group-title="Sports",Pluto TV MLB (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66968a70f34c0007d050be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.7.4-9a7fc53e0c1da468e3c566c3f53e98a36ca1f97b&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=9f228953-21cb-4b82-a393-dd32d047379f&deviceLat=45.4994&deviceLon=-73.5703&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=76.0.3809.132&serverSideAds=true&sid=d1634607-2892-447a-b316-17a106f905fb&userId= +#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb626cfcaf83414128f439c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=712&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMLS.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb626cfcaf83414128f439c/colorLogoPNG.png" group-title="Sports",Pluto TV MLS (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMotor.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db0510962948d000961d3c6/colorLogoPNG.png" group-title="Auto",Pluto TV Motor (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMotorEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5db0510962948d000961d3c6/colorLogoPNG.png" group-title="Auto",Pluto TV Motor (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0510962948d000961d3c6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=576&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMOVIECHANNEL.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Movies",Pluto TV MOVIE CHANNEL (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appVersion=5.2.2-d60060c7283e0978cc63ba036956b5c1657f8eba&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=9daeec78-6a24-43e9-b800-df83d8e465a8&deviceLat=-35.1192&deviceLon=-60.5047&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=80.0.3987.149&includeExtendedEvents=false&serverSideAds=true&sid=e2177d24-366a-4c1c-b974-702fe1d6159a&userId= +#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=eddfafe3-0584-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMovies.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMoviesEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ad8d3a31b95267e225e4e09&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMoviesGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=50&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMoviesCH.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dc2bdfec6cdc10009975e20/colorLogoPNG.png" group-title="Movies",Pluto TV Movies CH (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2bdfec6cdc10009975e20/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMoviesPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0a1f73654db655a9274428/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d0a1f73654db655a9274428&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=372611e5-6b4b-4a3f-9491-368034dfa39e&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMoviesPlusCH.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ad8d3a31b95267e225e4e09/colorLogoPNG.png" group-title="Movies",Pluto TV Movies+ (CH) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c8a6bc64dc7286c6afaf4ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c8a6bc64dc7286c6afaf4ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f747754f-ee3e-4968-9e8e-779da031bce9&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=545943f1c9f133a519bbac92&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=488&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d44cfd87eb3a2717afc5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMST3K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/545943f1c9f133a519bbac92/colorLogoPNG.png" group-title="Series",Pluto TV MST3K (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf325764025859afdd6c4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1b711cc8-0587-11eb-9df2-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcebe53d352330009e56f5b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcebe53d352330009e56f5b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b3be0889-389b-4ef9-a876-b3d589aa6cd9&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13b6dd7ec3510009e032d0/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fab088b3279760007d4e4fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (240p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca672f515a62078d2ec0ad2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=178&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVGermany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca672f515a62078d2ec0ad2/colorLogoPNG.png" group-title="Music",Pluto TV MTV (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5caf325764025859afdd6c4d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVAnimaciones.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5efb8ce2e426140007c78fd1/colorLogoPNG.png" group-title="Series",Pluto TV MTV Animaciones (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8ce2e426140007c78fd1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVAreyoutheOne.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f6108d8cc331900075e98e4/colorLogoPNG.png" group-title="Series",Pluto TV MTV Are you the One? (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Biggest Pop (720p) +http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS02/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Series",Pluto TV MTV Biggest Pop (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Biggest Pop (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509fb7809fd000949e39b/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fd1a252d35decbc4080c/colorLogoPNG.png" group-title="Series",Pluto TV MTV Biggest Pop (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fd1a252d35decbc4080c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=870&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) +http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS03/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150a3d73fd3f00094f722f/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d3609cd6a6c78d7672f2a81/colorLogoPNG.png" group-title="Series",Pluto TV MTV Block Party (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d3609cd6a6c78d7672f2a81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=868&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a697d5f34a000934cd13&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f1438745-0586-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Catfish (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db6a697d5f34a000934cd13&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishSpain.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Catfish (Spain) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab3c7778230000735cf41&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=305&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed0bb61f1200072ca4cd/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e61-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0698157f-70d9-4890-978e-e648d753b321 +#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1ab3c7778230000735cf41/colorLogoPNG.png" group-title="Series",Pluto TV MTV Catfish+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b855972c36600076b7ddd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b855972c36600076b7ddd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4433ef8f-a215-466e-a65b-405518cd6e6c&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91b7ea86ee60009d89e75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f92b56a367e170007cd43f4/colorLogoPNG.png" group-title="Music",Pluto TV MTV Classic (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVClassicsPlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Music",Pluto TV MTV Classics+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ec5500d4c70007341c7c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e60-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=de18fdd4-d30a-4263-8ecc-df902150744d +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ea815a515d149000748ee9b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fb612cc2-0587-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVCribsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Cribs (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea815a515d149000748ee9b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlutoTVSpain.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Cribs (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab9c6d8f1300007f54e30&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=315&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea815a515d149000748ee9b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Cribs+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb54eaa5714d000744b6a0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5efb54eaa5714d000744b6a0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f664f477-078c-4957-bc9a-51f90e3d9ce7&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf330ea5068259a32320fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c740197-0587-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600169ec77e6f70008fa9cf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVDating.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6899a37b88b269472ea4b/colorLogoPNG.png" group-title="Series",Pluto TV MTV Dating (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6899a37b88b269472ea4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=330&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVEmbarazadaalos16.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f98537a5a4341000733aefe/colorLogoPNG.png" group-title="Series",Pluto TV MTV Embarazada a los 16 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98537a5a4341000733aefe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVEnVivo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6130d6f3f3f7bb0007dbd092/colorLogoPNG.png" group-title="Series",Pluto TV MTV En Vivo (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d6f3f3f7bb0007dbd092/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96d351652631e36d4331f/colorLogoPNG.png" group-title="Music",Pluto TV MTV Latino (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96d351652631e36d4331f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=965&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96d351652631e36d4331f/colorLogoPNG.png" group-title="Music",Pluto TV MTV Latino (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVLoveMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/600ae79fa46e17000794e84c/colorLogoPNG.png" group-title="Music",Pluto TV MTV Love Music (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ae79fa46e17000794e84c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVMistleYO.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Series",Pluto TV MTV Mistle YO! (720p) +http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS08/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVMTVMusicMadeinSpain.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60a26a056d55b30007918d5a/colorLogoPNG.png" group-title="Music",Pluto TV MTV Music Made in Spain (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60a26a056d55b30007918d5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVOriginals.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aadf373bed3000794d1d7/colorLogoPNG.png" group-title="Music",Pluto TV MTV Originals (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVOriginalsSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1aadf373bed3000794d1d7/colorLogoPNG.png" group-title="Series",Pluto TV MTV Originals (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aadf373bed3000794d1d7&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=300&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVPranks.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e98a911c881310007d7aae2/colorLogoPNG.png" group-title="Series",Pluto TV MTV Pranks (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98a911c881310007d7aae2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVRealities.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/6130d8dc943001000708548d/colorLogoPNG.png" group-title="Series",Pluto TV MTV Realities (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d8dc943001000708548d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVRidiculousness.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f9847fd513250000728a9a5/solidLogoPNG.png" group-title="Series",Pluto TV MTV Ridiculousness (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9847fd513250000728a9a5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fdb8ca91eedee1633117/colorLogoPNG.png" group-title="Series",Pluto TV MTV Spankin' New (720p) +http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS07/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fdb8ca91eedee1633117/colorLogoPNG.png" group-title="Series",Pluto TV MTV Spankin' New (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fdb8ca91eedee1633117/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fdb8ca91eedee1633117&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=869&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVTattooADos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/611b87946b7f420007c22361/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Tattoo A Dos (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/611b87946b7f420007c22361/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cffcf5686dfe15595fb3f56/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Teen Mom (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cffcf5686dfe15595fb3f56&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ca1fec5-0587-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5cffcf5686dfe15595fb3f56/featuredImage.jpg?w=750&fm=png" group-title="Series",Pluto TV MTV Teen Mom (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e86bf0bac55fe7f75736/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Hills (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e86bf0bac55fe7f75736&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a934c097-0587-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e86bf0bac55fe7f75736/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Hills (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5caf32c2a5068259a32320fc/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Shores (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf32c2a5068259a32320fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d49824ea-0587-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5caf32c2a5068259a32320fc/colorLogoPNG.png" group-title="Series",Pluto TV MTV The Shores (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMTVUnplugged.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f98471110cca20007d39f76/colorLogoPNG.png" group-title="Series",Pluto TV MTV Unplugged (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98471110cca20007d39f76/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d103f031154a4172d262b/colorLogoPNG.png" group-title="Series",Pluto TV Mundo (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMundo.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d103f031154a4172d262b/colorLogoPNG.png" group-title="Series",Pluto TV Mundo (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d103f031154a4172d262b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=959&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMundoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1acdfda84c970007e750b5/colorLogoPNG.png" group-title="Series",Pluto TV Mundo Real (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMundoRealSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1acdfda84c970007e750b5/colorLogoPNG.png" group-title="",Pluto TV Mundo Real (Spain) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdfda84c970007e750b5&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=405&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMutantX.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8dc008d4422e00072d2405/colorLogoPNG.png" group-title="Series",Pluto TV Mutant X (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc008d4422e00072d2405/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMutanteX.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1acc91cc9e1b000711ff21/colorLogoPNG.png" group-title="Series",Pluto TV Mutante X (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc91cc9e1b000711ff21/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMy5Crime.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d2c571faeb3e2738ae27933/colorLogoPNG.png" group-title="Series",Pluto TV My5 Crime (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Documentary",Pluto TV My5 Documentaries (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf901280e3550009139c86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=475&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Documentary",Pluto TV My5 Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMy5GPs.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV My5 GP's (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVMy5GPsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV My5 GP's (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c57ee4f9ddf73da8a0ba5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVMythbusters.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd833b41843b56328bac189/colorLogoPNG.png" group-title="Series",Pluto TV Mythbusters (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd833b41843b56328bac189/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVN24Doku.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/60080e8a4bf36000076a81b1/colorLogoPNG.png" group-title="Documentary",Pluto TV N24 Doku (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60080e8a4bf36000076a81b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNarcos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f7274806621ff00072651ff/colorLogoPNG.png" group-title="Series",Pluto TV Narcos (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7274806621ff00072651ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5da0c85bd2c9c10009370984&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=836&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNaruto.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ee92e72fb286e0007285fec/colorLogoPNG.png" group-title="Animation",Pluto TV Naruto (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee92e72fb286e0007285fec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNashville.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/601a026c464ef900073130f0/featuredImage.jpg" group-title="Outdoor",Pluto TV Nashville (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a026c464ef900073130f0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d10ce06a9665fe54bf74a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=962&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd85eac039bba0009e86d1d/colorLogoPNG.png" group-title="Outdoor",Pluto TV Naturaleza (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd85eac039bba0009e86d1d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1c3f9851dd5632e2c91b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1e26d24e-0585-11eb-82fe-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed58b2db26f0007b4aa73/colorLogoPNG.png" group-title="Outdoor",Pluto TV Nature (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db050444f3c52000984c72a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0c2f3739f6b900075f366c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bd9f249444e05d09cc4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=692&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812bd9f249444e05d09cc4e/colorLogoPNG.png" group-title="",Pluto TV Naturescape (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNatureza.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1213ba0ecebc00070e170f/colorLogoPNG.png" group-title="",Pluto TV Natureza (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5df97894467dfa00091c873c/colorLogoPNG.png" group-title="News",Pluto TV NBC News NOW (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5df97894467dfa00091c873c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=213&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5df97894467dfa00091c873c/colorLogoPNG.png" group-title="News",Pluto TV NBC News NOW (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5268abcd0ce20a8472000114/colorLogoPNG.png" group-title="News",Pluto TV News (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5268abcd0ce20a8472000114/colorLogoPNG.png" group-title="News",Pluto TV News (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5268abcd0ce20a8472000114&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ced7d5df64be98e07ed47b6/colorLogoPNG.png" group-title="Sports",Pluto TV NFL Channel (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ced7d5df64be98e07ed47b6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=708&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ced7d5df64be98e07ed47b6/colorLogoPNG.png" group-title="Sports",Pluto TV NFL Channel (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede448d3d50590007a4419e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fbbb3638-0714-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2b57d6c60800074cb305/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2b57d6c60800074cb305&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=19a8ba6e-9713-4df0-83d9-93dd72c984f0&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNICK.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) +https://siloh.pluto.tv/lilo/production/Nick/01/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca673e0d0bd6c2689c94ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=977&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca673e0d0bd6c2689c94ce3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&coppa=1&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVNick.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= +#EXTINF:-1 tvg-id="PlutoTVNickGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ede448d3d50590007a4419e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=261&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7c348520b40009c347e2/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Clásico (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7c348520b40009c347e2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNickClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7c348520b40009c347e2/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Clásico (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f4796368174910007756454/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Emma einfach magisch! (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f4796368174910007756454&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=db62fa8b-15bd-11eb-bde1-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f4796368174910007756454/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Emma einfach magisch! (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45451dce190007ef9ff2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d1d4cf70-0714-11eb-a59f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickJr.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ca6748a37b88b269472dad9/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. (240p) [Not 24/7] +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6748a37b88b269472dad9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=978&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ddd7cb2cbb9010009b4fe32/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7cb2cbb9010009b4fe32/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us" tvg-country="US" tvg-language="Portuguese" tvg-logo="https://images.pluto.tv/channels/5f121460b73ac6000719fbaf/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickJuniorClubBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ddd7cb2cbb9010009b4fe32/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Club (Brazil) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f121460b73ac6000719fbaf&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=706&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d0ec7b0f7015fbe0a3bf7/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Latino (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0ec7b0f7015fbe0a3bf7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=998&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d0ec7b0f7015fbe0a3bf7/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Jr. Latino (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickLatino.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ede448d3d50590007a4419e/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Latino (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d08395f39465da6fb3ec4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=997&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickRewind.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Rewind (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1f8c3bd8-0715-11eb-97af-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNickRewind.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV Nick Rewind (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNickRewindGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="",Pluto TV Nick Rewind (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=262&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVnickrewindPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ed106ce4bf2e80007700bb3/colorLogoPNG.png" group-title="Kids",Pluto TV nickrewind+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2bcd0fadc30007b4863b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2bcd0fadc30007b4863b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=26a921c8-2009-4fa8-9d4f-3edbe18a97f7&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aec96ec5126c2157123c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=159&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVnosey.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5aec96ec5126c2157123c657/colorLogoPNG.png" group-title="Series",Pluto TV nosey (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2ba1a9c91420009db4858/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde0cc2efd2700090b7ff4/colorLogoPNG.png" group-title="",Pluto TV Novelas (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0cc2efd2700090b7ff4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dbf4a838b60007ffbba1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=942&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Drama (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNovelasDramas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dbf4a838b60007ffbba1/colorLogoPNG.png" group-title="Series",Pluto TV Novelas Dramas (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Series",Pluto TV Novelas Romance (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Romance (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84db2db3851800077c871e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=941&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84db2db3851800077c871e/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Romance (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dc59026b9b000766f9a2/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Thriller (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e84dc59026b9b000766f9a2/colorLogoPNG.png" group-title="Movies",Pluto TV Novelas Thriller (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dc59026b9b000766f9a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=943&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e6690befbdf780007f78158/colorLogoPNG.png" group-title="",Pluto TV Nuestra Vision (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e6690befbdf780007f78158&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=920&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e6690befbdf780007f78158/colorLogoPNG.png" group-title="",Pluto TV Nuestra Vision (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVOhMyPet.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f2acdab16f5b3000721ae2c/colorLogoPNG.png" group-title="Series",Pluto TV Oh My Pet (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2acdab16f5b3000721ae2c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVOnePiece.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7790b3ed0c88000720b241/colorLogoPNG.png" group-title="",Pluto TV One Piece (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7790b3ed0c88000720b241/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f84ce2ac265700008d48dcf/colorLogoPNG.png" group-title="Sports",Pluto TV Pac-12 Insider (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f84ce2ac265700008d48dcf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb0cae7a461406ffe3f5213/colorLogoPNG.png" group-title="Movies",Pluto TV Paramount Movie Channel (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb0cae7a461406ffe3f5213&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=100&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5cb0cae7a461406ffe3f5213/colorLogoPNG.png" group-title="Movies",Pluto TV Paramount Movie Channel (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParamountPlusPicks.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ff8c708653d080007361b14/featuredImage.jpg" group-title="Movies",Pluto TV Paramount+ Picks (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ff8c708653d080007361b14/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f98487036af340008da1e37&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=77386fa6-3401-11eb-8335-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/612ce5214bb5790007ad3016/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/612ce5214bb5790007ad3016/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVParanormal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5adf96e3e738977e2c31cb04&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=669&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVParanormalEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ed9461b35690007a0bc3a/colorLogoPNG.png" group-title="Series",Pluto TV Paranormal (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4af2ffa9506ab29cf38c38&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=216&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPeleas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5e98b0447665f200078caded/colorLogoPNG.png" group-title="",Pluto TV Peleas (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98b0447665f200078caded/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac65911406400078b8993/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95c119dc712000741fa35/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95d63b270fc0007c465e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebac65911406400078b8993/colorLogoPNG.png" group-title="Series",Pluto TV People are Awesome (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1780e94100007f94b3f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",Pluto TV People TV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c2c3ae40e64939daad8b76/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c2c3ae40e64939daad8b76&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=192&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5de94dacb394a300099fa22a/colorLogoPNG.png" group-title="Sports",Pluto TV PGA TOUR (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5de94dacb394a300099fa22a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=713&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5de94dacb394a300099fa22a/colorLogoPNG.png" group-title="Sports",Pluto TV PGA TOUR (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPistasdeBlue.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f1aa82c150b2500077733d7/colorLogoPNG.png" group-title="",Pluto TV Pistas de Blue (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa82c150b2500077733d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPlanetaJuniorTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/609501978c069d00074e0dd2/colorLogoPNG.png" group-title="",Pluto TV Planeta Junior TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609501978c069d00074e0dd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us" tvg-country="US" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed5fba4ffb8000764ea01/colorLogoPNG.png" group-title="",Pluto TV Plus Belle La Vie (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ed5fba4ffb8000764ea01/colorLogoPNG.png" group-title="",Pluto TV Plus Belle La Vie (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVPlusBellelaViePlus.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="" group-title="Series",Pluto TV Plus Belle la Vie+ (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fff211667854f00079a9b5b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8abaa0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=353eca77-9a84-4a7e-a1d5-97ac79861272 +#EXTINF:-1 tvg-id="PlutoTVPluto80sRewind.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Music",Pluto TV Pluto 80s Rewind (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca525b650be2571e3943c63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=95&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPlutoActionSports.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Pluto TV Pluto Action Sports (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1be871843b56328bc3ef1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8a1b4593-8596-4ff8-8720-2c3271ea36ca&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPlutoAdventureTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Outdoor",Pluto TV Pluto Adventure TV (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938876b78d8d9c074c3c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=675&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPlutoAfterSchoolCartoons.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Pluto TV Pluto After School Cartoons (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56171fafada51f8004c4b40f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=990&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPlutoAllRealitybyWEtv.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Pluto All Reality by WE tv (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82530945600e0007ca076c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=310&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae0a40e8ee0d000975e99b/colorLogoPNG.png" group-title="",Pluto TV pocket.watch (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0a40e8ee0d000975e99b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=993&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae0a40e8ee0d000975e99b/colorLogoPNG.png" group-title="",Pluto TV pocket.watch (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPoliceWomen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e79c2f280389000077242a8/colorLogoPNG.png" group-title="",Pluto TV Police Women (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e79c2f280389000077242a8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPortadosFundos.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f36f2346ede750007332d11/colorLogoPNG.png" group-title="",Pluto TV Porta dos Fundos (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b36abcddfb1f0729a3a7dab/colorLogoPNG.png" group-title="",Pluto TV Privacy Policy (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b36abcddfb1f0729a3a7dab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=899&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b36abcddfb1f0729a3a7dab/colorLogoPNG.png" group-title="",Pluto TV Privacy Policy (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVProWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fac431fc1ffbc0007e6b6a7/colorLogoPNG.png" group-title="Sports",Pluto TV Pro Wrestling (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac431fc1ffbc0007e6b6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVPursuitUP.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Pursuit UP (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486bed428fe37d8cadba45/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486bed428fe37d8cadba45&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=756&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVQelloConcerts.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60f16986acb81b0007c384ac/colorLogoPNG.png" group-title="Sports",Pluto TV Qello Concerts (720p) +https://siloh.pluto.tv/lilo/production/Qello/ES/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVQwestTVJazzBeyond.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60db37b8b919720007c07fa4/colorLogoPNG.png" group-title="Sports",Pluto TV Qwest TV Jazz & Beyond (720p) +https://siloh.pluto.tv/lilo/production/QwestJazz/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVRealLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1abdceddf6a20007f8ccd2/colorLogoPNG.png" group-title="Series",Pluto TV Real Life (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abdceddf6a20007f8ccd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b4d71754e6a4298d086e/colorLogoPNG.png" group-title="Series",Pluto TV Realities ESP (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b4d71754e6a4298d086e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=953&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b4d71754e6a4298d086e/colorLogoPNG.png" group-title="Series",Pluto TV Realities ESP (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf0b06d2d855ee15115e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=275&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde197f6591d0009839e04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd8186d53ed2c6334ea0855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde197f6591d0009839e04/colorLogoPNG.png" group-title="Series",Pluto TV Reality (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRescue911.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e831e9fe730007706acb/colorLogoPNG.png" group-title="Series",Pluto TV Rescue 911 (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e831e9fe730007706acb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=277&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRescue911.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e831e9fe730007706acb/colorLogoPNG.png" group-title="Series",Pluto TV Rescue 911 (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRetro.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f1212ad1728050007a523b8/colorLogoPNG.png" group-title="Classic",Pluto TV Retrô (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dde47b63585b500099f74ec&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5204e9ec-0585-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRetroDramaEngland.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dde47b63585b500099f74ec/colorLogoPNG.png" group-title="Classic",Pluto TV Retro Drama (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91f19c2c3300098ce961&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=415&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=886c7aee-0585-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a8542c9b-0714-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2b9d8002db3c3e0b1c6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRetroToons.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5c5c2b9d8002db3c3e0b1c6d/colorLogoPNG.png" group-title="Kids",Pluto TV Retro Toons (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d4e7e738977e2c310937/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58d947b9e420d8656ee101ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=489&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/58d947b9e420d8656ee101ab/colorLogoPNG.png" group-title="",Pluto TV RiffTrax (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRoblox.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Roblox (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51dd5d369acdb278dfb05d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51dd5d369acdb278dfb05d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=816&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRockosModernLifeBrazil.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Rocko’s Modern Life (Brazil) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f6df6293a12e10007017396&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=731&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60812fc8539963000707d1e1/solidLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60812fc8539963000707d1e1/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf321-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7ebb5004-1cd6-44bb-990a-082fdcdcba6d +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc287ce3086a20009f5024c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2e82991-0585-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a66795ef91fef2c7031c599&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=70&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRomance.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRomanceEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5a66795ef91fef2c7031c599/colorLogoPNG.png" group-title="Movies",Pluto TV Romance (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677c0edace7cff8180b16&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVRugrats.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/610c09219fc0430007a3fce6/colorLogoPNG.png" group-title="Kids",Pluto TV Rugrats (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/610c09219fc0430007a3fce6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVRugratsCrecidos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ea7215005d66d0007e8128a/colorLogoPNG.png" group-title="Kids",Pluto TV Rugrats Crecidos (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea7215005d66d0007e8128a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc327d0451770009ed7577&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4aa698a0-0715-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d94a5451754e6a4298d1059/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSabrina.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d94a5451754e6a4298d1059/colorLogoPNG.png" group-title="Series",Pluto TV Sabrina (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSamCat.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8b5ba20af628000707cee3/colorLogoPNG.png" group-title="Kids",Pluto TV Sam & Cat (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5ba20af628000707cee3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSanctuary.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e7de99bc5200300072e971a/colorLogoPNG.png" group-title="Series",Pluto TV Sanctuary (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7de99bc5200300072e971a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e6fbc174-0585-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSanctuary.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e7de99bc5200300072e971a/colorLogoPNG.png" group-title="Series",Pluto TV Sanctuary (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6a38eaa5b68b0007a00e7a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (432p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2817d3d7573a00080f9175/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4fc274694c027be6ed3eea&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=151&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSciFi.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f2817d3d7573a00080f9175/colorLogoPNG.png" group-title="Movies",Pluto TV Sci-Fi (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02a44a9518600094273ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=563a970aa1a1f7fe7c9daad7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=672&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d9492c77ea6f99188738ff1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVScience.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/563a970aa1a1f7fe7c9daad7/colorLogoPNG.png" group-title="Science",Pluto TV Science (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSecretDealers.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e8dc0af6784d10007d8ad42/colorLogoPNG.png" group-title="Series",Pluto TV Secret Dealers (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc0af6784d10007d8ad42/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSensingMurder.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5e9ed47c26ebb000074af566/colorLogoPNG.png" group-title="Series",Pluto TV Sensing Murder (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9ed47c26ebb000074af566/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dcde1317578340009b751d0/colorLogoPNG.png" group-title="Series",Pluto TV Series (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde1317578340009b751d0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSeries.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f121262a189a800076b9386/colorLogoPNG.png" group-title="Series",Pluto TV Séries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSeriesComedia.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f9853138d19af0007104a8d/colorLogoPNG.png" group-title="Comedy",Pluto TV Series Comedia (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9853138d19af0007104a8d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSeriesLatinas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd837642c6e9300098ad484/colorLogoPNG.png" group-title="",Pluto TV Series Latinas (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd837642c6e9300098ad484/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSeriesRetro.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de802659167b10009e7deba/colorLogoPNG.png" group-title="Classic",Pluto TV Series Retro (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de802659167b10009e7deba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVSherlock.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2c00abfed110009d97243/colorLogoPNG.png" group-title="Series",Pluto TV Sherlock (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c00abfed110009d97243/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Shout! Factory TV (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/55a6a3275616b6240c26f393/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=55a6a3275616b6240c26f393&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=542&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVShowtimeSelect.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f988934a507de00075d9ae7/colorLogoPNG.png" group-title="",Pluto TV Showtime Select (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f988934a507de00075d9ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ab2b456c8cf265ce921&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7e35daaa-06ef-11eb-9df2-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSitcomsGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="Series",Pluto TV Sitcoms (Germany) (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ab2b456c8cf265ce921&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=405&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSitcomsPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d767ab2b456c8cf265ce921/colorLogoPNG.png" group-title="",Pluto TV Sitcoms+ (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cd149f021cb6c55e258bbe8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cd149f021cb6c55e258bbe8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=375760ce-ac7c-4306-818c-98562edc8da5&terminate=false&userId= +#EXTINF:-1 tvg-id="SkillsPlusThrills.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6000a6f4c3f8550008fc9b91/colorLogoPNG.png" group-title="",Pluto TV Skills + Thrills (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a6f4c3f8550008fc9b91/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82547b6b3df60007fec2b5/colorLogoPNG.png" group-title="",Pluto TV Slightly Off By IFC (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e82547b6b3df60007fec2b5/colorLogoPNG.png" group-title="",Pluto TV Slightly Off By IFC (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82547b6b3df60007fec2b5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=458&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5317bfebff98025b3200ff99&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=696&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765a05f65029ce2385aa30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSlowTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5317bfebff98025b3200ff99/colorLogoPNG.png" group-title="",Pluto TV Slow TV (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSmithsonianChannelSelects.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f21ea08007a49000762d349/featuredImage.jpg" group-title="Science",Pluto TV Smithsonian Channel Selects (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21ea08007a49000762d349/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSpace.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dbc2f98777f2e0009934ae7/colorLogoPNG.png" group-title="Science",Pluto TV Space (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2f98777f2e0009934ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d11baeb31c5a43b77bf59/colorLogoPNG.png" group-title="",Pluto TV Spike Aventura (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d11baeb31c5a43b77bf59&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=950&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d8d11baeb31c5a43b77bf59/colorLogoPNG.png" group-title="",Pluto TV Spike Aventura (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c393cad2de254456f7ef8c2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Spike Outdoors (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c393cad2de254456f7ef8c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=291&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c393cad2de254456f7ef8c2/colorLogoPNG.png" group-title="Outdoor",Pluto TV Spike Outdoors (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="Kids",Pluto TV SpongeBob Schwammkopf (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us" tvg-country="US" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="Kids",Pluto TV SpongeBob Schwammkopf (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e8adaab96b5635b2a005&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=715c465f-0715-11eb-a18c-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopfGermany.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d00e8adaab96b5635b2a005/colorLogoPNG.png" group-title="",Pluto TV SpongeBob Schwammkopf (Germany) (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d00e8adaab96b5635b2a005&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=248&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSPORTBeINSportsXtra.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Sports",Pluto TV SPORT : BeIN Sports Xtra (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df975e2b27cf5000921c102/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.9.3-b879e400d5df7a969d4bff8863fe5cb02c7120e6&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=b702181a-c1d6-4ee2-9481-753f471e2ce7&deviceLat=40.8364&deviceLon=-74.1403&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=66.0.3515.44&includeExtendedEvents=false&serverSideAds=tr&sid=855d6801-c912-428d-b620-ede4dd0c3b15&userId= +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6081310e48d3200007afaf3b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf322-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0727f4fb-ea0b-4814-bb58-fdf3c4534220 +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bb941b95267e225e59c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b22749b0-ca0e-4663-8bb3-d83febbbb89f&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56340779a738201b4ccfeac9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=725&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSports.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSportsEngland.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/6081310e48d3200007afaf3b/solidLogoPNG.png" group-title="Sports",Pluto TV Sports (England) (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677fa2ec536ce1d587eeb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=607&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSpotlight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ba3fb9c4b078e0f37ad34e8/colorLogoPNG.png" group-title="Movies",Pluto TV Spotlight (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ba3fb9c4b078e0f37ad34e8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=51&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSpotlight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ba3fb9c4b078e0f37ad34e8/colorLogoPNG.png" group-title="Movies",Pluto TV Spotlight (684p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStadium.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Pluto TV Stadium (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59974b6d7ec5063cb56f24c9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59974b6d7ec5063cb56f24c9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=748&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStaffPicks.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4d863b98b41000076cd061/colorLogoPNG.png" group-title="",Pluto TV Staff Picks (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d863b98b41000076cd061/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d135e29a52c94dfe543c5d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStandUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d135e29a52c94dfe543c5d3/colorLogoPNG.png" group-title="Comedy",Pluto TV Stand Up (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5637d31f319573e26b64040b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=468&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStarTrek.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd39f8c4ce900075d7698/colorLogoPNG.png" group-title="Series",Pluto TV Star Trek (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd39f8c4ce900075d7698&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=150&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStarTrek.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5efbd39f8c4ce900075d7698/colorLogoPNG.png" group-title="Series",Pluto TV Star Trek (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStorageWars.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ede464e7be0030007c58b73/colorLogoPNG.png" group-title="Series",Pluto TV Storage Wars (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede464e7be0030007c58b73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5922d945-0586-11eb-a59f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStorageWars.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5ede464e7be0030007c58b73/colorLogoPNG.png" group-title="Series",Pluto TV Storage Wars (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8254118601b80007b4b7ae/colorLogoPNG.png" group-title="",Pluto TV Stories by AMC (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8254118601b80007b4b7ae&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=135&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8254118601b80007b4b7ae/colorLogoPNG.png" group-title="",Pluto TV Stories by AMC (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd81b1053ed2c6334ea0856/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVStrongman.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5bd81b1053ed2c6334ea0856/colorLogoPNG.png" group-title="Series",Pluto TV Strongman (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1452156c07b50009d0230e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSurf.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d1ce51dbaca4afdb7abfe5f/colorLogoPNG.png" group-title="",Pluto TV Surf (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d1ce51dbaca4afdb7abfe5f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSurf.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5d1ce51dbaca4afdb7abfe5f/colorLogoPNG.png" group-title="",Pluto TV Surf (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSurvivor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e7b24744c60007c1f6fc/colorLogoPNG.png" group-title="Series",Pluto TV Survivor (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e7b24744c60007c1f6fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=296&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSurvivor.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e7b24744c60007c1f6fc/colorLogoPNG.png" group-title="Series",Pluto TV Survivor (240p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVSuspense.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e281b0b8840007324b55/colorLogoPNG.png" group-title="",Pluto TV Suspense (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e281b0b8840007324b55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=149&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVSuspense.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f15e281b0b8840007324b55/colorLogoPNG.png" group-title="",Pluto TV Suspense (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTastemade.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fd1419a3b4f4b000773ba85/colorLogoPNG.png" group-title="Cooking",Pluto TV Tastemade (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTBN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b2eeddd9576d66f9066/colorLogoPNG.png" group-title="Religious",Pluto TV TBN (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTBN.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d486b2eeddd9576d66f9066/colorLogoPNG.png" group-title="Religious",Pluto TV TBN (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b2eeddd9576d66f9066&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=644&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6de52b9914200091f047a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f0d668b872e4400073acc68&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9c22837c-0715-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTeen.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5dd6de52b9914200091f047a/colorLogoPNG.png" group-title="Kids",Pluto TV Teen (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8eb7e3d2ed18000746d09a/colorLogoPNG.png" group-title="Kids",Pluto TV TEEN SERIES (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb7e3d2ed18000746d09a/colorLogoPNG.png" group-title="Kids",Pluto TV TEEN SERIES (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTeenStars.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/60016a60a8e3520008e0d331/colorLogoPNG.png" group-title="Kids",Pluto TV Teen Stars (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60016a60a8e3520008e0d331/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTeenNick.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Pluto TV TeenNick (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTelefeClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5de91cf02fc07c0009910465/colorLogoPNG.png" group-title="",Pluto TV Telefe Clásico (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91cf02fc07c0009910465/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTelefeNoticias.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f523aa5523ae000074745ec/colorLogoPNG.png" group-title="News",Pluto TV Telefe Noticias (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f523aa5523ae000074745ec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96cc422df39f1a338d165/colorLogoPNG.png" group-title="Movies",Pluto TV Telemundo Telenovelas (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96cc422df39f1a338d165&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=940&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5cf96cc422df39f1a338d165/colorLogoPNG.png" group-title="Movies",Pluto TV Telemundo Telenovelas (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTelenovela.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f914f9dccb4de0007df8bc4/colorLogoPNG.png" group-title="Movies",Pluto TV Telenovela (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTelenovela.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f914f9dccb4de0007df8bc4/colorLogoPNG.png" group-title="Movies",Pluto TV Telenovela (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTelenovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/60b4c06717da110007ee1af6/colorLogoPNG.png" group-title="",Pluto TV Telenovelas (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60b4c06717da110007ee1af6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTerror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c6dc88fcd232425a6e0f06e/colorLogoPNG.png" group-title="Movies",Pluto TV Terror (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6dc88fcd232425a6e0f06e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=76&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTerror.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c6dc88fcd232425a6e0f06e/colorLogoPNG.png" group-title="Movies",Pluto TV Terror (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d81607ab737153ea3c1c80e/colorLogoPNG.png" group-title="Series",Pluto TV The Addams Family (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d81607ab737153ea3c1c80e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=511&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d81607ab737153ea3c1c80e/colorLogoPNG.png" group-title="Series",Pluto TV The Addams Family (684p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e8a6e2f12b000755afdb/colorLogoPNG.png" group-title="Series",Pluto TV The Amazing Race (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e8a6e2f12b000755afdb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=297&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f21e8a6e2f12b000755afdb/colorLogoPNG.png" group-title="Series",Pluto TV The Amazing Race (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f0427b2c0c065e91aab5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/591105034c1806b47438342c/colorLogoPNG.png" group-title="Series",Pluto TV The Asylum (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Series",Pluto TV The Bob Ross Channel (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36d726234ce10007784f2a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Classic",Pluto TV The Carol Burnett Show (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef396d1be50a3000722808b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=516&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef396d1be50a3000722808b/colorLogoPNG.png" group-title="Classic",Pluto TV The Carol Burnett Show (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48685da7e9f476aa8a1888/colorLogoPNG.png" group-title="Series",Pluto TV The Challenge (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48685da7e9f476aa8a1888&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=298&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48685da7e9f476aa8a1888/colorLogoPNG.png" group-title="Series",Pluto TV The Challenge (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f4ff8c8bcf3d600078af3eb/colorLogoPNG.png" group-title="Lifestyle",Pluto TV The Design Network (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ff8c8bcf3d600078af3eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",Pluto TV The First (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486acc34ceb37d3c458a64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486acc34ceb37d3c458a64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=244&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheLoveBoat.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7794a788d29000079d2f07/colorLogoPNG.png" group-title="Classic",Pluto TV The Love Boat (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794a788d29000079d2f07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aea40b35126c2157123aa64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=376&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea71d48af1d0b0007d837f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea71d48af1d0b0007d837f4/colorLogoPNG.png" group-title="Series",Pluto TV The New Detectives (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e393d5c696b3b0009775c8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4f5a07694c027be6ed1417/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf097eb06300079b30f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebacbcae43a6d000787b88e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebacbcae43a6d000787b88e/colorLogoPNG.png" group-title="Series",Pluto TV The Pet Collective (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d819e738977e2c31096a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThePriceisRight.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7791b8372da90007fd45e6/colorLogoPNG.png" group-title="Series",Pluto TV The Price is Right (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7791b8372da90007fd45e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e825550e758c700077b0aef/colorLogoPNG.png" group-title="Series",Pluto TV The Rifleman (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e825550e758c700077b0aef/colorLogoPNG.png" group-title="Series",Pluto TV The Rifleman (240p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e825550e758c700077b0aef&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=529&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheSimpleLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ea18f35ae8f730007465915/colorLogoPNG.png" group-title="Series",Pluto TV The Simple Life (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18f35ae8f730007465915/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f982c3420de4100070a545e/colorLogoPNG.png" group-title="Series",Pluto TV The Story of Beatclub (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f982c3420de4100070a545e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=09ab0f67-3401-11eb-a786-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5f982c3420de4100070a545e/colorLogoPNG.png" group-title="Series",Pluto TV The Story of Beatclub (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e82bb378601b80007b4bd78/colorLogoPNG.png" group-title="Series",Pluto TV The Walking Dead ESP (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82bb378601b80007b4bd78&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=925&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5e82bb378601b80007b4bd78/colorLogoPNG.png" group-title="Series",Pluto TV The Walking Dead ESP (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",Pluto TV This Old House (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e791b7dba3b2ae990ab2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=618&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",Pluto TV This Old House (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3977e5d773400077de284/colorLogoPNG.png" group-title="Series",Pluto TV Three's Company (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3977e5d773400077de284&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=508&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ef3977e5d773400077de284/colorLogoPNG.png" group-title="Series",Pluto TV Three's Company (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e69e08291147bd04a9fd7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=74&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efdbf90ba3e0009d99082&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b790e11f-0586-11eb-9b92-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8a87cd38d000745d7cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVThrillers.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e69e08291147bd04a9fd7/colorLogoPNG.png" group-title="Series",Pluto TV Thrillers (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfedccc563080009b60f4a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTinyHouseNation.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/601a0342dcf4370007566891/colorLogoPNG.png" group-title="Series",Pluto TV Tiny House Nation (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a0342dcf4370007566891/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTODAY.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d695f7db53adf96b78e7ce3/colorLogoPNG.png" group-title="Series",Pluto TV TODAY (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d695f7db53adf96b78e7ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=234&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTODAY.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d695f7db53adf96b78e7ce3/colorLogoPNG.png" group-title="Series",Pluto TV TODAY (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c3f8f12a93c2d61b9990a4e/colorLogoPNG.png" group-title="Series",Pluto TV TokuSHOUTsu (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c3f8f12a93c2d61b9990a4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=848&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c3f8f12a93c2d61b9990a4e/colorLogoPNG.png" group-title="Series",Pluto TV TokuSHOUTsu (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVToonsClasico.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/609e7e423e9173000706a681/colorLogoPNG.png" group-title="Kids",Pluto TV Toons Clásico (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609e7e423e9173000706a681/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecc1b37867f00071469e9/colorLogoPNG.png" group-title="Series",Pluto TV Tortues Ninja TV (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecc1b37867f00071469e9/colorLogoPNG.png" group-title="Series",Pluto TV Tortues Ninja TV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTosh0.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae084727c8af0009fe40a4/colorLogoPNG.png" group-title="Series",Pluto TV Tosh.0 (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae084727c8af0009fe40a4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTosh0.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5dae084727c8af0009fe40a4/colorLogoPNG.png" group-title="Series",Pluto TV Tosh.0 (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d6792bd6be2998ad0ccce30&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ca4dc680-0715-11eb-aeab-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="DE" tvg-language="German" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d0c16d686454ead733d08f8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=983&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d0c16d686454ead733d08f8/colorLogoPNG.png" group-title="Kids",Pluto TV Totally Turtles (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c01b1953680139c6ae9d4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=678&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTravel.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/59c01b1953680139c6ae9d4d/colorLogoPNG.png" group-title="Travel",Pluto TV Travel (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c444bac1f70009ca756e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aae8c65727d0007d15a17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVTROL.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8eb8a8b2619a000710605c/colorLogoPNG.png" group-title="Entertainment",Pluto TV TROL (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812be1c249444e05d09cc50/colorLogoPNG.png" group-title="Series",Pluto TV True Crime (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812be1c249444e05d09cc50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=365&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5812be1c249444e05d09cc50/colorLogoPNG.png" group-title="Series",Pluto TV True Crime (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="Pluto TV Truly.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5ebd0ff1e1a4770007479dc7/colorLogoPNG.png" group-title="",Pluto TV Truly (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebd0ff1e1a4770007479dc7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTurmadaMonica.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f997e44949bc70007a6941e/colorLogoPNG.png" group-title="",Pluto TV Turma da Mônica (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40bebc5e3d2750a2239d7e/colorLogoPNG.png" group-title="Movies",Pluto TV TV Land Drama (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40bebc5e3d2750a2239d7e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=130&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d40bebc5e3d2750a2239d7e/colorLogoPNG.png" group-title="Movies",Pluto TV TV Land Drama (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c2d64ffbdf11b71587184b8/colorLogoPNG.png" group-title="",Pluto TV TV Land Sitcoms (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5c2d64ffbdf11b71587184b8/colorLogoPNG.png" group-title="",Pluto TV TV Land Sitcoms (240p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c2d64ffbdf11b71587184b8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=455&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTween.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db0ae5af8797b00095c0794/colorLogoPNG.png" group-title="Kids",Pluto TV Tween (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ae5af8797b00095c0794&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=991&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVTween.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5db0ae5af8797b00095c0794/colorLogoPNG.png" group-title="Kids",Pluto TV Tween (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVTYTNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5331d5fb753499095a00045a/colorLogoPNG.png" group-title="",Pluto TV TYT Network (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5331d5fb753499095a00045a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVUnbeatenEsports.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5dc2a961bac1f70009ca7524/colorLogoPNG.png" group-title="Entertainment",Pluto TV Unbeaten Esports (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a961bac1f70009ca7524/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVUndercoverBossGlobal.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f0dc00b15eef10007726ef7/colorLogoPNG.png" group-title="Series",Pluto TV Undercover Boss Global (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0dc00b15eef10007726ef7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e96a0423e067bd6df6901&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=379&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5b4e96a0423e067bd6df6901/colorLogoPNG.png" group-title="Series",Pluto TV Unsolved Mysteries (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd05b4694d45d266bc951f2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVayasemanita.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5f28009b150b2500077766b8/colorLogoPNG.png" group-title="",Pluto TV Vaya semanita (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f28009b150b2500077766b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVelocidad.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dd6dc7480e3550009133d4a/colorLogoPNG.png" group-title="",Pluto TV Velocidad​ (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dc7480e3550009133d4a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVVEVO2K.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7bca3e0a4ee0007a38e8c/featuredImage.jpg" group-title="Music",Pluto TV VEVO 2K (1080p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bca3e0a4ee0007a38e8c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVO70s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f32f26bcd8aea00071240e5/featuredImage.jpg" group-title="Music",Pluto TV VEVO 70's (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f26bcd8aea00071240e5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVO80s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7b8bf927e090007685853/featuredImage.jpg" group-title="Music",Pluto TV VEVO 80's (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7b8bf927e090007685853/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVO90s.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5fd7bb1f86d94a000796e2c2/featuredImage.jpg" group-title="Music",Pluto TV VEVO 90's (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bb1f86d94a000796e2c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVOCountry.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5da0d75e84830900098a1ea0/featuredImage.jpg" group-title="Music",Pluto TV VEVO Country (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d75e84830900098a1ea0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVevoPop.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d93b635b43dd1a399b39eee/colorLogoPNG.png" group-title="Music",Pluto TV Vevo Pop (1080p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b635b43dd1a399b39eee&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=890&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVVevoPop.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5d93b635b43dd1a399b39eee/colorLogoPNG.png" group-title="Music",Pluto TV Vevo Pop (1080p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVORB.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5da0d83f66c9700009b96d0e/featuredImage.jpg" group-title="Music",Pluto TV VEVO R&B (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d83f66c9700009b96d0e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVEVOReggeatonTrap.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5f32f397795b750007706448/featuredImage.jpg" group-title="Music",Pluto TV VEVO Reggeaton & Trap (1080p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f397795b750007706448/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVH1IClassic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/6076cd1df8576d0007c82193/colorLogoPNG.png" group-title="Music",Pluto TV VH1 Classics (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6076cd1df8576d0007c82193/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d71561df6f2e6d0b6493bf5/colorLogoPNG.png" group-title="Series",Pluto TV VH1 Hip Hop Family (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d71561df6f2e6d0b6493bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=284&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d71561df6f2e6d0b6493bf5/colorLogoPNG.png" group-title="Series",Pluto TV VH1 Hip Hop Family (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d7154fa8326b6ce4ec31f2e/colorLogoPNG.png" group-title="Series",Pluto TV VH1 I Love Reality (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7154fa8326b6ce4ec31f2e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=282&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d7154fa8326b6ce4ec31f2e/colorLogoPNG.png" group-title="Series",Pluto TV VH1 I Love Reality (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVViajes.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5dcddfbdb7cf0e0009ae09ea/colorLogoPNG.png" group-title="",Pluto TV Viajes (480p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfbdb7cf0e0009ae09ea/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVVictorious.us" tvg-country="DE" tvg-language="German" tvg-logo="https://images.pluto.tv/channels/5e8b5e43f294f8000793c3d7/colorLogoPNG.png" group-title="",Pluto TV Victorious (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5e43f294f8000793c3d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVidaReal.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5df265697ec3510009df1ef0/colorLogoPNG.png" group-title="",Pluto TV Vida Real (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=589aa03df9ba56a84197a560&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=681&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/589aa03df9ba56a84197a560/colorLogoPNG.png" group-title="Documentary",Pluto TV Voyager Documentaries (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d1e9e738977e2c310925/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVVs.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/603fde9026ecbf0007752c2c/colorLogoPNG.png" group-title="Sports",Pluto TV Vs. (720p) +http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/603fde9026ecbf0007752c2c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",Pluto TV WeatherNation (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bdce04659ee03633e758130&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=217&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",Pluto TV WeatherNation (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877acecb16bb1e042ee453f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=632&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d49455dfd09fd7d4c0daf26/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5877acecb16bb1e042ee453f/colorLogoPNG.png" group-title="Series",Pluto TV Weddings (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4bdb635ce813b38639e6a3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5e8df4bc16e34700077e77d3/colorLogoPNG.png" group-title="Movies",Pluto TV Westerns (684p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8df4bc16e34700077e77d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=526&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/08182020/Wild%20N%20Out_190x190.png?raw=true" group-title="Series",Pluto TV Wild 'N Out (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48678d34ceb37d3c458a55/colorLogoPNG.png" group-title="Series",Pluto TV Wild 'N Out (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48678d34ceb37d3c458a55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWildNOut.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d48678d34ceb37d3c458a55/colorLogoPNG.png" group-title="Series",Pluto TV Wild 'N Out (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWings.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5f7792f6e093980007e02945/colorLogoPNG.png" group-title="Series",Pluto TV Wings (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7792f6e093980007e02945/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (480p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea190ae85a26900075a80e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="Spanish" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (480p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed6828192e8b3000743ef61/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ab3e1242be690697279c75d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=305&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWipeout.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5ab3e1242be690697279c75d/colorLogoPNG.png" group-title="Series",Pluto TV Wipeout (720p) [Offline] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Series",Pluto TV World Poker Tour (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b7aae738977e2c312132&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=48d01e71-b553-42a5-9205-affb7381b546&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Series",Pluto TV World Poker Tour (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5616f9c0ada51f8004c4b091&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=770&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d796e738977e2c31094a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (360p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5f8ecfb9db6c180007a6d1b0/colorLogoPNG.png" group-title="Entertainment",Pluto TV World Poker Tour (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS01/master.m3u8 +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150921e2191900097c4c23/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel +#EXTINF:-1 tvg-id="PlutoTVYoMTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d14fc31252d35decbc4080b/colorLogoPNG.png" group-title="Series",Pluto TV Yo! MTV (720p) [Not 24/7] +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fc31252d35decbc4080b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=873&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="CH;FR" tvg-language="French" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60803e541a829e0008e91641/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb570-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ca55bef6-f2a6-488a-be5d-c7ba24d93cdd +#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0d10e186bf0007e2b100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2c143e9d-0cd6-4d02-8b92-df3471ececef&terminate=false&userId= +#EXTINF:-1 tvg-id="PlutoTVYoga.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/60803e541a829e0008e91641/solidLogoPNG.png" group-title="Sports",Pluto TV Yoga (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/5fceaab478f2af00080ff51f/colorLogoPNG.png" group-title="",Pluto TV Yu-Gi-Oh (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fceaab478f2af00080ff51f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= +#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us" tvg-country="US" tvg-language="English" tvg-logo="https://images.pluto.tv/channels/5fceaab478f2af00080ff51f/colorLogoPNG.png" group-title="",Pluto TV Yu-Gi-Oh (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ec10ed9636f00089b8c89/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS +#EXTINF:-1 tvg-id="SkyNews.us" tvg-country="US" tvg-language="English" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/SkyNews.png" group-title="News",Sky News (720p) [Offline] +https://skynews2-plutolive-vo.akamaized.net/cdhlsskynewsamericas/1013/latest.m3u8 +#EXTINF:-1 tvg-id="SpikeAdventura.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/all-channels/10062020/Spike_Aventura_190x190.png?raw=true" group-title="",Spike Adventura (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cc81e793798650e4f7d9fd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=867f59cf-0586-11eb-8b9f-0242ac110002&terminate=false&userId= +#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=591105034c1806b47438342c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=115&terminate=false&userId= +#EXTINF:-1 tvg-id="TheBlaze.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/toNeonC.png" group-title="",The Blaze (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= +#EXTINF:-1 tvg-id="TheNewDetectives.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/TheNewDetectives_190x190.png?raw=true" group-title="",The New Detectives (720p) +http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) +https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ad55268cae539bcedb08&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=637&terminate=false&userId= +#EXTINF:-1 tvg-id="TopGear.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://images.pluto.tv/channels/60d356a534f63f000850cdd7/colorLogoPNG.png" group-title="",Top Gear (720p) +https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d356a534f63f000850cdd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS diff --git a/channels/us_redbox.m3u b/channels/us_redbox.m3u new file mode 100644 index 000000000..148b42e39 --- /dev/null +++ b/channels/us_redbox.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) +https://contv-redbox-us-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) +https://docurama-redbox-us-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (1080p) +https://johnnycarson-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-johnnycarson-redbox/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MST3K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1xJJB7C.jpg" group-title="Entertainment",MST3K (1080p) +https://mst3k-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-mst3k/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) [Not 24/7] +https://pac12-redbox.amagi.tv/hls/amagi_hls_data_pac-12AAA-pac12-redbox/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox1Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OrGCnPg.jpg" group-title="",Redbox 1: Spotlight (1080p) +https://spotlight-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox2Comedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Comedy",Redbox 2: Comedy (1080p) +https://comedy-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox3Rush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pA6g3iH.jpg" group-title="",Redbox 3: Rush (1080p) +https://rush-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-rush/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox3Rush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/pA6g3iH.jpg" group-title="",Redbox 3: Rush (1080p) +https://rush-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) +http://shoutfactory-redbox.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) +https://shoutfactory-redbox.amagi.tv/hls/amagi_hls_data_redboxAAA-shoutfactorytv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeFrance.us" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade France (1080p) +https://tastemadefr16min-redbox.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16-redbox/CDN/playlist.m3u8 diff --git a/channels/us_redtraffic.m3u b/channels/us_redtraffic.m3u new file mode 100644 index 000000000..75de8bcf2 --- /dev/null +++ b/channels/us_redtraffic.m3u @@ -0,0 +1,37 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdultIPTVnetBigAss.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Ass (720p) +http://live.redtraffic.xyz/bigass.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigDick.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Dick (720p) +http://live.redtraffic.xyz/bigdick.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBigTits.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Big Tits (720p) +http://live.redtraffic.xyz/bigtits.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetBlowjob.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Blowjob (720p) +http://live.redtraffic.xyz/blowjob.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetCuckold.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Cuckold (720p) +http://live.redtraffic.xyz/cuckold.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetFetish.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Fetish (720p) +http://live.redtraffic.xyz/fetish.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetGangbang.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Gangbang (720p) +http://live.redtraffic.net/gangbang.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetHardcore.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Hardcore (720p) +http://live.redtraffic.xyz/hardcore.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetInterracial.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Interracial (720p) +http://live.redtraffic.xyz/interracial.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLatina.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Latina (720p) +http://live.redtraffic.xyz/latina.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetLesbian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Lesbian (720p) +http://live.redtraffic.xyz/lesbian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetMILF.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net MILF (720p) +http://live.redtraffic.xyz/milf.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPornstar.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Pornstar (720p) +http://live.redtraffic.xyz/pornstar.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetPOV.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net POV (720p) +http://live.redtraffic.xyz/pov.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetRussian.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Russian (720p) +http://live.redtraffic.xyz/russian.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetTeen.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Teen (720p) +http://live.redtraffic.xyz/teen.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetThreesome.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Threesome (720p) +http://live.redtraffic.xyz/threesome.m3u8 +#EXTINF:-1 tvg-id="AdultIPTVnetWoman.us" tvg-country="INT" tvg-language="English" tvg-logo="" group-title="XXX",AdultIPTV.net Woman (720p) +http://live.redtraffic.net/woman.m3u8 diff --git a/channels/us_roku.m3u~master b/channels/us_roku.m3u~master new file mode 100644 index 000000000..bc71d373f --- /dev/null +++ b/channels/us_roku.m3u~master @@ -0,0 +1,243 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (1080p) [Offline] +https://120sports-accdn-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AccuWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yNDUzNzc0Mjlf/AccuWeather_500x500.png" group-title="Weather",AccuWeather Now (1080p) [Geo-blocked] +https://amg00684-accuweather-accuweather-rokuus-0endj.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) +https://linear-12.frequency.stream/dist/roku/12/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AFVenEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f7b66af901c6845181f33d3" group-title="Comedy",AFV en Español (720p) [Not 24/7] +https://linear-46.frequency.stream/dist/roku/46/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) +https://p1media-americasvoice-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) +https://bnc-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) [Offline] +https://bnc-roku-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewsnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BloodyDisgusting.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602dd011302f4d7da05d4bf3" group-title="Movies",Bloody Disgusting (1080p) +https://bloodydisgusting-ingest-roku-us.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) [Offline] +https://bloomberg-quicktake-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (1080p) [Offline] +https://bonappetit-roku-us.amagi.tv/hls/amagi_hls_data_condenast-bonappetitroku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) +https://brat-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) +https://buzzr-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://cheddar-cheddar-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) +https://cheddar.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CineSureno.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0tHU0hC.jpg" group-title="",Cine Sureño (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/CineSureno-roku/master.m3u8 +#EXTINF:-1 tvg-id="CineSureno.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/0tHU0hC.jpg" group-title="",Cine Sureño (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-cinesureno-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) +https://20995731713c495289784ab260b3c830.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_CinevaultWesterns/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) [Offline] +https://gsn-cinevault-westerns-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://circle-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Cocoro.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z4hIjPn.jpg" group-title="Kids",Cocoro (1080p) +https://4ea7abcc97144832b81dc50c6e8d6330.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Cocoro/playlist.m3u8 +#EXTINF:-1 tvg-id="Cocoro.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z4hIjPn.jpg" group-title="Kids",Cocoro (1080p) [Offline] +https://coco-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://contvanime-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (1080p) [Offline] +https://aenetworks-crime360-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimeTime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cQxKMMJ.jpg" group-title="Documentary",Crime Time (1080p) +https://crimetimebamca-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (1080p) [Offline] +https://endemol-dealornodeal-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) +https://dovenow-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/aAUbLhE.png" group-title="Sports",EDGEsport (1080p) [Offline] +https://edgesports-roku.amagi.tv/hls/amagi_hls_data_imgAAA2AA-edgesports/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) +https://estrellanews-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) [Offline] +https://estrellanews-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellanews-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) +https://estrellatv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaTVEast.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/4PiLKrm.png" group-title="Entertainment",Estrella TV East (1080p) [Offline] +https://estrellatv-roku.amagi.tv/hls/amagi_hls_data_estrellaA-estrellatv-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsenEspanol.fr" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews en Español (720p) [Offline] +https://euronews-euronews-spanish-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EuronewsEnglish.fr" tvg-country="INT" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Euronews_2016_logo.svg/1000px-Euronews_2016_logo.svg.png" group-title="News",Euronews English (720p) [Offline] +https://euronews-euronews-world-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FidoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kvdqP3H.jpg" group-title="Entertainment",Fido TV (1080p) [Offline] +https://fidotv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) [Not 24/7] +http://fox-foxsoul-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) [Offline] +https://fox-foxsoul-roku.amagi.tv/hls/amagi_hls_data_foxAAAAAA-foxsoul-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (360p) +https://eleven-rebroadcast-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkWest.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network West (1080p) [Offline] +https://gsn-gameshowchannnel-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HallmarkChannelEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LLJiIEB.png" group-title="Entertainment",Hallmark Channel East [Offline] +https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_yupptvfrn-hallmark-frndlytv/CDN/768x432_2340800/index.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (1080p) +https://happykids-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HauntTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jCaWSFK.png" group-title="Series",Haunt TV (1080p) +https://haunttv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (1080p) +https://linear-59.frequency.stream/dist/roku/59/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="Horrify.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCbpYa4.png" group-title="Movies",Horrify (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/Horrify-roku/master.m3u8 +#EXTINF:-1 tvg-id="Horrify.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NCbpYa4.png" group-title="Movies",Horrify (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-horrify-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (1080p) +https://ft-ifood-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (1080p) [Offline] +https://ft-ifood-roku.amagi.tv/hls/amagi_hls_data_futuretod-ifood-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Juntos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UbomgHT.png" group-title="Series",Juntos (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/Juntos-roku/master.m3u8 +#EXTINF:-1 tvg-id="Juntos.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/UbomgHT.png" group-title="Series",Juntos (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-juntos-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KetchupTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NOX2zse.png" group-title="Kids",Ketchup TV (1080p) [Offline] +https://vod365-ketchuptv-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGamerTV.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Kids",Kid Gamer TV [Offline] +https://studio71-roku-us.amagi.tv/hls/amagi_hls_data_studio71A-studio71roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Kidoodle.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (1080p) [Offline] +http://kidoodletv-kdtv-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidzBop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/19namZP.jpg" group-title="Kids",Kidz Bop (1080p) [Offline] +https://kidzbop-rokuus.amagi.tv/hls/amagi_hls_data_kidzbopAA-kidzbop-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LegoChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xePwW13.png" group-title="Kids",Lego Channel (1080p) +https://legochannel-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (1080p) [Offline] +http://aenetworks-ae-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop80sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s East (1080p) [Geo-blocked] +https://55e014b3437040d08777729c863a2097.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_Loop80s-1/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop80sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lDmxwji.png" group-title="Music",Loop 80s East (1080p) [Geo-blocked] +https://loop-80s-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Loop90sEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/K8YV2bR.png" group-title="Music",Loop 90s East (1080p) [Offline] +https://loop-90s-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopCountry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/62CjWTa.jpg" group-title="Music",Loop Country East (1080p) [Offline] +https://053155d1274848ed85106dbf20adc283.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_LoopCountry/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopCountryEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/62CjWTa.jpg" group-title="Music",Loop Country East (1080p) [Offline] +https://loop-country-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopHipHopEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yW7WCPm.png" group-title="Music",Loop Hip-Hop East (1080p) [Offline] +https://loop-hip-hop-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopHottestEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/NY9dKoR.png" group-title="Music",Loop Hottest East (1080p) [Offline] +https://loop-hottest-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoopPartyEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8JPEexX.png" group-title="Music",Loop Party East (1080p) [Offline] +https://loop-party-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNature.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature (1080p) +http://bamus-eng-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LoveNatureEspanol.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/LXpqmgn.jpg" group-title="Outdoor",Love Nature Español (1080p) [Offline] +https://bamus-spa-roku.amagi.tv/hls/amagi_hls_data_bamusaAAA-roku-bam-spanish/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQK6GMj.png" group-title="Movies",Made in Hollywood (720p) [Offline] +https://connection3-ent.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (1080p) [Offline] +https://maverick-maverick-black-cinema-3.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTVSelect.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjgzNzU2MTNf?inline=1" group-title="Sports",MavTV Select (1080p) [Offline] +https://mavtv-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/K1kJf1s.png" group-title="",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MoonBug.uk" tvg-country="UK" tvg-language="English" tvg-logo="" group-title="",MoonBug (1080p) [Offline] +https://moonbug-rokuus.amagi.tv/hls/amagi_hls_data_moonbugAA-moonbug-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MoonbugKids.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/07212020/circle_190x190.png?raw=true" group-title="Kids",Moonbug Kids (1080p) +https://moonbug-rokuus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphere-roku.amagi.tv/hls/amagi_hls_data_lionsgate-moviesphere-roku-us/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphere-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MST3K.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1xJJB7C.jpg" group-title="Entertainment",MST3K (1080p) +https://mst3k-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) +https://mytime-roku-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (1080p) +https://b9860b21629b415987978bdbbfbc3095.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_NewKID/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (1080p) [Offline] +https://newidco-newkid-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) [Offline] +https://newsmax-roku-us.amagi.tv/hls/amagi_hls_data_newsmaxAA-newsmax/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] +https://nosey-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (1080p) +http://oneamericanews-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (720p) [Offline] +https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OANEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9S4ZbPL.jpg" group-title="News",OAN Encore [Offline] +https://oneamericanews-roku-us.amagi.tv/hls/amagi_hls_data_oneameric-oneamericanews/CDN/512x288_875600/index.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) +https://outsidetv-roku-us.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) +https://pac12-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkfongBabyShark.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1MGJg18.jpg" group-title="Kids",Pinkfong Baby Shark (1080p) +https://fc2f8d2d3cec45bb9187e8de15532838.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Roku_BabySharkTV/playlist.m3u8 +#EXTINF:-1 tvg-id="PinkfongBabyShark.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1MGJg18.jpg" group-title="Kids",Pinkfong Baby Shark (1080p) [Offline] +https://newidco-babysharktv-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) +https://playerstv-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] +https://pocketwatch.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] +https://rtmtv-powernation-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (1080p) [Offline] +https://nosey-realnosey-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Redbox1Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OrGCnPg.jpg" group-title="",Redbox 1: Spotlight (1080p) [Offline] +https://spotlight-rokuus.amagi.tv/hls/amagi_hls_data_redboxAAA-spotlight-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (1080p) [Offline] +https://digitalmediarights-retrocrush-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ReutersNow.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM4NTg2MTFf/TheRokuChannel_880x880.png" group-title="",Reuters Now (1080p) [Offline] +https://reuters-reutersnow-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) +https://linear-45.frequency.stream/dist/roku/45/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="RuntimeSpain.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Runtime_120x120.png?raw=true" group-title="",Runtime (Spain) (1080p) +https://runtime-espanol-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RyanandFriends.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uG675tT.png" group-title="",Ryan and Friends (720p) [Offline] +https://pocketwatch-ryanandfriends-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="Movies",Samuel Goldwyn Channel (1080p) +https://samuelgoldwyn-films-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="Classic",Samuel Goldwyn Classics (1080p) +https://samuelgoldwyn-classic-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills Channel 2 (1080p) [Offline] +https://aenetworks-skills-thrills-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalComedias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Comedias (720p) [Offline] +https://sony-comedias-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalCompetencias.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Competencias (720p) [Offline] +https://sony-competencias-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalNovelas.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/yijitpa.png" group-title="Movies",Sony Canal Novelas (720p) [Offline] +https://sony-novelas-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SonyCanalNovelas.es" tvg-country="ES" tvg-language="Spanish" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTcxPF9UjPuq9aipQifmfHGTgTObTvXJi4G6w&usqp=CAU" group-title="",Sony Canal Novelas (720p) [Offline] +https://sony-novelas-1.roku.wurl.com/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) [Offline] +https://stadium.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) +https://tastemade-es8intl-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) [Offline] +https://tastemade-es8intl-roku.amagi.tv/hls/amagi_hls_data_tastemade-tastemade-es8intl-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dEmt8Fv.png" group-title="Classic",The Carol Burnett Show (1080p) +https://carolburnett-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCraftistry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KIzpKhL.png" group-title="Lifestyle",The Craftistry (1080p) +https://studio71-craftistry-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCraftistry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KIzpKhL.png" group-title="Lifestyle",The Craftistry (1080p) [Offline] +https://studio71-craftistry-roku.amagi.tv/hls/amagi_hls_data_studio71A-craftistry-rokuA/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (1080p) [Offline] +https://thedesignnetwork-tdn-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lbOPCEJ.png" group-title="Series",This Old House (1080p) [Offline] +https://thisoldhouse-2.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TopCine.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DFEKx5N.png" group-title="Movies",Top Cine (1080p) +https://olympusamagi.pc.cdn.bitgravity.com/TopCine-roku/master.m3u8 +#EXTINF:-1 tvg-id="TopCine.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/DFEKx5N.png" group-title="Movies",Top Cine (1080p) [Offline] +https://olympusamagi.amagi.tv/hls/amagi_hls_data_olympusat-topcine-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) +https://unbeaten-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) [Offline] +https://unbeaten-roku.amagi.tv/hls/amagi_hls_data_inverleig-unbeaten-roku/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) [Offline] +https://venntv-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/1/18/WeatherNation_icon.png" group-title="Weather",WeatherNation (720p) [Geo-blocked] +https://weathernationtv.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (1080p) [Offline] +https://whistletv-roku-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (1080p) [Offline] +https://endemol-wipeoutxtra-1.roku.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) +https://xplore-roku.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) +https://yahoo-roku-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.nz" tvg-country="NZ" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (1080p) [Offline] +https://rockentertainment-zoomoo-1.roku.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_samsung.m3u b/channels/us_samsung.m3u new file mode 100644 index 000000000..ac474af84 --- /dev/null +++ b/channels/us_samsung.m3u @@ -0,0 +1,207 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ACCNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UHcFiHk.png" group-title="Sports",ACC Network (720p) [Offline] +https://120sports-accdn-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (720p) [Offline] +https://amc-amcpresents-2.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Asiancrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tmtdwdU.png" group-title="Entertainment",Asiancrush (720p) [Offline] +https://ac-samsung.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BCCGaming.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/60qMpEK.png" group-title="Comedy",BCC Gaming (720p) [Offline] +https://arcade-cloud.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (1080p) +https://bloomberg-quicktake-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xGlToly.png" group-title="Business",Bloomberg TV+ UHD (2160p) +https://bloomberg-bloombergtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (1080p) +https://bonappetit-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BounceXL.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/television-home-theater/tvs/tvplus/all-channels/10262021/Samsung_-_Bounce_XL_logo__CIRCLE_-_1000x1000.png" group-title="Entertainment",Bounce XL (720p) +https://c217322ca48e4d1e98ab33fe41a5ed01.mediatailor.us-east-1.amazonaws.com/v1/master/04fd913bb278d8775298c26fdca9d9841f37601f/Samsung_BounceXL/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) +https://brat-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) +https://buzzr-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) +https://cdn-ue1-prod.tsv2.amagi.tv/linear/samsungus-buzzr-samsungtv-us/playlist.m3u8 +#EXTINF:-1 tvg-id="CanelaTV.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/D7HC79b.png" group-title="",Canela TV (720p) [Offline] +https://canelamedia-canelatv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (720p) +https://cheddar.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) [Offline] +https://gsn-cinevault-westerns-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://circle-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Not 24/7] +https://contv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Crime360.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fYXChY0.png" group-title="Documentary",Crime 360 (720p) +https://aenetworks-crime360-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DangerTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4aTk45R.png" group-title="Documentary",Danger TV (720p) [Offline] +https://dangertv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (720p) [Offline] +https://endemol-dealornodeal-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DegrassiTheNextGeneration.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mRBQKp3.png" group-title="",Degrassi The Next Generation (720p) +https://dhx-degrassi-1-us.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Offline] +https://docurama.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DryBarComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/l61qxIE.jpg" group-title="Comedy",DryBar Comedy (720p) [Offline] +https://drybar-drybarcomedy-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (720p) [Offline] +https://dust.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/6h10JDk.png" group-title="Sports",EDGEsport (1080p) +https://edgesport-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AjRCYwR.png" group-title="Sports",EDGEsport (1080p) +https://edgesport-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AjRCYwR.png" group-title="Sports",EDGEsport (US) (720p) [Timeout] +https://img-edgesport.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (1080p) +https://estrellanews-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ESTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/B3oElWL.jpg" group-title="Sports",ESTV (1080p) +https://estv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (720p) +https://failarmy-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hc5a1YP.png" group-title="News",FOX News Now (720p) +https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) +https://fox-foxsoul-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FTF.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IRWahfD.png" group-title="Sports",FTF (540p) +https://elevensports.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FuelTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XboGSjX.png" group-title="Sports",Fuel TV (720p) +https://fueltv-fueltv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowNetworkEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Network East (720p) [Offline] +https://gsn-gameshowchannnel-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Offline] +https://gravitas-movies.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) +https://gustotv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HollyWire.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vcrDETL.png" group-title="Religious",Holly Wire (720p) [Offline] +https://hollywire.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/240x135/homeshop.png" group-title="Shop",HSN (720p) +https://hsn.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Hungry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MIUDYh0.png" group-title="Cooking",Hungry (720p) [Offline] +https://food.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IGN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ff62vtM.jpg" group-title="News",IGN (1080p) +https://ign-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://insighttv-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) +https://introuble-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (720p) +https://inwonder-samsung-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="IonPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d449jnv.png" group-title="Family",Ion Plus (1080p) +https://ion-plus.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (720p) [Offline] +https://kidoodletv-kdtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) +http://lawandcrime.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LivelyPlace.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n5lMm78.png" group-title="Lifestyle",Lively Place (720p) +https://aenetworks-ae-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.fr" tvg-country="FR" tvg-language="French" tvg-logo="https://i.imgur.com/6osyvwh.png" group-title="",Magellan TV (720p) [Offline] +https://magellantv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) [Offline] +https://maverick-maverick-black-cinema-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (720p) [Offline] +https://mavtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MHzNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/MHzNow_190x190.png?raw=true" group-title="",MHz Now (720p) [Offline] +https://mhz-samsung-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (720p) +https://dmr-midnightpulp-3-us.samsung.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieMix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qcgXbuC.png" group-title="",MovieMix (720p) [Offline] +https://moviemix.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MovieSphere.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjM1Njg1NTFf/MovieSphere_400x400.png" group-title="Movies",MovieSphere (1080p) +https://moviesphere-samsung-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) +https://mytimeuk-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dHVfGex.png" group-title="Movies",New K-Movies (720p) [Offline] +https://newidco-newmovies-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewKidTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Z5t6cCe.jpg" group-title="Kids",New Kid TV (720p) [Offline] +https://newidco-newkid-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) +https://newsmax-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) [Offline] +https://newsy.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (720p) [Offline] +https://nosey-2.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (720p) +https://outside-tv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (1080p) +https://pac12-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) [Offline] +https://jukin-peopleareawesome-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) +https://playerstv-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) [Offline] +https://pocketwatch.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] +https://rtmtv-samsung.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PowerNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/iJmj6zC.png" group-title="Auto",Power Nation (720p) [Offline] +https://rtmtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PursuitUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/Pursuit_Circle_190x190.png?raw=true" group-title="",Pursuit Up (720p) [Offline] +https://pursuitup.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Qubo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ki7zVmW.png" group-title="Kids",Qubo (720p) [Offline] +http://ion-qubo-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="QVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/jnk22/kodinerds-iptv/master/logos/tv/qvc.png" group-title="Shop",QVC (720p) +https://qvc.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZ9iGaO.png" group-title="Comedy",RiffTrax (720p) [Offline] +https://rifftrax.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (720p) +https://shout-factory.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SkillsPlusThrillsChannel3.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kFJ3Qa4.png" group-title="",Skills + Thrills Channel 3 (720p) [Offline] +https://aenetworks-skills-thrills-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) +https://sportsgrid-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) +https://stadium.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sw1LtJ4.png" group-title="Relax",Stingray Naturescape (1080p) +https://stingray-naturescape-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQello.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/us-channel-lineup/StingrayQello_190x190.png?raw=true" group-title="Music",Stingray Qello (1080p) +https://samsung.ott-channels.stingray.com/qello/master.m3u8 +#EXTINF:-1 tvg-id="STIRROutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",STIRR Outdoor America (720p) [Offline] +https://obsession-media-sinclair.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SurfNowTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tvplus/06232020/SURF_NOW_TV_190x190.png?raw=true" group-title="Sports",Surf Now TV (720p) [Offline] +https://1091-surfnowtv-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (720p) [Offline] +https://tastemade.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) +https://tastemade-es16tm-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TGJunior.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cZ4pGmk.png" group-title="",TG Junior (720p) [Offline] +https://tg-junior.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) +https://thedesignnetwork-tdn-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) +https://the-pet-collective-linear.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (720p) [Offline] +https://previewchannel-previewchannel-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheYoungTurks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XDNXJCl.png" group-title="News",The Young Turks (TYT) (720p) +https://tyt-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThisOldHouse.us" tvg-country="US" tvg-language="English" tvg-logo="http://images.pluto.tv/channels/5d51e791b7dba3b2ae990ab2/colorLogoPNG.png" group-title="Series",This Old House (720p) +https://26487f8be0614420a64b6f5964563a75.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Samsung_ThisOldHouse/playlist.m3u8 +#EXTINF:-1 tvg-id="TinyHouseNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/o8ooqA1.png" group-title="",Tiny House Nation (720p) [Offline] +https://aenetworks-tinyhousenation-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Offline] +https://toon-goggles.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://venntv-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (720p) [Offline] +https://waypointtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAbsoluteReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oOFjyYf.png" group-title="Entertainment",We TV Absolute Reality (720p) [Offline] +https://amc-absolutereality-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAllWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d61oA0y.png" group-title="Entertainment",We TV All Weddings (720p) [Offline] +https://amc-allweddings-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X23p0GB.png" group-title="Weather",Weather Nation (720p) [Offline] +https://weathernationtv.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) +https://jukin-weatherspy-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] +https://whistle-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",Wipeout Xtra (720p) [Offline] +https://endemol-wipeoutxtra-1.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) [Offline] +https://world-poker-tour.samsung.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) +http://xlpore-samsungus.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (1080p) +https://yahoo-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) +https://younghollywood-rakuten-samsung.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ZooMoo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1wYnA2i.jpg" group-title="Kids",Zoo Moo (720p) [Offline] +https://rockentertainment-zoomoo-1.samsung.wurl.com/manifest/playlist.m3u8 diff --git a/channels/us_ssh101.m3u b/channels/us_ssh101.m3u new file mode 100644 index 000000000..55efb95fa --- /dev/null +++ b/channels/us_ssh101.m3u @@ -0,0 +1,58 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",ABTelevision (480p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/ABTelevision2020/index.m3u8 +#EXTINF:-1 tvg-id="AigaioTV.gr" tvg-country="GR" tvg-language="Greek" tvg-logo="https://www.cosmote.gr/portal/image/journal/article?img_id=56014248&t=1544180256224" group-title="",Aigaio TV (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/aigaiotv1/index.m3u8 +#EXTINF:-1 tvg-id="AVCHD.ar" tvg-country="AR" tvg-language="Spanish" tvg-logo="" group-title="Local",AVC HD (Monte Caseros | Corrientes) (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/AVCHD/index.m3u8 +#EXTINF:-1 tvg-id="Canal1.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://i.imgur.com/CZtUb4D.png" group-title="General",Canal 1 (432p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/LiveCH007/index.m3u8 +#EXTINF:-1 tvg-id="CanalCaracol.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol (432p) +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/LiveCH005/index.m3u8 +#EXTINF:-1 tvg-id="CanalCaracolHD2.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/8/85/CaracolTelevisi%C3%B3n2019.png" group-title="General",Canal Caracol HD2 (432p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/LiveCH008/index.m3u8 +#EXTINF:-1 tvg-id="CanalRCN.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="" group-title="General",Canal RCN (432p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/LiveCH004/index.m3u8 +#EXTINF:-1 tvg-id="ChannelB.bd" tvg-country="BD" tvg-language="Bengali" tvg-logo="" group-title="",Channel B (1080p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/channelb/index.m3u8 +#EXTINF:-1 tvg-id="CityTV.co" tvg-country="CO" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/pe_citytv_m.png" group-title="Local",City TV (Bogotà | Cundinamarca) (432p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/LiveCH006/index.m3u8 +#EXTINF:-1 tvg-id="CLTV36.ph" tvg-country="PH" tvg-language="Tagalog" tvg-logo="" group-title="",CLTV 36 (480p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/cltv36/index.m3u8 +#EXTINF:-1 tvg-id="ConectaTV.mx" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/9TGQZzk.png" group-title="Music",Conecta TV (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/Conectatvmexico/index.m3u8 +#EXTINF:-1 tvg-id="JessTV.ca" tvg-country="CA" tvg-language="English" tvg-logo="" group-title="Local",Jess TV (Lethbridge) (480p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/jesstv/index.m3u8 +#EXTINF:-1 tvg-id="KallpaTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/kallparadiotv/picture?width=320&height=320" group-title="Local",Kallpa TV (Chimbote) (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/canaltv/index.m3u8 +#EXTINF:-1 tvg-id="LatacungaTV.ec" tvg-country="EC" tvg-language="Spanish" tvg-logo="" group-title="",Latacunga TV (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/latacungatv2021/index.m3u8 +#EXTINF:-1 tvg-id="OrbitaFM.sv" tvg-country="SV" tvg-language="Spanish" tvg-logo="" group-title="",Órbita FM (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/OrbitaFM/index.m3u8 +#EXTINF:-1 tvg-id="RadioSistema.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/radiosistema/picture?width=320&height=320" group-title="Local",Radio Sistema (Ica) (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/SISTEMA/index.m3u8 +#EXTINF:-1 tvg-id="SolarTelevision.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/TELEVISIONSOLAR/picture?width=320&height=320" group-title="Local",Solar Televisión (Abancay) (360p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/televisionsolar/index.m3u8 +#EXTINF:-1 tvg-id="UchuTV.pe" tvg-country="PE" tvg-language="Spanish" tvg-logo="" group-title="",Uchu TV (Cusco) (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/Cusco/index.m3u8 +#EXTINF:-1 tvg-id="WORODT.pr" tvg-country="PR" tvg-language="Spanish" tvg-logo="https://i0.wp.com/unored.tv/wp-content/uploads/2015/08/WORO.jpg" group-title="",WORO-DT (720p) [Not 24/7] +#EXTVLCOPT:http-referrer=https://ssh101.com/ +https://tna5.bozztv.com/worodt/playlist.m3u8 diff --git a/channels/us_stirr.m3u~master b/channels/us_stirr.m3u~master new file mode 100644 index 000000000..dbfb2677b --- /dev/null +++ b/channels/us_stirr.m3u~master @@ -0,0 +1,515 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AFV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lG3OHxA.png" group-title="Comedy",AFV (720p) +https://dai.google.com/linear/hls/event/18_lZXPySFa5_GRVEbOX_A/master.m3u8 +#EXTINF:-1 tvg-id="AmericavsAddiction.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/a0e4b00e-239d-484d-9d86-2ba28295ad94-large16x9_STIRR_0721_EPG_AmericaVsAddiction_1920x1080.png" group-title="",America vs. Addiction (720p) +https://dai.google.com/linear/hls/event/-A9339ixSzydnZQZHd1u2A/master.m3u8 +#EXTINF:-1 tvg-id="beINSportsXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/beINSPORTS-XTRA_logo_dark_v3.png" group-title="Sports",beIN Sports Xtra (1080p) +https://dai.google.com/linear/hls/event/3e-9BOvHQrCI9hboMYjb6w/master.m3u8 +#EXTINF:-1 tvg-id="BigLifeTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/bjTeasa.png" group-title="Lifestyle",Big Life TV (720p) +https://biglife.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/bloomberg-television-us.png" group-title="",Bloomberg TV (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/NiumF4GTSGe-pXM-iMsP0A/master.m3u8 +#EXTINF:-1 tvg-id="BritCom.in" tvg-country="IN" tvg-language="English" tvg-logo="" group-title="",BritCom (720p) [Offline] +https://dai.google.com/linear/hls/event/IdHTuehZQPClis-gJaZkFQ/master.m3u8 +#EXTINF:-1 tvg-id="Buzzr.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/8/84/NewBUZZRLogo2021.png" group-title="Entertainment",Buzzr (1080p) +https://dai.google.com/linear/hls/event/wFZ1ufQ8ToaSdPgGtbBbpw/master.m3u8 +#EXTINF:-1 tvg-id="CBSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/kDqyJcP.jpg" group-title="News",CBSN (720p) +https://dai.google.com/linear/hls/event/Sid4xiTQTkCT1SLu6rjUSQ/master.m3u8 +#EXTINF:-1 tvg-id="KPIXTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/v1ojdQb.jpg" group-title="Local",CBSN Bay Area CA (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/VE8b4n-YStusEGv5Z2NmsQ/master.m3u8 +#EXTINF:-1 tvg-id="WBZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wEGXQ6G.jpg" group-title="Local",CBSN Boston MA (720p) +https://dai.google.com/linear/hls/event/26FJK7wRSo6RhPsK70XS_w/master.m3u8 +#EXTINF:-1 tvg-id="WBBM.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dtY6bgk.jpg" group-title="Local",CBSN Chicago IL (720p) +https://dai.google.com/linear/hls/event/DWt8iR1YQ-OJQsxczu8KfQ/master.m3u8 +#EXTINF:-1 tvg-id="KTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0pDOolW.jpg" group-title="Local",CBSN Dallas Ft Worth TX (720p) +https://dai.google.com/linear/hls/event/o5J3g4U9T16CvYnS7Qd86Q/master.m3u8 +#EXTINF:-1 tvg-id="KCNCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Y8xBN2g.jpg" group-title="Local",CBSN Denver CO (720p) +https://dai.google.com/linear/hls/event/EUo67MWSRh6toPi0heJKnQ/master.m3u8 +#EXTINF:-1 tvg-id="KCBSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RIFC1Y6.jpg" group-title="Local",CBSN Los Angeles CA (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/TxSbNMu4R5anKrjV02VOBg/master.m3u8 +#EXTINF:-1 tvg-id="WCCO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HiEBhR4.png" group-title="Local",CBSN Minnesota MN (360p) +https://dai.google.com/linear/hls/event/zcWPVCfURNSPxeidcckQLA/master.m3u8 +#EXTINF:-1 tvg-id="WLNYTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ubsNr5F.jpg" group-title="Local",CBSN New York NY (720p) +http://dai.google.com/linear/hls/event/rtcMlf4RTvOEkaudeany5w/master.m3u8 +#EXTINF:-1 tvg-id="KYWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mXWNQuT.jpg" group-title="Local",CBSN Philly PA (720p) +https://dai.google.com/linear/hls/event/Xu-ITJ2GTNGaxGn893mmWg/master.m3u8 +#EXTINF:-1 tvg-id="KDKA.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/IkDUNmq.jpg" group-title="Local",CBSN Pittsburgh PA (720p) +https://dai.google.com/linear/hls/event/i5SXVKI4QIuV-eF2XAH4FQ/master.m3u8 +#EXTINF:-1 tvg-id="CGTNEnglish.cn" tvg-country="CN" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/CGTN.svg/800px-CGTN.svg.png" group-title="News",CGTN English (432p) [Not 24/7] +https://dai.google.com/linear/hls/event/r4sa-f6GSN2XIvzKv5jVng/master.m3u8 +#EXTINF:-1 tvg-id="Charge.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Movies",Charge! (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/37eb732888614810b512fdd82604244e.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://dai.google.com/linear/hls/event/frfwucAPTVunrpitYiymwg/master.m3u8 +#EXTINF:-1 tvg-id="ChickenSoupForTheSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/1be0cbf7-1ca2-4564-b6dd-3170128b70fb-large16x9_STIRR_Logo_1021_ChickenSoupfortheSoul_1920x1080_EPG.png" group-title="Classic",Chicken Soup For The Soul (1080p) +https://dai.google.com/linear/hls/event/2C5P0JGUSj65s8KpeyIDcQ/master.m3u8 +#EXTINF:-1 tvg-id="CineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",CineLife (1080p) +https://magselect-stirr.amagi.tv/playlist1080p.m3u8 +#EXTINF:-1 tvg-id="CineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",CineLife (720p) +https://magselect-stirr.amagi.tv/playlist720p.m3u8 +#EXTINF:-1 tvg-id="Comet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/comet-us.png" group-title="Entertainment",Comet (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/3e45c6b5354a40f787e0b2aadb0f5d6a.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) +https://contv-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) +https://dai.google.com/linear/hls/event/o8Smo_gsSAm26uW9Xkww_g/master.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://image.roku.com/developer_channels/prod/9c84e0af21bfc0733a7a616a610e790d7e2ece2b7371eaebe5c7c494542f122b.png" group-title="Entertainment",CONtv (1080p) [Offline] +http://contv.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CrimeStory.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Crime Story [Offline] +https://dai.google.com/linear/hls/event/HgozmUlQQviIXFUF23mloA/master.m3u8 +#EXTINF:-1 tvg-id="Dabl.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/dabl-us.png" group-title="Lifestyle",Dabl (1080p) +http://dai.google.com/linear/hls/event/oIKcyC8QThaW4F2KeB-Tdw/master.m3u8 +#EXTINF:-1 tvg-id="DealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",Deal or No Deal (720p) [Not 24/7] +https://endemol-dealornodeal-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DickCavett.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/2/2e/Dick_Cavett_Show_logo.jpg" group-title="Classic",Dick Cavett (768p) +https://dai.google.com/linear/hls/event/-NacIpMDTZ2y1bhkJN96Vg/master.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) +https://dai.google.com/linear/hls/event/dfbBGQhPQQqypdEAjpUGlA/master.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/byIRP2QHx669BQ0BnWqbiB_bje1PkYTWmq9a-AC5PSBjG5CIwryhftF7W5Oj1cwSnto" group-title="Movies",Dust (1080p) +https://dai.google.com/linear/hls/event/xuMJ1vhQQDGjEWlxK9Qh4w/master.m3u8 +#EXTINF:-1 tvg-id="DUSTx.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9Xc7Q7S.jpg" group-title="Movies",DUSTx (720p) [Timeout] +https://dust.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="EDGEsportSTIRR.uk" tvg-country="US" tvg-language="English" tvg-logo="https://i1.wp.com/www.broadbandtvnews.com/wp-content/uploads/2019/11/EDGEsport-logo-2019.png" group-title="Sports",EDGEsport (STIRR) (1080p) [Offline] +https://dai.google.com/linear/hls/event/d4zeSI-dTuqizFrByjs3OA/master.m3u8 +#EXTINF:-1 tvg-id="ETLive.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/et-live-us.png" group-title="Entertainment",ET Live (1080p) +https://dai.google.com/linear/hls/event/xrVrJYTmTfitfXBQfeZByQ/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/filmrise-classics-us.png" group-title="Classic",FilmRise Classic TV (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/hW5jMh7dTRK1UXW5fTH07A/master.m3u8 +#EXTINF:-1 tvg-id="Futurism.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DX7wYuN.png" group-title="News",Futurism (720p) +https://dai.google.com/linear/hls/event/YakHdnr_RpyszducVuHOpQ/master.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (720p) +https://dai.google.com/linear/hls/event/ChWV1GupQOWE92uG4DvbkQ/master.m3u8 +#EXTINF:-1 tvg-id="Hallypop.kr" tvg-country="KR" tvg-language="Korean" tvg-logo="https://i.imgur.com/FCFAAJb.png" group-title="",Hallypop (1080p) [Offline] +https://dai.google.com/linear/hls/event/ctGD-E18Q0-3WScFd_tK5w/master.m3u8 +#EXTINF:-1 tvg-id="HorseShoppingChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/0cuoaxl.png" group-title="Shop",Horse Shopping Channel (720p) +https://uplynkcontent.sinclairstoryline.com/channel/26c7a77fd6ed453da6846a16ad0625d9.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (1080p) +https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 +#EXTINF:-1 tvg-id="InsightTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.wikia.nocookie.net/logopedia/images/9/99/Insight.svg/revision/latest/scale-to-width-down/250?cb=20210527145642" group-title="Sports",Insight TV (1080p) +https://dai.google.com/linear/hls/event/KAfBFcVrQgKmHhpzvkEn9A/master.m3u8 +#EXTINF:-1 tvg-id="KidsClick.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/KidsClick.png" group-title="Kids",KidsClick (720p) [Geo-blocked] +https://usgeowall.sinclairstoryline.com/channel/1698bf57810a48c486b83d542bca298d.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/3w3PsYzZQzS8lyRfi7e4mQ/master.m3u8 +#EXTINF:-1 tvg-id="LIVExLIVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OaSFTnV.png" group-title="Lifestyle",LIVExLIVE (720p) +https://dai.google.com/linear/hls/event/xC8SDBfbTKCTCa20kFJQXQ/master.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV (720p) +https://dai.google.com/linear/hls/event/5xreV3X4T9WxeIbrwOmdMA/master.m3u8 +#EXTINF:-1 tvg-id="Mobcrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KwN9Ujp.png" group-title="Outdoor",Mobcrush (720p) [Offline] +https://dai.google.com/linear/hls/event/LGDVXxxyT8SxrL4-ZodxKw/master.m3u8 +#EXTINF:-1 tvg-id="MusicBaeble.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zPs2J7w.jpg" group-title="Series",Music Baeble (1080p) [Offline] +https://dai.google.com/linear/hls/event/HuoWULBBQFKJalbtsd7qPw/master.m3u8 +#EXTINF:-1 tvg-id="NASATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/nasa-tv-globe-logo-us.png" group-title="Science",NASA TV (720p) +https://uplynkcontent.sinclairstoryline.com/channel/ddd76fdc1c0a456ba537e4f48e827d3e.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/newsy-us.png" group-title="News",Newsy (1080p) [Offline] +https://dai.google.com/linear/hls/event/0PopB0AoSiClAGrHVHBTlw/master.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/newsy-us.png" group-title="News",Newsy (720p) [Offline] +https://newsy.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) +https://dai.google.com/linear/hls/event/WB-7LjdsRVm0wVoLZjR8mA/master.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) +https://outsidetvplus-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="QelloConcerts.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopeu.samsungcloud.tv/platform/image/sourcelogo/vc/70/03/20/GBAJ4900013GC_20200923T100340.png" group-title="Music",Qello Concerts (180p) +https://dai.google.com/linear/hls/event/BakMHO8xRSmGKYeiyhsq3A/master.m3u8 +#EXTINF:-1 tvg-id="Quicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://dp6mhagng1yw3.cloudfront.net/entries/12th/5ec877f2-d86f-4253-a507-1c42083431a4.png" group-title="",Quicktake (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/6ANW1HGeSTKzJlnAa9u1AQ/master.m3u8 +#EXTINF:-1 tvg-id="RetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",RetroCrush TV (720p) +https://digitalmediarights-retrocrush-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RingofHonorWrestling.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/RingOfHonor_400x400.png?raw=true" group-title="Sports",Ring of Honor Wrestling (720p) +https://stadium-ringofhonor-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://d2ycltig8jwwee.cloudfront.net/articles/4690/detail.1dc13fd8.jpg" group-title="General",Shout! Factory TV (1080p) +https://dai.google.com/linear/hls/event/JX5KKhKKRPqchP3LfXD-1A/master.m3u8 +#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So...Real (1080p) +https://dai.google.com/linear/hls/event/VMzvtHhOQdOAzbV_hQKQbQ/master.m3u8 +#EXTINF:-1 tvg-id="SportsTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZgFhOZ8.png" group-title="Sports",Sports TV Plus (1080p) +https://dai.google.com/linear/hls/event/9FKrAqCfRvGfn3tPbVFO-g/master.m3u8 +#EXTINF:-1 tvg-id="Sportswire.us" tvg-country="US" tvg-language="English" tvg-logo="https://provider-static.plex.tv/epg/images/ott_channels/logos/usatoday_sportswire_logo_dark_v2.png" group-title="Sports",Sportswire (1080p) +https://dai.google.com/linear/hls/event/8R__yZf7SR6yMb-oTXgbEQ/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/dcf6dea4-94f1-49c2-8387-82569dde9f45-small3x1_stirr_1219_epg_singrayclassicrock_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Classic Rock (1080p) +https://stirr.ott-channels.stingray.com/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassica.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDBf/Stingray-Classica_450x450.png" group-title="Music",Stingray Classica (1080p) +https://stirr.ott-channels.stingray.com/iota-classica/index.m3u8 +#EXTINF:-1 tvg-id="StingrayDjazz.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://www.sms.cz/kategorie/televize/bmp/loga/velka/djazz.png" group-title="",Stingray Djazz (1080p) +https://dai.google.com/linear/hls/event/C-lfmhUVTGeDNWwU13_EgA/master.m3u8 +#EXTINF:-1 tvg-id="Stingraydjazz.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDFf/Stingray-DJazz_400x400.png" group-title="Music",Stingray djazz (1080p) +https://stirr.ott-channels.stingray.com/djazz/master.m3u8 +#EXTINF:-1 tvg-id="StingrayEverything80s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/90d2dbf6-a533-4cc1-b1a3-6196c40efb16-small3x1_STIRR_LOGO_0220_StingrayEverything80s_1920x1080_EPG.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Everything 80s (1080p) +https://stirr.ott-channels.stingray.com/128/master.m3u8 +#EXTINF:-1 tvg-id="StingrayFlashback70s.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/4b83571f-2374-4e84-a27b-e772b0c94c51-small3x1_stirr_1219_epg_stingrayflashback70s_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Flashback 70s (1080p) +https://stirr.ott-channels.stingray.com/115/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d35ab388-cc91-4070-876d-b5c48d989a60-small3x1_stirr_1219_epg_singrayhitlist_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Hit List (1080p) +https://stirr.ott-channels.stingray.com/107/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHolidayHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/518a9541-fade-45ec-9d64-5b0a65806270-small3x1_stirr_1219_epg_stingraygreatesthits_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",Stingray Holiday Hits (1080p) +https://stirr.ott-channels.stingray.com/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d2dac750-5e2b-4107-a037-6467fca68e93-small3x1_stirr_1219_epg_stingrayhotcountry_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",Stingray Hot Country (1080p) +https://stirr.ott-channels.stingray.com/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/49735-640x360-FFFFFF.jpg" group-title="Music",Stingray Karaoke (720p) +https://dai.google.com/linear/hls/event/5bqbG8j7T_6_qMONC1SDsg/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7XsqSSZ.png" group-title="Relax",Stingray Naturescape (1080p) +https://dai.google.com/linear/hls/event/6RPZlzksTCyB1euPqLcBZQ/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzA5ODU0MDNf/Stingray-Naturescape_450x450.png" group-title="Music",Stingray Naturescape (1080p) [Not 24/7] +https://stirr.ott-channels.stingray.com/naturescape/master.m3u8 +#EXTINF:-1 tvg-id="STIRR2020Live.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",STIRR 2020 Live (720p) [Offline] +https://dai.google.com/linear/hls/event/mMP0Ny8OTb2Ev2EvsiIlrg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRAmericanClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://americanclassics.tv/wp-content/uploads/2019/02/ac-logo-shield-2-e1550875435641-524x521.png" group-title="Classic",STIRR American Classics (480p) +https://dai.google.com/linear/hls/event/0e06oV-NTI2ygS2MRQk9ZA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBiographies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Documentary",STIRR Biographies (720p) [Offline] +https://dai.google.com/linear/hls/event/OzhtmoTQQjSNOimI6ikGCQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Black Cinema (768p) [Not 24/7] +https://dai.google.com/linear/hls/event/9WuQ_LseR12mMx2-QW41XQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRBonanza.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3385dd03-f70f-42e3-b1e6-98b8b5078a8c-small3x1_stirr_0120_epg_Bonanza_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Classic",STIRR Bonanza (720p) [Offline] +https://dai.google.com/linear/hls/event/LeVr-Z0_Q4qMDdXx7zr22w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCharge.us" tvg-country="US" tvg-language="English" tvg-logo="https://media.localbtv.com/images/atlantabtv/logos/charge.png" group-title="Entertainment",STIRR Charge! (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/e1QjWFRNSR2YFYGsPbkfgg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRChoppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.bikernet.com/docs/stories/13227/width500/choppertown-logo-600x191.jpg" group-title="Auto",STIRR Choppertown (720p) +https://dai.google.com/linear/hls/event/N3c94WZQQq2fruixzfcCUQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCinehouse.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/soWUYAlbr7JPirYYf-65YApRsk0X_OXlGZ36_0A4KnmmWf7n7PwvjxdBK6iK5LrqkCJD" group-title="Entertainment",STIRR Cinehouse (720p) +https://dai.google.com/linear/hls/event/28oUp4GcQ-u49U4_jjC4Iw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCineLife.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/TRj4zx_xl4QA3JO7DwqalxZwshmhxEzg0QzP1sT3Uv99p4izfj9S_yPZD4oVkFUxMNA" group-title="Lifestyle",STIRR CineLife (1080p) +https://dai.google.com/linear/hls/event/PFJ1Jhd6SsSMcu3qq86wzQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Lifestyle",STIRR City (720p) +https://dai.google.com/linear/hls/event/4aD5IJf0QgKUJwPbq2fngg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAbilene.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Abilene (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/uxPBn5ErTQ-FOjxIYle2PA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAlbany.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Albany (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/fD3VBzTxRXGz-v7HV0vryQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAlbany.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Albany (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/LT14Y2LdQSWx9OQCmgVfuA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAmarillo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Amarillo (720p) +https://dai.google.com/linear/hls/event/qvOGhZEeQh-s6TMFz7dVcg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityAustin.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Austin (720p) +https://dai.google.com/linear/hls/event/zDh7VBx8S7Sog5vzcXuehg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBakersfield.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Bakersfield (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/-4GLQIcZTUWzP8vDAXNQsQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBaltimore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Baltimore (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/jCNW8TtPRe6lnJMMVBZWVA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBayCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Bay City (720p) +https://dai.google.com/linear/hls/event/kJPGlFKuS0itUoW7TfuDYQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBeaumont.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Beaumont (720p) +https://dai.google.com/linear/hls/event/FKoa3RaEQxyyrf8PfPbgkg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBeaumontPortArthur.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Beaumont Port Arthur (720p) +https://dai.google.com/linear/hls/event/tlvrrqidRaG0KbLN4Hd5mg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBirmingham.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Birmingham (720p) +https://dai.google.com/linear/hls/event/4RH6FntvSLOIv5FB-p4I8w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityBoise.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Boise (720p) +https://dai.google.com/linear/hls/event/EXltT2IOQvCIn8v23_15ow/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCadillac.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cadillac (720p) +https://dai.google.com/linear/hls/event/do9arGJBTD--KARQ056kpw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCedarRapids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cedar Rapids (720p) +https://dai.google.com/linear/hls/event/zPJC-rOUTg28uymLdmYw5w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChampaign.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Champaign (720p) +https://dai.google.com/linear/hls/event/YLDvM8DGQyqsYnDsgxOBPQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCharleston.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Charleston (720p) +https://dai.google.com/linear/hls/event/kMNMCCQsQYyyk2n2h_4cNw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCharlestonHuntington.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Charleston Huntington (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/fLqJePs_QR-FRTttC8fMIA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChattanooga.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Chattanooga (720p) +https://dai.google.com/linear/hls/event/7_v7qMjnQWGZShy2eOvR5g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityChicoRedding.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Chico-Redding (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/sHnor7AERX60rGA1kR_wPA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityCincinnati.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Cincinnati (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/ZaLvGYKiTfuSYgJuBZD67Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbia (720p) +https://dai.google.com/linear/hls/event/btXotLiMRvmsa5J5AetBGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbia (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/nkNBP1eHT_GQwS7oYq23zw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbus #1 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/wV5ExXM9RxabBzbWnVv9RA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityColumbus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Columbus #2 (720p) +https://dai.google.com/linear/hls/event/QLfrYVtERpCnzM7qE_PkUw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityDayton.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Dayton (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/nqvIiznDQO60CBNaJ5mmdQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityElPaso1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City El Paso #1 (720p) +https://dai.google.com/linear/hls/event/MYhAOCTqQA6QFBdc1xwULQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityElPaso2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City El Paso #2 (720p) +https://dai.google.com/linear/hls/event/Exp7zxEPSLWuEhMoD2voOg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Eugene Springfield #1 (720p) +https://dai.google.com/linear/hls/event/Ep4QBzH-TKW0iLhPVGuCvA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityEugeneSpringfield2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Eugene Springfield #2 (720p) +https://dai.google.com/linear/hls/event/bERQw8-YRoK3MtJ0UUaI5w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityFlorence.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Florence (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/6Ll-qQyAQlWgCt4PhH11Kw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityFresnoVisalia.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Fresno-Visalia (720p) +https://dai.google.com/linear/hls/event/tFAJ7xPcTYaLKwIfUA-JIw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGainesville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Gainesville (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Ybz6nJKqSS2fcQYflsmpRw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGrandRapids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Grand Rapids (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/leOKmL9fQ6eZyhdoROSh5Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenBay.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Green Bay (720p) +https://dai.google.com/linear/hls/event/a6lsWNYDQwyM9fjytUCrcw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenvilleAsheville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Greenville Asheville (720p) +https://dai.google.com/linear/hls/event/trvuY4TqQCmrAKFTlr6tPQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityGreenvilleNewBern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Greenville New Bern (720p) +https://dai.google.com/linear/hls/event/B6RsXGIZSVqeVZGZIEZESg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityHarrisburg.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Harrisburg (720p) +https://dai.google.com/linear/hls/event/W_NyV_9eQ-qa0XDSMfYkEg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityHastings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Hastings (720p) +https://dai.google.com/linear/hls/event/xtKyBDIFSZa6cT4Of9yaGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityJohnstownAltoona.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Johnstown Altoona (720p) +https://dai.google.com/linear/hls/event/BXZlH0kXTeGczlQ49-0QFQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLasVegas.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Las Vegas (720p) +https://dai.google.com/linear/hls/event/yDGZP35hTsqdf2rwaP1BGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLewiston.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Lewiston (720p) +https://dai.google.com/linear/hls/event/knBsxnquSYqFXTP_UzcGgw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLittleRock.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Little Rock (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/MqeaRgFBR2WJ_40ngbDruQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLosAngeles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Los Angeles (720p) +https://dai.google.com/linear/hls/event/n3PVAFmPTJSVYjdSVf7XZw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityLynchburgRoanoke.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Lynchburg Roanoke (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Fwm4J95UQi67l2FEV7N5kQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMacon.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Macon (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/PPMxI7GZSRG6Kgkp2gSF1g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMedford.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Medford (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/1g9qH9IOSIGGwAqw8fPzmw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMilwaukee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Milwaukee (720p) +https://dai.google.com/linear/hls/event/jWaxnXHPQjGX1yTxuFxpuw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMinneapolis.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Minneapolis (720p) +https://dai.google.com/linear/hls/event/0P8RZiJkSBWfVDtjy-IiIQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityMissoula.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Missoula (720p) +https://dai.google.com/linear/hls/event/ARX9M-X8RieADdAEYPXNuA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityNashville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Nashville (720p) +https://dai.google.com/linear/hls/event/IG9ThaPaTwCojeoEWVNZRQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityNorfolkPortsmouth.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Norfolk Portsmouth (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/QuSOUXM4RPaC5zL4J8ZY3w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityOklahomaCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Oklahoma City (720p) +https://dai.google.com/linear/hls/event/pRd-k6tZSiCRsw_f51Vcvg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityOttumwa.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Ottumwa (720p) +https://dai.google.com/linear/hls/event/jH-4z3EkQO-fLYYgjX7d3g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPensacola.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Pensacola (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/CAU96LSyR_e7MSeK6UTmGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPittsburgh.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Pittsburgh (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/qJU_NkxXQoCbACvG5BWrXQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPortland.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Portland (720p) +https://dai.google.com/linear/hls/event/npdISdLWSIa1E_j7NCUDBg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityPortland.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Portland (720p) +https://dai.google.com/linear/hls/event/OaqAqJ0yQPiEIUIYqD7IGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityProvidence.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Providence (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/5hLTCUyrQcS3B-NF8fNp-g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityQuincy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Quincy (720p) +https://dai.google.com/linear/hls/event/bjWdbDzwTMOMd8Wmxl4rwg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityRaleighDurham.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Raleigh Durham (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/86JIujPNRWiVvtfzksp8QQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityReno.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Reno (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/0Zb5SSQcTme6P7FYwwAwcQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityRochester.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Rochester (720p) +https://dai.google.com/linear/hls/event/FftwN8CLTnaX1pFHztXlYw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySaltLakeCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Salt Lake City (720p) +https://dai.google.com/linear/hls/event/1bMiswhQQxqH-X8D3qbmKQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySanAntonio.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City San Antonio (720p) +https://dai.google.com/linear/hls/event/TIQuLmldSj2SqS8y2ud9Xg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySeattle.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Seattle (720p) +https://dai.google.com/linear/hls/event/VLEduzwwQfGSwV4eNdkj0g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySiouxCity.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Sioux City (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/0Uj4AmiOSw6oTX9ilyV2rQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySouthBend.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City South Bend (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/VGpvNIxIQRO7PXYRy7P0qw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySpringfield2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Springfield #2 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/IaAlq3prS8Ghiq0FhLtzGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityStLouis.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City St. Louis (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/O5W1HC47QEKGc5tyscvsLw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCitySyracuse.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Syracuse (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/HSX_ZpxDQNy5aXzJHjhGGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityToledo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Toledo (720p) +https://dai.google.com/linear/hls/event/1QSZA8OjS1y2Q64uTl5vWQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityTriCities.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Tri-Cities (720p) +https://dai.google.com/linear/hls/event/KPOafkGTRle7jOcRb9_KFw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityTulsa.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Tulsa (720p) +https://dai.google.com/linear/hls/event/5kbHZRGGS--RHp41xaUJHQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWashingtonDC.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Washington D.C. (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/_VmeKujXTf-nc9Lr2NO6tA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWestPalmBeach.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City West Palm Beach (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/ji4LMCwtRCOw3TrRUKlQMQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWheelingSteubenville.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Wheeling Steubenville (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/dcaYfE2nRnqC6eAvCFWfzQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityWilkesBarreScranton.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Wilkes Barre Scranton (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/jlf2tRLPTg2xjMtKe5ey-w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityYakimaPasco1.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Yakima Pasco #1 (720p) +https://dai.google.com/linear/hls/event/Ae0L5AucTcqefaIvaS504A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCityYakimaPasco2.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR City Yakima Pasco #2 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/FJejnzFjSFGpaogi0GzPyw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/16c18b31-36d6-4099-8b05-3d6c487fc7ef-large16x9_STIRR_0821_STIRRClassicTV_1920x1080_EPG.png" group-title="Classic",STIRR Classic TV (480p) +https://dai.google.com/linear/hls/event/8JiQCLfVQw6d7uCYt0qDJg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRClassica.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d5dd6f15-1fc2-46d0-b45e-57f4c5c897c6-small3x1_EPGLogoSTIRR_Logo_0420_Classica_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Lifestyle",STIRR Classica (1080p) +https://dai.google.com/linear/hls/event/AaFxJXOhQl-BsTVC9OCunQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComedy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Comedy",STIRR Comedy (720p) [Offline] +https://dai.google.com/linear/hls/event/dGP9Z-PNRPCgGQSDEzxqYg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",STIRR Comedy Dynamics (1080p) +https://dai.google.com/linear/hls/event/NJK_yxrcTBqULaHt-wi0Wg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRComet.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/comet-us.png" group-title="Entertainment",STIRR Comet (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/83L2OqtGSZ6lbWt8ODomWg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCooks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Cooking",STIRR Cooks (720p) [Offline] +https://dai.google.com/linear/hls/event/CHaUZsCfSyS2CVF7I-NktA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRCOVID19News.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",STIRR COVID-19 News (720p) [Offline] +https://dai.google.com/linear/hls/event/08ADpEIeQ8iZOjusLsZbCg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRDealorNoDeal.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SXWX2Wf.png" group-title="Series",STIRR Deal or No Deal (360p) [Not 24/7] +https://dai.google.com/linear/hls/event/9cq79TtPR6WbyaQGeDlHjA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRDocurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",STIRR Docurama (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/Hx_PEMEsSzOCcZgy0Tq2YQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/6e9b5b43-d409-47a5-a13a-fdba785d466b-small3x1_STIRR_Logo_0320_ElectricNOW_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR Electric Now (1080p) [Not 24/7] +https://dai.google.com/linear/hls/event/KsvJAc81Qoewj6opYso6Fw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRESR24x7eSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3e896322-56cd-4017-81aa-84d8962455fb-small3x1_STIRR_Logo_0320_ESR24x7eSportsChannel_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR ESR 24x7 eSports Network (720p) [Offline] +https://dai.google.com/linear/hls/event/7-91LhuBQNONHzAbrFQr-Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRevrgrn.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/84a96620-2c59-4a44-bfed-bdec3fdf7451-small3x1_STIRR_Logo_0520_EVRGRN_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Entertainment",STIRR evrgrn (1080p) +https://dai.google.com/linear/hls/event/TDUiZE57Q3-CS7Its4kLDQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.pngitem.com/pimgs/m/7-73309_failarmy-logo-hd-png-download.png" group-title="Comedy",STIRR FailArmy (720p) +https://dai.google.com/linear/hls/event/7tuuoX1wSsCTaki1HqJFYw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/152a4f21-0f03-4d21-b72a-76f4c35913d7-large16x9_STIRR_0821_STIRRFamily_1920x1080_EPG.png" group-title="Classic",STIRR Family (720p) +https://playoutengine.sinclairstoryline.com/playout/242b1153-0129-484e-8ec8-378edd691537.m3u8 +#EXTINF:-1 tvg-id="STIRRFilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",STIRR FilmRise Free Movies (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/Va1QEor0SWO_x_SQNyaF0w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRFit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Lifestyle",STIRR Fit (720p) [Offline] +https://dai.google.com/linear/hls/event/ZidoyK28TXyMRTZU7rFuEQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRForensicsFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3e64aff5-e709-4ced-8452-d67728e54718-small3x1_stirr_1219_epg_forensicfiles_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Documentary",STIRR Forensics Files (720p) [Offline] +https://dai.google.com/linear/hls/event/fJj7BuL_Tv2KjCnNAmLK8g/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",STIRR Gravitas Movies (720p) +https://dai.google.com/linear/hls/event/EpqgwRlpQKq73ySVSohJWA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",STIRR Gravitas Movies (720p) +https://gravitas-movies.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRGreatestAmericanHero.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/885a4fe2-5dce-4193-8c9b-e72c9b16ae4d-small3x1_stirr_1219_epg_thegreatestamericanhero_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Greatest American Hero (720p) [Offline] +https://dai.google.com/linear/hls/event/zaW9PVeXQeamNt6SZ9FsOg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRGustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gustotv.com/wp-content/uploads/2020/04/gustotv-logo.svg" group-title="Cooking",STIRR Gusto TV (1080p) +https://dai.google.com/linear/hls/event/tdSCy5u2R5WtCLXX4NwDtg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/e9486527-1ffc-4031-8b91-c954076365f8-small3x1_stirr_1219_epg_hellskitchen_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Cooking",STIRR Hell's Kitchen (720p) [Offline] +https://dai.google.com/linear/hls/event/SynaOtTyTq2y_N7BrGTz9Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHorrorMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://cloutcom.co.uk/wp-content/uploads/2017/12/horrorchannelonairlogo.jpg" group-title="Movies",STIRR Horror Movies (234p) +https://dai.google.com/linear/hls/event/3NTKKQBuQtaIrcUBj20lyg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHSN.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/hsn-us.png" group-title="Shop",STIRR HSN (720p) +https://dai.google.com/linear/hls/event/akursTHNTo6qGf1TtlHNsw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRHunter.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/11ca088b-4ef8-41a8-bdfd-8fc62dd4682a-small3x1_stirr_1219_epg_hunter_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Series",STIRR Hunter (720p) [Offline] +https://dai.google.com/linear/hls/event/Z-kHpGoATwyuxIuQEY_3fw/master.m3u8 +#EXTINF:-1 tvg-id="ItsShowtimeAtTheApollo.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvseriesfinale.com/wp-content/uploads/2018/01/showtime-at-the-apollo.png" group-title="Entertainment",STIRR It's Showtime at the Apollo (480p) +https://dai.google.com/linear/hls/event/fAFfTnCAT2K8d83sYsA-cw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRKitchenNightmares.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d3fa0a6c-3f76-46e0-b4d6-5039ee16f5a3-small3x1_stirr_1219_epg_kitchennightmares_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Cooking",STIRR Kitchen Nightmares (720p) [Offline] +https://dai.google.com/linear/hls/event/23QIslh0TOqygKz-M9W29Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMadeinHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/30a2f367-97f1-49e2-b9a7-0ae1a859e917-small3x1_STIRR_Logo_0320_MadeInHollywood_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Movies",STIRR Made in Hollywood (720p) [Offline] +https://dai.google.com/linear/hls/event/Mteif75-SJeFi19Sk3-dGQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/46087-294x165-FFFFFF.jpg" group-title="Sports",STIRR MavTV (720p) +https://dai.google.com/linear/hls/event/YoBM0ae5Q62TPdrfFHS4RQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.tikilive.com/public/files/shows/116/116511/46087-294x165-FFFFFF.jpg" group-title="Sports",STIRR MavTV (720p) +https://mavtv-1.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRMidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://tvpmlogopus.samsungcloud.tv/platform/image/sourcelogo/vc/70/01/01/USAJ3000011S4_20210525T051716.png" group-title="Entertainment",STIRR Midnight Pulp (720p) +https://dai.google.com/linear/hls/event/1fO2zbpBRyy6S5yve_fnaw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMovieMix.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qcgXbuC.png" group-title="Movies",STIRR MovieMix (720p) [Offline] +https://dai.google.com/linear/hls/event/TSIJo6RCRZWuCD9WrKtRFg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Movies (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/f-zA7b21Squ7M1_sabGfjA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMusic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Music",STIRR Music (720p) [Offline] +https://dai.google.com/linear/hls/event/_e1csFnJR6W6y056PyiG6A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRMysteryScienceTheater3000.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/en/f/fc/MST3K-logo.png" group-title="Movies",STIRR Mystery Science Theater 3000 (1080p) +https://dai.google.com/linear/hls/event/rmBGeSwhQEG64TrT0_JO2A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRNational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7JgPJxx.png" group-title="Local",STIRR National (720p) +https://dai.google.com/linear/hls/event/-V3XSvA2Sa6e8h7cnHXB8w/master.m3u8 +#EXTINF:-1 tvg-id="StirrNews247.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="News",Stirr News 24/7 (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/8hUeiLMpTm-YNqk7kadUwA/master.m3u8 +#EXTINF:-1 tvg-id="STIRROutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",STIRR Outside TV (720p) +https://dai.google.com/linear/hls/event/HJAq3zH1SUy_B6fb1j80_Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPD.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/ba560e85-9b04-4fd4-bdca-f02d44b8b905-large16x9_STIRR_0821_STIRRPD_1920x1080_EPG.png" group-title="Entertainment",STIRR P.D. (540p) +https://dai.google.com/linear/hls/event/dKG_ZFd_S82FPgNxHmhdJw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/Tapiosinn/tv-logos/master/countries/united-states/people-tv-us.png" group-title="Entertainment",STIRR People TV (1080p) +https://dai.google.com/linear/hls/event/Fe9LYYCFR5Csif-I5dyMHg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPopstarTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mWrqBaS.png" group-title="Lifestyle",STIRR Popstar! TV (1080p) +https://dai.google.com/linear/hls/event/cJFuxTLzQUqbGGrqTMBJuw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRPursuitUp.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/cff7dcd8-15db-40ae-bfd7-72589c1e404c-small3x1_STIRR_Logo_0420_PursuitChannel_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR PursuitUp (720p) +https://dai.google.com/linear/hls/event/NpkpFaFVRqaQwSkpPdramg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRQVC.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/QVC.svg/221px-QVC.svg.png" group-title="Shop",STIRR QVC (720p) +https://dai.google.com/linear/hls/event/roEbn_l7Tzezwy22F1NSfA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRealPeople.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/61d8a775-ee54-406e-ab70-828eff54bad8-small3x1_stirr_0120_epg_RealPeople_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Real People (720p) [Offline] +https://dai.google.com/linear/hls/event/RoiVzG-4TJiJMSVUatDd4A/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRealityTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/d6a14044-e796-423d-9221-f426907ce7c3-large16x9_STIRR_0821_STIRRRealityTV_1920x1080_EPG.png" group-title="",STIRR Reality TV (720p) +https://dai.google.com/linear/hls/event/r9VoxPU7TYmpydEn2ZR0jA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRetroCrush.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkzNDRf/RetroCrush_576x576.png" group-title="",STIRR RetroCrush TV (720p) +https://dai.google.com/linear/hls/event/7LAMGFcmQN6iFJjNoHWXrg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRevry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",STIRR Revry (720p) [Offline] +https://dai.google.com/linear/hls/event/gvO6-Y6TTjCxRf1QALU4VQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRRingofHonor.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/154876f2-ed78-4a1e-959d-96aab12af9cd-small3x1_STIRR_Logo_0720_ROHBestofthePlanet_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Ring of Honor (720p) +https://dai.google.com/linear/hls/event/RNiQYO3aTjOqTe8od1zlqA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSilkStalkings.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/f391754b-a2f8-4c0e-bdf9-7c40ffe92655-small3x1_stirr_1219_epg_silkstalkings_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Silk Stalkings (720p) [Offline] +https://dai.google.com/linear/hls/event/8ZYru1fgSY6JL1Ejb6T5Ag/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSOAR.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/2b6ed67f-5284-4622-8594-a956633c8383-small3x1_stirr_1219_epg_soartv_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR SOAR (720p) [Not 24/7] +https://dai.google.com/linear/hls/event/_PDxBUttQYqkxPnmh3VOZA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSpace1999.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/b/b3/Cosmos_1999.jpg" group-title="",STIRR Space:1999 (720p) +https://dai.google.com/linear/hls/event/NeKNJHuzSeCiN_7Fcuo83Q/master.m3u8 +#EXTINF:-1 tvg-id="STIRRSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Sports",STIRR Sports (720p) [Offline] +https://dai.google.com/linear/hls/event/1B2yihdIR1mCL63rXzERag/master.m3u8 +#EXTINF:-1 tvg-id="STIRRStadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",STIRR Stadium (720p) +http://stadium.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRStadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",STIRR Stadium (720p) +https://dai.google.com/linear/hls/event/0jRU1DBXSW6a_TFheLfAUQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRStarMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcT2kTZnEQilym8ptRCEoFwFHsTvp0m_y-VOdvWZSFErs4Nyke_m&usqp=CAU" group-title="",STIRR Star Movies (720p) [Offline] +https://sonar.sinclair.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayPopAdult.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/f7fe1378-d4a8-434e-8c1a-d7e001560404-small3x1_stirr_1219_epg_stingraypopadult_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Music",STIRR Stingray Pop Adult (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/104.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayRockAlternative.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ff902b0a-f978-495d-8b37-171eb5fee8a4-small3x1_STIRR_Logo_0720_Alternative_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Rock Alternative (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/102.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayTodaysLatinPop.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/b1d83dd9-b335-4871-89a1-b92cf2651b65-small3x1_STIRR_Logo_0720_StingrayLatinPop_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Today's Latin Pop (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/190.m3u8 +#EXTINF:-1 tvg-id="STIRRStingrayUrbanBeats.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/d2056e60-df7d-4fac-8533-19503d5af78e-small3x1_STIRR_Logo_0720_HipHopRB_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Music",STIRR Stingray Urban Beats (1080p) +https://ott-linear-channels.stingray.com/hls/stirr/133.m3u8 +#EXTINF:-1 tvg-id="STIRRTennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",STIRR Tennis Channel (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f.m3u8 +#EXTINF:-1 tvg-id="STIRRTheAdventuresofSherlockHolmes.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/8f0ba0f2-e3aa-45ca-bc7c-26d2e4cc79d9-small3x1_stirr_0120_epg_Sherlock_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR The Adventures of Sherlock Holmes (720p) [Offline] +https://dai.google.com/linear/hls/event/fMcxjP7ORACGFsBvi7ZhAg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/2cffbaf0-2d4e-4d65-80c3-92940634bc34-large16x9_STIRR_Logo_1221_TheArchive_1920x1080_EPG.png" group-title="Classic",STIRR The Archive (486p) +https://dai.google.com/linear/hls/event/MdbYPXWRStmMq1DaQhsBUw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",STIRR The Asylum (1080p) [Offline] +https://dai.google.com/linear/hls/event/2r7F3DThT-C5YW21CUuGLQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i0.wp.com/experience.bobross.com/wp-content/uploads/2019/04/cropped-bob-ross-signature-1.png" group-title="Culture",STIRR The Bob Ross Channel (1080p) +https://dai.google.com/linear/hls/event/3dbJrQmVT_-psb-KBYuKQA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheCommish.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/3a139329-7cdd-40f7-85fa-35d3b68853ca-small3x1_stirr_1219_epg_thecommish_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="Series",STIRR The Commish (720p) [Offline] +https://dai.google.com/linear/hls/event/zfyiHhG0TeuoNist_WUwjg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",STIRR The First (1080p) +https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheLoneRanger.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/37204910-429a-4e1a-8c8d-eeb697ae5c62-small3x1_stirr_0120_epg_TheLoneRanger_1920x1080_v3.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Classic",STIRR The Lone Ranger (720p) [Offline] +https://dai.google.com/linear/hls/event/dRKvXuioSv-e5T65yR_7Ow/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTheLucyShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/dbd51b97-8863-49a7-b6cf-f092f4676cf4-small3x1_stirr_0120_epg_TheLucyShow_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="Classic",STIRR The Lucy Show (720p) [Offline] +https://dai.google.com/linear/hls/event/-s-FtbzrQCaLMDSyM0ejyw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Travel",STIRR Travel (720p) [Offline] +https://dai.google.com/linear/hls/event/0ZXyCbn9TYmrrAzcDfoU1w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTruly.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ed531a2a-04cd-4845-a419-cc46ed05333b-small3x1_STIRR_Logo_0320_Truly_1920x1080_EPG.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Truly (720p) [Offline] +https://dai.google.com/linear/hls/event/Xu-I6qGiSTKeu6glzS4BtQ/master.m3u8 +#EXTINF:-1 tvg-id="STIRRTVMix.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",STIRR TV Mix (720p) +https://dai.google.com/linear/hls/event/ZP8ZMv95Q0Gm9EiyYOGHAA/master.m3u8 +#EXTINF:-1 tvg-id="STIRRUnsolvedMysteries.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/5cf60259-ce44-452f-a8a1-cb33585ea701-small3x1_stirr_1219_epg_unsolvedmysteries_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Unsolved Mysteries (720p) [Offline] +https://dai.google.com/linear/hls/event/iLjE1UKtRCiSNkFatA65bg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAfy1us.png" group-title="Movies",STIRR Westerns (864p) +https://dai.google.com/linear/hls/event/YF2jfXh_QROPxoHEwp1Abw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWhistleSportsTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",STIRR Whistle Sports (1080p) +https://dai.google.com/linear/hls/event/Wu11mwhnTKGNhwZimEK6Jg/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWhoseLineIsItAnyway.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/ed57e0b9-7f78-4203-a1d9-b0f542ca856a-small3x1_stirr_1219_epg_whoselineisitanyway_1920x1080.png?cb=eccbc87e4b5ce2fe28308fd9f2a7baf3" group-title="",STIRR Whose Line Is It Anyway (720p) [Offline] +https://dai.google.com/linear/hls/event/SYob3ZZfTwyVW7LILC9ckw/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWipeoutXtra.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/WipeoutXtra_190x190.png?raw=true" group-title="Series",STIRR Wipeout Xtra (720p) +https://dai.google.com/linear/hls/event/0DG8p66IRES7ZzEe1WJS-w/master.m3u8 +#EXTINF:-1 tvg-id="STIRRWiseguy.us" tvg-country="US" tvg-language="English" tvg-logo="https://komonews.com/resources/media2/3x1/full/119/center/90/5e3b98cb-3de9-4bb2-b775-e487f3a117ca-small3x1_stirr_1219_epg_wiseguy_1920x1080.png?cb=c81e728d9d4c2f636f067f89cc14862c" group-title="",STIRR Wiseguy (720p) [Offline] +https://dai.google.com/linear/hls/event/kv03O_9RS8-uRahEGtDcjA/master.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/g.m3u8 +#EXTINF:-1 tvg-id="TennisChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel (504p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/9f87522c-5a0e-4ff4-b82c-d5564216132f/f.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 1 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 2 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f.m3u8 +#EXTINF:-1 tvg-id="TennisChannelPlus2.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",Tennis Channel+ 2 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/e1838c44-dcb6-47b5-93d4-a0547833518f/g.m3u8 +#EXTINF:-1 tvg-id="TheAsylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/1pxXEtP.png" group-title="Series",The Asylum (1080p) +http://asylum-stirr.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCountryNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-uspx.mybtv.net/logos/TCN.png" group-title="Music",The Country Network (1080p) +https://dai.google.com/linear/hls/event/3EEsfZhASryigfuSpHdfKg/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) +https://dai.google.com/linear/hls/event/OYH9J7rZSK2fabKXWAYcfA/master.m3u8 +#EXTINF:-1 tvg-id="TheFilmDetective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7NV3X1.png" group-title="Movies",The Film Detective (720p) +https://filmdetective-stirr.amagi.tv/index.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/The_First_TV_logo.png/240px-The_First_TV_logo.png" group-title="Entertainment",The First (1080p) +https://dai.google.com/linear/hls/event/nX39-giHRPuKQiVAhua0Kg/master.m3u8 +#EXTINF:-1 tvg-id="TheTimConwayShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://3gz8cg829c.execute-api.us-west-2.amazonaws.com/prod/image-renderer/16x9/full/600/center/90/a3e52443-2f72-4097-8ea8-3a325119b67d-large16x9_STIRR_0821_TimConway_1920x1080_EPG.png" group-title="Classic",The Tim Conway Show (768p) +https://dai.google.com/linear/hls/event/v51OvZmXQOizl-KOgpXw1Q/master.m3u8 +#EXTINF:-1 tvg-id="USSPORTTennisPlus1.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/0O5uwlXTVx_j5bG-D6CKE0pXASiTj5CQ2maDRTKJUseFmaj3RNEnKbRCFUuxjFHO03s" group-title="Sports",US SPORT Tennis Plus 1 (720p) [Geo-blocked] +https://playoutengine.sinclairstoryline.com/playout/f2f8b269-dd85-4434-bdd3-b3a64ca9cd60/g.m3u8 +#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.freelogovectors.net/wp-content/uploads/2020/11/usa-today-logo-768x768.png" group-title="News",USA Today (1080p) +https://dai.google.com/linear/hls/event/gJJhuFTCRo-HAHYsffb3Xg/master.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://dai.google.com/linear/hls/event/gJpQRkqiS8SHzAbPlGNRQw/master.m3u8 +#EXTINF:-1 tvg-id="WaypointTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6r2YHtv.png" group-title="Outdoor",Waypoint TV (1080p) +https://dai.google.com/linear/hls/event/im0MqOKRTHy9nVa1sirQSg/master.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://play-lh.googleusercontent.com/w20848MGTYlY94nRRP8komTiHfh1SqTab4AA2VJuNQ2jQtBJpoohn96pYdV5sC-oZRo" group-title="Weather",WeatherSpy (720p) +https://dai.google.com/linear/hls/event/vZB78SsNSXWOR63VJrNC2Q/master.m3u8 diff --git a/channels/us_tcl.m3u b/channels/us_tcl.m3u new file mode 100644 index 000000000..a7c0d5c53 --- /dev/null +++ b/channels/us_tcl.m3u @@ -0,0 +1,29 @@ +#EXTM3U +#EXTINF:-1 tvg-id="BloodyDisgusting.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602dd011302f4d7da05d4bf3" group-title="Movies",Bloody Disgusting (1080p) +https://bloodydisgusting-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) +https://comedydynamics-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) +https://contv-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://contvanime-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) +https://docurama-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) +https://dovenow-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) +https://introuble-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (1080p) +https://inwonder-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) +https://vidaprimo-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) +https://mytime-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SoReal.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE2MDdf/SoReal_240x240.png" group-title="Lifestyle",So... Real (1080p) +https://soreal-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Unbeaten.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LmkNt3v.png" group-title="Sports",Unbeaten (1080p) +https://unbeaten-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (1080p) [Offline] +https://whistlesports-tcl.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) +https://younghollywood-tcl.amagi.tv/playlist.m3u8 diff --git a/channels/us_tubi.m3u~master b/channels/us_tubi.m3u~master new file mode 100644 index 000000000..913665cc9 --- /dev/null +++ b/channels/us_tubi.m3u~master @@ -0,0 +1,129 @@ +#EXTM3U +#EXTINF:-1 tvg-id="WTAETV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4iEFQjd.png" group-title="",ABC 4 Pittsburg PA (WTAE) (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WTAE.m3u8 +#EXTINF:-1 tvg-id="WEWSTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606e0f9a9739652ec518e8c1" group-title="Local",ABC 5 Cleveland OH (WEWS-TV) (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WEWS.m3u8 +#EXTINF:-1 tvg-id="KOCOTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yxEbZqn.jpg" group-title="",ABC 5 Oklahoma City OK (KOCO) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-KOCO.m3u8 +#EXTINF:-1 tvg-id="WXYZTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8sQ5mfL.png" group-title="Local",ABC 7 Detroit MI (WXYZ-TV) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXYZ.m3u8 +#EXTINF:-1 tvg-id="KETVTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BuO1yHQ.png" group-title="",ABC 7 Omaha NE (KETV) (576p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KETV.m3u8 +#EXTINF:-1 tvg-id="KMBCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DCBHkiP.jpg" group-title="News",ABC 9 Kansas City MO (KMBC-TV) (216p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KMBC.m3u8 +#EXTINF:-1 tvg-id="WMURTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6oNx5F0.png" group-title="Local",ABC 9 Manchester NH (WMUR-TV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WMUR.m3u8 +#EXTINF:-1 tvg-id="AnAmericanChristmasCarol.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Christmas_715x715.png?raw=true" group-title="Movies",An American Christmas Carol (720p) +https://cloudfront.tubi.video/5b97b1f5-a605-44a5-a192-12e10beece40/sd846jzc/stream.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (720p) +https://lnc-black-news.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="BloombergQuicktake.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.adweek.com/wp-content/uploads/2019/12/quicktake-bloomberg-tictoc-CONTENT-2019-640x360.jpg" group-title="General",Bloomberg Quicktake (720p) [Offline] +https://csm-e-eb.csm.tubi.video/csm/live/283326845.m3u8 +#EXTINF:-1 tvg-id="CBCNewsHighlights.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQ0OTQ3NTlf/Tubi_LiveNews_840x840.png" group-title="News",CBC News Highlights (720p) +https://csm-e-eb.csm.tubi.video/csm/live/243017997.m3u8 +#EXTINF:-1 tvg-id="EstrellaNews.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/f4Bec0i.png" group-title="News",Estrella News (720p) +https://csm-e-eb.csm.tubi.video/csm/live/247083838.m3u8 +#EXTINF:-1 tvg-id="WJBK.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/EL9Bwtf.png" group-title="News",FOX 2 Detroit MI (WJBK) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WJBK-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KTVUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/18isSVd.png" group-title="News",FOX 2 San Francisco CA (KTVU) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTVU-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KDFWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/gjIKpMJ.png" group-title="News",FOX 4 Dallas / Fort Worth TX (KDFW) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KDFW-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WAGATV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/DcZoeGw.jpg" group-title="News",FOX 5 Atlanta GA (WAGA-TV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WAGA-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WNYWTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OfGcsUO.png" group-title="Local",FOX 5 New York NY (WNYW) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WNYW-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WTTGTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ktLKla7.png" group-title="Local",FOX 5 Washington DC (WTTG) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTTG-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WITITV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qmOd9Yr.jpg" group-title="Local",FOX 6 Milwaukee WI (WITI) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WITI-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KTBCTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ugLwGEY.png" group-title="News",FOX 7 Austin TX (KTBC) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTBC-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KMSPTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WBgiaiB.jpg" group-title="News",FOX 9 ST Paul Minneapolis MN (KMSP) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KMSP-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KZAS.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/TCzjchS.jpg" group-title="News",FOX 10 Phoenix AZ (KZAS) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KSAZ-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KTTVTV.us" tvg-country="US" tvg-language="English" tvg-logo="http://live-tv-channels.org/pt-data/uploads/logo/us-fox-11-los-angeles.jpg" group-title="News",FOX 11 Los Angeles CA (KTTV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KTTV-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WHBQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/E9vX12j.jpg" group-title="Local",FOX 13 Memphis TN (WHBQ-TV) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WHBQ.m3u8 +#EXTINF:-1 tvg-id="WTVTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Bvkri2L.png" group-title="Local",FOX 13 Tampa Bay FL (WTVT) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTVT-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KRIV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AZ8MWRp.jpg" group-title="News",FOX 26 Houston TX (KRIV) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KRIV-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WTXFTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fRjmk5r.png" group-title="Local",FOX 29 Philadelphia PA (WTXF-TV) (720p) [Not 24/7] +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WTXF-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WFLDTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lf5sLNn.png" group-title="Local",FOX 32 Chicago IL (WFLD) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WFLD-Monetizer.m3u8 +#EXTINF:-1 tvg-id="WOFLTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BOA8KKZ.jpg" group-title="Local",FOX 35 Orlando FL (WOFL) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-WOFL-Monetizer.m3u8 +#EXTINF:-1 tvg-id="KCPQTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/4xs5ERr.jpg" group-title="News",FOX Q13 Seattle WA (KCPQ) (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,p-KCPQ-Monetizer.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (720p) +https://lnc-fox-soul-scte.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Fox-Weather.m3u8 +#EXTINF:-1 tvg-id="FoxWeather.us" tvg-country="US" tvg-language="English" tvg-logo="https://static.foxnews.com/static/orion/styles/img/fox-weather/s/logos/fox-weather-logo-stacked-color.svg" group-title="Weather",Fox Weather (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Fox-Weather.m3u8 +#EXTINF:-1 tvg-id="KCCI.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KCCI-TV News Des Moines IA (576p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCCI.m3u8 +#EXTINF:-1 tvg-id="KCRA.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KCRA-TV News Sacramento CA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KCRA.m3u8 +#EXTINF:-1 tvg-id="KHBS.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",KHBS-TV News Fort Smith AR (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KHBS.m3u8 +#EXTINF:-1 tvg-id="KOAT.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",KOAT-TV News Albuquerque NM (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KOAT.m3u8 +#EXTINF:-1 tvg-id="KSBW.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",KSBW-TV News Salinas CA (576p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-KSBW.m3u8 +#EXTINF:-1 tvg-id="Localish.us" tvg-country="US" tvg-language="English" tvg-logo="https://media-usla.mybtv.net/logos/7.2.png" group-title="Lifestyle",Localish (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Localish.m3u8 +#EXTINF:-1 tvg-id="WLWTTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7erOEZJ.gif" group-title="News",NBC 5 Cincinnati OH (WLWT) (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLWT.m3u8 +#EXTINF:-1 tvg-id="WDSUTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cB1bxJw.jpg" group-title="News",NBC 6 New Orleans LA (WDSU) (360p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WDSU.m3u8 +#EXTINF:-1 tvg-id="News12NewYork.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c57ad92cd1774a1091752" group-title="Local",News 12 New York (1080p) +https://lnc-news12.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Newsy.m3u8 +#EXTINF:-1 tvg-id="pattrn.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f976cdcd40f5d6678647013" group-title="Weather",Pattrn (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Pattrn.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) +https://lnc-people-tv.tubi.video/index.m3u8 +#EXTINF:-1 tvg-id="RealMadridTVUS.us" tvg-country="ES" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/sco/5/56/Real_Madrid_CF.svg" group-title="Sports",Real Madrid TV US Version (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Real-Madrid.m3u8 +#EXTINF:-1 tvg-id="SantaandtheThreeBears.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Generic_Christmas_715x715.png?raw=true" group-title="Family",Santa and the Three Bears (480p) +https://cloudfront.tubi.video/21df8036-fa23-49ff-9877-8af983546d2b/elw3phlf/stream.m3u8 +#EXTINF:-1 tvg-id="TodayAD.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="General",Today All Day (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Today.m3u8 +#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",USA Today (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-USA-Today.m3u8 +#EXTINF:-1 tvg-id="VeryAlabama.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Very Alabama (720p) +https://csm-e-eb.csm.tubi.video/csm/extlive/tubiprd01,Cloudfront-WVTM.m3u8 +#EXTINF:-1 tvg-id="WAPT.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WAPT-TV News Jackson MS (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WAPT.m3u8 +#EXTINF:-1 tvg-id="WBAL.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WBAL-TV News Baltimore MD (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WBAL.m3u8 +#EXTINF:-1 tvg-id="WCVB.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WCVB-TV News Boston MA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WCVB.m3u8 +#EXTINF:-1 tvg-id="WeatherNation.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/weathernation.png" group-title="Weather",Weathernation (720p) [Geo-blocked] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-Weather-Nation.m3u8 +#EXTINF:-1 tvg-id="WESH.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WESH-TV News Orlando FL (360p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WESH.m3u8 +#EXTINF:-1 tvg-id="WGAL.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WGAL-TV News Lancaster PA (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WGAL.m3u8 +#EXTINF:-1 tvg-id="WISN.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WISN-TV News Milwaukee WI (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WISN.m3u8 +#EXTINF:-1 tvg-id="WJCL.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WJCL-TV News Savannah GA (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WJCL.m3u8 +#EXTINF:-1 tvg-id="WLKY.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/cbs.png" group-title="News",WLKY-TV News Louisville KY (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WLKY.m3u8 +#EXTINF:-1 tvg-id="WMOR.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WMOR-TV News Lakeland FL (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMOR.m3u8 +#EXTINF:-1 tvg-id="WMTW.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WMTW-TV News Portland ME (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WMTW.m3u8 +#EXTINF:-1 tvg-id="WPBF.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/abc.png" group-title="News",WPBF-TV News West Palm Beach FL (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPBF.m3u8 +#EXTINF:-1 tvg-id="WPTZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://cdn.tvpassport.com/image/station/100x100/nbc.png" group-title="News",WPTZ-TV News Plattsburgh NY (720p) +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WPTZ.m3u8 +#EXTINF:-1 tvg-id="WXII.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="News",WXII-TV News Winston-Salem NC (720p) [Not 24/7] +https://live-news-manifest.tubi.video/live-news-manifest/csm/extlive/tubiprd01,Cloudfront-WXII.m3u8 diff --git a/channels/us_vizio.m3u~master b/channels/us_vizio.m3u~master new file mode 100644 index 000000000..9b3dd7411 --- /dev/null +++ b/channels/us_vizio.m3u~master @@ -0,0 +1,187 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AMCAbsoluteReality.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Documentary",AMC Absolute Reality (1080p) [Offline] +https://amc-absolutereality-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCIFCFilmPicks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",AMC IFC Film Picks (1080p) [Offline] +https://amc-ifc-films-picks-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCPresents.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Presents (1080p) [Offline] +https://amc-amcpresents-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCRush.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Movies",AMC Rush (1080p) [Offline] +https://amc-rushbyamc-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AMCSlightlyOff.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/yngqRL8.png" group-title="Entertainment",AMC Slightly Off (1080p) [Offline] +https://amc-slightly-off-by-amc-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasVoice.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jtFBBGs.jpg" group-title="News",America's Voice (720p) +https://p1media-americasvoice-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Ameritrade.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/71CZKwin9mL.png" group-title="Business",Ameritrade (1080p) [Not 24/7] +https://tdameritrade-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="AWEEncore.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/60482f63cfbf071d6151ca95" group-title="General",AWE Encore (720p) +https://aweencore-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (720p) +https://blacknewschannel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (720p) +https://condenast-bonappetit-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BratTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lhjj94a.png" group-title="Kids",Brat TV (1080p) [Offline] +https://brat-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) [Offline] +https://cheddar-cheddar-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Choppertown.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9c5eb78083e72bec0d0522" group-title="Auto",Choppertown (1080p) [Offline] +https://oneworlddigital-choppertown-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Cinevault80s.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzI4NjIyODdf/Cinevault-80s_700x700.png" group-title="",Cinevault 80s (540p) +https://gsn-cinevault-80s-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CinevaultWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzI4NjE5OTZf?inline=1" group-title="Classic",Cinevault Westerns (540p) +https://gsn-cinevault-westerns-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://circle-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Not 24/7] +https://contv.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://contvanime-vizio-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="DarkMatterTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/DarkMatterTV_218x218.png?raw=true" group-title="Series",Dark Matter TV (720p) +https://dmtv-viziosc.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DemandAfrica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/sr5vC8z.jpg" group-title="Lifestyle",Demand Africa (720p) [Offline] +https://demandafrica-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="DocTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fGioE7e.png" group-title="Series",Doc TV (1080p) [Offline] +https://wownow-doctv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) [Offline] +https://dove-channel.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Dust.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FxYhME9.png" group-title="Movies",Dust (1080p) [Offline] +https://dust-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FailArmy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy (1080p) [Offline] +https://failarmy-linear.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Fawesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PbvhJKs.png" group-title="Entertainment",Fawesome (720p) [Offline] +https://fawesome-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FlixFling.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/p41hq1Q.png" group-title="General",FlixFling (1080p) [Offline] +https://flixfling-flixflingnow-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hc5a1YP.png" group-title="News",FOX News Now (720p) +https://fox-foxnewsnow-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxSoul.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YIamDGn.png" group-title="Culture",Fox Soul (1080p) +https://foxsoul-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (720p) [Offline] +https://funnyordie-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GameShowCentralEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/GameShowCentral_203x203.png" group-title="Entertainment",Game Show Central East (1080p) [Offline] +https://gsn-gameshowchannnel-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GiggleMug.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/hWbVgsR.jpg" group-title="Kids",Giggle Mug (720p) [Offline] +https://janson-gigglemug-1-us.vizio.wurl.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="GlewedTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/W4Bx9pG.jpg" group-title="General",Glewed TV (1080p) [Offline] +https://glewedtv-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) [Offline] +https://gravitas-movies.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="GustoTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ygVGi3s.png" group-title="Cooking",Gusto TV (720p) [Offline] +https://gustotv-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKids.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids (720p) +https://happykids-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HappyKidsJunior.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette3.wikia.nocookie.net/logosfake/images/9/90/Happy_Kids_logo_2004.png/revision/latest?cb=20140525234116" group-title="Kids",HappyKids Junior (720p) +https://happykidsjunior-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="HNCFree.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xXr4Cnq.png" group-title="",HNC Free (1080p) +https://hncfree-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Hometalk.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/J09XrLH.png" group-title="Lifestyle",Hometalk (1080p) [Offline] +https://playworksdigital-hometalk-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="iFoodTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GnmHLNB.png" group-title="Cooking",iFood.TV (720p) +https://ifood-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (1080p) +https://insighttv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InTrouble.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/gKhDcQY.png" group-title="",InTrouble (1080p) [Offline] +https://introuble-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="InWonder.nl" tvg-country="NL" tvg-language="English" tvg-logo="https://i.imgur.com/YqF4usD.png" group-title="",InWonder (1080p) [Offline] +https://inwonder-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="IonPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d449jnv.png" group-title="Family",Ion Plus (1080p) +https://ion-ion-plus-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="IonQubo.us" tvg-country="US" tvg-language="English" tvg-logo="http://vignette2.wikia.nocookie.net/logopedia/images/5/50/Qubo_logo_2012.png/revision/latest?cb=20150915211649" group-title="Kids",Ion Qubo (720p) [Offline] +https://ion-qubo-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="JohnnyCarsonTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ad014a38d8c466108e97a" group-title="Classic",Johnny Carson TV (720p) +https://johnnycarson-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="JudgeFaith.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/VMJvKbC.png" group-title="Series",Judge Faith (1080p) [Offline] +https://judge-faith-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="KidoodleTV.us" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/MaFtbM5.png" group-title="Kids",Kidoodle.TV (1080p) [Offline] +http://kidoodletv-kdtv-3.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (720p) +https://vidaprimo-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (720p) [Offline] +https://latidomusic.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="LEGOChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/xePwW13.png" group-title="Kids",LEGO Channels (720p) +https://legochannel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MagellanTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oIy673i.png" group-title="Documentary",Magellan TV (1080p) [Offline] +https://magellantv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (1080p) [Offline] +https://maverick-maverick-black-cinema-2.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MavTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.mavtv.com/assets/images/mavtv_logo.png" group-title="Sports",MavTV (1080p) [Offline] +https://mavtv-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MidnightPulp.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjQwMDkyNjVf/MidnightPulp_200x200.png" group-title="Entertainment",Midnight Pulp (1080p) [Offline] +https://midnightpulp-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MonsterMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/qwHxh55.png" group-title="Movies",Monster Movies (1080p) [Offline] +https://wownow-monstermovies-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="MysteryScienceTheater3000.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5f9ace054964ba19ff258256" group-title="Comedy",Mystery Science Theater 3000 (1080p) +https://mst3k-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="MyTimemovienetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5ODE1MzJf/MyTime_260x260.png" group-title="Movies",MyTime movie network (1080p) +https://mytime-vizio-ingest.cinedigm.com/playlist.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (1080p) +https://newsmax-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Newsy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eEqyFBX.jpg" group-title="News",Newsy (1080p) [Offline] +https://newsy-newsy-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (1080p) [Offline] +https://nosey-realnosey-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="OneAmericaNewsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/G6e7Hcl.png" group-title="News",OAN (1080p) +https://oneamericanews-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (720p) +https://outside-tv-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Pac12Insider.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/3lp7suq.png" group-title="Sports",Pac 12 Insider (720p) +https://pac12-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (1080p) [Offline] +https://jukin-peopleareawesome-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayWorks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/McoboB1.png" group-title="Entertainment",Play.Works (720p) [Offline] +https://playworksdigital-playworks-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) +https://playerstv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (720p) +https://pocketwatch-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="RealTruthCrime.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="",Real Truth Crime [Offline] +https://endemol-reeltruthcrime-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Restore.us" tvg-country="US" tvg-language="English" tvg-logo="" group-title="Entertainment",Restore [Offline] +https://endemol-restore-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="RiffTrax.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PZ9iGaO.png" group-title="Comedy",RiffTrax (720p) [Offline] +https://rifftrax-2.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (720p) [Offline] +https://shout-factory.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) +https://sportsgrid-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Spotlight.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/g9zxqSd.jpg" group-title="",Spotlight (1080p) +https://spotlight-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="SuperSimpleSongs.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/9zRYK8n.jpg" group-title="Kids",Super Simple Songs (1080p) [Offline] +https://janson-supersimplesongs-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tankee.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oMWbZ8n.png" group-title="Kids",Tankee (720p) [Offline] +https://playworksdigital-tankee-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) +https://tastemade-intl-vizioca.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeenEspanol.us" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade en Español (1080p) +https://tastemadees16intl-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TastemadeTravel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade Travel (720p) +https://tastemadetravel-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) [Offline] +https://cinedigm-bobross-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="TheCarolBurnettShow.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/dEmt8Fv.png" group-title="Classic",The Carol Burnett Show (1080p) +https://carolburnett-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="TheFirst.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc953ab6426646dbd7347b4" group-title="News",The First (720p) +https://thefirst-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (1080p) [Offline] +https://the-pet-collective-linear.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (1080p) [Offline] +https://previewchannel-previewchannel-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (1080p) [Offline] +https://toon-goggles-samsung.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="VENN.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/zVoX1fM.jpg" group-title="Entertainment",VENN (1080p) +https://venntv-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="WeTVAllWeddings.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/d61oA0y.png" group-title="Entertainment",We TV All Weddings (1080p) [Offline] +https://amc-allweddings-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (1080p) [Offline] +https://jukin-weatherspy-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WhistleSports.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/CNO8eQ7.png" group-title="Sports",Whistle Sports (720p) [Offline] +https://whistle-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Wipeout.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/cII7j51.png" group-title="Series",Wipeout [Offline] +https://endemol-wipeoutxtra-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="WowNowKids.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AWXw9LW.jpg" group-title="Kids",Wow Now Kids (1080p) [Offline] +https://wownow-wownowkids-1.vizio.wurl.com/manifest/playlist.m3u8 +#EXTINF:-1 tvg-id="Xplore.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjU5MDAzNDRf/Xplore_307x307.png" group-title="Entertainment",Xplore (1080p) +https://xplore-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YahooFinance.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/602ab939db63ed4c92785303" group-title="Business",Yahoo! Finance (720p) +https://yahoo-vizio.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="YoungHollywood.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X27MGHd.png" group-title="Entertainment",Young Hollywood (720p) +https://younghollywood-vizio.amagi.tv/playlist.m3u8 diff --git a/channels/us_xumo.m3u~master b/channels/us_xumo.m3u~master new file mode 100644 index 000000000..5e2c823bd --- /dev/null +++ b/channels/us_xumo.m3u~master @@ -0,0 +1,369 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ABCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/61YDuS-81ML.png" group-title="News",ABC News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-abcnews/CDN/master.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-adventuresportsnetwork/CDN/master.m3u8 +#EXTINF:-1 tvg-id="AdventureSportsNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ZbPFZOV.png" group-title="Sports",Adventure Sports Network (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioadventuresportsnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Ameba.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/612ZLob%2BSOL.png" group-title="Kids",Ameba (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuameba/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericasTestKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://www.samsung.com/us/smg/content/dam/s7/home/televisions-and-home-theater/tvs/tv-plus/all-channels/10272020/Americas_Test_Kitchen_190x190.png?raw=true" group-title="Cooking",America's Test Kitchen (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericastestkitchen/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="AmericanClassics.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/WUAXiq1.png" group-title="Movies",American Classics (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxamericanclassics/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ArchitecturalDigest.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AD_246x246.png?raw=true" group-title="",Architectural Digest (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxarchitecturaldigest/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ArchitecturalDigest.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/AD_246x246.png?raw=true" group-title="",Architectural Digest (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokutraveler/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Asylum.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/j98vGQp.jpg" group-title="Movies",Asylum (XUMO) (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-theasylum/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Baeble.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mDxouc8.png" group-title="Music",Baeble Music (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbaeble/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BatteryPopXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5VUZTa1.png" group-title="Kids",Battery Pop (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbatterypop/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) +http://redbox-blacknewschannel-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) +https://blacknewschannel-xumo-us.amagi.tv/hls/amagi_hls_data_blacknews-blacknewschannel-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) +https://blacknewschannel-xumo-us.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="BlackNewsChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GMAT4VE.jpg" group-title="News",Black News Channel (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxblacknewschannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="BloombergTVUS.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-profiles.tunein.com/s47135/images/logog.png" group-title="Business",Bloomberg TV US (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbloomberg/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="bonappetit.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/YhFFxlE.png" group-title="Cooking",bon appétit (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbonappetit/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6TmWzvk.jpg" group-title="News",CBC News (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcbcnews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CBCNewsXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/6TmWzvk.jpg" group-title="News",CBC News (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-cbcnews/CDN/master.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo-host-cheddar/CDN/master.m3u8 +#EXTINF:-1 tvg-id="CheddarNews.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/607766d942e7e542aa73ddf2" group-title="News",Cheddar News (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcheddar/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ChiveTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://yt3.ggpht.com/a-/AN66SAz6Ssqjkt5Zn__8q2-hhZEPzoma1h3_IshrpQ=s900-mo-c-c0xffffffff-rj-k-no" group-title="Outdoor",Chive TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxchive/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CineRomantico.us" tvg-country="US" tvg-language="English" tvg-logo="https://odishaexpo.com/wp-content/uploads/2020/10/UP_Entertainment_Cine_Romantico_Logo.jpg" group-title="Movies",Cine Romantico (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokucineromantico/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://circle-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcircletv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Circle.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjY2MjYwMTlf?inline=1" group-title="Entertainment",Circle (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-circle/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ComedyDynamics.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/ComedyDynamics_640x640.png" group-title="Comedy",Comedy Dynamics (1080p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo-host-comedydynamics/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Complex.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aBseWYR.png" group-title="Lifestyle",Complex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-complextv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Complex.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/aBseWYR.png" group-title="Lifestyle",Complex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcomplex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxcontv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtv.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa07ec3fc8cbc647f034483" group-title="Entertainment",CONtv (1080p) [Timeout] +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo123-contv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://contvanime.cinedigm.com/conapp-ssai/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CONtvAnime.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fa1b7168f9c26008859a893" group-title="Animation",CONtv Anime (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo-host-contvanime-junction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="CrackleXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XAQpMY6.png" group-title="Movies",Crackle (XUMO) (1080p) +http://crackle-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxdocurama/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Timeout] +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Docurama.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/5X5Z5eg.png" group-title="Documentary",Docurama (1080p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1234A-docuramaA/CDN/master.m3u8 +#EXTINF:-1 tvg-id="DoveChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FVWqYQG.png" group-title="Family",Dove Channel (1080p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1234A-dovenow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="EDGEsport.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Sports",EDGEsport (1080p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-edgesportxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ElectricNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjgzOTI0NjRf/ElectricNow_300x300.png" group-title="Entertainment",Electric Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-electricnow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="eScapesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/lb0ddYv.png" group-title="Entertainment",eScapes (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-escapes/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FailArmyInternational.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/nbzbHum.png" group-title="Comedy",FailArmy International (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfailarmy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmHub.us" tvg-country="US" tvg-language="English" tvg-logo="http://cdn-images-1.medium.com/max/280/1*7zB_9kQDvR3fa_IIk8fhQg@2x.png" group-title="Movies",Film Hub (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmhub/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseAction.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise-Action_442x442.png?raw=true" group-title="",FilmRise Action (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmriseaction/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/GvqmzPn.jpg" group-title="Classic",FilmRise Classic TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmriseclassictv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise_Classic-TV_300x300.png?raw=true" group-title="Classic",FilmRise Classic TV (432p) +https://hls.xumo.com/channel-hls/v1/9fe012a9926c4e91/9999400/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseClassicTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Redbox_512x512.png?raw=true" group-title="Classic",FilmRise Classic TV on Redbox (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmriseclassictv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFamily.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/81VZaxj6a1L._SY355_.png" group-title="Family",FilmRise Family (432p) +http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisefamily/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseForensicFiles.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/FilmRise_ForensicFiles_398x398.png?raw=true" group-title="",FilmRise Forensic Files (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuforensicfiles/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FilmRiseForensicFilesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/fX1PNxl.png" group-title="",FilmRise Forensic Files (XUMO) (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxunsolvedmysteries/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofilmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseFreeMoviesRedbox.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/X7U7ikq.png" group-title="Movies",FilmRise Free Movies (Redbox) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfilmrisefreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseHellsKitchen.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H002ju5.png" group-title="Cooking",FilmRise Hell's Kitchen (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecooking/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FeWgF1h.png" group-title="Series",FilmRise Mysteries (XUMO) (720p) +http://dai2.xumo.com/xumocdn/p=roku/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseMysteriesXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/FeWgF1h.png" group-title="Series",FilmRise Mysteries (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisemystery/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseSciFiXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://images-na.ssl-images-amazon.com/images/I/815Fp3E0LcL.png" group-title="",FilmRise Sci-Fi (XUMO) (432p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisesci-fi/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseTrueCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/suxN191.png" group-title="Movies",FilmRise True Crime (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-filmrisecrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FilmRiseWestern.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7cTXYNk.png" group-title="",FilmRise Western (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufilmrisewestern/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FiremanSam.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/umyEio1.jpg" group-title="Kids",Fireman Sam (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufiremansam/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) +https://cinedigm.vo.llnwd.net/conssui/amagi_hls_data_xumo1212A-redboxfood52A/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfood52A/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Food52.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/BVrMQch.png" group-title="Cooking",Food 52 (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziofood52/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfunnyordie/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="FunnyorDie.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/PMMsywm.png" group-title="Comedy",Funny or Die (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokufunnyordie/CDN/master.m3u8 +#EXTINF:-1 tvg-id="FuseEast.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/mijRpPQ.jpg" group-title="",Fuse East (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxfuse/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Glamour.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.ranklogos.com/wp-content/uploads/2014/11/Glamour-Logo.jpg" group-title="Lifestyle",Glamour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglamour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Glamour.us" tvg-country="US" tvg-language="English" tvg-logo="http://www.ranklogos.com/wp-content/uploads/2014/11/Glamour-Logo.jpg" group-title="Lifestyle",Glamour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuglamour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GlobalGotTalent.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/QHiOf7Z.png" group-title="Entertainment",Global Got Talent (576p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugottalentglobal/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GloryKickboxing.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/AQbc1ER.jpg" group-title="Sports",Glory Kickboxing (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxglorykickboxing/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GoTraveler.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Travel",Go Traveler (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgotraveler/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tprQSxT.png" group-title="Lifestyle",GQ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgq/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GQ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/tprQSxT.png" group-title="Lifestyle",GQ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugq/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxgravitas/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="GravitasMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/H2hD4vT.png" group-title="Movies",Gravitas Movies (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokugravitasmovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="HallmarkMoviesMore.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JMn9sxk.png" group-title="Movies",Hallmark Movies & More (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuhallmark/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="HardKnocks.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMzA3OTUzMjRf?inline=1" group-title="Sports",Hard Knocks (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhardknocksfightingchampionship/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="HiYAH" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/uMPu5HU.png" group-title="Entertainment",Hi-YAH! (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhi-ya/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Hungry.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/MIUDYh0.png" group-title="Cooking",Hungry (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxhungry/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="InsightTV.nl" tvg-country="NL" tvg-language="Dutch" tvg-logo="https://images.pluto.tv/channels/5f06bc60e236570007793f31/colorLogoPNG.png" group-title="",Insight TV (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-insighttv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Journy.us" tvg-country="US" tvg-language="English" tvg-logo="https://web.opendrive.com/api/v1/download/file.json/MF8yMjg5MzMxNjNf?inline=1" group-title="Travel",Journy (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxjourny/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="JustforLaughsGags.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OiMMkP3.jpg" group-title="Comedy",Just for Laughs Gags (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokujustforlaughsgags/CDN/master.m3u8 +#EXTINF:-1 tvg-id="JustforLaughsGags.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OiMMkP3.jpg" group-title="Comedy",Just for Laughs Gags (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziojustforlaughsgags/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="kabillion.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2Ybvtlg.png" group-title="Kids",kabillion (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxkabillion/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KidGenius.us" tvg-country="US" tvg-language="English" tvg-logo="https://pbs.twimg.com/profile_images/633357710969303040/ZKJg46ZY.jpg" group-title="Kids",Kid Genius (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukidgenius/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="KocowaClassic.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Px8a1JY.png" group-title="Classic",Kocowa Classic (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokukocowa/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LatidoMusic.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/p3n3CZP.jpg" group-title="Music",Latido Music (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumovidaprimolatido/CDN/master.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/master.m3u8 +#EXTINF:-1 tvg-id="LawCrime.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziolawandcrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LawCrimeXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/HY64Nhe.png" group-title="Documentary",Law & Crime (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-lawcrime/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="LIVExLIVE.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OaSFTnV.png" group-title="Lifestyle",LIVExLIVE (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumolivexlive/CDN/master.m3u8 +#EXTINF:-1 tvg-id="MaverickBlackCinema.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/OEamqFg.png" group-title="Movies",Maverick Black Cinema (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-maverickmovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Moovimex.us" tvg-country="MX" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mty0mgJ.jpg" group-title="Movies",Moovimex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokumoovimex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Moovimex.us" tvg-country="US" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mty0mgJ.jpg" group-title="Movies",Moovimex (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziomoovimex/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunbcnewsnow/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NBCNewsNow.us" tvg-country="US" tvg-language="English" tvg-logo="https://raw.githubusercontent.com/geonsey/Free2ViewTV/master/images/logos/NBCNewsNow.png" group-title="News",NBC News Now (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-nbcnewsnow/CDN/master.m3u8 +#EXTINF:-1 tvg-id="NewsmaxTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://gitee.com/radioer/radioer/raw/main/newsmax.jpg" group-title="News",Newsmax (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-newsmaxxumo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NitroCircus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Ri0sB6I.jpg" group-title="Sports",Nitro Circus (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnitrocircus/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Nosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jlUuE2j.png" group-title="Series",Nosey (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redbox-nosey/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThis.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (900p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunowthis/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThis.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxnowthis/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="NowThisXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Now_This_Logo_White.svg/1200px-Now_This_Logo_White.svg.png" group-title="General",Now This (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-nowthis/CDN/master.m3u8 +#EXTINF:-1 tvg-id="OutdoorAmerica.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/ldh9sFG.png" group-title="Outdoor",Outdoor America (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutdooramerica/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxoutsidetv/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="OutsideTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV Plus (1080p) +https://outsidetvplus-xumo.amagi.tv/hls/amagi_hls_data_outsidetv-outsidetvplusxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="OutsideTVPlus.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7WF7ca4.png" group-title="Outdoor",Outside TV Plus (1080p) +https://outsidetvplus-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-peopleareawesome/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleareAwesome.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/msHBlDz.png" group-title="Entertainment",People are Awesome (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpeopleareawesome/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PeopleTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/7SarjaU.png" group-title="Entertainment",People TV (1080p) +https://peopletvssai.akamaized.net/amagi_hls_data_peopletvA-peopletvxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="PlayersTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/31L4TjP.png" group-title="Sports",Players TV (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumo-playerstv/CDN/master.m3u8 +#EXTINF:-1 tvg-id="pocketwatch.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Fi3klzX.png" group-title="",pocket.watch (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpocketwatch/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="PongaloNovelaclub.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vLSvJ7W.jpg" group-title="Series",Pongalo Novelaclub (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokunovelaclub/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RainbowRuby.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LrunNdE.png" group-title="",Rainbow Ruby (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-roku-rainbow-ruby/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Realnosey.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/eVB5iNV.png" group-title="",Real nosey (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxrealnosey/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Reelz.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokureelzchannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ReelzChannelXUMO.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/UQjtEqR.png" group-title="Documentary",Reelz Channel (XUMO) (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxreelzchannel/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="RevandRoll.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/JiBv7NI.jpg" group-title="",Rev and Roll (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokurev-and-roll/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Revry.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/5fc81016d98cab623846a4f3" group-title="Lifestyle",Revry (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-revryxumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SamuelGoldwynChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oCjZS0v.jpg" group-title="",Samuel Goldwyn Channel (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsamuelgoldwyn/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ShopLC.us" tvg-country="US" tvg-language="English" tvg-logo="https://f9q4g5j6.ssl.hwcdn.net/606f94fdf46bcb6017662744" group-title="Shop",Shop LC (1080p) +https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(xumo)/index.m3u8 +#EXTINF:-1 tvg-id="ShoutFactoryTV.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ShoutFactoryTV_300x300.png?raw=true" group-title="General",Shout! Factory TV (1080p) +https://shoutfactory-xumo.amagi.tv/playlist.m3u8 +#EXTINF:-1 tvg-id="ShowtimeattheApollo.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/jhJ25OQ.jpg" group-title="Entertainment",Showtime at the Apollo (432p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxshowtimeattheapollo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="SoYummy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mq7PBDN.png" group-title="Cooking",So Yummy! (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxsoyummy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="SoYummy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mq7PBDN.png" group-title="Cooking",So Yummy! (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-soyummy-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumosportsgrid/CDN/master.m3u8 +#EXTINF:-1 tvg-id="SportsGrid.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/46gdAeg.png" group-title="Sports",SportsGrid (1080p) +https://sportsgrid-xumo-us.amagi.tv/xumo.m3u8 +#EXTINF:-1 tvg-id="Stadium.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/n38w3FD.png" group-title="Sports",Stadium (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-stadiumsports/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayAmbience.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/tHClafI.png" group-title="Music",Stingray Ambience (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziostingrayambiance/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Classic Rock (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayclassicrock/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Classic Rock (1080p) +https://xumo-redbox.ott-channels.stingray.com/101/master.m3u8 +#EXTINF:-1 tvg-id="StingrayClassicRock.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Classic Rock (1080p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayclassicrock/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Greatest Hits (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraygreatesthits/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Greatest Hits (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraygreatesthits/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayGreatestHits.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Greatest Hits (1080p) +https://xumo-redbox.ott-channels.stingray.com/155/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hit List (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhitlist/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayHitList.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hit List (1080p) +https://xumo-redbox.ott-channels.stingray.com/107/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHitlist.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Hitlist (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhitlist/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hot Country (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingrayhotcountry/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Hot Country (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayhotcountry/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayHotCountry.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Hot Country (1080p) +https://xumo-redbox.ott-channels.stingray.com/108/master.m3u8 +#EXTINF:-1 tvg-id="StingrayKaraoke.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Karaoke (144p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraykaraoke/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Naturescape (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraynaturescape/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingrayNaturescape.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Naturescape (360p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraynaturescape/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://i.imgur.com/IVUgJPY.png" group-title="Music",Stingray Qello Concerts (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-vizioqelloconcerts/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingrayQelloConcerts.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Qello Concerts (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingrayqello/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Soul Storm (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxstingraysoulstorm/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/Xumo_456x456.png?raw=true" group-title="Music",Stingray Soul Storm (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-xumostingraysoulstorm/CDN/master.m3u8 +#EXTINF:-1 tvg-id="StingraySoulStorm.ca" tvg-country="CA" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Stingray Soul Storm (1080p) +https://xumo-redbox.ott-channels.stingray.com/134/master.m3u8 +#EXTINF:-1 tvg-id="Tastemade.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/8s6aRwv.png" group-title="Cooking",Tastemade (1080p) +https://tastemade-xumo.amagi.tv/hls/amagi_hls_data_tastemade-tastemadefreetv16xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="Teletubbies.uk" tvg-country="UK" tvg-language="English" tvg-logo="https://i.imgur.com/FlCXGip.jpg" group-title="",Teletubbies (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuteletubbies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheArchive.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMjg0MDgzNDBf/TheArchive_300x300.png" group-title="Classic",The Archive (432p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthearchive/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) +https://bobross-xumous-ingest.cinedigm.com/master.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) +https://bobross-xumous.cinedigm.com/midroll/amagi_hls_data_xumo-host-bobross-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TheBobRossChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/BobRossChannel_275x275.png?raw=true" group-title="Culture",The Bob Ross Channel (1080p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxbobross/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TheDesignNetwork.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/LoUGscj.png" group-title="Lifestyle",The Design Network (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxthedesignnetwork/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-petcollective/CDN/master.m3u8 +#EXTINF:-1 tvg-id="ThePetCollective.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Mk28uUy.png" group-title="Family",The Pet Collective (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxpetcollective/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ThePreviewChannel.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/ThePreviewChannel_220x220.png?raw=true" group-title="",The Preview Channel (720p) +https://hls.xumo.com/channel-hls/v1/bmneuerw7j9k5lfc/9999330/master.m3u8 +#EXTINF:-1 tvg-id="TheYoungTurks.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/XDNXJCl.png" group-title="News",The Young Turks (TYT) (1080p) [Not 24/7] +https://tyt-xumo-us.amagi.tv/hls/amagi_hls_data_tytnetwor-tyt-xumo/CDN/master.m3u8 +#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziotmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1234A-tmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="TMZ.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/wzBD6fy.png" group-title="Entertainment",TMZ (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtmz/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="ToonGoggles.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/oyIMxzM.png" group-title="Kids",Toon Goggles (720p) [Not 24/7] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxtoongoggles/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxusatoday/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatoday/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USAToday.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="News",USA Today (432p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuusatodaynews/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="USATodaySportswire.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzIyMDM0MzNf/USAToday_480x480.png" group-title="Sports",USA Today Sportswire (720p) [Offline] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-viziousatodaysportswire/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VanityFair.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KMUYfnz.jpg" group-title="Lifestyle",Vanity Fair (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvanityfair/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VanityFair.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/KMUYfnz.jpg" group-title="Lifestyle",Vanity Fair (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvanityfair/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vevo80s.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="Music",Vevo 80s (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo80s/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VevoPop.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Me1wLzi.jpg" group-title="Music",Vevo Pop (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvevo/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vogue.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2i333B9.jpg" group-title="Lifestyle",Vogue (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvogue/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Vogue.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/2i333B9.jpg" group-title="Lifestyle",Vogue (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvogue/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vPlVuv8.jpg" group-title="Documentary",Voyager Documentaries (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxvoyager/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="VoyagerDocumentaries.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vPlVuv8.jpg" group-title="Documentary",Voyager Documentaries (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuvoyagerdocumentaries/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuweatherspy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WeatherSpy.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/SAZF1cq.jpg" group-title="Weather",WeatherSpy (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxweatherspy/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="Wired.us" tvg-country="US" tvg-language="English" tvg-logo="https://od.lk/s/MF8yMzE5OTIyMjBf/Redbox_512x512.png" group-title="",Wired (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxwired/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="WorldPokerTour.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/vfIsClb.jpg" group-title="Entertainment",World Poker Tour (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-redboxworldpokertour/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="XumoFreeMovies.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/Sx10tvQ.png" group-title="Movies",Xumo Free Movies (720p) [Timeout] +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumofreemovies/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="XumoFreeWesterns.us" tvg-country="US" tvg-language="English" tvg-logo="https://github.com/geonsey/Free2ViewTV/blob/master/images/logos/XumoFreeWesterns.png?raw=true" group-title="Movies",Xumo Free Westerns (360p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuxumowesterns/CDN/playlist.m3u8 +#EXTINF:-1 tvg-id="YoGabbaGabba.us" tvg-country="US" tvg-language="English" tvg-logo="https://i.imgur.com/RwxgFfb.jpg" group-title="Kids",Yo Gabba Gabba! (720p) +https://dai2.xumo.com/amagi_hls_data_xumo1212A-rokuyogabagaba/CDN/playlist.m3u8 diff --git a/channels/uy.m3u b/channels/uy.m3u new file mode 100644 index 000000000..05fa9fa67 --- /dev/null +++ b/channels/uy.m3u @@ -0,0 +1,13 @@ +#EXTM3U +#EXTINF:-1 tvg-id="canal10.uy" tvg-country="UY" tvg-language="Spanish;Castilian" tvg-logo="https://i.imgur.com/nmpOHwM.png" group-title="",Canal 10 (720p) [Offline] +https://edge3-hr.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating_FTA/Canal10_URU.m3u8 +#EXTINF:-1 tvg-id="CANAL10.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="https://directostv.teleame.com/wp-content/uploads/2019/04/canal-10-uruguay-en-vivo.png" group-title="",CANAL 10 [Offline] +http://edge2-ccast-sl.cvattv.com.ar/live/c5eds/Canal10_URU/verimatrix_rotating/Canal10_URU-video=1480000.m3u8 +#EXTINF:-1 tvg-id="CharruaTV.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="" group-title="",Charrúa Televisión (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.twitch.tv/charruatvcanal +#EXTINF:-1 tvg-id="LaRedTV.uy" tvg-country="UY" tvg-language="Spanish" tvg-logo="http://www.redtv.com.uy/wp-content/uploads/2019/10/logoheader2.png" group-title="General",LaRed TV (576p) [Not 24/7] +https://stmv1.srvif.com/laredtv/laredtv/playlist.m3u8 +#EXTINF:-1 tvg-id="LatinoKids.uy" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LatinoKidsTvUruguay/picture?width=300&height=300" group-title="Entertainment",LatinoKids (360p) [Not 24/7] +https://s14.ssl-stream.com:3335/live/latinokidsonlinelive.m3u8 +#EXTINF:-1 tvg-id="UCL.uy" tvg-country="UY;HISPAM" tvg-language="Spanish" tvg-logo="https://uclplay.com/wp-content/uploads/2020/04/logo-horizontal-white-1.png" group-title="",UCL TV (360p) [Not 24/7] +https://livedelta.cdn.antel.net.uy/out/u/url_canalu_2.m3u8 diff --git a/channels/uz.m3u b/channels/uz.m3u new file mode 100644 index 000000000..2640c4b3c --- /dev/null +++ b/channels/uz.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AzonTV.uz" tvg-country="UZ" tvg-language="Uzbek" tvg-logo="" group-title="",Azon TV (1080p) [Not 24/7] +http://tv2.azon.uz/high/stream.m3u8 +#EXTINF:-1 tvg-id="Milliy.uz" tvg-country="UZ" tvg-language="Uzbek" tvg-logo="http://milliy.tv/assets/images/logo.png" group-title="",Milliy (480p) [Not 24/7] +http://milliy.tv/hls/index.m3u8 diff --git a/channels/va.m3u b/channels/va.m3u new file mode 100644 index 000000000..3f7c0d7d1 --- /dev/null +++ b/channels/va.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV2000.va" tvg-country="VA;IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0d/Logo_tv2000_2015.svg/1280px-Logo_tv2000_2015.svg.png" group-title="",TV2000 (360p) [Not 24/7] +http://cld01ibi16.wz.tv2000.it/tv2000_alfa.m3u8 +#EXTINF:-1 tvg-id="TV2000.va" tvg-country="VA;IT" tvg-language="Italian" tvg-logo="https://upload.wikimedia.org/wikipedia/it/thumb/0/0d/Logo_tv2000_2015.svg/1280px-Logo_tv2000_2015.svg.png" group-title="",TV2000 (360p) [Not 24/7] +http://mi1.wz.tv2000.it/tv2000_alfa.m3u8 diff --git a/channels/ve.m3u~master b/channels/ve.m3u~master new file mode 100644 index 000000000..67d8b7d29 --- /dev/null +++ b/channels/ve.m3u~master @@ -0,0 +1,49 @@ +#EXTM3U +#EXTINF:-1 tvg-id="123TV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",123 TV [Timeout] +http://177.52.221.214:8000/play/a0ew/index.m3u8 +#EXTINF:-1 tvg-id="Canali.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/mJXBuAZ.png" group-title="",Canal i (720p) [Not 24/7] +https://vcp.myplaytv.com/canali/canali/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalNubehTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="http://play.myplaytv.com/uploads/images/channel_27_1536900830_thumb.png" group-title="",Canal Nubeh TV (1012p) [Not 24/7] +https://vcp.myplaytv.com/nubehtv/nubehtv/playlist.m3u8 +#EXTINF:-1 tvg-id="Colombeia.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Colombeia [Timeout] +http://177.52.221.214:8000/play/a0co/index.m3u8 +#EXTINF:-1 tvg-id="Globovision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.postimg.cc/Dz3Wpqt8/Logo-de-globovision-desde-septiembre-2013-v2.png" group-title="",Globovision (1080p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UCfJtBtmhnIyfUB6RqXeImMw/live +#EXTINF:-1 tvg-id="Italianissimo.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/ITALIANISSIMORADIO/picture?width=320&height=320" group-title="Music",Italianissimo (360p) [Not 24/7] +https://vcp.myplaytv.com/italianissimo/italianissimo/playlist.m3u8 +#EXTINF:-1 tvg-id="LaTeleTuya.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/LaTeleTuya/picture?width=350&height=350" group-title="",La Tele Tuya (TLT) (404p) [Geo-blocked] +https://vcp.myplaytv.com/tlthd/tlthd/playlist.m3u8 +#EXTINF:-1 tvg-id="OxigenoTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IkHrVCL.jpg" group-title="Music",Oxigeno TV (360p) [Not 24/7] +https://vcp.myplaytv.com/oxigenotv/oxigenotv/playlist.m3u8 +#EXTINF:-1 tvg-id="PromarTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/IkHrVCL.jpg" group-title="General",PromarTV (Yaracuy) (1080p) [Not 24/7] +http://vcp1.myplaytv.com:1935/promar/promar/playlist.m3u8 +#EXTINF:-1 tvg-id="RCR750.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Radio Caracas Radio 750 (720p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/channel/UC5AA3XP4_pXIELctSsH_L7w/live +#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (1080p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (360p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/480p/playlist.m3u8 +#EXTINF:-1 tvg-id="teleSUR.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",teleSUR (260p) +https://cdnesmain.telesur.ultrabase.net/mbliveMain/360p/playlist.m3u8 +#EXTINF:-1 tvg-id="TeleSUREnglish.ve" tvg-country="VE;US" tvg-language="English" tvg-logo="https://i.imgur.com/x5Mdzwv.png" group-title="News",TeleSUR English (1080p) [Not 24/7] +https://cdnenmain.telesur.ultrabase.net/mblivev3/hd/playlist.m3u8 +#EXTINF:-1 tvg-id="Televen.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://cdn.mitvstatic.com/channels/gt_televen_m.png" group-title="",Televen (404p) [Not 24/7] +https://cloud.streamingconnect.tv:455/televen/televenweb.m3u8 +#EXTINF:-1 tvg-id="TelevisoradeOriente.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Televisora de Oriente (480p) [Not 24/7] +http://vcp1.myplaytv.com:1935/tvo/tvo/playlist.m3u8 +#EXTINF:-1 tvg-id="TVFamilia.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://i.imgur.com/ixIePRp.png" group-title="",TV Familia (720p) +https://cdn01.yowi.tv/KPFPGJU8A6/master.m3u8 +#EXTINF:-1 tvg-id="TVVenezuela.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",TV Venezuela (480p) [Not 24/7] +https://d2fxrfbiedz1tm.cloudfront.net/livepaxtv/smil:PC.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="ValeTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://www.lyngsat-stream.com/logo/tv/vv/vale_tv_ve.png" group-title="",Vale TV (480p) [Not 24/7] +http://vcp1.myplaytv.com/valetv/valetv/playlist.m3u8 +#EXTINF:-1 tvg-id="VePlus.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Ve Plus (480p) [Not 24/7] +http://190.122.96.187:8888/http/006 +#EXTINF:-1 tvg-id="Venevision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="https://www.directv.com/images/logos/channels/dark/large/219.png" group-title="",Venevision [Geo-blocked] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.youtube.com/user/venevisionweb/live +#EXTINF:-1 tvg-id="VenezolanadeTelevision.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Venezolana de Televisión [Timeout] +http://177.52.221.214:8000/play/a0cj/index.m3u8 +#EXTINF:-1 tvg-id="VepacoTV.ve" tvg-country="VE" tvg-language="Spanish" tvg-logo="" group-title="",Vepaco TV (486p) [Not 24/7] +http://vcp1.myplaytv.com:1935/tvepaco/tvepaco/playlist.m3u8 +#EXTINF:-1 tvg-id="VPItv.ve" tvg-country="HISPAM" tvg-language="Spanish" tvg-logo="https://graph.facebook.com/vpitv/picture?width=320&height=320" group-title="News",VPItv (480p) [Not 24/7] +http://free.fullspeed.tv/iptv-query?streaming-ip=https://www.dailymotion.com/vpitv diff --git a/channels/vn.m3u~master b/channels/vn.m3u~master new file mode 100644 index 000000000..f300346a1 --- /dev/null +++ b/channels/vn.m3u~master @@ -0,0 +1,103 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AirTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Air TV (720p) +https://livefta.malimarcdn.com/ftaedge00/airtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="BenTre.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTFGIGk4MpV-7eFJWaeVPefzFSx8joT2yJJ76FmIkBntiQBBmov" group-title="",Bến Tre (720p) [Timeout] +http://113.163.94.245/hls-live/livepkgr/_definst_/liveevent/thbt.m3u8 +#EXTINF:-1 tvg-id="BrianTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Brian TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="BRT.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://brt.vn/common/v2/images/Banner150219.png" group-title="",BRT (360p) +http://113.163.216.23:1935/live/tv2.stream_480p/playlist.m3u8 +#EXTINF:-1 tvg-id="CaMauTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/gWc8xVD.jpg" group-title="",Cà Mau TV (720p) [Geo-blocked] +http://tv.ctvcamau.vn/live/tv/tv.m3u8 +#EXTINF:-1 tvg-id="DaNangTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://danangtv.vn/images/drt1.png" group-title="",Da Nang TV1 (1080p) [Not 24/7] +http://drtdnglive.e49a7c38.cdnviet.com/livedrt1/chunklist.m3u8 +#EXTINF:-1 tvg-id="DaNangTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/9I4gX5Y.png" group-title="",Da Nang TV2 (1080p) [Not 24/7] +http://drtdnglive.e49a7c38.cdnviet.com/livestream/chunklist.m3u8 +#EXTINF:-1 tvg-id="DaoLaneXang.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Dao Lane Xang (720p) +https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="DhammasaphaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Dhammasapha TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/dhammasapha.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="DongNai1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Đồng Nai 1 (360p) [Not 24/7] +http://118.107.85.4:1935/live/smil:DNTV1.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="DongNai2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Đồng Nai 2 (576p) [Not 24/7] +http://118.107.85.4:1935/live/smil:DNTV2.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="GiaLaiTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Gia Lai TV (486p) +http://113.161.25.3:8134/hls/gialaitv/gialaitv.m3u8 +#EXTINF:-1 tvg-id="GoodIdeaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Good Idea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/gooditv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HBTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/BnFWgS7.png" group-title="",HBTV (406p) [Not 24/7] +http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongStarTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Hmong Star TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/hmongstartv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HmongUSATV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HmongUSA TV (360p) +https://livefta.malimarcdn.com/ftaedge00/hmongusatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="HoungFa.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Houng Fa (720p) +https://livefta.malimarcdn.com/ftaedge00/houngfa.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="ISTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",ISTV (480p) +https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KhmerTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",KhmerTV (1080p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/khmertv2020.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="KhomsanhTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Khomsanh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/lstv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="KienGiangTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/HqYi1Dw.png" group-title="",KienGiangTV (1080p) [Geo-blocked] +http://tv.kgtv.vn/live/kgtv/kgtv.m3u8 +#EXTINF:-1 tvg-id="KienGiangTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/vzaqu80.png" group-title="",KienGiangTV1 (1080p) [Geo-blocked] +http://tv.kgtv.vn/live/kgtv1/kgtv1.m3u8 +#EXTINF:-1 tvg-id="LA34LongAn.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://goo.gl/DNboVb" group-title="",LA34 Long An (720p) +http://113.161.229.13/hls-live/livepkgr/_definst_/liveevent/tv.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV1.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Lao Champa TV 1 (720p) +https://livefta.malimarcdn.com/ftaedge00/laochampa1.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Champa TV 2 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoChampaTV3.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Champa TV 3 (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laochampa3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoHeritageFoundationTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Heritage Foundation TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/laoheritagetv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoMuslimTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Muslim TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/ddtvlao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoNetTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao Net TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LaoSVTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Lao SV TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laosvtv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="LaosPlanetTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Laos Planet TV (720p) +https://livefta.malimarcdn.com/ftaedge00/laosplanet.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LookThoongTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Look Thoong TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="LSTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",LS TV (480p) +https://livefta.malimarcdn.com/ftaedge00/laostv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NATTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",NAT TV (1080p) +https://livefta.malimarcdn.com/ftaedge00/nat.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NingTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Ning TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="OhMuangLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Oh Muang Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="OyLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Oy Lao TV (720p) [Not 24/7] +https://livefta.malimarcdn.com/ftaedge00/oylaotv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PNTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",PNTV (720p) +https://livefta.malimarcdn.com/ftaedge00/pntv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="PTPPhuYen.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://goo.gl/tDSGow" group-title="",PTP Phú Yên (432p) [Not 24/7] +http://113.161.4.48:8080/phuyen/tv.m3u8 +#EXTINF:-1 tvg-id="QRT.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://uphinhnhanh.com/images/2019/01/31/IMG_20190131_191516.jpg" group-title="",QRT (404p) [Not 24/7] +http://113.161.6.157:8081/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 +#EXTINF:-1 tvg-id="QuocHoi.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://www.quochoitv.vn/images/logo-qhtv.png" group-title="",Quốc Hội (720p) +http://113.164.225.140:1935/live/quochoitvlive.stream_720p/playlist.m3u8 +#EXTINF:-1 tvg-id="SupremeMasterTV.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Supreme Master TV (720p) +https://lbs-us1.suprememastertv.com/720p.m3u8 +#EXTINF:-1 tvg-id="TeaTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Tea TV (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TeaTV2.vn" tvg-country="VN" tvg-language="Vietnamese;English" tvg-logo="" group-title="",Tea TV 2 (720p) +https://livefta.malimarcdn.com/ftaedge00/teatv2.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="TienGiang.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://tv.vnn.vn/Images/tv/tiengiang%20.png" group-title="",Tien Giang (720p) +http://thtg.vn:8001/thtg.m3u8 +#EXTINF:-1 tvg-id="UniquelyThai.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Uniquely Thai (720p) +https://livefta.malimarcdn.com/ftaedge00/uniquely.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VajtswvTxojlus.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vajtswv Txojlus (720p) +https://livefta.malimarcdn.com/ftaedge00/vajtswv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VanphenhTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vanphenh TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vanphenhtv.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="VatiLaoTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vati Lao TV (720p) +https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="VietMyTV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://s30.postimg.org/s0aco3hzl/VIET_MY.png" group-title="",Việt Mỹ TV (480p) [Not 24/7] +http://68.235.37.11:1935/vietmagazine/vietmagazine/playlist.m3u8 +#EXTINF:-1 tvg-id="VITV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://tduc.tk/logo/vitv.png" group-title="",VITV (180p) +http://210.86.230.202:8134/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 diff --git a/channels/vn_fptplay.m3u b/channels/vn_fptplay.m3u new file mode 100644 index 000000000..9efb2051e --- /dev/null +++ b/channels/vn_fptplay.m3u @@ -0,0 +1,57 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AXNEastAsia.us" tvg-country="VN" tvg-language="English;Vietnamese" tvg-logo="https://www.img09.xyz/assets/img/ch_logo/hd-axn.png" group-title="Movies",AXN East Asia (Vietnamese) (1080p) [Geo-blocked] +https://htv-drm-live-cdn.fptplay.net/CDN-FPT02/AXN-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelV.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Channel V (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/CHANNELV-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="FBNC.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",FBNC (270p) [Offline] +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdc/fbnchd_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="FoxMoviesAsia.us" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://i.imgur.com/vs51MBW.png" group-title="Movies",Fox Movies Asia (Vietnamese) (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/FOXMOVIES-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVTheThao.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTV Thể Thao (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV-THETHAO-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv1a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV1 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdb/htv1_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTV2 (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTV2-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV3.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv3a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV3 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdb/htv3_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HTV4.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="http://htvc.vn/uploads/channel/2015/02/12/7068413-logo-htv4a.png" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",HTV4 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdb/htv4_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCCaNhac.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Ca Nhạc (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-CANHAC-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCDuLichCuocSong.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Du Lịch Cuộc Sống (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-DULICH-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCGiaDinh.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Gia Đình (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-GIADINH-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCPhim.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Phim (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHIM-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCPhuNu.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Phụ Nữ (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PHUNU-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCThuanViet.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Thuần Việt (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIET-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCThuanViet.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC Thuần Việt (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-THUANVIETHD-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="HTVCPlus.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",HTVC+ (1080p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/HTVC-PLUS-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="SkyShop.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",SkyShop (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sda/skymart_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VinhLong1.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vĩnh Long 1 [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL1-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="VinhLong2.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" group-title="",Vĩnh Long 2 [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/THVL2-HD-1080p/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC4.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC4 (720p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdc/vtc4_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC4Yeah1Family.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="https://upload.wikimedia.org/wikipedia/vi/archive/e/ef/20130331171011%21Yeah1family.png" group-title="",VTC4 Yeah1 Family (720p) [Geo-blocked] +http://htv-drm-live-cdn.fptplay.net/CDN-FPT02/VTC4-SD-ABR/HTV-ABR/VTC4-SD-720p/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC5.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC5 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdb/vtc5_hls.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="VTC6.vn" tvg-country="VN" tvg-language="Vietnamese" tvg-logo="" user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" group-title="",VTC6 (576p) +#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +https://livecdn.fptplay.net/sdb/vtc6_hls.smil/playlist.m3u8 diff --git a/channels/xk.m3u b/channels/xk.m3u new file mode 100644 index 000000000..def428a5a --- /dev/null +++ b/channels/xk.m3u @@ -0,0 +1,23 @@ +#EXTM3U +#EXTINF:-1 tvg-id="ArtaNews.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/V4ZTL3h.png" group-title="News",Arta News (720p) [Not 24/7] +https://samiu.gjirafa.com/live/DpTlD159VIIRWtzFOvUI70nftnyosgUE/yt1q1x.m3u8 +#EXTINF:-1 tvg-id="RTK1.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/LTkYnzl.png" group-title="",RTK 1 (720p) [Not 24/7] +http://stream1.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK1.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/LTkYnzl.png" group-title="",RTK 1 (720p) [Not 24/7] +http://stream2.rtkit.com:1935/rtk1stream/rtk1.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK2.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="http://www.rtklive.com/sq/livestream/img/rtk2.png" group-title="",RTK 2 (720p) +http://stream1.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK2.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="http://www.rtklive.com/sq/livestream/img/rtk2.png" group-title="",RTK 2 (720p) +http://stream2.rtkit.com:1935/rtk2stream/rtk2.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK3.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RQI1pBn.png" group-title="",RTK 3 (720p) +http://stream1.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK3.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/RQI1pBn.png" group-title="",RTK 3 (720p) +http://stream2.rtkit.com:1935/rtk3stream/rtk3.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK4.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/H4EWXF3.png" group-title="",RTK 4 (720p) [Not 24/7] +http://stream1.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="RTK4.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/H4EWXF3.png" group-title="",RTK 4 (720p) [Not 24/7] +http://stream2.rtkit.com:1935/rtk4stream/rtk4.stream/playlist.m3u8 +#EXTINF:-1 tvg-id="TravelingoTV.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/PS0j4ic.png" group-title="Travel",Travelingo TV (1080p) [Not 24/7] +https://abdyli.gjirafa.com/live/r6e3JjXjSjkUCsA7CmdhL8lzM4fGXGz4/ytkytq.m3u8 +#EXTINF:-1 tvg-id="ZeriTV.xk" tvg-country="XK" tvg-language="Albanian" tvg-logo="https://i.imgur.com/UVFCGWS.jpg" group-title="",Zeri TV (360p) [Offline] +https://abdyli.gjirafa.com/live/ZvTsY6MH7RPPvXuUDjRjcEYkK7yryigW/ytkt1k.m3u8 diff --git a/channels/ye.m3u b/channels/ye.m3u new file mode 100644 index 000000000..2cffb0979 --- /dev/null +++ b/channels/ye.m3u @@ -0,0 +1,25 @@ +#EXTM3U +#EXTINF:-1 tvg-id="AdenTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/KJTEVbf.png" group-title="General",Aden TV [Offline] +https://master.starmena-cloud.com/hls/aden.m3u8 +#EXTINF:-1 tvg-id="AICTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="General",AIC TV (576p) [Timeout] +http://195.35.85.115:8000/play/a0fr +#EXTINF:-1 tvg-id="AlMahrah.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/aa/almahrah-tv-ye.png" group-title="General",Al Mahrah (576p) [Offline] +http://82.212.74.99:8000/live/hls/8173.m3u8 +#EXTINF:-1 tvg-id="AlMasirah.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/poHvbNV.jpg" group-title="News",Al Masirah (720p) [Not 24/7] +https://svs.itworkscdn.net/almasiralive/almasira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMasirahMubacher.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://i.imgur.com/0xHb3XM.jpg" group-title="News",Al Masirah Mubacher (642p) [Not 24/7] +https://svs.itworkscdn.net/almasiramubacherlive/almasira.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="AlMasirahTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Al Masirah TV (720p) [Not 24/7] +https://svs.itworkscdn.net/almasiralive/almasira/playlist.m3u8 +#EXTINF:-1 tvg-id="AlerthAlnabawi.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.lyngsat.com/logo/tv/aa/alerth-alnabawi-channel-jo.png" group-title="Religious",Alerth Alnabawi (576p) [Not 24/7] +http://82.212.74.2:8000/live/7307.m3u8 +#EXTINF:-1 tvg-id="AlghadAlmushreq.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="https://www.alghadye.com/wp-content/uploads/2018/07/image1.png" group-title="News",Alghad Almushreq (576p) +http://82.212.74.3:8000/live/7512.m3u8 +#EXTINF:-1 tvg-id="AlyamanShabab.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Alyaman Shabab (1080p) [Not 24/7] +https://master.starmena-cloud.com/hls/yemenshabab.m3u8 +#EXTINF:-1 tvg-id="BelqeesTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Belqees TV (1080p) [Offline] +https://svs.itworkscdn.net/itwlive/itw3.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="Hadramout.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="",Hadramout [Offline] +https://linkastream.co/headless?url=https://www.youtube.com/c/hadramouttv/live +#EXTINF:-1 tvg-id="SuhailTV.ye" tvg-country="YE" tvg-language="Arabic" tvg-logo="" group-title="News",Suhail TV (576p) +http://82.212.74.98:8000/live/hls/7726.m3u8 diff --git a/channels/zm.m3u b/channels/zm.m3u new file mode 100644 index 000000000..5dd661f9d --- /dev/null +++ b/channels/zm.m3u @@ -0,0 +1,5 @@ +#EXTM3U +#EXTINF:-1 tvg-id="TV1.zm" tvg-country="ZM" tvg-language="English" tvg-logo="https://www.znbc.co.zm/wp-content/uploads/2018/10/cropped-ZNBC-logo-192x192.png" group-title="",TV1 (480p) [Not 24/7] +https://dcunilive159-lh.akamaihd.net/i/dclive_1@1013574/master.m3u8 +#EXTINF:-1 tvg-id="TV4.zm" tvg-country="ZM" tvg-language="English" tvg-logo="https://www.znbc.co.zm/wp-content/uploads/2018/10/cropped-ZNBC-logo-192x192.png" group-title="",TV4 (576p) [Not 24/7] +https://dcunilive258-lh.akamaihd.net/i/dclive_1@348579/master.m3u8 From 83a223c060bbfcfa281d1428ead4eb1353570df9 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 01:56:40 +0300 Subject: [PATCH 148/157] Move /channels to /streams --- {channels => streams/channels}/ad.m3u | 0 {channels => streams/channels}/ae.m3u~master | 0 {channels => streams/channels}/af.m3u | 0 {channels => streams/channels}/ag.m3u | 0 {channels => streams/channels}/al.m3u~master | 0 {channels => streams/channels}/am.m3u~master | 0 {channels => streams/channels}/ao.m3u | 0 {channels => streams/channels}/ar.m3u~master | 0 {channels => streams/channels}/at.m3u~master | 0 {channels => streams/channels}/at_samsung.m3u | 0 {channels => streams/channels}/au.m3u~master | 0 {channels => streams/channels}/au_samsung.m3u | 0 {channels => streams/channels}/aw.m3u~master | 0 {channels => streams/channels}/az.m3u~master | 0 {channels => streams/channels}/ba.m3u~master | 0 {channels => streams/channels}/bb.m3u | 0 {channels => streams/channels}/bd.m3u | 0 {channels => streams/channels}/bd_jagobd.m3u~master | 0 {channels => streams/channels}/be.m3u~master | 0 {channels => streams/channels}/be_samsung.m3u~master | 0 {channels => streams/channels}/bf.m3u | 0 {channels => streams/channels}/bg.m3u~master | 0 {channels => streams/channels}/bh.m3u | 0 {channels => streams/channels}/bj.m3u~master | 0 {channels => streams/channels}/bn.m3u | 0 {channels => streams/channels}/bo.m3u~master | 0 {channels => streams/channels}/br.m3u~master | 0 {channels => streams/channels}/br_pluto.m3u | 0 {channels => streams/channels}/br_samsung.m3u | 0 {channels => streams/channels}/bs.m3u~master | 0 {channels => streams/channels}/by.m3u~master | 0 {channels => streams/channels}/by_sluhay.m3u | 0 {channels => streams/channels}/ca.m3u~master | 0 {channels => streams/channels}/ca_samsung.m3u | 0 {channels => streams/channels}/ca_stingray.m3u | 0 {channels => streams/channels}/cd.m3u~master | 0 {channels => streams/channels}/cg.m3u | 0 {channels => streams/channels}/ch.m3u~master | 0 {channels => streams/channels}/ch_samsung.m3u | 0 {channels => streams/channels}/ci.m3u | 0 {channels => streams/channels}/cl.m3u~master | 0 {channels => streams/channels}/cm.m3u | 0 {channels => streams/channels}/cn.m3u~master | 0 {channels => streams/channels}/co.m3u~master | 0 {channels => streams/channels}/cr.m3u~master | 0 {channels => streams/channels}/cu.m3u~master | 0 {channels => streams/channels}/cw.m3u~master | 0 {channels => streams/channels}/cy.m3u~master | 0 {channels => streams/channels}/cz.m3u~master | 0 {channels => streams/channels}/de.m3u~master | 0 {channels => streams/channels}/de_samsung.m3u | 0 {channels => streams/channels}/dk.m3u | 0 {channels => streams/channels}/dk_samsung.m3u | 0 {channels => streams/channels}/do.m3u~master | 0 {channels => streams/channels}/dz.m3u | 0 {channels => streams/channels}/ec.m3u~master | 0 {channels => streams/channels}/ee.m3u | 0 {channels => streams/channels}/eg.m3u~master | 0 {channels => streams/channels}/es.m3u~master | 0 {channels => streams/channels}/es_rakuten.m3u | 0 {channels => streams/channels}/es_samsung.m3u | 0 {channels => streams/channels}/et.m3u | 0 {channels => streams/channels}/fi.m3u~master | 0 {channels => streams/channels}/fi_samsung.m3u | 0 {channels => streams/channels}/fj.m3u | 0 {channels => streams/channels}/fo.m3u | 0 {channels => streams/channels}/fr.m3u~master | 0 {channels => streams/channels}/fr_samsung.m3u | 0 {channels => streams/channels}/ge.m3u | 0 {channels => streams/channels}/gh.m3u | 0 {channels => streams/channels}/gl.m3u | 0 {channels => streams/channels}/gm.m3u | 0 {channels => streams/channels}/gn.m3u | 0 {channels => streams/channels}/gp.m3u | 0 {channels => streams/channels}/gq.m3u | 0 {channels => streams/channels}/gr.m3u~master | 0 {channels => streams/channels}/gt.m3u | 0 {channels => streams/channels}/hk.m3u~master | 0 {channels => streams/channels}/hn.m3u~master | 0 {channels => streams/channels}/hr.m3u | 0 {channels => streams/channels}/ht.m3u | 0 {channels => streams/channels}/hu.m3u~master | 0 {channels => streams/channels}/id.m3u~master | 0 {channels => streams/channels}/ie.m3u | 0 {channels => streams/channels}/ie_samsung.m3u | 0 {channels => streams/channels}/il.m3u~master | 0 {channels => streams/channels}/in.m3u~master | 0 {channels => streams/channels}/in_samsung.m3u | 0 {channels => streams/channels}/iq.m3u~master | 0 {channels => streams/channels}/ir.m3u~master | 0 {channels => streams/channels}/ir_telewebion.m3u~master | 0 {channels => streams/channels}/is.m3u | 0 {channels => streams/channels}/it.m3u~master | 0 {channels => streams/channels}/it_samsung.m3u | 0 {channels => streams/channels}/jm.m3u | 0 {channels => streams/channels}/jo.m3u~master | 0 {channels => streams/channels}/jp.m3u~master | 0 {channels => streams/channels}/ke.m3u~master | 0 {channels => streams/channels}/kg.m3u | 0 {channels => streams/channels}/kh.m3u | 0 {channels => streams/channels}/kp.m3u | 0 {channels => streams/channels}/kr.m3u~master | 0 {channels => streams/channels}/kw.m3u~master | 0 {channels => streams/channels}/kz.m3u | 0 {channels => streams/channels}/la.m3u | 0 {channels => streams/channels}/lb.m3u~master | 0 {channels => streams/channels}/li.m3u | 0 {channels => streams/channels}/lk.m3u | 0 {channels => streams/channels}/lt.m3u | 0 {channels => streams/channels}/lu.m3u | 0 {channels => streams/channels}/lu_samsung.m3u | 0 {channels => streams/channels}/lv.m3u | 0 {channels => streams/channels}/ly.m3u | 0 {channels => streams/channels}/ma.m3u~master | 0 {channels => streams/channels}/mc.m3u | 0 {channels => streams/channels}/md.m3u | 0 {channels => streams/channels}/me.m3u | 0 {channels => streams/channels}/mk.m3u | 0 {channels => streams/channels}/ml.m3u | 0 {channels => streams/channels}/mm.m3u~master | 0 {channels => streams/channels}/mn.m3u | 0 {channels => streams/channels}/mo.m3u | 0 {channels => streams/channels}/mq.m3u | 0 {channels => streams/channels}/mt.m3u | 0 {channels => streams/channels}/mv.m3u | 0 {channels => streams/channels}/mw.m3u | 0 {channels => streams/channels}/mx.m3u~master | 0 {channels => streams/channels}/mx_samsung.m3u | 0 {channels => streams/channels}/my.m3u~master | 0 {channels => streams/channels}/mz.m3u | 0 {channels => streams/channels}/ne.m3u | 0 {channels => streams/channels}/ng.m3u~master | 0 {channels => streams/channels}/ni.m3u | 0 {channels => streams/channels}/nl.m3u~master | 0 {channels => streams/channels}/nl_samsung.m3u | 0 {channels => streams/channels}/no.m3u | 0 {channels => streams/channels}/no_samsung.m3u | 0 {channels => streams/channels}/np.m3u | 0 {channels => streams/channels}/nz.m3u~master | 0 {channels => streams/channels}/om.m3u~master | 0 {channels => streams/channels}/pa.m3u~master | 0 {channels => streams/channels}/pe.m3u~master | 0 {channels => streams/channels}/pf.m3u | 0 {channels => streams/channels}/ph.m3u | 0 {channels => streams/channels}/pk.m3u | 0 {channels => streams/channels}/pl.m3u | 0 {channels => streams/channels}/pr.m3u~master | 0 {channels => streams/channels}/ps.m3u | 0 {channels => streams/channels}/pt.m3u | 0 {channels => streams/channels}/pt_samsung.m3u | 0 {channels => streams/channels}/py.m3u | 0 {channels => streams/channels}/qa.m3u~master | 0 {channels => streams/channels}/ro.m3u~master | 0 {channels => streams/channels}/rs.m3u | 0 {channels => streams/channels}/ru.m3u~master | 0 {channels => streams/channels}/ru_catcast.m3u~master | 0 {channels => streams/channels}/ru_okkotv.m3u | 0 {channels => streams/channels}/rw.m3u | 0 {channels => streams/channels}/sa.m3u~master | 0 {channels => streams/channels}/sd.m3u | 0 {channels => streams/channels}/se.m3u | 0 {channels => streams/channels}/se_samsung.m3u | 0 {channels => streams/channels}/sg.m3u | 0 {channels => streams/channels}/si.m3u | 0 {channels => streams/channels}/sk.m3u | 0 {channels => streams/channels}/sl.m3u | 0 {channels => streams/channels}/sm.m3u | 0 {channels => streams/channels}/sn.m3u | 0 {channels => streams/channels}/so.m3u | 0 {channels => streams/channels}/sv.m3u~master | 0 {channels => streams/channels}/sy.m3u | 0 {channels => streams/channels}/th.m3u~master | 0 {channels => streams/channels}/tj.m3u | 0 {channels => streams/channels}/tm.m3u~master | 0 {channels => streams/channels}/tn.m3u | 0 {channels => streams/channels}/tr.m3u~master | 0 {channels => streams/channels}/tt.m3u | 0 {channels => streams/channels}/tw.m3u~master | 0 {channels => streams/channels}/tz.m3u | 0 {channels => streams/channels}/ua.m3u~master | 0 {channels => streams/channels}/ug.m3u | 0 {channels => streams/channels}/uk.m3u~master | 0 {channels => streams/channels}/uk_samsung.m3u | 0 {channels => streams/channels}/uk_sportstribal.m3u | 0 {channels => streams/channels}/unsorted.m3u~master | 0 {channels => streams/channels}/us.m3u~master | 0 {channels => streams/channels}/us_adultiptv.m3u | 0 {channels => streams/channels}/us_adultswim.m3u | 0 {channels => streams/channels}/us_bumblebee.m3u~master | 0 {channels => streams/channels}/us_distro.m3u | 0 {channels => streams/channels}/us_filmon.m3u | 0 {channels => streams/channels}/us_fubo.m3u | 0 {channels => streams/channels}/us_glewedtv.m3u | 0 {channels => streams/channels}/us_imdbtv.m3u | 0 {channels => streams/channels}/us_klowdtv.m3u | 0 {channels => streams/channels}/us_localbtv.m3u | 0 {channels => streams/channels}/us_pbs.m3u | 0 {channels => streams/channels}/us_plex.m3u~master | 0 {channels => streams/channels}/us_pluto.m3u | 0 {channels => streams/channels}/us_redbox.m3u | 0 {channels => streams/channels}/us_redtraffic.m3u | 0 {channels => streams/channels}/us_roku.m3u~master | 0 {channels => streams/channels}/us_samsung.m3u | 0 {channels => streams/channels}/us_ssh101.m3u | 0 {channels => streams/channels}/us_stirr.m3u~master | 0 {channels => streams/channels}/us_tcl.m3u | 0 {channels => streams/channels}/us_tubi.m3u~master | 0 {channels => streams/channels}/us_vizio.m3u~master | 0 {channels => streams/channels}/us_xumo.m3u~master | 0 {channels => streams/channels}/uy.m3u | 0 {channels => streams/channels}/uz.m3u | 0 {channels => streams/channels}/va.m3u | 0 {channels => streams/channels}/ve.m3u~master | 0 {channels => streams/channels}/vn.m3u~master | 0 {channels => streams/channels}/vn_fptplay.m3u | 0 {channels => streams/channels}/xk.m3u | 0 {channels => streams/channels}/ye.m3u | 0 {channels => streams/channels}/zm.m3u | 0 218 files changed, 0 insertions(+), 0 deletions(-) rename {channels => streams/channels}/ad.m3u (100%) rename {channels => streams/channels}/ae.m3u~master (100%) rename {channels => streams/channels}/af.m3u (100%) rename {channels => streams/channels}/ag.m3u (100%) rename {channels => streams/channels}/al.m3u~master (100%) rename {channels => streams/channels}/am.m3u~master (100%) rename {channels => streams/channels}/ao.m3u (100%) rename {channels => streams/channels}/ar.m3u~master (100%) rename {channels => streams/channels}/at.m3u~master (100%) rename {channels => streams/channels}/at_samsung.m3u (100%) rename {channels => streams/channels}/au.m3u~master (100%) rename {channels => streams/channels}/au_samsung.m3u (100%) rename {channels => streams/channels}/aw.m3u~master (100%) rename {channels => streams/channels}/az.m3u~master (100%) rename {channels => streams/channels}/ba.m3u~master (100%) rename {channels => streams/channels}/bb.m3u (100%) rename {channels => streams/channels}/bd.m3u (100%) rename {channels => streams/channels}/bd_jagobd.m3u~master (100%) rename {channels => streams/channels}/be.m3u~master (100%) rename {channels => streams/channels}/be_samsung.m3u~master (100%) rename {channels => streams/channels}/bf.m3u (100%) rename {channels => streams/channels}/bg.m3u~master (100%) rename {channels => streams/channels}/bh.m3u (100%) rename {channels => streams/channels}/bj.m3u~master (100%) rename {channels => streams/channels}/bn.m3u (100%) rename {channels => streams/channels}/bo.m3u~master (100%) rename {channels => streams/channels}/br.m3u~master (100%) rename {channels => streams/channels}/br_pluto.m3u (100%) rename {channels => streams/channels}/br_samsung.m3u (100%) rename {channels => streams/channels}/bs.m3u~master (100%) rename {channels => streams/channels}/by.m3u~master (100%) rename {channels => streams/channels}/by_sluhay.m3u (100%) rename {channels => streams/channels}/ca.m3u~master (100%) rename {channels => streams/channels}/ca_samsung.m3u (100%) rename {channels => streams/channels}/ca_stingray.m3u (100%) rename {channels => streams/channels}/cd.m3u~master (100%) rename {channels => streams/channels}/cg.m3u (100%) rename {channels => streams/channels}/ch.m3u~master (100%) rename {channels => streams/channels}/ch_samsung.m3u (100%) rename {channels => streams/channels}/ci.m3u (100%) rename {channels => streams/channels}/cl.m3u~master (100%) rename {channels => streams/channels}/cm.m3u (100%) rename {channels => streams/channels}/cn.m3u~master (100%) rename {channels => streams/channels}/co.m3u~master (100%) rename {channels => streams/channels}/cr.m3u~master (100%) rename {channels => streams/channels}/cu.m3u~master (100%) rename {channels => streams/channels}/cw.m3u~master (100%) rename {channels => streams/channels}/cy.m3u~master (100%) rename {channels => streams/channels}/cz.m3u~master (100%) rename {channels => streams/channels}/de.m3u~master (100%) rename {channels => streams/channels}/de_samsung.m3u (100%) rename {channels => streams/channels}/dk.m3u (100%) rename {channels => streams/channels}/dk_samsung.m3u (100%) rename {channels => streams/channels}/do.m3u~master (100%) rename {channels => streams/channels}/dz.m3u (100%) rename {channels => streams/channels}/ec.m3u~master (100%) rename {channels => streams/channels}/ee.m3u (100%) rename {channels => streams/channels}/eg.m3u~master (100%) rename {channels => streams/channels}/es.m3u~master (100%) rename {channels => streams/channels}/es_rakuten.m3u (100%) rename {channels => streams/channels}/es_samsung.m3u (100%) rename {channels => streams/channels}/et.m3u (100%) rename {channels => streams/channels}/fi.m3u~master (100%) rename {channels => streams/channels}/fi_samsung.m3u (100%) rename {channels => streams/channels}/fj.m3u (100%) rename {channels => streams/channels}/fo.m3u (100%) rename {channels => streams/channels}/fr.m3u~master (100%) rename {channels => streams/channels}/fr_samsung.m3u (100%) rename {channels => streams/channels}/ge.m3u (100%) rename {channels => streams/channels}/gh.m3u (100%) rename {channels => streams/channels}/gl.m3u (100%) rename {channels => streams/channels}/gm.m3u (100%) rename {channels => streams/channels}/gn.m3u (100%) rename {channels => streams/channels}/gp.m3u (100%) rename {channels => streams/channels}/gq.m3u (100%) rename {channels => streams/channels}/gr.m3u~master (100%) rename {channels => streams/channels}/gt.m3u (100%) rename {channels => streams/channels}/hk.m3u~master (100%) rename {channels => streams/channels}/hn.m3u~master (100%) rename {channels => streams/channels}/hr.m3u (100%) rename {channels => streams/channels}/ht.m3u (100%) rename {channels => streams/channels}/hu.m3u~master (100%) rename {channels => streams/channels}/id.m3u~master (100%) rename {channels => streams/channels}/ie.m3u (100%) rename {channels => streams/channels}/ie_samsung.m3u (100%) rename {channels => streams/channels}/il.m3u~master (100%) rename {channels => streams/channels}/in.m3u~master (100%) rename {channels => streams/channels}/in_samsung.m3u (100%) rename {channels => streams/channels}/iq.m3u~master (100%) rename {channels => streams/channels}/ir.m3u~master (100%) rename {channels => streams/channels}/ir_telewebion.m3u~master (100%) rename {channels => streams/channels}/is.m3u (100%) rename {channels => streams/channels}/it.m3u~master (100%) rename {channels => streams/channels}/it_samsung.m3u (100%) rename {channels => streams/channels}/jm.m3u (100%) rename {channels => streams/channels}/jo.m3u~master (100%) rename {channels => streams/channels}/jp.m3u~master (100%) rename {channels => streams/channels}/ke.m3u~master (100%) rename {channels => streams/channels}/kg.m3u (100%) rename {channels => streams/channels}/kh.m3u (100%) rename {channels => streams/channels}/kp.m3u (100%) rename {channels => streams/channels}/kr.m3u~master (100%) rename {channels => streams/channels}/kw.m3u~master (100%) rename {channels => streams/channels}/kz.m3u (100%) rename {channels => streams/channels}/la.m3u (100%) rename {channels => streams/channels}/lb.m3u~master (100%) rename {channels => streams/channels}/li.m3u (100%) rename {channels => streams/channels}/lk.m3u (100%) rename {channels => streams/channels}/lt.m3u (100%) rename {channels => streams/channels}/lu.m3u (100%) rename {channels => streams/channels}/lu_samsung.m3u (100%) rename {channels => streams/channels}/lv.m3u (100%) rename {channels => streams/channels}/ly.m3u (100%) rename {channels => streams/channels}/ma.m3u~master (100%) rename {channels => streams/channels}/mc.m3u (100%) rename {channels => streams/channels}/md.m3u (100%) rename {channels => streams/channels}/me.m3u (100%) rename {channels => streams/channels}/mk.m3u (100%) rename {channels => streams/channels}/ml.m3u (100%) rename {channels => streams/channels}/mm.m3u~master (100%) rename {channels => streams/channels}/mn.m3u (100%) rename {channels => streams/channels}/mo.m3u (100%) rename {channels => streams/channels}/mq.m3u (100%) rename {channels => streams/channels}/mt.m3u (100%) rename {channels => streams/channels}/mv.m3u (100%) rename {channels => streams/channels}/mw.m3u (100%) rename {channels => streams/channels}/mx.m3u~master (100%) rename {channels => streams/channels}/mx_samsung.m3u (100%) rename {channels => streams/channels}/my.m3u~master (100%) rename {channels => streams/channels}/mz.m3u (100%) rename {channels => streams/channels}/ne.m3u (100%) rename {channels => streams/channels}/ng.m3u~master (100%) rename {channels => streams/channels}/ni.m3u (100%) rename {channels => streams/channels}/nl.m3u~master (100%) rename {channels => streams/channels}/nl_samsung.m3u (100%) rename {channels => streams/channels}/no.m3u (100%) rename {channels => streams/channels}/no_samsung.m3u (100%) rename {channels => streams/channels}/np.m3u (100%) rename {channels => streams/channels}/nz.m3u~master (100%) rename {channels => streams/channels}/om.m3u~master (100%) rename {channels => streams/channels}/pa.m3u~master (100%) rename {channels => streams/channels}/pe.m3u~master (100%) rename {channels => streams/channels}/pf.m3u (100%) rename {channels => streams/channels}/ph.m3u (100%) rename {channels => streams/channels}/pk.m3u (100%) rename {channels => streams/channels}/pl.m3u (100%) rename {channels => streams/channels}/pr.m3u~master (100%) rename {channels => streams/channels}/ps.m3u (100%) rename {channels => streams/channels}/pt.m3u (100%) rename {channels => streams/channels}/pt_samsung.m3u (100%) rename {channels => streams/channels}/py.m3u (100%) rename {channels => streams/channels}/qa.m3u~master (100%) rename {channels => streams/channels}/ro.m3u~master (100%) rename {channels => streams/channels}/rs.m3u (100%) rename {channels => streams/channels}/ru.m3u~master (100%) rename {channels => streams/channels}/ru_catcast.m3u~master (100%) rename {channels => streams/channels}/ru_okkotv.m3u (100%) rename {channels => streams/channels}/rw.m3u (100%) rename {channels => streams/channels}/sa.m3u~master (100%) rename {channels => streams/channels}/sd.m3u (100%) rename {channels => streams/channels}/se.m3u (100%) rename {channels => streams/channels}/se_samsung.m3u (100%) rename {channels => streams/channels}/sg.m3u (100%) rename {channels => streams/channels}/si.m3u (100%) rename {channels => streams/channels}/sk.m3u (100%) rename {channels => streams/channels}/sl.m3u (100%) rename {channels => streams/channels}/sm.m3u (100%) rename {channels => streams/channels}/sn.m3u (100%) rename {channels => streams/channels}/so.m3u (100%) rename {channels => streams/channels}/sv.m3u~master (100%) rename {channels => streams/channels}/sy.m3u (100%) rename {channels => streams/channels}/th.m3u~master (100%) rename {channels => streams/channels}/tj.m3u (100%) rename {channels => streams/channels}/tm.m3u~master (100%) rename {channels => streams/channels}/tn.m3u (100%) rename {channels => streams/channels}/tr.m3u~master (100%) rename {channels => streams/channels}/tt.m3u (100%) rename {channels => streams/channels}/tw.m3u~master (100%) rename {channels => streams/channels}/tz.m3u (100%) rename {channels => streams/channels}/ua.m3u~master (100%) rename {channels => streams/channels}/ug.m3u (100%) rename {channels => streams/channels}/uk.m3u~master (100%) rename {channels => streams/channels}/uk_samsung.m3u (100%) rename {channels => streams/channels}/uk_sportstribal.m3u (100%) rename {channels => streams/channels}/unsorted.m3u~master (100%) rename {channels => streams/channels}/us.m3u~master (100%) rename {channels => streams/channels}/us_adultiptv.m3u (100%) rename {channels => streams/channels}/us_adultswim.m3u (100%) rename {channels => streams/channels}/us_bumblebee.m3u~master (100%) rename {channels => streams/channels}/us_distro.m3u (100%) rename {channels => streams/channels}/us_filmon.m3u (100%) rename {channels => streams/channels}/us_fubo.m3u (100%) rename {channels => streams/channels}/us_glewedtv.m3u (100%) rename {channels => streams/channels}/us_imdbtv.m3u (100%) rename {channels => streams/channels}/us_klowdtv.m3u (100%) rename {channels => streams/channels}/us_localbtv.m3u (100%) rename {channels => streams/channels}/us_pbs.m3u (100%) rename {channels => streams/channels}/us_plex.m3u~master (100%) rename {channels => streams/channels}/us_pluto.m3u (100%) rename {channels => streams/channels}/us_redbox.m3u (100%) rename {channels => streams/channels}/us_redtraffic.m3u (100%) rename {channels => streams/channels}/us_roku.m3u~master (100%) rename {channels => streams/channels}/us_samsung.m3u (100%) rename {channels => streams/channels}/us_ssh101.m3u (100%) rename {channels => streams/channels}/us_stirr.m3u~master (100%) rename {channels => streams/channels}/us_tcl.m3u (100%) rename {channels => streams/channels}/us_tubi.m3u~master (100%) rename {channels => streams/channels}/us_vizio.m3u~master (100%) rename {channels => streams/channels}/us_xumo.m3u~master (100%) rename {channels => streams/channels}/uy.m3u (100%) rename {channels => streams/channels}/uz.m3u (100%) rename {channels => streams/channels}/va.m3u (100%) rename {channels => streams/channels}/ve.m3u~master (100%) rename {channels => streams/channels}/vn.m3u~master (100%) rename {channels => streams/channels}/vn_fptplay.m3u (100%) rename {channels => streams/channels}/xk.m3u (100%) rename {channels => streams/channels}/ye.m3u (100%) rename {channels => streams/channels}/zm.m3u (100%) diff --git a/channels/ad.m3u b/streams/channels/ad.m3u similarity index 100% rename from channels/ad.m3u rename to streams/channels/ad.m3u diff --git a/channels/ae.m3u~master b/streams/channels/ae.m3u~master similarity index 100% rename from channels/ae.m3u~master rename to streams/channels/ae.m3u~master diff --git a/channels/af.m3u b/streams/channels/af.m3u similarity index 100% rename from channels/af.m3u rename to streams/channels/af.m3u diff --git a/channels/ag.m3u b/streams/channels/ag.m3u similarity index 100% rename from channels/ag.m3u rename to streams/channels/ag.m3u diff --git a/channels/al.m3u~master b/streams/channels/al.m3u~master similarity index 100% rename from channels/al.m3u~master rename to streams/channels/al.m3u~master diff --git a/channels/am.m3u~master b/streams/channels/am.m3u~master similarity index 100% rename from channels/am.m3u~master rename to streams/channels/am.m3u~master diff --git a/channels/ao.m3u b/streams/channels/ao.m3u similarity index 100% rename from channels/ao.m3u rename to streams/channels/ao.m3u diff --git a/channels/ar.m3u~master b/streams/channels/ar.m3u~master similarity index 100% rename from channels/ar.m3u~master rename to streams/channels/ar.m3u~master diff --git a/channels/at.m3u~master b/streams/channels/at.m3u~master similarity index 100% rename from channels/at.m3u~master rename to streams/channels/at.m3u~master diff --git a/channels/at_samsung.m3u b/streams/channels/at_samsung.m3u similarity index 100% rename from channels/at_samsung.m3u rename to streams/channels/at_samsung.m3u diff --git a/channels/au.m3u~master b/streams/channels/au.m3u~master similarity index 100% rename from channels/au.m3u~master rename to streams/channels/au.m3u~master diff --git a/channels/au_samsung.m3u b/streams/channels/au_samsung.m3u similarity index 100% rename from channels/au_samsung.m3u rename to streams/channels/au_samsung.m3u diff --git a/channels/aw.m3u~master b/streams/channels/aw.m3u~master similarity index 100% rename from channels/aw.m3u~master rename to streams/channels/aw.m3u~master diff --git a/channels/az.m3u~master b/streams/channels/az.m3u~master similarity index 100% rename from channels/az.m3u~master rename to streams/channels/az.m3u~master diff --git a/channels/ba.m3u~master b/streams/channels/ba.m3u~master similarity index 100% rename from channels/ba.m3u~master rename to streams/channels/ba.m3u~master diff --git a/channels/bb.m3u b/streams/channels/bb.m3u similarity index 100% rename from channels/bb.m3u rename to streams/channels/bb.m3u diff --git a/channels/bd.m3u b/streams/channels/bd.m3u similarity index 100% rename from channels/bd.m3u rename to streams/channels/bd.m3u diff --git a/channels/bd_jagobd.m3u~master b/streams/channels/bd_jagobd.m3u~master similarity index 100% rename from channels/bd_jagobd.m3u~master rename to streams/channels/bd_jagobd.m3u~master diff --git a/channels/be.m3u~master b/streams/channels/be.m3u~master similarity index 100% rename from channels/be.m3u~master rename to streams/channels/be.m3u~master diff --git a/channels/be_samsung.m3u~master b/streams/channels/be_samsung.m3u~master similarity index 100% rename from channels/be_samsung.m3u~master rename to streams/channels/be_samsung.m3u~master diff --git a/channels/bf.m3u b/streams/channels/bf.m3u similarity index 100% rename from channels/bf.m3u rename to streams/channels/bf.m3u diff --git a/channels/bg.m3u~master b/streams/channels/bg.m3u~master similarity index 100% rename from channels/bg.m3u~master rename to streams/channels/bg.m3u~master diff --git a/channels/bh.m3u b/streams/channels/bh.m3u similarity index 100% rename from channels/bh.m3u rename to streams/channels/bh.m3u diff --git a/channels/bj.m3u~master b/streams/channels/bj.m3u~master similarity index 100% rename from channels/bj.m3u~master rename to streams/channels/bj.m3u~master diff --git a/channels/bn.m3u b/streams/channels/bn.m3u similarity index 100% rename from channels/bn.m3u rename to streams/channels/bn.m3u diff --git a/channels/bo.m3u~master b/streams/channels/bo.m3u~master similarity index 100% rename from channels/bo.m3u~master rename to streams/channels/bo.m3u~master diff --git a/channels/br.m3u~master b/streams/channels/br.m3u~master similarity index 100% rename from channels/br.m3u~master rename to streams/channels/br.m3u~master diff --git a/channels/br_pluto.m3u b/streams/channels/br_pluto.m3u similarity index 100% rename from channels/br_pluto.m3u rename to streams/channels/br_pluto.m3u diff --git a/channels/br_samsung.m3u b/streams/channels/br_samsung.m3u similarity index 100% rename from channels/br_samsung.m3u rename to streams/channels/br_samsung.m3u diff --git a/channels/bs.m3u~master b/streams/channels/bs.m3u~master similarity index 100% rename from channels/bs.m3u~master rename to streams/channels/bs.m3u~master diff --git a/channels/by.m3u~master b/streams/channels/by.m3u~master similarity index 100% rename from channels/by.m3u~master rename to streams/channels/by.m3u~master diff --git a/channels/by_sluhay.m3u b/streams/channels/by_sluhay.m3u similarity index 100% rename from channels/by_sluhay.m3u rename to streams/channels/by_sluhay.m3u diff --git a/channels/ca.m3u~master b/streams/channels/ca.m3u~master similarity index 100% rename from channels/ca.m3u~master rename to streams/channels/ca.m3u~master diff --git a/channels/ca_samsung.m3u b/streams/channels/ca_samsung.m3u similarity index 100% rename from channels/ca_samsung.m3u rename to streams/channels/ca_samsung.m3u diff --git a/channels/ca_stingray.m3u b/streams/channels/ca_stingray.m3u similarity index 100% rename from channels/ca_stingray.m3u rename to streams/channels/ca_stingray.m3u diff --git a/channels/cd.m3u~master b/streams/channels/cd.m3u~master similarity index 100% rename from channels/cd.m3u~master rename to streams/channels/cd.m3u~master diff --git a/channels/cg.m3u b/streams/channels/cg.m3u similarity index 100% rename from channels/cg.m3u rename to streams/channels/cg.m3u diff --git a/channels/ch.m3u~master b/streams/channels/ch.m3u~master similarity index 100% rename from channels/ch.m3u~master rename to streams/channels/ch.m3u~master diff --git a/channels/ch_samsung.m3u b/streams/channels/ch_samsung.m3u similarity index 100% rename from channels/ch_samsung.m3u rename to streams/channels/ch_samsung.m3u diff --git a/channels/ci.m3u b/streams/channels/ci.m3u similarity index 100% rename from channels/ci.m3u rename to streams/channels/ci.m3u diff --git a/channels/cl.m3u~master b/streams/channels/cl.m3u~master similarity index 100% rename from channels/cl.m3u~master rename to streams/channels/cl.m3u~master diff --git a/channels/cm.m3u b/streams/channels/cm.m3u similarity index 100% rename from channels/cm.m3u rename to streams/channels/cm.m3u diff --git a/channels/cn.m3u~master b/streams/channels/cn.m3u~master similarity index 100% rename from channels/cn.m3u~master rename to streams/channels/cn.m3u~master diff --git a/channels/co.m3u~master b/streams/channels/co.m3u~master similarity index 100% rename from channels/co.m3u~master rename to streams/channels/co.m3u~master diff --git a/channels/cr.m3u~master b/streams/channels/cr.m3u~master similarity index 100% rename from channels/cr.m3u~master rename to streams/channels/cr.m3u~master diff --git a/channels/cu.m3u~master b/streams/channels/cu.m3u~master similarity index 100% rename from channels/cu.m3u~master rename to streams/channels/cu.m3u~master diff --git a/channels/cw.m3u~master b/streams/channels/cw.m3u~master similarity index 100% rename from channels/cw.m3u~master rename to streams/channels/cw.m3u~master diff --git a/channels/cy.m3u~master b/streams/channels/cy.m3u~master similarity index 100% rename from channels/cy.m3u~master rename to streams/channels/cy.m3u~master diff --git a/channels/cz.m3u~master b/streams/channels/cz.m3u~master similarity index 100% rename from channels/cz.m3u~master rename to streams/channels/cz.m3u~master diff --git a/channels/de.m3u~master b/streams/channels/de.m3u~master similarity index 100% rename from channels/de.m3u~master rename to streams/channels/de.m3u~master diff --git a/channels/de_samsung.m3u b/streams/channels/de_samsung.m3u similarity index 100% rename from channels/de_samsung.m3u rename to streams/channels/de_samsung.m3u diff --git a/channels/dk.m3u b/streams/channels/dk.m3u similarity index 100% rename from channels/dk.m3u rename to streams/channels/dk.m3u diff --git a/channels/dk_samsung.m3u b/streams/channels/dk_samsung.m3u similarity index 100% rename from channels/dk_samsung.m3u rename to streams/channels/dk_samsung.m3u diff --git a/channels/do.m3u~master b/streams/channels/do.m3u~master similarity index 100% rename from channels/do.m3u~master rename to streams/channels/do.m3u~master diff --git a/channels/dz.m3u b/streams/channels/dz.m3u similarity index 100% rename from channels/dz.m3u rename to streams/channels/dz.m3u diff --git a/channels/ec.m3u~master b/streams/channels/ec.m3u~master similarity index 100% rename from channels/ec.m3u~master rename to streams/channels/ec.m3u~master diff --git a/channels/ee.m3u b/streams/channels/ee.m3u similarity index 100% rename from channels/ee.m3u rename to streams/channels/ee.m3u diff --git a/channels/eg.m3u~master b/streams/channels/eg.m3u~master similarity index 100% rename from channels/eg.m3u~master rename to streams/channels/eg.m3u~master diff --git a/channels/es.m3u~master b/streams/channels/es.m3u~master similarity index 100% rename from channels/es.m3u~master rename to streams/channels/es.m3u~master diff --git a/channels/es_rakuten.m3u b/streams/channels/es_rakuten.m3u similarity index 100% rename from channels/es_rakuten.m3u rename to streams/channels/es_rakuten.m3u diff --git a/channels/es_samsung.m3u b/streams/channels/es_samsung.m3u similarity index 100% rename from channels/es_samsung.m3u rename to streams/channels/es_samsung.m3u diff --git a/channels/et.m3u b/streams/channels/et.m3u similarity index 100% rename from channels/et.m3u rename to streams/channels/et.m3u diff --git a/channels/fi.m3u~master b/streams/channels/fi.m3u~master similarity index 100% rename from channels/fi.m3u~master rename to streams/channels/fi.m3u~master diff --git a/channels/fi_samsung.m3u b/streams/channels/fi_samsung.m3u similarity index 100% rename from channels/fi_samsung.m3u rename to streams/channels/fi_samsung.m3u diff --git a/channels/fj.m3u b/streams/channels/fj.m3u similarity index 100% rename from channels/fj.m3u rename to streams/channels/fj.m3u diff --git a/channels/fo.m3u b/streams/channels/fo.m3u similarity index 100% rename from channels/fo.m3u rename to streams/channels/fo.m3u diff --git a/channels/fr.m3u~master b/streams/channels/fr.m3u~master similarity index 100% rename from channels/fr.m3u~master rename to streams/channels/fr.m3u~master diff --git a/channels/fr_samsung.m3u b/streams/channels/fr_samsung.m3u similarity index 100% rename from channels/fr_samsung.m3u rename to streams/channels/fr_samsung.m3u diff --git a/channels/ge.m3u b/streams/channels/ge.m3u similarity index 100% rename from channels/ge.m3u rename to streams/channels/ge.m3u diff --git a/channels/gh.m3u b/streams/channels/gh.m3u similarity index 100% rename from channels/gh.m3u rename to streams/channels/gh.m3u diff --git a/channels/gl.m3u b/streams/channels/gl.m3u similarity index 100% rename from channels/gl.m3u rename to streams/channels/gl.m3u diff --git a/channels/gm.m3u b/streams/channels/gm.m3u similarity index 100% rename from channels/gm.m3u rename to streams/channels/gm.m3u diff --git a/channels/gn.m3u b/streams/channels/gn.m3u similarity index 100% rename from channels/gn.m3u rename to streams/channels/gn.m3u diff --git a/channels/gp.m3u b/streams/channels/gp.m3u similarity index 100% rename from channels/gp.m3u rename to streams/channels/gp.m3u diff --git a/channels/gq.m3u b/streams/channels/gq.m3u similarity index 100% rename from channels/gq.m3u rename to streams/channels/gq.m3u diff --git a/channels/gr.m3u~master b/streams/channels/gr.m3u~master similarity index 100% rename from channels/gr.m3u~master rename to streams/channels/gr.m3u~master diff --git a/channels/gt.m3u b/streams/channels/gt.m3u similarity index 100% rename from channels/gt.m3u rename to streams/channels/gt.m3u diff --git a/channels/hk.m3u~master b/streams/channels/hk.m3u~master similarity index 100% rename from channels/hk.m3u~master rename to streams/channels/hk.m3u~master diff --git a/channels/hn.m3u~master b/streams/channels/hn.m3u~master similarity index 100% rename from channels/hn.m3u~master rename to streams/channels/hn.m3u~master diff --git a/channels/hr.m3u b/streams/channels/hr.m3u similarity index 100% rename from channels/hr.m3u rename to streams/channels/hr.m3u diff --git a/channels/ht.m3u b/streams/channels/ht.m3u similarity index 100% rename from channels/ht.m3u rename to streams/channels/ht.m3u diff --git a/channels/hu.m3u~master b/streams/channels/hu.m3u~master similarity index 100% rename from channels/hu.m3u~master rename to streams/channels/hu.m3u~master diff --git a/channels/id.m3u~master b/streams/channels/id.m3u~master similarity index 100% rename from channels/id.m3u~master rename to streams/channels/id.m3u~master diff --git a/channels/ie.m3u b/streams/channels/ie.m3u similarity index 100% rename from channels/ie.m3u rename to streams/channels/ie.m3u diff --git a/channels/ie_samsung.m3u b/streams/channels/ie_samsung.m3u similarity index 100% rename from channels/ie_samsung.m3u rename to streams/channels/ie_samsung.m3u diff --git a/channels/il.m3u~master b/streams/channels/il.m3u~master similarity index 100% rename from channels/il.m3u~master rename to streams/channels/il.m3u~master diff --git a/channels/in.m3u~master b/streams/channels/in.m3u~master similarity index 100% rename from channels/in.m3u~master rename to streams/channels/in.m3u~master diff --git a/channels/in_samsung.m3u b/streams/channels/in_samsung.m3u similarity index 100% rename from channels/in_samsung.m3u rename to streams/channels/in_samsung.m3u diff --git a/channels/iq.m3u~master b/streams/channels/iq.m3u~master similarity index 100% rename from channels/iq.m3u~master rename to streams/channels/iq.m3u~master diff --git a/channels/ir.m3u~master b/streams/channels/ir.m3u~master similarity index 100% rename from channels/ir.m3u~master rename to streams/channels/ir.m3u~master diff --git a/channels/ir_telewebion.m3u~master b/streams/channels/ir_telewebion.m3u~master similarity index 100% rename from channels/ir_telewebion.m3u~master rename to streams/channels/ir_telewebion.m3u~master diff --git a/channels/is.m3u b/streams/channels/is.m3u similarity index 100% rename from channels/is.m3u rename to streams/channels/is.m3u diff --git a/channels/it.m3u~master b/streams/channels/it.m3u~master similarity index 100% rename from channels/it.m3u~master rename to streams/channels/it.m3u~master diff --git a/channels/it_samsung.m3u b/streams/channels/it_samsung.m3u similarity index 100% rename from channels/it_samsung.m3u rename to streams/channels/it_samsung.m3u diff --git a/channels/jm.m3u b/streams/channels/jm.m3u similarity index 100% rename from channels/jm.m3u rename to streams/channels/jm.m3u diff --git a/channels/jo.m3u~master b/streams/channels/jo.m3u~master similarity index 100% rename from channels/jo.m3u~master rename to streams/channels/jo.m3u~master diff --git a/channels/jp.m3u~master b/streams/channels/jp.m3u~master similarity index 100% rename from channels/jp.m3u~master rename to streams/channels/jp.m3u~master diff --git a/channels/ke.m3u~master b/streams/channels/ke.m3u~master similarity index 100% rename from channels/ke.m3u~master rename to streams/channels/ke.m3u~master diff --git a/channels/kg.m3u b/streams/channels/kg.m3u similarity index 100% rename from channels/kg.m3u rename to streams/channels/kg.m3u diff --git a/channels/kh.m3u b/streams/channels/kh.m3u similarity index 100% rename from channels/kh.m3u rename to streams/channels/kh.m3u diff --git a/channels/kp.m3u b/streams/channels/kp.m3u similarity index 100% rename from channels/kp.m3u rename to streams/channels/kp.m3u diff --git a/channels/kr.m3u~master b/streams/channels/kr.m3u~master similarity index 100% rename from channels/kr.m3u~master rename to streams/channels/kr.m3u~master diff --git a/channels/kw.m3u~master b/streams/channels/kw.m3u~master similarity index 100% rename from channels/kw.m3u~master rename to streams/channels/kw.m3u~master diff --git a/channels/kz.m3u b/streams/channels/kz.m3u similarity index 100% rename from channels/kz.m3u rename to streams/channels/kz.m3u diff --git a/channels/la.m3u b/streams/channels/la.m3u similarity index 100% rename from channels/la.m3u rename to streams/channels/la.m3u diff --git a/channels/lb.m3u~master b/streams/channels/lb.m3u~master similarity index 100% rename from channels/lb.m3u~master rename to streams/channels/lb.m3u~master diff --git a/channels/li.m3u b/streams/channels/li.m3u similarity index 100% rename from channels/li.m3u rename to streams/channels/li.m3u diff --git a/channels/lk.m3u b/streams/channels/lk.m3u similarity index 100% rename from channels/lk.m3u rename to streams/channels/lk.m3u diff --git a/channels/lt.m3u b/streams/channels/lt.m3u similarity index 100% rename from channels/lt.m3u rename to streams/channels/lt.m3u diff --git a/channels/lu.m3u b/streams/channels/lu.m3u similarity index 100% rename from channels/lu.m3u rename to streams/channels/lu.m3u diff --git a/channels/lu_samsung.m3u b/streams/channels/lu_samsung.m3u similarity index 100% rename from channels/lu_samsung.m3u rename to streams/channels/lu_samsung.m3u diff --git a/channels/lv.m3u b/streams/channels/lv.m3u similarity index 100% rename from channels/lv.m3u rename to streams/channels/lv.m3u diff --git a/channels/ly.m3u b/streams/channels/ly.m3u similarity index 100% rename from channels/ly.m3u rename to streams/channels/ly.m3u diff --git a/channels/ma.m3u~master b/streams/channels/ma.m3u~master similarity index 100% rename from channels/ma.m3u~master rename to streams/channels/ma.m3u~master diff --git a/channels/mc.m3u b/streams/channels/mc.m3u similarity index 100% rename from channels/mc.m3u rename to streams/channels/mc.m3u diff --git a/channels/md.m3u b/streams/channels/md.m3u similarity index 100% rename from channels/md.m3u rename to streams/channels/md.m3u diff --git a/channels/me.m3u b/streams/channels/me.m3u similarity index 100% rename from channels/me.m3u rename to streams/channels/me.m3u diff --git a/channels/mk.m3u b/streams/channels/mk.m3u similarity index 100% rename from channels/mk.m3u rename to streams/channels/mk.m3u diff --git a/channels/ml.m3u b/streams/channels/ml.m3u similarity index 100% rename from channels/ml.m3u rename to streams/channels/ml.m3u diff --git a/channels/mm.m3u~master b/streams/channels/mm.m3u~master similarity index 100% rename from channels/mm.m3u~master rename to streams/channels/mm.m3u~master diff --git a/channels/mn.m3u b/streams/channels/mn.m3u similarity index 100% rename from channels/mn.m3u rename to streams/channels/mn.m3u diff --git a/channels/mo.m3u b/streams/channels/mo.m3u similarity index 100% rename from channels/mo.m3u rename to streams/channels/mo.m3u diff --git a/channels/mq.m3u b/streams/channels/mq.m3u similarity index 100% rename from channels/mq.m3u rename to streams/channels/mq.m3u diff --git a/channels/mt.m3u b/streams/channels/mt.m3u similarity index 100% rename from channels/mt.m3u rename to streams/channels/mt.m3u diff --git a/channels/mv.m3u b/streams/channels/mv.m3u similarity index 100% rename from channels/mv.m3u rename to streams/channels/mv.m3u diff --git a/channels/mw.m3u b/streams/channels/mw.m3u similarity index 100% rename from channels/mw.m3u rename to streams/channels/mw.m3u diff --git a/channels/mx.m3u~master b/streams/channels/mx.m3u~master similarity index 100% rename from channels/mx.m3u~master rename to streams/channels/mx.m3u~master diff --git a/channels/mx_samsung.m3u b/streams/channels/mx_samsung.m3u similarity index 100% rename from channels/mx_samsung.m3u rename to streams/channels/mx_samsung.m3u diff --git a/channels/my.m3u~master b/streams/channels/my.m3u~master similarity index 100% rename from channels/my.m3u~master rename to streams/channels/my.m3u~master diff --git a/channels/mz.m3u b/streams/channels/mz.m3u similarity index 100% rename from channels/mz.m3u rename to streams/channels/mz.m3u diff --git a/channels/ne.m3u b/streams/channels/ne.m3u similarity index 100% rename from channels/ne.m3u rename to streams/channels/ne.m3u diff --git a/channels/ng.m3u~master b/streams/channels/ng.m3u~master similarity index 100% rename from channels/ng.m3u~master rename to streams/channels/ng.m3u~master diff --git a/channels/ni.m3u b/streams/channels/ni.m3u similarity index 100% rename from channels/ni.m3u rename to streams/channels/ni.m3u diff --git a/channels/nl.m3u~master b/streams/channels/nl.m3u~master similarity index 100% rename from channels/nl.m3u~master rename to streams/channels/nl.m3u~master diff --git a/channels/nl_samsung.m3u b/streams/channels/nl_samsung.m3u similarity index 100% rename from channels/nl_samsung.m3u rename to streams/channels/nl_samsung.m3u diff --git a/channels/no.m3u b/streams/channels/no.m3u similarity index 100% rename from channels/no.m3u rename to streams/channels/no.m3u diff --git a/channels/no_samsung.m3u b/streams/channels/no_samsung.m3u similarity index 100% rename from channels/no_samsung.m3u rename to streams/channels/no_samsung.m3u diff --git a/channels/np.m3u b/streams/channels/np.m3u similarity index 100% rename from channels/np.m3u rename to streams/channels/np.m3u diff --git a/channels/nz.m3u~master b/streams/channels/nz.m3u~master similarity index 100% rename from channels/nz.m3u~master rename to streams/channels/nz.m3u~master diff --git a/channels/om.m3u~master b/streams/channels/om.m3u~master similarity index 100% rename from channels/om.m3u~master rename to streams/channels/om.m3u~master diff --git a/channels/pa.m3u~master b/streams/channels/pa.m3u~master similarity index 100% rename from channels/pa.m3u~master rename to streams/channels/pa.m3u~master diff --git a/channels/pe.m3u~master b/streams/channels/pe.m3u~master similarity index 100% rename from channels/pe.m3u~master rename to streams/channels/pe.m3u~master diff --git a/channels/pf.m3u b/streams/channels/pf.m3u similarity index 100% rename from channels/pf.m3u rename to streams/channels/pf.m3u diff --git a/channels/ph.m3u b/streams/channels/ph.m3u similarity index 100% rename from channels/ph.m3u rename to streams/channels/ph.m3u diff --git a/channels/pk.m3u b/streams/channels/pk.m3u similarity index 100% rename from channels/pk.m3u rename to streams/channels/pk.m3u diff --git a/channels/pl.m3u b/streams/channels/pl.m3u similarity index 100% rename from channels/pl.m3u rename to streams/channels/pl.m3u diff --git a/channels/pr.m3u~master b/streams/channels/pr.m3u~master similarity index 100% rename from channels/pr.m3u~master rename to streams/channels/pr.m3u~master diff --git a/channels/ps.m3u b/streams/channels/ps.m3u similarity index 100% rename from channels/ps.m3u rename to streams/channels/ps.m3u diff --git a/channels/pt.m3u b/streams/channels/pt.m3u similarity index 100% rename from channels/pt.m3u rename to streams/channels/pt.m3u diff --git a/channels/pt_samsung.m3u b/streams/channels/pt_samsung.m3u similarity index 100% rename from channels/pt_samsung.m3u rename to streams/channels/pt_samsung.m3u diff --git a/channels/py.m3u b/streams/channels/py.m3u similarity index 100% rename from channels/py.m3u rename to streams/channels/py.m3u diff --git a/channels/qa.m3u~master b/streams/channels/qa.m3u~master similarity index 100% rename from channels/qa.m3u~master rename to streams/channels/qa.m3u~master diff --git a/channels/ro.m3u~master b/streams/channels/ro.m3u~master similarity index 100% rename from channels/ro.m3u~master rename to streams/channels/ro.m3u~master diff --git a/channels/rs.m3u b/streams/channels/rs.m3u similarity index 100% rename from channels/rs.m3u rename to streams/channels/rs.m3u diff --git a/channels/ru.m3u~master b/streams/channels/ru.m3u~master similarity index 100% rename from channels/ru.m3u~master rename to streams/channels/ru.m3u~master diff --git a/channels/ru_catcast.m3u~master b/streams/channels/ru_catcast.m3u~master similarity index 100% rename from channels/ru_catcast.m3u~master rename to streams/channels/ru_catcast.m3u~master diff --git a/channels/ru_okkotv.m3u b/streams/channels/ru_okkotv.m3u similarity index 100% rename from channels/ru_okkotv.m3u rename to streams/channels/ru_okkotv.m3u diff --git a/channels/rw.m3u b/streams/channels/rw.m3u similarity index 100% rename from channels/rw.m3u rename to streams/channels/rw.m3u diff --git a/channels/sa.m3u~master b/streams/channels/sa.m3u~master similarity index 100% rename from channels/sa.m3u~master rename to streams/channels/sa.m3u~master diff --git a/channels/sd.m3u b/streams/channels/sd.m3u similarity index 100% rename from channels/sd.m3u rename to streams/channels/sd.m3u diff --git a/channels/se.m3u b/streams/channels/se.m3u similarity index 100% rename from channels/se.m3u rename to streams/channels/se.m3u diff --git a/channels/se_samsung.m3u b/streams/channels/se_samsung.m3u similarity index 100% rename from channels/se_samsung.m3u rename to streams/channels/se_samsung.m3u diff --git a/channels/sg.m3u b/streams/channels/sg.m3u similarity index 100% rename from channels/sg.m3u rename to streams/channels/sg.m3u diff --git a/channels/si.m3u b/streams/channels/si.m3u similarity index 100% rename from channels/si.m3u rename to streams/channels/si.m3u diff --git a/channels/sk.m3u b/streams/channels/sk.m3u similarity index 100% rename from channels/sk.m3u rename to streams/channels/sk.m3u diff --git a/channels/sl.m3u b/streams/channels/sl.m3u similarity index 100% rename from channels/sl.m3u rename to streams/channels/sl.m3u diff --git a/channels/sm.m3u b/streams/channels/sm.m3u similarity index 100% rename from channels/sm.m3u rename to streams/channels/sm.m3u diff --git a/channels/sn.m3u b/streams/channels/sn.m3u similarity index 100% rename from channels/sn.m3u rename to streams/channels/sn.m3u diff --git a/channels/so.m3u b/streams/channels/so.m3u similarity index 100% rename from channels/so.m3u rename to streams/channels/so.m3u diff --git a/channels/sv.m3u~master b/streams/channels/sv.m3u~master similarity index 100% rename from channels/sv.m3u~master rename to streams/channels/sv.m3u~master diff --git a/channels/sy.m3u b/streams/channels/sy.m3u similarity index 100% rename from channels/sy.m3u rename to streams/channels/sy.m3u diff --git a/channels/th.m3u~master b/streams/channels/th.m3u~master similarity index 100% rename from channels/th.m3u~master rename to streams/channels/th.m3u~master diff --git a/channels/tj.m3u b/streams/channels/tj.m3u similarity index 100% rename from channels/tj.m3u rename to streams/channels/tj.m3u diff --git a/channels/tm.m3u~master b/streams/channels/tm.m3u~master similarity index 100% rename from channels/tm.m3u~master rename to streams/channels/tm.m3u~master diff --git a/channels/tn.m3u b/streams/channels/tn.m3u similarity index 100% rename from channels/tn.m3u rename to streams/channels/tn.m3u diff --git a/channels/tr.m3u~master b/streams/channels/tr.m3u~master similarity index 100% rename from channels/tr.m3u~master rename to streams/channels/tr.m3u~master diff --git a/channels/tt.m3u b/streams/channels/tt.m3u similarity index 100% rename from channels/tt.m3u rename to streams/channels/tt.m3u diff --git a/channels/tw.m3u~master b/streams/channels/tw.m3u~master similarity index 100% rename from channels/tw.m3u~master rename to streams/channels/tw.m3u~master diff --git a/channels/tz.m3u b/streams/channels/tz.m3u similarity index 100% rename from channels/tz.m3u rename to streams/channels/tz.m3u diff --git a/channels/ua.m3u~master b/streams/channels/ua.m3u~master similarity index 100% rename from channels/ua.m3u~master rename to streams/channels/ua.m3u~master diff --git a/channels/ug.m3u b/streams/channels/ug.m3u similarity index 100% rename from channels/ug.m3u rename to streams/channels/ug.m3u diff --git a/channels/uk.m3u~master b/streams/channels/uk.m3u~master similarity index 100% rename from channels/uk.m3u~master rename to streams/channels/uk.m3u~master diff --git a/channels/uk_samsung.m3u b/streams/channels/uk_samsung.m3u similarity index 100% rename from channels/uk_samsung.m3u rename to streams/channels/uk_samsung.m3u diff --git a/channels/uk_sportstribal.m3u b/streams/channels/uk_sportstribal.m3u similarity index 100% rename from channels/uk_sportstribal.m3u rename to streams/channels/uk_sportstribal.m3u diff --git a/channels/unsorted.m3u~master b/streams/channels/unsorted.m3u~master similarity index 100% rename from channels/unsorted.m3u~master rename to streams/channels/unsorted.m3u~master diff --git a/channels/us.m3u~master b/streams/channels/us.m3u~master similarity index 100% rename from channels/us.m3u~master rename to streams/channels/us.m3u~master diff --git a/channels/us_adultiptv.m3u b/streams/channels/us_adultiptv.m3u similarity index 100% rename from channels/us_adultiptv.m3u rename to streams/channels/us_adultiptv.m3u diff --git a/channels/us_adultswim.m3u b/streams/channels/us_adultswim.m3u similarity index 100% rename from channels/us_adultswim.m3u rename to streams/channels/us_adultswim.m3u diff --git a/channels/us_bumblebee.m3u~master b/streams/channels/us_bumblebee.m3u~master similarity index 100% rename from channels/us_bumblebee.m3u~master rename to streams/channels/us_bumblebee.m3u~master diff --git a/channels/us_distro.m3u b/streams/channels/us_distro.m3u similarity index 100% rename from channels/us_distro.m3u rename to streams/channels/us_distro.m3u diff --git a/channels/us_filmon.m3u b/streams/channels/us_filmon.m3u similarity index 100% rename from channels/us_filmon.m3u rename to streams/channels/us_filmon.m3u diff --git a/channels/us_fubo.m3u b/streams/channels/us_fubo.m3u similarity index 100% rename from channels/us_fubo.m3u rename to streams/channels/us_fubo.m3u diff --git a/channels/us_glewedtv.m3u b/streams/channels/us_glewedtv.m3u similarity index 100% rename from channels/us_glewedtv.m3u rename to streams/channels/us_glewedtv.m3u diff --git a/channels/us_imdbtv.m3u b/streams/channels/us_imdbtv.m3u similarity index 100% rename from channels/us_imdbtv.m3u rename to streams/channels/us_imdbtv.m3u diff --git a/channels/us_klowdtv.m3u b/streams/channels/us_klowdtv.m3u similarity index 100% rename from channels/us_klowdtv.m3u rename to streams/channels/us_klowdtv.m3u diff --git a/channels/us_localbtv.m3u b/streams/channels/us_localbtv.m3u similarity index 100% rename from channels/us_localbtv.m3u rename to streams/channels/us_localbtv.m3u diff --git a/channels/us_pbs.m3u b/streams/channels/us_pbs.m3u similarity index 100% rename from channels/us_pbs.m3u rename to streams/channels/us_pbs.m3u diff --git a/channels/us_plex.m3u~master b/streams/channels/us_plex.m3u~master similarity index 100% rename from channels/us_plex.m3u~master rename to streams/channels/us_plex.m3u~master diff --git a/channels/us_pluto.m3u b/streams/channels/us_pluto.m3u similarity index 100% rename from channels/us_pluto.m3u rename to streams/channels/us_pluto.m3u diff --git a/channels/us_redbox.m3u b/streams/channels/us_redbox.m3u similarity index 100% rename from channels/us_redbox.m3u rename to streams/channels/us_redbox.m3u diff --git a/channels/us_redtraffic.m3u b/streams/channels/us_redtraffic.m3u similarity index 100% rename from channels/us_redtraffic.m3u rename to streams/channels/us_redtraffic.m3u diff --git a/channels/us_roku.m3u~master b/streams/channels/us_roku.m3u~master similarity index 100% rename from channels/us_roku.m3u~master rename to streams/channels/us_roku.m3u~master diff --git a/channels/us_samsung.m3u b/streams/channels/us_samsung.m3u similarity index 100% rename from channels/us_samsung.m3u rename to streams/channels/us_samsung.m3u diff --git a/channels/us_ssh101.m3u b/streams/channels/us_ssh101.m3u similarity index 100% rename from channels/us_ssh101.m3u rename to streams/channels/us_ssh101.m3u diff --git a/channels/us_stirr.m3u~master b/streams/channels/us_stirr.m3u~master similarity index 100% rename from channels/us_stirr.m3u~master rename to streams/channels/us_stirr.m3u~master diff --git a/channels/us_tcl.m3u b/streams/channels/us_tcl.m3u similarity index 100% rename from channels/us_tcl.m3u rename to streams/channels/us_tcl.m3u diff --git a/channels/us_tubi.m3u~master b/streams/channels/us_tubi.m3u~master similarity index 100% rename from channels/us_tubi.m3u~master rename to streams/channels/us_tubi.m3u~master diff --git a/channels/us_vizio.m3u~master b/streams/channels/us_vizio.m3u~master similarity index 100% rename from channels/us_vizio.m3u~master rename to streams/channels/us_vizio.m3u~master diff --git a/channels/us_xumo.m3u~master b/streams/channels/us_xumo.m3u~master similarity index 100% rename from channels/us_xumo.m3u~master rename to streams/channels/us_xumo.m3u~master diff --git a/channels/uy.m3u b/streams/channels/uy.m3u similarity index 100% rename from channels/uy.m3u rename to streams/channels/uy.m3u diff --git a/channels/uz.m3u b/streams/channels/uz.m3u similarity index 100% rename from channels/uz.m3u rename to streams/channels/uz.m3u diff --git a/channels/va.m3u b/streams/channels/va.m3u similarity index 100% rename from channels/va.m3u rename to streams/channels/va.m3u diff --git a/channels/ve.m3u~master b/streams/channels/ve.m3u~master similarity index 100% rename from channels/ve.m3u~master rename to streams/channels/ve.m3u~master diff --git a/channels/vn.m3u~master b/streams/channels/vn.m3u~master similarity index 100% rename from channels/vn.m3u~master rename to streams/channels/vn.m3u~master diff --git a/channels/vn_fptplay.m3u b/streams/channels/vn_fptplay.m3u similarity index 100% rename from channels/vn_fptplay.m3u rename to streams/channels/vn_fptplay.m3u diff --git a/channels/xk.m3u b/streams/channels/xk.m3u similarity index 100% rename from channels/xk.m3u rename to streams/channels/xk.m3u diff --git a/channels/ye.m3u b/streams/channels/ye.m3u similarity index 100% rename from channels/ye.m3u rename to streams/channels/ye.m3u diff --git a/channels/zm.m3u b/streams/channels/zm.m3u similarity index 100% rename from channels/zm.m3u rename to streams/channels/zm.m3u From 45cc2d9350ab06f55246ecef4d7297c649d07edc Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 02:03:46 +0300 Subject: [PATCH 149/157] Revert "Move /channels to /streams" This reverts commit 83a223c060bbfcfa281d1428ead4eb1353570df9. --- {streams/channels => channels}/ad.m3u | 0 {streams/channels => channels}/ae.m3u~master | 0 {streams/channels => channels}/af.m3u | 0 {streams/channels => channels}/ag.m3u | 0 {streams/channels => channels}/al.m3u~master | 0 {streams/channels => channels}/am.m3u~master | 0 {streams/channels => channels}/ao.m3u | 0 {streams/channels => channels}/ar.m3u~master | 0 {streams/channels => channels}/at.m3u~master | 0 {streams/channels => channels}/at_samsung.m3u | 0 {streams/channels => channels}/au.m3u~master | 0 {streams/channels => channels}/au_samsung.m3u | 0 {streams/channels => channels}/aw.m3u~master | 0 {streams/channels => channels}/az.m3u~master | 0 {streams/channels => channels}/ba.m3u~master | 0 {streams/channels => channels}/bb.m3u | 0 {streams/channels => channels}/bd.m3u | 0 {streams/channels => channels}/bd_jagobd.m3u~master | 0 {streams/channels => channels}/be.m3u~master | 0 {streams/channels => channels}/be_samsung.m3u~master | 0 {streams/channels => channels}/bf.m3u | 0 {streams/channels => channels}/bg.m3u~master | 0 {streams/channels => channels}/bh.m3u | 0 {streams/channels => channels}/bj.m3u~master | 0 {streams/channels => channels}/bn.m3u | 0 {streams/channels => channels}/bo.m3u~master | 0 {streams/channels => channels}/br.m3u~master | 0 {streams/channels => channels}/br_pluto.m3u | 0 {streams/channels => channels}/br_samsung.m3u | 0 {streams/channels => channels}/bs.m3u~master | 0 {streams/channels => channels}/by.m3u~master | 0 {streams/channels => channels}/by_sluhay.m3u | 0 {streams/channels => channels}/ca.m3u~master | 0 {streams/channels => channels}/ca_samsung.m3u | 0 {streams/channels => channels}/ca_stingray.m3u | 0 {streams/channels => channels}/cd.m3u~master | 0 {streams/channels => channels}/cg.m3u | 0 {streams/channels => channels}/ch.m3u~master | 0 {streams/channels => channels}/ch_samsung.m3u | 0 {streams/channels => channels}/ci.m3u | 0 {streams/channels => channels}/cl.m3u~master | 0 {streams/channels => channels}/cm.m3u | 0 {streams/channels => channels}/cn.m3u~master | 0 {streams/channels => channels}/co.m3u~master | 0 {streams/channels => channels}/cr.m3u~master | 0 {streams/channels => channels}/cu.m3u~master | 0 {streams/channels => channels}/cw.m3u~master | 0 {streams/channels => channels}/cy.m3u~master | 0 {streams/channels => channels}/cz.m3u~master | 0 {streams/channels => channels}/de.m3u~master | 0 {streams/channels => channels}/de_samsung.m3u | 0 {streams/channels => channels}/dk.m3u | 0 {streams/channels => channels}/dk_samsung.m3u | 0 {streams/channels => channels}/do.m3u~master | 0 {streams/channels => channels}/dz.m3u | 0 {streams/channels => channels}/ec.m3u~master | 0 {streams/channels => channels}/ee.m3u | 0 {streams/channels => channels}/eg.m3u~master | 0 {streams/channels => channels}/es.m3u~master | 0 {streams/channels => channels}/es_rakuten.m3u | 0 {streams/channels => channels}/es_samsung.m3u | 0 {streams/channels => channels}/et.m3u | 0 {streams/channels => channels}/fi.m3u~master | 0 {streams/channels => channels}/fi_samsung.m3u | 0 {streams/channels => channels}/fj.m3u | 0 {streams/channels => channels}/fo.m3u | 0 {streams/channels => channels}/fr.m3u~master | 0 {streams/channels => channels}/fr_samsung.m3u | 0 {streams/channels => channels}/ge.m3u | 0 {streams/channels => channels}/gh.m3u | 0 {streams/channels => channels}/gl.m3u | 0 {streams/channels => channels}/gm.m3u | 0 {streams/channels => channels}/gn.m3u | 0 {streams/channels => channels}/gp.m3u | 0 {streams/channels => channels}/gq.m3u | 0 {streams/channels => channels}/gr.m3u~master | 0 {streams/channels => channels}/gt.m3u | 0 {streams/channels => channels}/hk.m3u~master | 0 {streams/channels => channels}/hn.m3u~master | 0 {streams/channels => channels}/hr.m3u | 0 {streams/channels => channels}/ht.m3u | 0 {streams/channels => channels}/hu.m3u~master | 0 {streams/channels => channels}/id.m3u~master | 0 {streams/channels => channels}/ie.m3u | 0 {streams/channels => channels}/ie_samsung.m3u | 0 {streams/channels => channels}/il.m3u~master | 0 {streams/channels => channels}/in.m3u~master | 0 {streams/channels => channels}/in_samsung.m3u | 0 {streams/channels => channels}/iq.m3u~master | 0 {streams/channels => channels}/ir.m3u~master | 0 {streams/channels => channels}/ir_telewebion.m3u~master | 0 {streams/channels => channels}/is.m3u | 0 {streams/channels => channels}/it.m3u~master | 0 {streams/channels => channels}/it_samsung.m3u | 0 {streams/channels => channels}/jm.m3u | 0 {streams/channels => channels}/jo.m3u~master | 0 {streams/channels => channels}/jp.m3u~master | 0 {streams/channels => channels}/ke.m3u~master | 0 {streams/channels => channels}/kg.m3u | 0 {streams/channels => channels}/kh.m3u | 0 {streams/channels => channels}/kp.m3u | 0 {streams/channels => channels}/kr.m3u~master | 0 {streams/channels => channels}/kw.m3u~master | 0 {streams/channels => channels}/kz.m3u | 0 {streams/channels => channels}/la.m3u | 0 {streams/channels => channels}/lb.m3u~master | 0 {streams/channels => channels}/li.m3u | 0 {streams/channels => channels}/lk.m3u | 0 {streams/channels => channels}/lt.m3u | 0 {streams/channels => channels}/lu.m3u | 0 {streams/channels => channels}/lu_samsung.m3u | 0 {streams/channels => channels}/lv.m3u | 0 {streams/channels => channels}/ly.m3u | 0 {streams/channels => channels}/ma.m3u~master | 0 {streams/channels => channels}/mc.m3u | 0 {streams/channels => channels}/md.m3u | 0 {streams/channels => channels}/me.m3u | 0 {streams/channels => channels}/mk.m3u | 0 {streams/channels => channels}/ml.m3u | 0 {streams/channels => channels}/mm.m3u~master | 0 {streams/channels => channels}/mn.m3u | 0 {streams/channels => channels}/mo.m3u | 0 {streams/channels => channels}/mq.m3u | 0 {streams/channels => channels}/mt.m3u | 0 {streams/channels => channels}/mv.m3u | 0 {streams/channels => channels}/mw.m3u | 0 {streams/channels => channels}/mx.m3u~master | 0 {streams/channels => channels}/mx_samsung.m3u | 0 {streams/channels => channels}/my.m3u~master | 0 {streams/channels => channels}/mz.m3u | 0 {streams/channels => channels}/ne.m3u | 0 {streams/channels => channels}/ng.m3u~master | 0 {streams/channels => channels}/ni.m3u | 0 {streams/channels => channels}/nl.m3u~master | 0 {streams/channels => channels}/nl_samsung.m3u | 0 {streams/channels => channels}/no.m3u | 0 {streams/channels => channels}/no_samsung.m3u | 0 {streams/channels => channels}/np.m3u | 0 {streams/channels => channels}/nz.m3u~master | 0 {streams/channels => channels}/om.m3u~master | 0 {streams/channels => channels}/pa.m3u~master | 0 {streams/channels => channels}/pe.m3u~master | 0 {streams/channels => channels}/pf.m3u | 0 {streams/channels => channels}/ph.m3u | 0 {streams/channels => channels}/pk.m3u | 0 {streams/channels => channels}/pl.m3u | 0 {streams/channels => channels}/pr.m3u~master | 0 {streams/channels => channels}/ps.m3u | 0 {streams/channels => channels}/pt.m3u | 0 {streams/channels => channels}/pt_samsung.m3u | 0 {streams/channels => channels}/py.m3u | 0 {streams/channels => channels}/qa.m3u~master | 0 {streams/channels => channels}/ro.m3u~master | 0 {streams/channels => channels}/rs.m3u | 0 {streams/channels => channels}/ru.m3u~master | 0 {streams/channels => channels}/ru_catcast.m3u~master | 0 {streams/channels => channels}/ru_okkotv.m3u | 0 {streams/channels => channels}/rw.m3u | 0 {streams/channels => channels}/sa.m3u~master | 0 {streams/channels => channels}/sd.m3u | 0 {streams/channels => channels}/se.m3u | 0 {streams/channels => channels}/se_samsung.m3u | 0 {streams/channels => channels}/sg.m3u | 0 {streams/channels => channels}/si.m3u | 0 {streams/channels => channels}/sk.m3u | 0 {streams/channels => channels}/sl.m3u | 0 {streams/channels => channels}/sm.m3u | 0 {streams/channels => channels}/sn.m3u | 0 {streams/channels => channels}/so.m3u | 0 {streams/channels => channels}/sv.m3u~master | 0 {streams/channels => channels}/sy.m3u | 0 {streams/channels => channels}/th.m3u~master | 0 {streams/channels => channels}/tj.m3u | 0 {streams/channels => channels}/tm.m3u~master | 0 {streams/channels => channels}/tn.m3u | 0 {streams/channels => channels}/tr.m3u~master | 0 {streams/channels => channels}/tt.m3u | 0 {streams/channels => channels}/tw.m3u~master | 0 {streams/channels => channels}/tz.m3u | 0 {streams/channels => channels}/ua.m3u~master | 0 {streams/channels => channels}/ug.m3u | 0 {streams/channels => channels}/uk.m3u~master | 0 {streams/channels => channels}/uk_samsung.m3u | 0 {streams/channels => channels}/uk_sportstribal.m3u | 0 {streams/channels => channels}/unsorted.m3u~master | 0 {streams/channels => channels}/us.m3u~master | 0 {streams/channels => channels}/us_adultiptv.m3u | 0 {streams/channels => channels}/us_adultswim.m3u | 0 {streams/channels => channels}/us_bumblebee.m3u~master | 0 {streams/channels => channels}/us_distro.m3u | 0 {streams/channels => channels}/us_filmon.m3u | 0 {streams/channels => channels}/us_fubo.m3u | 0 {streams/channels => channels}/us_glewedtv.m3u | 0 {streams/channels => channels}/us_imdbtv.m3u | 0 {streams/channels => channels}/us_klowdtv.m3u | 0 {streams/channels => channels}/us_localbtv.m3u | 0 {streams/channels => channels}/us_pbs.m3u | 0 {streams/channels => channels}/us_plex.m3u~master | 0 {streams/channels => channels}/us_pluto.m3u | 0 {streams/channels => channels}/us_redbox.m3u | 0 {streams/channels => channels}/us_redtraffic.m3u | 0 {streams/channels => channels}/us_roku.m3u~master | 0 {streams/channels => channels}/us_samsung.m3u | 0 {streams/channels => channels}/us_ssh101.m3u | 0 {streams/channels => channels}/us_stirr.m3u~master | 0 {streams/channels => channels}/us_tcl.m3u | 0 {streams/channels => channels}/us_tubi.m3u~master | 0 {streams/channels => channels}/us_vizio.m3u~master | 0 {streams/channels => channels}/us_xumo.m3u~master | 0 {streams/channels => channels}/uy.m3u | 0 {streams/channels => channels}/uz.m3u | 0 {streams/channels => channels}/va.m3u | 0 {streams/channels => channels}/ve.m3u~master | 0 {streams/channels => channels}/vn.m3u~master | 0 {streams/channels => channels}/vn_fptplay.m3u | 0 {streams/channels => channels}/xk.m3u | 0 {streams/channels => channels}/ye.m3u | 0 {streams/channels => channels}/zm.m3u | 0 218 files changed, 0 insertions(+), 0 deletions(-) rename {streams/channels => channels}/ad.m3u (100%) rename {streams/channels => channels}/ae.m3u~master (100%) rename {streams/channels => channels}/af.m3u (100%) rename {streams/channels => channels}/ag.m3u (100%) rename {streams/channels => channels}/al.m3u~master (100%) rename {streams/channels => channels}/am.m3u~master (100%) rename {streams/channels => channels}/ao.m3u (100%) rename {streams/channels => channels}/ar.m3u~master (100%) rename {streams/channels => channels}/at.m3u~master (100%) rename {streams/channels => channels}/at_samsung.m3u (100%) rename {streams/channels => channels}/au.m3u~master (100%) rename {streams/channels => channels}/au_samsung.m3u (100%) rename {streams/channels => channels}/aw.m3u~master (100%) rename {streams/channels => channels}/az.m3u~master (100%) rename {streams/channels => channels}/ba.m3u~master (100%) rename {streams/channels => channels}/bb.m3u (100%) rename {streams/channels => channels}/bd.m3u (100%) rename {streams/channels => channels}/bd_jagobd.m3u~master (100%) rename {streams/channels => channels}/be.m3u~master (100%) rename {streams/channels => channels}/be_samsung.m3u~master (100%) rename {streams/channels => channels}/bf.m3u (100%) rename {streams/channels => channels}/bg.m3u~master (100%) rename {streams/channels => channels}/bh.m3u (100%) rename {streams/channels => channels}/bj.m3u~master (100%) rename {streams/channels => channels}/bn.m3u (100%) rename {streams/channels => channels}/bo.m3u~master (100%) rename {streams/channels => channels}/br.m3u~master (100%) rename {streams/channels => channels}/br_pluto.m3u (100%) rename {streams/channels => channels}/br_samsung.m3u (100%) rename {streams/channels => channels}/bs.m3u~master (100%) rename {streams/channels => channels}/by.m3u~master (100%) rename {streams/channels => channels}/by_sluhay.m3u (100%) rename {streams/channels => channels}/ca.m3u~master (100%) rename {streams/channels => channels}/ca_samsung.m3u (100%) rename {streams/channels => channels}/ca_stingray.m3u (100%) rename {streams/channels => channels}/cd.m3u~master (100%) rename {streams/channels => channels}/cg.m3u (100%) rename {streams/channels => channels}/ch.m3u~master (100%) rename {streams/channels => channels}/ch_samsung.m3u (100%) rename {streams/channels => channels}/ci.m3u (100%) rename {streams/channels => channels}/cl.m3u~master (100%) rename {streams/channels => channels}/cm.m3u (100%) rename {streams/channels => channels}/cn.m3u~master (100%) rename {streams/channels => channels}/co.m3u~master (100%) rename {streams/channels => channels}/cr.m3u~master (100%) rename {streams/channels => channels}/cu.m3u~master (100%) rename {streams/channels => channels}/cw.m3u~master (100%) rename {streams/channels => channels}/cy.m3u~master (100%) rename {streams/channels => channels}/cz.m3u~master (100%) rename {streams/channels => channels}/de.m3u~master (100%) rename {streams/channels => channels}/de_samsung.m3u (100%) rename {streams/channels => channels}/dk.m3u (100%) rename {streams/channels => channels}/dk_samsung.m3u (100%) rename {streams/channels => channels}/do.m3u~master (100%) rename {streams/channels => channels}/dz.m3u (100%) rename {streams/channels => channels}/ec.m3u~master (100%) rename {streams/channels => channels}/ee.m3u (100%) rename {streams/channels => channels}/eg.m3u~master (100%) rename {streams/channels => channels}/es.m3u~master (100%) rename {streams/channels => channels}/es_rakuten.m3u (100%) rename {streams/channels => channels}/es_samsung.m3u (100%) rename {streams/channels => channels}/et.m3u (100%) rename {streams/channels => channels}/fi.m3u~master (100%) rename {streams/channels => channels}/fi_samsung.m3u (100%) rename {streams/channels => channels}/fj.m3u (100%) rename {streams/channels => channels}/fo.m3u (100%) rename {streams/channels => channels}/fr.m3u~master (100%) rename {streams/channels => channels}/fr_samsung.m3u (100%) rename {streams/channels => channels}/ge.m3u (100%) rename {streams/channels => channels}/gh.m3u (100%) rename {streams/channels => channels}/gl.m3u (100%) rename {streams/channels => channels}/gm.m3u (100%) rename {streams/channels => channels}/gn.m3u (100%) rename {streams/channels => channels}/gp.m3u (100%) rename {streams/channels => channels}/gq.m3u (100%) rename {streams/channels => channels}/gr.m3u~master (100%) rename {streams/channels => channels}/gt.m3u (100%) rename {streams/channels => channels}/hk.m3u~master (100%) rename {streams/channels => channels}/hn.m3u~master (100%) rename {streams/channels => channels}/hr.m3u (100%) rename {streams/channels => channels}/ht.m3u (100%) rename {streams/channels => channels}/hu.m3u~master (100%) rename {streams/channels => channels}/id.m3u~master (100%) rename {streams/channels => channels}/ie.m3u (100%) rename {streams/channels => channels}/ie_samsung.m3u (100%) rename {streams/channels => channels}/il.m3u~master (100%) rename {streams/channels => channels}/in.m3u~master (100%) rename {streams/channels => channels}/in_samsung.m3u (100%) rename {streams/channels => channels}/iq.m3u~master (100%) rename {streams/channels => channels}/ir.m3u~master (100%) rename {streams/channels => channels}/ir_telewebion.m3u~master (100%) rename {streams/channels => channels}/is.m3u (100%) rename {streams/channels => channels}/it.m3u~master (100%) rename {streams/channels => channels}/it_samsung.m3u (100%) rename {streams/channels => channels}/jm.m3u (100%) rename {streams/channels => channels}/jo.m3u~master (100%) rename {streams/channels => channels}/jp.m3u~master (100%) rename {streams/channels => channels}/ke.m3u~master (100%) rename {streams/channels => channels}/kg.m3u (100%) rename {streams/channels => channels}/kh.m3u (100%) rename {streams/channels => channels}/kp.m3u (100%) rename {streams/channels => channels}/kr.m3u~master (100%) rename {streams/channels => channels}/kw.m3u~master (100%) rename {streams/channels => channels}/kz.m3u (100%) rename {streams/channels => channels}/la.m3u (100%) rename {streams/channels => channels}/lb.m3u~master (100%) rename {streams/channels => channels}/li.m3u (100%) rename {streams/channels => channels}/lk.m3u (100%) rename {streams/channels => channels}/lt.m3u (100%) rename {streams/channels => channels}/lu.m3u (100%) rename {streams/channels => channels}/lu_samsung.m3u (100%) rename {streams/channels => channels}/lv.m3u (100%) rename {streams/channels => channels}/ly.m3u (100%) rename {streams/channels => channels}/ma.m3u~master (100%) rename {streams/channels => channels}/mc.m3u (100%) rename {streams/channels => channels}/md.m3u (100%) rename {streams/channels => channels}/me.m3u (100%) rename {streams/channels => channels}/mk.m3u (100%) rename {streams/channels => channels}/ml.m3u (100%) rename {streams/channels => channels}/mm.m3u~master (100%) rename {streams/channels => channels}/mn.m3u (100%) rename {streams/channels => channels}/mo.m3u (100%) rename {streams/channels => channels}/mq.m3u (100%) rename {streams/channels => channels}/mt.m3u (100%) rename {streams/channels => channels}/mv.m3u (100%) rename {streams/channels => channels}/mw.m3u (100%) rename {streams/channels => channels}/mx.m3u~master (100%) rename {streams/channels => channels}/mx_samsung.m3u (100%) rename {streams/channels => channels}/my.m3u~master (100%) rename {streams/channels => channels}/mz.m3u (100%) rename {streams/channels => channels}/ne.m3u (100%) rename {streams/channels => channels}/ng.m3u~master (100%) rename {streams/channels => channels}/ni.m3u (100%) rename {streams/channels => channels}/nl.m3u~master (100%) rename {streams/channels => channels}/nl_samsung.m3u (100%) rename {streams/channels => channels}/no.m3u (100%) rename {streams/channels => channels}/no_samsung.m3u (100%) rename {streams/channels => channels}/np.m3u (100%) rename {streams/channels => channels}/nz.m3u~master (100%) rename {streams/channels => channels}/om.m3u~master (100%) rename {streams/channels => channels}/pa.m3u~master (100%) rename {streams/channels => channels}/pe.m3u~master (100%) rename {streams/channels => channels}/pf.m3u (100%) rename {streams/channels => channels}/ph.m3u (100%) rename {streams/channels => channels}/pk.m3u (100%) rename {streams/channels => channels}/pl.m3u (100%) rename {streams/channels => channels}/pr.m3u~master (100%) rename {streams/channels => channels}/ps.m3u (100%) rename {streams/channels => channels}/pt.m3u (100%) rename {streams/channels => channels}/pt_samsung.m3u (100%) rename {streams/channels => channels}/py.m3u (100%) rename {streams/channels => channels}/qa.m3u~master (100%) rename {streams/channels => channels}/ro.m3u~master (100%) rename {streams/channels => channels}/rs.m3u (100%) rename {streams/channels => channels}/ru.m3u~master (100%) rename {streams/channels => channels}/ru_catcast.m3u~master (100%) rename {streams/channels => channels}/ru_okkotv.m3u (100%) rename {streams/channels => channels}/rw.m3u (100%) rename {streams/channels => channels}/sa.m3u~master (100%) rename {streams/channels => channels}/sd.m3u (100%) rename {streams/channels => channels}/se.m3u (100%) rename {streams/channels => channels}/se_samsung.m3u (100%) rename {streams/channels => channels}/sg.m3u (100%) rename {streams/channels => channels}/si.m3u (100%) rename {streams/channels => channels}/sk.m3u (100%) rename {streams/channels => channels}/sl.m3u (100%) rename {streams/channels => channels}/sm.m3u (100%) rename {streams/channels => channels}/sn.m3u (100%) rename {streams/channels => channels}/so.m3u (100%) rename {streams/channels => channels}/sv.m3u~master (100%) rename {streams/channels => channels}/sy.m3u (100%) rename {streams/channels => channels}/th.m3u~master (100%) rename {streams/channels => channels}/tj.m3u (100%) rename {streams/channels => channels}/tm.m3u~master (100%) rename {streams/channels => channels}/tn.m3u (100%) rename {streams/channels => channels}/tr.m3u~master (100%) rename {streams/channels => channels}/tt.m3u (100%) rename {streams/channels => channels}/tw.m3u~master (100%) rename {streams/channels => channels}/tz.m3u (100%) rename {streams/channels => channels}/ua.m3u~master (100%) rename {streams/channels => channels}/ug.m3u (100%) rename {streams/channels => channels}/uk.m3u~master (100%) rename {streams/channels => channels}/uk_samsung.m3u (100%) rename {streams/channels => channels}/uk_sportstribal.m3u (100%) rename {streams/channels => channels}/unsorted.m3u~master (100%) rename {streams/channels => channels}/us.m3u~master (100%) rename {streams/channels => channels}/us_adultiptv.m3u (100%) rename {streams/channels => channels}/us_adultswim.m3u (100%) rename {streams/channels => channels}/us_bumblebee.m3u~master (100%) rename {streams/channels => channels}/us_distro.m3u (100%) rename {streams/channels => channels}/us_filmon.m3u (100%) rename {streams/channels => channels}/us_fubo.m3u (100%) rename {streams/channels => channels}/us_glewedtv.m3u (100%) rename {streams/channels => channels}/us_imdbtv.m3u (100%) rename {streams/channels => channels}/us_klowdtv.m3u (100%) rename {streams/channels => channels}/us_localbtv.m3u (100%) rename {streams/channels => channels}/us_pbs.m3u (100%) rename {streams/channels => channels}/us_plex.m3u~master (100%) rename {streams/channels => channels}/us_pluto.m3u (100%) rename {streams/channels => channels}/us_redbox.m3u (100%) rename {streams/channels => channels}/us_redtraffic.m3u (100%) rename {streams/channels => channels}/us_roku.m3u~master (100%) rename {streams/channels => channels}/us_samsung.m3u (100%) rename {streams/channels => channels}/us_ssh101.m3u (100%) rename {streams/channels => channels}/us_stirr.m3u~master (100%) rename {streams/channels => channels}/us_tcl.m3u (100%) rename {streams/channels => channels}/us_tubi.m3u~master (100%) rename {streams/channels => channels}/us_vizio.m3u~master (100%) rename {streams/channels => channels}/us_xumo.m3u~master (100%) rename {streams/channels => channels}/uy.m3u (100%) rename {streams/channels => channels}/uz.m3u (100%) rename {streams/channels => channels}/va.m3u (100%) rename {streams/channels => channels}/ve.m3u~master (100%) rename {streams/channels => channels}/vn.m3u~master (100%) rename {streams/channels => channels}/vn_fptplay.m3u (100%) rename {streams/channels => channels}/xk.m3u (100%) rename {streams/channels => channels}/ye.m3u (100%) rename {streams/channels => channels}/zm.m3u (100%) diff --git a/streams/channels/ad.m3u b/channels/ad.m3u similarity index 100% rename from streams/channels/ad.m3u rename to channels/ad.m3u diff --git a/streams/channels/ae.m3u~master b/channels/ae.m3u~master similarity index 100% rename from streams/channels/ae.m3u~master rename to channels/ae.m3u~master diff --git a/streams/channels/af.m3u b/channels/af.m3u similarity index 100% rename from streams/channels/af.m3u rename to channels/af.m3u diff --git a/streams/channels/ag.m3u b/channels/ag.m3u similarity index 100% rename from streams/channels/ag.m3u rename to channels/ag.m3u diff --git a/streams/channels/al.m3u~master b/channels/al.m3u~master similarity index 100% rename from streams/channels/al.m3u~master rename to channels/al.m3u~master diff --git a/streams/channels/am.m3u~master b/channels/am.m3u~master similarity index 100% rename from streams/channels/am.m3u~master rename to channels/am.m3u~master diff --git a/streams/channels/ao.m3u b/channels/ao.m3u similarity index 100% rename from streams/channels/ao.m3u rename to channels/ao.m3u diff --git a/streams/channels/ar.m3u~master b/channels/ar.m3u~master similarity index 100% rename from streams/channels/ar.m3u~master rename to channels/ar.m3u~master diff --git a/streams/channels/at.m3u~master b/channels/at.m3u~master similarity index 100% rename from streams/channels/at.m3u~master rename to channels/at.m3u~master diff --git a/streams/channels/at_samsung.m3u b/channels/at_samsung.m3u similarity index 100% rename from streams/channels/at_samsung.m3u rename to channels/at_samsung.m3u diff --git a/streams/channels/au.m3u~master b/channels/au.m3u~master similarity index 100% rename from streams/channels/au.m3u~master rename to channels/au.m3u~master diff --git a/streams/channels/au_samsung.m3u b/channels/au_samsung.m3u similarity index 100% rename from streams/channels/au_samsung.m3u rename to channels/au_samsung.m3u diff --git a/streams/channels/aw.m3u~master b/channels/aw.m3u~master similarity index 100% rename from streams/channels/aw.m3u~master rename to channels/aw.m3u~master diff --git a/streams/channels/az.m3u~master b/channels/az.m3u~master similarity index 100% rename from streams/channels/az.m3u~master rename to channels/az.m3u~master diff --git a/streams/channels/ba.m3u~master b/channels/ba.m3u~master similarity index 100% rename from streams/channels/ba.m3u~master rename to channels/ba.m3u~master diff --git a/streams/channels/bb.m3u b/channels/bb.m3u similarity index 100% rename from streams/channels/bb.m3u rename to channels/bb.m3u diff --git a/streams/channels/bd.m3u b/channels/bd.m3u similarity index 100% rename from streams/channels/bd.m3u rename to channels/bd.m3u diff --git a/streams/channels/bd_jagobd.m3u~master b/channels/bd_jagobd.m3u~master similarity index 100% rename from streams/channels/bd_jagobd.m3u~master rename to channels/bd_jagobd.m3u~master diff --git a/streams/channels/be.m3u~master b/channels/be.m3u~master similarity index 100% rename from streams/channels/be.m3u~master rename to channels/be.m3u~master diff --git a/streams/channels/be_samsung.m3u~master b/channels/be_samsung.m3u~master similarity index 100% rename from streams/channels/be_samsung.m3u~master rename to channels/be_samsung.m3u~master diff --git a/streams/channels/bf.m3u b/channels/bf.m3u similarity index 100% rename from streams/channels/bf.m3u rename to channels/bf.m3u diff --git a/streams/channels/bg.m3u~master b/channels/bg.m3u~master similarity index 100% rename from streams/channels/bg.m3u~master rename to channels/bg.m3u~master diff --git a/streams/channels/bh.m3u b/channels/bh.m3u similarity index 100% rename from streams/channels/bh.m3u rename to channels/bh.m3u diff --git a/streams/channels/bj.m3u~master b/channels/bj.m3u~master similarity index 100% rename from streams/channels/bj.m3u~master rename to channels/bj.m3u~master diff --git a/streams/channels/bn.m3u b/channels/bn.m3u similarity index 100% rename from streams/channels/bn.m3u rename to channels/bn.m3u diff --git a/streams/channels/bo.m3u~master b/channels/bo.m3u~master similarity index 100% rename from streams/channels/bo.m3u~master rename to channels/bo.m3u~master diff --git a/streams/channels/br.m3u~master b/channels/br.m3u~master similarity index 100% rename from streams/channels/br.m3u~master rename to channels/br.m3u~master diff --git a/streams/channels/br_pluto.m3u b/channels/br_pluto.m3u similarity index 100% rename from streams/channels/br_pluto.m3u rename to channels/br_pluto.m3u diff --git a/streams/channels/br_samsung.m3u b/channels/br_samsung.m3u similarity index 100% rename from streams/channels/br_samsung.m3u rename to channels/br_samsung.m3u diff --git a/streams/channels/bs.m3u~master b/channels/bs.m3u~master similarity index 100% rename from streams/channels/bs.m3u~master rename to channels/bs.m3u~master diff --git a/streams/channels/by.m3u~master b/channels/by.m3u~master similarity index 100% rename from streams/channels/by.m3u~master rename to channels/by.m3u~master diff --git a/streams/channels/by_sluhay.m3u b/channels/by_sluhay.m3u similarity index 100% rename from streams/channels/by_sluhay.m3u rename to channels/by_sluhay.m3u diff --git a/streams/channels/ca.m3u~master b/channels/ca.m3u~master similarity index 100% rename from streams/channels/ca.m3u~master rename to channels/ca.m3u~master diff --git a/streams/channels/ca_samsung.m3u b/channels/ca_samsung.m3u similarity index 100% rename from streams/channels/ca_samsung.m3u rename to channels/ca_samsung.m3u diff --git a/streams/channels/ca_stingray.m3u b/channels/ca_stingray.m3u similarity index 100% rename from streams/channels/ca_stingray.m3u rename to channels/ca_stingray.m3u diff --git a/streams/channels/cd.m3u~master b/channels/cd.m3u~master similarity index 100% rename from streams/channels/cd.m3u~master rename to channels/cd.m3u~master diff --git a/streams/channels/cg.m3u b/channels/cg.m3u similarity index 100% rename from streams/channels/cg.m3u rename to channels/cg.m3u diff --git a/streams/channels/ch.m3u~master b/channels/ch.m3u~master similarity index 100% rename from streams/channels/ch.m3u~master rename to channels/ch.m3u~master diff --git a/streams/channels/ch_samsung.m3u b/channels/ch_samsung.m3u similarity index 100% rename from streams/channels/ch_samsung.m3u rename to channels/ch_samsung.m3u diff --git a/streams/channels/ci.m3u b/channels/ci.m3u similarity index 100% rename from streams/channels/ci.m3u rename to channels/ci.m3u diff --git a/streams/channels/cl.m3u~master b/channels/cl.m3u~master similarity index 100% rename from streams/channels/cl.m3u~master rename to channels/cl.m3u~master diff --git a/streams/channels/cm.m3u b/channels/cm.m3u similarity index 100% rename from streams/channels/cm.m3u rename to channels/cm.m3u diff --git a/streams/channels/cn.m3u~master b/channels/cn.m3u~master similarity index 100% rename from streams/channels/cn.m3u~master rename to channels/cn.m3u~master diff --git a/streams/channels/co.m3u~master b/channels/co.m3u~master similarity index 100% rename from streams/channels/co.m3u~master rename to channels/co.m3u~master diff --git a/streams/channels/cr.m3u~master b/channels/cr.m3u~master similarity index 100% rename from streams/channels/cr.m3u~master rename to channels/cr.m3u~master diff --git a/streams/channels/cu.m3u~master b/channels/cu.m3u~master similarity index 100% rename from streams/channels/cu.m3u~master rename to channels/cu.m3u~master diff --git a/streams/channels/cw.m3u~master b/channels/cw.m3u~master similarity index 100% rename from streams/channels/cw.m3u~master rename to channels/cw.m3u~master diff --git a/streams/channels/cy.m3u~master b/channels/cy.m3u~master similarity index 100% rename from streams/channels/cy.m3u~master rename to channels/cy.m3u~master diff --git a/streams/channels/cz.m3u~master b/channels/cz.m3u~master similarity index 100% rename from streams/channels/cz.m3u~master rename to channels/cz.m3u~master diff --git a/streams/channels/de.m3u~master b/channels/de.m3u~master similarity index 100% rename from streams/channels/de.m3u~master rename to channels/de.m3u~master diff --git a/streams/channels/de_samsung.m3u b/channels/de_samsung.m3u similarity index 100% rename from streams/channels/de_samsung.m3u rename to channels/de_samsung.m3u diff --git a/streams/channels/dk.m3u b/channels/dk.m3u similarity index 100% rename from streams/channels/dk.m3u rename to channels/dk.m3u diff --git a/streams/channels/dk_samsung.m3u b/channels/dk_samsung.m3u similarity index 100% rename from streams/channels/dk_samsung.m3u rename to channels/dk_samsung.m3u diff --git a/streams/channels/do.m3u~master b/channels/do.m3u~master similarity index 100% rename from streams/channels/do.m3u~master rename to channels/do.m3u~master diff --git a/streams/channels/dz.m3u b/channels/dz.m3u similarity index 100% rename from streams/channels/dz.m3u rename to channels/dz.m3u diff --git a/streams/channels/ec.m3u~master b/channels/ec.m3u~master similarity index 100% rename from streams/channels/ec.m3u~master rename to channels/ec.m3u~master diff --git a/streams/channels/ee.m3u b/channels/ee.m3u similarity index 100% rename from streams/channels/ee.m3u rename to channels/ee.m3u diff --git a/streams/channels/eg.m3u~master b/channels/eg.m3u~master similarity index 100% rename from streams/channels/eg.m3u~master rename to channels/eg.m3u~master diff --git a/streams/channels/es.m3u~master b/channels/es.m3u~master similarity index 100% rename from streams/channels/es.m3u~master rename to channels/es.m3u~master diff --git a/streams/channels/es_rakuten.m3u b/channels/es_rakuten.m3u similarity index 100% rename from streams/channels/es_rakuten.m3u rename to channels/es_rakuten.m3u diff --git a/streams/channels/es_samsung.m3u b/channels/es_samsung.m3u similarity index 100% rename from streams/channels/es_samsung.m3u rename to channels/es_samsung.m3u diff --git a/streams/channels/et.m3u b/channels/et.m3u similarity index 100% rename from streams/channels/et.m3u rename to channels/et.m3u diff --git a/streams/channels/fi.m3u~master b/channels/fi.m3u~master similarity index 100% rename from streams/channels/fi.m3u~master rename to channels/fi.m3u~master diff --git a/streams/channels/fi_samsung.m3u b/channels/fi_samsung.m3u similarity index 100% rename from streams/channels/fi_samsung.m3u rename to channels/fi_samsung.m3u diff --git a/streams/channels/fj.m3u b/channels/fj.m3u similarity index 100% rename from streams/channels/fj.m3u rename to channels/fj.m3u diff --git a/streams/channels/fo.m3u b/channels/fo.m3u similarity index 100% rename from streams/channels/fo.m3u rename to channels/fo.m3u diff --git a/streams/channels/fr.m3u~master b/channels/fr.m3u~master similarity index 100% rename from streams/channels/fr.m3u~master rename to channels/fr.m3u~master diff --git a/streams/channels/fr_samsung.m3u b/channels/fr_samsung.m3u similarity index 100% rename from streams/channels/fr_samsung.m3u rename to channels/fr_samsung.m3u diff --git a/streams/channels/ge.m3u b/channels/ge.m3u similarity index 100% rename from streams/channels/ge.m3u rename to channels/ge.m3u diff --git a/streams/channels/gh.m3u b/channels/gh.m3u similarity index 100% rename from streams/channels/gh.m3u rename to channels/gh.m3u diff --git a/streams/channels/gl.m3u b/channels/gl.m3u similarity index 100% rename from streams/channels/gl.m3u rename to channels/gl.m3u diff --git a/streams/channels/gm.m3u b/channels/gm.m3u similarity index 100% rename from streams/channels/gm.m3u rename to channels/gm.m3u diff --git a/streams/channels/gn.m3u b/channels/gn.m3u similarity index 100% rename from streams/channels/gn.m3u rename to channels/gn.m3u diff --git a/streams/channels/gp.m3u b/channels/gp.m3u similarity index 100% rename from streams/channels/gp.m3u rename to channels/gp.m3u diff --git a/streams/channels/gq.m3u b/channels/gq.m3u similarity index 100% rename from streams/channels/gq.m3u rename to channels/gq.m3u diff --git a/streams/channels/gr.m3u~master b/channels/gr.m3u~master similarity index 100% rename from streams/channels/gr.m3u~master rename to channels/gr.m3u~master diff --git a/streams/channels/gt.m3u b/channels/gt.m3u similarity index 100% rename from streams/channels/gt.m3u rename to channels/gt.m3u diff --git a/streams/channels/hk.m3u~master b/channels/hk.m3u~master similarity index 100% rename from streams/channels/hk.m3u~master rename to channels/hk.m3u~master diff --git a/streams/channels/hn.m3u~master b/channels/hn.m3u~master similarity index 100% rename from streams/channels/hn.m3u~master rename to channels/hn.m3u~master diff --git a/streams/channels/hr.m3u b/channels/hr.m3u similarity index 100% rename from streams/channels/hr.m3u rename to channels/hr.m3u diff --git a/streams/channels/ht.m3u b/channels/ht.m3u similarity index 100% rename from streams/channels/ht.m3u rename to channels/ht.m3u diff --git a/streams/channels/hu.m3u~master b/channels/hu.m3u~master similarity index 100% rename from streams/channels/hu.m3u~master rename to channels/hu.m3u~master diff --git a/streams/channels/id.m3u~master b/channels/id.m3u~master similarity index 100% rename from streams/channels/id.m3u~master rename to channels/id.m3u~master diff --git a/streams/channels/ie.m3u b/channels/ie.m3u similarity index 100% rename from streams/channels/ie.m3u rename to channels/ie.m3u diff --git a/streams/channels/ie_samsung.m3u b/channels/ie_samsung.m3u similarity index 100% rename from streams/channels/ie_samsung.m3u rename to channels/ie_samsung.m3u diff --git a/streams/channels/il.m3u~master b/channels/il.m3u~master similarity index 100% rename from streams/channels/il.m3u~master rename to channels/il.m3u~master diff --git a/streams/channels/in.m3u~master b/channels/in.m3u~master similarity index 100% rename from streams/channels/in.m3u~master rename to channels/in.m3u~master diff --git a/streams/channels/in_samsung.m3u b/channels/in_samsung.m3u similarity index 100% rename from streams/channels/in_samsung.m3u rename to channels/in_samsung.m3u diff --git a/streams/channels/iq.m3u~master b/channels/iq.m3u~master similarity index 100% rename from streams/channels/iq.m3u~master rename to channels/iq.m3u~master diff --git a/streams/channels/ir.m3u~master b/channels/ir.m3u~master similarity index 100% rename from streams/channels/ir.m3u~master rename to channels/ir.m3u~master diff --git a/streams/channels/ir_telewebion.m3u~master b/channels/ir_telewebion.m3u~master similarity index 100% rename from streams/channels/ir_telewebion.m3u~master rename to channels/ir_telewebion.m3u~master diff --git a/streams/channels/is.m3u b/channels/is.m3u similarity index 100% rename from streams/channels/is.m3u rename to channels/is.m3u diff --git a/streams/channels/it.m3u~master b/channels/it.m3u~master similarity index 100% rename from streams/channels/it.m3u~master rename to channels/it.m3u~master diff --git a/streams/channels/it_samsung.m3u b/channels/it_samsung.m3u similarity index 100% rename from streams/channels/it_samsung.m3u rename to channels/it_samsung.m3u diff --git a/streams/channels/jm.m3u b/channels/jm.m3u similarity index 100% rename from streams/channels/jm.m3u rename to channels/jm.m3u diff --git a/streams/channels/jo.m3u~master b/channels/jo.m3u~master similarity index 100% rename from streams/channels/jo.m3u~master rename to channels/jo.m3u~master diff --git a/streams/channels/jp.m3u~master b/channels/jp.m3u~master similarity index 100% rename from streams/channels/jp.m3u~master rename to channels/jp.m3u~master diff --git a/streams/channels/ke.m3u~master b/channels/ke.m3u~master similarity index 100% rename from streams/channels/ke.m3u~master rename to channels/ke.m3u~master diff --git a/streams/channels/kg.m3u b/channels/kg.m3u similarity index 100% rename from streams/channels/kg.m3u rename to channels/kg.m3u diff --git a/streams/channels/kh.m3u b/channels/kh.m3u similarity index 100% rename from streams/channels/kh.m3u rename to channels/kh.m3u diff --git a/streams/channels/kp.m3u b/channels/kp.m3u similarity index 100% rename from streams/channels/kp.m3u rename to channels/kp.m3u diff --git a/streams/channels/kr.m3u~master b/channels/kr.m3u~master similarity index 100% rename from streams/channels/kr.m3u~master rename to channels/kr.m3u~master diff --git a/streams/channels/kw.m3u~master b/channels/kw.m3u~master similarity index 100% rename from streams/channels/kw.m3u~master rename to channels/kw.m3u~master diff --git a/streams/channels/kz.m3u b/channels/kz.m3u similarity index 100% rename from streams/channels/kz.m3u rename to channels/kz.m3u diff --git a/streams/channels/la.m3u b/channels/la.m3u similarity index 100% rename from streams/channels/la.m3u rename to channels/la.m3u diff --git a/streams/channels/lb.m3u~master b/channels/lb.m3u~master similarity index 100% rename from streams/channels/lb.m3u~master rename to channels/lb.m3u~master diff --git a/streams/channels/li.m3u b/channels/li.m3u similarity index 100% rename from streams/channels/li.m3u rename to channels/li.m3u diff --git a/streams/channels/lk.m3u b/channels/lk.m3u similarity index 100% rename from streams/channels/lk.m3u rename to channels/lk.m3u diff --git a/streams/channels/lt.m3u b/channels/lt.m3u similarity index 100% rename from streams/channels/lt.m3u rename to channels/lt.m3u diff --git a/streams/channels/lu.m3u b/channels/lu.m3u similarity index 100% rename from streams/channels/lu.m3u rename to channels/lu.m3u diff --git a/streams/channels/lu_samsung.m3u b/channels/lu_samsung.m3u similarity index 100% rename from streams/channels/lu_samsung.m3u rename to channels/lu_samsung.m3u diff --git a/streams/channels/lv.m3u b/channels/lv.m3u similarity index 100% rename from streams/channels/lv.m3u rename to channels/lv.m3u diff --git a/streams/channels/ly.m3u b/channels/ly.m3u similarity index 100% rename from streams/channels/ly.m3u rename to channels/ly.m3u diff --git a/streams/channels/ma.m3u~master b/channels/ma.m3u~master similarity index 100% rename from streams/channels/ma.m3u~master rename to channels/ma.m3u~master diff --git a/streams/channels/mc.m3u b/channels/mc.m3u similarity index 100% rename from streams/channels/mc.m3u rename to channels/mc.m3u diff --git a/streams/channels/md.m3u b/channels/md.m3u similarity index 100% rename from streams/channels/md.m3u rename to channels/md.m3u diff --git a/streams/channels/me.m3u b/channels/me.m3u similarity index 100% rename from streams/channels/me.m3u rename to channels/me.m3u diff --git a/streams/channels/mk.m3u b/channels/mk.m3u similarity index 100% rename from streams/channels/mk.m3u rename to channels/mk.m3u diff --git a/streams/channels/ml.m3u b/channels/ml.m3u similarity index 100% rename from streams/channels/ml.m3u rename to channels/ml.m3u diff --git a/streams/channels/mm.m3u~master b/channels/mm.m3u~master similarity index 100% rename from streams/channels/mm.m3u~master rename to channels/mm.m3u~master diff --git a/streams/channels/mn.m3u b/channels/mn.m3u similarity index 100% rename from streams/channels/mn.m3u rename to channels/mn.m3u diff --git a/streams/channels/mo.m3u b/channels/mo.m3u similarity index 100% rename from streams/channels/mo.m3u rename to channels/mo.m3u diff --git a/streams/channels/mq.m3u b/channels/mq.m3u similarity index 100% rename from streams/channels/mq.m3u rename to channels/mq.m3u diff --git a/streams/channels/mt.m3u b/channels/mt.m3u similarity index 100% rename from streams/channels/mt.m3u rename to channels/mt.m3u diff --git a/streams/channels/mv.m3u b/channels/mv.m3u similarity index 100% rename from streams/channels/mv.m3u rename to channels/mv.m3u diff --git a/streams/channels/mw.m3u b/channels/mw.m3u similarity index 100% rename from streams/channels/mw.m3u rename to channels/mw.m3u diff --git a/streams/channels/mx.m3u~master b/channels/mx.m3u~master similarity index 100% rename from streams/channels/mx.m3u~master rename to channels/mx.m3u~master diff --git a/streams/channels/mx_samsung.m3u b/channels/mx_samsung.m3u similarity index 100% rename from streams/channels/mx_samsung.m3u rename to channels/mx_samsung.m3u diff --git a/streams/channels/my.m3u~master b/channels/my.m3u~master similarity index 100% rename from streams/channels/my.m3u~master rename to channels/my.m3u~master diff --git a/streams/channels/mz.m3u b/channels/mz.m3u similarity index 100% rename from streams/channels/mz.m3u rename to channels/mz.m3u diff --git a/streams/channels/ne.m3u b/channels/ne.m3u similarity index 100% rename from streams/channels/ne.m3u rename to channels/ne.m3u diff --git a/streams/channels/ng.m3u~master b/channels/ng.m3u~master similarity index 100% rename from streams/channels/ng.m3u~master rename to channels/ng.m3u~master diff --git a/streams/channels/ni.m3u b/channels/ni.m3u similarity index 100% rename from streams/channels/ni.m3u rename to channels/ni.m3u diff --git a/streams/channels/nl.m3u~master b/channels/nl.m3u~master similarity index 100% rename from streams/channels/nl.m3u~master rename to channels/nl.m3u~master diff --git a/streams/channels/nl_samsung.m3u b/channels/nl_samsung.m3u similarity index 100% rename from streams/channels/nl_samsung.m3u rename to channels/nl_samsung.m3u diff --git a/streams/channels/no.m3u b/channels/no.m3u similarity index 100% rename from streams/channels/no.m3u rename to channels/no.m3u diff --git a/streams/channels/no_samsung.m3u b/channels/no_samsung.m3u similarity index 100% rename from streams/channels/no_samsung.m3u rename to channels/no_samsung.m3u diff --git a/streams/channels/np.m3u b/channels/np.m3u similarity index 100% rename from streams/channels/np.m3u rename to channels/np.m3u diff --git a/streams/channels/nz.m3u~master b/channels/nz.m3u~master similarity index 100% rename from streams/channels/nz.m3u~master rename to channels/nz.m3u~master diff --git a/streams/channels/om.m3u~master b/channels/om.m3u~master similarity index 100% rename from streams/channels/om.m3u~master rename to channels/om.m3u~master diff --git a/streams/channels/pa.m3u~master b/channels/pa.m3u~master similarity index 100% rename from streams/channels/pa.m3u~master rename to channels/pa.m3u~master diff --git a/streams/channels/pe.m3u~master b/channels/pe.m3u~master similarity index 100% rename from streams/channels/pe.m3u~master rename to channels/pe.m3u~master diff --git a/streams/channels/pf.m3u b/channels/pf.m3u similarity index 100% rename from streams/channels/pf.m3u rename to channels/pf.m3u diff --git a/streams/channels/ph.m3u b/channels/ph.m3u similarity index 100% rename from streams/channels/ph.m3u rename to channels/ph.m3u diff --git a/streams/channels/pk.m3u b/channels/pk.m3u similarity index 100% rename from streams/channels/pk.m3u rename to channels/pk.m3u diff --git a/streams/channels/pl.m3u b/channels/pl.m3u similarity index 100% rename from streams/channels/pl.m3u rename to channels/pl.m3u diff --git a/streams/channels/pr.m3u~master b/channels/pr.m3u~master similarity index 100% rename from streams/channels/pr.m3u~master rename to channels/pr.m3u~master diff --git a/streams/channels/ps.m3u b/channels/ps.m3u similarity index 100% rename from streams/channels/ps.m3u rename to channels/ps.m3u diff --git a/streams/channels/pt.m3u b/channels/pt.m3u similarity index 100% rename from streams/channels/pt.m3u rename to channels/pt.m3u diff --git a/streams/channels/pt_samsung.m3u b/channels/pt_samsung.m3u similarity index 100% rename from streams/channels/pt_samsung.m3u rename to channels/pt_samsung.m3u diff --git a/streams/channels/py.m3u b/channels/py.m3u similarity index 100% rename from streams/channels/py.m3u rename to channels/py.m3u diff --git a/streams/channels/qa.m3u~master b/channels/qa.m3u~master similarity index 100% rename from streams/channels/qa.m3u~master rename to channels/qa.m3u~master diff --git a/streams/channels/ro.m3u~master b/channels/ro.m3u~master similarity index 100% rename from streams/channels/ro.m3u~master rename to channels/ro.m3u~master diff --git a/streams/channels/rs.m3u b/channels/rs.m3u similarity index 100% rename from streams/channels/rs.m3u rename to channels/rs.m3u diff --git a/streams/channels/ru.m3u~master b/channels/ru.m3u~master similarity index 100% rename from streams/channels/ru.m3u~master rename to channels/ru.m3u~master diff --git a/streams/channels/ru_catcast.m3u~master b/channels/ru_catcast.m3u~master similarity index 100% rename from streams/channels/ru_catcast.m3u~master rename to channels/ru_catcast.m3u~master diff --git a/streams/channels/ru_okkotv.m3u b/channels/ru_okkotv.m3u similarity index 100% rename from streams/channels/ru_okkotv.m3u rename to channels/ru_okkotv.m3u diff --git a/streams/channels/rw.m3u b/channels/rw.m3u similarity index 100% rename from streams/channels/rw.m3u rename to channels/rw.m3u diff --git a/streams/channels/sa.m3u~master b/channels/sa.m3u~master similarity index 100% rename from streams/channels/sa.m3u~master rename to channels/sa.m3u~master diff --git a/streams/channels/sd.m3u b/channels/sd.m3u similarity index 100% rename from streams/channels/sd.m3u rename to channels/sd.m3u diff --git a/streams/channels/se.m3u b/channels/se.m3u similarity index 100% rename from streams/channels/se.m3u rename to channels/se.m3u diff --git a/streams/channels/se_samsung.m3u b/channels/se_samsung.m3u similarity index 100% rename from streams/channels/se_samsung.m3u rename to channels/se_samsung.m3u diff --git a/streams/channels/sg.m3u b/channels/sg.m3u similarity index 100% rename from streams/channels/sg.m3u rename to channels/sg.m3u diff --git a/streams/channels/si.m3u b/channels/si.m3u similarity index 100% rename from streams/channels/si.m3u rename to channels/si.m3u diff --git a/streams/channels/sk.m3u b/channels/sk.m3u similarity index 100% rename from streams/channels/sk.m3u rename to channels/sk.m3u diff --git a/streams/channels/sl.m3u b/channels/sl.m3u similarity index 100% rename from streams/channels/sl.m3u rename to channels/sl.m3u diff --git a/streams/channels/sm.m3u b/channels/sm.m3u similarity index 100% rename from streams/channels/sm.m3u rename to channels/sm.m3u diff --git a/streams/channels/sn.m3u b/channels/sn.m3u similarity index 100% rename from streams/channels/sn.m3u rename to channels/sn.m3u diff --git a/streams/channels/so.m3u b/channels/so.m3u similarity index 100% rename from streams/channels/so.m3u rename to channels/so.m3u diff --git a/streams/channels/sv.m3u~master b/channels/sv.m3u~master similarity index 100% rename from streams/channels/sv.m3u~master rename to channels/sv.m3u~master diff --git a/streams/channels/sy.m3u b/channels/sy.m3u similarity index 100% rename from streams/channels/sy.m3u rename to channels/sy.m3u diff --git a/streams/channels/th.m3u~master b/channels/th.m3u~master similarity index 100% rename from streams/channels/th.m3u~master rename to channels/th.m3u~master diff --git a/streams/channels/tj.m3u b/channels/tj.m3u similarity index 100% rename from streams/channels/tj.m3u rename to channels/tj.m3u diff --git a/streams/channels/tm.m3u~master b/channels/tm.m3u~master similarity index 100% rename from streams/channels/tm.m3u~master rename to channels/tm.m3u~master diff --git a/streams/channels/tn.m3u b/channels/tn.m3u similarity index 100% rename from streams/channels/tn.m3u rename to channels/tn.m3u diff --git a/streams/channels/tr.m3u~master b/channels/tr.m3u~master similarity index 100% rename from streams/channels/tr.m3u~master rename to channels/tr.m3u~master diff --git a/streams/channels/tt.m3u b/channels/tt.m3u similarity index 100% rename from streams/channels/tt.m3u rename to channels/tt.m3u diff --git a/streams/channels/tw.m3u~master b/channels/tw.m3u~master similarity index 100% rename from streams/channels/tw.m3u~master rename to channels/tw.m3u~master diff --git a/streams/channels/tz.m3u b/channels/tz.m3u similarity index 100% rename from streams/channels/tz.m3u rename to channels/tz.m3u diff --git a/streams/channels/ua.m3u~master b/channels/ua.m3u~master similarity index 100% rename from streams/channels/ua.m3u~master rename to channels/ua.m3u~master diff --git a/streams/channels/ug.m3u b/channels/ug.m3u similarity index 100% rename from streams/channels/ug.m3u rename to channels/ug.m3u diff --git a/streams/channels/uk.m3u~master b/channels/uk.m3u~master similarity index 100% rename from streams/channels/uk.m3u~master rename to channels/uk.m3u~master diff --git a/streams/channels/uk_samsung.m3u b/channels/uk_samsung.m3u similarity index 100% rename from streams/channels/uk_samsung.m3u rename to channels/uk_samsung.m3u diff --git a/streams/channels/uk_sportstribal.m3u b/channels/uk_sportstribal.m3u similarity index 100% rename from streams/channels/uk_sportstribal.m3u rename to channels/uk_sportstribal.m3u diff --git a/streams/channels/unsorted.m3u~master b/channels/unsorted.m3u~master similarity index 100% rename from streams/channels/unsorted.m3u~master rename to channels/unsorted.m3u~master diff --git a/streams/channels/us.m3u~master b/channels/us.m3u~master similarity index 100% rename from streams/channels/us.m3u~master rename to channels/us.m3u~master diff --git a/streams/channels/us_adultiptv.m3u b/channels/us_adultiptv.m3u similarity index 100% rename from streams/channels/us_adultiptv.m3u rename to channels/us_adultiptv.m3u diff --git a/streams/channels/us_adultswim.m3u b/channels/us_adultswim.m3u similarity index 100% rename from streams/channels/us_adultswim.m3u rename to channels/us_adultswim.m3u diff --git a/streams/channels/us_bumblebee.m3u~master b/channels/us_bumblebee.m3u~master similarity index 100% rename from streams/channels/us_bumblebee.m3u~master rename to channels/us_bumblebee.m3u~master diff --git a/streams/channels/us_distro.m3u b/channels/us_distro.m3u similarity index 100% rename from streams/channels/us_distro.m3u rename to channels/us_distro.m3u diff --git a/streams/channels/us_filmon.m3u b/channels/us_filmon.m3u similarity index 100% rename from streams/channels/us_filmon.m3u rename to channels/us_filmon.m3u diff --git a/streams/channels/us_fubo.m3u b/channels/us_fubo.m3u similarity index 100% rename from streams/channels/us_fubo.m3u rename to channels/us_fubo.m3u diff --git a/streams/channels/us_glewedtv.m3u b/channels/us_glewedtv.m3u similarity index 100% rename from streams/channels/us_glewedtv.m3u rename to channels/us_glewedtv.m3u diff --git a/streams/channels/us_imdbtv.m3u b/channels/us_imdbtv.m3u similarity index 100% rename from streams/channels/us_imdbtv.m3u rename to channels/us_imdbtv.m3u diff --git a/streams/channels/us_klowdtv.m3u b/channels/us_klowdtv.m3u similarity index 100% rename from streams/channels/us_klowdtv.m3u rename to channels/us_klowdtv.m3u diff --git a/streams/channels/us_localbtv.m3u b/channels/us_localbtv.m3u similarity index 100% rename from streams/channels/us_localbtv.m3u rename to channels/us_localbtv.m3u diff --git a/streams/channels/us_pbs.m3u b/channels/us_pbs.m3u similarity index 100% rename from streams/channels/us_pbs.m3u rename to channels/us_pbs.m3u diff --git a/streams/channels/us_plex.m3u~master b/channels/us_plex.m3u~master similarity index 100% rename from streams/channels/us_plex.m3u~master rename to channels/us_plex.m3u~master diff --git a/streams/channels/us_pluto.m3u b/channels/us_pluto.m3u similarity index 100% rename from streams/channels/us_pluto.m3u rename to channels/us_pluto.m3u diff --git a/streams/channels/us_redbox.m3u b/channels/us_redbox.m3u similarity index 100% rename from streams/channels/us_redbox.m3u rename to channels/us_redbox.m3u diff --git a/streams/channels/us_redtraffic.m3u b/channels/us_redtraffic.m3u similarity index 100% rename from streams/channels/us_redtraffic.m3u rename to channels/us_redtraffic.m3u diff --git a/streams/channels/us_roku.m3u~master b/channels/us_roku.m3u~master similarity index 100% rename from streams/channels/us_roku.m3u~master rename to channels/us_roku.m3u~master diff --git a/streams/channels/us_samsung.m3u b/channels/us_samsung.m3u similarity index 100% rename from streams/channels/us_samsung.m3u rename to channels/us_samsung.m3u diff --git a/streams/channels/us_ssh101.m3u b/channels/us_ssh101.m3u similarity index 100% rename from streams/channels/us_ssh101.m3u rename to channels/us_ssh101.m3u diff --git a/streams/channels/us_stirr.m3u~master b/channels/us_stirr.m3u~master similarity index 100% rename from streams/channels/us_stirr.m3u~master rename to channels/us_stirr.m3u~master diff --git a/streams/channels/us_tcl.m3u b/channels/us_tcl.m3u similarity index 100% rename from streams/channels/us_tcl.m3u rename to channels/us_tcl.m3u diff --git a/streams/channels/us_tubi.m3u~master b/channels/us_tubi.m3u~master similarity index 100% rename from streams/channels/us_tubi.m3u~master rename to channels/us_tubi.m3u~master diff --git a/streams/channels/us_vizio.m3u~master b/channels/us_vizio.m3u~master similarity index 100% rename from streams/channels/us_vizio.m3u~master rename to channels/us_vizio.m3u~master diff --git a/streams/channels/us_xumo.m3u~master b/channels/us_xumo.m3u~master similarity index 100% rename from streams/channels/us_xumo.m3u~master rename to channels/us_xumo.m3u~master diff --git a/streams/channels/uy.m3u b/channels/uy.m3u similarity index 100% rename from streams/channels/uy.m3u rename to channels/uy.m3u diff --git a/streams/channels/uz.m3u b/channels/uz.m3u similarity index 100% rename from streams/channels/uz.m3u rename to channels/uz.m3u diff --git a/streams/channels/va.m3u b/channels/va.m3u similarity index 100% rename from streams/channels/va.m3u rename to channels/va.m3u diff --git a/streams/channels/ve.m3u~master b/channels/ve.m3u~master similarity index 100% rename from streams/channels/ve.m3u~master rename to channels/ve.m3u~master diff --git a/streams/channels/vn.m3u~master b/channels/vn.m3u~master similarity index 100% rename from streams/channels/vn.m3u~master rename to channels/vn.m3u~master diff --git a/streams/channels/vn_fptplay.m3u b/channels/vn_fptplay.m3u similarity index 100% rename from streams/channels/vn_fptplay.m3u rename to channels/vn_fptplay.m3u diff --git a/streams/channels/xk.m3u b/channels/xk.m3u similarity index 100% rename from streams/channels/xk.m3u rename to channels/xk.m3u diff --git a/streams/channels/ye.m3u b/channels/ye.m3u similarity index 100% rename from streams/channels/ye.m3u rename to channels/ye.m3u diff --git a/streams/channels/zm.m3u b/channels/zm.m3u similarity index 100% rename from streams/channels/zm.m3u rename to channels/zm.m3u From c033305cdc11f4dba8cf56f5836d34c9ec0769f7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 02:06:03 +0300 Subject: [PATCH 150/157] Update /channels --- channels/{ae.m3u~master => ae.m3u} | 0 channels/{al.m3u~master => al.m3u} | 0 channels/{am.m3u~master => am.m3u} | 0 channels/{ar.m3u~master => ar.m3u} | 0 channels/{at.m3u~master => at.m3u} | 0 channels/{au.m3u~master => au.m3u} | 0 channels/{aw.m3u~master => aw.m3u} | 0 channels/{az.m3u~master => az.m3u} | 0 channels/{ba.m3u~master => ba.m3u} | 0 .../{bd_jagobd.m3u~master => bd_jagobd.m3u} | 0 channels/{be.m3u~master => be.m3u} | 0 .../{be_samsung.m3u~master => be_samsung.m3u} | 0 channels/{bg.m3u~master => bg.m3u} | 0 channels/{bj.m3u~master => bj.m3u} | 0 channels/{bo.m3u~master => bo.m3u} | 0 channels/{br.m3u~master => br.m3u} | 0 channels/{bs.m3u~master => bs.m3u} | 0 channels/{by.m3u~master => by.m3u} | 0 channels/{ca.m3u~master => ca.m3u} | 0 channels/{cd.m3u~master => cd.m3u} | 0 channels/{ch.m3u~master => ch.m3u} | 0 channels/{cl.m3u~master => cl.m3u} | 0 channels/{cn.m3u~master => cn.m3u} | 0 channels/{co.m3u~master => co.m3u} | 0 channels/{cr.m3u~master => cr.m3u} | 0 channels/{cu.m3u~master => cu.m3u} | 0 channels/{cw.m3u~master => cw.m3u} | 0 channels/{cy.m3u~master => cy.m3u} | 0 channels/{cz.m3u~master => cz.m3u} | 0 channels/{de.m3u~master => de.m3u} | 0 channels/{do.m3u~master => do.m3u} | 0 channels/{ec.m3u~master => ec.m3u} | 0 channels/{eg.m3u~master => eg.m3u} | 0 channels/{es.m3u~master => es.m3u} | 0 channels/{fi.m3u~master => fi.m3u} | 0 channels/{fr.m3u~master => fr.m3u} | 0 channels/{gr.m3u~master => gr.m3u} | 0 channels/{hk.m3u~master => hk.m3u} | 0 channels/{hn.m3u~master => hn.m3u} | 0 channels/{hu.m3u~master => hu.m3u} | 0 channels/{id.m3u~master => id.m3u} | 0 channels/{il.m3u~master => il.m3u} | 0 channels/{in.m3u~master => in.m3u} | 0 channels/{iq.m3u~master => iq.m3u} | 0 channels/{ir.m3u~master => ir.m3u} | 0 ...elewebion.m3u~master => ir_telewebion.m3u} | 0 channels/{it.m3u~master => it.m3u} | 0 channels/{jo.m3u~master => jo.m3u} | 0 channels/{jp.m3u~master => jp.m3u} | 0 channels/{ke.m3u~master => ke.m3u} | 0 channels/{kr.m3u~master => kr.m3u} | 0 channels/{kw.m3u~master => kw.m3u} | 0 channels/{lb.m3u~master => lb.m3u} | 0 channels/{ma.m3u~master => ma.m3u} | 0 channels/{mm.m3u~master => mm.m3u} | 0 channels/{mx.m3u~master => mx.m3u} | 0 channels/{my.m3u~master => my.m3u} | 0 channels/{ng.m3u~master => ng.m3u} | 0 channels/{nl.m3u~master => nl.m3u} | 0 channels/{nz.m3u~master => nz.m3u} | 0 channels/{om.m3u~master => om.m3u} | 0 channels/{pa.m3u~master => pa.m3u} | 0 channels/{pe.m3u~master => pe.m3u} | 0 channels/{pr.m3u~master => pr.m3u} | 0 channels/{qa.m3u~master => qa.m3u} | 0 channels/{ro.m3u~master => ro.m3u} | 0 channels/{ru.m3u~master => ru.m3u} | 0 .../{ru_catcast.m3u~master => ru_catcast.m3u} | 0 channels/{sa.m3u~master => sa.m3u} | 0 channels/{sv.m3u~master => sv.m3u} | 0 channels/{th.m3u~master => th.m3u} | 0 channels/{tm.m3u~master => tm.m3u} | 0 channels/{tr.m3u~master => tr.m3u} | 0 channels/{tw.m3u~master => tw.m3u} | 0 channels/{ua.m3u~master => ua.m3u} | 0 channels/{uk.m3u~master => uk.m3u} | 0 .../{unsorted.m3u~master => unsorted.m3u} | 0 channels/{us.m3u~master => us.m3u} | 0 ..._bumblebee.m3u~master => us_bumblebee.m3u} | 0 channels/{us_plex.m3u~master => us_plex.m3u} | 0 channels/{us_roku.m3u~master => us_roku.m3u} | 0 .../{us_stirr.m3u~master => us_stirr.m3u} | 0 channels/{us_tubi.m3u~master => us_tubi.m3u} | 0 .../{us_vizio.m3u~master => us_vizio.m3u} | 0 channels/{us_xumo.m3u~master => us_xumo.m3u} | 0 channels/{ve.m3u~master => ve.m3u} | 0 channels/{vn.m3u~master => vn.m3u} | 0 streams/br_pluto.m3u | 123 - streams/us_pluto.m3u | 2159 ----------------- 89 files changed, 2282 deletions(-) rename channels/{ae.m3u~master => ae.m3u} (100%) rename channels/{al.m3u~master => al.m3u} (100%) rename channels/{am.m3u~master => am.m3u} (100%) rename channels/{ar.m3u~master => ar.m3u} (100%) rename channels/{at.m3u~master => at.m3u} (100%) rename channels/{au.m3u~master => au.m3u} (100%) rename channels/{aw.m3u~master => aw.m3u} (100%) rename channels/{az.m3u~master => az.m3u} (100%) rename channels/{ba.m3u~master => ba.m3u} (100%) rename channels/{bd_jagobd.m3u~master => bd_jagobd.m3u} (100%) rename channels/{be.m3u~master => be.m3u} (100%) rename channels/{be_samsung.m3u~master => be_samsung.m3u} (100%) rename channels/{bg.m3u~master => bg.m3u} (100%) rename channels/{bj.m3u~master => bj.m3u} (100%) rename channels/{bo.m3u~master => bo.m3u} (100%) rename channels/{br.m3u~master => br.m3u} (100%) rename channels/{bs.m3u~master => bs.m3u} (100%) rename channels/{by.m3u~master => by.m3u} (100%) rename channels/{ca.m3u~master => ca.m3u} (100%) rename channels/{cd.m3u~master => cd.m3u} (100%) rename channels/{ch.m3u~master => ch.m3u} (100%) rename channels/{cl.m3u~master => cl.m3u} (100%) rename channels/{cn.m3u~master => cn.m3u} (100%) rename channels/{co.m3u~master => co.m3u} (100%) rename channels/{cr.m3u~master => cr.m3u} (100%) rename channels/{cu.m3u~master => cu.m3u} (100%) rename channels/{cw.m3u~master => cw.m3u} (100%) rename channels/{cy.m3u~master => cy.m3u} (100%) rename channels/{cz.m3u~master => cz.m3u} (100%) rename channels/{de.m3u~master => de.m3u} (100%) rename channels/{do.m3u~master => do.m3u} (100%) rename channels/{ec.m3u~master => ec.m3u} (100%) rename channels/{eg.m3u~master => eg.m3u} (100%) rename channels/{es.m3u~master => es.m3u} (100%) rename channels/{fi.m3u~master => fi.m3u} (100%) rename channels/{fr.m3u~master => fr.m3u} (100%) rename channels/{gr.m3u~master => gr.m3u} (100%) rename channels/{hk.m3u~master => hk.m3u} (100%) rename channels/{hn.m3u~master => hn.m3u} (100%) rename channels/{hu.m3u~master => hu.m3u} (100%) rename channels/{id.m3u~master => id.m3u} (100%) rename channels/{il.m3u~master => il.m3u} (100%) rename channels/{in.m3u~master => in.m3u} (100%) rename channels/{iq.m3u~master => iq.m3u} (100%) rename channels/{ir.m3u~master => ir.m3u} (100%) rename channels/{ir_telewebion.m3u~master => ir_telewebion.m3u} (100%) rename channels/{it.m3u~master => it.m3u} (100%) rename channels/{jo.m3u~master => jo.m3u} (100%) rename channels/{jp.m3u~master => jp.m3u} (100%) rename channels/{ke.m3u~master => ke.m3u} (100%) rename channels/{kr.m3u~master => kr.m3u} (100%) rename channels/{kw.m3u~master => kw.m3u} (100%) rename channels/{lb.m3u~master => lb.m3u} (100%) rename channels/{ma.m3u~master => ma.m3u} (100%) rename channels/{mm.m3u~master => mm.m3u} (100%) rename channels/{mx.m3u~master => mx.m3u} (100%) rename channels/{my.m3u~master => my.m3u} (100%) rename channels/{ng.m3u~master => ng.m3u} (100%) rename channels/{nl.m3u~master => nl.m3u} (100%) rename channels/{nz.m3u~master => nz.m3u} (100%) rename channels/{om.m3u~master => om.m3u} (100%) rename channels/{pa.m3u~master => pa.m3u} (100%) rename channels/{pe.m3u~master => pe.m3u} (100%) rename channels/{pr.m3u~master => pr.m3u} (100%) rename channels/{qa.m3u~master => qa.m3u} (100%) rename channels/{ro.m3u~master => ro.m3u} (100%) rename channels/{ru.m3u~master => ru.m3u} (100%) rename channels/{ru_catcast.m3u~master => ru_catcast.m3u} (100%) rename channels/{sa.m3u~master => sa.m3u} (100%) rename channels/{sv.m3u~master => sv.m3u} (100%) rename channels/{th.m3u~master => th.m3u} (100%) rename channels/{tm.m3u~master => tm.m3u} (100%) rename channels/{tr.m3u~master => tr.m3u} (100%) rename channels/{tw.m3u~master => tw.m3u} (100%) rename channels/{ua.m3u~master => ua.m3u} (100%) rename channels/{uk.m3u~master => uk.m3u} (100%) rename channels/{unsorted.m3u~master => unsorted.m3u} (100%) rename channels/{us.m3u~master => us.m3u} (100%) rename channels/{us_bumblebee.m3u~master => us_bumblebee.m3u} (100%) rename channels/{us_plex.m3u~master => us_plex.m3u} (100%) rename channels/{us_roku.m3u~master => us_roku.m3u} (100%) rename channels/{us_stirr.m3u~master => us_stirr.m3u} (100%) rename channels/{us_tubi.m3u~master => us_tubi.m3u} (100%) rename channels/{us_vizio.m3u~master => us_vizio.m3u} (100%) rename channels/{us_xumo.m3u~master => us_xumo.m3u} (100%) rename channels/{ve.m3u~master => ve.m3u} (100%) rename channels/{vn.m3u~master => vn.m3u} (100%) delete mode 100644 streams/br_pluto.m3u delete mode 100644 streams/us_pluto.m3u diff --git a/channels/ae.m3u~master b/channels/ae.m3u similarity index 100% rename from channels/ae.m3u~master rename to channels/ae.m3u diff --git a/channels/al.m3u~master b/channels/al.m3u similarity index 100% rename from channels/al.m3u~master rename to channels/al.m3u diff --git a/channels/am.m3u~master b/channels/am.m3u similarity index 100% rename from channels/am.m3u~master rename to channels/am.m3u diff --git a/channels/ar.m3u~master b/channels/ar.m3u similarity index 100% rename from channels/ar.m3u~master rename to channels/ar.m3u diff --git a/channels/at.m3u~master b/channels/at.m3u similarity index 100% rename from channels/at.m3u~master rename to channels/at.m3u diff --git a/channels/au.m3u~master b/channels/au.m3u similarity index 100% rename from channels/au.m3u~master rename to channels/au.m3u diff --git a/channels/aw.m3u~master b/channels/aw.m3u similarity index 100% rename from channels/aw.m3u~master rename to channels/aw.m3u diff --git a/channels/az.m3u~master b/channels/az.m3u similarity index 100% rename from channels/az.m3u~master rename to channels/az.m3u diff --git a/channels/ba.m3u~master b/channels/ba.m3u similarity index 100% rename from channels/ba.m3u~master rename to channels/ba.m3u diff --git a/channels/bd_jagobd.m3u~master b/channels/bd_jagobd.m3u similarity index 100% rename from channels/bd_jagobd.m3u~master rename to channels/bd_jagobd.m3u diff --git a/channels/be.m3u~master b/channels/be.m3u similarity index 100% rename from channels/be.m3u~master rename to channels/be.m3u diff --git a/channels/be_samsung.m3u~master b/channels/be_samsung.m3u similarity index 100% rename from channels/be_samsung.m3u~master rename to channels/be_samsung.m3u diff --git a/channels/bg.m3u~master b/channels/bg.m3u similarity index 100% rename from channels/bg.m3u~master rename to channels/bg.m3u diff --git a/channels/bj.m3u~master b/channels/bj.m3u similarity index 100% rename from channels/bj.m3u~master rename to channels/bj.m3u diff --git a/channels/bo.m3u~master b/channels/bo.m3u similarity index 100% rename from channels/bo.m3u~master rename to channels/bo.m3u diff --git a/channels/br.m3u~master b/channels/br.m3u similarity index 100% rename from channels/br.m3u~master rename to channels/br.m3u diff --git a/channels/bs.m3u~master b/channels/bs.m3u similarity index 100% rename from channels/bs.m3u~master rename to channels/bs.m3u diff --git a/channels/by.m3u~master b/channels/by.m3u similarity index 100% rename from channels/by.m3u~master rename to channels/by.m3u diff --git a/channels/ca.m3u~master b/channels/ca.m3u similarity index 100% rename from channels/ca.m3u~master rename to channels/ca.m3u diff --git a/channels/cd.m3u~master b/channels/cd.m3u similarity index 100% rename from channels/cd.m3u~master rename to channels/cd.m3u diff --git a/channels/ch.m3u~master b/channels/ch.m3u similarity index 100% rename from channels/ch.m3u~master rename to channels/ch.m3u diff --git a/channels/cl.m3u~master b/channels/cl.m3u similarity index 100% rename from channels/cl.m3u~master rename to channels/cl.m3u diff --git a/channels/cn.m3u~master b/channels/cn.m3u similarity index 100% rename from channels/cn.m3u~master rename to channels/cn.m3u diff --git a/channels/co.m3u~master b/channels/co.m3u similarity index 100% rename from channels/co.m3u~master rename to channels/co.m3u diff --git a/channels/cr.m3u~master b/channels/cr.m3u similarity index 100% rename from channels/cr.m3u~master rename to channels/cr.m3u diff --git a/channels/cu.m3u~master b/channels/cu.m3u similarity index 100% rename from channels/cu.m3u~master rename to channels/cu.m3u diff --git a/channels/cw.m3u~master b/channels/cw.m3u similarity index 100% rename from channels/cw.m3u~master rename to channels/cw.m3u diff --git a/channels/cy.m3u~master b/channels/cy.m3u similarity index 100% rename from channels/cy.m3u~master rename to channels/cy.m3u diff --git a/channels/cz.m3u~master b/channels/cz.m3u similarity index 100% rename from channels/cz.m3u~master rename to channels/cz.m3u diff --git a/channels/de.m3u~master b/channels/de.m3u similarity index 100% rename from channels/de.m3u~master rename to channels/de.m3u diff --git a/channels/do.m3u~master b/channels/do.m3u similarity index 100% rename from channels/do.m3u~master rename to channels/do.m3u diff --git a/channels/ec.m3u~master b/channels/ec.m3u similarity index 100% rename from channels/ec.m3u~master rename to channels/ec.m3u diff --git a/channels/eg.m3u~master b/channels/eg.m3u similarity index 100% rename from channels/eg.m3u~master rename to channels/eg.m3u diff --git a/channels/es.m3u~master b/channels/es.m3u similarity index 100% rename from channels/es.m3u~master rename to channels/es.m3u diff --git a/channels/fi.m3u~master b/channels/fi.m3u similarity index 100% rename from channels/fi.m3u~master rename to channels/fi.m3u diff --git a/channels/fr.m3u~master b/channels/fr.m3u similarity index 100% rename from channels/fr.m3u~master rename to channels/fr.m3u diff --git a/channels/gr.m3u~master b/channels/gr.m3u similarity index 100% rename from channels/gr.m3u~master rename to channels/gr.m3u diff --git a/channels/hk.m3u~master b/channels/hk.m3u similarity index 100% rename from channels/hk.m3u~master rename to channels/hk.m3u diff --git a/channels/hn.m3u~master b/channels/hn.m3u similarity index 100% rename from channels/hn.m3u~master rename to channels/hn.m3u diff --git a/channels/hu.m3u~master b/channels/hu.m3u similarity index 100% rename from channels/hu.m3u~master rename to channels/hu.m3u diff --git a/channels/id.m3u~master b/channels/id.m3u similarity index 100% rename from channels/id.m3u~master rename to channels/id.m3u diff --git a/channels/il.m3u~master b/channels/il.m3u similarity index 100% rename from channels/il.m3u~master rename to channels/il.m3u diff --git a/channels/in.m3u~master b/channels/in.m3u similarity index 100% rename from channels/in.m3u~master rename to channels/in.m3u diff --git a/channels/iq.m3u~master b/channels/iq.m3u similarity index 100% rename from channels/iq.m3u~master rename to channels/iq.m3u diff --git a/channels/ir.m3u~master b/channels/ir.m3u similarity index 100% rename from channels/ir.m3u~master rename to channels/ir.m3u diff --git a/channels/ir_telewebion.m3u~master b/channels/ir_telewebion.m3u similarity index 100% rename from channels/ir_telewebion.m3u~master rename to channels/ir_telewebion.m3u diff --git a/channels/it.m3u~master b/channels/it.m3u similarity index 100% rename from channels/it.m3u~master rename to channels/it.m3u diff --git a/channels/jo.m3u~master b/channels/jo.m3u similarity index 100% rename from channels/jo.m3u~master rename to channels/jo.m3u diff --git a/channels/jp.m3u~master b/channels/jp.m3u similarity index 100% rename from channels/jp.m3u~master rename to channels/jp.m3u diff --git a/channels/ke.m3u~master b/channels/ke.m3u similarity index 100% rename from channels/ke.m3u~master rename to channels/ke.m3u diff --git a/channels/kr.m3u~master b/channels/kr.m3u similarity index 100% rename from channels/kr.m3u~master rename to channels/kr.m3u diff --git a/channels/kw.m3u~master b/channels/kw.m3u similarity index 100% rename from channels/kw.m3u~master rename to channels/kw.m3u diff --git a/channels/lb.m3u~master b/channels/lb.m3u similarity index 100% rename from channels/lb.m3u~master rename to channels/lb.m3u diff --git a/channels/ma.m3u~master b/channels/ma.m3u similarity index 100% rename from channels/ma.m3u~master rename to channels/ma.m3u diff --git a/channels/mm.m3u~master b/channels/mm.m3u similarity index 100% rename from channels/mm.m3u~master rename to channels/mm.m3u diff --git a/channels/mx.m3u~master b/channels/mx.m3u similarity index 100% rename from channels/mx.m3u~master rename to channels/mx.m3u diff --git a/channels/my.m3u~master b/channels/my.m3u similarity index 100% rename from channels/my.m3u~master rename to channels/my.m3u diff --git a/channels/ng.m3u~master b/channels/ng.m3u similarity index 100% rename from channels/ng.m3u~master rename to channels/ng.m3u diff --git a/channels/nl.m3u~master b/channels/nl.m3u similarity index 100% rename from channels/nl.m3u~master rename to channels/nl.m3u diff --git a/channels/nz.m3u~master b/channels/nz.m3u similarity index 100% rename from channels/nz.m3u~master rename to channels/nz.m3u diff --git a/channels/om.m3u~master b/channels/om.m3u similarity index 100% rename from channels/om.m3u~master rename to channels/om.m3u diff --git a/channels/pa.m3u~master b/channels/pa.m3u similarity index 100% rename from channels/pa.m3u~master rename to channels/pa.m3u diff --git a/channels/pe.m3u~master b/channels/pe.m3u similarity index 100% rename from channels/pe.m3u~master rename to channels/pe.m3u diff --git a/channels/pr.m3u~master b/channels/pr.m3u similarity index 100% rename from channels/pr.m3u~master rename to channels/pr.m3u diff --git a/channels/qa.m3u~master b/channels/qa.m3u similarity index 100% rename from channels/qa.m3u~master rename to channels/qa.m3u diff --git a/channels/ro.m3u~master b/channels/ro.m3u similarity index 100% rename from channels/ro.m3u~master rename to channels/ro.m3u diff --git a/channels/ru.m3u~master b/channels/ru.m3u similarity index 100% rename from channels/ru.m3u~master rename to channels/ru.m3u diff --git a/channels/ru_catcast.m3u~master b/channels/ru_catcast.m3u similarity index 100% rename from channels/ru_catcast.m3u~master rename to channels/ru_catcast.m3u diff --git a/channels/sa.m3u~master b/channels/sa.m3u similarity index 100% rename from channels/sa.m3u~master rename to channels/sa.m3u diff --git a/channels/sv.m3u~master b/channels/sv.m3u similarity index 100% rename from channels/sv.m3u~master rename to channels/sv.m3u diff --git a/channels/th.m3u~master b/channels/th.m3u similarity index 100% rename from channels/th.m3u~master rename to channels/th.m3u diff --git a/channels/tm.m3u~master b/channels/tm.m3u similarity index 100% rename from channels/tm.m3u~master rename to channels/tm.m3u diff --git a/channels/tr.m3u~master b/channels/tr.m3u similarity index 100% rename from channels/tr.m3u~master rename to channels/tr.m3u diff --git a/channels/tw.m3u~master b/channels/tw.m3u similarity index 100% rename from channels/tw.m3u~master rename to channels/tw.m3u diff --git a/channels/ua.m3u~master b/channels/ua.m3u similarity index 100% rename from channels/ua.m3u~master rename to channels/ua.m3u diff --git a/channels/uk.m3u~master b/channels/uk.m3u similarity index 100% rename from channels/uk.m3u~master rename to channels/uk.m3u diff --git a/channels/unsorted.m3u~master b/channels/unsorted.m3u similarity index 100% rename from channels/unsorted.m3u~master rename to channels/unsorted.m3u diff --git a/channels/us.m3u~master b/channels/us.m3u similarity index 100% rename from channels/us.m3u~master rename to channels/us.m3u diff --git a/channels/us_bumblebee.m3u~master b/channels/us_bumblebee.m3u similarity index 100% rename from channels/us_bumblebee.m3u~master rename to channels/us_bumblebee.m3u diff --git a/channels/us_plex.m3u~master b/channels/us_plex.m3u similarity index 100% rename from channels/us_plex.m3u~master rename to channels/us_plex.m3u diff --git a/channels/us_roku.m3u~master b/channels/us_roku.m3u similarity index 100% rename from channels/us_roku.m3u~master rename to channels/us_roku.m3u diff --git a/channels/us_stirr.m3u~master b/channels/us_stirr.m3u similarity index 100% rename from channels/us_stirr.m3u~master rename to channels/us_stirr.m3u diff --git a/channels/us_tubi.m3u~master b/channels/us_tubi.m3u similarity index 100% rename from channels/us_tubi.m3u~master rename to channels/us_tubi.m3u diff --git a/channels/us_vizio.m3u~master b/channels/us_vizio.m3u similarity index 100% rename from channels/us_vizio.m3u~master rename to channels/us_vizio.m3u diff --git a/channels/us_xumo.m3u~master b/channels/us_xumo.m3u similarity index 100% rename from channels/us_xumo.m3u~master rename to channels/us_xumo.m3u diff --git a/channels/ve.m3u~master b/channels/ve.m3u similarity index 100% rename from channels/ve.m3u~master rename to channels/ve.m3u diff --git a/channels/vn.m3u~master b/channels/vn.m3u similarity index 100% rename from channels/vn.m3u~master rename to channels/vn.m3u diff --git a/streams/br_pluto.m3u b/streams/br_pluto.m3u deleted file mode 100644 index fe51714a6..000000000 --- a/streams/br_pluto.m3u +++ /dev/null @@ -1,123 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AVidaModernaDeRocko.br",A vida moderna de Rocko (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="AsAventurasDeJackieChan.br",As Aventuras de Jackie Chan (684p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c1539b05aa0007a57495/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="AsPistasDeBlue.br",As Pistas de Blue (480p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Babyfirst.br",Babyfirst (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f4fb4cf605ddf000748e16f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="BetBeingMaryJane.br",BET Being Mary Jane (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60a8126a0ac3970007f850fe/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="BetPlutoTV.br",BET Pluto TV (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff768b6a4c8b80008498610/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ComedyCentralPlutoTV.br",Comedy Central Pluto TV (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f357e91b18f0b00073583d2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ComedyCentralSouthPark.br",Comedy Central South Park (720p) [Not 24/7] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/609ae66b359b270007869ff1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FailArmy.br",FailArmy (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FilmesSuspense.br",Filmes Suspense (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="FuelTV.br",FUEL TV (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6144d088516ea8000739076a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="GuiaDeCanais.br",Guia de Canais (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa97a8a75cc210007c9041d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="JeannieEUmGenio.br",Jeannie é um Gênio (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6079c058aa05ac0007d10054/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="JovemPanPlutoTV.br",Jovem Pan Pluto TV (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/602e80c762306a0007179876/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Loupe.br",Loupe (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/600b248969c6580007e91a2d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Masterchef.br",MasterChef (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6077045b6031bd00078de127/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVAreYouTheOne.br",MTV Are you the One? (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVBiggestPop.br",MTV Biggest Pop (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047fbdbbb776a0007e7f2ff/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVPlutoTV.br",MTV Pluto TV (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="MTVSpankinNew.br",MTV Spankin' New (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6047ff2e5e61cf000784e4da/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Naruto.br",Naruto (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickClassico.br",Nick Clássico (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickJrClub.br",Nick Jr. Club (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NickTeen.br",Nick Teen (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f5fabf0721880007cd50e3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NoseyCasos.br",Nosey Casos (720p) [Offline] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b096236af340008da3779/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="NoseyEscandalos.br",Nosey Escândalos (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f9b05a99547eb0007676b02/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="OEncantadorDeCaes.br",O Encantador de Cães (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/61099df8cee03b00074b2ecf/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="OReinoInfantil.br",O Reino Infantil (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5c216df68f920007888315/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ParamountPlusApresenta.br",Paramount+ Apresenta (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60072798dcf437000755b4f3/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PeopleAreAwesome.br",People are Awesome (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnime.br",Pluto TV Anime (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnimeAcao.br",Pluto TV Anime Ação (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b79c558393100078faeef/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="",Pluto TV Cine Clássicos (480p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fa1612a669ba0000702017b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineComedia.br",Pluto TV Cine Comédia (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineDrama.br",Pluto TV Cine Drama (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineFamilia.br",Pluto TV Cine Família (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineRomance.br",Pluto TV Cine Romance (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f171f988ab9780007fa95ea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineSucessos.br",Pluto TV Cine Sucessos (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120e94a5714d00074576a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCineTerror.br",Pluto TV Cine Terror (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVComedia.br",Pluto TV Comédia (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6001f3018502100007f528ac/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVEstiloDeVida.br",Pluto TV Estilo de Vida (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f8841a4865da0007421177/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFashionbox.br",Pluto TV Fashionbox (720p) [Not 24/7] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.br",Pluto TV Filmes Ação (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFilmesNacionais.br",Pluto TV Filmes Nacionais (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f5a545d0dbf7f0007c09408/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVInvestigacao.br",Pluto TV Investigação (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVJunior.br",Pluto TV Junior (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVKaraoke.br",Pluto TV Karaokê por Stingray (480p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b99d633a72b00078e05ad/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVKids.br",Pluto TV Kids (684p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVMisterios.br",Pluto TV Mistérios (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fac52f142044f00078e2a51/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNatureza.br",Pluto TV Natureza (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVPaisagens.br",Pluto TV Paisagens por Stingray (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604a8dedbca75b0007b1c753/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVRecordNews.br",Pluto TV Record News (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6102e04e9ab1db0007a980a1/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVRetro.br",Pluto TV Retrô (720p) [Not 24/7] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVSeries.br",Pluto TV Séries (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVShows.br",Pluto TV Shows por Stingray (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/604b91e0692f770007d9f33f/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVVidaReal.br",Pluto TV Vida Real (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PortaDosFundos.br",Porta dos Fundos (720p) [Not 24/7] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Tastemade.br",Tastemade (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="ThePetCollective.br",The Pet Collective (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="Tokusato.br",Tokusato (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5ff609de50ab210008025c1b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="TurmaDaMonica.br",Turma da Mônica (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY diff --git a/streams/us_pluto.m3u b/streams/us_pluto.m3u deleted file mode 100644 index 2a861cde9..000000000 --- a/streams/us_pluto.m3u +++ /dev/null @@ -1,2159 +0,0 @@ -#EXTM3U -#EXTINF:-1 tvg-id="AmericasTestKitchen.us",America's Test Kitchen (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appVersion=5.10.0-63088da67b32904787b837429cfa9c5c605b7626&architecture=&buildVersion=&clientTime=&deviceDNT=false&deviceId=730453b0-df89-477c-a53d-9f59f9f46f37&deviceLat=37.7510&deviceLon=-97.8220&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=72.0.3815.186&includeExtendedEvents=false&marketingRegion=US&serverSideAds=true&sid=130d48cd-22f9-11eb-9bad-0242ac110002&userId= -#EXTINF:-1 tvg-id="BBCDrama.us",BBC Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dafb9a0df1ba000758d37b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="BlazeLive.us",Blaze Live (720p) [Offline] -http://plutotv.vo.llnwd.net/m/hlslive/theblaze.m3u8?chname=theblaze&pub=0 -#EXTINF:-1 tvg-id="Boblepongeplus.us",Bob l'éponge+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/609a33d06972da0007748ecf/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc9fd0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=195dd54b-932b-4f28-be70-7e736585335a -#EXTINF:-1 tvg-id="BounceXL.us",Bounce XL (720p) -https://siloh.pluto.tv/lilo/production/BounceXL/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVCats247.de",Cats 24/7 (DE) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a56ce10f0b0009e64037&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4f8f5d53-0580-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCats247.de",Cats 24/7 (DE) (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db6a56ce10f0b0009e64037/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCats247.uk",Cats 24/7 (UK) (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db044d7846b170009215ef0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCats247.us",Cats 24/7 (US) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=599375885ceaac3cabccbed7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=635&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCats247.us",Cats 24/7 (US) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/599375885ceaac3cabccbed7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="CheddarNews.us",Cheddar News (720p) -http://stitcher.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="ClubbingTV.fr",Clubbing TV (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/600ad8f86e1eba00081da3ce/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ae1b0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=97358d7c-5219-43db-bcda-c5057f0bc369 -#EXTINF:-1 tvg-id="ComediaMadeinSpain.us",Comedia Made in Spain (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1abce155a03d0007718834&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=505&terminate=false&userId= -#EXTINF:-1 tvg-id="ComedyCentralEast.us",Comedy Central East (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4947590ba40f75dc29c26b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=400&terminate=false&userId= -#EXTINF:-1 tvg-id="CribsMaisonsDeStar.us",Cribs Maisons De Star (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/602cf8963b4bc90007454541/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5043513f-eb20-46fd-8286-9e9ba240e6f9 -#EXTINF:-1 tvg-id="DallasCowboyCheerleaders.us",Dallas Cowboy Cheerleaders (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="DoctorWho.us",Doctor Who (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3574e97f10800078455de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="DramaLife.us",Drama Life (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f06bc60e236570007793f31&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e7f6989c-0583-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f06bc60e236570007793f31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f042bf0241c6f0007721021/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InsightPlus.nl",Insight+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b73efd87eb3a2717ccde/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d54bbd90-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f10cd89a-c878-4a4d-8b3d-f5238f421aa0&terminate=false&userId= -#EXTINF:-1 tvg-id="InstantSaga.us",Instant Saga (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549e98061b5f000776866a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba501-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=e11c2399-2d50-4607-be2c-d35d72152bbe -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1005f9d5d3cf00074c0395&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=13e8959c-0584-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1005f9d5d3cf00074c0395/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f1004e0a5714d000745650d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=47a36c19-0584-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1004e0a5714d000745650d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="JustepourRire.us",Juste pour Rire (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60afa1508284e60007163c08/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fcc6e0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=a8b6a6bb-4f8c-438e-a638-d4cfa72ae69a -#EXTINF:-1 tvg-id="Loupe.us",Loupe (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8d6c7877d40007791af0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b08c1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5b9651e5-80c9-45f6-b3a0-499e9abe049a -#EXTINF:-1 tvg-id="LoveandHipHop.us",Love and Hip Hop (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="Minecraftv.us",Minecraftv (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY -#EXTINF:-1 tvg-id="MotorvisionTV.de",Motorvision TV (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60817e1aa6997500072d0d6d/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc51b0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ede55dfe-45a7-4aa8-a283-7b8008be8d2e -#EXTINF:-1 tvg-id="ParamountMovieChannel.us",Paramount Movie Channel (684p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PeopleareAwesome.us",People are Awesome (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54169f4b9b25000994a303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=340&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV 007 (720p) [Offline] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4db961034718b2f52f9e52/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4db961034718b2f52f9e52&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTV21JumpStreet.us",Pluto TV 21 Jump Street (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af00df345adb154b7a1f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV70sCinema.us",Pluto TV 70s Cinema (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d878d3d19b30007d2e782/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV80sRewind.us",Pluto TV 80s Rewind (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV90sThrowback.us",Pluto TV 90s Throwback (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d86f519358a00072b978e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTV90120.us" status="online",Pluto TV 90120 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d83e0a382c00007bc02e7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAvidamodernadeRocko.us" status="online",Pluto TV A vida moderna de Rocko (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561d7d484dc7c8770484914a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=54&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561d7d484dc7c8770484914a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed1ff5c39700007e2204a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAction.us",Pluto TV Action (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfeb961b411c00090b52b3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db867744f229f0009266784&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=759&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db867744f229f0009266784/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8588734f8000823b7de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVActionSports.us",Pluto TV Action Sports (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Adventure TV (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAfterSchoolCartoons.us",Pluto TV After School Cartoons (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAFVTV.us",Pluto TV AFV TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82b55ad0213e00079c509f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAllEliteWrestling.us",Pluto TV All Elite Wrestling (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d1697f10a0e000798ed8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAllRealitybyWEtv.us",Pluto TV All Reality by WE tv (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us",Pluto TV America's Test Kitchen (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84f54a82f05300080e6746&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=605&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAmericasTestKitchen.us",Pluto TV America's Test Kitchen (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84f54a82f05300080e6746/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us",Pluto TV American Gladiators (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815e489b315b154db2e053&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=303&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAmericanGladiators.us",Pluto TV American Gladiators (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815e489b315b154db2e053/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnaylos7.us",Pluto TV Ana y los 7 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acce7f17797000718f9be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAndromeda.us",Pluto TV Andromeda (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8db96bccae160007c71eec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAndromeda.us",Pluto TV Andrómeda (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc3e061597000768d4ea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimakids.us",Pluto TV Animakids (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimakidsSpain.us",Pluto TV Animakids (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aabee6f4a2c00076a322c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aabee6f4a2c00076a322c&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=905&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimakidsPlus.us",Pluto TV Animakids Plus (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5a0b44cc331900075e7769/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimales.us",Pluto TV Animales (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd834c66fe2ca0009303b8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ae7b456c8cf265ce922&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9015b970-057f-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56b27f85ff3037045055037e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=666&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimals.us",Pluto TV Animals (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56b27f85ff3037045055037e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimalsEngland.us",Pluto TV Animals (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf8ea0d000120009bcad83&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=550&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Animals (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ae7b456c8cf265ce922/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ae7b456c8cf265ce922&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=301&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimalsPlus.us",Pluto TV Animals+ (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6f57ef2767e1846e59f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=d548b050-1c0f-11eb-8801-b9710ba01352&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b6f8a12a-554c-4970-82ca-4dc1f84a4016&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimaux.us",Pluto TV Animaux (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60925a44f0350600075a1fdc/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c1-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5cc06a56-861b-4448-84df-34ad224ceaa7 -#EXTINF:-1 tvg-id="PlutoTVAnime.us",Pluto TV Anime (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12136385bccc00070142ed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnime.us",Pluto TV Anime (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde17bf6591d0009839e02/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAccion.us",Pluto TV Animé Acción (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6a4d875d7ccf0007cc2cf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us",Pluto TV Anime All Ages (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVAnimeAllAges.us",Pluto TV Anime All Ages (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be4c6311843b56328bce619/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us",Pluto TV Anime All Day (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b7d3249444e05d09cc49&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=830&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAnimeAllDay.us",Pluto TV Anime All Day (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b7d3249444e05d09cc49/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Animé All Day (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Animé All Day (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed52a62fa750007733239/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="",Pluto TV Anime All Day (UK) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363ac9e41be30cb6054c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAnimeClasico.us",Pluto TV Anime Clásico (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054acc871ec430007f54c7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us",Pluto TV Antiques Roadshow UK (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce44810b421747ae467b7cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=621&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAntiquesRoadshowUK.us",Pluto TV Antiques Roadshow UK (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us",Pluto TV Archivos Forenses (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8c19b2678b000780d032/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVArchivosForenses.us",Pluto TV Archivos Forenses (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984f4a09e92d0007d74647/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAsPistasdeBlue.us",Pluto TV As Pistas de Blue (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAsesinatosdeMidsomer.us",Pluto TV Asesinatos de Midsomer (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca8310a30e00074fab92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us",Pluto TV Auction Hunters (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45d077746000072be0fe&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=58a8da20-057f-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us",Pluto TV Auction Hunters (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45d077746000072be0fe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us",Pluto TV Auto Motor Sport (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f760c3d41aa2d0007bfde19&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c676a4b5-65d2-474a-b477-c04f8b88e727&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAutoMotorSport.us",Pluto TV Auto Motor Sport (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAvatar.us",Pluto TV Avatar (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600adbdf8c554e00072125c9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAventura.us",Pluto TV Aventura (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc266f80e3550009136843/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5595e43c66ace1652e63c6a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=194&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5595e43c66ace1652e63c6a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVAwesomenessTV.us",Pluto TV Awesomeness TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7656a8d0438aceb41cfdef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBabar.us",Pluto TV Babar (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67e20c93312100076f3ffe/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBabyFirst.us",Pluto TV BabyFirst (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac49ce4dc8b00078b23bc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBackcountry.us",Pluto TV Backcountry (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cabdf1437b88b26947346b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=755&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBackcountry.us",Pluto TV Backcountry (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cabdf1437b88b26947346b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBarney.us",Pluto TV Barney (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f29ada4bdaebd000708d49d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBaywatch.us",Pluto TV Baywatch (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d815eb889bca2ce7b746fdd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=142&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBaywatch.us",Pluto TV Baywatch (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d815eb889bca2ce7b746fdd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBBCFood.us",Pluto TV BBC Food (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5844bf5514d0007945bda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBBCHome.us",Pluto TV BBC Home (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5836fe745b600070fc743/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeautyandtheGeek.us",Pluto TV Beauty and the Geek (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18c138c32460007cc6b46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us",Pluto TV Being Human (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e78f4dd001977000787d7e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=dd1d87dc-057f-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBeingHuman.us",Pluto TV Being Human (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78f4dd001977000787d7e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us",Pluto TV Bellator MMA (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ebc8688f3697d00072f7cf8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=730&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBellatorMMA.us",Pluto TV Bellator MMA (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebc8688f3697d00072f7cf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBestLife.us",Pluto TV Best Life (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5887ba337b8e94223eb121bd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=630&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBestLife.us",Pluto TV Best Life (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5887ba337b8e94223eb121bd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (360p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150978589c0700095f97ae/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca670f6593a5d78f0e85aed&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=174&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBET.us",Pluto TV BET (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca670f6593a5d78f0e85aed/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBETClassics.us",Pluto TV BET Classics (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBETClassics.us",Pluto TV BET Classics (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b5ba040eaa0007074d0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBETHer.us",Pluto TV BET Her (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBETHer.us",Pluto TV BET Her (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e6949ab8e2b35bdcaa9f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e6949ab8e2b35bdcaa9f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=175&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us",Pluto TV Beverly Hillbillies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db81695a95186000941ee8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeverlyHillbillies.us",Pluto TV Beverly Hillbillies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7796e470510900070d4e3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us",Pluto TV Beyblade Burst Nick (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b551ddcd25500072c4dad&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a38b88ed-0712-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBeybladeBurstNick.us",Pluto TV Beyblade Burst Nick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b551ddcd25500072c4dad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us",Pluto TV Big Sky Conference (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59641d9173ac1fec2fc01f17&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=752&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBigSkyConference.us",Pluto TV Big Sky Conference (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59641d9173ac1fec2fc01f17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBigTimeRush.us",Pluto TV Big Time Rush (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa7aab66c76000790ee7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBiography.us",Pluto TV Biography (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2a24f1c5ab2d298776b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (684p) -https://stitcher.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?appVersion=2.0.0&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012 -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58af4c093a41ca9d4ecabe96&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=80&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlackCinema.us",Pluto TV Black Cinema (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58af4c093a41ca9d4ecabe96/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us",Pluto TV Black Ink Crew (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e2bceca5b4b2c0e06c50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=285&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlackInkCrew.us",Pluto TV Black Ink Crew (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e2bceca5b4b2c0e06c50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlackNewsChannel.us",Pluto TV Black News Channel (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1efad04320070007dbb60b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBlazeLive.us",Pluto TV Blaze Live (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e46fba0c43b0d00096e5ac1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=238&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us",Pluto TV Blaze Nick (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b60419becf60008c841fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ebc579c0-0712-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBlazeNick.us",Pluto TV Blaze Nick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b60419becf60008c841fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBloombergTV.us",Pluto TV Bloomberg TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/54ff7ba69222cb1c2624c584/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=54ff7ba69222cb1c2624c584&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=224&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us",Pluto TV Blue's Clues Nick (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b564ff59d130007363823&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=29e99f3f-0713-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBluesCluesNick.us",Pluto TV Blue's Clues Nick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b564ff59d130007363823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobEsponja.us",Pluto TV Bob Esponja (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aca0b4e448e00075e7c5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobEsponjaPlus.us",Pluto TV Bob Esponja Plus (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd87d882574170007fac022/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBobleponge.us",Pluto TV Bob l'éponge (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVBobleponge.us",Pluto TV Bob l'éponge (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ffc8c345822750007e167de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBoxing.us",Pluto TV Boxing (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac425f949b4600079938f3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBritishTV.us",Pluto TV British TV (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b68a18823ecb93393cba2f1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=154&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBritishTV.us",Pluto TV British TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b68a18823ecb93393cba2f1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBritpocalypse.us",Pluto TV Britpocalypse (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1edac394e0e80009b2416a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us",Pluto TV Bubble Guppies (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b5a4bb7da5c0007e5c9e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c631817-0713-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBubbleGuppies.us",Pluto TV Bubble Guppies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5a4bb7da5c0007e5c9e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVBuzzr.us",Pluto TV Buzzr (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bfbe4ced4f7b601b12e6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=540&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVBuzzr.us",Pluto TV Buzzr (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bfbe4ced4f7b601b12e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b3a4249444e05d09cc46&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=663&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b3a4249444e05d09cc46/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCars.us",Pluto TV Cars (720p) [Offline] -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c12ba66eae03059cbdc77f2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCatfish.us",Pluto TV Catfish (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb66537867f0007146953/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="CBSSports.us",Pluto TV CBS Sports HQ (1080p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5e9f2c05172a0f0007db4786/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSN2.us",Pluto TV CBSN (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a6b92f6e22a617379789618/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a6b92f6e22a617379789618&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=204&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNBaltimore.us",Pluto TV CBSN Baltimore MD (720p) [Not 24/7] -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60f75919718aed0007250d7a/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSNewsBayArea.us",Pluto TV CBSN Bay Area CA (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1afb21486df0007abc57c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsBoston.us",Pluto TV CBSN Boston MA (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1af2ad345340008fccd1e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsChicago.us",Pluto TV CBSN Chicago IL (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1aeb2fd4b8a00076c2047/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNDallasFortWorth.us",Pluto TV CBSN Dallas Ft Worth TX (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/5eceb0d4065c240007688ec6/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCBSNewsDenver.us",Pluto TV CBSN Denver CO (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b12146cba40007aa7e5d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNewsLosAngeles.us",Pluto TV CBSN Los Angeles CA (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc481cda1d430000948a1b4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc481cda1d430000948a1b4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=207&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNMinnesota.us",Pluto TV CBSN Minnesota MN (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b0bf2240d8000732a09c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNNewYork.us",Pluto TV CBSN New York NY (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc48170e280c80009a861ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc48170e280c80009a861ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=206&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCBSNPhilly.us",Pluto TV CBSN Philly PA (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b05ea168cc000767ba67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNPittsburgh.us",Pluto TV CBSN Pittsburgh PA (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb1b17aa5277e00083f6521/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCBSNSacramento.us",Pluto TV CBSN Sacramento CA (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/60cb6df2b2ad610008cd5bea/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCelebrity.us",Pluto TV Celebrity (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf1472907815f66a866dd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=320&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCelebrity.us",Pluto TV Celebrity (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf1472907815f66a866dd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVChassy.us",Pluto TV Chassy (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b6b285823ecb93393cbf766&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=687&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVChassy.us",Pluto TV Chassy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b6b285823ecb93393cbf766/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCheddar.us",Pluto TV Cheddar (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812afe1d0f0b8d55dde67fa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812afe1d0f0b8d55dde67fa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=226&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCheddar.us",Pluto TV Cheddar (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e02c08ee5378be82db47/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVChefkoch.us",Pluto TV Chefkoch (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8c4c3f141f350007936f7d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8ae325bb-0580-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVChefkoch.us",Pluto TV Chefkoch (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8c4c3f141f350007936f7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCiencia.us",Pluto TV Ciencia (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd8364ea1d6780009929902/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Cine (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b1c4f1ca3f0629f4bf0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=902&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Cine (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b1c4f1ca3f0629f4bf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Ciné (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCine.us",Pluto TV Ciné (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcb62e63d4d8f0009f36881/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d164d92e97a5e107638d2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=904&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineAccion.us",Pluto TV Cine Acción (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac2591dd8880007bb7d6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineClasico.us",Pluto TV Cine Clásico (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/61373bb45168fe000773eecd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcdde78f080d900098550e4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8099c49f600076579b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineComedia.us",Pluto TV Cine Comédia (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12101f0b12f00007844c7c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac947dcd00d0007937c08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineDrama.us",Pluto TV Cine Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf968040ab7d8f181e6a68b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=901&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde437229eff00091b6c30/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us",Pluto TV Cine Estelar (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1f1b66c76000790ef27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Cine Família (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ddb30a1d8a000908ed4c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="",Pluto TV Cine Família (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171f032cd22e0007f17f3d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineRetro.us",Pluto TV Ciné Rétro (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineRetro.us",Pluto TV Ciné Rétro (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed168f72fcd0007e56269/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineSuspenso.us",Pluto TV Cine Suspenso (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddc4e8bcbb9010009b4e84f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddf1ed95e740009fef7ab/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d180092e97a5e107638d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=913&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCineTerror.us",Pluto TV Cine Terror (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12111c9e6c2c00078ef3bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCinePlus.us",Pluto TV Ciné+ (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5eb810e2996000768c0e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89a930-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=d7d7d33d-5784-4dee-a799-d09bd30b065a -#EXTINF:-1 tvg-id="PlutoTVCinema.us",Pluto TV Cinéma (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0f17564a300082b676a/master.m3u8?appVersion=5.4.0&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe73477534 -#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us",Pluto TV Classic Movies (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5b0dada51f8004c4d855&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=106&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicMovies.us",Pluto TV Classic Movies (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5b0dada51f8004c4d855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicMoviesEngland.us",Pluto TV Classic Movies (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d134a74ca91eedee1630faa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=903&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicNickBrazil.us",Pluto TV Classic Nick (Brazil) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f12151794c1800007a8ae63&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=730&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us",Pluto TV Classic Toons TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=562ea53fa9060c5a7d463e74&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=548&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicToonsTV.us",Pluto TV Classic Toons TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/562ea53fa9060c5a7d463e74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTV.us",Pluto TV Classic TV (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46ae801f347500099d461a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35f76fb0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=2fac39a7-56bc-492e-ae1e-3f6fb6cef1bc -#EXTINF:-1 tvg-id="PlutoTVClassicTV.us",Pluto TV Classic TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us",Pluto TV Classic TV Comedy (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e32b297f96000768f928&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=501&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicTVComedy.us",Pluto TV Classic TV Comedy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e32b297f96000768f928/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us",Pluto TV Classic TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us" status="online",Pluto TV Classic TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e3cccf49290007053c67/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e3cccf49290007053c67&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=520&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVClassicTVDrama.us",Pluto TV Classic TV Drama (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f779951372da90007fd45e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us",Pluto TV Clubbing TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f984784ccb4de0007dfad74/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVClubbingTV.us",Pluto TV Clubbing TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ad1a372e57c0007dbee5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dcc42446750e200093b15e2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=182&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dcc42446750e200093b15e2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVCMT.us",Pluto TV CMT (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509b87809fd000949e399/master.m3u8?advertisingId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channelStore=us&channel_id=151908&content=0adc72cd87e45d3491f8e47e54bbcc98&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=d3e60034-bdd6-5f69-a7a8-a82b92d5b116&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMTEqualPlay.us",Pluto TV CMT Equal Play (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f68f53eb1e5800007390bf8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCMTWesterns.us",Pluto TV CMT Westerns (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e94282d4ec87bdcbb87cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e94282d4ec87bdcbb87cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=103&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCNET.us",Pluto TV CNET (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56283c8769ba54637dea0464&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=228&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCNET.us",Pluto TV CNET (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56283c8769ba54637dea0464/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCNN.us",Pluto TV CNN (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5421f71da6af422839419cb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5421f71da6af422839419cb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=209&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0fbaa8742fa3093899da&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=956&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCocina.us",Pluto TV Cocina (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0657444a40009cd2422/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCocinaSpain.us",Pluto TV Cocina (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdaa8ba90f0007d5e760/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdaa8ba90f0007d5e760&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=700&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us",Pluto TV Cold Case Files (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c37d6712de254456f7ec340&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=373&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVColdCaseFiles.us",Pluto TV Cold Case Files (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c37d6712de254456f7ec340/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us",Pluto TV Combate World (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ac3e268cae539bcedb07&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=970&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCombateWorld.us",Pluto TV Combate World (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ac3e268cae539bcedb07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComediaMadeinSpain.us",Pluto TV Comedia (Made in Spain) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abce155a03d0007718834/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedie.us",Pluto TV Comédie (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVComedie.us",Pluto TV Comédie (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb91bb9b9e7000817e67f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (288p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d3a00ad95e4718ae8d8db&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d3a00ad95e4718ae8d8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efd0dbbe3ba000908b639&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2ede5357-0728-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c363c2411c5ca053f198f97/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedy.us",Pluto TV Comedy (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efd0dbbe3ba000908b639/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca671f215a62078d2ec0abf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=465&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4947590ba40f75dc29c26b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4947590ba40f75dc29c26b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5ca4fefb-0728-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca671f215a62078d2ec0abf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentral.us",Pluto TV Comedy Central (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13bde24f4ca800093d57b5/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us",Pluto TV Comedy Central (Made in Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d4948418101147596fd6c5a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=91083755-0728-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermany.us",Pluto TV Comedy Central (Made in Germany) (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4948418101147596fd6c5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentralMadeinGermanyPlus.us",Pluto TV Comedy Central (Made in Germany)+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b8923fc302800079e4f4f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b8923fc302800079e4f4f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ee59b770-663e-4463-bf9b-3f7c374fbc39&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralPlus.us",Pluto TV Comedy Central + (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcea6bc6fb8890009322ff3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcea6bc6fb8890009322ff3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=90d72ed4-4920-4983-a25f-2926c714e415&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralAnimation.us",Pluto TV Comedy Central Animation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99e24636d67d0007a94e6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us",Pluto TV Comedy Central Latino (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96dad1652631e36d43320&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=967&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVComedyCentralLatino.us",Pluto TV Comedy Central Latino (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96dad1652631e36d43320/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCompetencias.us",Pluto TV Competencias (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6d935d000120009bc1132/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVConspiracy.us",Pluto TV Conspiracy (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVConspiracyEngland.us",Pluto TV Conspiracy (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4ae94ef1a1bbb350ca41bb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCookalong.us",Pluto TV Cookalong (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc297672961b0009f12e5b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCops.us",Pluto TV Cops (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e1f7e089f23700009d66303&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=367&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCops.us",Pluto TV Cops (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1f7e089f23700009d66303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCourtTV.us",Pluto TV Court TV (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0b4841a7d0000938ddbd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0b4841a7d0000938ddbd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=395&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCourtroom.us",Pluto TV Courtroom (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e6e7ac69c400072afca2/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b6c60fd20c50007910bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2da8f50-0581-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767790d0438aceb41d03ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7b6c60fd20c50007910bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrime.us",Pluto TV Crime (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed4dbf6bb0800071ffbcb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeEngland.us",Pluto TV Crime (England) (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea18cd42ee5410007e349dc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=200&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us",Pluto TV Crime Drama (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f31fd1b4c510e00071c3103&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=350&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimeDrama.us",Pluto TV Crime Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f31fd1b4c510e00071c3103/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation360.us",Pluto TV Crime Investigation 360 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a5a9e767980007b497ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeInvestigation.us",Pluto TV Crime Investigation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeMovies.us",Pluto TV Crime Movies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d8594eb979c0007706de7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCrimeTV.us",Pluto TV Crime TV (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c571faeb3e2738ae27933&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCrimePlus.us",Pluto TV Crime+ (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebbeabd18520007b37709/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9391-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=fc31112d-4925-4f44-b50f-ddf0ca08e7c7 -#EXTINF:-1 tvg-id="PlutoTVCSI.us",Pluto TV CSI (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd29e4aa26700076c0d06&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=355&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCSI.us",Pluto TV CSI (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd29e4aa26700076c0d06/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCuisine.us",Pluto TV Cuisine (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVCuisine.us",Pluto TV Cuisine (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed48146ba9e00078424b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c665db3e6c01b72c4977bc2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=109&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c665db3e6c01b72c4977bc2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCultFilms.us",Pluto TV Cult Films (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c31f2f21b553c1f673fb0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVCurroJimenez.us",Pluto TV Curro Jiménez (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acd36779de70007a680d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40855b3fb0855028c99b6f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=315&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDallasCowboysCheerleaders.us",Pluto TV Dallas Cowboys Cheerleaders (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40855b3fb0855028c99b6f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us",Pluto TV Dark Matter (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e843d849109b700075d5ada&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ddc64e1e-0581-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDarkMatter.us",Pluto TV Dark Matter (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e843d849109b700075d5ada/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us",Pluto TV Dark Shadows (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3958c66ac540007d6e6a7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=535&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDarkShadows.us",Pluto TV Dark Shadows (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3958c66ac540007d6e6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDating.us",Pluto TV Dating (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6092544e7639460007d4835e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fc78c0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5a2b1311-2550-464b-8060-15765b30c4f8 -#EXTINF:-1 tvg-id="PlutoTVDeadlyWomen.us",Pluto TV Deadly Women (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1df0d50be2571e393ad31/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us",Pluto TV Deal or No Deal (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9debf8c881310007d7bde1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=165&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDealorNoDeal.us",Pluto TV Deal or No Deal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9debf8c881310007d7bde1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6eeb85c05dfc257e5a50c4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=144&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de58ef515635d00091f605d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDegrassi.us",Pluto TV Degrassi (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6eeb85c05dfc257e5a50c4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDemandAfrica.us",Pluto TV Demand Africa (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f061242a7951e00075d7413/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f061242a7951e00075d7413&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=172&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDeportes.us",Pluto TV Deportes (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde07af1c85b0009b18651/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us",Pluto TV Doctor Who Classic (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce4475cd43850831ca91ce7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=532&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoctorWhoClassic.us",Pluto TV Doctor Who Classic (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce4475cd43850831ca91ce7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b85a7582921777994caea63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=91&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db048f9447d6c0009b8f29d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0d94d79f-0582-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b85a7582921777994caea63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db048f9447d6c0009b8f29d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDocumentaries.us",Pluto TV Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04252241007000975faac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogelcazarrecompensas.us",Pluto TV Dog el cazarrecompensas (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9992c685a2a80007fa414a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bee1a7359ee03633e780238&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=381&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bee1a7359ee03633e780238/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogtheBountyHunter.us",Pluto TV Dog the Bounty Hunter (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b535a278bfe000799484a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b329e0a7b9d8872aeb49ceb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=636&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d8dc1d8da13e15d9fce6911&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7254c815-0582-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b329e0a7b9d8872aeb49ceb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc1d8da13e15d9fce6911/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDogs247.us",Pluto TV Dogs 24/7 (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8dc0740e843c7812dcb8db/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e43c344b54fe800093552f4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=c28ebf75-0713-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e43c344b54fe800093552f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb9524419b0007365a1c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fb6c84dd37df3b4290c5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=985&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDoraTV.us",Pluto TV Dora TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fb6c84dd37df3b4290c5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edad922b10b000753bc37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDossiersFBI.us",Pluto TV Dossiers FBI (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edad922b10b000753bc37/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="",Pluto TV Dr. Oz (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac43a40fe4ab0007f478ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e92e4694c027be6ecece1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=60&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e92e4694c027be6ecece1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc190f7bfed110009d934c3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a1f190ec-0582-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDrama.us",Pluto TV Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed2d1c34c2300073bf02c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDramaEngland.us",Pluto TV Drama (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91149880d60009d35d27/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91149880d60009d35d27&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=402&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Drama (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc190f7bfed110009d934c3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc190f7bfed110009d934c3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=200&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaLife.us",Pluto TV Drama Life (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f24662bebe0f0000767de32&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=332&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDramaLife.us",Pluto TV Drama Life (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f24662bebe0f0000767de32/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us",Pluto TV Drama+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ffebb618f6cb4000728082c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a9390-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7eed86a2-2fee-402b-9978-ecaffe0235c0 -#EXTINF:-1 tvg-id="PlutoTVDramaPlus.us",Pluto TV Drama+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddbf866b1862a0009a0648e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ddbf866b1862a0009a0648e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3a2ed1cd-e3a3-4fa3-bdbc-94e7363ca0cf&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVDuckDynasty.us",Pluto TV Duck Dynasty (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6b54b9e67cf60007d4cef1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElConquistadordelFin.us",Pluto TV El Conquistador del Fin (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f280149cec6be00072ab1fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElEncantadordePerros.us",Pluto TV El Encantador de Perros (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60e45687313c5f0007bc8e94/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVElReinoInfantil.us",Pluto TV El Reino Infantil (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3d06fb60d8000781fce8/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVEmpenosalobestia.us",Pluto TV Empeños a lo bestia (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f23102d5e239d00074b092a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us",Pluto TV EN DIRECTO EN VIVO (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d180092e97a5e107638d3/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=9f61 -#EXTINF:-1 tvg-id="PLUTOTVENDIRECTOENVIVO.us",Pluto TV EN DIRECTO EN VIVO (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfcb229eff00091b6bdf/master.m3u8?appVersion=0&deviceDNT=0&deviceId=0&deviceMake=0&deviceModel=0&deviceType=0&deviceVersion=0&sid=a6f8 -#EXTINF:-1 tvg-id="",Pluto TV ESR 24/7 (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1e0ee50be2571e393ad33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVEstrellasdeAccion.us",Pluto TV Estrellas de Acción (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e972a21ad709d00074195ba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVETLive.us",Pluto TV ET Live (1080p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc0c78281eddb0009a02d5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=190&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVETLive.us",Pluto TV ET Live (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc0c78281eddb0009a02d5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVEuronews.us",Pluto TV Euronews (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d3583ef310610007fb02b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVExplore.us",Pluto TV Explore (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b8551b95267e225e59c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVExtreme.us",Pluto TV Extrême (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVExtreme.us",Pluto TV Extrême (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed327f9e9b0000761141e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebaccf1734aaf0007142c86/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d883e738977e2c31096b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7ffe738977e2c312133/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf5fafb5ee0007d4d0ca/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd9169d2d4000864a974/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/554158e864526b29254ff105/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFailArmy.us",Pluto TV FailArmy (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f5141c1605ddf000748eb1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFaithTV.us",Pluto TV Faith TV (240p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c58a539fae3812612f33ca3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=643&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFaithTV.us",Pluto TV Faith TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c58a539fae3812612f33ca3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFamily.us",Pluto TV Family (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc3fc6b9133f500099c7d98/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFamilyTies.us",Pluto TV Family Ties (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77939a630f530007dde654/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b64a245a202b3337f09e51d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=66&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVFantastic.us",Pluto TV Fantastic (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b64a245a202b3337f09e51d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFashionTV.us",Pluto TV Fashion TV (720p) -https://siloh.pluto.tv/lilo/production/FashionTV/master.m3u8 -#EXTINF:-1 tvg-id="",Pluto TV FashionBox (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee8d84bfb286e0007285aad/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFashionbox.us",Pluto TV Fashionbox (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f516730b78b7600079294f5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFBIFiles.us",Pluto TV FBI Files (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb6f6f9a461406ffe4022cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=588128d17d64bc0d0f385c34&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=301&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c362ded581a86051df509b4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFearFactor.us",Pluto TV Fear Factor (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/588128d17d64bc0d0f385c34/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us",Pluto TV Femmes de Loi (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVFemmesdeLoi.us",Pluto TV Femmes de Loi (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed673cad35f0007651fd4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFifthGear.us",Pluto TV Fifth Gear (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca1de9208ee5378be82db3b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bda9fd87eb3a2717cce0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5c2fb668-242f-4e7f-a025-087099fd0aca&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b0f2237a6ff45d16c3f9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=726&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d659fd87eb3a2717afc9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bda9fd87eb3a2717cce0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFight.us",Pluto TV Fight (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b0f2237a6ff45d16c3f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFilmesAcao.us",Pluto TV Filmes Ação (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f120f41b7d403000783a6d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFilmesSuspense.us",Pluto TV Filmes Suspense (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f171d3442a0500007362f22/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFishing.us",Pluto TV Fishing (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af39510fd17b31a528eda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0c92783b3f0007a4c7df&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=3b0b1ee4-3c26-4c24-8a7c-1b12f2e4e536&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0c92783b3f0007a4c7df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFitness.us",Pluto TV Fitness (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6140a074a99e79000738162a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us",Pluto TV Flicks of Fury (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58e55b14ad8e9c364d55f717&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=112&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFlicksofFury.us",Pluto TV Flicks of Fury (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58e55b14ad8e9c364d55f717/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFocusTV.us",Pluto TV Focus TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3bd0e63f793300071574cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=95e98e2b-3403-11eb-b13a-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFocusTV.us",Pluto TV Focus TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f3bd0e63f793300071574cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Food (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc280c9aa218c0009724b4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=0734c282-0583-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Food (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc280c9aa218c0009724b4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Food (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFoodEngland.us",Pluto TV Food (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf930548ff9b00090d5686&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=500&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFoodTV.us",Pluto TV Food TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877ac8cb791f4eb4a140d81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877ac8cb791f4eb4a140d81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=601&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) -http://stitcher.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1af6a268cae539bcedb0a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=370&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFiles.us",Pluto TV Forensic Files (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1af6a268cae539bcedb0a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us",Pluto TV Forensic Files en ESP (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e94cd036cc69d0007e8a1ba&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=933&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVForensicFilesenESP.us",Pluto TV Forensic Files en ESP (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e94cd036cc69d0007e8a1ba/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a74b8e1e22a61737979c6bf&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=705&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFOXSports.us",Pluto TV FOX Sports (720p) [Not 24/7] -https://stitcher.pluto.tv/stitch/hls/channel/5a74b8e1e22a61737979c6bf/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=3fab0050-8b86-11e8-a44b-996a399dacd8&deviceLat=38.8177&deviceLon=-77.1527&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=67.0.3396.99&serverSideAds=false&sid=3fab7580-8b86-11e8-a44b-996a399dacd8&userId= -#EXTINF:-1 tvg-id="PlutoTVFrontDoor.us",Pluto TV FrontDoor [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938888cd045ffce74cf9048/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938888cd045ffce74cf9048&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=612&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFuelTV.us",Pluto TV Fuel TV (720p) -https://siloh.pluto.tv/lilo/production/FuelTV/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVFuelTV.us",Pluto TV Fuel TV (720p) -https://siloh.pluto.tv/lilo/production/FuelTV/SP/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVFullCustomGarage.us",Pluto TV Full Custom Garage (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e78faa05a0e200007a6f487/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us",Pluto TV Funny AF (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=580e87ff497c73ba2f321dd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=450&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVFunnyAF.us",Pluto TV Funny AF (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/580e87ff497c73ba2f321dd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVFutbolParaFans.us",Pluto TV Fútbol Para Fans (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddd1a3ef73b00091d5779/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us",Pluto TV Game Show Central (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e54187aae660e00093561d6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=167&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameShowCentral.us",Pluto TV Game Show Central (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54187aae660e00093561d6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGameShows.us",Pluto TV Game Shows (720p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6036e7c385749f00075dbd3b/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVGamer.us",Pluto TV Gamer (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGamer.us",Pluto TV Gamer (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca7f16c37b88b2694731c79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca7f16c37b88b2694731c79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=801&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameSpot.us",Pluto TV GameSpot (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f186626dcd00d0007936443&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=806&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGameSpot.us",Pluto TV GameSpot (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f186626dcd00d0007936443/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGamingTV.us",Pluto TV Gaming TV (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGamingTV.us",Pluto TV Gaming TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eccd81062c300078a11df/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGarfield.us",Pluto TV Garfield (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6054ab20a365c70007e4fd44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGetfactual.us",Pluto TV Get.factual (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a69bc928a600093a7976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGhostDimension.us",Pluto TV Ghost Dimension (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f5a9d40d58066869fa60/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGhostHunters.us",Pluto TV Ghost Hunters (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f27bbe4779de70007a6d1c1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9be1be738977e2c312134&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f6e88030-d7c8-47c8-8fed-7e24dd0a038a&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5417a212ff9fba68282fbf5e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5417a212ff9fba68282fbf5e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=736&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d6f5e738977e2c310949/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGloryKickboxing.us",Pluto TV Glory Kickboxing (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9be1be738977e2c312134/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGoDiegoGo.us",Pluto TV Go Diego Go! (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa89d42a0500007363ea3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us",Pluto TV Gordon Ramsay's Kitchen (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e99f4423e067bd6df6903&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=294&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVGordonRamsaysKitchen.us",Pluto TV Gordon Ramsay's Kitchen (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e99f4423e067bd6df6903/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Guía de canales (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e793a7cfbdf780007f7eb75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVGustoTV.us",Pluto TV Gusto TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c47f3662f6b3c476fc03e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHappyDays.us",Pluto TV Happy Days (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794162a4559000781fc12/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHealth.us",Pluto TV Health (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2d7ae59bf23c192c411c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHeleneetlesgarcons.us",Pluto TV Hélène et les garçons (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/604f8de01b479400078fb1e7/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b2fd0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=65d7f2cc-e6f8-4e43-9cb5-1de8d1f71f71 -#EXTINF:-1 tvg-id="PlutoTVHellsKitchen.us",Pluto TV Hell's Kitchen (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6f38792075160007d85823/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHER.us",Pluto TV HER (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e4bf0db50560a000948ce52/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us",Pluto TV Hillsong Channel (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b87428fe37d8cadba44&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=898&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHillsongChannel.us",Pluto TV Hillsong Channel (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b87428fe37d8cadba44/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHistoria.us",Pluto TV Historia (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de5758e1a30dc00094fcd6c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHistoriasdeUltratumba.us",Pluto TV Historias de Ultratumba (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4d3696d938c900072679fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a4d35dfa5c02e717a234f86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=651&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767b1c126c65d0a307355f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=52e8f9a9-0583-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a4d35dfa5c02e717a234f86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHISTORY.us",Pluto TV HISTORY (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af1803e7983b391d73b13/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHISTORYGermany.us",Pluto TV HISTORY (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b1c126c65d0a307355f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b1c126c65d0a307355f&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=302&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHISTORYPlus.us",Pluto TV HISTORY+ (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b6941b95267e225e59c0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b6941b95267e225e59c0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4637a2ad-1dd6-49d1-a8cc-435684c4a7ea&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHogar.us",Pluto TV Hogar (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6ab8056beb000091fc6b6/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5eb96303f5bb020008e7e44f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8044788b-0583-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04c9eedc89300090d2884/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHome.us",Pluto TV Home (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb96303f5bb020008e7e44f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHomesUnderHammer.us",Pluto TV Homes Under Hammer (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2e9d8002db3c3e0b1c72/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=569546031a619b8f07ce6e25&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=75&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (684p) -https://stitcher.pluto.tv/stitch/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=&appName=&appStoreUrl=&appVersion=2.0.0&app_name=&deviceDNT=0&deviceId=889540f0-712d-11e8-b9ec-8ba319deeadf&deviceLat=38.5783&deviceLon=-90.6666&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=37.0.2049.0&serverSideAds=false&sid=6e360db0-724b-11e8-be77-bf4d1417b012&userId= -#EXTINF:-1 tvg-id="PlutoTVHorror.us",Pluto TV Horror (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/569546031a619b8f07ce6e25/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHSN.us",Pluto TV HSN (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8a02476b72230007e62b7d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVHumor.us",Pluto TV Humor (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8397936791b30007ebb5a7/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVHunter.us",Pluto TV Hunter (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c99f5810c95814ff92512f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c53d6ac-a6d2-4c2c-9403-6101f770b205&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarly.us",Pluto TV iCarly (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc7aa44d9c00081fca29/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTViCarlyNickGermany.us",Pluto TV iCarly Nick (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b580a233dc90007f0cb9d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8b580a233dc90007f0cb9d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=406&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us",Pluto TV iCarly+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed9ba24f6a00074a9b91/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a4570-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0432d921-f53e-4dfe-8afd-2d0b3fb750f3 -#EXTINF:-1 tvg-id="PlutoTViCarlyPlus.us",Pluto TV iCarly+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2cb9f5b291000773807a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2cb9f5b291000773807a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c128fa6-7ec2-4a50-a81b-37f9e8c1e48f&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40f42ba7f7f5ea9518fe1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aeca4ad7-0583-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3639dd01112605397333a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIcePilots.us",Pluto TV Ice Pilots (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40f42ba7f7f5ea9518fe1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecee24576bc0007a13b79/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=561c5f613286e48904fb2677&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=805&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bc207ef2767e1846e5a0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac118dd7e6000077e31af/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/561c5f613286e48904fb2677/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIGN.us",Pluto TV IGN (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d982e738977e2c3109a6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us",Pluto TV IMPACT Wrestling (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIMPACTWrestling.us",Pluto TV IMPACT Wrestling (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59b722526996084038c01e1b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59b722526996084038c01e1b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=734&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ce40e59246a395e9758923e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=aa724654-057a-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce40e59246a395e9758923e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60cc807324d60a0007708dc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVIndies.us",Pluto TV Indies (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c542e03044f5604b11cf808/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInside.us",Pluto TV Inside (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed3892ed7bb000741a1d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInsideEngland.us",Pluto TV Inside (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767857f65029ce2385b217/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767857f65029ce2385b217&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=302&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInsideGermany.us",Pluto TV Inside (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767b4889bca2ce7b73ef2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767b4889bca2ce7b73ef2e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=303&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc2d1ce10f0b0009e6cf9e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=efbfa162-0713-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765786aad587cf4d0e2bf6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInspectorGadget.us",Pluto TV Inspector Gadget (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2d1ce10f0b0009e6cf9e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde27ffae9520009c0c75a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96b8f4f1ca3f0629f4bf1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=936&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestiga.us",Pluto TV Investiga (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96b8f4f1ca3f0629f4bf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestigacao.us",Pluto TV Investigação (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32cf37c9ff2b00082adbc8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?appName=androidmobile&appVersion=5.4.0&architecture=mobile&buildVersion=5.4.0-917c0e6072&deviceDNT=0&deviceId=071492b1-cafd-427b-81d4-f532808c8397_d6a39913ac3adbd2&deviceMake=samsung&deviceModel=SM-N976N&deviceType=android,samsung,mobile&deviceVersion=7.1.2_25&marketingRegion=FR&sid=b90a2c1a-a2ce-4601-a02d-abe734775341 -#EXTINF:-1 tvg-id="PlutoTVInvestigation.us",Pluto TV Investigation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f4b36d67d0007a91a04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us",Pluto TV Johnny Carson TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e66928133461100077dfd73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=514&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVJohnnyCarsonTV.us",Pluto TV Johnny Carson TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66928133461100077dfd73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us",Pluto TV Judge nosey (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e9decb953e157000752321c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=160&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVJudgenosey.us",Pluto TV Judge nosey (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9decb953e157000752321c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa9bcd8160700076d45d1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecb336537e8000764a17f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12141b146d760007934ea7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVJunior.us",Pluto TV Junior (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2ac4bc6c500094ab45b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKenanyKel.us",Pluto TV Kenan y Kel (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fcea93ffcf94500071c4b2f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us",Pluto TV Kevin Hart LOL (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5af09e645126c2157123f9eb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=462&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKevinHartLOL.us",Pluto TV Kevin Hart LOL (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5af09e645126c2157123f9eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b648e738977e2c312131&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=30292edb-0714-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=51c75f7bb6f26ba1cd00002f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=989&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d54be738977e2c310940/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b648e738977e2c312131/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/51c75f7bb6f26ba1cd00002f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dae8ce788b0009eaf77b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKids.us",Pluto TV Kids (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1214a637c6fd00079c652f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSpain.us",Pluto TV Kids (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aab1d29b39600073e243f&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=910&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ad56edc89300090d2ebb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=976&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ad56edc89300090d2ebb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsAnimation.us",Pluto TV Kids Animation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eba14a4ffb8000764e950/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us",Pluto TV Kids Collection (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsCollection.us",Pluto TV Kids Collection (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b625c1ffbc0007e60c37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsHalloween.us",Pluto TV Kids Halloween (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abeb21044ee0007f19d33/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us",Pluto TV Kids Séries (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVKidsSeries.us",Pluto TV Kids Séries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb99ff17815000784a3b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVKidsSeriesPlus.us",Pluto TV Kids Séries+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ebe299d30c0007b1f12a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c89d040-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=8f06f039-4f3e-499b-a415-5cf7148a64d7 -#EXTINF:-1 tvg-id="PlutoTVLaChicaInvisible.us",Pluto TV La Chica Invisible (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abe3ffcd659000770d88d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLandSitcoms.us",Pluto TV Land Sitcoms [Offline] -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/997452/playlist.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appName=samsungmobiletvplus&appVersion=unknown&architecture=&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsungmobiletvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&includeExtendedEvents=&paln=&serverSideAds=true&sid=SAMSUNG-TVPLUS-fcaa053c-0ece-49c6-ae1f-c3e42a7faf17&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLasPistasdeBlue.us",Pluto TV Las Pistas de Blue (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f9996533c9de3000759ccb5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLasreglasdeljuego.us",Pluto TV Las reglas del juego (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acb4eebe0f0000767b40f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLatinAngels.us",Pluto TV Latin Angels (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df41355939756000921d15b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLemieletlesabeilles.us",Pluto TV Le miel et les abeilles (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549a8d8f1b53000768bc52/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9dcb446c-ad5a-4171-a84f-d144607d7b33 -#EXTINF:-1 tvg-id="PlutoTVLemiracledelamour.us",Pluto TV Le miracle de l'amour (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549c238c3f21000753d3e0/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8b56e1-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=af1cb1d2-a877-4020-81af-3f89e475eb94 -#EXTINF:-1 tvg-id="PlutoTVLesCordier.us",Pluto TV Les Cordier (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLesCordier.us",Pluto TV Les Cordier (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed80fa09f120007c8daa5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLesfillesdacote.us",Pluto TV Les filles d'à côté (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60549d97cd7b090007c73314/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8ba500-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0e7a9749-ec3d-4fea-9861-01e153b22e40 -#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us",Pluto TV Les Nouveaux Detectives (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLesNouveauxDetectives.us",Pluto TV Les Nouveaux Detectives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8edb6df1ebb800072edf10/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLittleBabyBum.us",Pluto TV Little Baby Bum (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5eb301b7395671000780d100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5eb301b7395671000780d100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=995&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLiveinConcert.us",Pluto TV Live in Concert (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6080411af03506000759916e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb571-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9c6d294f-660b-47ef-bc20-1961faf21c6a -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (720p) -http://stitcher.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?appVersion=5.2.7&deviceDNT=web&deviceId=web24163643069&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=1&serverSideAds=false&sid=web24157571521 -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLiveMusicReplay.us",Pluto TV Live Music Replay (US) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5873fc21cad696fb37aa9054/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5873fc21cad696fb37aa9054&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=855&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us",Pluto TV Lively Place (240p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dc1cb279c91420009db261d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=615&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLivelyPlace.us",Pluto TV Lively Place (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc1cb279c91420009db261d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8beeb39b5d5d5f8c672530&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=276&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db04b360fa2560009deb3de&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=84dcf52a-0584-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8beeb39b5d5d5f8c672530/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db04b360fa2560009deb3de/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLives.us",Pluto TV Lives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600acaff5f2d6e000745effb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLogo.us",Pluto TV Logo (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce5a8954311f992edbe1da2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=187&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLogo.us",Pluto TV Logo (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce5a8954311f992edbe1da2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us",Pluto TV Los archivos del FBI (432p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e67d41b93312100076f3fca/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLosarchivosdelFBI.us",Pluto TV Los archivos del FBI (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acbed25948a0007ffbe65/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLosnuevosdetectives.us",Pluto TV Los nuevos detectives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acba0d1f6340007db8843/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us",Pluto TV Louis La Brocante (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLouisLaBrocante.us",Pluto TV Louis La Brocante (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed6d569d2d4000864a976/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoupe.us",Pluto TV Loupe (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f0cb39b4ae1f80007bad585&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=694&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoupe.us",Pluto TV Loupe (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0cb39b4ae1f80007bad585/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us",Pluto TV Love & Hip Hop (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveHipHop.us",Pluto TV Love & Hip Hop (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51ddf0369acdb278dfb05e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51ddf0369acdb278dfb05e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=283&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoveNature.us",Pluto TV Love Nature (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60dd6b1da79e4d0007309455/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLoveStories.us",Pluto TV Love Stories (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e181520cfa000771ce79&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=147&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLoveStories.us",Pluto TV Love Stories (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e181520cfa000771ce79/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f99a772c54853000797bf18/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c01df1759ee03633e7b272c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=971&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVLuchaLibreAAA.us",Pluto TV Lucha Libre AAA (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c01df1759ee03633e7b272c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aaefb96f755000733c11a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMADE.us",Pluto TV MADE (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb71a26ed8300076433f9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMADEInBritain.us",Pluto TV MADE In Britain (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e14486590ba3e0009d912ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc264e0451770009ed742f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc02ece31f6050009de4b39&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ecc4d45-0714-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMariovsSonic.us",Pluto TV Mario vs Sonic (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02ece31f6050009de4b39/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMasterChef.us",Pluto TV MasterChef (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e3ddbd27091820009f86dd9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMcLeodsDaughters.us",Pluto TV McLeod's Daughters (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18e5df6dd1d0007cf7bad/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMidsomerMurders.us",Pluto TV Midsomer Murders (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cbf6a868a1bce4a3d52a5e9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cbf6a868a1bce4a3d52a5e9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=385&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMilitary.us",Pluto TV Military (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb3fea0f711fd76340eebff&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=655&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMilitary.us",Pluto TV Military (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb3fea0f711fd76340eebff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (360p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d907e738977e2c31099a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812b821249444e05d09cc4c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=815&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bca67ef2767e1846e5a1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinecrafTV.us",Pluto TV MinecrafTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812b821249444e05d09cc4c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMinutoParaGanar.us",Pluto TV Minuto Para Ganar (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46e64dc73db400094b5f0b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMissionImpossible.us",Pluto TV Mission: Impossible (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f77977bd924d80007eee60c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMisterios.us",Pluto TV Misterios (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde2f53449c50009b2b4dc/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="MisteriosMedicos.us",Pluto TV Misterios Medicos (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f230e416b68ff00075b0139/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMisteriossinResolver.us",Pluto TV Misterios sin Resolver (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f610042272f68000867685b/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMLB.us",Pluto TV MLB (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e66968a70f34c0007d050be/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.7.4-9a7fc53e0c1da468e3c566c3f53e98a36ca1f97b&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=9f228953-21cb-4b82-a393-dd32d047379f&deviceLat=45.4994&deviceLon=-73.5703&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=76.0.3809.132&serverSideAds=true&sid=d1634607-2892-447a-b316-17a106f905fb&userId= -#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMLS.us",Pluto TV MLS (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb626cfcaf83414128f439c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb626cfcaf83414128f439c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=712&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMotor.us",Pluto TV Motor (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMotorEngland.us",Pluto TV Motor (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0510962948d000961d3c6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=576&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMOVIECHANNEL.us",Pluto TV MOVIE CHANNEL (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appVersion=5.2.2-d60060c7283e0978cc63ba036956b5c1657f8eba&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=9daeec78-6a24-43e9-b800-df83d8e465a8&deviceLat=-35.1192&deviceLon=-60.5047&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=80.0.3987.149&includeExtendedEvents=false&serverSideAds=true&sid=e2177d24-366a-4c1c-b974-702fe1d6159a&userId= -#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=eddfafe3-0584-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMovies.us",Pluto TV Movies (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMoviesEngland.us",Pluto TV Movies (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ad8d3a31b95267e225e4e09&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMoviesGermany.us",Pluto TV Movies (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c5c3b948002db3c3e0b262e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c5c3b948002db3c3e0b262e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=50&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMoviesCH.us",Pluto TV Movies CH (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2bdfec6cdc10009975e20/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMoviesPlus.us",Pluto TV Movies+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0a1f73654db655a9274428/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d0a1f73654db655a9274428&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=372611e5-6b4b-4a3f-9491-368034dfa39e&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Movies+ (CH) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c8a6bc64dc7286c6afaf4ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5c8a6bc64dc7286c6afaf4ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f747754f-ee3e-4968-9e8e-779da031bce9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=545943f1c9f133a519bbac92&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=488&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d44cfd87eb3a2717afc5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMST3K.us",Pluto TV MST3K (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/545943f1c9f133a519bbac92/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (240p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca672f515a62078d2ec0ad2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=178&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fab088b3279760007d4e4fd/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf325764025859afdd6c4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1b711cc8-0587-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcebe53d352330009e56f5b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dcebe53d352330009e56f5b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b3be0889-389b-4ef9-a876-b3d589aa6cd9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca672f515a62078d2ec0ad2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e13b6dd7ec3510009e032d0/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTV.us",Pluto TV MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212fb81e85c00077ae9ef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVGermany.us",Pluto TV MTV (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf325764025859afdd6c4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5caf325764025859afdd6c4d&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVAnimaciones.us",Pluto TV MTV Animaciones (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb8ce2e426140007c78fd1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVAreyoutheOne.us",Pluto TV MTV Are you the One? (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6108d8cc331900075e98e4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) -http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS02/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1509fb7809fd000949e39b/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTVBiggestPop.us",Pluto TV MTV Biggest Pop (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fd1a252d35decbc4080c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fd1a252d35decbc4080c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=870&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150a3d73fd3f00094f722f/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) -http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS03/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVBlockParty.us",Pluto TV MTV Block Party (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d3609cd6a6c78d7672f2a81/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d3609cd6a6c78d7672f2a81&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=868&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us",Pluto TV MTV Catfish (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5db6a697d5f34a000934cd13&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f1438745-0586-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfish.us",Pluto TV MTV Catfish (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishGermany.us",Pluto TV MTV Catfish (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db6a697d5f34a000934cd13/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db6a697d5f34a000934cd13&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishSpain.us",Pluto TV MTV Catfish (Spain) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab3c7778230000735cf41&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=305&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us",Pluto TV MTV Catfish+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ed0bb61f1200072ca4cd/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e61-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0698157f-70d9-4890-978e-e648d753b321 -#EXTINF:-1 tvg-id="PlutoTVMTVCatfishPlus.us",Pluto TV MTV Catfish+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7b855972c36600076b7ddd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7b855972c36600076b7ddd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4433ef8f-a215-466e-a65b-405518cd6e6c&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91b7ea86ee60009d89e75/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVClassic.us",Pluto TV MTV Classic (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f92b56a367e170007cd43f4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVClassicsPlus.us",Pluto TV MTV Classics+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ff5ec5500d4c70007341c7c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8a1e60-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=de18fdd4-d30a-4263-8ecc-df902150744d -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ea815a515d149000748ee9b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fb612cc2-0587-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCribs.us",Pluto TV MTV Cribs (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVCribsGermany.us",Pluto TV MTV Cribs (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea815a515d149000748ee9b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea815a515d149000748ee9b&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlutoTVSpain.us",Pluto TV MTV Cribs (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab9c6d8f1300007f54e30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab9c6d8f1300007f54e30&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=315&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVCribsPlus.us",Pluto TV MTV Cribs+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efb54eaa5714d000744b6a0/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5efb54eaa5714d000744b6a0&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=f664f477-078c-4957-bc9a-51f90e3d9ce7&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6899a37b88b269472ea4b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=330&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf330ea5068259a32320fd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4c740197-0587-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6899a37b88b269472ea4b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf330ea5068259a32320fd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVDating.us",Pluto TV MTV Dating (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600169ec77e6f70008fa9cf0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVEmbarazadaalos16.us",Pluto TV MTV Embarazada a los 16 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98537a5a4341000733aefe/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVEnVivo.us",Pluto TV MTV En Vivo (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d6f3f3f7bb0007dbd092/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us",Pluto TV MTV Latino (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96d351652631e36d4331f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=965&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVLatino.us",Pluto TV MTV Latino (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96d351652631e36d4331f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVLoveMusic.us",Pluto TV MTV Love Music (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/600ae79fa46e17000794e84c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVMistleYO.us",Pluto TV MTV Mistle YO! (720p) -http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS08/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVMusicMadeinSpain.us",Pluto TV MTV Music Made in Spain (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60a26a056d55b30007918d5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVOriginals.us",Pluto TV MTV Originals (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVOriginalsSpain.us",Pluto TV MTV Originals (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aadf373bed3000794d1d7&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=300&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVPranks.us",Pluto TV MTV Pranks (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98a911c881310007d7aae2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVRealities.us",Pluto TV MTV Realities (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6130d8dc943001000708548d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVRidiculousness.us",Pluto TV MTV Ridiculousness (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9847fd513250000728a9a5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us",Pluto TV MTV Spankin' New (720p) -http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS07/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVMTVSpankinNew.us",Pluto TV MTV Spankin' New (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fdb8ca91eedee1633117/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fdb8ca91eedee1633117&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=869&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTattooADos.us",Pluto TV MTV Tattoo A Dos (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/611b87946b7f420007c22361/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us",Pluto TV MTV Teen Mom (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cffcf5686dfe15595fb3f56&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7ca1fec5-0587-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTeenMom.us",Pluto TV MTV Teen Mom (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cffcf5686dfe15595fb3f56/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us",Pluto TV MTV The Hills (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e86bf0bac55fe7f75736&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a934c097-0587-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTheHills.us",Pluto TV MTV The Hills (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e86bf0bac55fe7f75736/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us",Pluto TV MTV The Shores (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5caf32c2a5068259a32320fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d49824ea-0587-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMTVTheShores.us",Pluto TV MTV The Shores (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5caf32c2a5068259a32320fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMTVUnplugged.us",Pluto TV MTV Unplugged (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98471110cca20007d39f76/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundo.us",Pluto TV Mundo (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d103f031154a4172d262b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=959&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMundo.us",Pluto TV Mundo (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d103f031154a4172d262b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundoReal.us",Pluto TV Mundo Real (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMundoRealSpain.us",Pluto TV Mundo Real (Spain) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1acdfda84c970007e750b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1acdfda84c970007e750b5&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=405&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMutantX.us",Pluto TV Mutant X (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc008d4422e00072d2405/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMutanteX.us",Pluto TV Mutante X (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1acc91cc9e1b000711ff21/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5Crime.us",Pluto TV My5 Crime (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c571faeb3e2738ae27933/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us",Pluto TV My5 Documentaries (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf901280e3550009139c86&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=475&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMy5Documentaries.us",Pluto TV My5 Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf901280e3550009139c86/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5GPs.us",Pluto TV My5 GP's (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVMy5GPsEngland.us",Pluto TV My5 GP's (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d2c57ee4f9ddf73da8a0ba5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d2c57ee4f9ddf73da8a0ba5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVMythbusters.us",Pluto TV Mythbusters (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd833b41843b56328bac189/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVN24Doku.us",Pluto TV N24 Doku (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60080e8a4bf36000076a81b1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNarcos.us",Pluto TV Narcos (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7274806621ff00072651ff/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ee92e72fb286e0007285fec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5da0c85bd2c9c10009370984&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=836&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0c85bd2c9c10009370984/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaruto.us",Pluto TV Naruto (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6df5a173d7340007c559f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNashville.us",Pluto TV Nashville (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a026c464ef900073130f0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d10ce06a9665fe54bf74a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=962&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d10ce06a9665fe54bf74a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturaleza.us",Pluto TV Naturaleza (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd85eac039bba0009e86d1d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1c3f9851dd5632e2c91b2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1e26d24e-0585-11eb-82fe-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5be1c3f9851dd5632e2c91b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed58b2db26f0007b4aa73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNature.us",Pluto TV Nature (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db050444f3c52000984c72a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0c2f3739f6b900075f366c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812bd9f249444e05d09cc4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=692&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNaturescape.us",Pluto TV Naturescape (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812bd9f249444e05d09cc4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNatureza.us",Pluto TV Natureza (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0ecebc00070e170f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us",Pluto TV NBC News NOW (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5df97894467dfa00091c873c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=213&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNBCNewsNOW.us",Pluto TV NBC News NOW (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5df97894467dfa00091c873c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNews.us",Pluto TV News (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5268abcd0ce20a8472000114&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=202&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNews.us",Pluto TV News (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5268abcd0ce20a8472000114/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us",Pluto TV NFL Channel (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ced7d5df64be98e07ed47b6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=708&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNFLChannel.us",Pluto TV NFL Channel (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ced7d5df64be98e07ed47b6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede448d3d50590007a4419e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=fbbb3638-0714-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2b57d6c60800074cb305/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2b57d6c60800074cb305&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=19a8ba6e-9713-4df0-83d9-93dd72c984f0&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Nick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) -https://siloh.pluto.tv/lilo/production/Nick/01/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca673e0d0bd6c2689c94ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=977&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&coppa=1&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNick.us",Pluto TV Nick (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca673e0d0bd6c2689c94ce3/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= -#EXTINF:-1 tvg-id="",Pluto TV Nick (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ede448d3d50590007a4419e&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=261&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickClasico.us",Pluto TV Nick Clásico (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7c348520b40009c347e2/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNickClasico.us",Pluto TV Nick Clásico (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f12151794c1800007a8ae63/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us",Pluto TV Nick Emma einfach magisch! (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f4796368174910007756454&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=db62fa8b-15bd-11eb-bde1-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickEmmaeinfachmagisch.us",Pluto TV Nick Emma einfach magisch! (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4796368174910007756454/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede45451dce190007ef9ff2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=d1d4cf70-0714-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede45451dce190007ef9ff2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) [Not 24/7] -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca6748a37b88b269472dad9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=978&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJr.us",Pluto TV Nick Jr. (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ca6748a37b88b269472dad9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us",Pluto TV Nick Jr. Club (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7cb2cbb9010009b4fe32/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJrClub.us",Pluto TV Nick Jr. Club (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Nick Jr. Club (Brazil) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f121460b73ac6000719fbaf&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=706&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us",Pluto TV Nick Jr. Latino (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d0ec7b0f7015fbe0a3bf7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=998&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickJrLatino.us",Pluto TV Nick Jr. Latino (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0ec7b0f7015fbe0a3bf7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickLatino.us",Pluto TV Nick Latino (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d08395f39465da6fb3ec4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d08395f39465da6fb3ec4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=997&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickRewind.us",Pluto TV Nick Rewind (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=1f8c3bd8-0715-11eb-97af-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNickRewind.us",Pluto TV Nick Rewind (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNickRewindGermany.us",Pluto TV Nick Rewind (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed106ce4bf2e80007700bb3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ed106ce4bf2e80007700bb3&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=262&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnickrewindPlus.us",Pluto TV nickrewind+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f3d2bcd0fadc30007b4863b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f3d2bcd0fadc30007b4863b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=26a921c8-2009-4fa8-9d4f-3edbe18a97f7&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aec96ec5126c2157123c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=159&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aec96ec5126c2157123c657/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVnosey.us",Pluto TV nosey (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2ba1a9c91420009db4858/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelas.us",Pluto TV Novelas (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde0cc2efd2700090b7ff4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us",Pluto TV Novelas Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dbf4a838b60007ffbba1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=942&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasDrama.us",Pluto TV Novelas Drama (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelasDramas.us",Pluto TV Novelas Dramas (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dbf4a838b60007ffbba1/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84db2db3851800077c871e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=941&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVNovelasRomance.us",Pluto TV Novelas Romance (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84db2db3851800077c871e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us",Pluto TV Novelas Thriller (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e84dc59026b9b000766f9a2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=943&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNovelasThriller.us",Pluto TV Novelas Thriller (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e84dc59026b9b000766f9a2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us",Pluto TV Nuestra Vision (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e6690befbdf780007f78158&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=920&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVNuestraVision.us",Pluto TV Nuestra Vision (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e6690befbdf780007f78158/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVOhMyPet.us",Pluto TV Oh My Pet (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2acdab16f5b3000721ae2c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVOnePiece.us",Pluto TV One Piece (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7790b3ed0c88000720b241/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="Pac12Insider.us",Pluto TV Pac-12 Insider (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f84ce2ac265700008d48dcf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us",Pluto TV Paramount Movie Channel (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cb0cae7a461406ffe3f5213&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=100&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParamountMovieChannel.us",Pluto TV Paramount Movie Channel (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cb0cae7a461406ffe3f5213/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParamountPlusPicks.us",Pluto TV Paramount+ Picks (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ff8c708653d080007361b14/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5adf96e3e738977e2c31cb04&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=669&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f98487036af340008da1e37&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=77386fa6-3401-11eb-8335-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5adf96e3e738977e2c31cb04/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed9461b35690007a0bc3a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f98487036af340008da1e37/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormal.us",Pluto TV Paranormal (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/612ce5214bb5790007ad3016/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVParanormalEngland.us",Pluto TV Paranormal (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4af2ffa9506ab29cf38c38&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=216&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPeleas.us",Pluto TV Peleas (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e98b0447665f200078caded/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebac65911406400078b8993/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95c119dc712000741fa35/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5eb95d63b270fc0007c465e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed0720dc198000728f9d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515d080e738d000739e19c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e54169f4b9b25000994a303/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleareAwesome.us",Pluto TV People are Awesome (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1780e94100007f94b3f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPeopleTV.us",Pluto TV People TV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c2c3ae40e64939daad8b76/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c2c3ae40e64939daad8b76&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=192&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us",Pluto TV PGA TOUR (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5de94dacb394a300099fa22a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=713&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPGATOUR.us",Pluto TV PGA TOUR (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5de94dacb394a300099fa22a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPistasdeBlue.us",Pluto TV Pistas de Blue (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aa82c150b2500077733d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlanetaJuniorTV.us",Pluto TV Planeta Junior TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609501978c069d00074e0dd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us",Pluto TV Plus Belle La Vie (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVPlusBelleLaVie.us",Pluto TV Plus Belle La Vie (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ed5fba4ffb8000764ea01/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPlusBellelaViePlus.us",Pluto TV Plus Belle la Vie+ (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fff211667854f00079a9b5b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8abaa0-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=353eca77-9a84-4a7e-a1d5-97ac79861272 -#EXTINF:-1 tvg-id="PlutoTVPluto80sRewind.us",Pluto TV Pluto 80s Rewind (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ca525b650be2571e3943c63/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ca525b650be2571e3943c63&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=95&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoActionSports.us",Pluto TV Pluto Action Sports (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5be1be871843b56328bc3ef1/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5be1be871843b56328bc3ef1&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=8a1b4593-8596-4ff8-8720-2c3271ea36ca&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAdventureTV.us",Pluto TV Pluto Adventure TV (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5938876b78d8d9c074c3c657/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5938876b78d8d9c074c3c657&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=675&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAfterSchoolCartoons.us",Pluto TV Pluto After School Cartoons (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56171fafada51f8004c4b40f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56171fafada51f8004c4b40f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=990&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPlutoAllRealitybyWEtv.us",Pluto TV Pluto All Reality by WE tv (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82530945600e0007ca076c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82530945600e0007ca076c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=310&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us",Pluto TV pocket.watch (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae0a40e8ee0d000975e99b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=993&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVpocketwatch.us",Pluto TV pocket.watch (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae0a40e8ee0d000975e99b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPoliceWomen.us",Pluto TV Police Women (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e79c2f280389000077242a8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPortadosFundos.us",Pluto TV Porta dos Fundos (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us",Pluto TV Privacy Policy (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b36abcddfb1f0729a3a7dab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=899&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVPrivacyPolicy.us",Pluto TV Privacy Policy (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b36abcddfb1f0729a3a7dab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVProWrestling.us",Pluto TV Pro Wrestling (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fac431fc1ffbc0007e6b6a7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVPursuitUP.us",Pluto TV Pursuit UP (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486bed428fe37d8cadba45/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486bed428fe37d8cadba45&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=756&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVQelloConcerts.us",Pluto TV Qello Concerts (720p) -https://siloh.pluto.tv/lilo/production/Qello/ES/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVQwestTVJazzBeyond.us",Pluto TV Qwest TV Jazz & Beyond (720p) -https://siloh.pluto.tv/lilo/production/QwestJazz/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVRealLife.us",Pluto TV Real Life (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abdceddf6a20007f8ccd2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us",Pluto TV Realities ESP (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b4d71754e6a4298d086e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=953&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRealitiesESP.us",Pluto TV Realities ESP (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b4d71754e6a4298d086e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8bf0b06d2d855ee15115e3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=275&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde197f6591d0009839e04/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd8186d53ed2c6334ea0855/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVReality.us",Pluto TV Reality (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8bf0b06d2d855ee15115e3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRescue911.us",Pluto TV Rescue 911 (360p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRescue911.us",Pluto TV Rescue 911 (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e831e9fe730007706acb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e831e9fe730007706acb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=277&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetro.us",Pluto TV Retrô (684p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dde47b63585b500099f74ec&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5204e9ec-0585-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDrama.us",Pluto TV Retro Drama (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroDramaEngland.us",Pluto TV Retro Drama (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf91f19c2c3300098ce961/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf91f19c2c3300098ce961&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=415&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=886c7aee-0585-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1c669094e0e80009b22ab8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=a8542c9b-0714-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c5c2b9d8002db3c3e0b1c6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRetroToons.us",Pluto TV Retro Toons (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1c669094e0e80009b22ab8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d4e7e738977e2c310937/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=58d947b9e420d8656ee101ab&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=489&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRiffTrax.us",Pluto TV RiffTrax (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/58d947b9e420d8656ee101ab/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRoblox.us",Pluto TV Roblox (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51dd5d369acdb278dfb05d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51dd5d369acdb278dfb05d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=816&terminate=false&userId= -#EXTINF:-1 tvg-id="",Pluto TV Rocko’s Modern Life (Brazil) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f6df6293a12e10007017396/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f6df6293a12e10007017396&deviceLat=-23.5475&deviceLon=-46.6361&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=BR&serverSideAds=false&sid=731&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5a66795ef91fef2c7031c599&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=70&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60812fc8539963000707d1e1/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf321-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7ebb5004-1cd6-44bb-990a-082fdcdcba6d -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dc287ce3086a20009f5024c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b2e82991-0585-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc287ce3086a20009f5024c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomance.us",Pluto TV Romance (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5a66795ef91fef2c7031c599/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRomanceEngland.us",Pluto TV Romance (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677c0edace7cff8180b16/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677c0edace7cff8180b16&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=57&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVRugrats.us",Pluto TV Rugrats (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/610c09219fc0430007a3fce6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVRugratsCrecidos.us",Pluto TV Rugrats Crecidos (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea7215005d66d0007e8128a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dbc327d0451770009ed7577&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=4aa698a0-0715-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d94a5451754e6a4298d1059/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSabrina.us",Pluto TV Sabrina (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc327d0451770009ed7577/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSamCat.us",Pluto TV Sam & Cat (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5ba20af628000707cee3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSanctuary.us",Pluto TV Sanctuary (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e7de99bc5200300072e971a&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=e6fbc174-0585-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSanctuary.us",Pluto TV Sanctuary (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e7de99bc5200300072e971a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4fc274694c027be6ed3eea&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=151&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (432p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f2817d3d7573a00080f9175/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4fc274694c027be6ed3eea/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f6a38eaa5b68b0007a00e7a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSciFi.us",Pluto TV Sci-Fi (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc02a44a9518600094273ac/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=563a970aa1a1f7fe7c9daad7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=672&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d9492c77ea6f99188738ff1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVScience.us",Pluto TV Science (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/563a970aa1a1f7fe7c9daad7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSecretDealers.us",Pluto TV Secret Dealers (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8dc0af6784d10007d8ad42/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSensingMurder.us",Pluto TV Sensing Murder (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e9ed47c26ebb000074af566/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeries.us",Pluto TV Series (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde1317578340009b751d0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSeries.us",Pluto TV Séries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121262a189a800076b9386/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeriesComedia.us",Pluto TV Series Comedia (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f9853138d19af0007104a8d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSeriesLatinas.us",Pluto TV Series Latinas (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd837642c6e9300098ad484/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSeriesRetro.us",Pluto TV Series Retro (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de802659167b10009e7deba/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVSherlock.us" status="online",Pluto TV Sherlock (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c00abfed110009d97243/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVShoutFactoryTV.us",Pluto TV Shout! Factory TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/55a6a3275616b6240c26f393/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=55a6a3275616b6240c26f393&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=542&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVShowtimeSelect.us",Pluto TV Showtime Select (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f988934a507de00075d9ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSitcoms.us",Pluto TV Sitcoms (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d767ab2b456c8cf265ce921&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=7e35daaa-06ef-11eb-9df2-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSitcoms.us",Pluto TV Sitcoms (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSitcomsGermany.us",Pluto TV Sitcoms (Germany) (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d767ab2b456c8cf265ce921/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d767ab2b456c8cf265ce921&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=405&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSitcomsPlus.us",Pluto TV Sitcoms+ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cd149f021cb6c55e258bbe8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cd149f021cb6c55e258bbe8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=375760ce-ac7c-4306-818c-98562edc8da5&terminate=false&userId= -#EXTINF:-1 tvg-id="SkillsPlusThrills.us",Pluto TV Skills + Thrills (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6000a6f4c3f8550008fc9b91/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us",Pluto TV Slightly Off By IFC (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlightlyOffByIFC.us",Pluto TV Slightly Off By IFC (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82547b6b3df60007fec2b5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82547b6b3df60007fec2b5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=458&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (480p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5317bfebff98025b3200ff99/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5317bfebff98025b3200ff99&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=696&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSlowTV.us",Pluto TV Slow TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d765a05f65029ce2385aa30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSmithsonianChannelSelects.us",Pluto TV Smithsonian Channel Selects (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21ea08007a49000762d349/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpace.us",Pluto TV Space (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbc2f98777f2e0009934ae7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us",Pluto TV Spike Aventura (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d11baeb31c5a43b77bf59&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=950&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpikeAventura.us",Pluto TV Spike Aventura (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us",Pluto TV Spike Outdoors (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c393cad2de254456f7ef8c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=291&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpikeOutdoors.us",Pluto TV Spike Outdoors (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c393cad2de254456f7ef8c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us",Pluto TV SpongeBob Schwammkopf (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopf.us",Pluto TV SpongeBob Schwammkopf (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d00e8adaab96b5635b2a005&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=715c465f-0715-11eb-a18c-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpongeBobSchwammkopfGermany.us",Pluto TV SpongeBob Schwammkopf (Germany) (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d00e8adaab96b5635b2a005/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d00e8adaab96b5635b2a005&deviceLat=51.2993&deviceLon=9.4910&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=248&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSPORTBeINSportsXtra.us",Pluto TV SPORT : BeIN Sports Xtra (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5df975e2b27cf5000921c102/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=2.9.3-b879e400d5df7a969d4bff8863fe5cb02c7120e6&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=b702181a-c1d6-4ee2-9481-753f471e2ce7&deviceLat=40.8364&deviceLon=-74.1403&deviceMake=Opera&deviceModel=Opera&deviceType=web&deviceVersion=66.0.3515.44&includeExtendedEvents=false&serverSideAds=tr&sid=855d6801-c912-428d-b620-ede4dd0c3b15&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6081310e48d3200007afaf3b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf322-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0727f4fb-ea0b-4814-bb58-fdf3c4534220 -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9bb941b95267e225e59c2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b22749b0-ca0e-4663-8bb3-d83febbbb89f&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=56340779a738201b4ccfeac9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=725&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9bb941b95267e225e59c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSports.us",Pluto TV Sports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/56340779a738201b4ccfeac9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSportsEngland.us",Pluto TV Sports (England) (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7677fa2ec536ce1d587eeb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7677fa2ec536ce1d587eeb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=607&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpotlight.us",Pluto TV Spotlight (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ba3fb9c4b078e0f37ad34e8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=51&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSpotlight.us",Pluto TV Spotlight (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ba3fb9c4b078e0f37ad34e8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStadium.us",Pluto TV Stadium (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59974b6d7ec5063cb56f24c9/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59974b6d7ec5063cb56f24c9&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=748&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStaffPicks.us",Pluto TV Staff Picks (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4d863b98b41000076cd061/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d135e29a52c94dfe543c5d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5637d31f319573e26b64040b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=468&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStandUp.us",Pluto TV Stand Up (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5637d31f319573e26b64040b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStarTrek.us",Pluto TV Star Trek (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5efbd39f8c4ce900075d7698&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=150&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStarTrek.us",Pluto TV Star Trek (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5efbd39f8c4ce900075d7698/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStorageWars.us",Pluto TV Storage Wars (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ede464e7be0030007c58b73&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5922d945-0586-11eb-a59f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStorageWars.us",Pluto TV Storage Wars (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ede464e7be0030007c58b73/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us",Pluto TV Stories by AMC (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8254118601b80007b4b7ae&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=135&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStoriesbyAMC.us",Pluto TV Stories by AMC (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8254118601b80007b4b7ae/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1452156c07b50009d0230e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd81b1053ed2c6334ea0856/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVStrongman.us",Pluto TV Strongman (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1452156c07b50009d0230e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSurf.us",Pluto TV Surf (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d1ce51dbaca4afdb7abfe5f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=abec40e3-86b9-48b6-981d-dc5eeecc6cf9&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSurf.us",Pluto TV Surf (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d1ce51dbaca4afdb7abfe5f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSurvivor.us",Pluto TV Survivor (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVSurvivor.us",Pluto TV Survivor (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e7b24744c60007c1f6fc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e7b24744c60007c1f6fc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=296&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSuspense.us",Pluto TV Suspense (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f15e281b0b8840007324b55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=149&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVSuspense.us",Pluto TV Suspense (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f15e281b0b8840007324b55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTastemade.us",Pluto TV Tastemade (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd1419a3b4f4b000773ba85/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTBN.us",Pluto TV TBN (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTBN.us",Pluto TV TBN (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486b2eeddd9576d66f9066/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486b2eeddd9576d66f9066&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=644&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6de52b9914200091f047a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f0d668b872e4400073acc68&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=9c22837c-0715-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTeen.us",Pluto TV Teen (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us",Pluto TV TEEN SERIES (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTEENSERIES.us",Pluto TV TEEN SERIES (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb7e3d2ed18000746d09a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTeenStars.us",Pluto TV Teen Stars (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60016a60a8e3520008e0d331/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTeenNick.us",Pluto TV TeenNick (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0d668b872e4400073acc68/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelefeClasico.us",Pluto TV Telefe Clásico (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5de91cf02fc07c0009910465/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelefeNoticias.us",Pluto TV Telefe Noticias (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f523aa5523ae000074745ec/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us",Pluto TV Telemundo Telenovelas (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf96cc422df39f1a338d165&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=940&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTelemundoTelenovelas.us",Pluto TV Telemundo Telenovelas (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf96cc422df39f1a338d165/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelenovela.us",Pluto TV Telenovela (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTelenovela.us",Pluto TV Telenovela (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f914f9dccb4de0007df8bc4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTelenovelas.us",Pluto TV Telenovelas (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60b4c06717da110007ee1af6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTerror.us",Pluto TV Terror (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c6dc88fcd232425a6e0f06e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=76&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTerror.us",Pluto TV Terror (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c6dc88fcd232425a6e0f06e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us",Pluto TV The Addams Family (684p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d81607ab737153ea3c1c80e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=511&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheAddamsFamily.us",Pluto TV The Addams Family (684p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d81607ab737153ea3c1c80e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us",Pluto TV The Amazing Race (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f21e8a6e2f12b000755afdb&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=297&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheAmazingRace.us",Pluto TV The Amazing Race (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f21e8a6e2f12b000755afdb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c45f0427b2c0c065e91aab5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheAsylum.us",Pluto TV The Asylum (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheBobRossChannel.us",Pluto TV The Bob Ross Channel (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36d726234ce10007784f2a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us",Pluto TV The Carol Burnett Show (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef396d1be50a3000722808b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=516&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheCarolBurnettShow.us",Pluto TV The Carol Burnett Show (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef396d1be50a3000722808b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us",Pluto TV The Challenge (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48685da7e9f476aa8a1888&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=298&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheChallenge.us",Pluto TV The Challenge (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48685da7e9f476aa8a1888/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheDesignNetwork.us",Pluto TV The Design Network (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ff8c8bcf3d600078af3eb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheFirst.us",Pluto TV The First (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d486acc34ceb37d3c458a64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d486acc34ceb37d3c458a64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=244&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheLoveBoat.us",Pluto TV The Love Boat (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7794a788d29000079d2f07/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5aea40b35126c2157123aa64&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=376&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea71d48af1d0b0007d837f4/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheNewDetectives.us",Pluto TV The New Detectives (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e393d5c696b3b0009775c8b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ebacbcae43a6d000787b88e/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4f5a07694c027be6ed1417/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1abf097eb06300079b30f7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecd336d64c9000754cdf1/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f515ebac01c0f00080e8439/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePetCollective.us",Pluto TV The Pet Collective (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d819e738977e2c31096a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThePriceisRight.us",Pluto TV The Price is Right (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7791b8372da90007fd45e6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us",Pluto TV The Rifleman (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e825550e758c700077b0aef&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=529&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheRifleman.us",Pluto TV The Rifleman (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e825550e758c700077b0aef/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheSimpleLife.us",Pluto TV The Simple Life (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea18f35ae8f730007465915/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us",Pluto TV The Story of Beatclub (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5f982c3420de4100070a545e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=09ab0f67-3401-11eb-a786-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheStoryofBeatclub.us",Pluto TV The Story of Beatclub (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f982c3420de4100070a545e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82bb378601b80007b4bd78&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=925&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us",Pluto TV This Old House (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d51e791b7dba3b2ae990ab2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=618&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThisOldHouse.us",Pluto TV This Old House (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d51e791b7dba3b2ae990ab2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us",Pluto TV Three's Company (240p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThreesCompany.us",Pluto TV Three's Company (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ef3977e5d773400077de284/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ef3977e5d773400077de284&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=508&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e69e08291147bd04a9fd7&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=74&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e1efdbf90ba3e0009d99082&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=b790e11f-0586-11eb-9b92-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e69e08291147bd04a9fd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e1efdbf90ba3e0009d99082/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac8a87cd38d000745d7cf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVThrillers.us",Pluto TV Thrillers (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dbfedccc563080009b60f4a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTinyHouseNation.us",Pluto TV Tiny House Nation (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/601a0342dcf4370007566891/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTODAY.us",Pluto TV TODAY (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d695f7db53adf96b78e7ce3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=234&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTODAY.us",Pluto TV TODAY (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d695f7db53adf96b78e7ce3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us",Pluto TV TokuSHOUTsu (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c3f8f12a93c2d61b9990a4e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=848&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTokuSHOUTsu.us",Pluto TV TokuSHOUTsu (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c3f8f12a93c2d61b9990a4e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVToonsClasico.us",Pluto TV Toons Clásico (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609e7e423e9173000706a681/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us",Pluto TV Tortues Ninja TV (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTortuesNinjaTV.us",Pluto TV Tortues Ninja TV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecc1b37867f00071469e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTosh0.us",Pluto TV Tosh.0 (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5dae084727c8af0009fe40a4&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=470&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTosh0.us",Pluto TV Tosh.0 (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dae084727c8af0009fe40a4/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5d6792bd6be2998ad0ccce30&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=ca4dc680-0715-11eb-aeab-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d6792bd6be2998ad0ccce30/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d0c16d686454ead733d08f8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=983&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTotallyTurtles.us",Pluto TV Totally Turtles (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d0c16d686454ead733d08f8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/59c01b1953680139c6ae9d4d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=59c01b1953680139c6ae9d4d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=678&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTravel.us",Pluto TV Travel (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c444bac1f70009ca756e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1aae8c65727d0007d15a17/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTROL.us",Pluto TV TROL (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8eb8a8b2619a000710605c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us",Pluto TV True Crime (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5812be1c249444e05d09cc50&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=365&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us",Pluto TV True Crime (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5812be1c249444e05d09cc50/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="",Pluto TV Truly (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ebd0ff1e1a4770007479dc7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTurmadaMonica.us",Pluto TV Turma da Mônica (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f997e44949bc70007a6941e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us",Pluto TV TV Land Drama (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d40bebc5e3d2750a2239d7e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=130&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTVLandDrama.us",Pluto TV TV Land Drama (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d40bebc5e3d2750a2239d7e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us",Pluto TV TV Land Sitcoms (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTVLandSitcoms.us",Pluto TV TV Land Sitcoms (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5c2d64ffbdf11b71587184b8/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5c2d64ffbdf11b71587184b8&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=455&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTween.us",Pluto TV Tween (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0ae5af8797b00095c0794&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=991&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVTween.us",Pluto TV Tween (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5db0ae5af8797b00095c0794/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVTYTNetwork.us",Pluto TV TYT Network (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5331d5fb753499095a00045a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnbeatenEsports.us",Pluto TV Unbeaten Esports (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2a961bac1f70009ca7524/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUndercoverBossGlobal.us",Pluto TV Undercover Boss Global (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f0dc00b15eef10007726ef7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5b4e96a0423e067bd6df6901&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=379&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5b4e96a0423e067bd6df6901/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVUnsolvedMysteries.us",Pluto TV Unsolved Mysteries (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bd05b4694d45d266bc951f2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVayasemanita.us",Pluto TV Vaya semanita (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f28009b150b2500077766b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVelocidad.us",Pluto TV Velocidad​ (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd6dc7480e3550009133d4a/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVVEVO2K.us",Pluto TV VEVO 2K (1080p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bca3e0a4ee0007a38e8c/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO70s.us",Pluto TV VEVO 70's (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f26bcd8aea00071240e5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO80s.us",Pluto TV VEVO 80's (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7b8bf927e090007685853/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVO90s.us",Pluto TV VEVO 90's (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fd7bb1f86d94a000796e2c2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVOCountry.us",Pluto TV VEVO Country (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d75e84830900098a1ea0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVevoPop.us",Pluto TV Vevo Pop (1080p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d93b635b43dd1a399b39eee&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=890&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVevoPop.us",Pluto TV Vevo Pop (1080p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b635b43dd1a399b39eee/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVORB.us",Pluto TV VEVO R&B (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5da0d83f66c9700009b96d0e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVEVOReggeatonTrap.us",Pluto TV VEVO Reggeaton & Trap (1080p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32f397795b750007706448/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1IClassic.us",Pluto TV VH1 Classics (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/6076cd1df8576d0007c82193/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us",Pluto TV VH1 Hip Hop Family (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d71561df6f2e6d0b6493bf5&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=284&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVH1HipHopFamily.us",Pluto TV VH1 Hip Hop Family (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d71561df6f2e6d0b6493bf5/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us",Pluto TV VH1 I Love Reality (240p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d7154fa8326b6ce4ec31f2e&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=282&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVH1ILoveReality.us",Pluto TV VH1 I Love Reality (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d7154fa8326b6ce4ec31f2e/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVViajes.us",Pluto TV Viajes (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcddfbdb7cf0e0009ae09ea/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVVictorious.us",Pluto TV Victorious (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b5e43f294f8000793c3d7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVidaReal.us",Pluto TV Vida Real (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f32d4d9ec194100070c7449/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (480p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=589aa03df9ba56a84197a560&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=681&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/589aa03df9ba56a84197a560/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVoyagerDocumentaries.us",Pluto TV Voyager Documentaries (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d1e9e738977e2c310925/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVVs.us",Pluto TV Vs. (480p) -http://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/603fde9026ecbf0007752c2c/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us",Pluto TV WeatherNation (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bdce04659ee03633e758130&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=217&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWeatherNation.us",Pluto TV WeatherNation (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5bdce04659ee03633e758130/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5877acecb16bb1e042ee453f&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=632&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d49455dfd09fd7d4c0daf26/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWeddings.us",Pluto TV Weddings (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5877acecb16bb1e042ee453f/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e8df4bc16e34700077e77d3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=526&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4bdb635ce813b38639e6a3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWesterns.us",Pluto TV Westerns (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8df4bc16e34700077e77d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d48678d34ceb37d3c458a55&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=480&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWildNOut.us",Pluto TV Wild 'N Out (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d48678d34ceb37d3c458a55/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWings.us",Pluto TV Wings (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f7792f6e093980007e02945/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (480p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ed6828192e8b3000743ef61/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ea190ae85a26900075a80e9/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ab3e1242be690697279c75d&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=305&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWipeout.us",Pluto TV Wipeout (720p) [Offline] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ab3e1242be690697279c75d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (360p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=48.8582&deviceLon=2.3387&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=FR&serverSideAds=false&sessionID=cc7dc550-6be3-11eb-9c02-0242ac110002&sid=cc7dc550-6be3-11eb-9c02-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5ad9b7aae738977e2c312132&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=48d01e71-b553-42a5-9205-affb7381b546&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5616f9c0ada51f8004c4b091&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=770&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad8d796e738977e2c31094a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f8ecfb9db6c180007a6d1b0/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVWorldPokerTour.us",Pluto TV World Poker Tour (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5616f9c0ada51f8004c4b091/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) -http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS01/master.m3u8 -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e150921e2191900097c4c23/master.m3u8?advertisingId=8f35210d-be26-5e0d-8c57-d0f910026ee7&appName=rokuchannel&appVersion=1.0&deviceDNT=1&deviceId=8f35210d-be26-5e0d-8c57-d0f910026ee7&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel -#EXTINF:-1 tvg-id="PlutoTVYoMTV.us",Pluto TV Yo! MTV (720p) [Not 24/7] -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d14fc31252d35decbc4080b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d14fc31252d35decbc4080b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=873&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) -http://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60803e541a829e0008e91641/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35fbb570-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ca55bef6-f2a6-488a-be5d-c7ba24d93cdd -#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5e8b0d10e186bf0007e2b100&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=2c143e9d-0cd6-4d02-8b92-df3471ececef&terminate=false&userId= -#EXTINF:-1 tvg-id="PlutoTVYoga.us",Pluto TV Yoga (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e8b0d10e186bf0007e2b100/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us",Pluto TV Yu-Gi-Oh (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5fceaab478f2af00080ff51f/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId= -#EXTINF:-1 tvg-id="PlutoTVYuGiOh.us",Pluto TV Yu-Gi-Oh (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f4ec10ed9636f00089b8c89/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS -#EXTINF:-1 tvg-id="SkyNews.us",Sky News (720p) [Offline] -https://skynews2-plutolive-vo.akamaized.net/cdhlsskynewsamericas/1013/latest.m3u8 -#EXTINF:-1 tvg-id="SpikeAdventura.us",Spike Adventura (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d11baeb31c5a43b77bf59/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cc81e793798650e4f7d9fd3/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5cc81e793798650e4f7d9fd3&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=867f59cf-0586-11eb-8b9f-0242ac110002&terminate=false&userId= -#EXTINF:-1 tvg-id="TheAsylum.us",The Asylum (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/591105034c1806b47438342c/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=591105034c1806b47438342c&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=115&terminate=false&userId= -#EXTINF:-1 tvg-id="TheBlaze.us",The Blaze (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46fba0c43b0d00096e5ac1/master.m3u8?advertisingId=&appName=web&appVersion=2.9.4-5a4e0d260864cab32bb296709789424ab48df204&architecture=&buildVersion=&clientTime=&deviceDNT=0&deviceId=954c037d-1a11-44d3-b488-9d06f8a3e068&deviceLat=33.9560&deviceLon=-118.3887&deviceMake=Chrome&deviceModel=Chrome&deviceType=web&deviceVersion=81.0.4044.26&includeExtendedEvents=false&serverSideAds=true&sid=e6f1682e-cc62-437a-bd0d-082bea9a4059&userId= -#EXTINF:-1 tvg-id="TheNewDetectives.us",The New Detectives (720p) -http://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5aea40b35126c2157123aa64/master.m3u8?advertisingId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&appVersion=unknown&deviceDNT=0&deviceId=91a6ae51-6f9d-4fbb-adb0-bdfffa44693e&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceUA=samsung/SM-T720/10&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain=https://play.google.com/store/apps/details?id=com.samsung.android.tvplus&samsung_app_name=Mobile+TV+Plus&us_privacy=1YNY -#EXTINF:-1 tvg-id="ThePetCollective.us",The Pet Collective (720p) -https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5bb1ad55268cae539bcedb08/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5bb1ad55268cae539bcedb08&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=637&terminate=false&userId= -#EXTINF:-1 tvg-id="TopGear.us",Top Gear (720p) -https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d356a534f63f000850cdd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS From b44e1b4f2ebad5121452a2ecb415a2ed7bb5d284 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 02:07:31 +0300 Subject: [PATCH 151/157] Move /channels to /streams --- {channels => streams}/ad.m3u | 0 {channels => streams}/ae.m3u | 0 {channels => streams}/af.m3u | 0 {channels => streams}/ag.m3u | 0 {channels => streams}/al.m3u | 0 {channels => streams}/am.m3u | 0 {channels => streams}/ao.m3u | 0 {channels => streams}/ar.m3u | 0 {channels => streams}/at.m3u | 0 {channels => streams}/at_samsung.m3u | 0 {channels => streams}/au.m3u | 0 {channels => streams}/au_samsung.m3u | 0 {channels => streams}/aw.m3u | 0 {channels => streams}/az.m3u | 0 {channels => streams}/ba.m3u | 0 {channels => streams}/bb.m3u | 0 {channels => streams}/bd.m3u | 0 {channels => streams}/bd_jagobd.m3u | 0 {channels => streams}/be.m3u | 0 {channels => streams}/be_samsung.m3u | 0 {channels => streams}/bf.m3u | 0 {channels => streams}/bg.m3u | 0 {channels => streams}/bh.m3u | 0 {channels => streams}/bj.m3u | 0 {channels => streams}/bn.m3u | 0 {channels => streams}/bo.m3u | 0 {channels => streams}/br.m3u | 0 {channels => streams}/br_pluto.m3u | 0 {channels => streams}/br_samsung.m3u | 0 {channels => streams}/bs.m3u | 0 {channels => streams}/by.m3u | 0 {channels => streams}/by_sluhay.m3u | 0 {channels => streams}/ca.m3u | 0 {channels => streams}/ca_samsung.m3u | 0 {channels => streams}/ca_stingray.m3u | 0 {channels => streams}/cd.m3u | 0 {channels => streams}/cg.m3u | 0 {channels => streams}/ch.m3u | 0 {channels => streams}/ch_samsung.m3u | 0 {channels => streams}/ci.m3u | 0 {channels => streams}/cl.m3u | 0 {channels => streams}/cm.m3u | 0 {channels => streams}/cn.m3u | 0 {channels => streams}/co.m3u | 0 {channels => streams}/cr.m3u | 0 {channels => streams}/cu.m3u | 0 {channels => streams}/cw.m3u | 0 {channels => streams}/cy.m3u | 0 {channels => streams}/cz.m3u | 0 {channels => streams}/de.m3u | 0 {channels => streams}/de_samsung.m3u | 0 {channels => streams}/dk.m3u | 0 {channels => streams}/dk_samsung.m3u | 0 {channels => streams}/do.m3u | 0 {channels => streams}/dz.m3u | 0 {channels => streams}/ec.m3u | 0 {channels => streams}/ee.m3u | 0 {channels => streams}/eg.m3u | 0 {channels => streams}/es.m3u | 0 {channels => streams}/es_rakuten.m3u | 0 {channels => streams}/es_samsung.m3u | 0 {channels => streams}/et.m3u | 0 {channels => streams}/fi.m3u | 0 {channels => streams}/fi_samsung.m3u | 0 {channels => streams}/fj.m3u | 0 {channels => streams}/fo.m3u | 0 {channels => streams}/fr.m3u | 0 {channels => streams}/fr_samsung.m3u | 0 {channels => streams}/ge.m3u | 0 {channels => streams}/gh.m3u | 0 {channels => streams}/gl.m3u | 0 {channels => streams}/gm.m3u | 0 {channels => streams}/gn.m3u | 0 {channels => streams}/gp.m3u | 0 {channels => streams}/gq.m3u | 0 {channels => streams}/gr.m3u | 0 {channels => streams}/gt.m3u | 0 {channels => streams}/hk.m3u | 0 {channels => streams}/hn.m3u | 0 {channels => streams}/hr.m3u | 0 {channels => streams}/ht.m3u | 0 {channels => streams}/hu.m3u | 0 {channels => streams}/id.m3u | 0 {channels => streams}/ie.m3u | 0 {channels => streams}/ie_samsung.m3u | 0 {channels => streams}/il.m3u | 0 {channels => streams}/in.m3u | 0 {channels => streams}/in_samsung.m3u | 0 {channels => streams}/iq.m3u | 0 {channels => streams}/ir.m3u | 0 {channels => streams}/ir_telewebion.m3u | 0 {channels => streams}/is.m3u | 0 {channels => streams}/it.m3u | 0 {channels => streams}/it_samsung.m3u | 0 {channels => streams}/jm.m3u | 0 {channels => streams}/jo.m3u | 0 {channels => streams}/jp.m3u | 0 {channels => streams}/ke.m3u | 0 {channels => streams}/kg.m3u | 0 {channels => streams}/kh.m3u | 0 {channels => streams}/kp.m3u | 0 {channels => streams}/kr.m3u | 0 {channels => streams}/kw.m3u | 0 {channels => streams}/kz.m3u | 0 {channels => streams}/la.m3u | 0 {channels => streams}/lb.m3u | 0 {channels => streams}/li.m3u | 0 {channels => streams}/lk.m3u | 0 {channels => streams}/lt.m3u | 0 {channels => streams}/lu.m3u | 0 {channels => streams}/lu_samsung.m3u | 0 {channels => streams}/lv.m3u | 0 {channels => streams}/ly.m3u | 0 {channels => streams}/ma.m3u | 0 {channels => streams}/mc.m3u | 0 {channels => streams}/md.m3u | 0 {channels => streams}/me.m3u | 0 {channels => streams}/mk.m3u | 0 {channels => streams}/ml.m3u | 0 {channels => streams}/mm.m3u | 0 {channels => streams}/mn.m3u | 0 {channels => streams}/mo.m3u | 0 {channels => streams}/mq.m3u | 0 {channels => streams}/mt.m3u | 0 {channels => streams}/mv.m3u | 0 {channels => streams}/mw.m3u | 0 {channels => streams}/mx.m3u | 0 {channels => streams}/mx_samsung.m3u | 0 {channels => streams}/my.m3u | 0 {channels => streams}/mz.m3u | 0 {channels => streams}/ne.m3u | 0 {channels => streams}/ng.m3u | 0 {channels => streams}/ni.m3u | 0 {channels => streams}/nl.m3u | 0 {channels => streams}/nl_samsung.m3u | 0 {channels => streams}/no.m3u | 0 {channels => streams}/no_samsung.m3u | 0 {channels => streams}/np.m3u | 0 {channels => streams}/nz.m3u | 0 {channels => streams}/om.m3u | 0 {channels => streams}/pa.m3u | 0 {channels => streams}/pe.m3u | 0 {channels => streams}/pf.m3u | 0 {channels => streams}/ph.m3u | 0 {channels => streams}/pk.m3u | 0 {channels => streams}/pl.m3u | 0 {channels => streams}/pr.m3u | 0 {channels => streams}/ps.m3u | 0 {channels => streams}/pt.m3u | 0 {channels => streams}/pt_samsung.m3u | 0 {channels => streams}/py.m3u | 0 {channels => streams}/qa.m3u | 0 {channels => streams}/ro.m3u | 0 {channels => streams}/rs.m3u | 0 {channels => streams}/ru.m3u | 0 {channels => streams}/ru_catcast.m3u | 0 {channels => streams}/ru_okkotv.m3u | 0 {channels => streams}/rw.m3u | 0 {channels => streams}/sa.m3u | 0 {channels => streams}/sd.m3u | 0 {channels => streams}/se.m3u | 0 {channels => streams}/se_samsung.m3u | 0 {channels => streams}/sg.m3u | 0 {channels => streams}/si.m3u | 0 {channels => streams}/sk.m3u | 0 {channels => streams}/sl.m3u | 0 {channels => streams}/sm.m3u | 0 {channels => streams}/sn.m3u | 0 {channels => streams}/so.m3u | 0 {channels => streams}/sv.m3u | 0 {channels => streams}/sy.m3u | 0 {channels => streams}/th.m3u | 0 {channels => streams}/tj.m3u | 0 {channels => streams}/tm.m3u | 0 {channels => streams}/tn.m3u | 0 {channels => streams}/tr.m3u | 0 {channels => streams}/tt.m3u | 0 {channels => streams}/tw.m3u | 0 {channels => streams}/tz.m3u | 0 {channels => streams}/ua.m3u | 0 {channels => streams}/ug.m3u | 0 {channels => streams}/uk.m3u | 0 {channels => streams}/uk_samsung.m3u | 0 {channels => streams}/uk_sportstribal.m3u | 0 {channels => streams}/unsorted.m3u | 0 {channels => streams}/us.m3u | 0 {channels => streams}/us_adultiptv.m3u | 0 {channels => streams}/us_adultswim.m3u | 0 {channels => streams}/us_bumblebee.m3u | 0 {channels => streams}/us_distro.m3u | 0 {channels => streams}/us_filmon.m3u | 0 {channels => streams}/us_fubo.m3u | 0 {channels => streams}/us_glewedtv.m3u | 0 {channels => streams}/us_imdbtv.m3u | 0 {channels => streams}/us_klowdtv.m3u | 0 {channels => streams}/us_localbtv.m3u | 0 {channels => streams}/us_pbs.m3u | 0 {channels => streams}/us_plex.m3u | 0 {channels => streams}/us_pluto.m3u | 0 {channels => streams}/us_redbox.m3u | 0 {channels => streams}/us_redtraffic.m3u | 0 {channels => streams}/us_roku.m3u | 0 {channels => streams}/us_samsung.m3u | 0 {channels => streams}/us_ssh101.m3u | 0 {channels => streams}/us_stirr.m3u | 0 {channels => streams}/us_tcl.m3u | 0 {channels => streams}/us_tubi.m3u | 0 {channels => streams}/us_vizio.m3u | 0 {channels => streams}/us_xumo.m3u | 0 {channels => streams}/uy.m3u | 0 {channels => streams}/uz.m3u | 0 {channels => streams}/va.m3u | 0 {channels => streams}/ve.m3u | 0 {channels => streams}/vn.m3u | 0 {channels => streams}/vn_fptplay.m3u | 0 {channels => streams}/xk.m3u | 0 {channels => streams}/ye.m3u | 0 {channels => streams}/zm.m3u | 0 218 files changed, 0 insertions(+), 0 deletions(-) rename {channels => streams}/ad.m3u (100%) rename {channels => streams}/ae.m3u (100%) rename {channels => streams}/af.m3u (100%) rename {channels => streams}/ag.m3u (100%) rename {channels => streams}/al.m3u (100%) rename {channels => streams}/am.m3u (100%) rename {channels => streams}/ao.m3u (100%) rename {channels => streams}/ar.m3u (100%) rename {channels => streams}/at.m3u (100%) rename {channels => streams}/at_samsung.m3u (100%) rename {channels => streams}/au.m3u (100%) rename {channels => streams}/au_samsung.m3u (100%) rename {channels => streams}/aw.m3u (100%) rename {channels => streams}/az.m3u (100%) rename {channels => streams}/ba.m3u (100%) rename {channels => streams}/bb.m3u (100%) rename {channels => streams}/bd.m3u (100%) rename {channels => streams}/bd_jagobd.m3u (100%) rename {channels => streams}/be.m3u (100%) rename {channels => streams}/be_samsung.m3u (100%) rename {channels => streams}/bf.m3u (100%) rename {channels => streams}/bg.m3u (100%) rename {channels => streams}/bh.m3u (100%) rename {channels => streams}/bj.m3u (100%) rename {channels => streams}/bn.m3u (100%) rename {channels => streams}/bo.m3u (100%) rename {channels => streams}/br.m3u (100%) rename {channels => streams}/br_pluto.m3u (100%) rename {channels => streams}/br_samsung.m3u (100%) rename {channels => streams}/bs.m3u (100%) rename {channels => streams}/by.m3u (100%) rename {channels => streams}/by_sluhay.m3u (100%) rename {channels => streams}/ca.m3u (100%) rename {channels => streams}/ca_samsung.m3u (100%) rename {channels => streams}/ca_stingray.m3u (100%) rename {channels => streams}/cd.m3u (100%) rename {channels => streams}/cg.m3u (100%) rename {channels => streams}/ch.m3u (100%) rename {channels => streams}/ch_samsung.m3u (100%) rename {channels => streams}/ci.m3u (100%) rename {channels => streams}/cl.m3u (100%) rename {channels => streams}/cm.m3u (100%) rename {channels => streams}/cn.m3u (100%) rename {channels => streams}/co.m3u (100%) rename {channels => streams}/cr.m3u (100%) rename {channels => streams}/cu.m3u (100%) rename {channels => streams}/cw.m3u (100%) rename {channels => streams}/cy.m3u (100%) rename {channels => streams}/cz.m3u (100%) rename {channels => streams}/de.m3u (100%) rename {channels => streams}/de_samsung.m3u (100%) rename {channels => streams}/dk.m3u (100%) rename {channels => streams}/dk_samsung.m3u (100%) rename {channels => streams}/do.m3u (100%) rename {channels => streams}/dz.m3u (100%) rename {channels => streams}/ec.m3u (100%) rename {channels => streams}/ee.m3u (100%) rename {channels => streams}/eg.m3u (100%) rename {channels => streams}/es.m3u (100%) rename {channels => streams}/es_rakuten.m3u (100%) rename {channels => streams}/es_samsung.m3u (100%) rename {channels => streams}/et.m3u (100%) rename {channels => streams}/fi.m3u (100%) rename {channels => streams}/fi_samsung.m3u (100%) rename {channels => streams}/fj.m3u (100%) rename {channels => streams}/fo.m3u (100%) rename {channels => streams}/fr.m3u (100%) rename {channels => streams}/fr_samsung.m3u (100%) rename {channels => streams}/ge.m3u (100%) rename {channels => streams}/gh.m3u (100%) rename {channels => streams}/gl.m3u (100%) rename {channels => streams}/gm.m3u (100%) rename {channels => streams}/gn.m3u (100%) rename {channels => streams}/gp.m3u (100%) rename {channels => streams}/gq.m3u (100%) rename {channels => streams}/gr.m3u (100%) rename {channels => streams}/gt.m3u (100%) rename {channels => streams}/hk.m3u (100%) rename {channels => streams}/hn.m3u (100%) rename {channels => streams}/hr.m3u (100%) rename {channels => streams}/ht.m3u (100%) rename {channels => streams}/hu.m3u (100%) rename {channels => streams}/id.m3u (100%) rename {channels => streams}/ie.m3u (100%) rename {channels => streams}/ie_samsung.m3u (100%) rename {channels => streams}/il.m3u (100%) rename {channels => streams}/in.m3u (100%) rename {channels => streams}/in_samsung.m3u (100%) rename {channels => streams}/iq.m3u (100%) rename {channels => streams}/ir.m3u (100%) rename {channels => streams}/ir_telewebion.m3u (100%) rename {channels => streams}/is.m3u (100%) rename {channels => streams}/it.m3u (100%) rename {channels => streams}/it_samsung.m3u (100%) rename {channels => streams}/jm.m3u (100%) rename {channels => streams}/jo.m3u (100%) rename {channels => streams}/jp.m3u (100%) rename {channels => streams}/ke.m3u (100%) rename {channels => streams}/kg.m3u (100%) rename {channels => streams}/kh.m3u (100%) rename {channels => streams}/kp.m3u (100%) rename {channels => streams}/kr.m3u (100%) rename {channels => streams}/kw.m3u (100%) rename {channels => streams}/kz.m3u (100%) rename {channels => streams}/la.m3u (100%) rename {channels => streams}/lb.m3u (100%) rename {channels => streams}/li.m3u (100%) rename {channels => streams}/lk.m3u (100%) rename {channels => streams}/lt.m3u (100%) rename {channels => streams}/lu.m3u (100%) rename {channels => streams}/lu_samsung.m3u (100%) rename {channels => streams}/lv.m3u (100%) rename {channels => streams}/ly.m3u (100%) rename {channels => streams}/ma.m3u (100%) rename {channels => streams}/mc.m3u (100%) rename {channels => streams}/md.m3u (100%) rename {channels => streams}/me.m3u (100%) rename {channels => streams}/mk.m3u (100%) rename {channels => streams}/ml.m3u (100%) rename {channels => streams}/mm.m3u (100%) rename {channels => streams}/mn.m3u (100%) rename {channels => streams}/mo.m3u (100%) rename {channels => streams}/mq.m3u (100%) rename {channels => streams}/mt.m3u (100%) rename {channels => streams}/mv.m3u (100%) rename {channels => streams}/mw.m3u (100%) rename {channels => streams}/mx.m3u (100%) rename {channels => streams}/mx_samsung.m3u (100%) rename {channels => streams}/my.m3u (100%) rename {channels => streams}/mz.m3u (100%) rename {channels => streams}/ne.m3u (100%) rename {channels => streams}/ng.m3u (100%) rename {channels => streams}/ni.m3u (100%) rename {channels => streams}/nl.m3u (100%) rename {channels => streams}/nl_samsung.m3u (100%) rename {channels => streams}/no.m3u (100%) rename {channels => streams}/no_samsung.m3u (100%) rename {channels => streams}/np.m3u (100%) rename {channels => streams}/nz.m3u (100%) rename {channels => streams}/om.m3u (100%) rename {channels => streams}/pa.m3u (100%) rename {channels => streams}/pe.m3u (100%) rename {channels => streams}/pf.m3u (100%) rename {channels => streams}/ph.m3u (100%) rename {channels => streams}/pk.m3u (100%) rename {channels => streams}/pl.m3u (100%) rename {channels => streams}/pr.m3u (100%) rename {channels => streams}/ps.m3u (100%) rename {channels => streams}/pt.m3u (100%) rename {channels => streams}/pt_samsung.m3u (100%) rename {channels => streams}/py.m3u (100%) rename {channels => streams}/qa.m3u (100%) rename {channels => streams}/ro.m3u (100%) rename {channels => streams}/rs.m3u (100%) rename {channels => streams}/ru.m3u (100%) rename {channels => streams}/ru_catcast.m3u (100%) rename {channels => streams}/ru_okkotv.m3u (100%) rename {channels => streams}/rw.m3u (100%) rename {channels => streams}/sa.m3u (100%) rename {channels => streams}/sd.m3u (100%) rename {channels => streams}/se.m3u (100%) rename {channels => streams}/se_samsung.m3u (100%) rename {channels => streams}/sg.m3u (100%) rename {channels => streams}/si.m3u (100%) rename {channels => streams}/sk.m3u (100%) rename {channels => streams}/sl.m3u (100%) rename {channels => streams}/sm.m3u (100%) rename {channels => streams}/sn.m3u (100%) rename {channels => streams}/so.m3u (100%) rename {channels => streams}/sv.m3u (100%) rename {channels => streams}/sy.m3u (100%) rename {channels => streams}/th.m3u (100%) rename {channels => streams}/tj.m3u (100%) rename {channels => streams}/tm.m3u (100%) rename {channels => streams}/tn.m3u (100%) rename {channels => streams}/tr.m3u (100%) rename {channels => streams}/tt.m3u (100%) rename {channels => streams}/tw.m3u (100%) rename {channels => streams}/tz.m3u (100%) rename {channels => streams}/ua.m3u (100%) rename {channels => streams}/ug.m3u (100%) rename {channels => streams}/uk.m3u (100%) rename {channels => streams}/uk_samsung.m3u (100%) rename {channels => streams}/uk_sportstribal.m3u (100%) rename {channels => streams}/unsorted.m3u (100%) rename {channels => streams}/us.m3u (100%) rename {channels => streams}/us_adultiptv.m3u (100%) rename {channels => streams}/us_adultswim.m3u (100%) rename {channels => streams}/us_bumblebee.m3u (100%) rename {channels => streams}/us_distro.m3u (100%) rename {channels => streams}/us_filmon.m3u (100%) rename {channels => streams}/us_fubo.m3u (100%) rename {channels => streams}/us_glewedtv.m3u (100%) rename {channels => streams}/us_imdbtv.m3u (100%) rename {channels => streams}/us_klowdtv.m3u (100%) rename {channels => streams}/us_localbtv.m3u (100%) rename {channels => streams}/us_pbs.m3u (100%) rename {channels => streams}/us_plex.m3u (100%) rename {channels => streams}/us_pluto.m3u (100%) rename {channels => streams}/us_redbox.m3u (100%) rename {channels => streams}/us_redtraffic.m3u (100%) rename {channels => streams}/us_roku.m3u (100%) rename {channels => streams}/us_samsung.m3u (100%) rename {channels => streams}/us_ssh101.m3u (100%) rename {channels => streams}/us_stirr.m3u (100%) rename {channels => streams}/us_tcl.m3u (100%) rename {channels => streams}/us_tubi.m3u (100%) rename {channels => streams}/us_vizio.m3u (100%) rename {channels => streams}/us_xumo.m3u (100%) rename {channels => streams}/uy.m3u (100%) rename {channels => streams}/uz.m3u (100%) rename {channels => streams}/va.m3u (100%) rename {channels => streams}/ve.m3u (100%) rename {channels => streams}/vn.m3u (100%) rename {channels => streams}/vn_fptplay.m3u (100%) rename {channels => streams}/xk.m3u (100%) rename {channels => streams}/ye.m3u (100%) rename {channels => streams}/zm.m3u (100%) diff --git a/channels/ad.m3u b/streams/ad.m3u similarity index 100% rename from channels/ad.m3u rename to streams/ad.m3u diff --git a/channels/ae.m3u b/streams/ae.m3u similarity index 100% rename from channels/ae.m3u rename to streams/ae.m3u diff --git a/channels/af.m3u b/streams/af.m3u similarity index 100% rename from channels/af.m3u rename to streams/af.m3u diff --git a/channels/ag.m3u b/streams/ag.m3u similarity index 100% rename from channels/ag.m3u rename to streams/ag.m3u diff --git a/channels/al.m3u b/streams/al.m3u similarity index 100% rename from channels/al.m3u rename to streams/al.m3u diff --git a/channels/am.m3u b/streams/am.m3u similarity index 100% rename from channels/am.m3u rename to streams/am.m3u diff --git a/channels/ao.m3u b/streams/ao.m3u similarity index 100% rename from channels/ao.m3u rename to streams/ao.m3u diff --git a/channels/ar.m3u b/streams/ar.m3u similarity index 100% rename from channels/ar.m3u rename to streams/ar.m3u diff --git a/channels/at.m3u b/streams/at.m3u similarity index 100% rename from channels/at.m3u rename to streams/at.m3u diff --git a/channels/at_samsung.m3u b/streams/at_samsung.m3u similarity index 100% rename from channels/at_samsung.m3u rename to streams/at_samsung.m3u diff --git a/channels/au.m3u b/streams/au.m3u similarity index 100% rename from channels/au.m3u rename to streams/au.m3u diff --git a/channels/au_samsung.m3u b/streams/au_samsung.m3u similarity index 100% rename from channels/au_samsung.m3u rename to streams/au_samsung.m3u diff --git a/channels/aw.m3u b/streams/aw.m3u similarity index 100% rename from channels/aw.m3u rename to streams/aw.m3u diff --git a/channels/az.m3u b/streams/az.m3u similarity index 100% rename from channels/az.m3u rename to streams/az.m3u diff --git a/channels/ba.m3u b/streams/ba.m3u similarity index 100% rename from channels/ba.m3u rename to streams/ba.m3u diff --git a/channels/bb.m3u b/streams/bb.m3u similarity index 100% rename from channels/bb.m3u rename to streams/bb.m3u diff --git a/channels/bd.m3u b/streams/bd.m3u similarity index 100% rename from channels/bd.m3u rename to streams/bd.m3u diff --git a/channels/bd_jagobd.m3u b/streams/bd_jagobd.m3u similarity index 100% rename from channels/bd_jagobd.m3u rename to streams/bd_jagobd.m3u diff --git a/channels/be.m3u b/streams/be.m3u similarity index 100% rename from channels/be.m3u rename to streams/be.m3u diff --git a/channels/be_samsung.m3u b/streams/be_samsung.m3u similarity index 100% rename from channels/be_samsung.m3u rename to streams/be_samsung.m3u diff --git a/channels/bf.m3u b/streams/bf.m3u similarity index 100% rename from channels/bf.m3u rename to streams/bf.m3u diff --git a/channels/bg.m3u b/streams/bg.m3u similarity index 100% rename from channels/bg.m3u rename to streams/bg.m3u diff --git a/channels/bh.m3u b/streams/bh.m3u similarity index 100% rename from channels/bh.m3u rename to streams/bh.m3u diff --git a/channels/bj.m3u b/streams/bj.m3u similarity index 100% rename from channels/bj.m3u rename to streams/bj.m3u diff --git a/channels/bn.m3u b/streams/bn.m3u similarity index 100% rename from channels/bn.m3u rename to streams/bn.m3u diff --git a/channels/bo.m3u b/streams/bo.m3u similarity index 100% rename from channels/bo.m3u rename to streams/bo.m3u diff --git a/channels/br.m3u b/streams/br.m3u similarity index 100% rename from channels/br.m3u rename to streams/br.m3u diff --git a/channels/br_pluto.m3u b/streams/br_pluto.m3u similarity index 100% rename from channels/br_pluto.m3u rename to streams/br_pluto.m3u diff --git a/channels/br_samsung.m3u b/streams/br_samsung.m3u similarity index 100% rename from channels/br_samsung.m3u rename to streams/br_samsung.m3u diff --git a/channels/bs.m3u b/streams/bs.m3u similarity index 100% rename from channels/bs.m3u rename to streams/bs.m3u diff --git a/channels/by.m3u b/streams/by.m3u similarity index 100% rename from channels/by.m3u rename to streams/by.m3u diff --git a/channels/by_sluhay.m3u b/streams/by_sluhay.m3u similarity index 100% rename from channels/by_sluhay.m3u rename to streams/by_sluhay.m3u diff --git a/channels/ca.m3u b/streams/ca.m3u similarity index 100% rename from channels/ca.m3u rename to streams/ca.m3u diff --git a/channels/ca_samsung.m3u b/streams/ca_samsung.m3u similarity index 100% rename from channels/ca_samsung.m3u rename to streams/ca_samsung.m3u diff --git a/channels/ca_stingray.m3u b/streams/ca_stingray.m3u similarity index 100% rename from channels/ca_stingray.m3u rename to streams/ca_stingray.m3u diff --git a/channels/cd.m3u b/streams/cd.m3u similarity index 100% rename from channels/cd.m3u rename to streams/cd.m3u diff --git a/channels/cg.m3u b/streams/cg.m3u similarity index 100% rename from channels/cg.m3u rename to streams/cg.m3u diff --git a/channels/ch.m3u b/streams/ch.m3u similarity index 100% rename from channels/ch.m3u rename to streams/ch.m3u diff --git a/channels/ch_samsung.m3u b/streams/ch_samsung.m3u similarity index 100% rename from channels/ch_samsung.m3u rename to streams/ch_samsung.m3u diff --git a/channels/ci.m3u b/streams/ci.m3u similarity index 100% rename from channels/ci.m3u rename to streams/ci.m3u diff --git a/channels/cl.m3u b/streams/cl.m3u similarity index 100% rename from channels/cl.m3u rename to streams/cl.m3u diff --git a/channels/cm.m3u b/streams/cm.m3u similarity index 100% rename from channels/cm.m3u rename to streams/cm.m3u diff --git a/channels/cn.m3u b/streams/cn.m3u similarity index 100% rename from channels/cn.m3u rename to streams/cn.m3u diff --git a/channels/co.m3u b/streams/co.m3u similarity index 100% rename from channels/co.m3u rename to streams/co.m3u diff --git a/channels/cr.m3u b/streams/cr.m3u similarity index 100% rename from channels/cr.m3u rename to streams/cr.m3u diff --git a/channels/cu.m3u b/streams/cu.m3u similarity index 100% rename from channels/cu.m3u rename to streams/cu.m3u diff --git a/channels/cw.m3u b/streams/cw.m3u similarity index 100% rename from channels/cw.m3u rename to streams/cw.m3u diff --git a/channels/cy.m3u b/streams/cy.m3u similarity index 100% rename from channels/cy.m3u rename to streams/cy.m3u diff --git a/channels/cz.m3u b/streams/cz.m3u similarity index 100% rename from channels/cz.m3u rename to streams/cz.m3u diff --git a/channels/de.m3u b/streams/de.m3u similarity index 100% rename from channels/de.m3u rename to streams/de.m3u diff --git a/channels/de_samsung.m3u b/streams/de_samsung.m3u similarity index 100% rename from channels/de_samsung.m3u rename to streams/de_samsung.m3u diff --git a/channels/dk.m3u b/streams/dk.m3u similarity index 100% rename from channels/dk.m3u rename to streams/dk.m3u diff --git a/channels/dk_samsung.m3u b/streams/dk_samsung.m3u similarity index 100% rename from channels/dk_samsung.m3u rename to streams/dk_samsung.m3u diff --git a/channels/do.m3u b/streams/do.m3u similarity index 100% rename from channels/do.m3u rename to streams/do.m3u diff --git a/channels/dz.m3u b/streams/dz.m3u similarity index 100% rename from channels/dz.m3u rename to streams/dz.m3u diff --git a/channels/ec.m3u b/streams/ec.m3u similarity index 100% rename from channels/ec.m3u rename to streams/ec.m3u diff --git a/channels/ee.m3u b/streams/ee.m3u similarity index 100% rename from channels/ee.m3u rename to streams/ee.m3u diff --git a/channels/eg.m3u b/streams/eg.m3u similarity index 100% rename from channels/eg.m3u rename to streams/eg.m3u diff --git a/channels/es.m3u b/streams/es.m3u similarity index 100% rename from channels/es.m3u rename to streams/es.m3u diff --git a/channels/es_rakuten.m3u b/streams/es_rakuten.m3u similarity index 100% rename from channels/es_rakuten.m3u rename to streams/es_rakuten.m3u diff --git a/channels/es_samsung.m3u b/streams/es_samsung.m3u similarity index 100% rename from channels/es_samsung.m3u rename to streams/es_samsung.m3u diff --git a/channels/et.m3u b/streams/et.m3u similarity index 100% rename from channels/et.m3u rename to streams/et.m3u diff --git a/channels/fi.m3u b/streams/fi.m3u similarity index 100% rename from channels/fi.m3u rename to streams/fi.m3u diff --git a/channels/fi_samsung.m3u b/streams/fi_samsung.m3u similarity index 100% rename from channels/fi_samsung.m3u rename to streams/fi_samsung.m3u diff --git a/channels/fj.m3u b/streams/fj.m3u similarity index 100% rename from channels/fj.m3u rename to streams/fj.m3u diff --git a/channels/fo.m3u b/streams/fo.m3u similarity index 100% rename from channels/fo.m3u rename to streams/fo.m3u diff --git a/channels/fr.m3u b/streams/fr.m3u similarity index 100% rename from channels/fr.m3u rename to streams/fr.m3u diff --git a/channels/fr_samsung.m3u b/streams/fr_samsung.m3u similarity index 100% rename from channels/fr_samsung.m3u rename to streams/fr_samsung.m3u diff --git a/channels/ge.m3u b/streams/ge.m3u similarity index 100% rename from channels/ge.m3u rename to streams/ge.m3u diff --git a/channels/gh.m3u b/streams/gh.m3u similarity index 100% rename from channels/gh.m3u rename to streams/gh.m3u diff --git a/channels/gl.m3u b/streams/gl.m3u similarity index 100% rename from channels/gl.m3u rename to streams/gl.m3u diff --git a/channels/gm.m3u b/streams/gm.m3u similarity index 100% rename from channels/gm.m3u rename to streams/gm.m3u diff --git a/channels/gn.m3u b/streams/gn.m3u similarity index 100% rename from channels/gn.m3u rename to streams/gn.m3u diff --git a/channels/gp.m3u b/streams/gp.m3u similarity index 100% rename from channels/gp.m3u rename to streams/gp.m3u diff --git a/channels/gq.m3u b/streams/gq.m3u similarity index 100% rename from channels/gq.m3u rename to streams/gq.m3u diff --git a/channels/gr.m3u b/streams/gr.m3u similarity index 100% rename from channels/gr.m3u rename to streams/gr.m3u diff --git a/channels/gt.m3u b/streams/gt.m3u similarity index 100% rename from channels/gt.m3u rename to streams/gt.m3u diff --git a/channels/hk.m3u b/streams/hk.m3u similarity index 100% rename from channels/hk.m3u rename to streams/hk.m3u diff --git a/channels/hn.m3u b/streams/hn.m3u similarity index 100% rename from channels/hn.m3u rename to streams/hn.m3u diff --git a/channels/hr.m3u b/streams/hr.m3u similarity index 100% rename from channels/hr.m3u rename to streams/hr.m3u diff --git a/channels/ht.m3u b/streams/ht.m3u similarity index 100% rename from channels/ht.m3u rename to streams/ht.m3u diff --git a/channels/hu.m3u b/streams/hu.m3u similarity index 100% rename from channels/hu.m3u rename to streams/hu.m3u diff --git a/channels/id.m3u b/streams/id.m3u similarity index 100% rename from channels/id.m3u rename to streams/id.m3u diff --git a/channels/ie.m3u b/streams/ie.m3u similarity index 100% rename from channels/ie.m3u rename to streams/ie.m3u diff --git a/channels/ie_samsung.m3u b/streams/ie_samsung.m3u similarity index 100% rename from channels/ie_samsung.m3u rename to streams/ie_samsung.m3u diff --git a/channels/il.m3u b/streams/il.m3u similarity index 100% rename from channels/il.m3u rename to streams/il.m3u diff --git a/channels/in.m3u b/streams/in.m3u similarity index 100% rename from channels/in.m3u rename to streams/in.m3u diff --git a/channels/in_samsung.m3u b/streams/in_samsung.m3u similarity index 100% rename from channels/in_samsung.m3u rename to streams/in_samsung.m3u diff --git a/channels/iq.m3u b/streams/iq.m3u similarity index 100% rename from channels/iq.m3u rename to streams/iq.m3u diff --git a/channels/ir.m3u b/streams/ir.m3u similarity index 100% rename from channels/ir.m3u rename to streams/ir.m3u diff --git a/channels/ir_telewebion.m3u b/streams/ir_telewebion.m3u similarity index 100% rename from channels/ir_telewebion.m3u rename to streams/ir_telewebion.m3u diff --git a/channels/is.m3u b/streams/is.m3u similarity index 100% rename from channels/is.m3u rename to streams/is.m3u diff --git a/channels/it.m3u b/streams/it.m3u similarity index 100% rename from channels/it.m3u rename to streams/it.m3u diff --git a/channels/it_samsung.m3u b/streams/it_samsung.m3u similarity index 100% rename from channels/it_samsung.m3u rename to streams/it_samsung.m3u diff --git a/channels/jm.m3u b/streams/jm.m3u similarity index 100% rename from channels/jm.m3u rename to streams/jm.m3u diff --git a/channels/jo.m3u b/streams/jo.m3u similarity index 100% rename from channels/jo.m3u rename to streams/jo.m3u diff --git a/channels/jp.m3u b/streams/jp.m3u similarity index 100% rename from channels/jp.m3u rename to streams/jp.m3u diff --git a/channels/ke.m3u b/streams/ke.m3u similarity index 100% rename from channels/ke.m3u rename to streams/ke.m3u diff --git a/channels/kg.m3u b/streams/kg.m3u similarity index 100% rename from channels/kg.m3u rename to streams/kg.m3u diff --git a/channels/kh.m3u b/streams/kh.m3u similarity index 100% rename from channels/kh.m3u rename to streams/kh.m3u diff --git a/channels/kp.m3u b/streams/kp.m3u similarity index 100% rename from channels/kp.m3u rename to streams/kp.m3u diff --git a/channels/kr.m3u b/streams/kr.m3u similarity index 100% rename from channels/kr.m3u rename to streams/kr.m3u diff --git a/channels/kw.m3u b/streams/kw.m3u similarity index 100% rename from channels/kw.m3u rename to streams/kw.m3u diff --git a/channels/kz.m3u b/streams/kz.m3u similarity index 100% rename from channels/kz.m3u rename to streams/kz.m3u diff --git a/channels/la.m3u b/streams/la.m3u similarity index 100% rename from channels/la.m3u rename to streams/la.m3u diff --git a/channels/lb.m3u b/streams/lb.m3u similarity index 100% rename from channels/lb.m3u rename to streams/lb.m3u diff --git a/channels/li.m3u b/streams/li.m3u similarity index 100% rename from channels/li.m3u rename to streams/li.m3u diff --git a/channels/lk.m3u b/streams/lk.m3u similarity index 100% rename from channels/lk.m3u rename to streams/lk.m3u diff --git a/channels/lt.m3u b/streams/lt.m3u similarity index 100% rename from channels/lt.m3u rename to streams/lt.m3u diff --git a/channels/lu.m3u b/streams/lu.m3u similarity index 100% rename from channels/lu.m3u rename to streams/lu.m3u diff --git a/channels/lu_samsung.m3u b/streams/lu_samsung.m3u similarity index 100% rename from channels/lu_samsung.m3u rename to streams/lu_samsung.m3u diff --git a/channels/lv.m3u b/streams/lv.m3u similarity index 100% rename from channels/lv.m3u rename to streams/lv.m3u diff --git a/channels/ly.m3u b/streams/ly.m3u similarity index 100% rename from channels/ly.m3u rename to streams/ly.m3u diff --git a/channels/ma.m3u b/streams/ma.m3u similarity index 100% rename from channels/ma.m3u rename to streams/ma.m3u diff --git a/channels/mc.m3u b/streams/mc.m3u similarity index 100% rename from channels/mc.m3u rename to streams/mc.m3u diff --git a/channels/md.m3u b/streams/md.m3u similarity index 100% rename from channels/md.m3u rename to streams/md.m3u diff --git a/channels/me.m3u b/streams/me.m3u similarity index 100% rename from channels/me.m3u rename to streams/me.m3u diff --git a/channels/mk.m3u b/streams/mk.m3u similarity index 100% rename from channels/mk.m3u rename to streams/mk.m3u diff --git a/channels/ml.m3u b/streams/ml.m3u similarity index 100% rename from channels/ml.m3u rename to streams/ml.m3u diff --git a/channels/mm.m3u b/streams/mm.m3u similarity index 100% rename from channels/mm.m3u rename to streams/mm.m3u diff --git a/channels/mn.m3u b/streams/mn.m3u similarity index 100% rename from channels/mn.m3u rename to streams/mn.m3u diff --git a/channels/mo.m3u b/streams/mo.m3u similarity index 100% rename from channels/mo.m3u rename to streams/mo.m3u diff --git a/channels/mq.m3u b/streams/mq.m3u similarity index 100% rename from channels/mq.m3u rename to streams/mq.m3u diff --git a/channels/mt.m3u b/streams/mt.m3u similarity index 100% rename from channels/mt.m3u rename to streams/mt.m3u diff --git a/channels/mv.m3u b/streams/mv.m3u similarity index 100% rename from channels/mv.m3u rename to streams/mv.m3u diff --git a/channels/mw.m3u b/streams/mw.m3u similarity index 100% rename from channels/mw.m3u rename to streams/mw.m3u diff --git a/channels/mx.m3u b/streams/mx.m3u similarity index 100% rename from channels/mx.m3u rename to streams/mx.m3u diff --git a/channels/mx_samsung.m3u b/streams/mx_samsung.m3u similarity index 100% rename from channels/mx_samsung.m3u rename to streams/mx_samsung.m3u diff --git a/channels/my.m3u b/streams/my.m3u similarity index 100% rename from channels/my.m3u rename to streams/my.m3u diff --git a/channels/mz.m3u b/streams/mz.m3u similarity index 100% rename from channels/mz.m3u rename to streams/mz.m3u diff --git a/channels/ne.m3u b/streams/ne.m3u similarity index 100% rename from channels/ne.m3u rename to streams/ne.m3u diff --git a/channels/ng.m3u b/streams/ng.m3u similarity index 100% rename from channels/ng.m3u rename to streams/ng.m3u diff --git a/channels/ni.m3u b/streams/ni.m3u similarity index 100% rename from channels/ni.m3u rename to streams/ni.m3u diff --git a/channels/nl.m3u b/streams/nl.m3u similarity index 100% rename from channels/nl.m3u rename to streams/nl.m3u diff --git a/channels/nl_samsung.m3u b/streams/nl_samsung.m3u similarity index 100% rename from channels/nl_samsung.m3u rename to streams/nl_samsung.m3u diff --git a/channels/no.m3u b/streams/no.m3u similarity index 100% rename from channels/no.m3u rename to streams/no.m3u diff --git a/channels/no_samsung.m3u b/streams/no_samsung.m3u similarity index 100% rename from channels/no_samsung.m3u rename to streams/no_samsung.m3u diff --git a/channels/np.m3u b/streams/np.m3u similarity index 100% rename from channels/np.m3u rename to streams/np.m3u diff --git a/channels/nz.m3u b/streams/nz.m3u similarity index 100% rename from channels/nz.m3u rename to streams/nz.m3u diff --git a/channels/om.m3u b/streams/om.m3u similarity index 100% rename from channels/om.m3u rename to streams/om.m3u diff --git a/channels/pa.m3u b/streams/pa.m3u similarity index 100% rename from channels/pa.m3u rename to streams/pa.m3u diff --git a/channels/pe.m3u b/streams/pe.m3u similarity index 100% rename from channels/pe.m3u rename to streams/pe.m3u diff --git a/channels/pf.m3u b/streams/pf.m3u similarity index 100% rename from channels/pf.m3u rename to streams/pf.m3u diff --git a/channels/ph.m3u b/streams/ph.m3u similarity index 100% rename from channels/ph.m3u rename to streams/ph.m3u diff --git a/channels/pk.m3u b/streams/pk.m3u similarity index 100% rename from channels/pk.m3u rename to streams/pk.m3u diff --git a/channels/pl.m3u b/streams/pl.m3u similarity index 100% rename from channels/pl.m3u rename to streams/pl.m3u diff --git a/channels/pr.m3u b/streams/pr.m3u similarity index 100% rename from channels/pr.m3u rename to streams/pr.m3u diff --git a/channels/ps.m3u b/streams/ps.m3u similarity index 100% rename from channels/ps.m3u rename to streams/ps.m3u diff --git a/channels/pt.m3u b/streams/pt.m3u similarity index 100% rename from channels/pt.m3u rename to streams/pt.m3u diff --git a/channels/pt_samsung.m3u b/streams/pt_samsung.m3u similarity index 100% rename from channels/pt_samsung.m3u rename to streams/pt_samsung.m3u diff --git a/channels/py.m3u b/streams/py.m3u similarity index 100% rename from channels/py.m3u rename to streams/py.m3u diff --git a/channels/qa.m3u b/streams/qa.m3u similarity index 100% rename from channels/qa.m3u rename to streams/qa.m3u diff --git a/channels/ro.m3u b/streams/ro.m3u similarity index 100% rename from channels/ro.m3u rename to streams/ro.m3u diff --git a/channels/rs.m3u b/streams/rs.m3u similarity index 100% rename from channels/rs.m3u rename to streams/rs.m3u diff --git a/channels/ru.m3u b/streams/ru.m3u similarity index 100% rename from channels/ru.m3u rename to streams/ru.m3u diff --git a/channels/ru_catcast.m3u b/streams/ru_catcast.m3u similarity index 100% rename from channels/ru_catcast.m3u rename to streams/ru_catcast.m3u diff --git a/channels/ru_okkotv.m3u b/streams/ru_okkotv.m3u similarity index 100% rename from channels/ru_okkotv.m3u rename to streams/ru_okkotv.m3u diff --git a/channels/rw.m3u b/streams/rw.m3u similarity index 100% rename from channels/rw.m3u rename to streams/rw.m3u diff --git a/channels/sa.m3u b/streams/sa.m3u similarity index 100% rename from channels/sa.m3u rename to streams/sa.m3u diff --git a/channels/sd.m3u b/streams/sd.m3u similarity index 100% rename from channels/sd.m3u rename to streams/sd.m3u diff --git a/channels/se.m3u b/streams/se.m3u similarity index 100% rename from channels/se.m3u rename to streams/se.m3u diff --git a/channels/se_samsung.m3u b/streams/se_samsung.m3u similarity index 100% rename from channels/se_samsung.m3u rename to streams/se_samsung.m3u diff --git a/channels/sg.m3u b/streams/sg.m3u similarity index 100% rename from channels/sg.m3u rename to streams/sg.m3u diff --git a/channels/si.m3u b/streams/si.m3u similarity index 100% rename from channels/si.m3u rename to streams/si.m3u diff --git a/channels/sk.m3u b/streams/sk.m3u similarity index 100% rename from channels/sk.m3u rename to streams/sk.m3u diff --git a/channels/sl.m3u b/streams/sl.m3u similarity index 100% rename from channels/sl.m3u rename to streams/sl.m3u diff --git a/channels/sm.m3u b/streams/sm.m3u similarity index 100% rename from channels/sm.m3u rename to streams/sm.m3u diff --git a/channels/sn.m3u b/streams/sn.m3u similarity index 100% rename from channels/sn.m3u rename to streams/sn.m3u diff --git a/channels/so.m3u b/streams/so.m3u similarity index 100% rename from channels/so.m3u rename to streams/so.m3u diff --git a/channels/sv.m3u b/streams/sv.m3u similarity index 100% rename from channels/sv.m3u rename to streams/sv.m3u diff --git a/channels/sy.m3u b/streams/sy.m3u similarity index 100% rename from channels/sy.m3u rename to streams/sy.m3u diff --git a/channels/th.m3u b/streams/th.m3u similarity index 100% rename from channels/th.m3u rename to streams/th.m3u diff --git a/channels/tj.m3u b/streams/tj.m3u similarity index 100% rename from channels/tj.m3u rename to streams/tj.m3u diff --git a/channels/tm.m3u b/streams/tm.m3u similarity index 100% rename from channels/tm.m3u rename to streams/tm.m3u diff --git a/channels/tn.m3u b/streams/tn.m3u similarity index 100% rename from channels/tn.m3u rename to streams/tn.m3u diff --git a/channels/tr.m3u b/streams/tr.m3u similarity index 100% rename from channels/tr.m3u rename to streams/tr.m3u diff --git a/channels/tt.m3u b/streams/tt.m3u similarity index 100% rename from channels/tt.m3u rename to streams/tt.m3u diff --git a/channels/tw.m3u b/streams/tw.m3u similarity index 100% rename from channels/tw.m3u rename to streams/tw.m3u diff --git a/channels/tz.m3u b/streams/tz.m3u similarity index 100% rename from channels/tz.m3u rename to streams/tz.m3u diff --git a/channels/ua.m3u b/streams/ua.m3u similarity index 100% rename from channels/ua.m3u rename to streams/ua.m3u diff --git a/channels/ug.m3u b/streams/ug.m3u similarity index 100% rename from channels/ug.m3u rename to streams/ug.m3u diff --git a/channels/uk.m3u b/streams/uk.m3u similarity index 100% rename from channels/uk.m3u rename to streams/uk.m3u diff --git a/channels/uk_samsung.m3u b/streams/uk_samsung.m3u similarity index 100% rename from channels/uk_samsung.m3u rename to streams/uk_samsung.m3u diff --git a/channels/uk_sportstribal.m3u b/streams/uk_sportstribal.m3u similarity index 100% rename from channels/uk_sportstribal.m3u rename to streams/uk_sportstribal.m3u diff --git a/channels/unsorted.m3u b/streams/unsorted.m3u similarity index 100% rename from channels/unsorted.m3u rename to streams/unsorted.m3u diff --git a/channels/us.m3u b/streams/us.m3u similarity index 100% rename from channels/us.m3u rename to streams/us.m3u diff --git a/channels/us_adultiptv.m3u b/streams/us_adultiptv.m3u similarity index 100% rename from channels/us_adultiptv.m3u rename to streams/us_adultiptv.m3u diff --git a/channels/us_adultswim.m3u b/streams/us_adultswim.m3u similarity index 100% rename from channels/us_adultswim.m3u rename to streams/us_adultswim.m3u diff --git a/channels/us_bumblebee.m3u b/streams/us_bumblebee.m3u similarity index 100% rename from channels/us_bumblebee.m3u rename to streams/us_bumblebee.m3u diff --git a/channels/us_distro.m3u b/streams/us_distro.m3u similarity index 100% rename from channels/us_distro.m3u rename to streams/us_distro.m3u diff --git a/channels/us_filmon.m3u b/streams/us_filmon.m3u similarity index 100% rename from channels/us_filmon.m3u rename to streams/us_filmon.m3u diff --git a/channels/us_fubo.m3u b/streams/us_fubo.m3u similarity index 100% rename from channels/us_fubo.m3u rename to streams/us_fubo.m3u diff --git a/channels/us_glewedtv.m3u b/streams/us_glewedtv.m3u similarity index 100% rename from channels/us_glewedtv.m3u rename to streams/us_glewedtv.m3u diff --git a/channels/us_imdbtv.m3u b/streams/us_imdbtv.m3u similarity index 100% rename from channels/us_imdbtv.m3u rename to streams/us_imdbtv.m3u diff --git a/channels/us_klowdtv.m3u b/streams/us_klowdtv.m3u similarity index 100% rename from channels/us_klowdtv.m3u rename to streams/us_klowdtv.m3u diff --git a/channels/us_localbtv.m3u b/streams/us_localbtv.m3u similarity index 100% rename from channels/us_localbtv.m3u rename to streams/us_localbtv.m3u diff --git a/channels/us_pbs.m3u b/streams/us_pbs.m3u similarity index 100% rename from channels/us_pbs.m3u rename to streams/us_pbs.m3u diff --git a/channels/us_plex.m3u b/streams/us_plex.m3u similarity index 100% rename from channels/us_plex.m3u rename to streams/us_plex.m3u diff --git a/channels/us_pluto.m3u b/streams/us_pluto.m3u similarity index 100% rename from channels/us_pluto.m3u rename to streams/us_pluto.m3u diff --git a/channels/us_redbox.m3u b/streams/us_redbox.m3u similarity index 100% rename from channels/us_redbox.m3u rename to streams/us_redbox.m3u diff --git a/channels/us_redtraffic.m3u b/streams/us_redtraffic.m3u similarity index 100% rename from channels/us_redtraffic.m3u rename to streams/us_redtraffic.m3u diff --git a/channels/us_roku.m3u b/streams/us_roku.m3u similarity index 100% rename from channels/us_roku.m3u rename to streams/us_roku.m3u diff --git a/channels/us_samsung.m3u b/streams/us_samsung.m3u similarity index 100% rename from channels/us_samsung.m3u rename to streams/us_samsung.m3u diff --git a/channels/us_ssh101.m3u b/streams/us_ssh101.m3u similarity index 100% rename from channels/us_ssh101.m3u rename to streams/us_ssh101.m3u diff --git a/channels/us_stirr.m3u b/streams/us_stirr.m3u similarity index 100% rename from channels/us_stirr.m3u rename to streams/us_stirr.m3u diff --git a/channels/us_tcl.m3u b/streams/us_tcl.m3u similarity index 100% rename from channels/us_tcl.m3u rename to streams/us_tcl.m3u diff --git a/channels/us_tubi.m3u b/streams/us_tubi.m3u similarity index 100% rename from channels/us_tubi.m3u rename to streams/us_tubi.m3u diff --git a/channels/us_vizio.m3u b/streams/us_vizio.m3u similarity index 100% rename from channels/us_vizio.m3u rename to streams/us_vizio.m3u diff --git a/channels/us_xumo.m3u b/streams/us_xumo.m3u similarity index 100% rename from channels/us_xumo.m3u rename to streams/us_xumo.m3u diff --git a/channels/uy.m3u b/streams/uy.m3u similarity index 100% rename from channels/uy.m3u rename to streams/uy.m3u diff --git a/channels/uz.m3u b/streams/uz.m3u similarity index 100% rename from channels/uz.m3u rename to streams/uz.m3u diff --git a/channels/va.m3u b/streams/va.m3u similarity index 100% rename from channels/va.m3u rename to streams/va.m3u diff --git a/channels/ve.m3u b/streams/ve.m3u similarity index 100% rename from channels/ve.m3u rename to streams/ve.m3u diff --git a/channels/vn.m3u b/streams/vn.m3u similarity index 100% rename from channels/vn.m3u rename to streams/vn.m3u diff --git a/channels/vn_fptplay.m3u b/streams/vn_fptplay.m3u similarity index 100% rename from channels/vn_fptplay.m3u rename to streams/vn_fptplay.m3u diff --git a/channels/xk.m3u b/streams/xk.m3u similarity index 100% rename from channels/xk.m3u rename to streams/xk.m3u diff --git a/channels/ye.m3u b/streams/ye.m3u similarity index 100% rename from channels/ye.m3u rename to streams/ye.m3u diff --git a/channels/zm.m3u b/streams/zm.m3u similarity index 100% rename from channels/zm.m3u rename to streams/zm.m3u From 9f165836d426c238375fcac22ed8afb636f3720c Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 02:14:26 +0300 Subject: [PATCH 152/157] Update _readme.md --- tests/__data__/expected/_readme.md | 60 ++++++++++++++++-------------- 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/tests/__data__/expected/_readme.md b/tests/__data__/expected/_readme.md index f65bedd97..a11413ecb 100644 --- a/tests/__data__/expected/_readme.md +++ b/tests/__data__/expected/_readme.md @@ -63,6 +63,28 @@ To watch IPTV, simply insert one of the links below into any player that support +### Playlists by language + +
+Expand +
+ + + + + + + + + + + + + +
LanguageChannelsPlaylist
Catalan1https://iptv-org.github.io/iptv/languages/cat.m3u
English1https://iptv-org.github.io/iptv/languages/eng.m3u
French1https://iptv-org.github.io/iptv/languages/fra.m3u
Russian1https://iptv-org.github.io/iptv/languages/rus.m3u
Undefined2https://iptv-org.github.io/iptv/languages/undefined.m3u
+ +
+ ### Playlists by country
@@ -331,28 +353,6 @@ To watch IPTV, simply insert one of the links below into any player that support
-### Playlists by language - -
-Expand -
- - - - - - - - - - - - - -
LanguageChannelsPlaylist
Catalan1https://iptv-org.github.io/iptv/languages/cat.m3u
English1https://iptv-org.github.io/iptv/languages/eng.m3u
French1https://iptv-org.github.io/iptv/languages/fra.m3u
Russian1https://iptv-org.github.io/iptv/languages/rus.m3u
Undefined2https://iptv-org.github.io/iptv/languages/undefined.m3u
- -
- ### Playlists by region
@@ -397,18 +397,20 @@ To watch IPTV, simply insert one of the links below into any player that support ## EPG -Playlists already have a built-in list of EPG, so players that support the `x-tvg-url` tag should load it automatically. If not, you can find a list of available programs here: - -https://github.com/iptv-org/epg +The playlists already contain links to all guides, so players with support the `x-tvg-url` tag should load it automatically. Otherwise, you can choose one of the guides featured in the [iptv-org/epg](https://github.com/iptv-org/epg) repository. -## Resources +## Database -You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv). +If you find an error in the description of the channel, please create an issue in the [iptv-org/database](https://github.com/iptv-org/database) repository. ## API The API documentation can be found in the [iptv-org/api](https://github.com/iptv-org/api) repository. +## Resources + +Links to other useful IPTV-related resources can be found in the [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv) repository. + ## Contribution Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sending an issue or making a pull request. @@ -416,3 +418,7 @@ Please make sure to read the [Contributing Guide](CONTRIBUTING.md) before sendin ## Legal No video files are stored in this repository. The repository simply contains user-submitted links to publicly available video stream URLs, which to the best of our knowledge have been intentionally made publicly by the copyright holders. If any links in these playlists infringe on your rights as a copyright holder, they may be removed by sending a pull request or opening an issue. However, note that we have **no control** over the destination of the link, and just removing the link from the playlist will not remove its contents from the web. Note that linking does not directly infringe copyright because no copy is made on the site providing the link, and thus this is **not** a valid reason to send a DMCA notice to GitHub. To remove this content from the web, you should contact the web host that's actually hosting the content (**not** GitHub, nor the maintainers of this repository). + +## License + +[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](LICENSE) From 9e4fd8ed4df64764b1646a4cbbeb761ea8d279eb Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 03:32:31 +0300 Subject: [PATCH 153/157] Update --removal-request.yml --- .github/ISSUE_TEMPLATE/--removal-request.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/--removal-request.yml b/.github/ISSUE_TEMPLATE/--removal-request.yml index 9e9d9fb13..f7f67b13b 100644 --- a/.github/ISSUE_TEMPLATE/--removal-request.yml +++ b/.github/ISSUE_TEMPLATE/--removal-request.yml @@ -14,7 +14,6 @@ body: - type: dropdown attributes: label: Are you the copyright holder or authorized to act on the copyright owner's behalf? - description: We cannot process your request unless it is submitted by the copyright owner or an agent authorized to act on behalf of the copyright owner. options: - Yes, I am the copyright holder. - Yes, I am authorized to act on the copyright owner's behalf. @@ -22,6 +21,11 @@ body: validations: required: true + - type: markdown + attributes: + value: | + We cannot process your request unless it is submitted by the copyright owner or an agent authorized to act on behalf of the copyright owner. + - type: textarea attributes: label: Please describe the nature of your copyright ownership or authorization to act on the owner's behalf. From e324239a89528f0a0e9b7bf16c1d9d27adbafb09 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 03:44:51 +0300 Subject: [PATCH 154/157] Update ----bug-report.yml --- .github/ISSUE_TEMPLATE/----bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/----bug-report.yml b/.github/ISSUE_TEMPLATE/----bug-report.yml index 38cab78e7..106689ef2 100644 --- a/.github/ISSUE_TEMPLATE/----bug-report.yml +++ b/.github/ISSUE_TEMPLATE/----bug-report.yml @@ -9,7 +9,7 @@ body: - type: markdown attributes: value: | - This form is **ONLY** intended for auto-update, channel sorting and other automation scripts related issues. If you're experiencing problems viewing a channel please fill a [Broken Stream](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Fix%3A+) form instead. + This form is only for reporting bugs with auto-update, channel sorting and other problems with automation scripts. If you're experiencing problems viewing a channel please fill a [Broken Stream](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Fix%3A+) form instead. - type: textarea attributes: From 70205af466923f16270107643c1b322930dd1055 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 03:44:53 +0300 Subject: [PATCH 155/157] Update --removal-request.yml --- .github/ISSUE_TEMPLATE/--removal-request.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/--removal-request.yml b/.github/ISSUE_TEMPLATE/--removal-request.yml index f7f67b13b..f44cf515d 100644 --- a/.github/ISSUE_TEMPLATE/--removal-request.yml +++ b/.github/ISSUE_TEMPLATE/--removal-request.yml @@ -1,10 +1,15 @@ name: ❌ Removal Request -description: Request to remove a link +description: Request to remove content title: 'Remove: ' labels: ['removal request'] assignees: - freearhey body: + - type: markdown + attributes: + value: | + This form is only for requests from the copyright owner or an agent authorized to act on behalf of the copyright owner. If you're experiencing problems viewing a channel please fill a [Broken Stream](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=broken+stream&template=-----broken-stream.yml&title=Fix%3A+) form instead. + - type: input attributes: label: Your full legal name @@ -14,6 +19,7 @@ body: - type: dropdown attributes: label: Are you the copyright holder or authorized to act on the copyright owner's behalf? + description: We cannot process your request unless it is submitted by the copyright owner or an agent authorized to act on behalf of the copyright owner. options: - Yes, I am the copyright holder. - Yes, I am authorized to act on the copyright owner's behalf. @@ -21,11 +27,6 @@ body: validations: required: true - - type: markdown - attributes: - value: | - We cannot process your request unless it is submitted by the copyright owner or an agent authorized to act on behalf of the copyright owner. - - type: textarea attributes: label: Please describe the nature of your copyright ownership or authorization to act on the owner's behalf. From 8cd96cdba21b391860e1c66189126089436fb25b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 04:24:28 +0300 Subject: [PATCH 156/157] Update file.js --- scripts/core/file.js | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/scripts/core/file.js b/scripts/core/file.js index 3ec6a2041..b36db5ee3 100644 --- a/scripts/core/file.js +++ b/scripts/core/file.js @@ -67,45 +67,4 @@ file.basename = function (filepath) { return path.basename(filepath) } -// file.saveAsM3U = async function (filepath, items, options = {}) { -// const playlist = createPlaylist(filepath) - -// const header = {} -// if (options.public) { -// let guides = items.map(item => item.guides) -// guides = _.uniq(_.flatten(guides)).sort().join(',') - -// header['x-tvg-url'] = guides -// } -// playlist.setHeader(header) - -// for (const item of items) { -// const stream = store.create(item) - -// let attrs -// if (options.public) { -// attrs = { -// 'tvg-id': stream.get('tvg_id'), -// 'tvg-country': stream.get('tvg_country'), -// 'tvg-language': stream.get('tvg_language'), -// 'tvg-logo': stream.get('tvg_logo'), -// 'user-agent': stream.get('http.user-agent') || undefined, -// 'group-title': stream.get('group_title') -// } -// } else { -// attrs = { -// 'tvg-id': stream.get('tvg_id'), -// 'user-agent': stream.get('http.user-agent') || undefined -// } -// } - -// playlist.add(stream.get('url'), stream.get('display_name'), attrs, { -// 'http-referrer': stream.get('http.referrer') || undefined, -// 'http-user-agent': stream.get('http.user-agent') || undefined -// }) -// } - -// return file.write(filepath, playlist.toString()) -// } - module.exports = file From d5fd3b93de30b2704b13ca54b08f4c7b607ca5b6 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 16 Feb 2022 09:56:42 +0300 Subject: [PATCH 157/157] Update check.yml --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8571169f8..5b7c94fbf 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,7 +13,7 @@ jobs: - uses: tj-actions/changed-files@v12.2 id: files with: - files: \.m3u$ + files: streams/*.m3u - uses: actions/setup-node@v2 if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }} with: